.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;
  /**
   * This is part of an IE11 fallback to avoid flex introducing
   * huge amount of weird space on the bottom on the section element.
   */
  min-height: 1px;
}

.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-7395807b-95e0-4d7d-a64b-40b20b52ecd0 {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-7395807b-95e0-4d7d-a64b-40b20b52ecd0 {
  display: none;
}
#s-7395807b-95e0-4d7d-a64b-40b20b52ecd0, #wrap-s-7395807b-95e0-4d7d-a64b-40b20b52ecd0 { display: none !important; }}@media (max-width: 767px){#s-7395807b-95e0-4d7d-a64b-40b20b52ecd0 {
  display: none;
}
#s-7395807b-95e0-4d7d-a64b-40b20b52ecd0, #wrap-s-7395807b-95e0-4d7d-a64b-40b20b52ecd0 { display: none !important; }}







#s-7395807b-95e0-4d7d-a64b-40b20b52ecd0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7395807b-95e0-4d7d-a64b-40b20b52ecd0 {
  cursor: pointer;
}#s-7395807b-95e0-4d7d-a64b-40b20b52ecd0.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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-cover {
  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;
  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-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 {
  max-width: 2880px;
aspect-ratio: 2880/1152;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 {
  display: unset;
}
#s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686, #wrap-s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 { display: unset !important; }}@media (max-width: 767px){#s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 {
  display: unset;
}
#s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686, #wrap-s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 { display: unset !important; }}




  #s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 img.shogun-image,
  #s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 {
    width: 100%;
    height: auto;
  }

  #s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image {
    
    
  }


.s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 .shogun-image-content {
  
    align-items: center;
  
}

.s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 {
      --shg-aspect-ratio: calc(2880/1152); 
    }

    .s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image-container {
      position: relative;
    }

    .s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 img.shogun-image,
  #s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 {
    width: 100%;
    height: auto;
  }

  #s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image {
    
    
  }


.s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 .shogun-image-content {
  
    align-items: center;
  
}

.s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 {
      --shg-aspect-ratio: calc(2880/1152); 
    }

    .s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image-container {
      position: relative;
    }

    .s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 img.shogun-image,
  #s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 {
    width: 100%;
    height: auto;
  }

  #s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image {
    
    
  }


.s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 .shogun-image-content {
  
    align-items: center;
  
}

.s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 {
      --shg-aspect-ratio: calc(2880/1152); 
    }

    .s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image-container {
      position: relative;
    }

    .s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 img.shogun-image,
  #s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 {
    width: 100%;
    height: auto;
  }

  #s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image {
    
    
  }


.s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 .shogun-image-content {
  
    align-items: center;
  
}

.s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 {
      --shg-aspect-ratio: calc(2880/1152); 
    }

    .s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image-container {
      position: relative;
    }

    .s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 img.shogun-image,
  #s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 {
    width: 100%;
    height: auto;
  }

  #s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image {
    
    
  }


.s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 .shogun-image-content {
  
    align-items: center;
  
}

.s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 {
      --shg-aspect-ratio: calc(2880/1152); 
    }

    .s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image-container {
      position: relative;
    }

    .s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c1a873cd-a6f9-4bd4-b2d8-90be87ed0686 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 {
  max-width: 750px;
aspect-ratio: 750/1100;
text-align: center;
}
@media (min-width: 1200px){#s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 {
  display: none;
}
#s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5, #wrap-s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 {
  display: none;
}
#s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5, #wrap-s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 { display: none !important; }}




  #s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 img.shogun-image,
  #s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 {
    width: 100%;
    height: auto;
  }

  #s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image {
    
    
  }


.s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 .shogun-image-content {
  
    align-items: center;
  
}

.s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 {
      --shg-aspect-ratio: calc(750/1100); 
    }

    .s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image-container {
      position: relative;
    }

    .s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 img.shogun-image,
  #s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 {
    width: 100%;
    height: auto;
  }

  #s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image {
    
    
  }


.s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 .shogun-image-content {
  
    align-items: center;
  
}

.s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 {
      --shg-aspect-ratio: calc(750/1100); 
    }

    .s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image-container {
      position: relative;
    }

    .s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 img.shogun-image,
  #s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 {
    width: 100%;
    height: auto;
  }

  #s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image {
    
    
  }


.s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 .shogun-image-content {
  
    align-items: center;
  
}

.s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 {
      --shg-aspect-ratio: calc(750/1100); 
    }

    .s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image-container {
      position: relative;
    }

    .s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 img.shogun-image,
  #s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 {
    width: 100%;
    height: auto;
  }

  #s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image {
    
    
  }


.s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 .shogun-image-content {
  
    align-items: center;
  
}

.s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 {
      --shg-aspect-ratio: calc(750/1100); 
    }

    .s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image-container {
      position: relative;
    }

    .s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 img.shogun-image,
  #s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 {
    width: 100%;
    height: auto;
  }

  #s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image {
    
    
  }


.s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 .shogun-image-content {
  
    align-items: center;
  
}

.s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 {
      --shg-aspect-ratio: calc(750/1100); 
    }

    .s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image-container {
      position: relative;
    }

    .s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f7aaa9d9-439f-4343-9ce9-8baa5aeff4c5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}







#s-7c007cf6-0fab-4da8-85cb-042142e05a39 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7c007cf6-0fab-4da8-85cb-042142e05a39 {
  cursor: pointer;
}#s-7c007cf6-0fab-4da8-85cb-042142e05a39.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a6da947b-fd4d-46d8-a9f5-0a43ed9024fe {
  min-height: 50px;
}








#s-a6da947b-fd4d-46d8-a9f5-0a43ed9024fe > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a6da947b-fd4d-46d8-a9f5-0a43ed9024fe.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

@media (min-width: 0px) {
[id="s-56999e9a-cf3c-41ee-a5d1-a0ee3d43e9c9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-56999e9a-cf3c-41ee-a5d1-a0ee3d43e9c9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-56999e9a-cf3c-41ee-a5d1-a0ee3d43e9c9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-56999e9a-cf3c-41ee-a5d1-a0ee3d43e9c9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef {
  max-width: 2472px;
aspect-ratio: 2472/390;
text-align: center;
}





  #s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef img.shogun-image,
  #s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef {
    width: 100%;
    height: auto;
  }

  #s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image {
    
    
  }


.s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef .shogun-image-content {
  
    align-items: center;
  
}

.s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef {
      --shg-aspect-ratio: calc(2472/390); 
    }

    .s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image-container {
      position: relative;
    }

    .s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef img.shogun-image,
  #s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef {
    width: 100%;
    height: auto;
  }

  #s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image {
    
    
  }


.s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef .shogun-image-content {
  
    align-items: center;
  
}

.s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef {
      --shg-aspect-ratio: calc(2472/390); 
    }

    .s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image-container {
      position: relative;
    }

    .s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef img.shogun-image,
  #s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef {
    width: 100%;
    height: auto;
  }

  #s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image {
    
    
  }


.s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef .shogun-image-content {
  
    align-items: center;
  
}

.s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef {
      --shg-aspect-ratio: calc(2472/390); 
    }

    .s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image-container {
      position: relative;
    }

    .s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef img.shogun-image,
  #s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef {
    width: 100%;
    height: auto;
  }

  #s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image {
    
    
  }


.s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef .shogun-image-content {
  
    align-items: center;
  
}

.s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef {
      --shg-aspect-ratio: calc(2472/390); 
    }

    .s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image-container {
      position: relative;
    }

    .s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef img.shogun-image,
  #s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef {
    width: 100%;
    height: auto;
  }

  #s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image {
    
    
  }


.s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef .shogun-image-content {
  
    align-items: center;
  
}

.s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef {
      --shg-aspect-ratio: calc(2472/390); 
    }

    .s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image-container {
      position: relative;
    }

    .s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fb95e13d-b26d-4197-9ebc-0d68c835c2ef img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-df84d722-ceb5-4734-8e59-f85d04eedf02 {
  max-width: 2472px;
aspect-ratio: 2472/390;
text-align: center;
}





  #s-df84d722-ceb5-4734-8e59-f85d04eedf02 img.shogun-image,
  #s-df84d722-ceb5-4734-8e59-f85d04eedf02 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-df84d722-ceb5-4734-8e59-f85d04eedf02 {
    width: 100%;
    height: auto;
  }

  #s-df84d722-ceb5-4734-8e59-f85d04eedf02 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image {
    
    
  }


.s-df84d722-ceb5-4734-8e59-f85d04eedf02 .shogun-image-content {
  
    align-items: center;
  
}

.s-df84d722-ceb5-4734-8e59-f85d04eedf02.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-df84d722-ceb5-4734-8e59-f85d04eedf02 {
      --shg-aspect-ratio: calc(2472/390); 
    }

    .s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image-container {
      position: relative;
    }

    .s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df84d722-ceb5-4734-8e59-f85d04eedf02 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-df84d722-ceb5-4734-8e59-f85d04eedf02 img.shogun-image,
  #s-df84d722-ceb5-4734-8e59-f85d04eedf02 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-df84d722-ceb5-4734-8e59-f85d04eedf02 {
    width: 100%;
    height: auto;
  }

  #s-df84d722-ceb5-4734-8e59-f85d04eedf02 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image {
    
    
  }


.s-df84d722-ceb5-4734-8e59-f85d04eedf02 .shogun-image-content {
  
    align-items: center;
  
}

.s-df84d722-ceb5-4734-8e59-f85d04eedf02.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-df84d722-ceb5-4734-8e59-f85d04eedf02 {
      --shg-aspect-ratio: calc(2472/390); 
    }

    .s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image-container {
      position: relative;
    }

    .s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df84d722-ceb5-4734-8e59-f85d04eedf02 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-df84d722-ceb5-4734-8e59-f85d04eedf02 img.shogun-image,
  #s-df84d722-ceb5-4734-8e59-f85d04eedf02 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-df84d722-ceb5-4734-8e59-f85d04eedf02 {
    width: 100%;
    height: auto;
  }

  #s-df84d722-ceb5-4734-8e59-f85d04eedf02 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image {
    
    
  }


.s-df84d722-ceb5-4734-8e59-f85d04eedf02 .shogun-image-content {
  
    align-items: center;
  
}

.s-df84d722-ceb5-4734-8e59-f85d04eedf02.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-df84d722-ceb5-4734-8e59-f85d04eedf02 {
      --shg-aspect-ratio: calc(2472/390); 
    }

    .s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image-container {
      position: relative;
    }

    .s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df84d722-ceb5-4734-8e59-f85d04eedf02 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-df84d722-ceb5-4734-8e59-f85d04eedf02 img.shogun-image,
  #s-df84d722-ceb5-4734-8e59-f85d04eedf02 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-df84d722-ceb5-4734-8e59-f85d04eedf02 {
    width: 100%;
    height: auto;
  }

  #s-df84d722-ceb5-4734-8e59-f85d04eedf02 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image {
    
    
  }


.s-df84d722-ceb5-4734-8e59-f85d04eedf02 .shogun-image-content {
  
    align-items: center;
  
}

.s-df84d722-ceb5-4734-8e59-f85d04eedf02.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-df84d722-ceb5-4734-8e59-f85d04eedf02 {
      --shg-aspect-ratio: calc(2472/390); 
    }

    .s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image-container {
      position: relative;
    }

    .s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df84d722-ceb5-4734-8e59-f85d04eedf02 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-df84d722-ceb5-4734-8e59-f85d04eedf02 img.shogun-image,
  #s-df84d722-ceb5-4734-8e59-f85d04eedf02 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-df84d722-ceb5-4734-8e59-f85d04eedf02 {
    width: 100%;
    height: auto;
  }

  #s-df84d722-ceb5-4734-8e59-f85d04eedf02 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image {
    
    
  }


.s-df84d722-ceb5-4734-8e59-f85d04eedf02 .shogun-image-content {
  
    align-items: center;
  
}

.s-df84d722-ceb5-4734-8e59-f85d04eedf02.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-df84d722-ceb5-4734-8e59-f85d04eedf02 {
      --shg-aspect-ratio: calc(2472/390); 
    }

    .s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image-container {
      position: relative;
    }

    .s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-df84d722-ceb5-4734-8e59-f85d04eedf02.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-df84d722-ceb5-4734-8e59-f85d04eedf02 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-d74b3d6b-1d4e-491c-a35e-7b01eb93d04e {
  min-height: 50px;
}








#s-d74b3d6b-1d4e-491c-a35e-7b01eb93d04e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d74b3d6b-1d4e-491c-a35e-7b01eb93d04e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

#s-14fc29bf-0440-4971-92fc-021e9e60e593 {
  background-image: url(https://i.shgcdn.com/94d116e3-2149-4485-b04f-68f10b225ae7/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-position: center top;
}

#s-14fc29bf-0440-4971-92fc-021e9e60e593 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 32px;
  
  letter-spacing: 1px;
  
}



#s-9eb94319-df34-4995-b743-b2a2647fd61a {
  background-image: url(https://i.shgcdn.com/94d116e3-2149-4485-b04f-68f10b225ae7/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
background-position: center top;
}
@media (min-width: 768px) and (max-width: 991px){#s-9eb94319-df34-4995-b743-b2a2647fd61a {
  display: none;
}
#s-9eb94319-df34-4995-b743-b2a2647fd61a, #wrap-s-9eb94319-df34-4995-b743-b2a2647fd61a { display: none !important; }}@media (max-width: 767px){#s-9eb94319-df34-4995-b743-b2a2647fd61a {
  display: none;
}
#s-9eb94319-df34-4995-b743-b2a2647fd61a, #wrap-s-9eb94319-df34-4995-b743-b2a2647fd61a { display: none !important; }}
@media (min-width: 0px) {
[id="s-9eb94319-df34-4995-b743-b2a2647fd61a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-9eb94319-df34-4995-b743-b2a2647fd61a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-9eb94319-df34-4995-b743-b2a2647fd61a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-9eb94319-df34-4995-b743-b2a2647fd61a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-a198fb7d-084e-4bf1-8d9f-676fff70610d {
  max-width: 684px;
aspect-ratio: 684/864;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-a198fb7d-084e-4bf1-8d9f-676fff70610d {
  display: none;
}
#s-a198fb7d-084e-4bf1-8d9f-676fff70610d, #wrap-s-a198fb7d-084e-4bf1-8d9f-676fff70610d { display: none !important; }}@media (max-width: 767px){#s-a198fb7d-084e-4bf1-8d9f-676fff70610d {
  display: none;
}
#s-a198fb7d-084e-4bf1-8d9f-676fff70610d, #wrap-s-a198fb7d-084e-4bf1-8d9f-676fff70610d { display: none !important; }}




  #s-a198fb7d-084e-4bf1-8d9f-676fff70610d img.shogun-image,
  #s-a198fb7d-084e-4bf1-8d9f-676fff70610d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a198fb7d-084e-4bf1-8d9f-676fff70610d {
    width: 100%;
    height: auto;
  }

  #s-a198fb7d-084e-4bf1-8d9f-676fff70610d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image {
    
    
  }


.s-a198fb7d-084e-4bf1-8d9f-676fff70610d .shogun-image-content {
  
    align-items: center;
  
}

.s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a198fb7d-084e-4bf1-8d9f-676fff70610d {
      --shg-aspect-ratio: calc(684/864); 
    }

    .s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image-container {
      position: relative;
    }

    .s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a198fb7d-084e-4bf1-8d9f-676fff70610d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-a198fb7d-084e-4bf1-8d9f-676fff70610d img.shogun-image,
  #s-a198fb7d-084e-4bf1-8d9f-676fff70610d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a198fb7d-084e-4bf1-8d9f-676fff70610d {
    width: 100%;
    height: auto;
  }

  #s-a198fb7d-084e-4bf1-8d9f-676fff70610d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image {
    
    
  }


.s-a198fb7d-084e-4bf1-8d9f-676fff70610d .shogun-image-content {
  
    align-items: center;
  
}

.s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a198fb7d-084e-4bf1-8d9f-676fff70610d {
      --shg-aspect-ratio: calc(684/864); 
    }

    .s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image-container {
      position: relative;
    }

    .s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a198fb7d-084e-4bf1-8d9f-676fff70610d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-a198fb7d-084e-4bf1-8d9f-676fff70610d img.shogun-image,
  #s-a198fb7d-084e-4bf1-8d9f-676fff70610d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a198fb7d-084e-4bf1-8d9f-676fff70610d {
    width: 100%;
    height: auto;
  }

  #s-a198fb7d-084e-4bf1-8d9f-676fff70610d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image {
    
    
  }


.s-a198fb7d-084e-4bf1-8d9f-676fff70610d .shogun-image-content {
  
    align-items: center;
  
}

.s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a198fb7d-084e-4bf1-8d9f-676fff70610d {
      --shg-aspect-ratio: calc(684/864); 
    }

    .s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image-container {
      position: relative;
    }

    .s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a198fb7d-084e-4bf1-8d9f-676fff70610d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-a198fb7d-084e-4bf1-8d9f-676fff70610d img.shogun-image,
  #s-a198fb7d-084e-4bf1-8d9f-676fff70610d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a198fb7d-084e-4bf1-8d9f-676fff70610d {
    width: 100%;
    height: auto;
  }

  #s-a198fb7d-084e-4bf1-8d9f-676fff70610d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image {
    
    
  }


.s-a198fb7d-084e-4bf1-8d9f-676fff70610d .shogun-image-content {
  
    align-items: center;
  
}

.s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a198fb7d-084e-4bf1-8d9f-676fff70610d {
      --shg-aspect-ratio: calc(684/864); 
    }

    .s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image-container {
      position: relative;
    }

    .s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a198fb7d-084e-4bf1-8d9f-676fff70610d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-a198fb7d-084e-4bf1-8d9f-676fff70610d img.shogun-image,
  #s-a198fb7d-084e-4bf1-8d9f-676fff70610d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a198fb7d-084e-4bf1-8d9f-676fff70610d {
    width: 100%;
    height: auto;
  }

  #s-a198fb7d-084e-4bf1-8d9f-676fff70610d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image {
    
    
  }


.s-a198fb7d-084e-4bf1-8d9f-676fff70610d .shogun-image-content {
  
    align-items: center;
  
}

.s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a198fb7d-084e-4bf1-8d9f-676fff70610d {
      --shg-aspect-ratio: calc(684/864); 
    }

    .s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image-container {
      position: relative;
    }

    .s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a198fb7d-084e-4bf1-8d9f-676fff70610d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a198fb7d-084e-4bf1-8d9f-676fff70610d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

.shg-btn {
  cursor: pointer;
  box-sizing: border-box;
}

.shg-btn-text {
  font-weight: ;
  font-family: ;
}

.shg-btn.shg-btn-stretch {
  display: block;
}

.shg-btn:not(.shg-btn-stretch) {
  display: inline-block;
}

.shg-btn-wrapper.shg-align-left {
  text-align: left;
}

.shg-btn-wrapper.shg-align-center {
  text-align: center;
}

.shg-btn-wrapper.shg-align-right {
  text-align: right;
}

#s-354ebdb4-298c-4ec7-af33-aa18c719117c {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(218, 183, 218, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
letter-spacing: 1px;
}
#s-354ebdb4-298c-4ec7-af33-aa18c719117c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-354ebdb4-298c-4ec7-af33-aa18c719117c:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-354ebdb4-298c-4ec7-af33-aa18c719117c-root {
    text-align: center;
  }


#s-354ebdb4-298c-4ec7-af33-aa18c719117c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-354ebdb4-298c-4ec7-af33-aa18c719117c-root {
    text-align: center;
  }


#s-354ebdb4-298c-4ec7-af33-aa18c719117c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-354ebdb4-298c-4ec7-af33-aa18c719117c-root {
    text-align: center;
  }


#s-354ebdb4-298c-4ec7-af33-aa18c719117c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-354ebdb4-298c-4ec7-af33-aa18c719117c-root {
    text-align: center;
  }


#s-354ebdb4-298c-4ec7-af33-aa18c719117c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-354ebdb4-298c-4ec7-af33-aa18c719117c-root {
    text-align: center;
  }


#s-354ebdb4-298c-4ec7-af33-aa18c719117c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 {
  max-width: 684px;
aspect-ratio: 684/864;
text-align: center;
}





  #s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 img.shogun-image,
  #s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 {
    width: 100%;
    height: auto;
  }

  #s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image {
    
    
  }


.s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 .shogun-image-content {
  
    align-items: center;
  
}

.s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 {
      --shg-aspect-ratio: calc(684/864); 
    }

    .s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image-container {
      position: relative;
    }

    .s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 img.shogun-image,
  #s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 {
    width: 100%;
    height: auto;
  }

  #s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image {
    
    
  }


.s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 .shogun-image-content {
  
    align-items: center;
  
}

.s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 {
      --shg-aspect-ratio: calc(684/864); 
    }

    .s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image-container {
      position: relative;
    }

    .s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 img.shogun-image,
  #s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 {
    width: 100%;
    height: auto;
  }

  #s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image {
    
    
  }


.s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 .shogun-image-content {
  
    align-items: center;
  
}

.s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 {
      --shg-aspect-ratio: calc(684/864); 
    }

    .s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image-container {
      position: relative;
    }

    .s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 img.shogun-image,
  #s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 {
    width: 100%;
    height: auto;
  }

  #s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image {
    
    
  }


.s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 .shogun-image-content {
  
    align-items: center;
  
}

.s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 {
      --shg-aspect-ratio: calc(684/864); 
    }

    .s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image-container {
      position: relative;
    }

    .s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 img.shogun-image,
  #s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 {
    width: 100%;
    height: auto;
  }

  #s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image {
    
    
  }


.s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 .shogun-image-content {
  
    align-items: center;
  
}

.s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 {
      --shg-aspect-ratio: calc(684/864); 
    }

    .s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image-container {
      position: relative;
    }

    .s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7e5b68d2-c347-488e-92b0-ad8d70221bd7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7e5b68d2-c347-488e-92b0-ad8d70221bd7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-beaadbd5-5bc9-44f8-95ed-c32d2816ab17 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(218, 183, 218, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
letter-spacing: 1px;
}
#s-beaadbd5-5bc9-44f8-95ed-c32d2816ab17:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-beaadbd5-5bc9-44f8-95ed-c32d2816ab17:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-beaadbd5-5bc9-44f8-95ed-c32d2816ab17-root {
    text-align: center;
  }


#s-beaadbd5-5bc9-44f8-95ed-c32d2816ab17.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-beaadbd5-5bc9-44f8-95ed-c32d2816ab17-root {
    text-align: center;
  }


#s-beaadbd5-5bc9-44f8-95ed-c32d2816ab17.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-beaadbd5-5bc9-44f8-95ed-c32d2816ab17-root {
    text-align: center;
  }


#s-beaadbd5-5bc9-44f8-95ed-c32d2816ab17.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-beaadbd5-5bc9-44f8-95ed-c32d2816ab17-root {
    text-align: center;
  }


#s-beaadbd5-5bc9-44f8-95ed-c32d2816ab17.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-beaadbd5-5bc9-44f8-95ed-c32d2816ab17-root {
    text-align: center;
  }


#s-beaadbd5-5bc9-44f8-95ed-c32d2816ab17.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d {
  max-width: 684px;
aspect-ratio: 684/864;
text-align: center;
}





  #s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d img.shogun-image,
  #s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d {
    width: 100%;
    height: auto;
  }

  #s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image {
    
    
  }


.s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d .shogun-image-content {
  
    align-items: center;
  
}

.s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d {
      --shg-aspect-ratio: calc(684/864); 
    }

    .s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image-container {
      position: relative;
    }

    .s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d img.shogun-image,
  #s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d {
    width: 100%;
    height: auto;
  }

  #s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image {
    
    
  }


.s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d .shogun-image-content {
  
    align-items: center;
  
}

.s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d {
      --shg-aspect-ratio: calc(684/864); 
    }

    .s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image-container {
      position: relative;
    }

    .s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d img.shogun-image,
  #s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d {
    width: 100%;
    height: auto;
  }

  #s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image {
    
    
  }


.s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d .shogun-image-content {
  
    align-items: center;
  
}

.s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d {
      --shg-aspect-ratio: calc(684/864); 
    }

    .s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image-container {
      position: relative;
    }

    .s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d img.shogun-image,
  #s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d {
    width: 100%;
    height: auto;
  }

  #s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image {
    
    
  }


.s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d .shogun-image-content {
  
    align-items: center;
  
}

.s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d {
      --shg-aspect-ratio: calc(684/864); 
    }

    .s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image-container {
      position: relative;
    }

    .s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d img.shogun-image,
  #s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d {
    width: 100%;
    height: auto;
  }

  #s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image {
    
    
  }


.s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d .shogun-image-content {
  
    align-items: center;
  
}

.s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d {
      --shg-aspect-ratio: calc(684/864); 
    }

    .s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image-container {
      position: relative;
    }

    .s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6d9120ad-870c-4f1c-b52e-2ae85e4ae42d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-6d2c01be-650c-4ac3-b3eb-2aa9fa5fc797 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(218, 183, 218, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
letter-spacing: 1px;
color: rgba(255, 255, 255, 1);
}
#s-6d2c01be-650c-4ac3-b3eb-2aa9fa5fc797:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6d2c01be-650c-4ac3-b3eb-2aa9fa5fc797:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-6d2c01be-650c-4ac3-b3eb-2aa9fa5fc797-root {
    text-align: center;
  }


#s-6d2c01be-650c-4ac3-b3eb-2aa9fa5fc797.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6d2c01be-650c-4ac3-b3eb-2aa9fa5fc797-root {
    text-align: center;
  }


#s-6d2c01be-650c-4ac3-b3eb-2aa9fa5fc797.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6d2c01be-650c-4ac3-b3eb-2aa9fa5fc797-root {
    text-align: center;
  }


#s-6d2c01be-650c-4ac3-b3eb-2aa9fa5fc797.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6d2c01be-650c-4ac3-b3eb-2aa9fa5fc797-root {
    text-align: center;
  }


#s-6d2c01be-650c-4ac3-b3eb-2aa9fa5fc797.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6d2c01be-650c-4ac3-b3eb-2aa9fa5fc797-root {
    text-align: center;
  }


#s-6d2c01be-650c-4ac3-b3eb-2aa9fa5fc797.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-fb2891a0-bac9-4700-b231-249db3145318 {
  max-width: 684px;
aspect-ratio: 684/864;
text-align: center;
}





  #s-fb2891a0-bac9-4700-b231-249db3145318 img.shogun-image,
  #s-fb2891a0-bac9-4700-b231-249db3145318 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fb2891a0-bac9-4700-b231-249db3145318 {
    width: 100%;
    height: auto;
  }

  #s-fb2891a0-bac9-4700-b231-249db3145318 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image {
    
    
  }


.s-fb2891a0-bac9-4700-b231-249db3145318 .shogun-image-content {
  
    align-items: center;
  
}

.s-fb2891a0-bac9-4700-b231-249db3145318.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fb2891a0-bac9-4700-b231-249db3145318 {
      --shg-aspect-ratio: calc(684/864); 
    }

    .s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image-container {
      position: relative;
    }

    .s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fb2891a0-bac9-4700-b231-249db3145318 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-fb2891a0-bac9-4700-b231-249db3145318 img.shogun-image,
  #s-fb2891a0-bac9-4700-b231-249db3145318 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fb2891a0-bac9-4700-b231-249db3145318 {
    width: 100%;
    height: auto;
  }

  #s-fb2891a0-bac9-4700-b231-249db3145318 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image {
    
    
  }


.s-fb2891a0-bac9-4700-b231-249db3145318 .shogun-image-content {
  
    align-items: center;
  
}

.s-fb2891a0-bac9-4700-b231-249db3145318.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fb2891a0-bac9-4700-b231-249db3145318 {
      --shg-aspect-ratio: calc(684/864); 
    }

    .s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image-container {
      position: relative;
    }

    .s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fb2891a0-bac9-4700-b231-249db3145318 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-fb2891a0-bac9-4700-b231-249db3145318 img.shogun-image,
  #s-fb2891a0-bac9-4700-b231-249db3145318 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fb2891a0-bac9-4700-b231-249db3145318 {
    width: 100%;
    height: auto;
  }

  #s-fb2891a0-bac9-4700-b231-249db3145318 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image {
    
    
  }


.s-fb2891a0-bac9-4700-b231-249db3145318 .shogun-image-content {
  
    align-items: center;
  
}

.s-fb2891a0-bac9-4700-b231-249db3145318.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fb2891a0-bac9-4700-b231-249db3145318 {
      --shg-aspect-ratio: calc(684/864); 
    }

    .s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image-container {
      position: relative;
    }

    .s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fb2891a0-bac9-4700-b231-249db3145318 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-fb2891a0-bac9-4700-b231-249db3145318 img.shogun-image,
  #s-fb2891a0-bac9-4700-b231-249db3145318 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fb2891a0-bac9-4700-b231-249db3145318 {
    width: 100%;
    height: auto;
  }

  #s-fb2891a0-bac9-4700-b231-249db3145318 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image {
    
    
  }


.s-fb2891a0-bac9-4700-b231-249db3145318 .shogun-image-content {
  
    align-items: center;
  
}

.s-fb2891a0-bac9-4700-b231-249db3145318.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fb2891a0-bac9-4700-b231-249db3145318 {
      --shg-aspect-ratio: calc(684/864); 
    }

    .s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image-container {
      position: relative;
    }

    .s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fb2891a0-bac9-4700-b231-249db3145318 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-fb2891a0-bac9-4700-b231-249db3145318 img.shogun-image,
  #s-fb2891a0-bac9-4700-b231-249db3145318 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fb2891a0-bac9-4700-b231-249db3145318 {
    width: 100%;
    height: auto;
  }

  #s-fb2891a0-bac9-4700-b231-249db3145318 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image {
    
    
  }


.s-fb2891a0-bac9-4700-b231-249db3145318 .shogun-image-content {
  
    align-items: center;
  
}

.s-fb2891a0-bac9-4700-b231-249db3145318.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fb2891a0-bac9-4700-b231-249db3145318 {
      --shg-aspect-ratio: calc(684/864); 
    }

    .s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image-container {
      position: relative;
    }

    .s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fb2891a0-bac9-4700-b231-249db3145318.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fb2891a0-bac9-4700-b231-249db3145318 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-fb54b9ca-f3d8-4025-89b9-16cb8819a408 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(218, 183, 218, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
letter-spacing: 1px;
}
#s-fb54b9ca-f3d8-4025-89b9-16cb8819a408:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-fb54b9ca-f3d8-4025-89b9-16cb8819a408:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-fb54b9ca-f3d8-4025-89b9-16cb8819a408 {
  display: none;
}
#s-fb54b9ca-f3d8-4025-89b9-16cb8819a408, #wrap-s-fb54b9ca-f3d8-4025-89b9-16cb8819a408 { display: none !important; }}@media (max-width: 767px){#s-fb54b9ca-f3d8-4025-89b9-16cb8819a408 {
  display: none;
}
#s-fb54b9ca-f3d8-4025-89b9-16cb8819a408, #wrap-s-fb54b9ca-f3d8-4025-89b9-16cb8819a408 { display: none !important; }}

  #s-fb54b9ca-f3d8-4025-89b9-16cb8819a408-root {
    text-align: center;
  }


#s-fb54b9ca-f3d8-4025-89b9-16cb8819a408.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-fb54b9ca-f3d8-4025-89b9-16cb8819a408-root {
    text-align: center;
  }


#s-fb54b9ca-f3d8-4025-89b9-16cb8819a408.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-fb54b9ca-f3d8-4025-89b9-16cb8819a408-root {
    text-align: center;
  }


#s-fb54b9ca-f3d8-4025-89b9-16cb8819a408.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-fb54b9ca-f3d8-4025-89b9-16cb8819a408-root {
    text-align: center;
  }


#s-fb54b9ca-f3d8-4025-89b9-16cb8819a408.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-fb54b9ca-f3d8-4025-89b9-16cb8819a408-root {
    text-align: center;
  }


#s-fb54b9ca-f3d8-4025-89b9-16cb8819a408.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-04e5fb44-0ba1-48ba-b039-2eb81de2d77c {
  background-image: url(https://i.shgcdn.com/94d116e3-2149-4485-b04f-68f10b225ae7/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
background-position: center top;
}
@media (min-width: 1200px){#s-04e5fb44-0ba1-48ba-b039-2eb81de2d77c {
  display: none;
}
#s-04e5fb44-0ba1-48ba-b039-2eb81de2d77c, #wrap-s-04e5fb44-0ba1-48ba-b039-2eb81de2d77c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-04e5fb44-0ba1-48ba-b039-2eb81de2d77c {
  display: none;
}
#s-04e5fb44-0ba1-48ba-b039-2eb81de2d77c, #wrap-s-04e5fb44-0ba1-48ba-b039-2eb81de2d77c { display: none !important; }}
@media (min-width: 0px) {
[id="s-04e5fb44-0ba1-48ba-b039-2eb81de2d77c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-04e5fb44-0ba1-48ba-b039-2eb81de2d77c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-04e5fb44-0ba1-48ba-b039-2eb81de2d77c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-04e5fb44-0ba1-48ba-b039-2eb81de2d77c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-f956a723-84e7-44d4-86ad-70f65b31de3c {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 68px;
padding-bottom: 68px;
min-height: 300px;
background-position: center center;
}








#s-f956a723-84e7-44d4-86ad-70f65b31de3c > .shg-box-overlay {
  background-color: rgba(2, 2, 2, 1);
  opacity: 0.2;
}#s-f956a723-84e7-44d4-86ad-70f65b31de3c {
  cursor: pointer;
}#s-f956a723-84e7-44d4-86ad-70f65b31de3c.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-eb7048a4-2476-4cb1-bb0c-310f05d121ed {
  margin-left: 10%;
margin-right: 10%;
padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(255, 255, 255, 0.96);
text-align: center;
text-decoration: none;
color: rgba(90, 90, 90, 1);
background-image: none;
hover-type: color;
}
#s-eb7048a4-2476-4cb1-bb0c-310f05d121ed:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-eb7048a4-2476-4cb1-bb0c-310f05d121ed:active {background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-eb7048a4-2476-4cb1-bb0c-310f05d121ed-root {
    text-align: center;
  }


#s-eb7048a4-2476-4cb1-bb0c-310f05d121ed.shg-btn {
  color: rgba(90, 90, 90, 1);
  font-size: 15px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-eb7048a4-2476-4cb1-bb0c-310f05d121ed-root {
    text-align: center;
  }


#s-eb7048a4-2476-4cb1-bb0c-310f05d121ed.shg-btn {
  color: rgba(90, 90, 90, 1);
  font-size: 15px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-eb7048a4-2476-4cb1-bb0c-310f05d121ed-root {
    text-align: center;
  }


#s-eb7048a4-2476-4cb1-bb0c-310f05d121ed.shg-btn {
  color: rgba(90, 90, 90, 1);
  font-size: 15px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-eb7048a4-2476-4cb1-bb0c-310f05d121ed-root {
    text-align: center;
  }


#s-eb7048a4-2476-4cb1-bb0c-310f05d121ed.shg-btn {
  color: rgba(90, 90, 90, 1);
  font-size: 15px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-eb7048a4-2476-4cb1-bb0c-310f05d121ed-root {
    text-align: center;
  }


#s-eb7048a4-2476-4cb1-bb0c-310f05d121ed.shg-btn {
  color: rgba(90, 90, 90, 1);
  font-size: 15px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-72151c82-85e7-4921-a354-fcec681f23f3 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 68px;
padding-bottom: 68px;
min-height: 300px;
background-position: center center;
}








#s-72151c82-85e7-4921-a354-fcec681f23f3 > .shg-box-overlay {
  background-color: rgba(2, 2, 2, 1);
  opacity: 0.2;
}#s-72151c82-85e7-4921-a354-fcec681f23f3 {
  cursor: pointer;
}#s-72151c82-85e7-4921-a354-fcec681f23f3.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-f84c45e0-102d-4246-9a54-fe0b82ce43f1 {
  margin-left: 10%;
margin-right: 10%;
padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(255, 255, 255, 0.96);
text-align: center;
text-decoration: none;
color: rgba(90, 90, 90, 1);
background-image: none;
hover-type: color;
}
#s-f84c45e0-102d-4246-9a54-fe0b82ce43f1:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-f84c45e0-102d-4246-9a54-fe0b82ce43f1:active {background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-f84c45e0-102d-4246-9a54-fe0b82ce43f1-root {
    text-align: center;
  }


#s-f84c45e0-102d-4246-9a54-fe0b82ce43f1.shg-btn {
  color: rgba(90, 90, 90, 1);
  font-size: 15px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-f84c45e0-102d-4246-9a54-fe0b82ce43f1-root {
    text-align: center;
  }


#s-f84c45e0-102d-4246-9a54-fe0b82ce43f1.shg-btn {
  color: rgba(90, 90, 90, 1);
  font-size: 15px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f84c45e0-102d-4246-9a54-fe0b82ce43f1-root {
    text-align: center;
  }


#s-f84c45e0-102d-4246-9a54-fe0b82ce43f1.shg-btn {
  color: rgba(90, 90, 90, 1);
  font-size: 15px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f84c45e0-102d-4246-9a54-fe0b82ce43f1-root {
    text-align: center;
  }


#s-f84c45e0-102d-4246-9a54-fe0b82ce43f1.shg-btn {
  color: rgba(90, 90, 90, 1);
  font-size: 15px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-f84c45e0-102d-4246-9a54-fe0b82ce43f1-root {
    text-align: center;
  }


#s-f84c45e0-102d-4246-9a54-fe0b82ce43f1.shg-btn {
  color: rgba(90, 90, 90, 1);
  font-size: 15px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-c8908725-d0ee-44b8-8bce-6422aca7bd12 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 68px;
padding-bottom: 68px;
min-height: 300px;
background-position: center center;
}








#s-c8908725-d0ee-44b8-8bce-6422aca7bd12 > .shg-box-overlay {
  background-color: rgba(2, 2, 2, 1);
  opacity: 0.2;
}#s-c8908725-d0ee-44b8-8bce-6422aca7bd12 {
  cursor: pointer;
}#s-c8908725-d0ee-44b8-8bce-6422aca7bd12.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-723c2658-5eeb-4f1a-8563-4f880a799cb0 {
  margin-left: 10%;
margin-right: 10%;
padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(255, 255, 255, 0.96);
text-align: center;
text-decoration: none;
color: rgba(90, 90, 90, 1);
background-image: none;
hover-type: color;
}
#s-723c2658-5eeb-4f1a-8563-4f880a799cb0:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-723c2658-5eeb-4f1a-8563-4f880a799cb0:active {background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-723c2658-5eeb-4f1a-8563-4f880a799cb0-root {
    text-align: center;
  }


#s-723c2658-5eeb-4f1a-8563-4f880a799cb0.shg-btn {
  color: rgba(90, 90, 90, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-723c2658-5eeb-4f1a-8563-4f880a799cb0-root {
    text-align: center;
  }


#s-723c2658-5eeb-4f1a-8563-4f880a799cb0.shg-btn {
  color: rgba(90, 90, 90, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-723c2658-5eeb-4f1a-8563-4f880a799cb0-root {
    text-align: center;
  }


#s-723c2658-5eeb-4f1a-8563-4f880a799cb0.shg-btn {
  color: rgba(90, 90, 90, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-723c2658-5eeb-4f1a-8563-4f880a799cb0-root {
    text-align: center;
  }


#s-723c2658-5eeb-4f1a-8563-4f880a799cb0.shg-btn {
  color: rgba(90, 90, 90, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-723c2658-5eeb-4f1a-8563-4f880a799cb0-root {
    text-align: center;
  }


#s-723c2658-5eeb-4f1a-8563-4f880a799cb0.shg-btn {
  color: rgba(90, 90, 90, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-7b3ab53a-6d24-42e4-ae1e-09ed443c27fc {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 68px;
padding-bottom: 68px;
min-height: 300px;
background-position: center center;
}








#s-7b3ab53a-6d24-42e4-ae1e-09ed443c27fc > .shg-box-overlay {
  background-color: rgba(2, 2, 2, 1);
  opacity: 0.2;
}#s-7b3ab53a-6d24-42e4-ae1e-09ed443c27fc {
  cursor: pointer;
}#s-7b3ab53a-6d24-42e4-ae1e-09ed443c27fc.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-96c03266-4ee4-4841-9925-a0608a55d8ab {
  margin-left: 10%;
margin-right: 10%;
padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 0px;
background-color: rgba(255, 255, 255, 0.96);
text-align: center;
text-decoration: none;
color: rgba(90, 90, 90, 1);
background-image: none;
hover-type: color;
}
#s-96c03266-4ee4-4841-9925-a0608a55d8ab:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-96c03266-4ee4-4841-9925-a0608a55d8ab:active {background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(255, 255, 255, 1) !important;}

  #s-96c03266-4ee4-4841-9925-a0608a55d8ab-root {
    text-align: center;
  }


#s-96c03266-4ee4-4841-9925-a0608a55d8ab.shg-btn {
  color: rgba(90, 90, 90, 1);
  font-size: 15px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-96c03266-4ee4-4841-9925-a0608a55d8ab-root {
    text-align: center;
  }


#s-96c03266-4ee4-4841-9925-a0608a55d8ab.shg-btn {
  color: rgba(90, 90, 90, 1);
  font-size: 15px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-96c03266-4ee4-4841-9925-a0608a55d8ab-root {
    text-align: center;
  }


#s-96c03266-4ee4-4841-9925-a0608a55d8ab.shg-btn {
  color: rgba(90, 90, 90, 1);
  font-size: 15px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-96c03266-4ee4-4841-9925-a0608a55d8ab-root {
    text-align: center;
  }


#s-96c03266-4ee4-4841-9925-a0608a55d8ab.shg-btn {
  color: rgba(90, 90, 90, 1);
  font-size: 15px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-96c03266-4ee4-4841-9925-a0608a55d8ab-root {
    text-align: center;
  }


#s-96c03266-4ee4-4841-9925-a0608a55d8ab.shg-btn {
  color: rgba(90, 90, 90, 1);
  font-size: 15px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-9fb66ca7-2518-4c36-b283-87b854fec9b6 {
  margin-top: 12px;
margin-bottom: 12px;
max-width: 932px;
aspect-ratio: 932/417;
text-align: center;
}
@media (min-width: 1200px){#s-9fb66ca7-2518-4c36-b283-87b854fec9b6 {
  display: none;
}
#s-9fb66ca7-2518-4c36-b283-87b854fec9b6, #wrap-s-9fb66ca7-2518-4c36-b283-87b854fec9b6 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9fb66ca7-2518-4c36-b283-87b854fec9b6 {
  display: none;
}
#s-9fb66ca7-2518-4c36-b283-87b854fec9b6, #wrap-s-9fb66ca7-2518-4c36-b283-87b854fec9b6 { display: none !important; }}




  #s-9fb66ca7-2518-4c36-b283-87b854fec9b6 img.shogun-image,
  #s-9fb66ca7-2518-4c36-b283-87b854fec9b6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9fb66ca7-2518-4c36-b283-87b854fec9b6 {
    width: 100%;
    height: auto;
  }

  #s-9fb66ca7-2518-4c36-b283-87b854fec9b6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image {
    
    
  }


.s-9fb66ca7-2518-4c36-b283-87b854fec9b6 .shogun-image-content {
  
    align-items: center;
  
}

.s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9fb66ca7-2518-4c36-b283-87b854fec9b6 {
      --shg-aspect-ratio: calc(932/417); 
    }

    .s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image-container {
      position: relative;
    }

    .s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9fb66ca7-2518-4c36-b283-87b854fec9b6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-9fb66ca7-2518-4c36-b283-87b854fec9b6 img.shogun-image,
  #s-9fb66ca7-2518-4c36-b283-87b854fec9b6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9fb66ca7-2518-4c36-b283-87b854fec9b6 {
    width: 100%;
    height: auto;
  }

  #s-9fb66ca7-2518-4c36-b283-87b854fec9b6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image {
    
    
  }


.s-9fb66ca7-2518-4c36-b283-87b854fec9b6 .shogun-image-content {
  
    align-items: center;
  
}

.s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9fb66ca7-2518-4c36-b283-87b854fec9b6 {
      --shg-aspect-ratio: calc(932/417); 
    }

    .s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image-container {
      position: relative;
    }

    .s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9fb66ca7-2518-4c36-b283-87b854fec9b6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-9fb66ca7-2518-4c36-b283-87b854fec9b6 img.shogun-image,
  #s-9fb66ca7-2518-4c36-b283-87b854fec9b6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9fb66ca7-2518-4c36-b283-87b854fec9b6 {
    width: 100%;
    height: auto;
  }

  #s-9fb66ca7-2518-4c36-b283-87b854fec9b6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image {
    
    
  }


.s-9fb66ca7-2518-4c36-b283-87b854fec9b6 .shogun-image-content {
  
    align-items: center;
  
}

.s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9fb66ca7-2518-4c36-b283-87b854fec9b6 {
      --shg-aspect-ratio: calc(932/417); 
    }

    .s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image-container {
      position: relative;
    }

    .s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9fb66ca7-2518-4c36-b283-87b854fec9b6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-9fb66ca7-2518-4c36-b283-87b854fec9b6 img.shogun-image,
  #s-9fb66ca7-2518-4c36-b283-87b854fec9b6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9fb66ca7-2518-4c36-b283-87b854fec9b6 {
    width: 100%;
    height: auto;
  }

  #s-9fb66ca7-2518-4c36-b283-87b854fec9b6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image {
    
    
  }


.s-9fb66ca7-2518-4c36-b283-87b854fec9b6 .shogun-image-content {
  
    align-items: center;
  
}

.s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9fb66ca7-2518-4c36-b283-87b854fec9b6 {
      --shg-aspect-ratio: calc(932/417); 
    }

    .s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image-container {
      position: relative;
    }

    .s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9fb66ca7-2518-4c36-b283-87b854fec9b6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-9fb66ca7-2518-4c36-b283-87b854fec9b6 img.shogun-image,
  #s-9fb66ca7-2518-4c36-b283-87b854fec9b6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9fb66ca7-2518-4c36-b283-87b854fec9b6 {
    width: 100%;
    height: auto;
  }

  #s-9fb66ca7-2518-4c36-b283-87b854fec9b6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image {
    
    
  }


.s-9fb66ca7-2518-4c36-b283-87b854fec9b6 .shogun-image-content {
  
    align-items: center;
  
}

.s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9fb66ca7-2518-4c36-b283-87b854fec9b6 {
      --shg-aspect-ratio: calc(932/417); 
    }

    .s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image-container {
      position: relative;
    }

    .s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9fb66ca7-2518-4c36-b283-87b854fec9b6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9fb66ca7-2518-4c36-b283-87b854fec9b6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
.shg-hr-wrapper {
  padding: 30px 0;
}

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

@media (min-width: 1200px){#s-4ea7d7d0-a7a7-48e4-b254-f3100c695385 {
  display: none;
}
#s-4ea7d7d0-a7a7-48e4-b254-f3100c695385, #wrap-s-4ea7d7d0-a7a7-48e4-b254-f3100c695385 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4ea7d7d0-a7a7-48e4-b254-f3100c695385 {
  display: none;
}
#s-4ea7d7d0-a7a7-48e4-b254-f3100c695385, #wrap-s-4ea7d7d0-a7a7-48e4-b254-f3100c695385 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4ea7d7d0-a7a7-48e4-b254-f3100c695385 {
  display: none;
}
#s-4ea7d7d0-a7a7-48e4-b254-f3100c695385, #wrap-s-4ea7d7d0-a7a7-48e4-b254-f3100c695385 { display: none !important; }}@media (max-width: 767px){#s-4ea7d7d0-a7a7-48e4-b254-f3100c695385 {
  display: none;
}
#s-4ea7d7d0-a7a7-48e4-b254-f3100c695385, #wrap-s-4ea7d7d0-a7a7-48e4-b254-f3100c695385 { display: none !important; }}
#s-4ea7d7d0-a7a7-48e4-b254-f3100c695385 hr {
  border-top: 1px solid rgba(255, 255, 255, 1);
}

@media (min-width: 768px) and (max-width: 991px){#s-70f810d8-72c0-4c01-acf1-7b1d340a68be {
  display: none;
}
#s-70f810d8-72c0-4c01-acf1-7b1d340a68be, #wrap-s-70f810d8-72c0-4c01-acf1-7b1d340a68be { display: none !important; }}@media (max-width: 767px){#s-70f810d8-72c0-4c01-acf1-7b1d340a68be {
  display: none;
}
#s-70f810d8-72c0-4c01-acf1-7b1d340a68be, #wrap-s-70f810d8-72c0-4c01-acf1-7b1d340a68be { display: none !important; }}
#s-70f810d8-72c0-4c01-acf1-7b1d340a68be hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-27369313-7a59-4539-993e-60f3eec82a72 {
  max-width: 1920px;
aspect-ratio: 1920/211;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-27369313-7a59-4539-993e-60f3eec82a72 {
  display: none;
}
#s-27369313-7a59-4539-993e-60f3eec82a72, #wrap-s-27369313-7a59-4539-993e-60f3eec82a72 { display: none !important; }}@media (max-width: 767px){#s-27369313-7a59-4539-993e-60f3eec82a72 {
  display: none;
}
#s-27369313-7a59-4539-993e-60f3eec82a72, #wrap-s-27369313-7a59-4539-993e-60f3eec82a72 { display: none !important; }}




  #s-27369313-7a59-4539-993e-60f3eec82a72 img.shogun-image,
  #s-27369313-7a59-4539-993e-60f3eec82a72 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-27369313-7a59-4539-993e-60f3eec82a72 {
    width: 100%;
    height: auto;
  }

  #s-27369313-7a59-4539-993e-60f3eec82a72 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image {
    
    
  }


.s-27369313-7a59-4539-993e-60f3eec82a72 .shogun-image-content {
  
    align-items: center;
  
}

.s-27369313-7a59-4539-993e-60f3eec82a72.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-27369313-7a59-4539-993e-60f3eec82a72 {
      --shg-aspect-ratio: calc(1920/211); 
    }

    .s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image-container {
      position: relative;
    }

    .s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-27369313-7a59-4539-993e-60f3eec82a72 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-27369313-7a59-4539-993e-60f3eec82a72 img.shogun-image,
  #s-27369313-7a59-4539-993e-60f3eec82a72 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-27369313-7a59-4539-993e-60f3eec82a72 {
    width: 100%;
    height: auto;
  }

  #s-27369313-7a59-4539-993e-60f3eec82a72 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image {
    
    
  }


.s-27369313-7a59-4539-993e-60f3eec82a72 .shogun-image-content {
  
    align-items: center;
  
}

.s-27369313-7a59-4539-993e-60f3eec82a72.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-27369313-7a59-4539-993e-60f3eec82a72 {
      --shg-aspect-ratio: calc(1920/211); 
    }

    .s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image-container {
      position: relative;
    }

    .s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-27369313-7a59-4539-993e-60f3eec82a72 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-27369313-7a59-4539-993e-60f3eec82a72 img.shogun-image,
  #s-27369313-7a59-4539-993e-60f3eec82a72 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-27369313-7a59-4539-993e-60f3eec82a72 {
    width: 100%;
    height: auto;
  }

  #s-27369313-7a59-4539-993e-60f3eec82a72 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image {
    
    
  }


.s-27369313-7a59-4539-993e-60f3eec82a72 .shogun-image-content {
  
    align-items: center;
  
}

.s-27369313-7a59-4539-993e-60f3eec82a72.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-27369313-7a59-4539-993e-60f3eec82a72 {
      --shg-aspect-ratio: calc(1920/211); 
    }

    .s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image-container {
      position: relative;
    }

    .s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-27369313-7a59-4539-993e-60f3eec82a72 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-27369313-7a59-4539-993e-60f3eec82a72 img.shogun-image,
  #s-27369313-7a59-4539-993e-60f3eec82a72 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-27369313-7a59-4539-993e-60f3eec82a72 {
    width: 100%;
    height: auto;
  }

  #s-27369313-7a59-4539-993e-60f3eec82a72 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image {
    
    
  }


.s-27369313-7a59-4539-993e-60f3eec82a72 .shogun-image-content {
  
    align-items: center;
  
}

.s-27369313-7a59-4539-993e-60f3eec82a72.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-27369313-7a59-4539-993e-60f3eec82a72 {
      --shg-aspect-ratio: calc(1920/211); 
    }

    .s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image-container {
      position: relative;
    }

    .s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-27369313-7a59-4539-993e-60f3eec82a72 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-27369313-7a59-4539-993e-60f3eec82a72 img.shogun-image,
  #s-27369313-7a59-4539-993e-60f3eec82a72 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-27369313-7a59-4539-993e-60f3eec82a72 {
    width: 100%;
    height: auto;
  }

  #s-27369313-7a59-4539-993e-60f3eec82a72 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image {
    
    
  }


.s-27369313-7a59-4539-993e-60f3eec82a72 .shogun-image-content {
  
    align-items: center;
  
}

.s-27369313-7a59-4539-993e-60f3eec82a72.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-27369313-7a59-4539-993e-60f3eec82a72 {
      --shg-aspect-ratio: calc(1920/211); 
    }

    .s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image-container {
      position: relative;
    }

    .s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-27369313-7a59-4539-993e-60f3eec82a72.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-27369313-7a59-4539-993e-60f3eec82a72 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-6f30607d-4962-489c-9c48-69e3f05c9106 hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-3169d5ca-fc34-4baa-977e-4e86ca6dcba1 {
  padding-left: 2%;
padding-right: 2%;
}
@media (min-width: 768px) and (max-width: 991px){#s-3169d5ca-fc34-4baa-977e-4e86ca6dcba1 {
  display: none;
}
#s-3169d5ca-fc34-4baa-977e-4e86ca6dcba1, #wrap-s-3169d5ca-fc34-4baa-977e-4e86ca6dcba1 { display: none !important; }}@media (max-width: 767px){#s-3169d5ca-fc34-4baa-977e-4e86ca6dcba1 {
  display: none;
}
#s-3169d5ca-fc34-4baa-977e-4e86ca6dcba1, #wrap-s-3169d5ca-fc34-4baa-977e-4e86ca6dcba1 { display: none !important; }}
@media (min-width: 0px) {
[id="s-3169d5ca-fc34-4baa-977e-4e86ca6dcba1"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-3169d5ca-fc34-4baa-977e-4e86ca6dcba1"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-3169d5ca-fc34-4baa-977e-4e86ca6dcba1"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3169d5ca-fc34-4baa-977e-4e86ca6dcba1"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-3169d5ca-fc34-4baa-977e-4e86ca6dcba1"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3169d5ca-fc34-4baa-977e-4e86ca6dcba1"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-3169d5ca-fc34-4baa-977e-4e86ca6dcba1"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 {
  padding-left: 0%;
padding-right: 0%;
max-width: 1457px;
aspect-ratio: 1457/2070;
text-align: center;
}





  #s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 img.shogun-image,
  #s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 {
    width: 100%;
    height: auto;
  }

  #s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image {
    
    
  }


.s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 .shogun-image-content {
  
    align-items: center;
  
}

.s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 {
      --shg-aspect-ratio: calc(1457/2070); 
    }

    .s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image-container {
      position: relative;
    }

    .s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 img.shogun-image,
  #s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 {
    width: 100%;
    height: auto;
  }

  #s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image {
    
    
  }


.s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 .shogun-image-content {
  
    align-items: center;
  
}

.s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 {
      --shg-aspect-ratio: calc(1457/2070); 
    }

    .s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image-container {
      position: relative;
    }

    .s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 img.shogun-image,
  #s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 {
    width: 100%;
    height: auto;
  }

  #s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image {
    
    
  }


.s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 .shogun-image-content {
  
    align-items: center;
  
}

.s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 {
      --shg-aspect-ratio: calc(1457/2070); 
    }

    .s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image-container {
      position: relative;
    }

    .s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 img.shogun-image,
  #s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 {
    width: 100%;
    height: auto;
  }

  #s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image {
    
    
  }


.s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 .shogun-image-content {
  
    align-items: center;
  
}

.s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 {
      --shg-aspect-ratio: calc(1457/2070); 
    }

    .s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image-container {
      position: relative;
    }

    .s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 img.shogun-image,
  #s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 {
    width: 100%;
    height: auto;
  }

  #s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image {
    
    
  }


.s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 .shogun-image-content {
  
    align-items: center;
  
}

.s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 {
      --shg-aspect-ratio: calc(1457/2070); 
    }

    .s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image-container {
      position: relative;
    }

    .s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-19c3dd84-ee18-40e5-96e7-1bda1b3d7a39 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
@media (min-width: 0px) {
[id="s-258b4607-2c98-4ce7-8ec2-e82d75b09e82"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-258b4607-2c98-4ce7-8ec2-e82d75b09e82"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-258b4607-2c98-4ce7-8ec2-e82d75b09e82"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-258b4607-2c98-4ce7-8ec2-e82d75b09e82"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-a1872d38-8047-4150-8126-d4d809133d47 {
  max-width: 1800px;
aspect-ratio: 1800/2232;
text-align: center;
}





  #s-a1872d38-8047-4150-8126-d4d809133d47 img.shogun-image,
  #s-a1872d38-8047-4150-8126-d4d809133d47 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a1872d38-8047-4150-8126-d4d809133d47 {
    width: 100%;
    height: auto;
  }

  #s-a1872d38-8047-4150-8126-d4d809133d47 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image {
    
    
  }


.s-a1872d38-8047-4150-8126-d4d809133d47 .shogun-image-content {
  
    align-items: center;
  
}

.s-a1872d38-8047-4150-8126-d4d809133d47.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a1872d38-8047-4150-8126-d4d809133d47 {
      --shg-aspect-ratio: calc(1800/2232); 
    }

    .s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image-container {
      position: relative;
    }

    .s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1872d38-8047-4150-8126-d4d809133d47 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-a1872d38-8047-4150-8126-d4d809133d47 img.shogun-image,
  #s-a1872d38-8047-4150-8126-d4d809133d47 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a1872d38-8047-4150-8126-d4d809133d47 {
    width: 100%;
    height: auto;
  }

  #s-a1872d38-8047-4150-8126-d4d809133d47 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image {
    
    
  }


.s-a1872d38-8047-4150-8126-d4d809133d47 .shogun-image-content {
  
    align-items: center;
  
}

.s-a1872d38-8047-4150-8126-d4d809133d47.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a1872d38-8047-4150-8126-d4d809133d47 {
      --shg-aspect-ratio: calc(1800/2232); 
    }

    .s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image-container {
      position: relative;
    }

    .s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1872d38-8047-4150-8126-d4d809133d47 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-a1872d38-8047-4150-8126-d4d809133d47 img.shogun-image,
  #s-a1872d38-8047-4150-8126-d4d809133d47 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a1872d38-8047-4150-8126-d4d809133d47 {
    width: 100%;
    height: auto;
  }

  #s-a1872d38-8047-4150-8126-d4d809133d47 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image {
    
    
  }


.s-a1872d38-8047-4150-8126-d4d809133d47 .shogun-image-content {
  
    align-items: center;
  
}

.s-a1872d38-8047-4150-8126-d4d809133d47.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a1872d38-8047-4150-8126-d4d809133d47 {
      --shg-aspect-ratio: calc(1800/2232); 
    }

    .s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image-container {
      position: relative;
    }

    .s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1872d38-8047-4150-8126-d4d809133d47 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-a1872d38-8047-4150-8126-d4d809133d47 img.shogun-image,
  #s-a1872d38-8047-4150-8126-d4d809133d47 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a1872d38-8047-4150-8126-d4d809133d47 {
    width: 100%;
    height: auto;
  }

  #s-a1872d38-8047-4150-8126-d4d809133d47 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image {
    
    
  }


.s-a1872d38-8047-4150-8126-d4d809133d47 .shogun-image-content {
  
    align-items: center;
  
}

.s-a1872d38-8047-4150-8126-d4d809133d47.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a1872d38-8047-4150-8126-d4d809133d47 {
      --shg-aspect-ratio: calc(1800/2232); 
    }

    .s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image-container {
      position: relative;
    }

    .s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1872d38-8047-4150-8126-d4d809133d47 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-a1872d38-8047-4150-8126-d4d809133d47 img.shogun-image,
  #s-a1872d38-8047-4150-8126-d4d809133d47 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a1872d38-8047-4150-8126-d4d809133d47 {
    width: 100%;
    height: auto;
  }

  #s-a1872d38-8047-4150-8126-d4d809133d47 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image {
    
    
  }


.s-a1872d38-8047-4150-8126-d4d809133d47 .shogun-image-content {
  
    align-items: center;
  
}

.s-a1872d38-8047-4150-8126-d4d809133d47.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a1872d38-8047-4150-8126-d4d809133d47 {
      --shg-aspect-ratio: calc(1800/2232); 
    }

    .s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image-container {
      position: relative;
    }

    .s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a1872d38-8047-4150-8126-d4d809133d47.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a1872d38-8047-4150-8126-d4d809133d47 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-f52fd1f0-d9f1-436d-b28a-45917be980b6 {
  max-width: 1800px;
aspect-ratio: 1800/2232;
text-align: center;
}





  #s-f52fd1f0-d9f1-436d-b28a-45917be980b6 img.shogun-image,
  #s-f52fd1f0-d9f1-436d-b28a-45917be980b6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f52fd1f0-d9f1-436d-b28a-45917be980b6 {
    width: 100%;
    height: auto;
  }

  #s-f52fd1f0-d9f1-436d-b28a-45917be980b6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image {
    
    
  }


.s-f52fd1f0-d9f1-436d-b28a-45917be980b6 .shogun-image-content {
  
    align-items: center;
  
}

.s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f52fd1f0-d9f1-436d-b28a-45917be980b6 {
      --shg-aspect-ratio: calc(1800/2232); 
    }

    .s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image-container {
      position: relative;
    }

    .s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f52fd1f0-d9f1-436d-b28a-45917be980b6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-f52fd1f0-d9f1-436d-b28a-45917be980b6 img.shogun-image,
  #s-f52fd1f0-d9f1-436d-b28a-45917be980b6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f52fd1f0-d9f1-436d-b28a-45917be980b6 {
    width: 100%;
    height: auto;
  }

  #s-f52fd1f0-d9f1-436d-b28a-45917be980b6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image {
    
    
  }


.s-f52fd1f0-d9f1-436d-b28a-45917be980b6 .shogun-image-content {
  
    align-items: center;
  
}

.s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f52fd1f0-d9f1-436d-b28a-45917be980b6 {
      --shg-aspect-ratio: calc(1800/2232); 
    }

    .s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image-container {
      position: relative;
    }

    .s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f52fd1f0-d9f1-436d-b28a-45917be980b6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-f52fd1f0-d9f1-436d-b28a-45917be980b6 img.shogun-image,
  #s-f52fd1f0-d9f1-436d-b28a-45917be980b6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f52fd1f0-d9f1-436d-b28a-45917be980b6 {
    width: 100%;
    height: auto;
  }

  #s-f52fd1f0-d9f1-436d-b28a-45917be980b6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image {
    
    
  }


.s-f52fd1f0-d9f1-436d-b28a-45917be980b6 .shogun-image-content {
  
    align-items: center;
  
}

.s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f52fd1f0-d9f1-436d-b28a-45917be980b6 {
      --shg-aspect-ratio: calc(1800/2232); 
    }

    .s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image-container {
      position: relative;
    }

    .s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f52fd1f0-d9f1-436d-b28a-45917be980b6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-f52fd1f0-d9f1-436d-b28a-45917be980b6 img.shogun-image,
  #s-f52fd1f0-d9f1-436d-b28a-45917be980b6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f52fd1f0-d9f1-436d-b28a-45917be980b6 {
    width: 100%;
    height: auto;
  }

  #s-f52fd1f0-d9f1-436d-b28a-45917be980b6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image {
    
    
  }


.s-f52fd1f0-d9f1-436d-b28a-45917be980b6 .shogun-image-content {
  
    align-items: center;
  
}

.s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f52fd1f0-d9f1-436d-b28a-45917be980b6 {
      --shg-aspect-ratio: calc(1800/2232); 
    }

    .s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image-container {
      position: relative;
    }

    .s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f52fd1f0-d9f1-436d-b28a-45917be980b6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-f52fd1f0-d9f1-436d-b28a-45917be980b6 img.shogun-image,
  #s-f52fd1f0-d9f1-436d-b28a-45917be980b6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f52fd1f0-d9f1-436d-b28a-45917be980b6 {
    width: 100%;
    height: auto;
  }

  #s-f52fd1f0-d9f1-436d-b28a-45917be980b6 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image {
    
    
  }


.s-f52fd1f0-d9f1-436d-b28a-45917be980b6 .shogun-image-content {
  
    align-items: center;
  
}

.s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f52fd1f0-d9f1-436d-b28a-45917be980b6 {
      --shg-aspect-ratio: calc(1800/2232); 
    }

    .s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image-container {
      position: relative;
    }

    .s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f52fd1f0-d9f1-436d-b28a-45917be980b6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f52fd1f0-d9f1-436d-b28a-45917be980b6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-8d581892-3295-434a-97a8-83562703fe3a {
  background-image: url(https://i.shgcdn.com/a04c43d7-c154-40d7-8806-5b6e19d250d4/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
margin-top: 189px;
margin-bottom: 189px;
padding-top: 10px;
padding-left: 21px;
padding-bottom: 10px;
padding-right: 21px;
border-radius: 2px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
text-decoration: none;
hover-type: color;
letter-spacing: 2px;
background-position: center center;
}
#s-8d581892-3295-434a-97a8-83562703fe3a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8d581892-3295-434a-97a8-83562703fe3a:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-8d581892-3295-434a-97a8-83562703fe3a-root {
    text-align: center;
  }


#s-8d581892-3295-434a-97a8-83562703fe3a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-8d581892-3295-434a-97a8-83562703fe3a-root {
    text-align: center;
  }


#s-8d581892-3295-434a-97a8-83562703fe3a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8d581892-3295-434a-97a8-83562703fe3a-root {
    text-align: center;
  }


#s-8d581892-3295-434a-97a8-83562703fe3a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8d581892-3295-434a-97a8-83562703fe3a-root {
    text-align: center;
  }


#s-8d581892-3295-434a-97a8-83562703fe3a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-8d581892-3295-434a-97a8-83562703fe3a-root {
    text-align: center;
  }


#s-8d581892-3295-434a-97a8-83562703fe3a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
.shg-sld-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

#s-14d0c777-b913-431a-b748-e53871e1e28a {
  padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-14d0c777-b913-431a-b748-e53871e1e28a {
  display: none;
}
#s-14d0c777-b913-431a-b748-e53871e1e28a, #wrap-s-14d0c777-b913-431a-b748-e53871e1e28a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-14d0c777-b913-431a-b748-e53871e1e28a {
  display: none;
}
#s-14d0c777-b913-431a-b748-e53871e1e28a, #wrap-s-14d0c777-b913-431a-b748-e53871e1e28a { display: none !important; }}
#s-14d0c777-b913-431a-b748-e53871e1e28a .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-14d0c777-b913-431a-b748-e53871e1e28a .shg-sld-nav-button.shg-sld-left,
#s-14d0c777-b913-431a-b748-e53871e1e28a .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f {
  max-width: 684px;
aspect-ratio: 684/864;
text-align: center;
}





  #s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f img.shogun-image,
  #s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f {
    width: 100%;
    height: auto;
  }

  #s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image {
    
    
  }


.s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f .shogun-image-content {
  
    align-items: center;
  
}

.s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f {
      --shg-aspect-ratio: calc(684/864); 
    }

    .s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image-container {
      position: relative;
    }

    .s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f img.shogun-image,
  #s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f {
    width: 100%;
    height: auto;
  }

  #s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image {
    
    
  }


.s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f .shogun-image-content {
  
    align-items: center;
  
}

.s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f {
      --shg-aspect-ratio: calc(684/864); 
    }

    .s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image-container {
      position: relative;
    }

    .s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f img.shogun-image,
  #s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f {
    width: 100%;
    height: auto;
  }

  #s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image {
    
    
  }


.s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f .shogun-image-content {
  
    align-items: center;
  
}

.s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f {
      --shg-aspect-ratio: calc(684/864); 
    }

    .s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image-container {
      position: relative;
    }

    .s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f img.shogun-image,
  #s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f {
    width: 100%;
    height: auto;
  }

  #s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image {
    
    
  }


.s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f .shogun-image-content {
  
    align-items: center;
  
}

.s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f {
      --shg-aspect-ratio: calc(684/864); 
    }

    .s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image-container {
      position: relative;
    }

    .s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f img.shogun-image,
  #s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f {
    width: 100%;
    height: auto;
  }

  #s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image {
    
    
  }


.s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f .shogun-image-content {
  
    align-items: center;
  
}

.s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f {
      --shg-aspect-ratio: calc(684/864); 
    }

    .s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image-container {
      position: relative;
    }

    .s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-aba2e2de-d9c4-4dd0-9a20-5b7be509703f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-db258769-7077-4b8a-9811-b2a29c23c943 {
  max-width: 1800px;
aspect-ratio: 1800/2232;
text-align: center;
}





  #s-db258769-7077-4b8a-9811-b2a29c23c943 img.shogun-image,
  #s-db258769-7077-4b8a-9811-b2a29c23c943 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-db258769-7077-4b8a-9811-b2a29c23c943 {
    width: 100%;
    height: auto;
  }

  #s-db258769-7077-4b8a-9811-b2a29c23c943 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image {
    
    
  }


.s-db258769-7077-4b8a-9811-b2a29c23c943 .shogun-image-content {
  
    align-items: center;
  
}

.s-db258769-7077-4b8a-9811-b2a29c23c943.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-db258769-7077-4b8a-9811-b2a29c23c943 {
      --shg-aspect-ratio: calc(1800/2232); 
    }

    .s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image-container {
      position: relative;
    }

    .s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-db258769-7077-4b8a-9811-b2a29c23c943 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-db258769-7077-4b8a-9811-b2a29c23c943 img.shogun-image,
  #s-db258769-7077-4b8a-9811-b2a29c23c943 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-db258769-7077-4b8a-9811-b2a29c23c943 {
    width: 100%;
    height: auto;
  }

  #s-db258769-7077-4b8a-9811-b2a29c23c943 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image {
    
    
  }


.s-db258769-7077-4b8a-9811-b2a29c23c943 .shogun-image-content {
  
    align-items: center;
  
}

.s-db258769-7077-4b8a-9811-b2a29c23c943.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-db258769-7077-4b8a-9811-b2a29c23c943 {
      --shg-aspect-ratio: calc(1800/2232); 
    }

    .s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image-container {
      position: relative;
    }

    .s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-db258769-7077-4b8a-9811-b2a29c23c943 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-db258769-7077-4b8a-9811-b2a29c23c943 img.shogun-image,
  #s-db258769-7077-4b8a-9811-b2a29c23c943 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-db258769-7077-4b8a-9811-b2a29c23c943 {
    width: 100%;
    height: auto;
  }

  #s-db258769-7077-4b8a-9811-b2a29c23c943 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image {
    
    
  }


.s-db258769-7077-4b8a-9811-b2a29c23c943 .shogun-image-content {
  
    align-items: center;
  
}

.s-db258769-7077-4b8a-9811-b2a29c23c943.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-db258769-7077-4b8a-9811-b2a29c23c943 {
      --shg-aspect-ratio: calc(1800/2232); 
    }

    .s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image-container {
      position: relative;
    }

    .s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-db258769-7077-4b8a-9811-b2a29c23c943 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-db258769-7077-4b8a-9811-b2a29c23c943 img.shogun-image,
  #s-db258769-7077-4b8a-9811-b2a29c23c943 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-db258769-7077-4b8a-9811-b2a29c23c943 {
    width: 100%;
    height: auto;
  }

  #s-db258769-7077-4b8a-9811-b2a29c23c943 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image {
    
    
  }


.s-db258769-7077-4b8a-9811-b2a29c23c943 .shogun-image-content {
  
    align-items: center;
  
}

.s-db258769-7077-4b8a-9811-b2a29c23c943.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-db258769-7077-4b8a-9811-b2a29c23c943 {
      --shg-aspect-ratio: calc(1800/2232); 
    }

    .s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image-container {
      position: relative;
    }

    .s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-db258769-7077-4b8a-9811-b2a29c23c943 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-db258769-7077-4b8a-9811-b2a29c23c943 img.shogun-image,
  #s-db258769-7077-4b8a-9811-b2a29c23c943 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-db258769-7077-4b8a-9811-b2a29c23c943 {
    width: 100%;
    height: auto;
  }

  #s-db258769-7077-4b8a-9811-b2a29c23c943 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image {
    
    
  }


.s-db258769-7077-4b8a-9811-b2a29c23c943 .shogun-image-content {
  
    align-items: center;
  
}

.s-db258769-7077-4b8a-9811-b2a29c23c943.shg-align-container {
  display: flex;
  justify-content: center
}

.s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-db258769-7077-4b8a-9811-b2a29c23c943 {
      --shg-aspect-ratio: calc(1800/2232); 
    }

    .s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image-container {
      position: relative;
    }

    .s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-db258769-7077-4b8a-9811-b2a29c23c943.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-db258769-7077-4b8a-9811-b2a29c23c943 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 {
  max-width: 1800px;
aspect-ratio: 1800/2232;
text-align: center;
}





  #s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 img.shogun-image,
  #s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 {
    width: 100%;
    height: auto;
  }

  #s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image {
    
    
  }


.s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 .shogun-image-content {
  
    align-items: center;
  
}

.s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 {
      --shg-aspect-ratio: calc(1800/2232); 
    }

    .s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image-container {
      position: relative;
    }

    .s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 img.shogun-image,
  #s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 {
    width: 100%;
    height: auto;
  }

  #s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image {
    
    
  }


.s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 .shogun-image-content {
  
    align-items: center;
  
}

.s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 {
      --shg-aspect-ratio: calc(1800/2232); 
    }

    .s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image-container {
      position: relative;
    }

    .s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 img.shogun-image,
  #s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 {
    width: 100%;
    height: auto;
  }

  #s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image {
    
    
  }


.s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 .shogun-image-content {
  
    align-items: center;
  
}

.s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 {
      --shg-aspect-ratio: calc(1800/2232); 
    }

    .s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image-container {
      position: relative;
    }

    .s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 img.shogun-image,
  #s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 {
    width: 100%;
    height: auto;
  }

  #s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image {
    
    
  }


.s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 .shogun-image-content {
  
    align-items: center;
  
}

.s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 {
      --shg-aspect-ratio: calc(1800/2232); 
    }

    .s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image-container {
      position: relative;
    }

    .s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 img.shogun-image,
  #s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 {
    width: 100%;
    height: auto;
  }

  #s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image {
    
    
  }


.s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 .shogun-image-content {
  
    align-items: center;
  
}

.s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 {
      --shg-aspect-ratio: calc(1800/2232); 
    }

    .s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image-container {
      position: relative;
    }

    .s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a7ab27c7-44ef-4cd4-9637-aff2db3c1ef7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 {
  max-width: 1458px;
aspect-ratio: 1458/2070;
text-align: center;
}





  #s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 img.shogun-image,
  #s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 {
    width: 100%;
    height: auto;
  }

  #s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image {
    
    
  }


.s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 .shogun-image-content {
  
    align-items: center;
  
}

.s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 {
      --shg-aspect-ratio: calc(1458/2070); 
    }

    .s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image-container {
      position: relative;
    }

    .s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 img.shogun-image,
  #s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 {
    width: 100%;
    height: auto;
  }

  #s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image {
    
    
  }


.s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 .shogun-image-content {
  
    align-items: center;
  
}

.s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 {
      --shg-aspect-ratio: calc(1458/2070); 
    }

    .s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image-container {
      position: relative;
    }

    .s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 img.shogun-image,
  #s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 {
    width: 100%;
    height: auto;
  }

  #s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image {
    
    
  }


.s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 .shogun-image-content {
  
    align-items: center;
  
}

.s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 {
      --shg-aspect-ratio: calc(1458/2070); 
    }

    .s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image-container {
      position: relative;
    }

    .s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 img.shogun-image,
  #s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 {
    width: 100%;
    height: auto;
  }

  #s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image {
    
    
  }


.s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 .shogun-image-content {
  
    align-items: center;
  
}

.s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 {
      --shg-aspect-ratio: calc(1458/2070); 
    }

    .s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image-container {
      position: relative;
    }

    .s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 img.shogun-image,
  #s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 {
    width: 100%;
    height: auto;
  }

  #s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image {
    
    
  }


.s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 .shogun-image-content {
  
    align-items: center;
  
}

.s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 {
      --shg-aspect-ratio: calc(1458/2070); 
    }

    .s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image-container {
      position: relative;
    }

    .s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-19cfd7e0-9ae7-4bbe-bc46-b26e656c23a0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-2198dc86-52a7-43a3-a9f5-580185839f87 {
  padding-left: 2%;
padding-right: 2%;
}
@media (min-width: 768px) and (max-width: 991px){#s-2198dc86-52a7-43a3-a9f5-580185839f87 {
  display: unset;
}
#s-2198dc86-52a7-43a3-a9f5-580185839f87, #wrap-s-2198dc86-52a7-43a3-a9f5-580185839f87 { display: unset !important; }}@media (max-width: 767px){#s-2198dc86-52a7-43a3-a9f5-580185839f87 {
  display: unset;
}
#s-2198dc86-52a7-43a3-a9f5-580185839f87, #wrap-s-2198dc86-52a7-43a3-a9f5-580185839f87 { display: unset !important; }}
@media (min-width: 0px) {
[id="s-2198dc86-52a7-43a3-a9f5-580185839f87"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-2198dc86-52a7-43a3-a9f5-580185839f87"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-2198dc86-52a7-43a3-a9f5-580185839f87"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-2198dc86-52a7-43a3-a9f5-580185839f87"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

.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);
}

.shg-product-image-wrapper {
  display: none;
  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-e30f935d-6820-4be1-9cbf-97144eef1362 {
  text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-e30f935d-6820-4be1-9cbf-97144eef1362 {
  
}
}@media (max-width: 767px){#s-e30f935d-6820-4be1-9cbf-97144eef1362 {
  
}
}


.shg-c#s-e30f935d-6820-4be1-9cbf-97144eef1362 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e30f935d-6820-4be1-9cbf-97144eef1362 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-e30f935d-6820-4be1-9cbf-97144eef1362 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e30f935d-6820-4be1-9cbf-97144eef1362 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-e30f935d-6820-4be1-9cbf-97144eef1362 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e30f935d-6820-4be1-9cbf-97144eef1362 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-e30f935d-6820-4be1-9cbf-97144eef1362 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e30f935d-6820-4be1-9cbf-97144eef1362 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-e30f935d-6820-4be1-9cbf-97144eef1362 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e30f935d-6820-4be1-9cbf-97144eef1362 img.shogun-image {
  width: 100%;
}



}
.shg-product-title-component h1,
.shg-product-title-component h2,
.shg-product-title-component h3,
.shg-product-title-component h4,
.shg-product-title-component h5,
.shg-product-title-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: ;
  font-family: ;
  text-transform: none;
  font-weight: ;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

.shg-product-title-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-8728491c-156a-4b21-a026-626ff6dd326f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8728491c-156a-4b21-a026-626ff6dd326f .shg-product-title-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: Poppins;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: ;
}

#s-835cacdc-af23-4971-8f1b-7c311a2947ae {
  text-align: center;
}

#s-835cacdc-af23-4971-8f1b-7c311a2947ae .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-835cacdc-af23-4971-8f1b-7c311a2947ae .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 16px;
}

#s-835cacdc-af23-4971-8f1b-7c311a2947ae .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

.shg-product-atc-wrapper {
  position: relative;
}

.shg-product-atc-btn {
  position: relative;
  z-index: 2;
  display: block;
  border: none;
  align-items: normal;
  box-sizing: border-box;
  cursor: pointer;
  transition: opacity 200ms linear;
  opacity: 1;
}

.shg-product-atc-btn-opaque {
  opacity: 0;
}

.shg-product-atc-info-box {
  position: absolute;
  z-index: 1;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  text-align: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.shg-product-atc-btn-wrapper.shg-align-center {
  text-align: center;
}

.shg-product-atc-btn-wrapper.shg-align-right {
  text-align: right;
}

#s-b683d663-9c55-462f-93b4-74a3bb385d2d {
  background-image: url(https://i.shgcdn.com/065c69ac-7d12-40db-b933-658c6c3a6ca4/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
cursor: pointer;
hover-type: color;
background-position: center top;
}
#s-b683d663-9c55-462f-93b4-74a3bb385d2d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b683d663-9c55-462f-93b4-74a3bb385d2d:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-b683d663-9c55-462f-93b4-74a3bb385d2d {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b683d663-9c55-462f-93b4-74a3bb385d2d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b683d663-9c55-462f-93b4-74a3bb385d2d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-b683d663-9c55-462f-93b4-74a3bb385d2d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-50749520-7e6b-4d09-92a6-2c4b859a4d7b {
  text-align: left;
}



.shg-c#s-50749520-7e6b-4d09-92a6-2c4b859a4d7b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-50749520-7e6b-4d09-92a6-2c4b859a4d7b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-50749520-7e6b-4d09-92a6-2c4b859a4d7b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-50749520-7e6b-4d09-92a6-2c4b859a4d7b img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-50749520-7e6b-4d09-92a6-2c4b859a4d7b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-50749520-7e6b-4d09-92a6-2c4b859a4d7b img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-50749520-7e6b-4d09-92a6-2c4b859a4d7b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-50749520-7e6b-4d09-92a6-2c4b859a4d7b img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-50749520-7e6b-4d09-92a6-2c4b859a4d7b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-50749520-7e6b-4d09-92a6-2c4b859a4d7b img.shogun-image {
  width: 100%;
}



}
#s-e28aaee6-00b1-4715-9deb-f5ad451ce21d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e28aaee6-00b1-4715-9deb-f5ad451ce21d .shg-product-title-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: Poppins;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: ;
}

#s-95181288-c8af-4803-b18d-584d57a8705b {
  text-align: center;
}

#s-95181288-c8af-4803-b18d-584d57a8705b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 15px;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-95181288-c8af-4803-b18d-584d57a8705b .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 15px;
}

#s-95181288-c8af-4803-b18d-584d57a8705b .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
@media (max-width: 767px){#s-95181288-c8af-4803-b18d-584d57a8705b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 15px;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-95181288-c8af-4803-b18d-584d57a8705b .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 15px;
}

#s-95181288-c8af-4803-b18d-584d57a8705b .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
}
#s-a935e3d7-ac36-4d71-9548-0865eacfc36a {
  background-image: url(https://i.shgcdn.com/065c69ac-7d12-40db-b933-658c6c3a6ca4/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(0, 0, 0, 1);
text-align: center;
cursor: pointer;
hover-type: color;
background-position: center center;
}
#s-a935e3d7-ac36-4d71-9548-0865eacfc36a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a935e3d7-ac36-4d71-9548-0865eacfc36a:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-a935e3d7-ac36-4d71-9548-0865eacfc36a {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a935e3d7-ac36-4d71-9548-0865eacfc36a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a935e3d7-ac36-4d71-9548-0865eacfc36a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-a935e3d7-ac36-4d71-9548-0865eacfc36a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-bdd6c6a2-4623-40fa-9b46-f4b966882622 {
  text-align: left;
}



.shg-c#s-bdd6c6a2-4623-40fa-9b46-f4b966882622 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bdd6c6a2-4623-40fa-9b46-f4b966882622 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-bdd6c6a2-4623-40fa-9b46-f4b966882622 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bdd6c6a2-4623-40fa-9b46-f4b966882622 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-bdd6c6a2-4623-40fa-9b46-f4b966882622 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bdd6c6a2-4623-40fa-9b46-f4b966882622 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-bdd6c6a2-4623-40fa-9b46-f4b966882622 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bdd6c6a2-4623-40fa-9b46-f4b966882622 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-bdd6c6a2-4623-40fa-9b46-f4b966882622 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bdd6c6a2-4623-40fa-9b46-f4b966882622 img.shogun-image {
  width: 100%;
}



}
#s-b4ac6ce9-006a-405f-8b6f-b5f530e12414 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b4ac6ce9-006a-405f-8b6f-b5f530e12414 .shg-product-title-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: Poppins;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: ;
}

#s-988f72a2-2cb0-4a3b-a3ce-0148bd694a69 {
  text-align: center;
}

#s-988f72a2-2cb0-4a3b-a3ce-0148bd694a69 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 15px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-988f72a2-2cb0-4a3b-a3ce-0148bd694a69 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 15px;
}

#s-988f72a2-2cb0-4a3b-a3ce-0148bd694a69 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-9e2a1837-23cf-45c5-977d-b70f46f75698 {
  background-image: url(https://i.shgcdn.com/065c69ac-7d12-40db-b933-658c6c3a6ca4/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
cursor: pointer;
hover-type: color;
background-position: center center;
}
#s-9e2a1837-23cf-45c5-977d-b70f46f75698:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9e2a1837-23cf-45c5-977d-b70f46f75698:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-9e2a1837-23cf-45c5-977d-b70f46f75698 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-9e2a1837-23cf-45c5-977d-b70f46f75698.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-9e2a1837-23cf-45c5-977d-b70f46f75698.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-9e2a1837-23cf-45c5-977d-b70f46f75698.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-b33c476a-60e4-4030-b65f-3b14f87e8fdc {
  text-align: left;
}



.shg-c#s-b33c476a-60e4-4030-b65f-3b14f87e8fdc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b33c476a-60e4-4030-b65f-3b14f87e8fdc img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-b33c476a-60e4-4030-b65f-3b14f87e8fdc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b33c476a-60e4-4030-b65f-3b14f87e8fdc img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-b33c476a-60e4-4030-b65f-3b14f87e8fdc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b33c476a-60e4-4030-b65f-3b14f87e8fdc img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-b33c476a-60e4-4030-b65f-3b14f87e8fdc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b33c476a-60e4-4030-b65f-3b14f87e8fdc img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-b33c476a-60e4-4030-b65f-3b14f87e8fdc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b33c476a-60e4-4030-b65f-3b14f87e8fdc img.shogun-image {
  width: 100%;
}



}
#s-d60025d8-30f3-4e30-a31b-8ff656ffaa90 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d60025d8-30f3-4e30-a31b-8ff656ffaa90 .shg-product-title-component h1 {
  color: ;
  font-weight:   ;
  font-family: Poppins;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: ;
}

#s-837365c4-86a4-4474-9bec-009dd6b135e5 {
  text-align: center;
}

#s-837365c4-86a4-4474-9bec-009dd6b135e5 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 15px;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-837365c4-86a4-4474-9bec-009dd6b135e5 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 15px;
}

#s-837365c4-86a4-4474-9bec-009dd6b135e5 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-7162641d-ca33-4fa7-9190-6eec60759632 {
  background-image: url(https://i.shgcdn.com/065c69ac-7d12-40db-b933-658c6c3a6ca4/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
background-position: center center;
}
#s-7162641d-ca33-4fa7-9190-6eec60759632:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7162641d-ca33-4fa7-9190-6eec60759632:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-7162641d-ca33-4fa7-9190-6eec60759632 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-7162641d-ca33-4fa7-9190-6eec60759632.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7162641d-ca33-4fa7-9190-6eec60759632.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-7162641d-ca33-4fa7-9190-6eec60759632.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-8966cc30-669e-433e-9e83-e39d8dad0565 hr {
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-6b813248-077c-4a76-9274-226eb93ee9e9 {
  background-repeat: no-repeat;
background-size: cover;
padding-left: 0%;
padding-right: 0%;
min-height: 450px;
background-position: center center;
}
@media (min-width: 768px) and (max-width: 991px){#s-6b813248-077c-4a76-9274-226eb93ee9e9 {
  display: none;
}
#s-6b813248-077c-4a76-9274-226eb93ee9e9, #wrap-s-6b813248-077c-4a76-9274-226eb93ee9e9 { display: none !important; }}@media (max-width: 767px){#s-6b813248-077c-4a76-9274-226eb93ee9e9 {
  display: none;
}
#s-6b813248-077c-4a76-9274-226eb93ee9e9, #wrap-s-6b813248-077c-4a76-9274-226eb93ee9e9 { display: none !important; }}
#s-6b813248-077c-4a76-9274-226eb93ee9e9 {
  background-image: url(https://i.shgcdn.com/4aef6db6-d550-4596-bbae-5980c8cd6a7c/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-6b813248-077c-4a76-9274-226eb93ee9e9 {
  background-image: url(https://i.shgcdn.com/4aef6db6-d550-4596-bbae-5980c8cd6a7c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/480x/);
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-6b813248-077c-4a76-9274-226eb93ee9e9 {
  background-image: url(https://i.shgcdn.com/4aef6db6-d550-4596-bbae-5980c8cd6a7c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/960x/);
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-6b813248-077c-4a76-9274-226eb93ee9e9 {
  background-image: url(https://i.shgcdn.com/4aef6db6-d550-4596-bbae-5980c8cd6a7c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/768x/);
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-6b813248-077c-4a76-9274-226eb93ee9e9 {
  background-image: url(https://i.shgcdn.com/4aef6db6-d550-4596-bbae-5980c8cd6a7c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1536x/);
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-6b813248-077c-4a76-9274-226eb93ee9e9 {
  background-image: url(https://i.shgcdn.com/4aef6db6-d550-4596-bbae-5980c8cd6a7c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1024x/);
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-6b813248-077c-4a76-9274-226eb93ee9e9 {
  background-image: url(https://i.shgcdn.com/4aef6db6-d550-4596-bbae-5980c8cd6a7c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-6b813248-077c-4a76-9274-226eb93ee9e9 {
  background-image: url(https://i.shgcdn.com/4aef6db6-d550-4596-bbae-5980c8cd6a7c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1200x/);
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-6b813248-077c-4a76-9274-226eb93ee9e9 {
  background-image: url(https://i.shgcdn.com/4aef6db6-d550-4596-bbae-5980c8cd6a7c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}

}







#s-6b813248-077c-4a76-9274-226eb93ee9e9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6b813248-077c-4a76-9274-226eb93ee9e9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-79262ace-de1c-498e-8893-9f5bf97bec54 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-79262ace-de1c-498e-8893-9f5bf97bec54 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 50px;
  
  letter-spacing: 2px;
  
}



#s-a4f1108c-9b64-4153-b178-859ae872a75f {
  background-repeat: no-repeat;
background-size: cover;
min-height: 200px;
background-position: center center;
}
@media (min-width: 1200px){#s-a4f1108c-9b64-4153-b178-859ae872a75f {
  display: none;
}
#s-a4f1108c-9b64-4153-b178-859ae872a75f, #wrap-s-a4f1108c-9b64-4153-b178-859ae872a75f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a4f1108c-9b64-4153-b178-859ae872a75f {
  display: none;
}
#s-a4f1108c-9b64-4153-b178-859ae872a75f, #wrap-s-a4f1108c-9b64-4153-b178-859ae872a75f { display: none !important; }}
#s-a4f1108c-9b64-4153-b178-859ae872a75f {
  background-image: url(https://i.shgcdn.com/4aef6db6-d550-4596-bbae-5980c8cd6a7c/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-a4f1108c-9b64-4153-b178-859ae872a75f {
  background-image: url(https://i.shgcdn.com/4aef6db6-d550-4596-bbae-5980c8cd6a7c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/480x/);
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-a4f1108c-9b64-4153-b178-859ae872a75f {
  background-image: url(https://i.shgcdn.com/4aef6db6-d550-4596-bbae-5980c8cd6a7c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/960x/);
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-a4f1108c-9b64-4153-b178-859ae872a75f {
  background-image: url(https://i.shgcdn.com/4aef6db6-d550-4596-bbae-5980c8cd6a7c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/768x/);
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-a4f1108c-9b64-4153-b178-859ae872a75f {
  background-image: url(https://i.shgcdn.com/4aef6db6-d550-4596-bbae-5980c8cd6a7c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1536x/);
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-a4f1108c-9b64-4153-b178-859ae872a75f {
  background-image: url(https://i.shgcdn.com/4aef6db6-d550-4596-bbae-5980c8cd6a7c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1024x/);
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-a4f1108c-9b64-4153-b178-859ae872a75f {
  background-image: url(https://i.shgcdn.com/4aef6db6-d550-4596-bbae-5980c8cd6a7c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-a4f1108c-9b64-4153-b178-859ae872a75f {
  background-image: url(https://i.shgcdn.com/4aef6db6-d550-4596-bbae-5980c8cd6a7c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1200x/);
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-a4f1108c-9b64-4153-b178-859ae872a75f {
  background-image: url(https://i.shgcdn.com/4aef6db6-d550-4596-bbae-5980c8cd6a7c/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}

}







#s-a4f1108c-9b64-4153-b178-859ae872a75f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a4f1108c-9b64-4153-b178-859ae872a75f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bfc0ce6f-da58-497f-b40c-d245a204201b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bfc0ce6f-da58-497f-b40c-d245a204201b .shogun-heading-component h1 {
  color: rgba(237, 237, 237, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  
  
  letter-spacing: 1px;
  text-align: center;
}



#s-05db3e34-c1e5-4bf4-a106-c3620d2e14e8 {
  min-height: 50px;
}








#s-05db3e34-c1e5-4bf4-a106-c3620d2e14e8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-05db3e34-c1e5-4bf4-a106-c3620d2e14e8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a0895a5a-a88c-4845-860d-d77165d6322e hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-1d780264-dc85-45d1-a9c0-52b4863d3056"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-1d780264-dc85-45d1-a9c0-52b4863d3056"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-1d780264-dc85-45d1-a9c0-52b4863d3056"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-1d780264-dc85-45d1-a9c0-52b4863d3056"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e {
  text-align: left;
}


.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e {
  max-width:  100%;
}

.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e .shg-image-zoom,
.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e img.shogun-image {
  width: 100%;
}



.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e img.shogun-image,
.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e .shg-image-zoom,
.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e img.shogun-image {
  aspect-ratio: 2/3;
}

@media (min-width: 1200px){
.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e {
  max-width:  100%;
}

.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e .shg-image-zoom,
.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e img.shogun-image {
  width: 100%;
}



.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e img.shogun-image,
.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e .shg-image-zoom,
.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e img.shogun-image {
  aspect-ratio: 2/3;
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e {
  max-width:  100%;
}

.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e .shg-image-zoom,
.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e img.shogun-image {
  width: 100%;
}



.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e img.shogun-image,
.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e .shg-image-zoom,
.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e img.shogun-image {
  aspect-ratio: 2/3;
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e {
  max-width:  100%;
}

.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e .shg-image-zoom,
.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e img.shogun-image {
  width: 100%;
}



.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e img.shogun-image,
.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e .shg-image-zoom,
.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e img.shogun-image {
  aspect-ratio: 2/3;
}

}@media (max-width: 767px){
.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e {
  max-width:  100%;
}

.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e .shg-image-zoom,
.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e img.shogun-image {
  width: 100%;
}



.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e img.shogun-image,
.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e .shg-image-zoom,
.shg-c#s-3bbc8e66-2da0-47da-aab2-b165a5c5ab5e img.shogun-image {
  aspect-ratio: 2/3;
}

}
#s-ac3f5fc0-b8b5-4f9a-a913-2f6894ae987c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ac3f5fc0-b8b5-4f9a-a913-2f6894ae987c .shg-product-title-component h1 {
  color: ;
  font-weight:   ;
  font-family: Poppins;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: ;
}

#s-25af9ef4-f73f-44b5-ab43-3995de44d7f5 {
  text-align: center;
}

#s-25af9ef4-f73f-44b5-ab43-3995de44d7f5 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-25af9ef4-f73f-44b5-ab43-3995de44d7f5 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 16px;
}

#s-25af9ef4-f73f-44b5-ab43-3995de44d7f5 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-b93ddff9-8bb9-4fbe-b561-c0010ad04eb2 {
  background-image: url(https://i.shgcdn.com/065c69ac-7d12-40db-b933-658c6c3a6ca4/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
background-position: center center;
}
#s-b93ddff9-8bb9-4fbe-b561-c0010ad04eb2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b93ddff9-8bb9-4fbe-b561-c0010ad04eb2:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-b93ddff9-8bb9-4fbe-b561-c0010ad04eb2 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b93ddff9-8bb9-4fbe-b561-c0010ad04eb2.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b93ddff9-8bb9-4fbe-b561-c0010ad04eb2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-b93ddff9-8bb9-4fbe-b561-c0010ad04eb2.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 {
  text-align: left;
}


.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 {
  max-width:  100%;
}

.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 .shg-image-zoom,
.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 img.shogun-image {
  width: 100%;
}



.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 img.shogun-image,
.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 .shg-image-zoom,
.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 img.shogun-image {
  aspect-ratio: 2/3;
}

@media (min-width: 1200px){
.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 {
  max-width:  100%;
}

.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 .shg-image-zoom,
.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 img.shogun-image {
  width: 100%;
}



.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 img.shogun-image,
.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 .shg-image-zoom,
.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 img.shogun-image {
  aspect-ratio: 2/3;
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 {
  max-width:  100%;
}

.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 .shg-image-zoom,
.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 img.shogun-image {
  width: 100%;
}



.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 img.shogun-image,
.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 .shg-image-zoom,
.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 img.shogun-image {
  aspect-ratio: 2/3;
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 {
  max-width:  100%;
}

.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 .shg-image-zoom,
.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 img.shogun-image {
  width: 100%;
}



.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 img.shogun-image,
.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 .shg-image-zoom,
.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 img.shogun-image {
  aspect-ratio: 2/3;
}

}@media (max-width: 767px){
.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 {
  max-width:  100%;
}

.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 .shg-image-zoom,
.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 img.shogun-image {
  width: 100%;
}



.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 img.shogun-image,
.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 .shg-image-zoom,
.shg-c#s-7c62b3a1-0000-41e9-ae6e-abcb1dc7df18 img.shogun-image {
  aspect-ratio: 2/3;
}

}
#s-8c85ac95-beb7-4406-8e2b-c5a3e757ca67 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8c85ac95-beb7-4406-8e2b-c5a3e757ca67 .shg-product-title-component h1 {
  color: ;
  font-weight:   ;
  font-family: Poppins;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: ;
}

#s-b5b6b761-4d2c-4bd7-ab19-37d2c89abbdc {
  text-align: center;
}

#s-b5b6b761-4d2c-4bd7-ab19-37d2c89abbdc .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-b5b6b761-4d2c-4bd7-ab19-37d2c89abbdc .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 16px;
}

#s-b5b6b761-4d2c-4bd7-ab19-37d2c89abbdc .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-14944d0e-0b23-4b63-bfe6-d19179fa92af {
  background-image: url(https://i.shgcdn.com/065c69ac-7d12-40db-b933-658c6c3a6ca4/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
background-position: center center;
}
#s-14944d0e-0b23-4b63-bfe6-d19179fa92af:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-14944d0e-0b23-4b63-bfe6-d19179fa92af:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-14944d0e-0b23-4b63-bfe6-d19179fa92af {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-14944d0e-0b23-4b63-bfe6-d19179fa92af.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-14944d0e-0b23-4b63-bfe6-d19179fa92af.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-14944d0e-0b23-4b63-bfe6-d19179fa92af.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-12621655-2fc3-4025-8fa6-fa82ef2020a7 {
  text-align: left;
}



.shg-c#s-12621655-2fc3-4025-8fa6-fa82ef2020a7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-12621655-2fc3-4025-8fa6-fa82ef2020a7 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-12621655-2fc3-4025-8fa6-fa82ef2020a7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-12621655-2fc3-4025-8fa6-fa82ef2020a7 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-12621655-2fc3-4025-8fa6-fa82ef2020a7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-12621655-2fc3-4025-8fa6-fa82ef2020a7 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-12621655-2fc3-4025-8fa6-fa82ef2020a7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-12621655-2fc3-4025-8fa6-fa82ef2020a7 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-12621655-2fc3-4025-8fa6-fa82ef2020a7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-12621655-2fc3-4025-8fa6-fa82ef2020a7 img.shogun-image {
  width: 100%;
}



}
#s-f34c8fb4-55ff-430c-af0b-3e68024d2caa {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f34c8fb4-55ff-430c-af0b-3e68024d2caa .shg-product-title-component h1 {
  color: ;
  font-weight:   ;
  font-family: Poppins;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: ;
}

#s-13e3b255-9124-4501-8ab9-7d1d9deb5167 {
  text-align: center;
}

#s-13e3b255-9124-4501-8ab9-7d1d9deb5167 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-13e3b255-9124-4501-8ab9-7d1d9deb5167 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 16px;
}

#s-13e3b255-9124-4501-8ab9-7d1d9deb5167 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-e42b229c-28c3-452d-a054-34905d3d9c09 {
  background-image: url(https://i.shgcdn.com/065c69ac-7d12-40db-b933-658c6c3a6ca4/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
background-position: center center;
}
#s-e42b229c-28c3-452d-a054-34905d3d9c09:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e42b229c-28c3-452d-a054-34905d3d9c09:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-e42b229c-28c3-452d-a054-34905d3d9c09 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-e42b229c-28c3-452d-a054-34905d3d9c09.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-e42b229c-28c3-452d-a054-34905d3d9c09.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-e42b229c-28c3-452d-a054-34905d3d9c09.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-9ea8bcb4-2272-4233-94ea-e487348658d3 {
  text-align: left;
}


.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 {
  max-width:  100%;
}

.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 .shg-image-zoom,
.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 img.shogun-image {
  width: 100%;
}



.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 img.shogun-image,
.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 .shg-image-zoom,
.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 img.shogun-image {
  aspect-ratio: 2/3;
}

@media (min-width: 1200px){
.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 {
  max-width:  100%;
}

.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 .shg-image-zoom,
.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 img.shogun-image {
  width: 100%;
}



.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 img.shogun-image,
.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 .shg-image-zoom,
.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 img.shogun-image {
  aspect-ratio: 2/3;
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 {
  max-width:  100%;
}

.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 .shg-image-zoom,
.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 img.shogun-image {
  width: 100%;
}



.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 img.shogun-image,
.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 .shg-image-zoom,
.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 img.shogun-image {
  aspect-ratio: 2/3;
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 {
  max-width:  100%;
}

.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 .shg-image-zoom,
.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 img.shogun-image {
  width: 100%;
}



.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 img.shogun-image,
.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 .shg-image-zoom,
.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 img.shogun-image {
  aspect-ratio: 2/3;
}

}@media (max-width: 767px){
.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 {
  max-width:  100%;
}

.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 .shg-image-zoom,
.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 img.shogun-image {
  width: 100%;
}



.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 img.shogun-image,
.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 .shg-image-zoom,
.shg-c#s-9ea8bcb4-2272-4233-94ea-e487348658d3 img.shogun-image {
  aspect-ratio: 2/3;
}

}
#s-a91a09e1-f299-4d64-a4f0-42ea91303058 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a91a09e1-f299-4d64-a4f0-42ea91303058 .shg-product-title-component h1 {
  color: ;
  font-weight:   ;
  font-family: Poppins;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: ;
}

#s-a0226a35-9217-4705-8009-07bd2e61f205 {
  text-align: center;
}

#s-a0226a35-9217-4705-8009-07bd2e61f205 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-a0226a35-9217-4705-8009-07bd2e61f205 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 16px;
}

#s-a0226a35-9217-4705-8009-07bd2e61f205 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-be6234cd-63aa-483c-a247-abbd0cbb9589 {
  background-image: url(https://i.shgcdn.com/065c69ac-7d12-40db-b933-658c6c3a6ca4/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
background-position: center center;
}
#s-be6234cd-63aa-483c-a247-abbd0cbb9589:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-be6234cd-63aa-483c-a247-abbd0cbb9589:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-be6234cd-63aa-483c-a247-abbd0cbb9589 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-be6234cd-63aa-483c-a247-abbd0cbb9589.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-be6234cd-63aa-483c-a247-abbd0cbb9589.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-be6234cd-63aa-483c-a247-abbd0cbb9589.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-5f97445f-7bf5-477c-a970-25862562c932 hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-556dd262-d8c2-4632-85de-d2cd318ea075 {
  background-image: url(https://i.shgcdn.com/065c69ac-7d12-40db-b933-658c6c3a6ca4/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
background-position: center center;
}
#s-556dd262-d8c2-4632-85de-d2cd318ea075:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-556dd262-d8c2-4632-85de-d2cd318ea075:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-556dd262-d8c2-4632-85de-d2cd318ea075-root {
    text-align: center;
  }


#s-556dd262-d8c2-4632-85de-d2cd318ea075.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-556dd262-d8c2-4632-85de-d2cd318ea075-root {
    text-align: center;
  }


#s-556dd262-d8c2-4632-85de-d2cd318ea075.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-556dd262-d8c2-4632-85de-d2cd318ea075-root {
    text-align: center;
  }


#s-556dd262-d8c2-4632-85de-d2cd318ea075.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-556dd262-d8c2-4632-85de-d2cd318ea075-root {
    text-align: center;
  }


#s-556dd262-d8c2-4632-85de-d2cd318ea075.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-556dd262-d8c2-4632-85de-d2cd318ea075-root {
    text-align: center;
  }


#s-556dd262-d8c2-4632-85de-d2cd318ea075.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
@media (min-width: 1200px){#s-f4b62c6a-6bd7-4ab4-9518-a6134d0d2056 {
  display: none;
}
#s-f4b62c6a-6bd7-4ab4-9518-a6134d0d2056, #wrap-s-f4b62c6a-6bd7-4ab4-9518-a6134d0d2056 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f4b62c6a-6bd7-4ab4-9518-a6134d0d2056 {
  display: none;
}
#s-f4b62c6a-6bd7-4ab4-9518-a6134d0d2056, #wrap-s-f4b62c6a-6bd7-4ab4-9518-a6134d0d2056 { display: none !important; }}
#s-f4b62c6a-6bd7-4ab4-9518-a6134d0d2056 hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 {
  max-width: 642px;
aspect-ratio: 642/769;
text-align: center;
}
@media (min-width: 1200px){#s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 {
  display: none;
}
#s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4, #wrap-s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 {
  display: none;
}
#s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4, #wrap-s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 { display: none !important; }}




  #s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 img.shogun-image,
  #s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 {
    width: 100%;
    height: auto;
  }

  #s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image {
    
    
  }


.s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 .shogun-image-content {
  
    align-items: center;
  
}

.s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 {
      --shg-aspect-ratio: calc(642/769); 
    }

    .s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image-container {
      position: relative;
    }

    .s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 img.shogun-image,
  #s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 {
    width: 100%;
    height: auto;
  }

  #s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image {
    
    
  }


.s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 .shogun-image-content {
  
    align-items: center;
  
}

.s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 {
      --shg-aspect-ratio: calc(642/769); 
    }

    .s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image-container {
      position: relative;
    }

    .s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 img.shogun-image,
  #s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 {
    width: 100%;
    height: auto;
  }

  #s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image {
    
    
  }


.s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 .shogun-image-content {
  
    align-items: center;
  
}

.s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 {
      --shg-aspect-ratio: calc(642/769); 
    }

    .s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image-container {
      position: relative;
    }

    .s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 img.shogun-image,
  #s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 {
    width: 100%;
    height: auto;
  }

  #s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image {
    
    
  }


.s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 .shogun-image-content {
  
    align-items: center;
  
}

.s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 {
      --shg-aspect-ratio: calc(642/769); 
    }

    .s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image-container {
      position: relative;
    }

    .s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 img.shogun-image,
  #s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 {
    width: 100%;
    height: auto;
  }

  #s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image {
    
    
  }


.s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 .shogun-image-content {
  
    align-items: center;
  
}

.s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 {
      --shg-aspect-ratio: calc(642/769); 
    }

    .s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image-container {
      position: relative;
    }

    .s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fd5ec31f-5b6a-4be9-8e6e-2eea1fe6aaf4 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-5a67397d-eb9c-4ff5-85ef-5e4ff19bef48 hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-eaede5d3-016c-4054-8aa5-87f5ffe22ef4 {
  min-height: 50px;
}








#s-eaede5d3-016c-4054-8aa5-87f5ffe22ef4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eaede5d3-016c-4054-8aa5-87f5ffe22ef4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1200px){#s-8d79902b-5238-4cc2-a53b-9acf76974d98 {
  display: none;
}
#s-8d79902b-5238-4cc2-a53b-9acf76974d98, #wrap-s-8d79902b-5238-4cc2-a53b-9acf76974d98 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8d79902b-5238-4cc2-a53b-9acf76974d98 {
  display: none;
}
#s-8d79902b-5238-4cc2-a53b-9acf76974d98, #wrap-s-8d79902b-5238-4cc2-a53b-9acf76974d98 { display: none !important; }}
@media (min-width: 0px) {
[id="s-8d79902b-5238-4cc2-a53b-9acf76974d98"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-8d79902b-5238-4cc2-a53b-9acf76974d98"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-8d79902b-5238-4cc2-a53b-9acf76974d98"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-8d79902b-5238-4cc2-a53b-9acf76974d98"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-5df42600-59c4-4d01-8836-1fea784d2e27 {
  text-align: left;
}


.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 {
  max-width:  100%;
}

.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 .shg-image-zoom,
.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 img.shogun-image {
  width: 100%;
}



.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 img.shogun-image,
.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 .shg-image-zoom,
.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 img.shogun-image {
  aspect-ratio: 2/3;
}

@media (min-width: 1200px){
.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 {
  max-width:  100%;
}

.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 .shg-image-zoom,
.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 img.shogun-image {
  width: 100%;
}



.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 img.shogun-image,
.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 .shg-image-zoom,
.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 img.shogun-image {
  aspect-ratio: 2/3;
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 {
  max-width:  100%;
}

.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 .shg-image-zoom,
.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 img.shogun-image {
  width: 100%;
}



.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 img.shogun-image,
.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 .shg-image-zoom,
.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 img.shogun-image {
  aspect-ratio: 2/3;
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 {
  max-width:  100%;
}

.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 .shg-image-zoom,
.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 img.shogun-image {
  width: 100%;
}



.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 img.shogun-image,
.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 .shg-image-zoom,
.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 img.shogun-image {
  aspect-ratio: 2/3;
}

}@media (max-width: 767px){
.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 {
  max-width:  100%;
}

.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 .shg-image-zoom,
.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 img.shogun-image {
  width: 100%;
}



.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 img.shogun-image,
.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 .shg-image-zoom,
.shg-c#s-5df42600-59c4-4d01-8836-1fea784d2e27 img.shogun-image {
  aspect-ratio: 2/3;
}

}
#s-486ba0e2-325d-4201-8a4f-75032c5939d5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-486ba0e2-325d-4201-8a4f-75032c5939d5 .shg-product-title-component h1 {
  color: ;
  font-weight:   ;
  font-family: Poppins;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: ;
}

#s-f14bacf2-a42e-4b09-8511-c89e62cf8223 {
  text-align: center;
}

#s-f14bacf2-a42e-4b09-8511-c89e62cf8223 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 15px;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-f14bacf2-a42e-4b09-8511-c89e62cf8223 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 15px;
}

#s-f14bacf2-a42e-4b09-8511-c89e62cf8223 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-c9a5af61-852f-45b9-9208-43a3dddd0d07 {
  background-image: url(https://i.shgcdn.com/a04c43d7-c154-40d7-8806-5b6e19d250d4/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
background-position: center center;
}
#s-c9a5af61-852f-45b9-9208-43a3dddd0d07:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c9a5af61-852f-45b9-9208-43a3dddd0d07:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-c9a5af61-852f-45b9-9208-43a3dddd0d07 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-c9a5af61-852f-45b9-9208-43a3dddd0d07.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-c9a5af61-852f-45b9-9208-43a3dddd0d07.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-c9a5af61-852f-45b9-9208-43a3dddd0d07.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 {
  text-align: left;
}


.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 {
  max-width:  100%;
}

.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 .shg-image-zoom,
.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 img.shogun-image {
  width: 100%;
}



.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 img.shogun-image,
.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 .shg-image-zoom,
.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 img.shogun-image {
  aspect-ratio: 2/3;
}

@media (min-width: 1200px){
.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 {
  max-width:  100%;
}

.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 .shg-image-zoom,
.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 img.shogun-image {
  width: 100%;
}



.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 img.shogun-image,
.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 .shg-image-zoom,
.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 img.shogun-image {
  aspect-ratio: 2/3;
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 {
  max-width:  100%;
}

.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 .shg-image-zoom,
.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 img.shogun-image {
  width: 100%;
}



.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 img.shogun-image,
.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 .shg-image-zoom,
.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 img.shogun-image {
  aspect-ratio: 2/3;
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 {
  max-width:  100%;
}

.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 .shg-image-zoom,
.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 img.shogun-image {
  width: 100%;
}



.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 img.shogun-image,
.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 .shg-image-zoom,
.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 img.shogun-image {
  aspect-ratio: 2/3;
}

}@media (max-width: 767px){
.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 {
  max-width:  100%;
}

.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 .shg-image-zoom,
.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 img.shogun-image {
  width: 100%;
}



.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 img.shogun-image,
.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 .shg-image-zoom,
.shg-c#s-2d25805e-c44a-4d18-a24d-6be4e6eb29d3 img.shogun-image {
  aspect-ratio: 2/3;
}

}
#s-6c69d34b-86ec-4ab3-b9f2-0a53f2e32373 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6c69d34b-86ec-4ab3-b9f2-0a53f2e32373 .shg-product-title-component h1 {
  color: ;
  font-weight:   ;
  font-family: Poppins;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: ;
}

#s-df94a347-c82f-49eb-a941-3fc716796a36 {
  text-align: center;
}

#s-df94a347-c82f-49eb-a941-3fc716796a36 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 15px;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-df94a347-c82f-49eb-a941-3fc716796a36 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 15px;
}

#s-df94a347-c82f-49eb-a941-3fc716796a36 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-bc5f10ff-4ef9-4809-a57d-11eb79fff4ed {
  background-image: url(https://i.shgcdn.com/a04c43d7-c154-40d7-8806-5b6e19d250d4/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
background-position: center center;
}
#s-bc5f10ff-4ef9-4809-a57d-11eb79fff4ed:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-bc5f10ff-4ef9-4809-a57d-11eb79fff4ed:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-bc5f10ff-4ef9-4809-a57d-11eb79fff4ed {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-bc5f10ff-4ef9-4809-a57d-11eb79fff4ed.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-bc5f10ff-4ef9-4809-a57d-11eb79fff4ed.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-bc5f10ff-4ef9-4809-a57d-11eb79fff4ed.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 {
  text-align: left;
}


.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 {
  max-width:  100%;
}

.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 .shg-image-zoom,
.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 img.shogun-image {
  width: 100%;
}



.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 img.shogun-image,
.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 .shg-image-zoom,
.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 img.shogun-image {
  aspect-ratio: 2/3;
}

@media (min-width: 1200px){
.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 {
  max-width:  100%;
}

.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 .shg-image-zoom,
.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 img.shogun-image {
  width: 100%;
}



.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 img.shogun-image,
.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 .shg-image-zoom,
.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 img.shogun-image {
  aspect-ratio: 2/3;
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 {
  max-width:  100%;
}

.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 .shg-image-zoom,
.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 img.shogun-image {
  width: 100%;
}



.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 img.shogun-image,
.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 .shg-image-zoom,
.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 img.shogun-image {
  aspect-ratio: 2/3;
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 {
  max-width:  100%;
}

.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 .shg-image-zoom,
.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 img.shogun-image {
  width: 100%;
}



.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 img.shogun-image,
.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 .shg-image-zoom,
.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 img.shogun-image {
  aspect-ratio: 2/3;
}

}@media (max-width: 767px){
.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 {
  max-width:  100%;
}

.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 .shg-image-zoom,
.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 img.shogun-image {
  max-width: 750px !important;
  
}

.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 .shg-image-zoom {
  
    margin-left: 0px;
  
}


.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 img.shogun-image {
  width: 100%;
}



.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 img.shogun-image,
.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 .shg-product-image-wrapper {
  width: 100%;
  height: 100%;
}

.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 .shg-image-zoom,
.shg-c#s-d0857d35-fcd4-479d-9918-7a1a0e8292f1 img.shogun-image {
  aspect-ratio: 2/3;
}

}
#s-028ed0e0-7a28-4ed6-bee5-0ba3309cd7d8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-028ed0e0-7a28-4ed6-bee5-0ba3309cd7d8 .shg-product-title-component h1 {
  color: ;
  font-weight:   ;
  font-family: Poppins;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: ;
}

#s-5b7a084d-d363-4a37-bb0f-a20c14f0e871 {
  text-align: center;
}

#s-5b7a084d-d363-4a37-bb0f-a20c14f0e871 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 15px;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-5b7a084d-d363-4a37-bb0f-a20c14f0e871 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 15px;
}

#s-5b7a084d-d363-4a37-bb0f-a20c14f0e871 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-b8acc9a2-ae57-42fb-aa00-5e5d175b9fa0 {
  background-image: url(https://i.shgcdn.com/a04c43d7-c154-40d7-8806-5b6e19d250d4/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
background-position: center center;
}
#s-b8acc9a2-ae57-42fb-aa00-5e5d175b9fa0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b8acc9a2-ae57-42fb-aa00-5e5d175b9fa0:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-b8acc9a2-ae57-42fb-aa00-5e5d175b9fa0 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b8acc9a2-ae57-42fb-aa00-5e5d175b9fa0.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b8acc9a2-ae57-42fb-aa00-5e5d175b9fa0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-b8acc9a2-ae57-42fb-aa00-5e5d175b9fa0.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-2922b2d5-b6f1-4194-a9c3-d4c82773473b {
  text-align: left;
}



.shg-c#s-2922b2d5-b6f1-4194-a9c3-d4c82773473b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2922b2d5-b6f1-4194-a9c3-d4c82773473b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-2922b2d5-b6f1-4194-a9c3-d4c82773473b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2922b2d5-b6f1-4194-a9c3-d4c82773473b img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-2922b2d5-b6f1-4194-a9c3-d4c82773473b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2922b2d5-b6f1-4194-a9c3-d4c82773473b img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-2922b2d5-b6f1-4194-a9c3-d4c82773473b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2922b2d5-b6f1-4194-a9c3-d4c82773473b img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-2922b2d5-b6f1-4194-a9c3-d4c82773473b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-2922b2d5-b6f1-4194-a9c3-d4c82773473b img.shogun-image {
  width: 100%;
}



}
#s-0b67f146-b464-44f9-a416-c435319ea281 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0b67f146-b464-44f9-a416-c435319ea281 .shg-product-title-component h1 {
  color: ;
  font-weight:   ;
  font-family: Poppins;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: ;
}

#s-2a1cb010-6879-43e0-a165-d8a9f102ff39 {
  text-align: center;
}

#s-2a1cb010-6879-43e0-a165-d8a9f102ff39 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 15px;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-2a1cb010-6879-43e0-a165-d8a9f102ff39 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 15px;
}

#s-2a1cb010-6879-43e0-a165-d8a9f102ff39 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-85e1d460-77cb-4a88-8ca4-c61999b449ee {
  background-image: url(https://i.shgcdn.com/a04c43d7-c154-40d7-8806-5b6e19d250d4/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
background-position: center center;
}
#s-85e1d460-77cb-4a88-8ca4-c61999b449ee:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-85e1d460-77cb-4a88-8ca4-c61999b449ee:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-85e1d460-77cb-4a88-8ca4-c61999b449ee {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-85e1d460-77cb-4a88-8ca4-c61999b449ee.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-85e1d460-77cb-4a88-8ca4-c61999b449ee.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-85e1d460-77cb-4a88-8ca4-c61999b449ee.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



@media (min-width: 1200px){#s-c3a2106e-3b31-4b20-bd10-91b3e5e4d2e2 {
  display: none;
}
#s-c3a2106e-3b31-4b20-bd10-91b3e5e4d2e2, #wrap-s-c3a2106e-3b31-4b20-bd10-91b3e5e4d2e2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c3a2106e-3b31-4b20-bd10-91b3e5e4d2e2 {
  display: none;
}
#s-c3a2106e-3b31-4b20-bd10-91b3e5e4d2e2, #wrap-s-c3a2106e-3b31-4b20-bd10-91b3e5e4d2e2 { display: none !important; }}
#s-c3a2106e-3b31-4b20-bd10-91b3e5e4d2e2 hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-c247efe9-7f55-4ac1-bbae-d86ce92816de {
  min-height: 50px;
}








#s-c247efe9-7f55-4ac1-bbae-d86ce92816de > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c247efe9-7f55-4ac1-bbae-d86ce92816de.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f5e2d0fa-0377-4fbf-80f5-b93de3bd067c {
  padding-left: 2%;
padding-right: 2%;
}
@media (min-width: 768px) and (max-width: 991px){#s-f5e2d0fa-0377-4fbf-80f5-b93de3bd067c {
  display: none;
}
#s-f5e2d0fa-0377-4fbf-80f5-b93de3bd067c, #wrap-s-f5e2d0fa-0377-4fbf-80f5-b93de3bd067c { display: none !important; }}@media (max-width: 767px){#s-f5e2d0fa-0377-4fbf-80f5-b93de3bd067c {
  display: none;
}
#s-f5e2d0fa-0377-4fbf-80f5-b93de3bd067c, #wrap-s-f5e2d0fa-0377-4fbf-80f5-b93de3bd067c { display: none !important; }}
@media (min-width: 0px) {
[id="s-f5e2d0fa-0377-4fbf-80f5-b93de3bd067c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f5e2d0fa-0377-4fbf-80f5-b93de3bd067c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-f5e2d0fa-0377-4fbf-80f5-b93de3bd067c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f5e2d0fa-0377-4fbf-80f5-b93de3bd067c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-f5e2d0fa-0377-4fbf-80f5-b93de3bd067c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f5e2d0fa-0377-4fbf-80f5-b93de3bd067c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-f5e2d0fa-0377-4fbf-80f5-b93de3bd067c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 0px) {
[id="s-f388ceb2-ff32-4355-abb9-d7ce497e4b82"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f388ceb2-ff32-4355-abb9-d7ce497e4b82"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-f388ceb2-ff32-4355-abb9-d7ce497e4b82"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-f388ceb2-ff32-4355-abb9-d7ce497e4b82"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-5e649060-ed4e-4fa4-a69b-315609bd063e {
  text-align: left;
}



.shg-c#s-5e649060-ed4e-4fa4-a69b-315609bd063e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5e649060-ed4e-4fa4-a69b-315609bd063e img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-5e649060-ed4e-4fa4-a69b-315609bd063e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5e649060-ed4e-4fa4-a69b-315609bd063e img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-5e649060-ed4e-4fa4-a69b-315609bd063e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5e649060-ed4e-4fa4-a69b-315609bd063e img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-5e649060-ed4e-4fa4-a69b-315609bd063e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5e649060-ed4e-4fa4-a69b-315609bd063e img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-5e649060-ed4e-4fa4-a69b-315609bd063e .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5e649060-ed4e-4fa4-a69b-315609bd063e img.shogun-image {
  width: 100%;
}



}
#s-8577e902-acd4-4bf6-b9f2-20e8dbfdb238 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8577e902-acd4-4bf6-b9f2-20e8dbfdb238 .shg-product-title-component h1 {
  color: ;
  font-weight:   ;
  font-family: Poppins;
  font-style:   ;
  font-size: 10px;
  line-height: ;
  letter-spacing: ;
}

#s-5f951fd8-5961-4439-a888-c00ba964e1aa {
  text-align: center;
}

#s-5f951fd8-5961-4439-a888-c00ba964e1aa .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 10px;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-5f951fd8-5961-4439-a888-c00ba964e1aa .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 10px;
}

#s-5f951fd8-5961-4439-a888-c00ba964e1aa .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-98139570-ecc9-475e-9ad9-a76b4a5e9140 {
  background-image: url(https://i.shgcdn.com/a04c43d7-c154-40d7-8806-5b6e19d250d4/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
background-position: center center;
}
#s-98139570-ecc9-475e-9ad9-a76b4a5e9140:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-98139570-ecc9-475e-9ad9-a76b4a5e9140:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-98139570-ecc9-475e-9ad9-a76b4a5e9140 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-98139570-ecc9-475e-9ad9-a76b4a5e9140.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-98139570-ecc9-475e-9ad9-a76b4a5e9140.shg-btn {
  color: #ffffff;
  font-size: 10px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-98139570-ecc9-475e-9ad9-a76b4a5e9140.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-6910de50-8883-4610-a1cd-859efa70e40a {
  text-align: left;
}



.shg-c#s-6910de50-8883-4610-a1cd-859efa70e40a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6910de50-8883-4610-a1cd-859efa70e40a img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-6910de50-8883-4610-a1cd-859efa70e40a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6910de50-8883-4610-a1cd-859efa70e40a img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-6910de50-8883-4610-a1cd-859efa70e40a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6910de50-8883-4610-a1cd-859efa70e40a img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-6910de50-8883-4610-a1cd-859efa70e40a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6910de50-8883-4610-a1cd-859efa70e40a img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-6910de50-8883-4610-a1cd-859efa70e40a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6910de50-8883-4610-a1cd-859efa70e40a img.shogun-image {
  width: 100%;
}



}
#s-8893a1d2-20cb-47db-b58a-7d11cf60b6a4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8893a1d2-20cb-47db-b58a-7d11cf60b6a4 .shg-product-title-component h1 {
  color: ;
  font-weight:   ;
  font-family: Poppins;
  font-style:   ;
  font-size: 10px;
  line-height: ;
  letter-spacing: ;
}

#s-87f8d575-c0c3-4c64-8a74-66608498e6b8 {
  text-align: center;
}

#s-87f8d575-c0c3-4c64-8a74-66608498e6b8 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 10px;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-87f8d575-c0c3-4c64-8a74-66608498e6b8 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 10px;
}

#s-87f8d575-c0c3-4c64-8a74-66608498e6b8 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-6be58415-7764-4994-95cf-c9d88b5f3aa7 {
  background-image: url(https://i.shgcdn.com/a04c43d7-c154-40d7-8806-5b6e19d250d4/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
background-position: center center;
}
#s-6be58415-7764-4994-95cf-c9d88b5f3aa7:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6be58415-7764-4994-95cf-c9d88b5f3aa7:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-6be58415-7764-4994-95cf-c9d88b5f3aa7 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-6be58415-7764-4994-95cf-c9d88b5f3aa7.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-6be58415-7764-4994-95cf-c9d88b5f3aa7.shg-btn {
  color: #ffffff;
  font-size: 10px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-6be58415-7764-4994-95cf-c9d88b5f3aa7.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-6707323f-8e0c-45ac-a365-1a21155fa4c5 {
  text-align: left;
}



.shg-c#s-6707323f-8e0c-45ac-a365-1a21155fa4c5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6707323f-8e0c-45ac-a365-1a21155fa4c5 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-6707323f-8e0c-45ac-a365-1a21155fa4c5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6707323f-8e0c-45ac-a365-1a21155fa4c5 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-6707323f-8e0c-45ac-a365-1a21155fa4c5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6707323f-8e0c-45ac-a365-1a21155fa4c5 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-6707323f-8e0c-45ac-a365-1a21155fa4c5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6707323f-8e0c-45ac-a365-1a21155fa4c5 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-6707323f-8e0c-45ac-a365-1a21155fa4c5 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6707323f-8e0c-45ac-a365-1a21155fa4c5 img.shogun-image {
  width: 100%;
}



}
#s-512f706c-49d8-4ba9-ab9c-440fe3224476 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-512f706c-49d8-4ba9-ab9c-440fe3224476 .shg-product-title-component h1 {
  color: ;
  font-weight:   ;
  font-family: Poppins;
  font-style:   ;
  font-size: 10px;
  line-height: ;
  letter-spacing: ;
}

#s-282f146d-7026-47b0-9ee7-0d407e9b8235 {
  text-align: center;
}

#s-282f146d-7026-47b0-9ee7-0d407e9b8235 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 10px;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-282f146d-7026-47b0-9ee7-0d407e9b8235 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 10px;
}

#s-282f146d-7026-47b0-9ee7-0d407e9b8235 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-a03925a9-24bf-44f4-b010-d26359cbf9b1 {
  background-image: url(https://i.shgcdn.com/a04c43d7-c154-40d7-8806-5b6e19d250d4/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
background-position: center center;
}
#s-a03925a9-24bf-44f4-b010-d26359cbf9b1:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a03925a9-24bf-44f4-b010-d26359cbf9b1:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-a03925a9-24bf-44f4-b010-d26359cbf9b1 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a03925a9-24bf-44f4-b010-d26359cbf9b1.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a03925a9-24bf-44f4-b010-d26359cbf9b1.shg-btn {
  color: #ffffff;
  font-size: 10px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-a03925a9-24bf-44f4-b010-d26359cbf9b1.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-1b5d92bd-6852-4864-a693-cf5ff092f849 hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-0906b9ea-4a0d-404c-b220-165ed887e862 {
  background-image: url(https://i.shgcdn.com/a04c43d7-c154-40d7-8806-5b6e19d250d4/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
background-position: center center;
}
#s-0906b9ea-4a0d-404c-b220-165ed887e862:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-0906b9ea-4a0d-404c-b220-165ed887e862:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-0906b9ea-4a0d-404c-b220-165ed887e862-root {
    text-align: center;
  }


#s-0906b9ea-4a0d-404c-b220-165ed887e862.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-0906b9ea-4a0d-404c-b220-165ed887e862-root {
    text-align: center;
  }


#s-0906b9ea-4a0d-404c-b220-165ed887e862.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0906b9ea-4a0d-404c-b220-165ed887e862-root {
    text-align: center;
  }


#s-0906b9ea-4a0d-404c-b220-165ed887e862.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0906b9ea-4a0d-404c-b220-165ed887e862-root {
    text-align: center;
  }


#s-0906b9ea-4a0d-404c-b220-165ed887e862.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-0906b9ea-4a0d-404c-b220-165ed887e862-root {
    text-align: center;
  }


#s-0906b9ea-4a0d-404c-b220-165ed887e862.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 {
  max-width: 642px;
aspect-ratio: 642/769;
text-align: center;
}





  #s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 img.shogun-image,
  #s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 {
    width: 100%;
    height: auto;
  }

  #s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image {
    
    
  }


.s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 .shogun-image-content {
  
    align-items: center;
  
}

.s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 {
      --shg-aspect-ratio: calc(642/769); 
    }

    .s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image-container {
      position: relative;
    }

    .s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 img.shogun-image,
  #s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 {
    width: 100%;
    height: auto;
  }

  #s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image {
    
    
  }


.s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 .shogun-image-content {
  
    align-items: center;
  
}

.s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 {
      --shg-aspect-ratio: calc(642/769); 
    }

    .s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image-container {
      position: relative;
    }

    .s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 img.shogun-image,
  #s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 {
    width: 100%;
    height: auto;
  }

  #s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image {
    
    
  }


.s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 .shogun-image-content {
  
    align-items: center;
  
}

.s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 {
      --shg-aspect-ratio: calc(642/769); 
    }

    .s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image-container {
      position: relative;
    }

    .s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 img.shogun-image,
  #s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 {
    width: 100%;
    height: auto;
  }

  #s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image {
    
    
  }


.s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 .shogun-image-content {
  
    align-items: center;
  
}

.s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 {
      --shg-aspect-ratio: calc(642/769); 
    }

    .s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image-container {
      position: relative;
    }

    .s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 img.shogun-image,
  #s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 {
    width: 100%;
    height: auto;
  }

  #s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image {
    
    
  }


.s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 .shogun-image-content {
  
    align-items: center;
  
}

.s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 {
      --shg-aspect-ratio: calc(642/769); 
    }

    .s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image-container {
      position: relative;
    }

    .s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4f554bdc-9f0b-4f82-a58d-cd62c8b618c2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-5d77df7c-fef0-49be-9aeb-f72c905ccfd4 {
  background-image: url(https://i.shgcdn.com/a04c43d7-c154-40d7-8806-5b6e19d250d4/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
background-position: center center;
}
#s-5d77df7c-fef0-49be-9aeb-f72c905ccfd4:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-5d77df7c-fef0-49be-9aeb-f72c905ccfd4:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-5d77df7c-fef0-49be-9aeb-f72c905ccfd4 {
  display: none;
}
#s-5d77df7c-fef0-49be-9aeb-f72c905ccfd4, #wrap-s-5d77df7c-fef0-49be-9aeb-f72c905ccfd4 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5d77df7c-fef0-49be-9aeb-f72c905ccfd4 {
  display: none;
}
#s-5d77df7c-fef0-49be-9aeb-f72c905ccfd4, #wrap-s-5d77df7c-fef0-49be-9aeb-f72c905ccfd4 { display: none !important; }}

  #s-5d77df7c-fef0-49be-9aeb-f72c905ccfd4-root {
    text-align: center;
  }


#s-5d77df7c-fef0-49be-9aeb-f72c905ccfd4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-5d77df7c-fef0-49be-9aeb-f72c905ccfd4-root {
    text-align: center;
  }


#s-5d77df7c-fef0-49be-9aeb-f72c905ccfd4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5d77df7c-fef0-49be-9aeb-f72c905ccfd4-root {
    text-align: center;
  }


#s-5d77df7c-fef0-49be-9aeb-f72c905ccfd4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5d77df7c-fef0-49be-9aeb-f72c905ccfd4-root {
    text-align: center;
  }


#s-5d77df7c-fef0-49be-9aeb-f72c905ccfd4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-5d77df7c-fef0-49be-9aeb-f72c905ccfd4-root {
    text-align: center;
  }


#s-5d77df7c-fef0-49be-9aeb-f72c905ccfd4.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
@media (min-width: 768px) and (max-width: 991px){#s-5d0a882b-52b4-4c93-bf5c-591afc12f097 {
  display: none;
}
#s-5d0a882b-52b4-4c93-bf5c-591afc12f097, #wrap-s-5d0a882b-52b4-4c93-bf5c-591afc12f097 { display: none !important; }}@media (max-width: 767px){#s-5d0a882b-52b4-4c93-bf5c-591afc12f097 {
  display: none;
}
#s-5d0a882b-52b4-4c93-bf5c-591afc12f097, #wrap-s-5d0a882b-52b4-4c93-bf5c-591afc12f097 { display: none !important; }}
#s-5d0a882b-52b4-4c93-bf5c-591afc12f097 hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 {
  max-width: 1920px;
aspect-ratio: 1920/210;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 {
  display: none;
}
#s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9, #wrap-s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 { display: none !important; }}@media (max-width: 767px){#s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 {
  display: none;
}
#s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9, #wrap-s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 { display: none !important; }}




  #s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 img.shogun-image,
  #s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 {
    width: 100%;
    height: auto;
  }

  #s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image {
    
    
  }


.s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 .shogun-image-content {
  
    align-items: center;
  
}

.s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 {
      --shg-aspect-ratio: calc(1920/210); 
    }

    .s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image-container {
      position: relative;
    }

    .s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 img.shogun-image,
  #s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 {
    width: 100%;
    height: auto;
  }

  #s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image {
    
    
  }


.s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 .shogun-image-content {
  
    align-items: center;
  
}

.s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 {
      --shg-aspect-ratio: calc(1920/210); 
    }

    .s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image-container {
      position: relative;
    }

    .s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 img.shogun-image,
  #s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 {
    width: 100%;
    height: auto;
  }

  #s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image {
    
    
  }


.s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 .shogun-image-content {
  
    align-items: center;
  
}

.s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 {
      --shg-aspect-ratio: calc(1920/210); 
    }

    .s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image-container {
      position: relative;
    }

    .s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 img.shogun-image,
  #s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 {
    width: 100%;
    height: auto;
  }

  #s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image {
    
    
  }


.s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 .shogun-image-content {
  
    align-items: center;
  
}

.s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 {
      --shg-aspect-ratio: calc(1920/210); 
    }

    .s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image-container {
      position: relative;
    }

    .s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 img.shogun-image,
  #s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 {
    width: 100%;
    height: auto;
  }

  #s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image {
    
    
  }


.s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 .shogun-image-content {
  
    align-items: center;
  
}

.s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 {
      --shg-aspect-ratio: calc(1920/210); 
    }

    .s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image-container {
      position: relative;
    }

    .s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-6b06b52a-6bfe-4e67-8bb5-4b43c56c94c9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
@media (min-width: 768px) and (max-width: 991px){#s-44a083ba-6a9c-499d-a314-c18c24547deb {
  display: none;
}
#s-44a083ba-6a9c-499d-a314-c18c24547deb, #wrap-s-44a083ba-6a9c-499d-a314-c18c24547deb { display: none !important; }}@media (max-width: 767px){#s-44a083ba-6a9c-499d-a314-c18c24547deb {
  display: none;
}
#s-44a083ba-6a9c-499d-a314-c18c24547deb, #wrap-s-44a083ba-6a9c-499d-a314-c18c24547deb { display: none !important; }}
#s-44a083ba-6a9c-499d-a314-c18c24547deb hr {
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 {
  margin-top: 20px;
margin-bottom: 20px;
max-width: 932px;
aspect-ratio: 932/417;
text-align: center;
}
@media (min-width: 1200px){#s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 {
  display: none;
}
#s-8e880b93-0229-4c55-8f9a-019b3b3c17b1, #wrap-s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 {
  display: none;
}
#s-8e880b93-0229-4c55-8f9a-019b3b3c17b1, #wrap-s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 { display: none !important; }}




  #s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 img.shogun-image,
  #s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 {
    width: 100%;
    height: auto;
  }

  #s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image {
    
    
  }


.s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 .shogun-image-content {
  
    align-items: center;
  
}

.s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 {
      --shg-aspect-ratio: calc(932/417); 
    }

    .s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image-container {
      position: relative;
    }

    .s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 img.shogun-image,
  #s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 {
    width: 100%;
    height: auto;
  }

  #s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image {
    
    
  }


.s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 .shogun-image-content {
  
    align-items: center;
  
}

.s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 {
      --shg-aspect-ratio: calc(932/417); 
    }

    .s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image-container {
      position: relative;
    }

    .s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 img.shogun-image,
  #s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 {
    width: 100%;
    height: auto;
  }

  #s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image {
    
    
  }


.s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 .shogun-image-content {
  
    align-items: center;
  
}

.s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 {
      --shg-aspect-ratio: calc(932/417); 
    }

    .s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image-container {
      position: relative;
    }

    .s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 img.shogun-image,
  #s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 {
    width: 100%;
    height: auto;
  }

  #s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image {
    
    
  }


.s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 .shogun-image-content {
  
    align-items: center;
  
}

.s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 {
      --shg-aspect-ratio: calc(932/417); 
    }

    .s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image-container {
      position: relative;
    }

    .s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 img.shogun-image,
  #s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 {
    width: 100%;
    height: auto;
  }

  #s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image {
    
    
  }


.s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 .shogun-image-content {
  
    align-items: center;
  
}

.s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 {
      --shg-aspect-ratio: calc(932/417); 
    }

    .s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image-container {
      position: relative;
    }

    .s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8e880b93-0229-4c55-8f9a-019b3b3c17b1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8e880b93-0229-4c55-8f9a-019b3b3c17b1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-9f861ea7-9f65-49a5-8997-4c992640dec6 {
  padding-left: 2%;
padding-right: 2%;
}

@media (min-width: 0px) {
[id="s-9f861ea7-9f65-49a5-8997-4c992640dec6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9f861ea7-9f65-49a5-8997-4c992640dec6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9f861ea7-9f65-49a5-8997-4c992640dec6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9f861ea7-9f65-49a5-8997-4c992640dec6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b {
  max-width: 2304px;
aspect-ratio: 2304/1998;
text-align: center;
}





  #s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b img.shogun-image,
  #s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b {
    width: 100%;
    height: auto;
  }

  #s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image {
    
    
  }


.s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b .shogun-image-content {
  
    align-items: center;
  
}

.s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b {
      --shg-aspect-ratio: calc(2304/1998); 
    }

    .s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image-container {
      position: relative;
    }

    .s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b img.shogun-image,
  #s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b {
    width: 100%;
    height: auto;
  }

  #s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image {
    
    
  }


.s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b .shogun-image-content {
  
    align-items: center;
  
}

.s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b {
      --shg-aspect-ratio: calc(2304/1998); 
    }

    .s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image-container {
      position: relative;
    }

    .s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b img.shogun-image,
  #s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b {
    width: 100%;
    height: auto;
  }

  #s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image {
    
    
  }


.s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b .shogun-image-content {
  
    align-items: center;
  
}

.s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b {
      --shg-aspect-ratio: calc(2304/1998); 
    }

    .s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image-container {
      position: relative;
    }

    .s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b img.shogun-image,
  #s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b {
    width: 100%;
    height: auto;
  }

  #s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image {
    
    
  }


.s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b .shogun-image-content {
  
    align-items: center;
  
}

.s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b {
      --shg-aspect-ratio: calc(2304/1998); 
    }

    .s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image-container {
      position: relative;
    }

    .s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b img.shogun-image,
  #s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b {
    width: 100%;
    height: auto;
  }

  #s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image {
    
    
  }


.s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b .shogun-image-content {
  
    align-items: center;
  
}

.s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b {
      --shg-aspect-ratio: calc(2304/1998); 
    }

    .s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image-container {
      position: relative;
    }

    .s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-24ea6b21-ea00-44c3-9ad2-2c3035bf548b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-a793171b-eb46-4d9d-8897-c024d545dcbb {
  max-width: 2304px;
aspect-ratio: 2304/1998;
text-align: center;
}





  #s-a793171b-eb46-4d9d-8897-c024d545dcbb img.shogun-image,
  #s-a793171b-eb46-4d9d-8897-c024d545dcbb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a793171b-eb46-4d9d-8897-c024d545dcbb {
    width: 100%;
    height: auto;
  }

  #s-a793171b-eb46-4d9d-8897-c024d545dcbb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image {
    
    
  }


.s-a793171b-eb46-4d9d-8897-c024d545dcbb .shogun-image-content {
  
    align-items: center;
  
}

.s-a793171b-eb46-4d9d-8897-c024d545dcbb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a793171b-eb46-4d9d-8897-c024d545dcbb {
      --shg-aspect-ratio: calc(2304/1998); 
    }

    .s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image-container {
      position: relative;
    }

    .s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a793171b-eb46-4d9d-8897-c024d545dcbb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-a793171b-eb46-4d9d-8897-c024d545dcbb img.shogun-image,
  #s-a793171b-eb46-4d9d-8897-c024d545dcbb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a793171b-eb46-4d9d-8897-c024d545dcbb {
    width: 100%;
    height: auto;
  }

  #s-a793171b-eb46-4d9d-8897-c024d545dcbb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image {
    
    
  }


.s-a793171b-eb46-4d9d-8897-c024d545dcbb .shogun-image-content {
  
    align-items: center;
  
}

.s-a793171b-eb46-4d9d-8897-c024d545dcbb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a793171b-eb46-4d9d-8897-c024d545dcbb {
      --shg-aspect-ratio: calc(2304/1998); 
    }

    .s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image-container {
      position: relative;
    }

    .s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a793171b-eb46-4d9d-8897-c024d545dcbb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-a793171b-eb46-4d9d-8897-c024d545dcbb img.shogun-image,
  #s-a793171b-eb46-4d9d-8897-c024d545dcbb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a793171b-eb46-4d9d-8897-c024d545dcbb {
    width: 100%;
    height: auto;
  }

  #s-a793171b-eb46-4d9d-8897-c024d545dcbb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image {
    
    
  }


.s-a793171b-eb46-4d9d-8897-c024d545dcbb .shogun-image-content {
  
    align-items: center;
  
}

.s-a793171b-eb46-4d9d-8897-c024d545dcbb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a793171b-eb46-4d9d-8897-c024d545dcbb {
      --shg-aspect-ratio: calc(2304/1998); 
    }

    .s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image-container {
      position: relative;
    }

    .s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a793171b-eb46-4d9d-8897-c024d545dcbb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-a793171b-eb46-4d9d-8897-c024d545dcbb img.shogun-image,
  #s-a793171b-eb46-4d9d-8897-c024d545dcbb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a793171b-eb46-4d9d-8897-c024d545dcbb {
    width: 100%;
    height: auto;
  }

  #s-a793171b-eb46-4d9d-8897-c024d545dcbb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image {
    
    
  }


.s-a793171b-eb46-4d9d-8897-c024d545dcbb .shogun-image-content {
  
    align-items: center;
  
}

.s-a793171b-eb46-4d9d-8897-c024d545dcbb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a793171b-eb46-4d9d-8897-c024d545dcbb {
      --shg-aspect-ratio: calc(2304/1998); 
    }

    .s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image-container {
      position: relative;
    }

    .s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a793171b-eb46-4d9d-8897-c024d545dcbb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-a793171b-eb46-4d9d-8897-c024d545dcbb img.shogun-image,
  #s-a793171b-eb46-4d9d-8897-c024d545dcbb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a793171b-eb46-4d9d-8897-c024d545dcbb {
    width: 100%;
    height: auto;
  }

  #s-a793171b-eb46-4d9d-8897-c024d545dcbb img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image {
    
    
  }


.s-a793171b-eb46-4d9d-8897-c024d545dcbb .shogun-image-content {
  
    align-items: center;
  
}

.s-a793171b-eb46-4d9d-8897-c024d545dcbb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a793171b-eb46-4d9d-8897-c024d545dcbb {
      --shg-aspect-ratio: calc(2304/1998); 
    }

    .s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image-container {
      position: relative;
    }

    .s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a793171b-eb46-4d9d-8897-c024d545dcbb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a793171b-eb46-4d9d-8897-c024d545dcbb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-5a59249b-349a-49ef-acc2-50f4d7675880 hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-78efb8c9-e3b0-4a65-991a-5adbf2e3b5ad {
  padding-left: 2%;
padding-right: 2%;
}

@media (min-width: 0px) {
[id="s-78efb8c9-e3b0-4a65-991a-5adbf2e3b5ad"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-78efb8c9-e3b0-4a65-991a-5adbf2e3b5ad"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-78efb8c9-e3b0-4a65-991a-5adbf2e3b5ad"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-78efb8c9-e3b0-4a65-991a-5adbf2e3b5ad"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-55bf0cbf-3dbb-4b86-8949-a1d3a919a4c8 {
  text-align: left;
}



.shg-c#s-55bf0cbf-3dbb-4b86-8949-a1d3a919a4c8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-55bf0cbf-3dbb-4b86-8949-a1d3a919a4c8 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-55bf0cbf-3dbb-4b86-8949-a1d3a919a4c8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-55bf0cbf-3dbb-4b86-8949-a1d3a919a4c8 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-55bf0cbf-3dbb-4b86-8949-a1d3a919a4c8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-55bf0cbf-3dbb-4b86-8949-a1d3a919a4c8 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-55bf0cbf-3dbb-4b86-8949-a1d3a919a4c8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-55bf0cbf-3dbb-4b86-8949-a1d3a919a4c8 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-55bf0cbf-3dbb-4b86-8949-a1d3a919a4c8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-55bf0cbf-3dbb-4b86-8949-a1d3a919a4c8 img.shogun-image {
  width: 100%;
}



}
#s-e134737f-c4ce-4409-8fa8-ce1083813ffe {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e134737f-c4ce-4409-8fa8-ce1083813ffe .shg-product-title-component h1 {
  color: ;
  font-weight:   ;
  font-family: Poppins;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: ;
}

#s-dd6f67d9-d5ce-41bb-85ca-b85c5b1d1da9 {
  text-align: center;
}

#s-dd6f67d9-d5ce-41bb-85ca-b85c5b1d1da9 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 15px;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-dd6f67d9-d5ce-41bb-85ca-b85c5b1d1da9 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 15px;
}

#s-dd6f67d9-d5ce-41bb-85ca-b85c5b1d1da9 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-9cbea372-7042-4569-b24f-3f04fdf7b8b8 {
  background-image: url(https://i.shgcdn.com/ded06eb8-cae1-44af-bdbc-21f9814f6516/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
background-position: center center;
}
#s-9cbea372-7042-4569-b24f-3f04fdf7b8b8:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9cbea372-7042-4569-b24f-3f04fdf7b8b8:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-9cbea372-7042-4569-b24f-3f04fdf7b8b8 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-9cbea372-7042-4569-b24f-3f04fdf7b8b8.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-9cbea372-7042-4569-b24f-3f04fdf7b8b8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-9cbea372-7042-4569-b24f-3f04fdf7b8b8.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-b41269de-03c4-4ec2-aef7-aa1bfff1a633 {
  text-align: left;
}



.shg-c#s-b41269de-03c4-4ec2-aef7-aa1bfff1a633 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b41269de-03c4-4ec2-aef7-aa1bfff1a633 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-b41269de-03c4-4ec2-aef7-aa1bfff1a633 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b41269de-03c4-4ec2-aef7-aa1bfff1a633 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-b41269de-03c4-4ec2-aef7-aa1bfff1a633 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b41269de-03c4-4ec2-aef7-aa1bfff1a633 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-b41269de-03c4-4ec2-aef7-aa1bfff1a633 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b41269de-03c4-4ec2-aef7-aa1bfff1a633 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-b41269de-03c4-4ec2-aef7-aa1bfff1a633 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b41269de-03c4-4ec2-aef7-aa1bfff1a633 img.shogun-image {
  width: 100%;
}



}
#s-1ec99537-03d3-4767-998b-267e99cf1a49 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1ec99537-03d3-4767-998b-267e99cf1a49 .shg-product-title-component h1 {
  color: ;
  font-weight:   ;
  font-family: Poppins;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: ;
}

#s-28c6d6d6-7e92-440b-aa59-29a3ee8e9f83 {
  text-align: center;
}

#s-28c6d6d6-7e92-440b-aa59-29a3ee8e9f83 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 15px;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-28c6d6d6-7e92-440b-aa59-29a3ee8e9f83 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 15px;
}

#s-28c6d6d6-7e92-440b-aa59-29a3ee8e9f83 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-af843c4b-3472-41d0-bcb8-290b8e34a041 {
  background-image: url(https://i.shgcdn.com/ded06eb8-cae1-44af-bdbc-21f9814f6516/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
background-position: center center;
}
#s-af843c4b-3472-41d0-bcb8-290b8e34a041:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-af843c4b-3472-41d0-bcb8-290b8e34a041:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-af843c4b-3472-41d0-bcb8-290b8e34a041 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-af843c4b-3472-41d0-bcb8-290b8e34a041.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-af843c4b-3472-41d0-bcb8-290b8e34a041.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-af843c4b-3472-41d0-bcb8-290b8e34a041.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-5526a618-f486-49fe-b84c-0d50e6ff9bd9 {
  text-align: left;
}



.shg-c#s-5526a618-f486-49fe-b84c-0d50e6ff9bd9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5526a618-f486-49fe-b84c-0d50e6ff9bd9 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-5526a618-f486-49fe-b84c-0d50e6ff9bd9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5526a618-f486-49fe-b84c-0d50e6ff9bd9 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-5526a618-f486-49fe-b84c-0d50e6ff9bd9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5526a618-f486-49fe-b84c-0d50e6ff9bd9 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-5526a618-f486-49fe-b84c-0d50e6ff9bd9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5526a618-f486-49fe-b84c-0d50e6ff9bd9 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-5526a618-f486-49fe-b84c-0d50e6ff9bd9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5526a618-f486-49fe-b84c-0d50e6ff9bd9 img.shogun-image {
  width: 100%;
}



}
#s-e7a67d91-2212-4fb3-b032-24a421554652 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e7a67d91-2212-4fb3-b032-24a421554652 .shg-product-title-component h1 {
  color: ;
  font-weight:   ;
  font-family: Poppins;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: ;
}

#s-46f069f9-1343-4621-b26e-a4d22f542ff2 {
  text-align: center;
}

#s-46f069f9-1343-4621-b26e-a4d22f542ff2 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 15px;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-46f069f9-1343-4621-b26e-a4d22f542ff2 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 15px;
}

#s-46f069f9-1343-4621-b26e-a4d22f542ff2 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-fd8157ab-8906-4ac6-b464-7ff383836b3c {
  background-image: url(https://i.shgcdn.com/ded06eb8-cae1-44af-bdbc-21f9814f6516/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
background-position: center center;
}
#s-fd8157ab-8906-4ac6-b464-7ff383836b3c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-fd8157ab-8906-4ac6-b464-7ff383836b3c:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-fd8157ab-8906-4ac6-b464-7ff383836b3c {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-fd8157ab-8906-4ac6-b464-7ff383836b3c.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-fd8157ab-8906-4ac6-b464-7ff383836b3c.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-fd8157ab-8906-4ac6-b464-7ff383836b3c.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-32ddbf33-3865-4795-a990-dd996d9bddc6 {
  text-align: left;
}



.shg-c#s-32ddbf33-3865-4795-a990-dd996d9bddc6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32ddbf33-3865-4795-a990-dd996d9bddc6 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-32ddbf33-3865-4795-a990-dd996d9bddc6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32ddbf33-3865-4795-a990-dd996d9bddc6 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-32ddbf33-3865-4795-a990-dd996d9bddc6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32ddbf33-3865-4795-a990-dd996d9bddc6 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-32ddbf33-3865-4795-a990-dd996d9bddc6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32ddbf33-3865-4795-a990-dd996d9bddc6 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-32ddbf33-3865-4795-a990-dd996d9bddc6 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-32ddbf33-3865-4795-a990-dd996d9bddc6 img.shogun-image {
  width: 100%;
}



}
#s-69ed795b-c33e-4583-98d7-06db46a2931b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-69ed795b-c33e-4583-98d7-06db46a2931b .shg-product-title-component h1 {
  color: ;
  font-weight:   ;
  font-family: Poppins;
  font-style:   ;
  font-size: 15px;
  line-height: ;
  letter-spacing: ;
}

#s-bf969334-5831-4201-a765-112b29a9d093 {
  text-align: center;
}

#s-bf969334-5831-4201-a765-112b29a9d093 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 15px;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
}

#s-bf969334-5831-4201-a765-112b29a9d093 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Poppins;
  font-style:  normal ;
  font-size: 15px;
}

#s-bf969334-5831-4201-a765-112b29a9d093 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-7577c2a7-8efa-462d-b6b8-2879164cb70f {
  background-image: url(https://i.shgcdn.com/ded06eb8-cae1-44af-bdbc-21f9814f6516/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
cursor: pointer;
background-position: center center;
}
#s-7577c2a7-8efa-462d-b6b8-2879164cb70f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7577c2a7-8efa-462d-b6b8-2879164cb70f:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-7577c2a7-8efa-462d-b6b8-2879164cb70f {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-7577c2a7-8efa-462d-b6b8-2879164cb70f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7577c2a7-8efa-462d-b6b8-2879164cb70f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-7577c2a7-8efa-462d-b6b8-2879164cb70f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



@media (min-width: 1200px){#s-addf3688-3a2c-4eb6-b69f-e80f02a103f0 {
  display: none;
}
#s-addf3688-3a2c-4eb6-b69f-e80f02a103f0, #wrap-s-addf3688-3a2c-4eb6-b69f-e80f02a103f0 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-addf3688-3a2c-4eb6-b69f-e80f02a103f0 {
  display: none;
}
#s-addf3688-3a2c-4eb6-b69f-e80f02a103f0, #wrap-s-addf3688-3a2c-4eb6-b69f-e80f02a103f0 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-addf3688-3a2c-4eb6-b69f-e80f02a103f0 {
  display: unset;
}
#s-addf3688-3a2c-4eb6-b69f-e80f02a103f0, #wrap-s-addf3688-3a2c-4eb6-b69f-e80f02a103f0 { display: unset !important; }}
#s-addf3688-3a2c-4eb6-b69f-e80f02a103f0 hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-f1b8bda3-3f0f-4765-bad6-2916375ad07b {
  background-image: url(https://i.shgcdn.com/ded06eb8-cae1-44af-bdbc-21f9814f6516/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
background-position: center center;
}
#s-f1b8bda3-3f0f-4765-bad6-2916375ad07b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-f1b8bda3-3f0f-4765-bad6-2916375ad07b:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-f1b8bda3-3f0f-4765-bad6-2916375ad07b {
  display: none;
}
#s-f1b8bda3-3f0f-4765-bad6-2916375ad07b, #wrap-s-f1b8bda3-3f0f-4765-bad6-2916375ad07b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f1b8bda3-3f0f-4765-bad6-2916375ad07b {
  display: none;
}
#s-f1b8bda3-3f0f-4765-bad6-2916375ad07b, #wrap-s-f1b8bda3-3f0f-4765-bad6-2916375ad07b { display: none !important; }}

  #s-f1b8bda3-3f0f-4765-bad6-2916375ad07b-root {
    text-align: center;
  }


#s-f1b8bda3-3f0f-4765-bad6-2916375ad07b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-f1b8bda3-3f0f-4765-bad6-2916375ad07b-root {
    text-align: center;
  }


#s-f1b8bda3-3f0f-4765-bad6-2916375ad07b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f1b8bda3-3f0f-4765-bad6-2916375ad07b-root {
    text-align: center;
  }


#s-f1b8bda3-3f0f-4765-bad6-2916375ad07b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f1b8bda3-3f0f-4765-bad6-2916375ad07b-root {
    text-align: center;
  }


#s-f1b8bda3-3f0f-4765-bad6-2916375ad07b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-f1b8bda3-3f0f-4765-bad6-2916375ad07b-root {
    text-align: center;
  }


#s-f1b8bda3-3f0f-4765-bad6-2916375ad07b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-356ce7d9-1222-407b-ab0b-07545b5cc8db hr {
  border-top: 2px solid rgba(255, 255, 255, 1);
}

#s-11906966-92bd-42df-94bd-84c53efc85e8 {
  background-image: url(https://i.shgcdn.com/ded06eb8-cae1-44af-bdbc-21f9814f6516/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: #252525;
text-align: center;
text-decoration: none;
background-position: center center;
}
#s-11906966-92bd-42df-94bd-84c53efc85e8:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-11906966-92bd-42df-94bd-84c53efc85e8:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-11906966-92bd-42df-94bd-84c53efc85e8 {
  display: none;
}
#s-11906966-92bd-42df-94bd-84c53efc85e8, #wrap-s-11906966-92bd-42df-94bd-84c53efc85e8 { display: none !important; }}@media (max-width: 767px){#s-11906966-92bd-42df-94bd-84c53efc85e8 {
  display: none;
}
#s-11906966-92bd-42df-94bd-84c53efc85e8, #wrap-s-11906966-92bd-42df-94bd-84c53efc85e8 { display: none !important; }}

  #s-11906966-92bd-42df-94bd-84c53efc85e8-root {
    text-align: center;
  }


#s-11906966-92bd-42df-94bd-84c53efc85e8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-11906966-92bd-42df-94bd-84c53efc85e8-root {
    text-align: center;
  }


#s-11906966-92bd-42df-94bd-84c53efc85e8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-11906966-92bd-42df-94bd-84c53efc85e8-root {
    text-align: center;
  }


#s-11906966-92bd-42df-94bd-84c53efc85e8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-11906966-92bd-42df-94bd-84c53efc85e8-root {
    text-align: center;
  }


#s-11906966-92bd-42df-94bd-84c53efc85e8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-11906966-92bd-42df-94bd-84c53efc85e8-root {
    text-align: center;
  }


#s-11906966-92bd-42df-94bd-84c53efc85e8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
/*
  $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;
}

@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;
  }
}

#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-lazyload-bg-image {
  display: none;
}

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

.shg-c:before,.shg-c:after{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@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}}#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:#000;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-lazyload-bg-image{display:none}.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{display:inline-block}[data-animations*="enterviewport"][data-animations*="fadeIn"],[data-animations*="enterviewport"][data-animations*="zoomIn"]{opacity:0}.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}
