.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-09810f32-e33e-4fac-9a41-b593fbd3e212 {
  min-height: 10px;
}








#s-09810f32-e33e-4fac-9a41-b593fbd3e212 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-09810f32-e33e-4fac-9a41-b593fbd3e212.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-eb614ca6-b497-4765-825b-360fee252155 {
  max-width: 1310px;
aspect-ratio: 1310/470;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-eb614ca6-b497-4765-825b-360fee252155 .shg-image-content-wrapper {
      aspect-ratio: 1310/470;
      min-width: 100%;
      height: auto;
    }

    #s-eb614ca6-b497-4765-825b-360fee252155 .shogun-image-link {
      aspect-ratio: 1310/470;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eb614ca6-b497-4765-825b-360fee252155 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-eb614ca6-b497-4765-825b-360fee252155 {
    width: 100%;
    height: auto;
  }

  #s-eb614ca6-b497-4765-825b-360fee252155 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-eb614ca6-b497-4765-825b-360fee252155.shogun-image {
    
    
  }


.s-eb614ca6-b497-4765-825b-360fee252155 .shogun-image-content {
  
    align-items: center;
  
}

.s-eb614ca6-b497-4765-825b-360fee252155.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eb614ca6-b497-4765-825b-360fee252155.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb614ca6-b497-4765-825b-360fee252155.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-eb614ca6-b497-4765-825b-360fee252155 {
      --shg-aspect-ratio: calc(1310/470); 
    }

    .s-eb614ca6-b497-4765-825b-360fee252155.shogun-image-container {
      position: relative;
    }

    .s-eb614ca6-b497-4765-825b-360fee252155.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eb614ca6-b497-4765-825b-360fee252155.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eb614ca6-b497-4765-825b-360fee252155 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-eb614ca6-b497-4765-825b-360fee252155 .shg-image-content-wrapper {
      aspect-ratio: 1310/470;
      min-width: 100%;
      height: auto;
    }

    #s-eb614ca6-b497-4765-825b-360fee252155 .shogun-image-link {
      aspect-ratio: 1310/470;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eb614ca6-b497-4765-825b-360fee252155 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-eb614ca6-b497-4765-825b-360fee252155 {
    width: 100%;
    height: auto;
  }

  #s-eb614ca6-b497-4765-825b-360fee252155 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-eb614ca6-b497-4765-825b-360fee252155.shogun-image {
    
    
  }


.s-eb614ca6-b497-4765-825b-360fee252155 .shogun-image-content {
  
    align-items: center;
  
}

.s-eb614ca6-b497-4765-825b-360fee252155.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eb614ca6-b497-4765-825b-360fee252155.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb614ca6-b497-4765-825b-360fee252155.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-eb614ca6-b497-4765-825b-360fee252155 {
      --shg-aspect-ratio: calc(1310/470); 
    }

    .s-eb614ca6-b497-4765-825b-360fee252155.shogun-image-container {
      position: relative;
    }

    .s-eb614ca6-b497-4765-825b-360fee252155.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eb614ca6-b497-4765-825b-360fee252155.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eb614ca6-b497-4765-825b-360fee252155 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-eb614ca6-b497-4765-825b-360fee252155 .shg-image-content-wrapper {
      aspect-ratio: 1310/470;
      min-width: 100%;
      height: auto;
    }

    #s-eb614ca6-b497-4765-825b-360fee252155 .shogun-image-link {
      aspect-ratio: 1310/470;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eb614ca6-b497-4765-825b-360fee252155 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-eb614ca6-b497-4765-825b-360fee252155 {
    width: 100%;
    height: auto;
  }

  #s-eb614ca6-b497-4765-825b-360fee252155 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-eb614ca6-b497-4765-825b-360fee252155.shogun-image {
    
    
  }


.s-eb614ca6-b497-4765-825b-360fee252155 .shogun-image-content {
  
    align-items: center;
  
}

.s-eb614ca6-b497-4765-825b-360fee252155.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eb614ca6-b497-4765-825b-360fee252155.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb614ca6-b497-4765-825b-360fee252155.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-eb614ca6-b497-4765-825b-360fee252155 {
      --shg-aspect-ratio: calc(1310/470); 
    }

    .s-eb614ca6-b497-4765-825b-360fee252155.shogun-image-container {
      position: relative;
    }

    .s-eb614ca6-b497-4765-825b-360fee252155.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eb614ca6-b497-4765-825b-360fee252155.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eb614ca6-b497-4765-825b-360fee252155 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-eb614ca6-b497-4765-825b-360fee252155 .shg-image-content-wrapper {
      aspect-ratio: 1310/470;
      min-width: 100%;
      height: auto;
    }

    #s-eb614ca6-b497-4765-825b-360fee252155 .shogun-image-link {
      aspect-ratio: 1310/470;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eb614ca6-b497-4765-825b-360fee252155 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-eb614ca6-b497-4765-825b-360fee252155 {
    width: 100%;
    height: auto;
  }

  #s-eb614ca6-b497-4765-825b-360fee252155 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-eb614ca6-b497-4765-825b-360fee252155.shogun-image {
    
    
  }


.s-eb614ca6-b497-4765-825b-360fee252155 .shogun-image-content {
  
    align-items: center;
  
}

.s-eb614ca6-b497-4765-825b-360fee252155.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eb614ca6-b497-4765-825b-360fee252155.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb614ca6-b497-4765-825b-360fee252155.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-eb614ca6-b497-4765-825b-360fee252155 {
      --shg-aspect-ratio: calc(1310/470); 
    }

    .s-eb614ca6-b497-4765-825b-360fee252155.shogun-image-container {
      position: relative;
    }

    .s-eb614ca6-b497-4765-825b-360fee252155.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eb614ca6-b497-4765-825b-360fee252155.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eb614ca6-b497-4765-825b-360fee252155 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-eb614ca6-b497-4765-825b-360fee252155 .shg-image-content-wrapper {
      aspect-ratio: 1310/470;
      min-width: 100%;
      height: auto;
    }

    #s-eb614ca6-b497-4765-825b-360fee252155 .shogun-image-link {
      aspect-ratio: 1310/470;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-eb614ca6-b497-4765-825b-360fee252155 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-eb614ca6-b497-4765-825b-360fee252155 {
    width: 100%;
    height: auto;
  }

  #s-eb614ca6-b497-4765-825b-360fee252155 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-eb614ca6-b497-4765-825b-360fee252155.shogun-image {
    
    
  }


.s-eb614ca6-b497-4765-825b-360fee252155 .shogun-image-content {
  
    align-items: center;
  
}

.s-eb614ca6-b497-4765-825b-360fee252155.shg-align-container {
  display: flex;
  justify-content: center
}

.s-eb614ca6-b497-4765-825b-360fee252155.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-eb614ca6-b497-4765-825b-360fee252155.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-eb614ca6-b497-4765-825b-360fee252155 {
      --shg-aspect-ratio: calc(1310/470); 
    }

    .s-eb614ca6-b497-4765-825b-360fee252155.shogun-image-container {
      position: relative;
    }

    .s-eb614ca6-b497-4765-825b-360fee252155.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-eb614ca6-b497-4765-825b-360fee252155.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-eb614ca6-b497-4765-825b-360fee252155 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-1551f1d9-34c0-49b7-9ea1-9fc7167bffcf {
  min-height: 20px;
}








#s-1551f1d9-34c0-49b7-9ea1-9fc7167bffcf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1551f1d9-34c0-49b7-9ea1-9fc7167bffcf.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-9379a48c-5071-4bca-8d05-2ba9b14aeaa1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9379a48c-5071-4bca-8d05-2ba9b14aeaa1"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 11.5px);
}

[id="s-9379a48c-5071-4bca-8d05-2ba9b14aeaa1"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 11.5px);
}

}

@media (min-width: 992px) {
[id="s-9379a48c-5071-4bca-8d05-2ba9b14aeaa1"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 11.5px);
}

[id="s-9379a48c-5071-4bca-8d05-2ba9b14aeaa1"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 11.5px);
}

}

@media (min-width: 1200px) {
[id="s-9379a48c-5071-4bca-8d05-2ba9b14aeaa1"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 11.5px);
}

[id="s-9379a48c-5071-4bca-8d05-2ba9b14aeaa1"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 11.5px);
}

}

#s-af47566e-23c8-4316-b941-b7fb6bb2ee48 {
  margin-top: 32px;
margin-left: 2%;
margin-right: 2%;
max-width: 539px;
aspect-ratio: 539/444;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-af47566e-23c8-4316-b941-b7fb6bb2ee48 .shg-image-content-wrapper {
      aspect-ratio: 539/444;
      min-width: 100%;
      height: auto;
    }

    #s-af47566e-23c8-4316-b941-b7fb6bb2ee48 .shogun-image-link {
      aspect-ratio: 539/444;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-af47566e-23c8-4316-b941-b7fb6bb2ee48 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-af47566e-23c8-4316-b941-b7fb6bb2ee48 {
    width: 100%;
    height: auto;
  }

  #s-af47566e-23c8-4316-b941-b7fb6bb2ee48 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image {
    
    
  }


.s-af47566e-23c8-4316-b941-b7fb6bb2ee48 .shogun-image-content {
  
    align-items: center;
  
}

.s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-af47566e-23c8-4316-b941-b7fb6bb2ee48 {
      --shg-aspect-ratio: calc(539/444); 
    }

    .s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image-container {
      position: relative;
    }

    .s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-af47566e-23c8-4316-b941-b7fb6bb2ee48 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-af47566e-23c8-4316-b941-b7fb6bb2ee48 .shg-image-content-wrapper {
      aspect-ratio: 539/444;
      min-width: 100%;
      height: auto;
    }

    #s-af47566e-23c8-4316-b941-b7fb6bb2ee48 .shogun-image-link {
      aspect-ratio: 539/444;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-af47566e-23c8-4316-b941-b7fb6bb2ee48 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-af47566e-23c8-4316-b941-b7fb6bb2ee48 {
    width: 100%;
    height: auto;
  }

  #s-af47566e-23c8-4316-b941-b7fb6bb2ee48 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image {
    
    
  }


.s-af47566e-23c8-4316-b941-b7fb6bb2ee48 .shogun-image-content {
  
    align-items: center;
  
}

.s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-af47566e-23c8-4316-b941-b7fb6bb2ee48 {
      --shg-aspect-ratio: calc(539/444); 
    }

    .s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image-container {
      position: relative;
    }

    .s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-af47566e-23c8-4316-b941-b7fb6bb2ee48 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-af47566e-23c8-4316-b941-b7fb6bb2ee48 .shg-image-content-wrapper {
      aspect-ratio: 539/444;
      min-width: 100%;
      height: auto;
    }

    #s-af47566e-23c8-4316-b941-b7fb6bb2ee48 .shogun-image-link {
      aspect-ratio: 539/444;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-af47566e-23c8-4316-b941-b7fb6bb2ee48 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-af47566e-23c8-4316-b941-b7fb6bb2ee48 {
    width: 100%;
    height: auto;
  }

  #s-af47566e-23c8-4316-b941-b7fb6bb2ee48 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image {
    
    
  }


.s-af47566e-23c8-4316-b941-b7fb6bb2ee48 .shogun-image-content {
  
    align-items: center;
  
}

.s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-af47566e-23c8-4316-b941-b7fb6bb2ee48 {
      --shg-aspect-ratio: calc(539/444); 
    }

    .s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image-container {
      position: relative;
    }

    .s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-af47566e-23c8-4316-b941-b7fb6bb2ee48 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-af47566e-23c8-4316-b941-b7fb6bb2ee48 .shg-image-content-wrapper {
      aspect-ratio: 539/444;
      min-width: 100%;
      height: auto;
    }

    #s-af47566e-23c8-4316-b941-b7fb6bb2ee48 .shogun-image-link {
      aspect-ratio: 539/444;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-af47566e-23c8-4316-b941-b7fb6bb2ee48 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-af47566e-23c8-4316-b941-b7fb6bb2ee48 {
    width: 100%;
    height: auto;
  }

  #s-af47566e-23c8-4316-b941-b7fb6bb2ee48 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image {
    
    
  }


.s-af47566e-23c8-4316-b941-b7fb6bb2ee48 .shogun-image-content {
  
    align-items: center;
  
}

.s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-af47566e-23c8-4316-b941-b7fb6bb2ee48 {
      --shg-aspect-ratio: calc(539/444); 
    }

    .s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image-container {
      position: relative;
    }

    .s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-af47566e-23c8-4316-b941-b7fb6bb2ee48 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-af47566e-23c8-4316-b941-b7fb6bb2ee48 .shg-image-content-wrapper {
      aspect-ratio: 539/444;
      min-width: 100%;
      height: auto;
    }

    #s-af47566e-23c8-4316-b941-b7fb6bb2ee48 .shogun-image-link {
      aspect-ratio: 539/444;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-af47566e-23c8-4316-b941-b7fb6bb2ee48 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-af47566e-23c8-4316-b941-b7fb6bb2ee48 {
    width: 100%;
    height: auto;
  }

  #s-af47566e-23c8-4316-b941-b7fb6bb2ee48 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image {
    
    
  }


.s-af47566e-23c8-4316-b941-b7fb6bb2ee48 .shogun-image-content {
  
    align-items: center;
  
}

.s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shg-align-container {
  display: flex;
  justify-content: center
}

.s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-af47566e-23c8-4316-b941-b7fb6bb2ee48 {
      --shg-aspect-ratio: calc(539/444); 
    }

    .s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image-container {
      position: relative;
    }

    .s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-af47566e-23c8-4316-b941-b7fb6bb2ee48.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-af47566e-23c8-4316-b941-b7fb6bb2ee48 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-theme-text-content p {
  color: ;
  font-family: ;
  font-weight: ;
}

#s-a727bf86-be23-424f-ad82-702ca7731d5c {
  margin-top: 25px;
margin-right: 0%;
}

.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-fdf45a3c-8bdf-4f75-9fe4-de382ea7dc21 {
  padding-top: 30px;
padding-bottom: 10px;
text-align: center;
}

#s-fdf45a3c-8bdf-4f75-9fe4-de382ea7dc21 .shogun-heading-component h1 {
  color: rgba(185, 53, 130, 1);
  font-weight:  normal ;
  font-family: "Raleway";
  font-style:  normal ;
  font-size: 46px;
  
  
  
}



#s-fba2b315-5b4f-4e63-8e46-f0a5e46ce1d0 {
  min-height: 20px;
}








#s-fba2b315-5b4f-4e63-8e46-f0a5e46ce1d0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fba2b315-5b4f-4e63-8e46-f0a5e46ce1d0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 {
  margin-top: 11px;
margin-bottom: 11px;
max-width: 1985px;
aspect-ratio: 1985/37;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 {
    width: 100%;
    height: auto;
  }

  #s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image {
    
    
  }


.s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 .shogun-image-content {
  
    align-items: center;
  
}

.s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image-container {
      position: relative;
    }

    .s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 {
    width: 100%;
    height: auto;
  }

  #s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image {
    
    
  }


.s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 .shogun-image-content {
  
    align-items: center;
  
}

.s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image-container {
      position: relative;
    }

    .s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 {
    width: 100%;
    height: auto;
  }

  #s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image {
    
    
  }


.s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 .shogun-image-content {
  
    align-items: center;
  
}

.s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image-container {
      position: relative;
    }

    .s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 {
    width: 100%;
    height: auto;
  }

  #s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image {
    
    
  }


.s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 .shogun-image-content {
  
    align-items: center;
  
}

.s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image-container {
      position: relative;
    }

    .s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 {
    width: 100%;
    height: auto;
  }

  #s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image {
    
    
  }


.s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 .shogun-image-content {
  
    align-items: center;
  
}

.s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image-container {
      position: relative;
    }

    .s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d6b68d3-9e8e-4812-8aeb-c27e248f2e76 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-e187c591-0896-4728-b811-a0ce2acba1ef {
  margin-top: 17px;
margin-left: 1%;
margin-bottom: 17px;
margin-right: 1%;
padding-bottom: 0px;
max-width: 1169px;
aspect-ratio: 1169/111;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-e187c591-0896-4728-b811-a0ce2acba1ef .shg-image-content-wrapper {
      aspect-ratio: 1169/111;
      min-width: 100%;
      height: auto;
    }

    #s-e187c591-0896-4728-b811-a0ce2acba1ef .shogun-image-link {
      aspect-ratio: 1169/111;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e187c591-0896-4728-b811-a0ce2acba1ef .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e187c591-0896-4728-b811-a0ce2acba1ef {
    width: 100%;
    height: auto;
  }

  #s-e187c591-0896-4728-b811-a0ce2acba1ef img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image {
    
    
  }


.s-e187c591-0896-4728-b811-a0ce2acba1ef .shogun-image-content {
  
    align-items: center;
  
}

.s-e187c591-0896-4728-b811-a0ce2acba1ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e187c591-0896-4728-b811-a0ce2acba1ef {
      --shg-aspect-ratio: calc(1169/111); 
    }

    .s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image-container {
      position: relative;
    }

    .s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e187c591-0896-4728-b811-a0ce2acba1ef img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-e187c591-0896-4728-b811-a0ce2acba1ef .shg-image-content-wrapper {
      aspect-ratio: 1169/111;
      min-width: 100%;
      height: auto;
    }

    #s-e187c591-0896-4728-b811-a0ce2acba1ef .shogun-image-link {
      aspect-ratio: 1169/111;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e187c591-0896-4728-b811-a0ce2acba1ef .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e187c591-0896-4728-b811-a0ce2acba1ef {
    width: 100%;
    height: auto;
  }

  #s-e187c591-0896-4728-b811-a0ce2acba1ef img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image {
    
    
  }


.s-e187c591-0896-4728-b811-a0ce2acba1ef .shogun-image-content {
  
    align-items: center;
  
}

.s-e187c591-0896-4728-b811-a0ce2acba1ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e187c591-0896-4728-b811-a0ce2acba1ef {
      --shg-aspect-ratio: calc(1169/111); 
    }

    .s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image-container {
      position: relative;
    }

    .s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e187c591-0896-4728-b811-a0ce2acba1ef img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-e187c591-0896-4728-b811-a0ce2acba1ef .shg-image-content-wrapper {
      aspect-ratio: 1169/111;
      min-width: 100%;
      height: auto;
    }

    #s-e187c591-0896-4728-b811-a0ce2acba1ef .shogun-image-link {
      aspect-ratio: 1169/111;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e187c591-0896-4728-b811-a0ce2acba1ef .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e187c591-0896-4728-b811-a0ce2acba1ef {
    width: 100%;
    height: auto;
  }

  #s-e187c591-0896-4728-b811-a0ce2acba1ef img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image {
    
    
  }


.s-e187c591-0896-4728-b811-a0ce2acba1ef .shogun-image-content {
  
    align-items: center;
  
}

.s-e187c591-0896-4728-b811-a0ce2acba1ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e187c591-0896-4728-b811-a0ce2acba1ef {
      --shg-aspect-ratio: calc(1169/111); 
    }

    .s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image-container {
      position: relative;
    }

    .s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e187c591-0896-4728-b811-a0ce2acba1ef img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-e187c591-0896-4728-b811-a0ce2acba1ef .shg-image-content-wrapper {
      aspect-ratio: 1169/111;
      min-width: 100%;
      height: auto;
    }

    #s-e187c591-0896-4728-b811-a0ce2acba1ef .shogun-image-link {
      aspect-ratio: 1169/111;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e187c591-0896-4728-b811-a0ce2acba1ef .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e187c591-0896-4728-b811-a0ce2acba1ef {
    width: 100%;
    height: auto;
  }

  #s-e187c591-0896-4728-b811-a0ce2acba1ef img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image {
    
    
  }


.s-e187c591-0896-4728-b811-a0ce2acba1ef .shogun-image-content {
  
    align-items: center;
  
}

.s-e187c591-0896-4728-b811-a0ce2acba1ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e187c591-0896-4728-b811-a0ce2acba1ef {
      --shg-aspect-ratio: calc(1169/111); 
    }

    .s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image-container {
      position: relative;
    }

    .s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e187c591-0896-4728-b811-a0ce2acba1ef img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-e187c591-0896-4728-b811-a0ce2acba1ef .shg-image-content-wrapper {
      aspect-ratio: 1169/111;
      min-width: 100%;
      height: auto;
    }

    #s-e187c591-0896-4728-b811-a0ce2acba1ef .shogun-image-link {
      aspect-ratio: 1169/111;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e187c591-0896-4728-b811-a0ce2acba1ef .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e187c591-0896-4728-b811-a0ce2acba1ef {
    width: 100%;
    height: auto;
  }

  #s-e187c591-0896-4728-b811-a0ce2acba1ef img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image {
    
    
  }


.s-e187c591-0896-4728-b811-a0ce2acba1ef .shogun-image-content {
  
    align-items: center;
  
}

.s-e187c591-0896-4728-b811-a0ce2acba1ef.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e187c591-0896-4728-b811-a0ce2acba1ef {
      --shg-aspect-ratio: calc(1169/111); 
    }

    .s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image-container {
      position: relative;
    }

    .s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e187c591-0896-4728-b811-a0ce2acba1ef.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e187c591-0896-4728-b811-a0ce2acba1ef img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-209f1bc2-f891-4559-bb17-ac7dc52c4d44 {
  min-height: 10px;
}








#s-209f1bc2-f891-4559-bb17-ac7dc52c4d44 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-209f1bc2-f891-4559-bb17-ac7dc52c4d44.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-bae23c24-9880-456c-9638-6f62bc8d8555"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bae23c24-9880-456c-9638-6f62bc8d8555"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-bae23c24-9880-456c-9638-6f62bc8d8555"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bae23c24-9880-456c-9638-6f62bc8d8555"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-bae23c24-9880-456c-9638-6f62bc8d8555"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bae23c24-9880-456c-9638-6f62bc8d8555"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-bae23c24-9880-456c-9638-6f62bc8d8555"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

#s-b35095d2-583f-4cb6-abac-7abaa34dcf49 {
  max-width: 1200px;
aspect-ratio: 1200/800;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-b35095d2-583f-4cb6-abac-7abaa34dcf49 .shg-image-content-wrapper {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }

    #s-b35095d2-583f-4cb6-abac-7abaa34dcf49 .shogun-image-link {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b35095d2-583f-4cb6-abac-7abaa34dcf49 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b35095d2-583f-4cb6-abac-7abaa34dcf49 {
    width: 100%;
    height: auto;
  }

  #s-b35095d2-583f-4cb6-abac-7abaa34dcf49 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image {
    
    
  }


.s-b35095d2-583f-4cb6-abac-7abaa34dcf49 .shogun-image-content {
  
    align-items: center;
  
}

.s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b35095d2-583f-4cb6-abac-7abaa34dcf49 {
      --shg-aspect-ratio: calc(1200/800); 
    }

    .s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image-container {
      position: relative;
    }

    .s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b35095d2-583f-4cb6-abac-7abaa34dcf49 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-b35095d2-583f-4cb6-abac-7abaa34dcf49 .shg-image-content-wrapper {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }

    #s-b35095d2-583f-4cb6-abac-7abaa34dcf49 .shogun-image-link {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b35095d2-583f-4cb6-abac-7abaa34dcf49 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b35095d2-583f-4cb6-abac-7abaa34dcf49 {
    width: 100%;
    height: auto;
  }

  #s-b35095d2-583f-4cb6-abac-7abaa34dcf49 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image {
    
    
  }


.s-b35095d2-583f-4cb6-abac-7abaa34dcf49 .shogun-image-content {
  
    align-items: center;
  
}

.s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b35095d2-583f-4cb6-abac-7abaa34dcf49 {
      --shg-aspect-ratio: calc(1200/800); 
    }

    .s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image-container {
      position: relative;
    }

    .s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b35095d2-583f-4cb6-abac-7abaa34dcf49 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-b35095d2-583f-4cb6-abac-7abaa34dcf49 .shg-image-content-wrapper {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }

    #s-b35095d2-583f-4cb6-abac-7abaa34dcf49 .shogun-image-link {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b35095d2-583f-4cb6-abac-7abaa34dcf49 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b35095d2-583f-4cb6-abac-7abaa34dcf49 {
    width: 100%;
    height: auto;
  }

  #s-b35095d2-583f-4cb6-abac-7abaa34dcf49 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image {
    
    
  }


.s-b35095d2-583f-4cb6-abac-7abaa34dcf49 .shogun-image-content {
  
    align-items: center;
  
}

.s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b35095d2-583f-4cb6-abac-7abaa34dcf49 {
      --shg-aspect-ratio: calc(1200/800); 
    }

    .s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image-container {
      position: relative;
    }

    .s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b35095d2-583f-4cb6-abac-7abaa34dcf49 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-b35095d2-583f-4cb6-abac-7abaa34dcf49 .shg-image-content-wrapper {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }

    #s-b35095d2-583f-4cb6-abac-7abaa34dcf49 .shogun-image-link {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b35095d2-583f-4cb6-abac-7abaa34dcf49 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b35095d2-583f-4cb6-abac-7abaa34dcf49 {
    width: 100%;
    height: auto;
  }

  #s-b35095d2-583f-4cb6-abac-7abaa34dcf49 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image {
    
    
  }


.s-b35095d2-583f-4cb6-abac-7abaa34dcf49 .shogun-image-content {
  
    align-items: center;
  
}

.s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b35095d2-583f-4cb6-abac-7abaa34dcf49 {
      --shg-aspect-ratio: calc(1200/800); 
    }

    .s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image-container {
      position: relative;
    }

    .s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b35095d2-583f-4cb6-abac-7abaa34dcf49 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-b35095d2-583f-4cb6-abac-7abaa34dcf49 .shg-image-content-wrapper {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }

    #s-b35095d2-583f-4cb6-abac-7abaa34dcf49 .shogun-image-link {
      aspect-ratio: 1200/800;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b35095d2-583f-4cb6-abac-7abaa34dcf49 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b35095d2-583f-4cb6-abac-7abaa34dcf49 {
    width: 100%;
    height: auto;
  }

  #s-b35095d2-583f-4cb6-abac-7abaa34dcf49 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image {
    
    
  }


.s-b35095d2-583f-4cb6-abac-7abaa34dcf49 .shogun-image-content {
  
    align-items: center;
  
}

.s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b35095d2-583f-4cb6-abac-7abaa34dcf49 {
      --shg-aspect-ratio: calc(1200/800); 
    }

    .s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image-container {
      position: relative;
    }

    .s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b35095d2-583f-4cb6-abac-7abaa34dcf49.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b35095d2-583f-4cb6-abac-7abaa34dcf49 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-b8692b27-1a47-4810-8abd-2aee872e2060 {
  margin-top: 8px;
margin-right: 3%;
padding-top: 0px;
padding-left: 3%;
padding-bottom: 0px;
padding-right: 3%;
}

#s-e0683e8e-a04a-4e3e-afcb-9de50ae2c54d {
  min-height: 20px;
}








#s-e0683e8e-a04a-4e3e-afcb-9de50ae2c54d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e0683e8e-a04a-4e3e-afcb-9de50ae2c54d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-8928b0f4-d33b-4201-abec-5664e86be0da"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8928b0f4-d33b-4201-abec-5664e86be0da"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 11.0px);
}

[id="s-8928b0f4-d33b-4201-abec-5664e86be0da"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 11.0px);
}

}

@media (min-width: 992px) {
[id="s-8928b0f4-d33b-4201-abec-5664e86be0da"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 11.0px);
}

[id="s-8928b0f4-d33b-4201-abec-5664e86be0da"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 11.0px);
}

}

@media (min-width: 1200px) {
[id="s-8928b0f4-d33b-4201-abec-5664e86be0da"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 11.0px);
}

[id="s-8928b0f4-d33b-4201-abec-5664e86be0da"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 11.0px);
}

}

#s-929c4c1f-3afa-4273-9211-35710941a033 {
  max-width: 908px;
aspect-ratio: 908/1113;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-929c4c1f-3afa-4273-9211-35710941a033 .shg-image-content-wrapper {
      aspect-ratio: 908/1113;
      min-width: 100%;
      height: auto;
    }

    #s-929c4c1f-3afa-4273-9211-35710941a033 .shogun-image-link {
      aspect-ratio: 908/1113;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-929c4c1f-3afa-4273-9211-35710941a033 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-929c4c1f-3afa-4273-9211-35710941a033 {
    width: 100%;
    height: auto;
  }

  #s-929c4c1f-3afa-4273-9211-35710941a033 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image {
    
    
  }


.s-929c4c1f-3afa-4273-9211-35710941a033 .shogun-image-content {
  
    align-items: center;
  
}

.s-929c4c1f-3afa-4273-9211-35710941a033.shg-align-container {
  display: flex;
  justify-content: center
}

.s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-929c4c1f-3afa-4273-9211-35710941a033 {
      --shg-aspect-ratio: calc(908/1113); 
    }

    .s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image-container {
      position: relative;
    }

    .s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-929c4c1f-3afa-4273-9211-35710941a033 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-929c4c1f-3afa-4273-9211-35710941a033 .shg-image-content-wrapper {
      aspect-ratio: 908/1113;
      min-width: 100%;
      height: auto;
    }

    #s-929c4c1f-3afa-4273-9211-35710941a033 .shogun-image-link {
      aspect-ratio: 908/1113;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-929c4c1f-3afa-4273-9211-35710941a033 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-929c4c1f-3afa-4273-9211-35710941a033 {
    width: 100%;
    height: auto;
  }

  #s-929c4c1f-3afa-4273-9211-35710941a033 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image {
    
    
  }


.s-929c4c1f-3afa-4273-9211-35710941a033 .shogun-image-content {
  
    align-items: center;
  
}

.s-929c4c1f-3afa-4273-9211-35710941a033.shg-align-container {
  display: flex;
  justify-content: center
}

.s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-929c4c1f-3afa-4273-9211-35710941a033 {
      --shg-aspect-ratio: calc(908/1113); 
    }

    .s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image-container {
      position: relative;
    }

    .s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-929c4c1f-3afa-4273-9211-35710941a033 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-929c4c1f-3afa-4273-9211-35710941a033 .shg-image-content-wrapper {
      aspect-ratio: 908/1113;
      min-width: 100%;
      height: auto;
    }

    #s-929c4c1f-3afa-4273-9211-35710941a033 .shogun-image-link {
      aspect-ratio: 908/1113;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-929c4c1f-3afa-4273-9211-35710941a033 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-929c4c1f-3afa-4273-9211-35710941a033 {
    width: 100%;
    height: auto;
  }

  #s-929c4c1f-3afa-4273-9211-35710941a033 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image {
    
    
  }


.s-929c4c1f-3afa-4273-9211-35710941a033 .shogun-image-content {
  
    align-items: center;
  
}

.s-929c4c1f-3afa-4273-9211-35710941a033.shg-align-container {
  display: flex;
  justify-content: center
}

.s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-929c4c1f-3afa-4273-9211-35710941a033 {
      --shg-aspect-ratio: calc(908/1113); 
    }

    .s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image-container {
      position: relative;
    }

    .s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-929c4c1f-3afa-4273-9211-35710941a033 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-929c4c1f-3afa-4273-9211-35710941a033 .shg-image-content-wrapper {
      aspect-ratio: 908/1113;
      min-width: 100%;
      height: auto;
    }

    #s-929c4c1f-3afa-4273-9211-35710941a033 .shogun-image-link {
      aspect-ratio: 908/1113;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-929c4c1f-3afa-4273-9211-35710941a033 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-929c4c1f-3afa-4273-9211-35710941a033 {
    width: 100%;
    height: auto;
  }

  #s-929c4c1f-3afa-4273-9211-35710941a033 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image {
    
    
  }


.s-929c4c1f-3afa-4273-9211-35710941a033 .shogun-image-content {
  
    align-items: center;
  
}

.s-929c4c1f-3afa-4273-9211-35710941a033.shg-align-container {
  display: flex;
  justify-content: center
}

.s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-929c4c1f-3afa-4273-9211-35710941a033 {
      --shg-aspect-ratio: calc(908/1113); 
    }

    .s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image-container {
      position: relative;
    }

    .s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-929c4c1f-3afa-4273-9211-35710941a033 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-929c4c1f-3afa-4273-9211-35710941a033 .shg-image-content-wrapper {
      aspect-ratio: 908/1113;
      min-width: 100%;
      height: auto;
    }

    #s-929c4c1f-3afa-4273-9211-35710941a033 .shogun-image-link {
      aspect-ratio: 908/1113;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-929c4c1f-3afa-4273-9211-35710941a033 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-929c4c1f-3afa-4273-9211-35710941a033 {
    width: 100%;
    height: auto;
  }

  #s-929c4c1f-3afa-4273-9211-35710941a033 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image {
    
    
  }


.s-929c4c1f-3afa-4273-9211-35710941a033 .shogun-image-content {
  
    align-items: center;
  
}

.s-929c4c1f-3afa-4273-9211-35710941a033.shg-align-container {
  display: flex;
  justify-content: center
}

.s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-929c4c1f-3afa-4273-9211-35710941a033 {
      --shg-aspect-ratio: calc(908/1113); 
    }

    .s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image-container {
      position: relative;
    }

    .s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-929c4c1f-3afa-4273-9211-35710941a033.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-929c4c1f-3afa-4273-9211-35710941a033 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-e119df84-658b-49cc-86af-695b8149c590 {
  min-height: 50px;
}








#s-e119df84-658b-49cc-86af-695b8149c590 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e119df84-658b-49cc-86af-695b8149c590.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d3124faa-be7b-4801-997f-c75b6c4b369c {
  max-width: 565px;
aspect-ratio: 565/452;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-d3124faa-be7b-4801-997f-c75b6c4b369c .shg-image-content-wrapper {
      aspect-ratio: 565/452;
      min-width: 100%;
      height: auto;
    }

    #s-d3124faa-be7b-4801-997f-c75b6c4b369c .shogun-image-link {
      aspect-ratio: 565/452;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d3124faa-be7b-4801-997f-c75b6c4b369c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d3124faa-be7b-4801-997f-c75b6c4b369c {
    width: 100%;
    height: auto;
  }

  #s-d3124faa-be7b-4801-997f-c75b6c4b369c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image {
    
    
  }


.s-d3124faa-be7b-4801-997f-c75b6c4b369c .shogun-image-content {
  
    align-items: center;
  
}

.s-d3124faa-be7b-4801-997f-c75b6c4b369c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d3124faa-be7b-4801-997f-c75b6c4b369c {
      --shg-aspect-ratio: calc(565/452); 
    }

    .s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image-container {
      position: relative;
    }

    .s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d3124faa-be7b-4801-997f-c75b6c4b369c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-d3124faa-be7b-4801-997f-c75b6c4b369c .shg-image-content-wrapper {
      aspect-ratio: 565/452;
      min-width: 100%;
      height: auto;
    }

    #s-d3124faa-be7b-4801-997f-c75b6c4b369c .shogun-image-link {
      aspect-ratio: 565/452;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d3124faa-be7b-4801-997f-c75b6c4b369c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d3124faa-be7b-4801-997f-c75b6c4b369c {
    width: 100%;
    height: auto;
  }

  #s-d3124faa-be7b-4801-997f-c75b6c4b369c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image {
    
    
  }


.s-d3124faa-be7b-4801-997f-c75b6c4b369c .shogun-image-content {
  
    align-items: center;
  
}

.s-d3124faa-be7b-4801-997f-c75b6c4b369c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d3124faa-be7b-4801-997f-c75b6c4b369c {
      --shg-aspect-ratio: calc(565/452); 
    }

    .s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image-container {
      position: relative;
    }

    .s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d3124faa-be7b-4801-997f-c75b6c4b369c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-d3124faa-be7b-4801-997f-c75b6c4b369c .shg-image-content-wrapper {
      aspect-ratio: 565/452;
      min-width: 100%;
      height: auto;
    }

    #s-d3124faa-be7b-4801-997f-c75b6c4b369c .shogun-image-link {
      aspect-ratio: 565/452;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d3124faa-be7b-4801-997f-c75b6c4b369c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d3124faa-be7b-4801-997f-c75b6c4b369c {
    width: 100%;
    height: auto;
  }

  #s-d3124faa-be7b-4801-997f-c75b6c4b369c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image {
    
    
  }


.s-d3124faa-be7b-4801-997f-c75b6c4b369c .shogun-image-content {
  
    align-items: center;
  
}

.s-d3124faa-be7b-4801-997f-c75b6c4b369c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d3124faa-be7b-4801-997f-c75b6c4b369c {
      --shg-aspect-ratio: calc(565/452); 
    }

    .s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image-container {
      position: relative;
    }

    .s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d3124faa-be7b-4801-997f-c75b6c4b369c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-d3124faa-be7b-4801-997f-c75b6c4b369c .shg-image-content-wrapper {
      aspect-ratio: 565/452;
      min-width: 100%;
      height: auto;
    }

    #s-d3124faa-be7b-4801-997f-c75b6c4b369c .shogun-image-link {
      aspect-ratio: 565/452;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d3124faa-be7b-4801-997f-c75b6c4b369c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d3124faa-be7b-4801-997f-c75b6c4b369c {
    width: 100%;
    height: auto;
  }

  #s-d3124faa-be7b-4801-997f-c75b6c4b369c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image {
    
    
  }


.s-d3124faa-be7b-4801-997f-c75b6c4b369c .shogun-image-content {
  
    align-items: center;
  
}

.s-d3124faa-be7b-4801-997f-c75b6c4b369c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d3124faa-be7b-4801-997f-c75b6c4b369c {
      --shg-aspect-ratio: calc(565/452); 
    }

    .s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image-container {
      position: relative;
    }

    .s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d3124faa-be7b-4801-997f-c75b6c4b369c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-d3124faa-be7b-4801-997f-c75b6c4b369c .shg-image-content-wrapper {
      aspect-ratio: 565/452;
      min-width: 100%;
      height: auto;
    }

    #s-d3124faa-be7b-4801-997f-c75b6c4b369c .shogun-image-link {
      aspect-ratio: 565/452;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d3124faa-be7b-4801-997f-c75b6c4b369c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d3124faa-be7b-4801-997f-c75b6c4b369c {
    width: 100%;
    height: auto;
  }

  #s-d3124faa-be7b-4801-997f-c75b6c4b369c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image {
    
    
  }


.s-d3124faa-be7b-4801-997f-c75b6c4b369c .shogun-image-content {
  
    align-items: center;
  
}

.s-d3124faa-be7b-4801-997f-c75b6c4b369c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d3124faa-be7b-4801-997f-c75b6c4b369c {
      --shg-aspect-ratio: calc(565/452); 
    }

    .s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image-container {
      position: relative;
    }

    .s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d3124faa-be7b-4801-997f-c75b6c4b369c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d3124faa-be7b-4801-997f-c75b6c4b369c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-240bc979-b4ac-42da-a648-e0203fa93dd5 {
  margin-top: 16px;
margin-left: 4%;
margin-bottom: 16px;
margin-right: 4%;
padding-top: 5px;
}

#s-ac9a6683-68e2-47d6-99cf-f336a746f2b2 {
  min-height: 20px;
}








#s-ac9a6683-68e2-47d6-99cf-f336a746f2b2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ac9a6683-68e2-47d6-99cf-f336a746f2b2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a {
  max-width: 1310px;
aspect-ratio: 1310/488;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a .shg-image-content-wrapper {
      aspect-ratio: 1310/488;
      min-width: 100%;
      height: auto;
    }

    #s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a .shogun-image-link {
      aspect-ratio: 1310/488;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a {
    width: 100%;
    height: auto;
  }

  #s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image {
    
    
  }


.s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a .shogun-image-content {
  
    align-items: center;
  
}

.s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a {
      --shg-aspect-ratio: calc(1310/488); 
    }

    .s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image-container {
      position: relative;
    }

    .s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a .shg-image-content-wrapper {
      aspect-ratio: 1310/488;
      min-width: 100%;
      height: auto;
    }

    #s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a .shogun-image-link {
      aspect-ratio: 1310/488;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a {
    width: 100%;
    height: auto;
  }

  #s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image {
    
    
  }


.s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a .shogun-image-content {
  
    align-items: center;
  
}

.s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a {
      --shg-aspect-ratio: calc(1310/488); 
    }

    .s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image-container {
      position: relative;
    }

    .s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a .shg-image-content-wrapper {
      aspect-ratio: 1310/488;
      min-width: 100%;
      height: auto;
    }

    #s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a .shogun-image-link {
      aspect-ratio: 1310/488;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a {
    width: 100%;
    height: auto;
  }

  #s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image {
    
    
  }


.s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a .shogun-image-content {
  
    align-items: center;
  
}

.s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a {
      --shg-aspect-ratio: calc(1310/488); 
    }

    .s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image-container {
      position: relative;
    }

    .s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a .shg-image-content-wrapper {
      aspect-ratio: 1310/488;
      min-width: 100%;
      height: auto;
    }

    #s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a .shogun-image-link {
      aspect-ratio: 1310/488;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a {
    width: 100%;
    height: auto;
  }

  #s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image {
    
    
  }


.s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a .shogun-image-content {
  
    align-items: center;
  
}

.s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a {
      --shg-aspect-ratio: calc(1310/488); 
    }

    .s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image-container {
      position: relative;
    }

    .s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a .shg-image-content-wrapper {
      aspect-ratio: 1310/488;
      min-width: 100%;
      height: auto;
    }

    #s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a .shogun-image-link {
      aspect-ratio: 1310/488;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a {
    width: 100%;
    height: auto;
  }

  #s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image {
    
    
  }


.s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a .shogun-image-content {
  
    align-items: center;
  
}

.s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a {
      --shg-aspect-ratio: calc(1310/488); 
    }

    .s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image-container {
      position: relative;
    }

    .s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fa3876ba-3f8c-44b9-b409-bdfa77529c8a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-4972e970-2682-40f0-ac32-9620284b56aa {
  margin-top: 10px;
}

@media (min-width: 0px) {
[id="s-4972e970-2682-40f0-ac32-9620284b56aa"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4972e970-2682-40f0-ac32-9620284b56aa"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-4972e970-2682-40f0-ac32-9620284b56aa"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-4972e970-2682-40f0-ac32-9620284b56aa"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-4972e970-2682-40f0-ac32-9620284b56aa"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-4972e970-2682-40f0-ac32-9620284b56aa"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-4972e970-2682-40f0-ac32-9620284b56aa"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

#s-f2d8247c-2eeb-4f06-a5bd-077cdb9e7165 {
  margin-top: 11px;
padding-left: 2%;
padding-right: 2%;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(186, 164, 3, 1);
border-style: solid;
min-height: 50px;
}








#s-f2d8247c-2eeb-4f06-a5bd-077cdb9e7165 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f2d8247c-2eeb-4f06-a5bd-077cdb9e7165.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-41e9a143-2bf3-4aeb-966a-97333c1f4f5f {
  margin-top: 14px;
margin-left: 1%;
margin-bottom: 1px;
padding-right: 1%;
}

#s-5b354aba-148c-4c9a-903e-b58340e7f685 {
  min-height: 50px;
}








#s-5b354aba-148c-4c9a-903e-b58340e7f685 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5b354aba-148c-4c9a-903e-b58340e7f685.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 {
  max-width: 1985px;
aspect-ratio: 1985/37;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 {
    width: 100%;
    height: auto;
  }

  #s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image {
    
    
  }


.s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 .shogun-image-content {
  
    align-items: center;
  
}

.s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image-container {
      position: relative;
    }

    .s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 {
    width: 100%;
    height: auto;
  }

  #s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image {
    
    
  }


.s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 .shogun-image-content {
  
    align-items: center;
  
}

.s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image-container {
      position: relative;
    }

    .s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 {
    width: 100%;
    height: auto;
  }

  #s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image {
    
    
  }


.s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 .shogun-image-content {
  
    align-items: center;
  
}

.s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image-container {
      position: relative;
    }

    .s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 {
    width: 100%;
    height: auto;
  }

  #s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image {
    
    
  }


.s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 .shogun-image-content {
  
    align-items: center;
  
}

.s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image-container {
      position: relative;
    }

    .s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 {
    width: 100%;
    height: auto;
  }

  #s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image {
    
    
  }


.s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 .shogun-image-content {
  
    align-items: center;
  
}

.s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image-container {
      position: relative;
    }

    .s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b639fb67-11f0-4330-b7c9-6e950fcd1af5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b639fb67-11f0-4330-b7c9-6e950fcd1af5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-e771ef98-2d3e-425e-b4df-a0f3530a32fd {
  margin-top: 21px;
margin-left: 7%;
margin-bottom: 1px;
margin-right: 7%;
padding-left: 0%;
padding-right: 0%;
max-width: 1210px;
aspect-ratio: 1210/108;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-e771ef98-2d3e-425e-b4df-a0f3530a32fd .shg-image-content-wrapper {
      aspect-ratio: 1210/108;
      min-width: 100%;
      height: auto;
    }

    #s-e771ef98-2d3e-425e-b4df-a0f3530a32fd .shogun-image-link {
      aspect-ratio: 1210/108;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e771ef98-2d3e-425e-b4df-a0f3530a32fd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e771ef98-2d3e-425e-b4df-a0f3530a32fd {
    width: 100%;
    height: auto;
  }

  #s-e771ef98-2d3e-425e-b4df-a0f3530a32fd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image {
    
    
  }


.s-e771ef98-2d3e-425e-b4df-a0f3530a32fd .shogun-image-content {
  
    align-items: center;
  
}

.s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e771ef98-2d3e-425e-b4df-a0f3530a32fd {
      --shg-aspect-ratio: calc(1210/108); 
    }

    .s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image-container {
      position: relative;
    }

    .s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e771ef98-2d3e-425e-b4df-a0f3530a32fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-e771ef98-2d3e-425e-b4df-a0f3530a32fd .shg-image-content-wrapper {
      aspect-ratio: 1210/108;
      min-width: 100%;
      height: auto;
    }

    #s-e771ef98-2d3e-425e-b4df-a0f3530a32fd .shogun-image-link {
      aspect-ratio: 1210/108;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e771ef98-2d3e-425e-b4df-a0f3530a32fd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e771ef98-2d3e-425e-b4df-a0f3530a32fd {
    width: 100%;
    height: auto;
  }

  #s-e771ef98-2d3e-425e-b4df-a0f3530a32fd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image {
    
    
  }


.s-e771ef98-2d3e-425e-b4df-a0f3530a32fd .shogun-image-content {
  
    align-items: center;
  
}

.s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e771ef98-2d3e-425e-b4df-a0f3530a32fd {
      --shg-aspect-ratio: calc(1210/108); 
    }

    .s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image-container {
      position: relative;
    }

    .s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e771ef98-2d3e-425e-b4df-a0f3530a32fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-e771ef98-2d3e-425e-b4df-a0f3530a32fd .shg-image-content-wrapper {
      aspect-ratio: 1210/108;
      min-width: 100%;
      height: auto;
    }

    #s-e771ef98-2d3e-425e-b4df-a0f3530a32fd .shogun-image-link {
      aspect-ratio: 1210/108;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e771ef98-2d3e-425e-b4df-a0f3530a32fd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e771ef98-2d3e-425e-b4df-a0f3530a32fd {
    width: 100%;
    height: auto;
  }

  #s-e771ef98-2d3e-425e-b4df-a0f3530a32fd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image {
    
    
  }


.s-e771ef98-2d3e-425e-b4df-a0f3530a32fd .shogun-image-content {
  
    align-items: center;
  
}

.s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e771ef98-2d3e-425e-b4df-a0f3530a32fd {
      --shg-aspect-ratio: calc(1210/108); 
    }

    .s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image-container {
      position: relative;
    }

    .s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e771ef98-2d3e-425e-b4df-a0f3530a32fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-e771ef98-2d3e-425e-b4df-a0f3530a32fd .shg-image-content-wrapper {
      aspect-ratio: 1210/108;
      min-width: 100%;
      height: auto;
    }

    #s-e771ef98-2d3e-425e-b4df-a0f3530a32fd .shogun-image-link {
      aspect-ratio: 1210/108;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e771ef98-2d3e-425e-b4df-a0f3530a32fd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e771ef98-2d3e-425e-b4df-a0f3530a32fd {
    width: 100%;
    height: auto;
  }

  #s-e771ef98-2d3e-425e-b4df-a0f3530a32fd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image {
    
    
  }


.s-e771ef98-2d3e-425e-b4df-a0f3530a32fd .shogun-image-content {
  
    align-items: center;
  
}

.s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e771ef98-2d3e-425e-b4df-a0f3530a32fd {
      --shg-aspect-ratio: calc(1210/108); 
    }

    .s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image-container {
      position: relative;
    }

    .s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e771ef98-2d3e-425e-b4df-a0f3530a32fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-e771ef98-2d3e-425e-b4df-a0f3530a32fd .shg-image-content-wrapper {
      aspect-ratio: 1210/108;
      min-width: 100%;
      height: auto;
    }

    #s-e771ef98-2d3e-425e-b4df-a0f3530a32fd .shogun-image-link {
      aspect-ratio: 1210/108;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e771ef98-2d3e-425e-b4df-a0f3530a32fd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e771ef98-2d3e-425e-b4df-a0f3530a32fd {
    width: 100%;
    height: auto;
  }

  #s-e771ef98-2d3e-425e-b4df-a0f3530a32fd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image {
    
    
  }


.s-e771ef98-2d3e-425e-b4df-a0f3530a32fd .shogun-image-content {
  
    align-items: center;
  
}

.s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e771ef98-2d3e-425e-b4df-a0f3530a32fd {
      --shg-aspect-ratio: calc(1210/108); 
    }

    .s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image-container {
      position: relative;
    }

    .s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e771ef98-2d3e-425e-b4df-a0f3530a32fd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e771ef98-2d3e-425e-b4df-a0f3530a32fd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-96fc5873-9bc5-44a7-a11f-9a5ac83319b1 {
  min-height: 40px;
}








#s-96fc5873-9bc5-44a7-a11f-9a5ac83319b1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-96fc5873-9bc5-44a7-a11f-9a5ac83319b1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-f68c2a81-7b68-4a64-9fe0-0d96ad5a4119"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f68c2a81-7b68-4a64-9fe0-0d96ad5a4119"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-f68c2a81-7b68-4a64-9fe0-0d96ad5a4119"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-f68c2a81-7b68-4a64-9fe0-0d96ad5a4119"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

#s-782fc1a5-9714-41e6-9140-3d02a2efe052 {
  max-width: 430px;
aspect-ratio: 430/490;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-782fc1a5-9714-41e6-9140-3d02a2efe052 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-782fc1a5-9714-41e6-9140-3d02a2efe052 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-782fc1a5-9714-41e6-9140-3d02a2efe052 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-782fc1a5-9714-41e6-9140-3d02a2efe052 {
    width: 100%;
    height: auto;
  }

  #s-782fc1a5-9714-41e6-9140-3d02a2efe052 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image {
    
    
  }


.s-782fc1a5-9714-41e6-9140-3d02a2efe052 .shogun-image-content {
  
    align-items: center;
  
}

.s-782fc1a5-9714-41e6-9140-3d02a2efe052.shg-align-container {
  display: flex;
  justify-content: center
}

.s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-782fc1a5-9714-41e6-9140-3d02a2efe052 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image-container {
      position: relative;
    }

    .s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-782fc1a5-9714-41e6-9140-3d02a2efe052 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-782fc1a5-9714-41e6-9140-3d02a2efe052 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-782fc1a5-9714-41e6-9140-3d02a2efe052 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-782fc1a5-9714-41e6-9140-3d02a2efe052 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-782fc1a5-9714-41e6-9140-3d02a2efe052 {
    width: 100%;
    height: auto;
  }

  #s-782fc1a5-9714-41e6-9140-3d02a2efe052 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image {
    
    
  }


.s-782fc1a5-9714-41e6-9140-3d02a2efe052 .shogun-image-content {
  
    align-items: center;
  
}

.s-782fc1a5-9714-41e6-9140-3d02a2efe052.shg-align-container {
  display: flex;
  justify-content: center
}

.s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-782fc1a5-9714-41e6-9140-3d02a2efe052 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image-container {
      position: relative;
    }

    .s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-782fc1a5-9714-41e6-9140-3d02a2efe052 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-782fc1a5-9714-41e6-9140-3d02a2efe052 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-782fc1a5-9714-41e6-9140-3d02a2efe052 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-782fc1a5-9714-41e6-9140-3d02a2efe052 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-782fc1a5-9714-41e6-9140-3d02a2efe052 {
    width: 100%;
    height: auto;
  }

  #s-782fc1a5-9714-41e6-9140-3d02a2efe052 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image {
    
    
  }


.s-782fc1a5-9714-41e6-9140-3d02a2efe052 .shogun-image-content {
  
    align-items: center;
  
}

.s-782fc1a5-9714-41e6-9140-3d02a2efe052.shg-align-container {
  display: flex;
  justify-content: center
}

.s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-782fc1a5-9714-41e6-9140-3d02a2efe052 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image-container {
      position: relative;
    }

    .s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-782fc1a5-9714-41e6-9140-3d02a2efe052 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-782fc1a5-9714-41e6-9140-3d02a2efe052 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-782fc1a5-9714-41e6-9140-3d02a2efe052 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-782fc1a5-9714-41e6-9140-3d02a2efe052 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-782fc1a5-9714-41e6-9140-3d02a2efe052 {
    width: 100%;
    height: auto;
  }

  #s-782fc1a5-9714-41e6-9140-3d02a2efe052 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image {
    
    
  }


.s-782fc1a5-9714-41e6-9140-3d02a2efe052 .shogun-image-content {
  
    align-items: center;
  
}

.s-782fc1a5-9714-41e6-9140-3d02a2efe052.shg-align-container {
  display: flex;
  justify-content: center
}

.s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-782fc1a5-9714-41e6-9140-3d02a2efe052 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image-container {
      position: relative;
    }

    .s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-782fc1a5-9714-41e6-9140-3d02a2efe052 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-782fc1a5-9714-41e6-9140-3d02a2efe052 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-782fc1a5-9714-41e6-9140-3d02a2efe052 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-782fc1a5-9714-41e6-9140-3d02a2efe052 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-782fc1a5-9714-41e6-9140-3d02a2efe052 {
    width: 100%;
    height: auto;
  }

  #s-782fc1a5-9714-41e6-9140-3d02a2efe052 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image {
    
    
  }


.s-782fc1a5-9714-41e6-9140-3d02a2efe052 .shogun-image-content {
  
    align-items: center;
  
}

.s-782fc1a5-9714-41e6-9140-3d02a2efe052.shg-align-container {
  display: flex;
  justify-content: center
}

.s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-782fc1a5-9714-41e6-9140-3d02a2efe052 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image-container {
      position: relative;
    }

    .s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-782fc1a5-9714-41e6-9140-3d02a2efe052.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-782fc1a5-9714-41e6-9140-3d02a2efe052 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-837018c0-9f5f-440a-8262-8ff59a3e14df {
  margin-top: 0px;
padding-top: 11px;
padding-bottom: 12px;
}

.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-bf9b151a-c193-4010-915d-3a5447c6b8d2 {
  margin-bottom: 20px;
padding-top: 5px;
padding-left: 20px;
padding-bottom: 5px;
padding-right: 20px;
border-radius: 6px;
min-height: 26px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
text-decoration: none;
letter-spacing: 0px;
background-image: none;
hover-type: color;
}
#s-bf9b151a-c193-4010-915d-3a5447c6b8d2:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 6px !important;
background-color: rgba(0, 128, 128, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-bf9b151a-c193-4010-915d-3a5447c6b8d2:active {border-radius: 10px !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-bf9b151a-c193-4010-915d-3a5447c6b8d2-root {
    text-align: center;
  }


#s-bf9b151a-c193-4010-915d-3a5447c6b8d2.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-bf9b151a-c193-4010-915d-3a5447c6b8d2-root {
    text-align: center;
  }


#s-bf9b151a-c193-4010-915d-3a5447c6b8d2.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-bf9b151a-c193-4010-915d-3a5447c6b8d2-root {
    text-align: center;
  }


#s-bf9b151a-c193-4010-915d-3a5447c6b8d2.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-bf9b151a-c193-4010-915d-3a5447c6b8d2-root {
    text-align: center;
  }


#s-bf9b151a-c193-4010-915d-3a5447c6b8d2.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-bf9b151a-c193-4010-915d-3a5447c6b8d2-root {
    text-align: center;
  }


#s-bf9b151a-c193-4010-915d-3a5447c6b8d2.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}
}
#s-5f3ae37d-b8d0-4194-8664-eae781aefd49 {
  max-width: 430px;
aspect-ratio: 430/490;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-5f3ae37d-b8d0-4194-8664-eae781aefd49 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-5f3ae37d-b8d0-4194-8664-eae781aefd49 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5f3ae37d-b8d0-4194-8664-eae781aefd49 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5f3ae37d-b8d0-4194-8664-eae781aefd49 {
    width: 100%;
    height: auto;
  }

  #s-5f3ae37d-b8d0-4194-8664-eae781aefd49 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image {
    
    
  }


.s-5f3ae37d-b8d0-4194-8664-eae781aefd49 .shogun-image-content {
  
    align-items: center;
  
}

.s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5f3ae37d-b8d0-4194-8664-eae781aefd49 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image-container {
      position: relative;
    }

    .s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5f3ae37d-b8d0-4194-8664-eae781aefd49 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-5f3ae37d-b8d0-4194-8664-eae781aefd49 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-5f3ae37d-b8d0-4194-8664-eae781aefd49 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5f3ae37d-b8d0-4194-8664-eae781aefd49 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5f3ae37d-b8d0-4194-8664-eae781aefd49 {
    width: 100%;
    height: auto;
  }

  #s-5f3ae37d-b8d0-4194-8664-eae781aefd49 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image {
    
    
  }


.s-5f3ae37d-b8d0-4194-8664-eae781aefd49 .shogun-image-content {
  
    align-items: center;
  
}

.s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5f3ae37d-b8d0-4194-8664-eae781aefd49 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image-container {
      position: relative;
    }

    .s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5f3ae37d-b8d0-4194-8664-eae781aefd49 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-5f3ae37d-b8d0-4194-8664-eae781aefd49 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-5f3ae37d-b8d0-4194-8664-eae781aefd49 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5f3ae37d-b8d0-4194-8664-eae781aefd49 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5f3ae37d-b8d0-4194-8664-eae781aefd49 {
    width: 100%;
    height: auto;
  }

  #s-5f3ae37d-b8d0-4194-8664-eae781aefd49 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image {
    
    
  }


.s-5f3ae37d-b8d0-4194-8664-eae781aefd49 .shogun-image-content {
  
    align-items: center;
  
}

.s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5f3ae37d-b8d0-4194-8664-eae781aefd49 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image-container {
      position: relative;
    }

    .s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5f3ae37d-b8d0-4194-8664-eae781aefd49 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-5f3ae37d-b8d0-4194-8664-eae781aefd49 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-5f3ae37d-b8d0-4194-8664-eae781aefd49 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5f3ae37d-b8d0-4194-8664-eae781aefd49 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5f3ae37d-b8d0-4194-8664-eae781aefd49 {
    width: 100%;
    height: auto;
  }

  #s-5f3ae37d-b8d0-4194-8664-eae781aefd49 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image {
    
    
  }


.s-5f3ae37d-b8d0-4194-8664-eae781aefd49 .shogun-image-content {
  
    align-items: center;
  
}

.s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5f3ae37d-b8d0-4194-8664-eae781aefd49 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image-container {
      position: relative;
    }

    .s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5f3ae37d-b8d0-4194-8664-eae781aefd49 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-5f3ae37d-b8d0-4194-8664-eae781aefd49 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-5f3ae37d-b8d0-4194-8664-eae781aefd49 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5f3ae37d-b8d0-4194-8664-eae781aefd49 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5f3ae37d-b8d0-4194-8664-eae781aefd49 {
    width: 100%;
    height: auto;
  }

  #s-5f3ae37d-b8d0-4194-8664-eae781aefd49 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image {
    
    
  }


.s-5f3ae37d-b8d0-4194-8664-eae781aefd49 .shogun-image-content {
  
    align-items: center;
  
}

.s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5f3ae37d-b8d0-4194-8664-eae781aefd49 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image-container {
      position: relative;
    }

    .s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5f3ae37d-b8d0-4194-8664-eae781aefd49.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5f3ae37d-b8d0-4194-8664-eae781aefd49 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 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-9cd107fa-9227-43ab-ad71-83cd4583e343 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9cd107fa-9227-43ab-ad71-83cd4583e343 .shg-product-title-component h4 {
  color: ;
  font-weight:  700 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

.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-7deaa8b3-4b01-4ec5-a6de-f6a3b2dbc5c7 {
  margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-7deaa8b3-4b01-4ec5-a6de-f6a3b2dbc5c7:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7deaa8b3-4b01-4ec5-a6de-f6a3b2dbc5c7:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-7deaa8b3-4b01-4ec5-a6de-f6a3b2dbc5c7 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-7deaa8b3-4b01-4ec5-a6de-f6a3b2dbc5c7.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7deaa8b3-4b01-4ec5-a6de-f6a3b2dbc5c7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-7deaa8b3-4b01-4ec5-a6de-f6a3b2dbc5c7.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-7deaa8b3-4b01-4ec5-a6de-f6a3b2dbc5c7.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 {
  max-width: 430px;
aspect-ratio: 430/490;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 {
    width: 100%;
    height: auto;
  }

  #s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image {
    
    
  }


.s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 .shogun-image-content {
  
    align-items: center;
  
}

.s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shg-align-container {
  display: flex;
  justify-content: center
}

.s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image-container {
      position: relative;
    }

    .s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 {
    width: 100%;
    height: auto;
  }

  #s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image {
    
    
  }


.s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 .shogun-image-content {
  
    align-items: center;
  
}

.s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shg-align-container {
  display: flex;
  justify-content: center
}

.s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image-container {
      position: relative;
    }

    .s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 {
    width: 100%;
    height: auto;
  }

  #s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image {
    
    
  }


.s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 .shogun-image-content {
  
    align-items: center;
  
}

.s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shg-align-container {
  display: flex;
  justify-content: center
}

.s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image-container {
      position: relative;
    }

    .s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 {
    width: 100%;
    height: auto;
  }

  #s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image {
    
    
  }


.s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 .shogun-image-content {
  
    align-items: center;
  
}

.s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shg-align-container {
  display: flex;
  justify-content: center
}

.s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image-container {
      position: relative;
    }

    .s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 {
    width: 100%;
    height: auto;
  }

  #s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image {
    
    
  }


.s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 .shogun-image-content {
  
    align-items: center;
  
}

.s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shg-align-container {
  display: flex;
  justify-content: center
}

.s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image-container {
      position: relative;
    }

    .s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-50b6bed8-dd95-4a53-b8c6-46dbf39ff144 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-0a6ac338-db7c-4bbf-b1fd-f94173dc68f3 {
  margin-top: 0px;
padding-top: 11px;
padding-bottom: 12px;
}

#s-17962457-94c5-4ac4-a1dc-00ad219d3831 {
  margin-bottom: 20px;
padding-top: 5px;
padding-left: 20px;
padding-bottom: 5px;
padding-right: 20px;
border-radius: 6px;
min-height: 26px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
text-decoration: none;
letter-spacing: 0px;
background-image: none;
hover-type: color;
}
#s-17962457-94c5-4ac4-a1dc-00ad219d3831:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: #2C2A34 !important;
border-radius: 6px !important;
background-color: #424242 !important;
text-decoration: none !important;}#s-17962457-94c5-4ac4-a1dc-00ad219d3831:active {border-radius: 10px !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-17962457-94c5-4ac4-a1dc-00ad219d3831-root {
    text-align: center;
  }


#s-17962457-94c5-4ac4-a1dc-00ad219d3831.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-17962457-94c5-4ac4-a1dc-00ad219d3831-root {
    text-align: center;
  }


#s-17962457-94c5-4ac4-a1dc-00ad219d3831.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-17962457-94c5-4ac4-a1dc-00ad219d3831-root {
    text-align: center;
  }


#s-17962457-94c5-4ac4-a1dc-00ad219d3831.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-17962457-94c5-4ac4-a1dc-00ad219d3831-root {
    text-align: center;
  }


#s-17962457-94c5-4ac4-a1dc-00ad219d3831.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-17962457-94c5-4ac4-a1dc-00ad219d3831-root {
    text-align: center;
  }


#s-17962457-94c5-4ac4-a1dc-00ad219d3831.shg-btn {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}
}
#s-3cbff63c-c944-46fc-9cdb-d3c74ac43c6e {
  min-height: 50px;
}








#s-3cbff63c-c944-46fc-9cdb-d3c74ac43c6e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3cbff63c-c944-46fc-9cdb-d3c74ac43c6e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-42894612-9017-4167-b0ce-344cb5e0020a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-42894612-9017-4167-b0ce-344cb5e0020a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-42894612-9017-4167-b0ce-344cb5e0020a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-42894612-9017-4167-b0ce-344cb5e0020a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

#s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 {
  max-width: 430px;
aspect-ratio: 430/490;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 {
    width: 100%;
    height: auto;
  }

  #s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image {
    
    
  }


.s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 .shogun-image-content {
  
    align-items: center;
  
}

.s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image-container {
      position: relative;
    }

    .s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 {
    width: 100%;
    height: auto;
  }

  #s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image {
    
    
  }


.s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 .shogun-image-content {
  
    align-items: center;
  
}

.s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image-container {
      position: relative;
    }

    .s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 {
    width: 100%;
    height: auto;
  }

  #s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image {
    
    
  }


.s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 .shogun-image-content {
  
    align-items: center;
  
}

.s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image-container {
      position: relative;
    }

    .s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 {
    width: 100%;
    height: auto;
  }

  #s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image {
    
    
  }


.s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 .shogun-image-content {
  
    align-items: center;
  
}

.s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image-container {
      position: relative;
    }

    .s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 {
    width: 100%;
    height: auto;
  }

  #s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image {
    
    
  }


.s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 .shogun-image-content {
  
    align-items: center;
  
}

.s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image-container {
      position: relative;
    }

    .s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a35032d1-4173-4f01-a8ab-fdfaf7e0fdc6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-9e4349d2-1cb0-4c97-9df8-37d5f6b15a66 {
  margin-top: 0px;
margin-left: 5%;
margin-bottom: 20px;
margin-right: 5%;
padding-top: 11px;
padding-bottom: 12px;
}

#s-e541476c-35f6-48c5-a4e1-f32c2485aee5 {
  max-width: 430px;
aspect-ratio: 430/490;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-e541476c-35f6-48c5-a4e1-f32c2485aee5 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-e541476c-35f6-48c5-a4e1-f32c2485aee5 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e541476c-35f6-48c5-a4e1-f32c2485aee5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e541476c-35f6-48c5-a4e1-f32c2485aee5 {
    width: 100%;
    height: auto;
  }

  #s-e541476c-35f6-48c5-a4e1-f32c2485aee5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image {
    
    
  }


.s-e541476c-35f6-48c5-a4e1-f32c2485aee5 .shogun-image-content {
  
    align-items: center;
  
}

.s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e541476c-35f6-48c5-a4e1-f32c2485aee5 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image-container {
      position: relative;
    }

    .s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e541476c-35f6-48c5-a4e1-f32c2485aee5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-e541476c-35f6-48c5-a4e1-f32c2485aee5 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-e541476c-35f6-48c5-a4e1-f32c2485aee5 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e541476c-35f6-48c5-a4e1-f32c2485aee5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e541476c-35f6-48c5-a4e1-f32c2485aee5 {
    width: 100%;
    height: auto;
  }

  #s-e541476c-35f6-48c5-a4e1-f32c2485aee5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image {
    
    
  }


.s-e541476c-35f6-48c5-a4e1-f32c2485aee5 .shogun-image-content {
  
    align-items: center;
  
}

.s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e541476c-35f6-48c5-a4e1-f32c2485aee5 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image-container {
      position: relative;
    }

    .s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e541476c-35f6-48c5-a4e1-f32c2485aee5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-e541476c-35f6-48c5-a4e1-f32c2485aee5 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-e541476c-35f6-48c5-a4e1-f32c2485aee5 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e541476c-35f6-48c5-a4e1-f32c2485aee5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e541476c-35f6-48c5-a4e1-f32c2485aee5 {
    width: 100%;
    height: auto;
  }

  #s-e541476c-35f6-48c5-a4e1-f32c2485aee5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image {
    
    
  }


.s-e541476c-35f6-48c5-a4e1-f32c2485aee5 .shogun-image-content {
  
    align-items: center;
  
}

.s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e541476c-35f6-48c5-a4e1-f32c2485aee5 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image-container {
      position: relative;
    }

    .s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e541476c-35f6-48c5-a4e1-f32c2485aee5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-e541476c-35f6-48c5-a4e1-f32c2485aee5 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-e541476c-35f6-48c5-a4e1-f32c2485aee5 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e541476c-35f6-48c5-a4e1-f32c2485aee5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e541476c-35f6-48c5-a4e1-f32c2485aee5 {
    width: 100%;
    height: auto;
  }

  #s-e541476c-35f6-48c5-a4e1-f32c2485aee5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image {
    
    
  }


.s-e541476c-35f6-48c5-a4e1-f32c2485aee5 .shogun-image-content {
  
    align-items: center;
  
}

.s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e541476c-35f6-48c5-a4e1-f32c2485aee5 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image-container {
      position: relative;
    }

    .s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e541476c-35f6-48c5-a4e1-f32c2485aee5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-e541476c-35f6-48c5-a4e1-f32c2485aee5 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-e541476c-35f6-48c5-a4e1-f32c2485aee5 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-e541476c-35f6-48c5-a4e1-f32c2485aee5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-e541476c-35f6-48c5-a4e1-f32c2485aee5 {
    width: 100%;
    height: auto;
  }

  #s-e541476c-35f6-48c5-a4e1-f32c2485aee5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image {
    
    
  }


.s-e541476c-35f6-48c5-a4e1-f32c2485aee5 .shogun-image-content {
  
    align-items: center;
  
}

.s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e541476c-35f6-48c5-a4e1-f32c2485aee5 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image-container {
      position: relative;
    }

    .s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e541476c-35f6-48c5-a4e1-f32c2485aee5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e541476c-35f6-48c5-a4e1-f32c2485aee5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-3e758b53-0c01-4295-be3e-822e1e44e079 {
  margin-top: 0px;
margin-bottom: 20px;
padding-top: 11px;
padding-bottom: 12px;
}

#s-da9ce59a-01d5-42b9-95cf-60e34672609a {
  max-width: 430px;
aspect-ratio: 430/490;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-da9ce59a-01d5-42b9-95cf-60e34672609a .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-da9ce59a-01d5-42b9-95cf-60e34672609a .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-da9ce59a-01d5-42b9-95cf-60e34672609a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-da9ce59a-01d5-42b9-95cf-60e34672609a {
    width: 100%;
    height: auto;
  }

  #s-da9ce59a-01d5-42b9-95cf-60e34672609a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image {
    
    
  }


.s-da9ce59a-01d5-42b9-95cf-60e34672609a .shogun-image-content {
  
    align-items: center;
  
}

.s-da9ce59a-01d5-42b9-95cf-60e34672609a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-da9ce59a-01d5-42b9-95cf-60e34672609a {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image-container {
      position: relative;
    }

    .s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-da9ce59a-01d5-42b9-95cf-60e34672609a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-da9ce59a-01d5-42b9-95cf-60e34672609a .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-da9ce59a-01d5-42b9-95cf-60e34672609a .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-da9ce59a-01d5-42b9-95cf-60e34672609a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-da9ce59a-01d5-42b9-95cf-60e34672609a {
    width: 100%;
    height: auto;
  }

  #s-da9ce59a-01d5-42b9-95cf-60e34672609a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image {
    
    
  }


.s-da9ce59a-01d5-42b9-95cf-60e34672609a .shogun-image-content {
  
    align-items: center;
  
}

.s-da9ce59a-01d5-42b9-95cf-60e34672609a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-da9ce59a-01d5-42b9-95cf-60e34672609a {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image-container {
      position: relative;
    }

    .s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-da9ce59a-01d5-42b9-95cf-60e34672609a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-da9ce59a-01d5-42b9-95cf-60e34672609a .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-da9ce59a-01d5-42b9-95cf-60e34672609a .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-da9ce59a-01d5-42b9-95cf-60e34672609a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-da9ce59a-01d5-42b9-95cf-60e34672609a {
    width: 100%;
    height: auto;
  }

  #s-da9ce59a-01d5-42b9-95cf-60e34672609a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image {
    
    
  }


.s-da9ce59a-01d5-42b9-95cf-60e34672609a .shogun-image-content {
  
    align-items: center;
  
}

.s-da9ce59a-01d5-42b9-95cf-60e34672609a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-da9ce59a-01d5-42b9-95cf-60e34672609a {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image-container {
      position: relative;
    }

    .s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-da9ce59a-01d5-42b9-95cf-60e34672609a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-da9ce59a-01d5-42b9-95cf-60e34672609a .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-da9ce59a-01d5-42b9-95cf-60e34672609a .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-da9ce59a-01d5-42b9-95cf-60e34672609a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-da9ce59a-01d5-42b9-95cf-60e34672609a {
    width: 100%;
    height: auto;
  }

  #s-da9ce59a-01d5-42b9-95cf-60e34672609a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image {
    
    
  }


.s-da9ce59a-01d5-42b9-95cf-60e34672609a .shogun-image-content {
  
    align-items: center;
  
}

.s-da9ce59a-01d5-42b9-95cf-60e34672609a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-da9ce59a-01d5-42b9-95cf-60e34672609a {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image-container {
      position: relative;
    }

    .s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-da9ce59a-01d5-42b9-95cf-60e34672609a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-da9ce59a-01d5-42b9-95cf-60e34672609a .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-da9ce59a-01d5-42b9-95cf-60e34672609a .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-da9ce59a-01d5-42b9-95cf-60e34672609a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-da9ce59a-01d5-42b9-95cf-60e34672609a {
    width: 100%;
    height: auto;
  }

  #s-da9ce59a-01d5-42b9-95cf-60e34672609a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image {
    
    
  }


.s-da9ce59a-01d5-42b9-95cf-60e34672609a .shogun-image-content {
  
    align-items: center;
  
}

.s-da9ce59a-01d5-42b9-95cf-60e34672609a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-da9ce59a-01d5-42b9-95cf-60e34672609a {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image-container {
      position: relative;
    }

    .s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-da9ce59a-01d5-42b9-95cf-60e34672609a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-da9ce59a-01d5-42b9-95cf-60e34672609a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-53d13dec-c9da-46d0-a468-2c8745f48ea0 {
  margin-top: 0px;
margin-bottom: 20px;
padding-top: 11px;
padding-bottom: 12px;
}

#s-e25e9f27-e56a-4ad4-b775-3d2cce37a8c9 {
  min-height: 60px;
}








#s-e25e9f27-e56a-4ad4-b775-3d2cce37a8c9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e25e9f27-e56a-4ad4-b775-3d2cce37a8c9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-084f8ec9-f646-43e6-8381-1da5b7809769 {
  padding-top: 10px;
padding-bottom: 16px;
text-align: center;
}

#s-084f8ec9-f646-43e6-8381-1da5b7809769 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 35px;
  
  
  
}



#s-a69ba4c6-5e93-4327-a139-8b4f5c7ba936 {
  min-height: 90px;
}








#s-a69ba4c6-5e93-4327-a139-8b4f5c7ba936 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a69ba4c6-5e93-4327-a139-8b4f5c7ba936.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4271183d-4851-4c72-b8f9-622b2861e6f4 {
  box-shadow:1px 2px 2px 1px rgba(186, 185, 185, 1);
margin-top: 1px;
padding-top: 23px;
padding-left: 2%;
padding-bottom: 8px;
padding-right: 2%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(186, 164, 3, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-4271183d-4851-4c72-b8f9-622b2861e6f4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4271183d-4851-4c72-b8f9-622b2861e6f4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-4271183d-4851-4c72-b8f9-622b2861e6f4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-4271183d-4851-4c72-b8f9-622b2861e6f4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

#s-3b0eaacb-101b-462d-b357-c2eb90d7c709 {
  max-width: 430px;
aspect-ratio: 430/490;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-3b0eaacb-101b-462d-b357-c2eb90d7c709 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-3b0eaacb-101b-462d-b357-c2eb90d7c709 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3b0eaacb-101b-462d-b357-c2eb90d7c709 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-3b0eaacb-101b-462d-b357-c2eb90d7c709 {
    width: 100%;
    height: auto;
  }

  #s-3b0eaacb-101b-462d-b357-c2eb90d7c709 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image {
    
    
  }


.s-3b0eaacb-101b-462d-b357-c2eb90d7c709 .shogun-image-content {
  
    align-items: center;
  
}

.s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3b0eaacb-101b-462d-b357-c2eb90d7c709 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image-container {
      position: relative;
    }

    .s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3b0eaacb-101b-462d-b357-c2eb90d7c709 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-3b0eaacb-101b-462d-b357-c2eb90d7c709 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-3b0eaacb-101b-462d-b357-c2eb90d7c709 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3b0eaacb-101b-462d-b357-c2eb90d7c709 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-3b0eaacb-101b-462d-b357-c2eb90d7c709 {
    width: 100%;
    height: auto;
  }

  #s-3b0eaacb-101b-462d-b357-c2eb90d7c709 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image {
    
    
  }


.s-3b0eaacb-101b-462d-b357-c2eb90d7c709 .shogun-image-content {
  
    align-items: center;
  
}

.s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3b0eaacb-101b-462d-b357-c2eb90d7c709 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image-container {
      position: relative;
    }

    .s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3b0eaacb-101b-462d-b357-c2eb90d7c709 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-3b0eaacb-101b-462d-b357-c2eb90d7c709 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-3b0eaacb-101b-462d-b357-c2eb90d7c709 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3b0eaacb-101b-462d-b357-c2eb90d7c709 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-3b0eaacb-101b-462d-b357-c2eb90d7c709 {
    width: 100%;
    height: auto;
  }

  #s-3b0eaacb-101b-462d-b357-c2eb90d7c709 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image {
    
    
  }


.s-3b0eaacb-101b-462d-b357-c2eb90d7c709 .shogun-image-content {
  
    align-items: center;
  
}

.s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3b0eaacb-101b-462d-b357-c2eb90d7c709 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image-container {
      position: relative;
    }

    .s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3b0eaacb-101b-462d-b357-c2eb90d7c709 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-3b0eaacb-101b-462d-b357-c2eb90d7c709 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-3b0eaacb-101b-462d-b357-c2eb90d7c709 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3b0eaacb-101b-462d-b357-c2eb90d7c709 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-3b0eaacb-101b-462d-b357-c2eb90d7c709 {
    width: 100%;
    height: auto;
  }

  #s-3b0eaacb-101b-462d-b357-c2eb90d7c709 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image {
    
    
  }


.s-3b0eaacb-101b-462d-b357-c2eb90d7c709 .shogun-image-content {
  
    align-items: center;
  
}

.s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3b0eaacb-101b-462d-b357-c2eb90d7c709 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image-container {
      position: relative;
    }

    .s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3b0eaacb-101b-462d-b357-c2eb90d7c709 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-3b0eaacb-101b-462d-b357-c2eb90d7c709 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-3b0eaacb-101b-462d-b357-c2eb90d7c709 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3b0eaacb-101b-462d-b357-c2eb90d7c709 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-3b0eaacb-101b-462d-b357-c2eb90d7c709 {
    width: 100%;
    height: auto;
  }

  #s-3b0eaacb-101b-462d-b357-c2eb90d7c709 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image {
    
    
  }


.s-3b0eaacb-101b-462d-b357-c2eb90d7c709 .shogun-image-content {
  
    align-items: center;
  
}

.s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3b0eaacb-101b-462d-b357-c2eb90d7c709 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image-container {
      position: relative;
    }

    .s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3b0eaacb-101b-462d-b357-c2eb90d7c709.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3b0eaacb-101b-462d-b357-c2eb90d7c709 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-c5d3eedc-5dfc-4e84-8f46-10baba06281b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c5d3eedc-5dfc-4e84-8f46-10baba06281b .shg-product-title-component h4 {
  color: ;
  font-weight:  700 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-0c21b437-d151-48c2-8e4d-6b691317673b {
  margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-0c21b437-d151-48c2-8e4d-6b691317673b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-0c21b437-d151-48c2-8e4d-6b691317673b:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-0c21b437-d151-48c2-8e4d-6b691317673b {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-0c21b437-d151-48c2-8e4d-6b691317673b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0c21b437-d151-48c2-8e4d-6b691317673b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-0c21b437-d151-48c2-8e4d-6b691317673b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-0c21b437-d151-48c2-8e4d-6b691317673b.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-17779425-fc3b-4c01-bed7-bda5b7d6a270 {
  max-width: 430px;
aspect-ratio: 430/490;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-17779425-fc3b-4c01-bed7-bda5b7d6a270 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-17779425-fc3b-4c01-bed7-bda5b7d6a270 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-17779425-fc3b-4c01-bed7-bda5b7d6a270 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-17779425-fc3b-4c01-bed7-bda5b7d6a270 {
    width: 100%;
    height: auto;
  }

  #s-17779425-fc3b-4c01-bed7-bda5b7d6a270 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image {
    
    
  }


.s-17779425-fc3b-4c01-bed7-bda5b7d6a270 .shogun-image-content {
  
    align-items: center;
  
}

.s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shg-align-container {
  display: flex;
  justify-content: center
}

.s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-17779425-fc3b-4c01-bed7-bda5b7d6a270 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image-container {
      position: relative;
    }

    .s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-17779425-fc3b-4c01-bed7-bda5b7d6a270 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-17779425-fc3b-4c01-bed7-bda5b7d6a270 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-17779425-fc3b-4c01-bed7-bda5b7d6a270 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-17779425-fc3b-4c01-bed7-bda5b7d6a270 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-17779425-fc3b-4c01-bed7-bda5b7d6a270 {
    width: 100%;
    height: auto;
  }

  #s-17779425-fc3b-4c01-bed7-bda5b7d6a270 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image {
    
    
  }


.s-17779425-fc3b-4c01-bed7-bda5b7d6a270 .shogun-image-content {
  
    align-items: center;
  
}

.s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shg-align-container {
  display: flex;
  justify-content: center
}

.s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-17779425-fc3b-4c01-bed7-bda5b7d6a270 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image-container {
      position: relative;
    }

    .s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-17779425-fc3b-4c01-bed7-bda5b7d6a270 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-17779425-fc3b-4c01-bed7-bda5b7d6a270 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-17779425-fc3b-4c01-bed7-bda5b7d6a270 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-17779425-fc3b-4c01-bed7-bda5b7d6a270 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-17779425-fc3b-4c01-bed7-bda5b7d6a270 {
    width: 100%;
    height: auto;
  }

  #s-17779425-fc3b-4c01-bed7-bda5b7d6a270 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image {
    
    
  }


.s-17779425-fc3b-4c01-bed7-bda5b7d6a270 .shogun-image-content {
  
    align-items: center;
  
}

.s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shg-align-container {
  display: flex;
  justify-content: center
}

.s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-17779425-fc3b-4c01-bed7-bda5b7d6a270 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image-container {
      position: relative;
    }

    .s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-17779425-fc3b-4c01-bed7-bda5b7d6a270 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-17779425-fc3b-4c01-bed7-bda5b7d6a270 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-17779425-fc3b-4c01-bed7-bda5b7d6a270 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-17779425-fc3b-4c01-bed7-bda5b7d6a270 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-17779425-fc3b-4c01-bed7-bda5b7d6a270 {
    width: 100%;
    height: auto;
  }

  #s-17779425-fc3b-4c01-bed7-bda5b7d6a270 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image {
    
    
  }


.s-17779425-fc3b-4c01-bed7-bda5b7d6a270 .shogun-image-content {
  
    align-items: center;
  
}

.s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shg-align-container {
  display: flex;
  justify-content: center
}

.s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-17779425-fc3b-4c01-bed7-bda5b7d6a270 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image-container {
      position: relative;
    }

    .s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-17779425-fc3b-4c01-bed7-bda5b7d6a270 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-17779425-fc3b-4c01-bed7-bda5b7d6a270 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-17779425-fc3b-4c01-bed7-bda5b7d6a270 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-17779425-fc3b-4c01-bed7-bda5b7d6a270 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-17779425-fc3b-4c01-bed7-bda5b7d6a270 {
    width: 100%;
    height: auto;
  }

  #s-17779425-fc3b-4c01-bed7-bda5b7d6a270 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image {
    
    
  }


.s-17779425-fc3b-4c01-bed7-bda5b7d6a270 .shogun-image-content {
  
    align-items: center;
  
}

.s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shg-align-container {
  display: flex;
  justify-content: center
}

.s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-17779425-fc3b-4c01-bed7-bda5b7d6a270 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image-container {
      position: relative;
    }

    .s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-17779425-fc3b-4c01-bed7-bda5b7d6a270.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-17779425-fc3b-4c01-bed7-bda5b7d6a270 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-a6d38d0c-4a66-4609-9ea0-303108678eb1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a6d38d0c-4a66-4609-9ea0-303108678eb1 .shg-product-title-component h4 {
  color: ;
  font-weight:  700 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-01fa9fd0-0e38-4168-afd2-137d59f63040 {
  margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-01fa9fd0-0e38-4168-afd2-137d59f63040:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-01fa9fd0-0e38-4168-afd2-137d59f63040:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-01fa9fd0-0e38-4168-afd2-137d59f63040 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-01fa9fd0-0e38-4168-afd2-137d59f63040.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-01fa9fd0-0e38-4168-afd2-137d59f63040.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-01fa9fd0-0e38-4168-afd2-137d59f63040.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-01fa9fd0-0e38-4168-afd2-137d59f63040.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 {
  max-width: 430px;
aspect-ratio: 430/490;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 {
    width: 100%;
    height: auto;
  }

  #s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image {
    
    
  }


.s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 .shogun-image-content {
  
    align-items: center;
  
}

.s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image-container {
      position: relative;
    }

    .s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 {
    width: 100%;
    height: auto;
  }

  #s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image {
    
    
  }


.s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 .shogun-image-content {
  
    align-items: center;
  
}

.s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image-container {
      position: relative;
    }

    .s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 {
    width: 100%;
    height: auto;
  }

  #s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image {
    
    
  }


.s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 .shogun-image-content {
  
    align-items: center;
  
}

.s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image-container {
      position: relative;
    }

    .s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 {
    width: 100%;
    height: auto;
  }

  #s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image {
    
    
  }


.s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 .shogun-image-content {
  
    align-items: center;
  
}

.s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image-container {
      position: relative;
    }

    .s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 {
    width: 100%;
    height: auto;
  }

  #s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image {
    
    
  }


.s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 .shogun-image-content {
  
    align-items: center;
  
}

.s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image-container {
      position: relative;
    }

    .s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-83abf7e1-91d8-4caa-bd27-b9f3692eabc3 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-7dc8c7e4-f6ba-4b55-b52d-72c9b290b243 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7dc8c7e4-f6ba-4b55-b52d-72c9b290b243 .shg-product-title-component h4 {
  color: ;
  font-weight:  700 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-15257f3d-3361-4f27-8e0f-33a59da4de06 {
  margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-15257f3d-3361-4f27-8e0f-33a59da4de06:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-15257f3d-3361-4f27-8e0f-33a59da4de06:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-15257f3d-3361-4f27-8e0f-33a59da4de06 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-15257f3d-3361-4f27-8e0f-33a59da4de06.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-15257f3d-3361-4f27-8e0f-33a59da4de06.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-15257f3d-3361-4f27-8e0f-33a59da4de06.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-15257f3d-3361-4f27-8e0f-33a59da4de06.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-602141a5-3f96-42a8-bdea-ade3501d8aa3 {
  min-height: 90px;
}








#s-602141a5-3f96-42a8-bdea-ade3501d8aa3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-602141a5-3f96-42a8-bdea-ade3501d8aa3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 {
  margin-bottom: 17px;
max-width: 1985px;
aspect-ratio: 1985/37;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 {
    width: 100%;
    height: auto;
  }

  #s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image {
    
    
  }


.s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image-container {
      position: relative;
    }

    .s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 {
    width: 100%;
    height: auto;
  }

  #s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image {
    
    
  }


.s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image-container {
      position: relative;
    }

    .s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 {
    width: 100%;
    height: auto;
  }

  #s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image {
    
    
  }


.s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image-container {
      position: relative;
    }

    .s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 {
    width: 100%;
    height: auto;
  }

  #s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image {
    
    
  }


.s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image-container {
      position: relative;
    }

    .s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 {
    width: 100%;
    height: auto;
  }

  #s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image {
    
    
  }


.s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image-container {
      position: relative;
    }

    .s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0ade2c4f-a92e-4b83-892c-39d62c2407c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0ade2c4f-a92e-4b83-892c-39d62c2407c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 {
  margin-top: 17px;
margin-left: 4%;
margin-bottom: 17px;
margin-right: 4%;
padding-top: 0px;
padding-bottom: 0px;
max-width: 1159px;
aspect-ratio: 1159/140;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 .shg-image-content-wrapper {
      aspect-ratio: 1159/140;
      min-width: 100%;
      height: auto;
    }

    #s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 .shogun-image-link {
      aspect-ratio: 1159/140;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 {
    width: 100%;
    height: auto;
  }

  #s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image {
    
    
  }


.s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 .shogun-image-content {
  
    align-items: center;
  
}

.s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 {
      --shg-aspect-ratio: calc(1159/140); 
    }

    .s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image-container {
      position: relative;
    }

    .s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 .shg-image-content-wrapper {
      aspect-ratio: 1159/140;
      min-width: 100%;
      height: auto;
    }

    #s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 .shogun-image-link {
      aspect-ratio: 1159/140;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 {
    width: 100%;
    height: auto;
  }

  #s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image {
    
    
  }


.s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 .shogun-image-content {
  
    align-items: center;
  
}

.s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 {
      --shg-aspect-ratio: calc(1159/140); 
    }

    .s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image-container {
      position: relative;
    }

    .s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 .shg-image-content-wrapper {
      aspect-ratio: 1159/140;
      min-width: 100%;
      height: auto;
    }

    #s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 .shogun-image-link {
      aspect-ratio: 1159/140;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 {
    width: 100%;
    height: auto;
  }

  #s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image {
    
    
  }


.s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 .shogun-image-content {
  
    align-items: center;
  
}

.s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 {
      --shg-aspect-ratio: calc(1159/140); 
    }

    .s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image-container {
      position: relative;
    }

    .s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 .shg-image-content-wrapper {
      aspect-ratio: 1159/140;
      min-width: 100%;
      height: auto;
    }

    #s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 .shogun-image-link {
      aspect-ratio: 1159/140;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 {
    width: 100%;
    height: auto;
  }

  #s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image {
    
    
  }


.s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 .shogun-image-content {
  
    align-items: center;
  
}

.s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 {
      --shg-aspect-ratio: calc(1159/140); 
    }

    .s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image-container {
      position: relative;
    }

    .s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 .shg-image-content-wrapper {
      aspect-ratio: 1159/140;
      min-width: 100%;
      height: auto;
    }

    #s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 .shogun-image-link {
      aspect-ratio: 1159/140;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 {
    width: 100%;
    height: auto;
  }

  #s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image {
    
    
  }


.s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 .shogun-image-content {
  
    align-items: center;
  
}

.s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 {
      --shg-aspect-ratio: calc(1159/140); 
    }

    .s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image-container {
      position: relative;
    }

    .s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5b062104-a5a8-413b-9eb0-b2b6554ddb30.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5b062104-a5a8-413b-9eb0-b2b6554ddb30 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-e61a8784-d182-4764-ada6-0f8327b073df {
  min-height: 20px;
}








#s-e61a8784-d182-4764-ada6-0f8327b073df > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e61a8784-d182-4764-ada6-0f8327b073df.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6f0e551e-09bb-4595-ba98-191cf6d908a2 {
  padding-right: 5%;
}

@media (min-width: 0px) {
[id="s-6f0e551e-09bb-4595-ba98-191cf6d908a2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6f0e551e-09bb-4595-ba98-191cf6d908a2"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-6f0e551e-09bb-4595-ba98-191cf6d908a2"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6f0e551e-09bb-4595-ba98-191cf6d908a2"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-6f0e551e-09bb-4595-ba98-191cf6d908a2"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6f0e551e-09bb-4595-ba98-191cf6d908a2"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-6f0e551e-09bb-4595-ba98-191cf6d908a2"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

#s-8b38a818-7858-436d-83ae-a45cfdf006df {
  max-width: 644px;
aspect-ratio: 644/518;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-8b38a818-7858-436d-83ae-a45cfdf006df .shg-image-content-wrapper {
      aspect-ratio: 644/518;
      min-width: 100%;
      height: auto;
    }

    #s-8b38a818-7858-436d-83ae-a45cfdf006df .shogun-image-link {
      aspect-ratio: 644/518;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8b38a818-7858-436d-83ae-a45cfdf006df .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-8b38a818-7858-436d-83ae-a45cfdf006df {
    width: 100%;
    height: auto;
  }

  #s-8b38a818-7858-436d-83ae-a45cfdf006df img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image {
    
    
  }


.s-8b38a818-7858-436d-83ae-a45cfdf006df .shogun-image-content {
  
    align-items: center;
  
}

.s-8b38a818-7858-436d-83ae-a45cfdf006df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8b38a818-7858-436d-83ae-a45cfdf006df {
      --shg-aspect-ratio: calc(644/518); 
    }

    .s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image-container {
      position: relative;
    }

    .s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8b38a818-7858-436d-83ae-a45cfdf006df img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-8b38a818-7858-436d-83ae-a45cfdf006df .shg-image-content-wrapper {
      aspect-ratio: 644/518;
      min-width: 100%;
      height: auto;
    }

    #s-8b38a818-7858-436d-83ae-a45cfdf006df .shogun-image-link {
      aspect-ratio: 644/518;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8b38a818-7858-436d-83ae-a45cfdf006df .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-8b38a818-7858-436d-83ae-a45cfdf006df {
    width: 100%;
    height: auto;
  }

  #s-8b38a818-7858-436d-83ae-a45cfdf006df img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image {
    
    
  }


.s-8b38a818-7858-436d-83ae-a45cfdf006df .shogun-image-content {
  
    align-items: center;
  
}

.s-8b38a818-7858-436d-83ae-a45cfdf006df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8b38a818-7858-436d-83ae-a45cfdf006df {
      --shg-aspect-ratio: calc(644/518); 
    }

    .s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image-container {
      position: relative;
    }

    .s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8b38a818-7858-436d-83ae-a45cfdf006df img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-8b38a818-7858-436d-83ae-a45cfdf006df .shg-image-content-wrapper {
      aspect-ratio: 644/518;
      min-width: 100%;
      height: auto;
    }

    #s-8b38a818-7858-436d-83ae-a45cfdf006df .shogun-image-link {
      aspect-ratio: 644/518;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8b38a818-7858-436d-83ae-a45cfdf006df .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-8b38a818-7858-436d-83ae-a45cfdf006df {
    width: 100%;
    height: auto;
  }

  #s-8b38a818-7858-436d-83ae-a45cfdf006df img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image {
    
    
  }


.s-8b38a818-7858-436d-83ae-a45cfdf006df .shogun-image-content {
  
    align-items: center;
  
}

.s-8b38a818-7858-436d-83ae-a45cfdf006df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8b38a818-7858-436d-83ae-a45cfdf006df {
      --shg-aspect-ratio: calc(644/518); 
    }

    .s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image-container {
      position: relative;
    }

    .s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8b38a818-7858-436d-83ae-a45cfdf006df img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-8b38a818-7858-436d-83ae-a45cfdf006df .shg-image-content-wrapper {
      aspect-ratio: 644/518;
      min-width: 100%;
      height: auto;
    }

    #s-8b38a818-7858-436d-83ae-a45cfdf006df .shogun-image-link {
      aspect-ratio: 644/518;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8b38a818-7858-436d-83ae-a45cfdf006df .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-8b38a818-7858-436d-83ae-a45cfdf006df {
    width: 100%;
    height: auto;
  }

  #s-8b38a818-7858-436d-83ae-a45cfdf006df img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image {
    
    
  }


.s-8b38a818-7858-436d-83ae-a45cfdf006df .shogun-image-content {
  
    align-items: center;
  
}

.s-8b38a818-7858-436d-83ae-a45cfdf006df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8b38a818-7858-436d-83ae-a45cfdf006df {
      --shg-aspect-ratio: calc(644/518); 
    }

    .s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image-container {
      position: relative;
    }

    .s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8b38a818-7858-436d-83ae-a45cfdf006df img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-8b38a818-7858-436d-83ae-a45cfdf006df .shg-image-content-wrapper {
      aspect-ratio: 644/518;
      min-width: 100%;
      height: auto;
    }

    #s-8b38a818-7858-436d-83ae-a45cfdf006df .shogun-image-link {
      aspect-ratio: 644/518;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8b38a818-7858-436d-83ae-a45cfdf006df .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-8b38a818-7858-436d-83ae-a45cfdf006df {
    width: 100%;
    height: auto;
  }

  #s-8b38a818-7858-436d-83ae-a45cfdf006df img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image {
    
    
  }


.s-8b38a818-7858-436d-83ae-a45cfdf006df .shogun-image-content {
  
    align-items: center;
  
}

.s-8b38a818-7858-436d-83ae-a45cfdf006df.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8b38a818-7858-436d-83ae-a45cfdf006df {
      --shg-aspect-ratio: calc(644/518); 
    }

    .s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image-container {
      position: relative;
    }

    .s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8b38a818-7858-436d-83ae-a45cfdf006df.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8b38a818-7858-436d-83ae-a45cfdf006df img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-149a346e-74b8-4957-a084-80c20f13bc77 {
  margin-left: 3%;
padding-top: 2px;
}

#s-039d8469-0fbb-4c77-b2ca-83fe0a939607 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(73, 221, 216, 1);
border-radius: 6px;
background-color: rgba(127, 60, 121, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-039d8469-0fbb-4c77-b2ca-83fe0a939607:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-039d8469-0fbb-4c77-b2ca-83fe0a939607:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-039d8469-0fbb-4c77-b2ca-83fe0a939607-root {
    text-align: center;
  }


#s-039d8469-0fbb-4c77-b2ca-83fe0a939607.shg-btn {
  color: #ffffff;
  font-size: 19px;
  font-weight: 800;
  
  font-family: Raleway;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-039d8469-0fbb-4c77-b2ca-83fe0a939607-root {
    text-align: center;
  }


#s-039d8469-0fbb-4c77-b2ca-83fe0a939607.shg-btn {
  color: #ffffff;
  font-size: 19px;
  font-weight: 800;
  
  font-family: Raleway;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-039d8469-0fbb-4c77-b2ca-83fe0a939607-root {
    text-align: center;
  }


#s-039d8469-0fbb-4c77-b2ca-83fe0a939607.shg-btn {
  color: #ffffff;
  font-size: 19px;
  font-weight: 800;
  
  font-family: Raleway;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-039d8469-0fbb-4c77-b2ca-83fe0a939607-root {
    text-align: center;
  }


#s-039d8469-0fbb-4c77-b2ca-83fe0a939607.shg-btn {
  color: #ffffff;
  font-size: 19px;
  font-weight: 800;
  
  font-family: Raleway;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-039d8469-0fbb-4c77-b2ca-83fe0a939607-root {
    text-align: center;
  }


#s-039d8469-0fbb-4c77-b2ca-83fe0a939607.shg-btn {
  color: #ffffff;
  font-size: 19px;
  font-weight: 800;
  
  font-family: Raleway;
  display:  inline-block ;
}
}
#s-57de5d53-2c5f-427d-b612-306710b56093 {
  min-height: 20px;
}








#s-57de5d53-2c5f-427d-b612-306710b56093 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-57de5d53-2c5f-427d-b612-306710b56093.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bb5c01a9-2b37-496c-80d4-e8deea6d5224 {
  margin-left: 0%;
margin-right: 0%;
}

@media (min-width: 0px) {
[id="s-bb5c01a9-2b37-496c-80d4-e8deea6d5224"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bb5c01a9-2b37-496c-80d4-e8deea6d5224"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-bb5c01a9-2b37-496c-80d4-e8deea6d5224"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-bb5c01a9-2b37-496c-80d4-e8deea6d5224"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 {
  margin-left: 2%;
margin-right: 7%;
max-width: 583px;
aspect-ratio: 583/471;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 .shg-image-content-wrapper {
      aspect-ratio: 583/471;
      min-width: 100%;
      height: auto;
    }

    #s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 .shogun-image-link {
      aspect-ratio: 583/471;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 {
    width: 100%;
    height: auto;
  }

  #s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image {
    
    
  }


.s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 .shogun-image-content {
  
    align-items: center;
  
}

.s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 {
      --shg-aspect-ratio: calc(583/471); 
    }

    .s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image-container {
      position: relative;
    }

    .s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 .shg-image-content-wrapper {
      aspect-ratio: 583/471;
      min-width: 100%;
      height: auto;
    }

    #s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 .shogun-image-link {
      aspect-ratio: 583/471;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 {
    width: 100%;
    height: auto;
  }

  #s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image {
    
    
  }


.s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 .shogun-image-content {
  
    align-items: center;
  
}

.s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 {
      --shg-aspect-ratio: calc(583/471); 
    }

    .s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image-container {
      position: relative;
    }

    .s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 .shg-image-content-wrapper {
      aspect-ratio: 583/471;
      min-width: 100%;
      height: auto;
    }

    #s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 .shogun-image-link {
      aspect-ratio: 583/471;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 {
    width: 100%;
    height: auto;
  }

  #s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image {
    
    
  }


.s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 .shogun-image-content {
  
    align-items: center;
  
}

.s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 {
      --shg-aspect-ratio: calc(583/471); 
    }

    .s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image-container {
      position: relative;
    }

    .s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 .shg-image-content-wrapper {
      aspect-ratio: 583/471;
      min-width: 100%;
      height: auto;
    }

    #s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 .shogun-image-link {
      aspect-ratio: 583/471;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 {
    width: 100%;
    height: auto;
  }

  #s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image {
    
    
  }


.s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 .shogun-image-content {
  
    align-items: center;
  
}

.s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 {
      --shg-aspect-ratio: calc(583/471); 
    }

    .s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image-container {
      position: relative;
    }

    .s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 .shg-image-content-wrapper {
      aspect-ratio: 583/471;
      min-width: 100%;
      height: auto;
    }

    #s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 .shogun-image-link {
      aspect-ratio: 583/471;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 {
    width: 100%;
    height: auto;
  }

  #s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image {
    
    
  }


.s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 .shogun-image-content {
  
    align-items: center;
  
}

.s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 {
      --shg-aspect-ratio: calc(583/471); 
    }

    .s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image-container {
      position: relative;
    }

    .s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7e224b5c-32b2-45d6-a0a0-9d835f0d7290 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-75ee0fb6-8aef-4e41-9fba-b2586933b265 {
  margin-top: 16px;
margin-left: 5%;
margin-right: 2%;
padding-top: 5px;
}

#s-510b9a2b-1263-42f2-9bd8-9eb7ee3baf78 {
  min-height: 80px;
}








#s-510b9a2b-1263-42f2-9bd8-9eb7ee3baf78 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-510b9a2b-1263-42f2-9bd8-9eb7ee3baf78.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 {
  max-width: 1985px;
aspect-ratio: 1985/37;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 {
    width: 100%;
    height: auto;
  }

  #s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image {
    
    
  }


.s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image-container {
      position: relative;
    }

    .s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 {
    width: 100%;
    height: auto;
  }

  #s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image {
    
    
  }


.s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image-container {
      position: relative;
    }

    .s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 {
    width: 100%;
    height: auto;
  }

  #s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image {
    
    
  }


.s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image-container {
      position: relative;
    }

    .s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 {
    width: 100%;
    height: auto;
  }

  #s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image {
    
    
  }


.s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image-container {
      position: relative;
    }

    .s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 {
    width: 100%;
    height: auto;
  }

  #s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image {
    
    
  }


.s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 .shogun-image-content {
  
    align-items: center;
  
}

.s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image-container {
      position: relative;
    }

    .s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9917b4b4-c4ab-4f4e-b3fc-fd1e3971e2a9 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 {
  margin-top: 27px;
margin-left: 7%;
margin-bottom: 27px;
margin-right: 7%;
padding-left: 0%;
padding-right: 0%;
max-width: 1210px;
aspect-ratio: 1210/117;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 .shg-image-content-wrapper {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }

    #s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 .shogun-image-link {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 {
    width: 100%;
    height: auto;
  }

  #s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image {
    
    
  }


.s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 .shogun-image-content {
  
    align-items: center;
  
}

.s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 {
      --shg-aspect-ratio: calc(1210/117); 
    }

    .s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image-container {
      position: relative;
    }

    .s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 .shg-image-content-wrapper {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }

    #s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 .shogun-image-link {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 {
    width: 100%;
    height: auto;
  }

  #s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image {
    
    
  }


.s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 .shogun-image-content {
  
    align-items: center;
  
}

.s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 {
      --shg-aspect-ratio: calc(1210/117); 
    }

    .s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image-container {
      position: relative;
    }

    .s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 .shg-image-content-wrapper {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }

    #s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 .shogun-image-link {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 {
    width: 100%;
    height: auto;
  }

  #s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image {
    
    
  }


.s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 .shogun-image-content {
  
    align-items: center;
  
}

.s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 {
      --shg-aspect-ratio: calc(1210/117); 
    }

    .s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image-container {
      position: relative;
    }

    .s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 .shg-image-content-wrapper {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }

    #s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 .shogun-image-link {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 {
    width: 100%;
    height: auto;
  }

  #s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image {
    
    
  }


.s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 .shogun-image-content {
  
    align-items: center;
  
}

.s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 {
      --shg-aspect-ratio: calc(1210/117); 
    }

    .s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image-container {
      position: relative;
    }

    .s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 .shg-image-content-wrapper {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }

    #s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 .shogun-image-link {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 {
    width: 100%;
    height: auto;
  }

  #s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image {
    
    
  }


.s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 .shogun-image-content {
  
    align-items: center;
  
}

.s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 {
      --shg-aspect-ratio: calc(1210/117); 
    }

    .s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image-container {
      position: relative;
    }

    .s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-fb2ff804-2089-4cd6-9d20-d6ca72d4f358 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-e91f3571-8f63-4113-8618-9f395265b08a {
  min-height: 20px;
}








#s-e91f3571-8f63-4113-8618-9f395265b08a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e91f3571-8f63-4113-8618-9f395265b08a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0bf87789-9ff7-45d0-85d4-1d05456f769b {
  box-shadow:0px 0px 0px 20px rgba(255, 255, 255, 1);
margin-top: 1px;
padding-top: 23px;
padding-left: 2%;
padding-bottom: 8px;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-0bf87789-9ff7-45d0-85d4-1d05456f769b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0bf87789-9ff7-45d0-85d4-1d05456f769b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-0bf87789-9ff7-45d0-85d4-1d05456f769b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-0bf87789-9ff7-45d0-85d4-1d05456f769b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

#s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 {
  max-width: 429px;
aspect-ratio: 429/490;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 .shg-image-content-wrapper {
      aspect-ratio: 429/490;
      min-width: 100%;
      height: auto;
    }

    #s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 .shogun-image-link {
      aspect-ratio: 429/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 {
    width: 100%;
    height: auto;
  }

  #s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image {
    
    
  }


.s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 .shogun-image-content {
  
    align-items: center;
  
}

.s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 {
      --shg-aspect-ratio: calc(429/490); 
    }

    .s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image-container {
      position: relative;
    }

    .s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 .shg-image-content-wrapper {
      aspect-ratio: 429/490;
      min-width: 100%;
      height: auto;
    }

    #s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 .shogun-image-link {
      aspect-ratio: 429/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 {
    width: 100%;
    height: auto;
  }

  #s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image {
    
    
  }


.s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 .shogun-image-content {
  
    align-items: center;
  
}

.s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 {
      --shg-aspect-ratio: calc(429/490); 
    }

    .s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image-container {
      position: relative;
    }

    .s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 .shg-image-content-wrapper {
      aspect-ratio: 429/490;
      min-width: 100%;
      height: auto;
    }

    #s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 .shogun-image-link {
      aspect-ratio: 429/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 {
    width: 100%;
    height: auto;
  }

  #s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image {
    
    
  }


.s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 .shogun-image-content {
  
    align-items: center;
  
}

.s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 {
      --shg-aspect-ratio: calc(429/490); 
    }

    .s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image-container {
      position: relative;
    }

    .s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 .shg-image-content-wrapper {
      aspect-ratio: 429/490;
      min-width: 100%;
      height: auto;
    }

    #s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 .shogun-image-link {
      aspect-ratio: 429/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 {
    width: 100%;
    height: auto;
  }

  #s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image {
    
    
  }


.s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 .shogun-image-content {
  
    align-items: center;
  
}

.s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 {
      --shg-aspect-ratio: calc(429/490); 
    }

    .s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image-container {
      position: relative;
    }

    .s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 .shg-image-content-wrapper {
      aspect-ratio: 429/490;
      min-width: 100%;
      height: auto;
    }

    #s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 .shogun-image-link {
      aspect-ratio: 429/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 {
    width: 100%;
    height: auto;
  }

  #s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image {
    
    
  }


.s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 .shogun-image-content {
  
    align-items: center;
  
}

.s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 {
      --shg-aspect-ratio: calc(429/490); 
    }

    .s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image-container {
      position: relative;
    }

    .s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-18c2849b-8b29-42a2-820a-81ad2dc22bc0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-18c2849b-8b29-42a2-820a-81ad2dc22bc0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-bc746f52-513f-41b0-8fa7-670809666ca4 {
  margin-top: 0px;
padding-top: 10px;
}

#s-a0916cc5-d7fc-4713-972d-89092bf96eac {
  margin-bottom: 30px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 8px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
letter-spacing: 0px;
}
#s-a0916cc5-d7fc-4713-972d-89092bf96eac:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a0916cc5-d7fc-4713-972d-89092bf96eac:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-a0916cc5-d7fc-4713-972d-89092bf96eac-root {
    text-align: center;
  }


#s-a0916cc5-d7fc-4713-972d-89092bf96eac.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-a0916cc5-d7fc-4713-972d-89092bf96eac-root {
    text-align: center;
  }


#s-a0916cc5-d7fc-4713-972d-89092bf96eac.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a0916cc5-d7fc-4713-972d-89092bf96eac-root {
    text-align: center;
  }


#s-a0916cc5-d7fc-4713-972d-89092bf96eac.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a0916cc5-d7fc-4713-972d-89092bf96eac-root {
    text-align: center;
  }


#s-a0916cc5-d7fc-4713-972d-89092bf96eac.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-a0916cc5-d7fc-4713-972d-89092bf96eac-root {
    text-align: center;
  }


#s-a0916cc5-d7fc-4713-972d-89092bf96eac.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}
}
#s-115a6062-6e5f-40d4-88ad-d50a653c8a2d {
  max-width: 430px;
aspect-ratio: 430/490;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-115a6062-6e5f-40d4-88ad-d50a653c8a2d .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-115a6062-6e5f-40d4-88ad-d50a653c8a2d .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-115a6062-6e5f-40d4-88ad-d50a653c8a2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-115a6062-6e5f-40d4-88ad-d50a653c8a2d {
    width: 100%;
    height: auto;
  }

  #s-115a6062-6e5f-40d4-88ad-d50a653c8a2d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image {
    
    
  }


.s-115a6062-6e5f-40d4-88ad-d50a653c8a2d .shogun-image-content {
  
    align-items: center;
  
}

.s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-115a6062-6e5f-40d4-88ad-d50a653c8a2d {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image-container {
      position: relative;
    }

    .s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-115a6062-6e5f-40d4-88ad-d50a653c8a2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-115a6062-6e5f-40d4-88ad-d50a653c8a2d .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-115a6062-6e5f-40d4-88ad-d50a653c8a2d .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-115a6062-6e5f-40d4-88ad-d50a653c8a2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-115a6062-6e5f-40d4-88ad-d50a653c8a2d {
    width: 100%;
    height: auto;
  }

  #s-115a6062-6e5f-40d4-88ad-d50a653c8a2d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image {
    
    
  }


.s-115a6062-6e5f-40d4-88ad-d50a653c8a2d .shogun-image-content {
  
    align-items: center;
  
}

.s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-115a6062-6e5f-40d4-88ad-d50a653c8a2d {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image-container {
      position: relative;
    }

    .s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-115a6062-6e5f-40d4-88ad-d50a653c8a2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-115a6062-6e5f-40d4-88ad-d50a653c8a2d .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-115a6062-6e5f-40d4-88ad-d50a653c8a2d .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-115a6062-6e5f-40d4-88ad-d50a653c8a2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-115a6062-6e5f-40d4-88ad-d50a653c8a2d {
    width: 100%;
    height: auto;
  }

  #s-115a6062-6e5f-40d4-88ad-d50a653c8a2d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image {
    
    
  }


.s-115a6062-6e5f-40d4-88ad-d50a653c8a2d .shogun-image-content {
  
    align-items: center;
  
}

.s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-115a6062-6e5f-40d4-88ad-d50a653c8a2d {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image-container {
      position: relative;
    }

    .s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-115a6062-6e5f-40d4-88ad-d50a653c8a2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-115a6062-6e5f-40d4-88ad-d50a653c8a2d .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-115a6062-6e5f-40d4-88ad-d50a653c8a2d .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-115a6062-6e5f-40d4-88ad-d50a653c8a2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-115a6062-6e5f-40d4-88ad-d50a653c8a2d {
    width: 100%;
    height: auto;
  }

  #s-115a6062-6e5f-40d4-88ad-d50a653c8a2d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image {
    
    
  }


.s-115a6062-6e5f-40d4-88ad-d50a653c8a2d .shogun-image-content {
  
    align-items: center;
  
}

.s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-115a6062-6e5f-40d4-88ad-d50a653c8a2d {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image-container {
      position: relative;
    }

    .s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-115a6062-6e5f-40d4-88ad-d50a653c8a2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-115a6062-6e5f-40d4-88ad-d50a653c8a2d .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-115a6062-6e5f-40d4-88ad-d50a653c8a2d .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-115a6062-6e5f-40d4-88ad-d50a653c8a2d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-115a6062-6e5f-40d4-88ad-d50a653c8a2d {
    width: 100%;
    height: auto;
  }

  #s-115a6062-6e5f-40d4-88ad-d50a653c8a2d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image {
    
    
  }


.s-115a6062-6e5f-40d4-88ad-d50a653c8a2d .shogun-image-content {
  
    align-items: center;
  
}

.s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-115a6062-6e5f-40d4-88ad-d50a653c8a2d {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image-container {
      position: relative;
    }

    .s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-115a6062-6e5f-40d4-88ad-d50a653c8a2d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-115a6062-6e5f-40d4-88ad-d50a653c8a2d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-b88d4d69-8887-4caf-85e3-c62ee6dda630 {
  margin-top: 0px;
padding-top: 10px;
}

#s-18522d34-5381-4b30-8806-94d18a629260 {
  max-width: 430px;
aspect-ratio: 430/490;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-18522d34-5381-4b30-8806-94d18a629260 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-18522d34-5381-4b30-8806-94d18a629260 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-18522d34-5381-4b30-8806-94d18a629260 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-18522d34-5381-4b30-8806-94d18a629260 {
    width: 100%;
    height: auto;
  }

  #s-18522d34-5381-4b30-8806-94d18a629260 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-18522d34-5381-4b30-8806-94d18a629260.shogun-image {
    
    
  }


.s-18522d34-5381-4b30-8806-94d18a629260 .shogun-image-content {
  
    align-items: center;
  
}

.s-18522d34-5381-4b30-8806-94d18a629260.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18522d34-5381-4b30-8806-94d18a629260.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18522d34-5381-4b30-8806-94d18a629260.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-18522d34-5381-4b30-8806-94d18a629260 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-18522d34-5381-4b30-8806-94d18a629260.shogun-image-container {
      position: relative;
    }

    .s-18522d34-5381-4b30-8806-94d18a629260.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-18522d34-5381-4b30-8806-94d18a629260.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-18522d34-5381-4b30-8806-94d18a629260 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-18522d34-5381-4b30-8806-94d18a629260 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-18522d34-5381-4b30-8806-94d18a629260 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-18522d34-5381-4b30-8806-94d18a629260 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-18522d34-5381-4b30-8806-94d18a629260 {
    width: 100%;
    height: auto;
  }

  #s-18522d34-5381-4b30-8806-94d18a629260 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-18522d34-5381-4b30-8806-94d18a629260.shogun-image {
    
    
  }


.s-18522d34-5381-4b30-8806-94d18a629260 .shogun-image-content {
  
    align-items: center;
  
}

.s-18522d34-5381-4b30-8806-94d18a629260.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18522d34-5381-4b30-8806-94d18a629260.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18522d34-5381-4b30-8806-94d18a629260.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-18522d34-5381-4b30-8806-94d18a629260 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-18522d34-5381-4b30-8806-94d18a629260.shogun-image-container {
      position: relative;
    }

    .s-18522d34-5381-4b30-8806-94d18a629260.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-18522d34-5381-4b30-8806-94d18a629260.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-18522d34-5381-4b30-8806-94d18a629260 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-18522d34-5381-4b30-8806-94d18a629260 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-18522d34-5381-4b30-8806-94d18a629260 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-18522d34-5381-4b30-8806-94d18a629260 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-18522d34-5381-4b30-8806-94d18a629260 {
    width: 100%;
    height: auto;
  }

  #s-18522d34-5381-4b30-8806-94d18a629260 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-18522d34-5381-4b30-8806-94d18a629260.shogun-image {
    
    
  }


.s-18522d34-5381-4b30-8806-94d18a629260 .shogun-image-content {
  
    align-items: center;
  
}

.s-18522d34-5381-4b30-8806-94d18a629260.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18522d34-5381-4b30-8806-94d18a629260.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18522d34-5381-4b30-8806-94d18a629260.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-18522d34-5381-4b30-8806-94d18a629260 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-18522d34-5381-4b30-8806-94d18a629260.shogun-image-container {
      position: relative;
    }

    .s-18522d34-5381-4b30-8806-94d18a629260.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-18522d34-5381-4b30-8806-94d18a629260.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-18522d34-5381-4b30-8806-94d18a629260 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-18522d34-5381-4b30-8806-94d18a629260 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-18522d34-5381-4b30-8806-94d18a629260 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-18522d34-5381-4b30-8806-94d18a629260 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-18522d34-5381-4b30-8806-94d18a629260 {
    width: 100%;
    height: auto;
  }

  #s-18522d34-5381-4b30-8806-94d18a629260 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-18522d34-5381-4b30-8806-94d18a629260.shogun-image {
    
    
  }


.s-18522d34-5381-4b30-8806-94d18a629260 .shogun-image-content {
  
    align-items: center;
  
}

.s-18522d34-5381-4b30-8806-94d18a629260.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18522d34-5381-4b30-8806-94d18a629260.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18522d34-5381-4b30-8806-94d18a629260.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-18522d34-5381-4b30-8806-94d18a629260 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-18522d34-5381-4b30-8806-94d18a629260.shogun-image-container {
      position: relative;
    }

    .s-18522d34-5381-4b30-8806-94d18a629260.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-18522d34-5381-4b30-8806-94d18a629260.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-18522d34-5381-4b30-8806-94d18a629260 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-18522d34-5381-4b30-8806-94d18a629260 .shg-image-content-wrapper {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }

    #s-18522d34-5381-4b30-8806-94d18a629260 .shogun-image-link {
      aspect-ratio: 430/490;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-18522d34-5381-4b30-8806-94d18a629260 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-18522d34-5381-4b30-8806-94d18a629260 {
    width: 100%;
    height: auto;
  }

  #s-18522d34-5381-4b30-8806-94d18a629260 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-18522d34-5381-4b30-8806-94d18a629260.shogun-image {
    
    
  }


.s-18522d34-5381-4b30-8806-94d18a629260 .shogun-image-content {
  
    align-items: center;
  
}

.s-18522d34-5381-4b30-8806-94d18a629260.shg-align-container {
  display: flex;
  justify-content: center
}

.s-18522d34-5381-4b30-8806-94d18a629260.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-18522d34-5381-4b30-8806-94d18a629260.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-18522d34-5381-4b30-8806-94d18a629260 {
      --shg-aspect-ratio: calc(430/490); 
    }

    .s-18522d34-5381-4b30-8806-94d18a629260.shogun-image-container {
      position: relative;
    }

    .s-18522d34-5381-4b30-8806-94d18a629260.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-18522d34-5381-4b30-8806-94d18a629260.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-18522d34-5381-4b30-8806-94d18a629260 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-d573e10a-e992-43ea-8af3-573526124044 {
  margin-top: 0px;
padding-top: 10px;
}

#s-cbe01058-82e9-4b9e-aa09-0d1b4ff19f52 {
  margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 8px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
letter-spacing: 0px;
}
#s-cbe01058-82e9-4b9e-aa09-0d1b4ff19f52:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-cbe01058-82e9-4b9e-aa09-0d1b4ff19f52:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-cbe01058-82e9-4b9e-aa09-0d1b4ff19f52-root {
    text-align: center;
  }


#s-cbe01058-82e9-4b9e-aa09-0d1b4ff19f52.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-cbe01058-82e9-4b9e-aa09-0d1b4ff19f52-root {
    text-align: center;
  }


#s-cbe01058-82e9-4b9e-aa09-0d1b4ff19f52.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-cbe01058-82e9-4b9e-aa09-0d1b4ff19f52-root {
    text-align: center;
  }


#s-cbe01058-82e9-4b9e-aa09-0d1b4ff19f52.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-cbe01058-82e9-4b9e-aa09-0d1b4ff19f52-root {
    text-align: center;
  }


#s-cbe01058-82e9-4b9e-aa09-0d1b4ff19f52.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-cbe01058-82e9-4b9e-aa09-0d1b4ff19f52-root {
    text-align: center;
  }


#s-cbe01058-82e9-4b9e-aa09-0d1b4ff19f52.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}
}
#s-b86cd81a-f4d9-4197-ab63-086fb0dada4f {
  min-height: 30px;
}








#s-b86cd81a-f4d9-4197-ab63-086fb0dada4f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b86cd81a-f4d9-4197-ab63-086fb0dada4f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-feea4b3f-6a14-4419-b4a3-c320df2408b3 {
  box-shadow:0px 0px 0px 20px rgba(255, 255, 255, 1);
margin-top: 1px;
padding-top: 23px;
padding-left: 2%;
padding-bottom: 8px;
padding-right: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-feea4b3f-6a14-4419-b4a3-c320df2408b3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-feea4b3f-6a14-4419-b4a3-c320df2408b3"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-feea4b3f-6a14-4419-b4a3-c320df2408b3"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-feea4b3f-6a14-4419-b4a3-c320df2408b3"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

.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-963fb67f-fb42-4d77-b8ab-0eaf95242683 {
  text-align: left;
}



.shg-c#s-963fb67f-fb42-4d77-b8ab-0eaf95242683 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-963fb67f-fb42-4d77-b8ab-0eaf95242683 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-963fb67f-fb42-4d77-b8ab-0eaf95242683 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-963fb67f-fb42-4d77-b8ab-0eaf95242683 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-963fb67f-fb42-4d77-b8ab-0eaf95242683 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-963fb67f-fb42-4d77-b8ab-0eaf95242683 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-963fb67f-fb42-4d77-b8ab-0eaf95242683 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-963fb67f-fb42-4d77-b8ab-0eaf95242683 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-963fb67f-fb42-4d77-b8ab-0eaf95242683 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-963fb67f-fb42-4d77-b8ab-0eaf95242683 img.shogun-image {
  width: 100%;
}



}
#s-aba65caf-8ca8-419a-bf3e-e2cf13a4a5f7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-aba65caf-8ca8-419a-bf3e-e2cf13a4a5f7 .shg-product-title-component h4 {
  color: ;
  font-weight:  700 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-41947a25-bc36-4d06-b07e-8c73e7765aa0 {
  margin-bottom: 30px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 6px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-41947a25-bc36-4d06-b07e-8c73e7765aa0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-41947a25-bc36-4d06-b07e-8c73e7765aa0:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-41947a25-bc36-4d06-b07e-8c73e7765aa0 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-41947a25-bc36-4d06-b07e-8c73e7765aa0.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-41947a25-bc36-4d06-b07e-8c73e7765aa0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-41947a25-bc36-4d06-b07e-8c73e7765aa0.shg-btn.shg-product-atc-error {
  
  
  
  
  color: rgba(255, 255, 255, 1);
}


  #s-41947a25-bc36-4d06-b07e-8c73e7765aa0.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-33502bb9-8cc4-4d85-b856-47046ce5dac5 {
  margin-left: auto;
margin-right: auto;
max-width: 450px;
aspect-ratio: 1/1;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-33502bb9-8cc4-4d85-b856-47046ce5dac5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-33502bb9-8cc4-4d85-b856-47046ce5dac5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-33502bb9-8cc4-4d85-b856-47046ce5dac5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-33502bb9-8cc4-4d85-b856-47046ce5dac5 {
    width: 100%;
    height: auto;
  }

  #s-33502bb9-8cc4-4d85-b856-47046ce5dac5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image {
    
    
  }


.s-33502bb9-8cc4-4d85-b856-47046ce5dac5 .shogun-image-content {
  
    align-items: center;
  
}

.s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-33502bb9-8cc4-4d85-b856-47046ce5dac5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image-container {
      position: relative;
    }

    .s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-33502bb9-8cc4-4d85-b856-47046ce5dac5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-33502bb9-8cc4-4d85-b856-47046ce5dac5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-33502bb9-8cc4-4d85-b856-47046ce5dac5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-33502bb9-8cc4-4d85-b856-47046ce5dac5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-33502bb9-8cc4-4d85-b856-47046ce5dac5 {
    width: 100%;
    height: auto;
  }

  #s-33502bb9-8cc4-4d85-b856-47046ce5dac5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image {
    
    
  }


.s-33502bb9-8cc4-4d85-b856-47046ce5dac5 .shogun-image-content {
  
    align-items: center;
  
}

.s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-33502bb9-8cc4-4d85-b856-47046ce5dac5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image-container {
      position: relative;
    }

    .s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-33502bb9-8cc4-4d85-b856-47046ce5dac5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-33502bb9-8cc4-4d85-b856-47046ce5dac5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-33502bb9-8cc4-4d85-b856-47046ce5dac5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-33502bb9-8cc4-4d85-b856-47046ce5dac5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-33502bb9-8cc4-4d85-b856-47046ce5dac5 {
    width: 100%;
    height: auto;
  }

  #s-33502bb9-8cc4-4d85-b856-47046ce5dac5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image {
    
    
  }


.s-33502bb9-8cc4-4d85-b856-47046ce5dac5 .shogun-image-content {
  
    align-items: center;
  
}

.s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-33502bb9-8cc4-4d85-b856-47046ce5dac5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image-container {
      position: relative;
    }

    .s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-33502bb9-8cc4-4d85-b856-47046ce5dac5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-33502bb9-8cc4-4d85-b856-47046ce5dac5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-33502bb9-8cc4-4d85-b856-47046ce5dac5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-33502bb9-8cc4-4d85-b856-47046ce5dac5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-33502bb9-8cc4-4d85-b856-47046ce5dac5 {
    width: 100%;
    height: auto;
  }

  #s-33502bb9-8cc4-4d85-b856-47046ce5dac5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image {
    
    
  }


.s-33502bb9-8cc4-4d85-b856-47046ce5dac5 .shogun-image-content {
  
    align-items: center;
  
}

.s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-33502bb9-8cc4-4d85-b856-47046ce5dac5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image-container {
      position: relative;
    }

    .s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-33502bb9-8cc4-4d85-b856-47046ce5dac5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-33502bb9-8cc4-4d85-b856-47046ce5dac5 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-33502bb9-8cc4-4d85-b856-47046ce5dac5 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-33502bb9-8cc4-4d85-b856-47046ce5dac5 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-33502bb9-8cc4-4d85-b856-47046ce5dac5 {
    width: 100%;
    height: auto;
  }

  #s-33502bb9-8cc4-4d85-b856-47046ce5dac5 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image {
    
    
  }


.s-33502bb9-8cc4-4d85-b856-47046ce5dac5 .shogun-image-content {
  
    align-items: center;
  
}

.s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-33502bb9-8cc4-4d85-b856-47046ce5dac5 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image-container {
      position: relative;
    }

    .s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-33502bb9-8cc4-4d85-b856-47046ce5dac5.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-33502bb9-8cc4-4d85-b856-47046ce5dac5 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-408490f3-b4b4-47f2-a769-40d1f7b70675 {
  margin-top: 0px;
padding-top: 10px;
}

#s-30ff63ab-7d44-4947-bed6-1e184fd40a10 {
  margin-bottom: 30px;
}

#s-459b8cf6-2d2e-4c74-ad2c-77a4b1a8dd04 {
  text-align: left;
}



.shg-c#s-459b8cf6-2d2e-4c74-ad2c-77a4b1a8dd04 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-459b8cf6-2d2e-4c74-ad2c-77a4b1a8dd04 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-459b8cf6-2d2e-4c74-ad2c-77a4b1a8dd04 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-459b8cf6-2d2e-4c74-ad2c-77a4b1a8dd04 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-459b8cf6-2d2e-4c74-ad2c-77a4b1a8dd04 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-459b8cf6-2d2e-4c74-ad2c-77a4b1a8dd04 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-459b8cf6-2d2e-4c74-ad2c-77a4b1a8dd04 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-459b8cf6-2d2e-4c74-ad2c-77a4b1a8dd04 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-459b8cf6-2d2e-4c74-ad2c-77a4b1a8dd04 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-459b8cf6-2d2e-4c74-ad2c-77a4b1a8dd04 img.shogun-image {
  width: 100%;
}



}
#s-8fa2d52e-a928-498e-8127-efa163920174 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8fa2d52e-a928-498e-8127-efa163920174 .shg-product-title-component h4 {
  color: ;
  font-weight:  700 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-3a9fa8cf-16a1-4509-a0c6-293030829bbf {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 6px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-3a9fa8cf-16a1-4509-a0c6-293030829bbf:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-3a9fa8cf-16a1-4509-a0c6-293030829bbf:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-3a9fa8cf-16a1-4509-a0c6-293030829bbf {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-3a9fa8cf-16a1-4509-a0c6-293030829bbf.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3a9fa8cf-16a1-4509-a0c6-293030829bbf.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-3a9fa8cf-16a1-4509-a0c6-293030829bbf.shg-btn.shg-product-atc-error {
  
  
  
  
  color: rgba(255, 255, 255, 1);
}


  #s-3a9fa8cf-16a1-4509-a0c6-293030829bbf.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-8a0f427b-0453-477c-a370-0723a93a3f91 {
  min-height: 60px;
}








#s-8a0f427b-0453-477c-a370-0723a93a3f91 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8a0f427b-0453-477c-a370-0723a93a3f91.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b {
  max-width: 1985px;
aspect-ratio: 1985/37;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b {
    width: 100%;
    height: auto;
  }

  #s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image {
    
    
  }


.s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b .shogun-image-content {
  
    align-items: center;
  
}

.s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image-container {
      position: relative;
    }

    .s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b {
    width: 100%;
    height: auto;
  }

  #s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image {
    
    
  }


.s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b .shogun-image-content {
  
    align-items: center;
  
}

.s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image-container {
      position: relative;
    }

    .s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b {
    width: 100%;
    height: auto;
  }

  #s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image {
    
    
  }


.s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b .shogun-image-content {
  
    align-items: center;
  
}

.s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image-container {
      position: relative;
    }

    .s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b {
    width: 100%;
    height: auto;
  }

  #s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image {
    
    
  }


.s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b .shogun-image-content {
  
    align-items: center;
  
}

.s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image-container {
      position: relative;
    }

    .s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b {
    width: 100%;
    height: auto;
  }

  #s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image {
    
    
  }


.s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b .shogun-image-content {
  
    align-items: center;
  
}

.s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image-container {
      position: relative;
    }

    .s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ce15457f-bb0f-46a4-94a5-a6cd03e3f15b img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-497b0dbd-362a-42a5-a512-e2517df9cb63 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 16px;
text-align: center;
}

#s-497b0dbd-362a-42a5-a512-e2517df9cb63 .shogun-heading-component h1 {
  color: rgba(0, 128, 128, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 35px;
  
  
  
}



#s-94ab3e64-e61a-4b05-a75f-6d9126c6d44e {
  box-shadow:1px 2px 2px 1px rgba(186, 185, 185, 1);
margin-top: 1px;
padding-top: 23px;
padding-left: 4%;
padding-bottom: 8px;
padding-right: 2%;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(186, 164, 3, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-94ab3e64-e61a-4b05-a75f-6d9126c6d44e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-94ab3e64-e61a-4b05-a75f-6d9126c6d44e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-94ab3e64-e61a-4b05-a75f-6d9126c6d44e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-94ab3e64-e61a-4b05-a75f-6d9126c6d44e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

#s-bbccac82-ea27-48fb-8901-76306c920d80 {
  max-width: 450px;
aspect-ratio: 1/1;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-bbccac82-ea27-48fb-8901-76306c920d80 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bbccac82-ea27-48fb-8901-76306c920d80 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bbccac82-ea27-48fb-8901-76306c920d80 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-bbccac82-ea27-48fb-8901-76306c920d80 {
    width: 100%;
    height: auto;
  }

  #s-bbccac82-ea27-48fb-8901-76306c920d80 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image {
    
    
  }


.s-bbccac82-ea27-48fb-8901-76306c920d80 .shogun-image-content {
  
    align-items: center;
  
}

.s-bbccac82-ea27-48fb-8901-76306c920d80.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bbccac82-ea27-48fb-8901-76306c920d80 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image-container {
      position: relative;
    }

    .s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bbccac82-ea27-48fb-8901-76306c920d80 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-bbccac82-ea27-48fb-8901-76306c920d80 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bbccac82-ea27-48fb-8901-76306c920d80 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bbccac82-ea27-48fb-8901-76306c920d80 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-bbccac82-ea27-48fb-8901-76306c920d80 {
    width: 100%;
    height: auto;
  }

  #s-bbccac82-ea27-48fb-8901-76306c920d80 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image {
    
    
  }


.s-bbccac82-ea27-48fb-8901-76306c920d80 .shogun-image-content {
  
    align-items: center;
  
}

.s-bbccac82-ea27-48fb-8901-76306c920d80.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bbccac82-ea27-48fb-8901-76306c920d80 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image-container {
      position: relative;
    }

    .s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bbccac82-ea27-48fb-8901-76306c920d80 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-bbccac82-ea27-48fb-8901-76306c920d80 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bbccac82-ea27-48fb-8901-76306c920d80 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bbccac82-ea27-48fb-8901-76306c920d80 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-bbccac82-ea27-48fb-8901-76306c920d80 {
    width: 100%;
    height: auto;
  }

  #s-bbccac82-ea27-48fb-8901-76306c920d80 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image {
    
    
  }


.s-bbccac82-ea27-48fb-8901-76306c920d80 .shogun-image-content {
  
    align-items: center;
  
}

.s-bbccac82-ea27-48fb-8901-76306c920d80.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bbccac82-ea27-48fb-8901-76306c920d80 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image-container {
      position: relative;
    }

    .s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bbccac82-ea27-48fb-8901-76306c920d80 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-bbccac82-ea27-48fb-8901-76306c920d80 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bbccac82-ea27-48fb-8901-76306c920d80 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bbccac82-ea27-48fb-8901-76306c920d80 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-bbccac82-ea27-48fb-8901-76306c920d80 {
    width: 100%;
    height: auto;
  }

  #s-bbccac82-ea27-48fb-8901-76306c920d80 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image {
    
    
  }


.s-bbccac82-ea27-48fb-8901-76306c920d80 .shogun-image-content {
  
    align-items: center;
  
}

.s-bbccac82-ea27-48fb-8901-76306c920d80.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bbccac82-ea27-48fb-8901-76306c920d80 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image-container {
      position: relative;
    }

    .s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bbccac82-ea27-48fb-8901-76306c920d80 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-bbccac82-ea27-48fb-8901-76306c920d80 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-bbccac82-ea27-48fb-8901-76306c920d80 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-bbccac82-ea27-48fb-8901-76306c920d80 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-bbccac82-ea27-48fb-8901-76306c920d80 {
    width: 100%;
    height: auto;
  }

  #s-bbccac82-ea27-48fb-8901-76306c920d80 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image {
    
    
  }


.s-bbccac82-ea27-48fb-8901-76306c920d80 .shogun-image-content {
  
    align-items: center;
  
}

.s-bbccac82-ea27-48fb-8901-76306c920d80.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bbccac82-ea27-48fb-8901-76306c920d80 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image-container {
      position: relative;
    }

    .s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bbccac82-ea27-48fb-8901-76306c920d80.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bbccac82-ea27-48fb-8901-76306c920d80 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-b0f0b707-dcbf-450b-bb1b-5e6899beae4f {
  margin-top: 0px;
padding-top: 10px;
}

#s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c {
  max-width: 4463px;
aspect-ratio: 4463/5184;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c .shg-image-content-wrapper {
      aspect-ratio: 4463/5184;
      min-width: 100%;
      height: auto;
    }

    #s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c .shogun-image-link {
      aspect-ratio: 4463/5184;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c {
    width: 100%;
    height: auto;
  }

  #s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image {
    
    
  }


.s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c .shogun-image-content {
  
    align-items: center;
  
}

.s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c {
      --shg-aspect-ratio: calc(4463/5184); 
    }

    .s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image-container {
      position: relative;
    }

    .s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c .shg-image-content-wrapper {
      aspect-ratio: 4463/5184;
      min-width: 100%;
      height: auto;
    }

    #s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c .shogun-image-link {
      aspect-ratio: 4463/5184;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c {
    width: 100%;
    height: auto;
  }

  #s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image {
    
    
  }


.s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c .shogun-image-content {
  
    align-items: center;
  
}

.s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c {
      --shg-aspect-ratio: calc(4463/5184); 
    }

    .s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image-container {
      position: relative;
    }

    .s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c .shg-image-content-wrapper {
      aspect-ratio: 4463/5184;
      min-width: 100%;
      height: auto;
    }

    #s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c .shogun-image-link {
      aspect-ratio: 4463/5184;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c {
    width: 100%;
    height: auto;
  }

  #s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image {
    
    
  }


.s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c .shogun-image-content {
  
    align-items: center;
  
}

.s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c {
      --shg-aspect-ratio: calc(4463/5184); 
    }

    .s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image-container {
      position: relative;
    }

    .s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c .shg-image-content-wrapper {
      aspect-ratio: 4463/5184;
      min-width: 100%;
      height: auto;
    }

    #s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c .shogun-image-link {
      aspect-ratio: 4463/5184;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c {
    width: 100%;
    height: auto;
  }

  #s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image {
    
    
  }


.s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c .shogun-image-content {
  
    align-items: center;
  
}

.s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c {
      --shg-aspect-ratio: calc(4463/5184); 
    }

    .s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image-container {
      position: relative;
    }

    .s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c .shg-image-content-wrapper {
      aspect-ratio: 4463/5184;
      min-width: 100%;
      height: auto;
    }

    #s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c .shogun-image-link {
      aspect-ratio: 4463/5184;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c {
    width: 100%;
    height: auto;
  }

  #s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image {
    
    
  }


.s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c .shogun-image-content {
  
    align-items: center;
  
}

.s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c {
      --shg-aspect-ratio: calc(4463/5184); 
    }

    .s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image-container {
      position: relative;
    }

    .s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-96e96ba2-9948-4a9d-a0a8-adf0dea4724c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-76c54083-74f2-46a6-ac05-02bb0a28b887 {
  margin-bottom: 0px;
margin-right: 2%;
padding-top: 0px;
padding-bottom: 11px;
max-width: 450px;
aspect-ratio: 1/1;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-76c54083-74f2-46a6-ac05-02bb0a28b887 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-76c54083-74f2-46a6-ac05-02bb0a28b887 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-76c54083-74f2-46a6-ac05-02bb0a28b887 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-76c54083-74f2-46a6-ac05-02bb0a28b887 {
    width: 100%;
    height: auto;
  }

  #s-76c54083-74f2-46a6-ac05-02bb0a28b887 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image {
    
    
  }


.s-76c54083-74f2-46a6-ac05-02bb0a28b887 .shogun-image-content {
  
    align-items: center;
  
}

.s-76c54083-74f2-46a6-ac05-02bb0a28b887.shg-align-container {
  display: flex;
  justify-content: center
}

.s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-76c54083-74f2-46a6-ac05-02bb0a28b887 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image-container {
      position: relative;
    }

    .s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-76c54083-74f2-46a6-ac05-02bb0a28b887 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-76c54083-74f2-46a6-ac05-02bb0a28b887 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-76c54083-74f2-46a6-ac05-02bb0a28b887 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-76c54083-74f2-46a6-ac05-02bb0a28b887 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-76c54083-74f2-46a6-ac05-02bb0a28b887 {
    width: 100%;
    height: auto;
  }

  #s-76c54083-74f2-46a6-ac05-02bb0a28b887 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image {
    
    
  }


.s-76c54083-74f2-46a6-ac05-02bb0a28b887 .shogun-image-content {
  
    align-items: center;
  
}

.s-76c54083-74f2-46a6-ac05-02bb0a28b887.shg-align-container {
  display: flex;
  justify-content: center
}

.s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-76c54083-74f2-46a6-ac05-02bb0a28b887 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image-container {
      position: relative;
    }

    .s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-76c54083-74f2-46a6-ac05-02bb0a28b887 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-76c54083-74f2-46a6-ac05-02bb0a28b887 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-76c54083-74f2-46a6-ac05-02bb0a28b887 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-76c54083-74f2-46a6-ac05-02bb0a28b887 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-76c54083-74f2-46a6-ac05-02bb0a28b887 {
    width: 100%;
    height: auto;
  }

  #s-76c54083-74f2-46a6-ac05-02bb0a28b887 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image {
    
    
  }


.s-76c54083-74f2-46a6-ac05-02bb0a28b887 .shogun-image-content {
  
    align-items: center;
  
}

.s-76c54083-74f2-46a6-ac05-02bb0a28b887.shg-align-container {
  display: flex;
  justify-content: center
}

.s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-76c54083-74f2-46a6-ac05-02bb0a28b887 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image-container {
      position: relative;
    }

    .s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-76c54083-74f2-46a6-ac05-02bb0a28b887 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-76c54083-74f2-46a6-ac05-02bb0a28b887 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-76c54083-74f2-46a6-ac05-02bb0a28b887 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-76c54083-74f2-46a6-ac05-02bb0a28b887 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-76c54083-74f2-46a6-ac05-02bb0a28b887 {
    width: 100%;
    height: auto;
  }

  #s-76c54083-74f2-46a6-ac05-02bb0a28b887 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image {
    
    
  }


.s-76c54083-74f2-46a6-ac05-02bb0a28b887 .shogun-image-content {
  
    align-items: center;
  
}

.s-76c54083-74f2-46a6-ac05-02bb0a28b887.shg-align-container {
  display: flex;
  justify-content: center
}

.s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-76c54083-74f2-46a6-ac05-02bb0a28b887 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image-container {
      position: relative;
    }

    .s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-76c54083-74f2-46a6-ac05-02bb0a28b887 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-76c54083-74f2-46a6-ac05-02bb0a28b887 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-76c54083-74f2-46a6-ac05-02bb0a28b887 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-76c54083-74f2-46a6-ac05-02bb0a28b887 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-76c54083-74f2-46a6-ac05-02bb0a28b887 {
    width: 100%;
    height: auto;
  }

  #s-76c54083-74f2-46a6-ac05-02bb0a28b887 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image {
    
    
  }


.s-76c54083-74f2-46a6-ac05-02bb0a28b887 .shogun-image-content {
  
    align-items: center;
  
}

.s-76c54083-74f2-46a6-ac05-02bb0a28b887.shg-align-container {
  display: flex;
  justify-content: center
}

.s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-76c54083-74f2-46a6-ac05-02bb0a28b887 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image-container {
      position: relative;
    }

    .s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-76c54083-74f2-46a6-ac05-02bb0a28b887.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-76c54083-74f2-46a6-ac05-02bb0a28b887 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-b9a5b494-720b-422f-92cb-f0fa4d013f1f {
  margin-top: 0px;
padding-top: 10px;
}

#s-252f78b8-5890-4d7d-b60e-5bdcb6b30caa {
  min-height: 90px;
}








#s-252f78b8-5890-4d7d-b60e-5bdcb6b30caa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-252f78b8-5890-4d7d-b60e-5bdcb6b30caa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-04885cfc-987f-4e6f-be39-2aed78fa7cdc {
  max-width: 1985px;
aspect-ratio: 1985/37;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-04885cfc-987f-4e6f-be39-2aed78fa7cdc .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-04885cfc-987f-4e6f-be39-2aed78fa7cdc .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-04885cfc-987f-4e6f-be39-2aed78fa7cdc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-04885cfc-987f-4e6f-be39-2aed78fa7cdc {
    width: 100%;
    height: auto;
  }

  #s-04885cfc-987f-4e6f-be39-2aed78fa7cdc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image {
    
    
  }


.s-04885cfc-987f-4e6f-be39-2aed78fa7cdc .shogun-image-content {
  
    align-items: center;
  
}

.s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-04885cfc-987f-4e6f-be39-2aed78fa7cdc {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image-container {
      position: relative;
    }

    .s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-04885cfc-987f-4e6f-be39-2aed78fa7cdc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-04885cfc-987f-4e6f-be39-2aed78fa7cdc .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-04885cfc-987f-4e6f-be39-2aed78fa7cdc .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-04885cfc-987f-4e6f-be39-2aed78fa7cdc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-04885cfc-987f-4e6f-be39-2aed78fa7cdc {
    width: 100%;
    height: auto;
  }

  #s-04885cfc-987f-4e6f-be39-2aed78fa7cdc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image {
    
    
  }


.s-04885cfc-987f-4e6f-be39-2aed78fa7cdc .shogun-image-content {
  
    align-items: center;
  
}

.s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-04885cfc-987f-4e6f-be39-2aed78fa7cdc {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image-container {
      position: relative;
    }

    .s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-04885cfc-987f-4e6f-be39-2aed78fa7cdc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-04885cfc-987f-4e6f-be39-2aed78fa7cdc .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-04885cfc-987f-4e6f-be39-2aed78fa7cdc .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-04885cfc-987f-4e6f-be39-2aed78fa7cdc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-04885cfc-987f-4e6f-be39-2aed78fa7cdc {
    width: 100%;
    height: auto;
  }

  #s-04885cfc-987f-4e6f-be39-2aed78fa7cdc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image {
    
    
  }


.s-04885cfc-987f-4e6f-be39-2aed78fa7cdc .shogun-image-content {
  
    align-items: center;
  
}

.s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-04885cfc-987f-4e6f-be39-2aed78fa7cdc {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image-container {
      position: relative;
    }

    .s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-04885cfc-987f-4e6f-be39-2aed78fa7cdc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-04885cfc-987f-4e6f-be39-2aed78fa7cdc .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-04885cfc-987f-4e6f-be39-2aed78fa7cdc .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-04885cfc-987f-4e6f-be39-2aed78fa7cdc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-04885cfc-987f-4e6f-be39-2aed78fa7cdc {
    width: 100%;
    height: auto;
  }

  #s-04885cfc-987f-4e6f-be39-2aed78fa7cdc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image {
    
    
  }


.s-04885cfc-987f-4e6f-be39-2aed78fa7cdc .shogun-image-content {
  
    align-items: center;
  
}

.s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-04885cfc-987f-4e6f-be39-2aed78fa7cdc {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image-container {
      position: relative;
    }

    .s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-04885cfc-987f-4e6f-be39-2aed78fa7cdc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-04885cfc-987f-4e6f-be39-2aed78fa7cdc .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-04885cfc-987f-4e6f-be39-2aed78fa7cdc .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-04885cfc-987f-4e6f-be39-2aed78fa7cdc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-04885cfc-987f-4e6f-be39-2aed78fa7cdc {
    width: 100%;
    height: auto;
  }

  #s-04885cfc-987f-4e6f-be39-2aed78fa7cdc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image {
    
    
  }


.s-04885cfc-987f-4e6f-be39-2aed78fa7cdc .shogun-image-content {
  
    align-items: center;
  
}

.s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-04885cfc-987f-4e6f-be39-2aed78fa7cdc {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image-container {
      position: relative;
    }

    .s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-04885cfc-987f-4e6f-be39-2aed78fa7cdc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-04885cfc-987f-4e6f-be39-2aed78fa7cdc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-b02b2ee3-e58c-460b-bd11-dea5e5638805 {
  margin-top: 20px;
margin-left: 6%;
margin-right: 6%;
max-width: 1210px;
aspect-ratio: 1210/117;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-b02b2ee3-e58c-460b-bd11-dea5e5638805 .shg-image-content-wrapper {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }

    #s-b02b2ee3-e58c-460b-bd11-dea5e5638805 .shogun-image-link {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b02b2ee3-e58c-460b-bd11-dea5e5638805 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b02b2ee3-e58c-460b-bd11-dea5e5638805 {
    width: 100%;
    height: auto;
  }

  #s-b02b2ee3-e58c-460b-bd11-dea5e5638805 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image {
    
    
  }


.s-b02b2ee3-e58c-460b-bd11-dea5e5638805 .shogun-image-content {
  
    align-items: center;
  
}

.s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b02b2ee3-e58c-460b-bd11-dea5e5638805 {
      --shg-aspect-ratio: calc(1210/117); 
    }

    .s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image-container {
      position: relative;
    }

    .s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b02b2ee3-e58c-460b-bd11-dea5e5638805 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-b02b2ee3-e58c-460b-bd11-dea5e5638805 .shg-image-content-wrapper {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }

    #s-b02b2ee3-e58c-460b-bd11-dea5e5638805 .shogun-image-link {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b02b2ee3-e58c-460b-bd11-dea5e5638805 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b02b2ee3-e58c-460b-bd11-dea5e5638805 {
    width: 100%;
    height: auto;
  }

  #s-b02b2ee3-e58c-460b-bd11-dea5e5638805 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image {
    
    
  }


.s-b02b2ee3-e58c-460b-bd11-dea5e5638805 .shogun-image-content {
  
    align-items: center;
  
}

.s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b02b2ee3-e58c-460b-bd11-dea5e5638805 {
      --shg-aspect-ratio: calc(1210/117); 
    }

    .s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image-container {
      position: relative;
    }

    .s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b02b2ee3-e58c-460b-bd11-dea5e5638805 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-b02b2ee3-e58c-460b-bd11-dea5e5638805 .shg-image-content-wrapper {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }

    #s-b02b2ee3-e58c-460b-bd11-dea5e5638805 .shogun-image-link {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b02b2ee3-e58c-460b-bd11-dea5e5638805 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b02b2ee3-e58c-460b-bd11-dea5e5638805 {
    width: 100%;
    height: auto;
  }

  #s-b02b2ee3-e58c-460b-bd11-dea5e5638805 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image {
    
    
  }


.s-b02b2ee3-e58c-460b-bd11-dea5e5638805 .shogun-image-content {
  
    align-items: center;
  
}

.s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b02b2ee3-e58c-460b-bd11-dea5e5638805 {
      --shg-aspect-ratio: calc(1210/117); 
    }

    .s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image-container {
      position: relative;
    }

    .s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b02b2ee3-e58c-460b-bd11-dea5e5638805 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-b02b2ee3-e58c-460b-bd11-dea5e5638805 .shg-image-content-wrapper {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }

    #s-b02b2ee3-e58c-460b-bd11-dea5e5638805 .shogun-image-link {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b02b2ee3-e58c-460b-bd11-dea5e5638805 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b02b2ee3-e58c-460b-bd11-dea5e5638805 {
    width: 100%;
    height: auto;
  }

  #s-b02b2ee3-e58c-460b-bd11-dea5e5638805 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image {
    
    
  }


.s-b02b2ee3-e58c-460b-bd11-dea5e5638805 .shogun-image-content {
  
    align-items: center;
  
}

.s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b02b2ee3-e58c-460b-bd11-dea5e5638805 {
      --shg-aspect-ratio: calc(1210/117); 
    }

    .s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image-container {
      position: relative;
    }

    .s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b02b2ee3-e58c-460b-bd11-dea5e5638805 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-b02b2ee3-e58c-460b-bd11-dea5e5638805 .shg-image-content-wrapper {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }

    #s-b02b2ee3-e58c-460b-bd11-dea5e5638805 .shogun-image-link {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b02b2ee3-e58c-460b-bd11-dea5e5638805 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b02b2ee3-e58c-460b-bd11-dea5e5638805 {
    width: 100%;
    height: auto;
  }

  #s-b02b2ee3-e58c-460b-bd11-dea5e5638805 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image {
    
    
  }


.s-b02b2ee3-e58c-460b-bd11-dea5e5638805 .shogun-image-content {
  
    align-items: center;
  
}

.s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b02b2ee3-e58c-460b-bd11-dea5e5638805 {
      --shg-aspect-ratio: calc(1210/117); 
    }

    .s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image-container {
      position: relative;
    }

    .s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b02b2ee3-e58c-460b-bd11-dea5e5638805.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b02b2ee3-e58c-460b-bd11-dea5e5638805 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-5c20bd61-32dc-4225-885f-ae03034d20b2 {
  min-height: 30px;
}








#s-5c20bd61-32dc-4225-885f-ae03034d20b2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5c20bd61-32dc-4225-885f-ae03034d20b2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0c445ca0-ccce-4e2d-8581-18b55ed56611 {
  margin-left: 5%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-f6f7f728-e764-44cc-9eca-bd197e749dba"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f6f7f728-e764-44cc-9eca-bd197e749dba"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f6f7f728-e764-44cc-9eca-bd197e749dba"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f6f7f728-e764-44cc-9eca-bd197e749dba"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec {
  max-width: 645px;
aspect-ratio: 645/460;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec {
    width: 100%;
    height: auto;
  }

  #s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image {
    
    
  }


.s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec .shogun-image-content {
  
    align-items: center;
  
}

.s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image-container {
      position: relative;
    }

    .s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec {
    width: 100%;
    height: auto;
  }

  #s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image {
    
    
  }


.s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec .shogun-image-content {
  
    align-items: center;
  
}

.s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image-container {
      position: relative;
    }

    .s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec {
    width: 100%;
    height: auto;
  }

  #s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image {
    
    
  }


.s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec .shogun-image-content {
  
    align-items: center;
  
}

.s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image-container {
      position: relative;
    }

    .s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec {
    width: 100%;
    height: auto;
  }

  #s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image {
    
    
  }


.s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec .shogun-image-content {
  
    align-items: center;
  
}

.s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image-container {
      position: relative;
    }

    .s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec {
    width: 100%;
    height: auto;
  }

  #s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image {
    
    
  }


.s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec .shogun-image-content {
  
    align-items: center;
  
}

.s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image-container {
      position: relative;
    }

    .s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c107d8af-867e-4a3b-a3ad-5ee2fd579eec img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-0ecb80e9-0ab1-4a70-8bca-5709b27e5e1b {
  margin-top: 0px;
padding-top: 11px;
padding-bottom: 12px;
}

#s-1146221a-712c-4098-bb61-2d384220c546 {
  max-width: 645px;
aspect-ratio: 645/460;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-1146221a-712c-4098-bb61-2d384220c546 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-1146221a-712c-4098-bb61-2d384220c546 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1146221a-712c-4098-bb61-2d384220c546 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-1146221a-712c-4098-bb61-2d384220c546 {
    width: 100%;
    height: auto;
  }

  #s-1146221a-712c-4098-bb61-2d384220c546 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1146221a-712c-4098-bb61-2d384220c546.shogun-image {
    
    
  }


.s-1146221a-712c-4098-bb61-2d384220c546 .shogun-image-content {
  
    align-items: center;
  
}

.s-1146221a-712c-4098-bb61-2d384220c546.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1146221a-712c-4098-bb61-2d384220c546.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1146221a-712c-4098-bb61-2d384220c546.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1146221a-712c-4098-bb61-2d384220c546 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-1146221a-712c-4098-bb61-2d384220c546.shogun-image-container {
      position: relative;
    }

    .s-1146221a-712c-4098-bb61-2d384220c546.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1146221a-712c-4098-bb61-2d384220c546.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1146221a-712c-4098-bb61-2d384220c546 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-1146221a-712c-4098-bb61-2d384220c546 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-1146221a-712c-4098-bb61-2d384220c546 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1146221a-712c-4098-bb61-2d384220c546 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-1146221a-712c-4098-bb61-2d384220c546 {
    width: 100%;
    height: auto;
  }

  #s-1146221a-712c-4098-bb61-2d384220c546 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1146221a-712c-4098-bb61-2d384220c546.shogun-image {
    
    
  }


.s-1146221a-712c-4098-bb61-2d384220c546 .shogun-image-content {
  
    align-items: center;
  
}

.s-1146221a-712c-4098-bb61-2d384220c546.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1146221a-712c-4098-bb61-2d384220c546.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1146221a-712c-4098-bb61-2d384220c546.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1146221a-712c-4098-bb61-2d384220c546 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-1146221a-712c-4098-bb61-2d384220c546.shogun-image-container {
      position: relative;
    }

    .s-1146221a-712c-4098-bb61-2d384220c546.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1146221a-712c-4098-bb61-2d384220c546.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1146221a-712c-4098-bb61-2d384220c546 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-1146221a-712c-4098-bb61-2d384220c546 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-1146221a-712c-4098-bb61-2d384220c546 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1146221a-712c-4098-bb61-2d384220c546 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-1146221a-712c-4098-bb61-2d384220c546 {
    width: 100%;
    height: auto;
  }

  #s-1146221a-712c-4098-bb61-2d384220c546 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1146221a-712c-4098-bb61-2d384220c546.shogun-image {
    
    
  }


.s-1146221a-712c-4098-bb61-2d384220c546 .shogun-image-content {
  
    align-items: center;
  
}

.s-1146221a-712c-4098-bb61-2d384220c546.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1146221a-712c-4098-bb61-2d384220c546.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1146221a-712c-4098-bb61-2d384220c546.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1146221a-712c-4098-bb61-2d384220c546 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-1146221a-712c-4098-bb61-2d384220c546.shogun-image-container {
      position: relative;
    }

    .s-1146221a-712c-4098-bb61-2d384220c546.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1146221a-712c-4098-bb61-2d384220c546.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1146221a-712c-4098-bb61-2d384220c546 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-1146221a-712c-4098-bb61-2d384220c546 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-1146221a-712c-4098-bb61-2d384220c546 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1146221a-712c-4098-bb61-2d384220c546 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-1146221a-712c-4098-bb61-2d384220c546 {
    width: 100%;
    height: auto;
  }

  #s-1146221a-712c-4098-bb61-2d384220c546 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1146221a-712c-4098-bb61-2d384220c546.shogun-image {
    
    
  }


.s-1146221a-712c-4098-bb61-2d384220c546 .shogun-image-content {
  
    align-items: center;
  
}

.s-1146221a-712c-4098-bb61-2d384220c546.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1146221a-712c-4098-bb61-2d384220c546.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1146221a-712c-4098-bb61-2d384220c546.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1146221a-712c-4098-bb61-2d384220c546 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-1146221a-712c-4098-bb61-2d384220c546.shogun-image-container {
      position: relative;
    }

    .s-1146221a-712c-4098-bb61-2d384220c546.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1146221a-712c-4098-bb61-2d384220c546.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1146221a-712c-4098-bb61-2d384220c546 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-1146221a-712c-4098-bb61-2d384220c546 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-1146221a-712c-4098-bb61-2d384220c546 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-1146221a-712c-4098-bb61-2d384220c546 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-1146221a-712c-4098-bb61-2d384220c546 {
    width: 100%;
    height: auto;
  }

  #s-1146221a-712c-4098-bb61-2d384220c546 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1146221a-712c-4098-bb61-2d384220c546.shogun-image {
    
    
  }


.s-1146221a-712c-4098-bb61-2d384220c546 .shogun-image-content {
  
    align-items: center;
  
}

.s-1146221a-712c-4098-bb61-2d384220c546.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1146221a-712c-4098-bb61-2d384220c546.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1146221a-712c-4098-bb61-2d384220c546.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1146221a-712c-4098-bb61-2d384220c546 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-1146221a-712c-4098-bb61-2d384220c546.shogun-image-container {
      position: relative;
    }

    .s-1146221a-712c-4098-bb61-2d384220c546.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1146221a-712c-4098-bb61-2d384220c546.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1146221a-712c-4098-bb61-2d384220c546 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-08756c20-d7ca-45f6-8b32-7b54e30d6fa4 {
  margin-top: 0px;
padding-top: 11px;
padding-bottom: 12px;
}

#s-7494e823-1f82-45f7-a638-424b91194369 {
  min-height: 30px;
}








#s-7494e823-1f82-45f7-a638-424b91194369 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7494e823-1f82-45f7-a638-424b91194369.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-877dd85f-3820-4025-8ea0-bbb26d048b41 {
  margin-left: 2%;
margin-right: 2%;
}

@media (min-width: 0px) {
[id="s-ee639dd7-7fbe-4339-b7ec-283ba2c5c5eb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ee639dd7-7fbe-4339-b7ec-283ba2c5c5eb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ee639dd7-7fbe-4339-b7ec-283ba2c5c5eb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ee639dd7-7fbe-4339-b7ec-283ba2c5c5eb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-53c35336-f10b-4d80-bf9b-9c32e3843497 {
  max-width: 645px;
aspect-ratio: 645/460;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-53c35336-f10b-4d80-bf9b-9c32e3843497 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-53c35336-f10b-4d80-bf9b-9c32e3843497 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-53c35336-f10b-4d80-bf9b-9c32e3843497 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-53c35336-f10b-4d80-bf9b-9c32e3843497 {
    width: 100%;
    height: auto;
  }

  #s-53c35336-f10b-4d80-bf9b-9c32e3843497 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image {
    
    
  }


.s-53c35336-f10b-4d80-bf9b-9c32e3843497 .shogun-image-content {
  
    align-items: center;
  
}

.s-53c35336-f10b-4d80-bf9b-9c32e3843497.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-53c35336-f10b-4d80-bf9b-9c32e3843497 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image-container {
      position: relative;
    }

    .s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-53c35336-f10b-4d80-bf9b-9c32e3843497 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-53c35336-f10b-4d80-bf9b-9c32e3843497 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-53c35336-f10b-4d80-bf9b-9c32e3843497 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-53c35336-f10b-4d80-bf9b-9c32e3843497 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-53c35336-f10b-4d80-bf9b-9c32e3843497 {
    width: 100%;
    height: auto;
  }

  #s-53c35336-f10b-4d80-bf9b-9c32e3843497 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image {
    
    
  }


.s-53c35336-f10b-4d80-bf9b-9c32e3843497 .shogun-image-content {
  
    align-items: center;
  
}

.s-53c35336-f10b-4d80-bf9b-9c32e3843497.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-53c35336-f10b-4d80-bf9b-9c32e3843497 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image-container {
      position: relative;
    }

    .s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-53c35336-f10b-4d80-bf9b-9c32e3843497 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-53c35336-f10b-4d80-bf9b-9c32e3843497 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-53c35336-f10b-4d80-bf9b-9c32e3843497 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-53c35336-f10b-4d80-bf9b-9c32e3843497 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-53c35336-f10b-4d80-bf9b-9c32e3843497 {
    width: 100%;
    height: auto;
  }

  #s-53c35336-f10b-4d80-bf9b-9c32e3843497 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image {
    
    
  }


.s-53c35336-f10b-4d80-bf9b-9c32e3843497 .shogun-image-content {
  
    align-items: center;
  
}

.s-53c35336-f10b-4d80-bf9b-9c32e3843497.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-53c35336-f10b-4d80-bf9b-9c32e3843497 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image-container {
      position: relative;
    }

    .s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-53c35336-f10b-4d80-bf9b-9c32e3843497 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-53c35336-f10b-4d80-bf9b-9c32e3843497 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-53c35336-f10b-4d80-bf9b-9c32e3843497 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-53c35336-f10b-4d80-bf9b-9c32e3843497 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-53c35336-f10b-4d80-bf9b-9c32e3843497 {
    width: 100%;
    height: auto;
  }

  #s-53c35336-f10b-4d80-bf9b-9c32e3843497 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image {
    
    
  }


.s-53c35336-f10b-4d80-bf9b-9c32e3843497 .shogun-image-content {
  
    align-items: center;
  
}

.s-53c35336-f10b-4d80-bf9b-9c32e3843497.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-53c35336-f10b-4d80-bf9b-9c32e3843497 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image-container {
      position: relative;
    }

    .s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-53c35336-f10b-4d80-bf9b-9c32e3843497 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-53c35336-f10b-4d80-bf9b-9c32e3843497 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-53c35336-f10b-4d80-bf9b-9c32e3843497 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-53c35336-f10b-4d80-bf9b-9c32e3843497 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-53c35336-f10b-4d80-bf9b-9c32e3843497 {
    width: 100%;
    height: auto;
  }

  #s-53c35336-f10b-4d80-bf9b-9c32e3843497 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image {
    
    
  }


.s-53c35336-f10b-4d80-bf9b-9c32e3843497 .shogun-image-content {
  
    align-items: center;
  
}

.s-53c35336-f10b-4d80-bf9b-9c32e3843497.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-53c35336-f10b-4d80-bf9b-9c32e3843497 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image-container {
      position: relative;
    }

    .s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-53c35336-f10b-4d80-bf9b-9c32e3843497.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-53c35336-f10b-4d80-bf9b-9c32e3843497 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-0ef3819b-6122-4975-ad7f-79e42e052153 {
  margin-top: 0px;
padding-top: 11px;
padding-bottom: 12px;
}

#s-8a7d9419-c493-4786-b6d5-db6837c7445d {
  margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 8px;
background-color: rgba(40, 91, 165, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-8a7d9419-c493-4786-b6d5-db6837c7445d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8a7d9419-c493-4786-b6d5-db6837c7445d:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-8a7d9419-c493-4786-b6d5-db6837c7445d-root {
    text-align: center;
  }


#s-8a7d9419-c493-4786-b6d5-db6837c7445d.shg-btn {
  color: #ffffff;
  font-size: 19px;
  font-weight: 600;
  
  font-family: Raleway;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-8a7d9419-c493-4786-b6d5-db6837c7445d-root {
    text-align: center;
  }


#s-8a7d9419-c493-4786-b6d5-db6837c7445d.shg-btn {
  color: #ffffff;
  font-size: 19px;
  font-weight: 600;
  
  font-family: Raleway;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8a7d9419-c493-4786-b6d5-db6837c7445d-root {
    text-align: center;
  }


#s-8a7d9419-c493-4786-b6d5-db6837c7445d.shg-btn {
  color: #ffffff;
  font-size: 19px;
  font-weight: 600;
  
  font-family: Raleway;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8a7d9419-c493-4786-b6d5-db6837c7445d-root {
    text-align: center;
  }


#s-8a7d9419-c493-4786-b6d5-db6837c7445d.shg-btn {
  color: #ffffff;
  font-size: 19px;
  font-weight: 600;
  
  font-family: Raleway;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-8a7d9419-c493-4786-b6d5-db6837c7445d-root {
    text-align: center;
  }


#s-8a7d9419-c493-4786-b6d5-db6837c7445d.shg-btn {
  color: #ffffff;
  font-size: 19px;
  font-weight: 600;
  
  font-family: Raleway;
  display:  inline-block ;
}
}
#s-f4ad3cae-8560-43ac-8045-f25ecebc632e {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-f4ad3cae-8560-43ac-8045-f25ecebc632e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f4ad3cae-8560-43ac-8045-f25ecebc632e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.5px);
}

}

@media (min-width: 992px) {
[id="s-f4ad3cae-8560-43ac-8045-f25ecebc632e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.5px);
}

}

@media (min-width: 1200px) {
[id="s-f4ad3cae-8560-43ac-8045-f25ecebc632e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.5px);
}

}

#s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 {
  margin-left: auto;
margin-right: auto;
max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 {
    width: 100%;
    height: auto;
  }

  #s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image {
    
    
  }


.s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 .shogun-image-content {
  
    align-items: center;
  
}

.s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shg-align-container {
  display: flex;
  justify-content: center
}

.s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image-container {
      position: relative;
    }

    .s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 {
    width: 100%;
    height: auto;
  }

  #s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image {
    
    
  }


.s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 .shogun-image-content {
  
    align-items: center;
  
}

.s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shg-align-container {
  display: flex;
  justify-content: center
}

.s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image-container {
      position: relative;
    }

    .s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 {
    width: 100%;
    height: auto;
  }

  #s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image {
    
    
  }


.s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 .shogun-image-content {
  
    align-items: center;
  
}

.s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shg-align-container {
  display: flex;
  justify-content: center
}

.s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image-container {
      position: relative;
    }

    .s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 {
    width: 100%;
    height: auto;
  }

  #s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image {
    
    
  }


.s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 .shogun-image-content {
  
    align-items: center;
  
}

.s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shg-align-container {
  display: flex;
  justify-content: center
}

.s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image-container {
      position: relative;
    }

    .s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 {
    width: 100%;
    height: auto;
  }

  #s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image {
    
    
  }


.s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 .shogun-image-content {
  
    align-items: center;
  
}

.s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shg-align-container {
  display: flex;
  justify-content: center
}

.s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image-container {
      position: relative;
    }

    .s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-96070a4b-e0be-4c7b-83c4-7d3a5f679041.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-96070a4b-e0be-4c7b-83c4-7d3a5f679041 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-55133fe6-c029-47fc-865d-54454373d1c6 {
  margin-left: auto;
margin-right: auto;
}

#s-b509f35d-3090-41e1-9f28-7703eb45792b {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b509f35d-3090-41e1-9f28-7703eb45792b .shg-product-title-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-d2b807f8-ebad-42c6-8952-5f0e40378056 {
  margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 8px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-d2b807f8-ebad-42c6-8952-5f0e40378056:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d2b807f8-ebad-42c6-8952-5f0e40378056:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-d2b807f8-ebad-42c6-8952-5f0e40378056 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-d2b807f8-ebad-42c6-8952-5f0e40378056.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d2b807f8-ebad-42c6-8952-5f0e40378056.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-d2b807f8-ebad-42c6-8952-5f0e40378056.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-237f6c55-2a0a-4574-84cf-cd70fc2b3773 {
  margin-left: auto;
margin-right: auto;
}

#s-11ed4625-a675-469d-9847-9ff36b0e86ed {
  margin-left: auto;
margin-right: auto;
text-align: left;
}



.shg-c#s-11ed4625-a675-469d-9847-9ff36b0e86ed .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-11ed4625-a675-469d-9847-9ff36b0e86ed img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-11ed4625-a675-469d-9847-9ff36b0e86ed .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-11ed4625-a675-469d-9847-9ff36b0e86ed img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-11ed4625-a675-469d-9847-9ff36b0e86ed .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-11ed4625-a675-469d-9847-9ff36b0e86ed img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-11ed4625-a675-469d-9847-9ff36b0e86ed .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-11ed4625-a675-469d-9847-9ff36b0e86ed img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-11ed4625-a675-469d-9847-9ff36b0e86ed .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-11ed4625-a675-469d-9847-9ff36b0e86ed img.shogun-image {
  width: 100%;
}



}
#s-7c7c4fe1-ea0e-4827-a10f-69f02cc65a68 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7c7c4fe1-ea0e-4827-a10f-69f02cc65a68 .shg-product-title-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-d4c353f1-3e2a-4cbe-a8c3-bcd13da4b0f0 {
  margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 8px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-d4c353f1-3e2a-4cbe-a8c3-bcd13da4b0f0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d4c353f1-3e2a-4cbe-a8c3-bcd13da4b0f0:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-d4c353f1-3e2a-4cbe-a8c3-bcd13da4b0f0 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-d4c353f1-3e2a-4cbe-a8c3-bcd13da4b0f0.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d4c353f1-3e2a-4cbe-a8c3-bcd13da4b0f0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-d4c353f1-3e2a-4cbe-a8c3-bcd13da4b0f0.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-eb466407-6965-40d2-b82f-e790ba760214 {
  min-height: 56px;
}








#s-eb466407-6965-40d2-b82f-e790ba760214 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eb466407-6965-40d2-b82f-e790ba760214.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-83e48e76-f9f5-4728-900e-7161333cc9b9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-83e48e76-f9f5-4728-900e-7161333cc9b9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-83e48e76-f9f5-4728-900e-7161333cc9b9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-83e48e76-f9f5-4728-900e-7161333cc9b9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-64f239fc-489b-4fbd-9117-974dd3b8040c {
  max-width: 645px;
aspect-ratio: 645/460;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-64f239fc-489b-4fbd-9117-974dd3b8040c .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-64f239fc-489b-4fbd-9117-974dd3b8040c .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-64f239fc-489b-4fbd-9117-974dd3b8040c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-64f239fc-489b-4fbd-9117-974dd3b8040c {
    width: 100%;
    height: auto;
  }

  #s-64f239fc-489b-4fbd-9117-974dd3b8040c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image {
    
    
  }


.s-64f239fc-489b-4fbd-9117-974dd3b8040c .shogun-image-content {
  
    align-items: center;
  
}

.s-64f239fc-489b-4fbd-9117-974dd3b8040c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-64f239fc-489b-4fbd-9117-974dd3b8040c {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image-container {
      position: relative;
    }

    .s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-64f239fc-489b-4fbd-9117-974dd3b8040c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-64f239fc-489b-4fbd-9117-974dd3b8040c .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-64f239fc-489b-4fbd-9117-974dd3b8040c .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-64f239fc-489b-4fbd-9117-974dd3b8040c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-64f239fc-489b-4fbd-9117-974dd3b8040c {
    width: 100%;
    height: auto;
  }

  #s-64f239fc-489b-4fbd-9117-974dd3b8040c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image {
    
    
  }


.s-64f239fc-489b-4fbd-9117-974dd3b8040c .shogun-image-content {
  
    align-items: center;
  
}

.s-64f239fc-489b-4fbd-9117-974dd3b8040c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-64f239fc-489b-4fbd-9117-974dd3b8040c {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image-container {
      position: relative;
    }

    .s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-64f239fc-489b-4fbd-9117-974dd3b8040c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-64f239fc-489b-4fbd-9117-974dd3b8040c .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-64f239fc-489b-4fbd-9117-974dd3b8040c .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-64f239fc-489b-4fbd-9117-974dd3b8040c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-64f239fc-489b-4fbd-9117-974dd3b8040c {
    width: 100%;
    height: auto;
  }

  #s-64f239fc-489b-4fbd-9117-974dd3b8040c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image {
    
    
  }


.s-64f239fc-489b-4fbd-9117-974dd3b8040c .shogun-image-content {
  
    align-items: center;
  
}

.s-64f239fc-489b-4fbd-9117-974dd3b8040c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-64f239fc-489b-4fbd-9117-974dd3b8040c {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image-container {
      position: relative;
    }

    .s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-64f239fc-489b-4fbd-9117-974dd3b8040c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-64f239fc-489b-4fbd-9117-974dd3b8040c .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-64f239fc-489b-4fbd-9117-974dd3b8040c .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-64f239fc-489b-4fbd-9117-974dd3b8040c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-64f239fc-489b-4fbd-9117-974dd3b8040c {
    width: 100%;
    height: auto;
  }

  #s-64f239fc-489b-4fbd-9117-974dd3b8040c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image {
    
    
  }


.s-64f239fc-489b-4fbd-9117-974dd3b8040c .shogun-image-content {
  
    align-items: center;
  
}

.s-64f239fc-489b-4fbd-9117-974dd3b8040c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-64f239fc-489b-4fbd-9117-974dd3b8040c {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image-container {
      position: relative;
    }

    .s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-64f239fc-489b-4fbd-9117-974dd3b8040c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-64f239fc-489b-4fbd-9117-974dd3b8040c .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-64f239fc-489b-4fbd-9117-974dd3b8040c .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-64f239fc-489b-4fbd-9117-974dd3b8040c .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-64f239fc-489b-4fbd-9117-974dd3b8040c {
    width: 100%;
    height: auto;
  }

  #s-64f239fc-489b-4fbd-9117-974dd3b8040c img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image {
    
    
  }


.s-64f239fc-489b-4fbd-9117-974dd3b8040c .shogun-image-content {
  
    align-items: center;
  
}

.s-64f239fc-489b-4fbd-9117-974dd3b8040c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-64f239fc-489b-4fbd-9117-974dd3b8040c {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image-container {
      position: relative;
    }

    .s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-64f239fc-489b-4fbd-9117-974dd3b8040c.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-64f239fc-489b-4fbd-9117-974dd3b8040c img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-78f976a4-de7f-4405-9084-db64af72f4d0 {
  margin-top: 0px;
padding-top: 11px;
padding-bottom: 12px;
}

#s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a {
  max-width: 645px;
aspect-ratio: 645/460;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a {
    width: 100%;
    height: auto;
  }

  #s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image {
    
    
  }


.s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a .shogun-image-content {
  
    align-items: center;
  
}

.s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image-container {
      position: relative;
    }

    .s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a {
    width: 100%;
    height: auto;
  }

  #s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image {
    
    
  }


.s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a .shogun-image-content {
  
    align-items: center;
  
}

.s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image-container {
      position: relative;
    }

    .s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a {
    width: 100%;
    height: auto;
  }

  #s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image {
    
    
  }


.s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a .shogun-image-content {
  
    align-items: center;
  
}

.s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image-container {
      position: relative;
    }

    .s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a {
    width: 100%;
    height: auto;
  }

  #s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image {
    
    
  }


.s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a .shogun-image-content {
  
    align-items: center;
  
}

.s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image-container {
      position: relative;
    }

    .s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a {
    width: 100%;
    height: auto;
  }

  #s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image {
    
    
  }


.s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a .shogun-image-content {
  
    align-items: center;
  
}

.s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image-container {
      position: relative;
    }

    .s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3cfa0f19-bd0a-4f07-95e4-5e2c75b0129a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-8772b338-df21-4fbf-80bb-50afbe61848b {
  margin-top: 0px;
padding-top: 11px;
padding-bottom: 12px;
}

#s-364031f6-bc3b-4dc6-8bc8-1fdeb5ab3459 {
  min-height: 60px;
}








#s-364031f6-bc3b-4dc6-8bc8-1fdeb5ab3459 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-364031f6-bc3b-4dc6-8bc8-1fdeb5ab3459.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 {
  max-width: 1985px;
aspect-ratio: 1985/37;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 {
    width: 100%;
    height: auto;
  }

  #s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image {
    
    
  }


.s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 .shogun-image-content {
  
    align-items: center;
  
}

.s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image-container {
      position: relative;
    }

    .s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 {
    width: 100%;
    height: auto;
  }

  #s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image {
    
    
  }


.s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 .shogun-image-content {
  
    align-items: center;
  
}

.s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image-container {
      position: relative;
    }

    .s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 {
    width: 100%;
    height: auto;
  }

  #s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image {
    
    
  }


.s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 .shogun-image-content {
  
    align-items: center;
  
}

.s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image-container {
      position: relative;
    }

    .s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 {
    width: 100%;
    height: auto;
  }

  #s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image {
    
    
  }


.s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 .shogun-image-content {
  
    align-items: center;
  
}

.s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image-container {
      position: relative;
    }

    .s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 .shg-image-content-wrapper {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }

    #s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 .shogun-image-link {
      aspect-ratio: 1985/37;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 {
    width: 100%;
    height: auto;
  }

  #s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image {
    
    
  }


.s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 .shogun-image-content {
  
    align-items: center;
  
}

.s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 {
      --shg-aspect-ratio: calc(1985/37); 
    }

    .s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image-container {
      position: relative;
    }

    .s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ab991ca0-e7b1-4cda-a304-1a6d77cde908.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ab991ca0-e7b1-4cda-a304-1a6d77cde908 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 {
  margin-top: 20px;
margin-left: 6%;
margin-right: 6%;
max-width: 1210px;
aspect-ratio: 1210/117;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 .shg-image-content-wrapper {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }

    #s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 .shogun-image-link {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 {
    width: 100%;
    height: auto;
  }

  #s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image {
    
    
  }


.s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 .shogun-image-content {
  
    align-items: center;
  
}

.s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shg-align-container {
  display: flex;
  justify-content: center
}

.s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 {
      --shg-aspect-ratio: calc(1210/117); 
    }

    .s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image-container {
      position: relative;
    }

    .s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 .shg-image-content-wrapper {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }

    #s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 .shogun-image-link {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 {
    width: 100%;
    height: auto;
  }

  #s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image {
    
    
  }


.s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 .shogun-image-content {
  
    align-items: center;
  
}

.s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shg-align-container {
  display: flex;
  justify-content: center
}

.s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 {
      --shg-aspect-ratio: calc(1210/117); 
    }

    .s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image-container {
      position: relative;
    }

    .s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 .shg-image-content-wrapper {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }

    #s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 .shogun-image-link {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 {
    width: 100%;
    height: auto;
  }

  #s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image {
    
    
  }


.s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 .shogun-image-content {
  
    align-items: center;
  
}

.s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shg-align-container {
  display: flex;
  justify-content: center
}

.s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 {
      --shg-aspect-ratio: calc(1210/117); 
    }

    .s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image-container {
      position: relative;
    }

    .s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 .shg-image-content-wrapper {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }

    #s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 .shogun-image-link {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 {
    width: 100%;
    height: auto;
  }

  #s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image {
    
    
  }


.s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 .shogun-image-content {
  
    align-items: center;
  
}

.s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shg-align-container {
  display: flex;
  justify-content: center
}

.s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 {
      --shg-aspect-ratio: calc(1210/117); 
    }

    .s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image-container {
      position: relative;
    }

    .s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 .shg-image-content-wrapper {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }

    #s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 .shogun-image-link {
      aspect-ratio: 1210/117;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 {
    width: 100%;
    height: auto;
  }

  #s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image {
    
    
  }


.s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 .shogun-image-content {
  
    align-items: center;
  
}

.s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shg-align-container {
  display: flex;
  justify-content: center
}

.s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 {
      --shg-aspect-ratio: calc(1210/117); 
    }

    .s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image-container {
      position: relative;
    }

    .s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-47e5384e-e0e2-4bb7-9259-b0c0057e5733.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-47e5384e-e0e2-4bb7-9259-b0c0057e5733 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-cd87174e-f739-46d3-aa17-f946b83d3aa1 {
  min-height: 30px;
}








#s-cd87174e-f739-46d3-aa17-f946b83d3aa1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cd87174e-f739-46d3-aa17-f946b83d3aa1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-4dcb0d6d-b12e-4256-89e5-11cccb85ab97"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4dcb0d6d-b12e-4256-89e5-11cccb85ab97"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4dcb0d6d-b12e-4256-89e5-11cccb85ab97"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4dcb0d6d-b12e-4256-89e5-11cccb85ab97"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-68bc75fa-4482-4a88-8759-add2efd5af57 {
  max-width: 645px;
aspect-ratio: 645/460;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-68bc75fa-4482-4a88-8759-add2efd5af57 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-68bc75fa-4482-4a88-8759-add2efd5af57 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-68bc75fa-4482-4a88-8759-add2efd5af57 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-68bc75fa-4482-4a88-8759-add2efd5af57 {
    width: 100%;
    height: auto;
  }

  #s-68bc75fa-4482-4a88-8759-add2efd5af57 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image {
    
    
  }


.s-68bc75fa-4482-4a88-8759-add2efd5af57 .shogun-image-content {
  
    align-items: center;
  
}

.s-68bc75fa-4482-4a88-8759-add2efd5af57.shg-align-container {
  display: flex;
  justify-content: center
}

.s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-68bc75fa-4482-4a88-8759-add2efd5af57 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image-container {
      position: relative;
    }

    .s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-68bc75fa-4482-4a88-8759-add2efd5af57 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-68bc75fa-4482-4a88-8759-add2efd5af57 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-68bc75fa-4482-4a88-8759-add2efd5af57 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-68bc75fa-4482-4a88-8759-add2efd5af57 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-68bc75fa-4482-4a88-8759-add2efd5af57 {
    width: 100%;
    height: auto;
  }

  #s-68bc75fa-4482-4a88-8759-add2efd5af57 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image {
    
    
  }


.s-68bc75fa-4482-4a88-8759-add2efd5af57 .shogun-image-content {
  
    align-items: center;
  
}

.s-68bc75fa-4482-4a88-8759-add2efd5af57.shg-align-container {
  display: flex;
  justify-content: center
}

.s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-68bc75fa-4482-4a88-8759-add2efd5af57 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image-container {
      position: relative;
    }

    .s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-68bc75fa-4482-4a88-8759-add2efd5af57 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-68bc75fa-4482-4a88-8759-add2efd5af57 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-68bc75fa-4482-4a88-8759-add2efd5af57 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-68bc75fa-4482-4a88-8759-add2efd5af57 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-68bc75fa-4482-4a88-8759-add2efd5af57 {
    width: 100%;
    height: auto;
  }

  #s-68bc75fa-4482-4a88-8759-add2efd5af57 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image {
    
    
  }


.s-68bc75fa-4482-4a88-8759-add2efd5af57 .shogun-image-content {
  
    align-items: center;
  
}

.s-68bc75fa-4482-4a88-8759-add2efd5af57.shg-align-container {
  display: flex;
  justify-content: center
}

.s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-68bc75fa-4482-4a88-8759-add2efd5af57 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image-container {
      position: relative;
    }

    .s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-68bc75fa-4482-4a88-8759-add2efd5af57 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-68bc75fa-4482-4a88-8759-add2efd5af57 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-68bc75fa-4482-4a88-8759-add2efd5af57 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-68bc75fa-4482-4a88-8759-add2efd5af57 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-68bc75fa-4482-4a88-8759-add2efd5af57 {
    width: 100%;
    height: auto;
  }

  #s-68bc75fa-4482-4a88-8759-add2efd5af57 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image {
    
    
  }


.s-68bc75fa-4482-4a88-8759-add2efd5af57 .shogun-image-content {
  
    align-items: center;
  
}

.s-68bc75fa-4482-4a88-8759-add2efd5af57.shg-align-container {
  display: flex;
  justify-content: center
}

.s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-68bc75fa-4482-4a88-8759-add2efd5af57 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image-container {
      position: relative;
    }

    .s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-68bc75fa-4482-4a88-8759-add2efd5af57 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-68bc75fa-4482-4a88-8759-add2efd5af57 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-68bc75fa-4482-4a88-8759-add2efd5af57 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-68bc75fa-4482-4a88-8759-add2efd5af57 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-68bc75fa-4482-4a88-8759-add2efd5af57 {
    width: 100%;
    height: auto;
  }

  #s-68bc75fa-4482-4a88-8759-add2efd5af57 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image {
    
    
  }


.s-68bc75fa-4482-4a88-8759-add2efd5af57 .shogun-image-content {
  
    align-items: center;
  
}

.s-68bc75fa-4482-4a88-8759-add2efd5af57.shg-align-container {
  display: flex;
  justify-content: center
}

.s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-68bc75fa-4482-4a88-8759-add2efd5af57 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image-container {
      position: relative;
    }

    .s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-68bc75fa-4482-4a88-8759-add2efd5af57.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-68bc75fa-4482-4a88-8759-add2efd5af57 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-e1f47594-63ce-41f7-bd83-728ee0a67ed5 {
  margin-left: auto;
margin-right: auto;
}

#s-1c8da031-52bb-4f78-9617-eb8cae27091f {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1c8da031-52bb-4f78-9617-eb8cae27091f .shg-product-title-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 17px;
  line-height: ;
  letter-spacing: ;
}

#s-00b9f230-0915-4960-b4bc-8867d2d5c7a0 {
  margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 8px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-00b9f230-0915-4960-b4bc-8867d2d5c7a0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-00b9f230-0915-4960-b4bc-8867d2d5c7a0:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-00b9f230-0915-4960-b4bc-8867d2d5c7a0 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-00b9f230-0915-4960-b4bc-8867d2d5c7a0.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-00b9f230-0915-4960-b4bc-8867d2d5c7a0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-00b9f230-0915-4960-b4bc-8867d2d5c7a0.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-00b9f230-0915-4960-b4bc-8867d2d5c7a0.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-a49ccf6a-14ed-461f-85b6-a2b542d21374 {
  max-width: 645px;
aspect-ratio: 645/460;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-a49ccf6a-14ed-461f-85b6-a2b542d21374 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-a49ccf6a-14ed-461f-85b6-a2b542d21374 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a49ccf6a-14ed-461f-85b6-a2b542d21374 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-a49ccf6a-14ed-461f-85b6-a2b542d21374 {
    width: 100%;
    height: auto;
  }

  #s-a49ccf6a-14ed-461f-85b6-a2b542d21374 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image {
    
    
  }


.s-a49ccf6a-14ed-461f-85b6-a2b542d21374 .shogun-image-content {
  
    align-items: center;
  
}

.s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a49ccf6a-14ed-461f-85b6-a2b542d21374 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image-container {
      position: relative;
    }

    .s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a49ccf6a-14ed-461f-85b6-a2b542d21374 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-a49ccf6a-14ed-461f-85b6-a2b542d21374 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-a49ccf6a-14ed-461f-85b6-a2b542d21374 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a49ccf6a-14ed-461f-85b6-a2b542d21374 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-a49ccf6a-14ed-461f-85b6-a2b542d21374 {
    width: 100%;
    height: auto;
  }

  #s-a49ccf6a-14ed-461f-85b6-a2b542d21374 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image {
    
    
  }


.s-a49ccf6a-14ed-461f-85b6-a2b542d21374 .shogun-image-content {
  
    align-items: center;
  
}

.s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a49ccf6a-14ed-461f-85b6-a2b542d21374 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image-container {
      position: relative;
    }

    .s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a49ccf6a-14ed-461f-85b6-a2b542d21374 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-a49ccf6a-14ed-461f-85b6-a2b542d21374 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-a49ccf6a-14ed-461f-85b6-a2b542d21374 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a49ccf6a-14ed-461f-85b6-a2b542d21374 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-a49ccf6a-14ed-461f-85b6-a2b542d21374 {
    width: 100%;
    height: auto;
  }

  #s-a49ccf6a-14ed-461f-85b6-a2b542d21374 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image {
    
    
  }


.s-a49ccf6a-14ed-461f-85b6-a2b542d21374 .shogun-image-content {
  
    align-items: center;
  
}

.s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a49ccf6a-14ed-461f-85b6-a2b542d21374 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image-container {
      position: relative;
    }

    .s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a49ccf6a-14ed-461f-85b6-a2b542d21374 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-a49ccf6a-14ed-461f-85b6-a2b542d21374 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-a49ccf6a-14ed-461f-85b6-a2b542d21374 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a49ccf6a-14ed-461f-85b6-a2b542d21374 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-a49ccf6a-14ed-461f-85b6-a2b542d21374 {
    width: 100%;
    height: auto;
  }

  #s-a49ccf6a-14ed-461f-85b6-a2b542d21374 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image {
    
    
  }


.s-a49ccf6a-14ed-461f-85b6-a2b542d21374 .shogun-image-content {
  
    align-items: center;
  
}

.s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a49ccf6a-14ed-461f-85b6-a2b542d21374 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image-container {
      position: relative;
    }

    .s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a49ccf6a-14ed-461f-85b6-a2b542d21374 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-a49ccf6a-14ed-461f-85b6-a2b542d21374 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-a49ccf6a-14ed-461f-85b6-a2b542d21374 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-a49ccf6a-14ed-461f-85b6-a2b542d21374 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-a49ccf6a-14ed-461f-85b6-a2b542d21374 {
    width: 100%;
    height: auto;
  }

  #s-a49ccf6a-14ed-461f-85b6-a2b542d21374 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image {
    
    
  }


.s-a49ccf6a-14ed-461f-85b6-a2b542d21374 .shogun-image-content {
  
    align-items: center;
  
}

.s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-a49ccf6a-14ed-461f-85b6-a2b542d21374 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image-container {
      position: relative;
    }

    .s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-a49ccf6a-14ed-461f-85b6-a2b542d21374.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-a49ccf6a-14ed-461f-85b6-a2b542d21374 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-29de6633-ae4d-4b2f-ac75-76030646c487 {
  margin-top: 0px;
margin-bottom: 10px;
padding-top: 11px;
padding-bottom: 12px;
}

#s-6e793f16-1101-4678-b7ff-4166d2919df8 {
  min-height: 30px;
}








#s-6e793f16-1101-4678-b7ff-4166d2919df8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6e793f16-1101-4678-b7ff-4166d2919df8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-136086c1-b023-4ea6-bda1-31332a9f20f5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-136086c1-b023-4ea6-bda1-31332a9f20f5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-136086c1-b023-4ea6-bda1-31332a9f20f5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-136086c1-b023-4ea6-bda1-31332a9f20f5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d {
  max-width: 645px;
aspect-ratio: 645/460;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d {
    width: 100%;
    height: auto;
  }

  #s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image {
    
    
  }


.s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d .shogun-image-content {
  
    align-items: center;
  
}

.s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image-container {
      position: relative;
    }

    .s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d {
    width: 100%;
    height: auto;
  }

  #s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image {
    
    
  }


.s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d .shogun-image-content {
  
    align-items: center;
  
}

.s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image-container {
      position: relative;
    }

    .s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d {
    width: 100%;
    height: auto;
  }

  #s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image {
    
    
  }


.s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d .shogun-image-content {
  
    align-items: center;
  
}

.s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image-container {
      position: relative;
    }

    .s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d {
    width: 100%;
    height: auto;
  }

  #s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image {
    
    
  }


.s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d .shogun-image-content {
  
    align-items: center;
  
}

.s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image-container {
      position: relative;
    }

    .s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d {
    width: 100%;
    height: auto;
  }

  #s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image {
    
    
  }


.s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d .shogun-image-content {
  
    align-items: center;
  
}

.s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image-container {
      position: relative;
    }

    .s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f41cc8d0-b1b3-4280-a2ce-46c6d987026d img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-8825d44e-5cbd-4a0a-8fe3-303c79ce84a4 {
  margin-top: 0px;
padding-top: 11px;
padding-bottom: 12px;
}

#s-c4b7d673-7d37-4dfb-b580-422c7868b619 {
  max-width: 645px;
aspect-ratio: 645/460;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-c4b7d673-7d37-4dfb-b580-422c7868b619 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-c4b7d673-7d37-4dfb-b580-422c7868b619 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c4b7d673-7d37-4dfb-b580-422c7868b619 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c4b7d673-7d37-4dfb-b580-422c7868b619 {
    width: 100%;
    height: auto;
  }

  #s-c4b7d673-7d37-4dfb-b580-422c7868b619 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image {
    
    
  }


.s-c4b7d673-7d37-4dfb-b580-422c7868b619 .shogun-image-content {
  
    align-items: center;
  
}

.s-c4b7d673-7d37-4dfb-b580-422c7868b619.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c4b7d673-7d37-4dfb-b580-422c7868b619 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image-container {
      position: relative;
    }

    .s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c4b7d673-7d37-4dfb-b580-422c7868b619 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-c4b7d673-7d37-4dfb-b580-422c7868b619 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-c4b7d673-7d37-4dfb-b580-422c7868b619 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c4b7d673-7d37-4dfb-b580-422c7868b619 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c4b7d673-7d37-4dfb-b580-422c7868b619 {
    width: 100%;
    height: auto;
  }

  #s-c4b7d673-7d37-4dfb-b580-422c7868b619 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image {
    
    
  }


.s-c4b7d673-7d37-4dfb-b580-422c7868b619 .shogun-image-content {
  
    align-items: center;
  
}

.s-c4b7d673-7d37-4dfb-b580-422c7868b619.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c4b7d673-7d37-4dfb-b580-422c7868b619 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image-container {
      position: relative;
    }

    .s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c4b7d673-7d37-4dfb-b580-422c7868b619 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-c4b7d673-7d37-4dfb-b580-422c7868b619 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-c4b7d673-7d37-4dfb-b580-422c7868b619 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c4b7d673-7d37-4dfb-b580-422c7868b619 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c4b7d673-7d37-4dfb-b580-422c7868b619 {
    width: 100%;
    height: auto;
  }

  #s-c4b7d673-7d37-4dfb-b580-422c7868b619 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image {
    
    
  }


.s-c4b7d673-7d37-4dfb-b580-422c7868b619 .shogun-image-content {
  
    align-items: center;
  
}

.s-c4b7d673-7d37-4dfb-b580-422c7868b619.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c4b7d673-7d37-4dfb-b580-422c7868b619 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image-container {
      position: relative;
    }

    .s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c4b7d673-7d37-4dfb-b580-422c7868b619 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-c4b7d673-7d37-4dfb-b580-422c7868b619 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-c4b7d673-7d37-4dfb-b580-422c7868b619 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c4b7d673-7d37-4dfb-b580-422c7868b619 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c4b7d673-7d37-4dfb-b580-422c7868b619 {
    width: 100%;
    height: auto;
  }

  #s-c4b7d673-7d37-4dfb-b580-422c7868b619 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image {
    
    
  }


.s-c4b7d673-7d37-4dfb-b580-422c7868b619 .shogun-image-content {
  
    align-items: center;
  
}

.s-c4b7d673-7d37-4dfb-b580-422c7868b619.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c4b7d673-7d37-4dfb-b580-422c7868b619 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image-container {
      position: relative;
    }

    .s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c4b7d673-7d37-4dfb-b580-422c7868b619 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-c4b7d673-7d37-4dfb-b580-422c7868b619 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-c4b7d673-7d37-4dfb-b580-422c7868b619 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c4b7d673-7d37-4dfb-b580-422c7868b619 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c4b7d673-7d37-4dfb-b580-422c7868b619 {
    width: 100%;
    height: auto;
  }

  #s-c4b7d673-7d37-4dfb-b580-422c7868b619 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image {
    
    
  }


.s-c4b7d673-7d37-4dfb-b580-422c7868b619 .shogun-image-content {
  
    align-items: center;
  
}

.s-c4b7d673-7d37-4dfb-b580-422c7868b619.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c4b7d673-7d37-4dfb-b580-422c7868b619 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image-container {
      position: relative;
    }

    .s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c4b7d673-7d37-4dfb-b580-422c7868b619.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c4b7d673-7d37-4dfb-b580-422c7868b619 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-cc4f45ce-5dfd-4c06-9e70-351ce4581c91 {
  margin-top: 0px;
padding-top: 11px;
padding-bottom: 12px;
}

#s-8e170b07-bef4-4cc9-b625-a0685fcd109a {
  min-height: 30px;
}








#s-8e170b07-bef4-4cc9-b625-a0685fcd109a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8e170b07-bef4-4cc9-b625-a0685fcd109a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-8ae7c609-b40a-41e9-b63c-e60cba6dbd1f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8ae7c609-b40a-41e9-b63c-e60cba6dbd1f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8ae7c609-b40a-41e9-b63c-e60cba6dbd1f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8ae7c609-b40a-41e9-b63c-e60cba6dbd1f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-864ac589-7eac-43ca-8823-1b39b8c46c60 {
  max-width: 645px;
aspect-ratio: 645/460;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-864ac589-7eac-43ca-8823-1b39b8c46c60 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-864ac589-7eac-43ca-8823-1b39b8c46c60 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-864ac589-7eac-43ca-8823-1b39b8c46c60 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-864ac589-7eac-43ca-8823-1b39b8c46c60 {
    width: 100%;
    height: auto;
  }

  #s-864ac589-7eac-43ca-8823-1b39b8c46c60 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image {
    
    
  }


.s-864ac589-7eac-43ca-8823-1b39b8c46c60 .shogun-image-content {
  
    align-items: center;
  
}

.s-864ac589-7eac-43ca-8823-1b39b8c46c60.shg-align-container {
  display: flex;
  justify-content: center
}

.s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-864ac589-7eac-43ca-8823-1b39b8c46c60 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image-container {
      position: relative;
    }

    .s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-864ac589-7eac-43ca-8823-1b39b8c46c60 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-864ac589-7eac-43ca-8823-1b39b8c46c60 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-864ac589-7eac-43ca-8823-1b39b8c46c60 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-864ac589-7eac-43ca-8823-1b39b8c46c60 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-864ac589-7eac-43ca-8823-1b39b8c46c60 {
    width: 100%;
    height: auto;
  }

  #s-864ac589-7eac-43ca-8823-1b39b8c46c60 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image {
    
    
  }


.s-864ac589-7eac-43ca-8823-1b39b8c46c60 .shogun-image-content {
  
    align-items: center;
  
}

.s-864ac589-7eac-43ca-8823-1b39b8c46c60.shg-align-container {
  display: flex;
  justify-content: center
}

.s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-864ac589-7eac-43ca-8823-1b39b8c46c60 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image-container {
      position: relative;
    }

    .s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-864ac589-7eac-43ca-8823-1b39b8c46c60 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-864ac589-7eac-43ca-8823-1b39b8c46c60 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-864ac589-7eac-43ca-8823-1b39b8c46c60 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-864ac589-7eac-43ca-8823-1b39b8c46c60 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-864ac589-7eac-43ca-8823-1b39b8c46c60 {
    width: 100%;
    height: auto;
  }

  #s-864ac589-7eac-43ca-8823-1b39b8c46c60 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image {
    
    
  }


.s-864ac589-7eac-43ca-8823-1b39b8c46c60 .shogun-image-content {
  
    align-items: center;
  
}

.s-864ac589-7eac-43ca-8823-1b39b8c46c60.shg-align-container {
  display: flex;
  justify-content: center
}

.s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-864ac589-7eac-43ca-8823-1b39b8c46c60 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image-container {
      position: relative;
    }

    .s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-864ac589-7eac-43ca-8823-1b39b8c46c60 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-864ac589-7eac-43ca-8823-1b39b8c46c60 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-864ac589-7eac-43ca-8823-1b39b8c46c60 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-864ac589-7eac-43ca-8823-1b39b8c46c60 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-864ac589-7eac-43ca-8823-1b39b8c46c60 {
    width: 100%;
    height: auto;
  }

  #s-864ac589-7eac-43ca-8823-1b39b8c46c60 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image {
    
    
  }


.s-864ac589-7eac-43ca-8823-1b39b8c46c60 .shogun-image-content {
  
    align-items: center;
  
}

.s-864ac589-7eac-43ca-8823-1b39b8c46c60.shg-align-container {
  display: flex;
  justify-content: center
}

.s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-864ac589-7eac-43ca-8823-1b39b8c46c60 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image-container {
      position: relative;
    }

    .s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-864ac589-7eac-43ca-8823-1b39b8c46c60 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-864ac589-7eac-43ca-8823-1b39b8c46c60 .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-864ac589-7eac-43ca-8823-1b39b8c46c60 .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-864ac589-7eac-43ca-8823-1b39b8c46c60 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-864ac589-7eac-43ca-8823-1b39b8c46c60 {
    width: 100%;
    height: auto;
  }

  #s-864ac589-7eac-43ca-8823-1b39b8c46c60 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image {
    
    
  }


.s-864ac589-7eac-43ca-8823-1b39b8c46c60 .shogun-image-content {
  
    align-items: center;
  
}

.s-864ac589-7eac-43ca-8823-1b39b8c46c60.shg-align-container {
  display: flex;
  justify-content: center
}

.s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-864ac589-7eac-43ca-8823-1b39b8c46c60 {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image-container {
      position: relative;
    }

    .s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-864ac589-7eac-43ca-8823-1b39b8c46c60.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-864ac589-7eac-43ca-8823-1b39b8c46c60 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-f3002d38-4421-4d9f-b8a1-c2a1a135f593 {
  margin-top: 0px;
padding-top: 11px;
padding-bottom: 12px;
}

#s-cd9fa786-469f-460e-b0a7-77cf0b4542cc {
  max-width: 645px;
aspect-ratio: 645/460;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-cd9fa786-469f-460e-b0a7-77cf0b4542cc .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-cd9fa786-469f-460e-b0a7-77cf0b4542cc .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cd9fa786-469f-460e-b0a7-77cf0b4542cc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-cd9fa786-469f-460e-b0a7-77cf0b4542cc {
    width: 100%;
    height: auto;
  }

  #s-cd9fa786-469f-460e-b0a7-77cf0b4542cc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image {
    
    
  }


.s-cd9fa786-469f-460e-b0a7-77cf0b4542cc .shogun-image-content {
  
    align-items: center;
  
}

.s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cd9fa786-469f-460e-b0a7-77cf0b4542cc {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image-container {
      position: relative;
    }

    .s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cd9fa786-469f-460e-b0a7-77cf0b4542cc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-cd9fa786-469f-460e-b0a7-77cf0b4542cc .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-cd9fa786-469f-460e-b0a7-77cf0b4542cc .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cd9fa786-469f-460e-b0a7-77cf0b4542cc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-cd9fa786-469f-460e-b0a7-77cf0b4542cc {
    width: 100%;
    height: auto;
  }

  #s-cd9fa786-469f-460e-b0a7-77cf0b4542cc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image {
    
    
  }


.s-cd9fa786-469f-460e-b0a7-77cf0b4542cc .shogun-image-content {
  
    align-items: center;
  
}

.s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cd9fa786-469f-460e-b0a7-77cf0b4542cc {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image-container {
      position: relative;
    }

    .s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cd9fa786-469f-460e-b0a7-77cf0b4542cc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-cd9fa786-469f-460e-b0a7-77cf0b4542cc .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-cd9fa786-469f-460e-b0a7-77cf0b4542cc .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cd9fa786-469f-460e-b0a7-77cf0b4542cc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-cd9fa786-469f-460e-b0a7-77cf0b4542cc {
    width: 100%;
    height: auto;
  }

  #s-cd9fa786-469f-460e-b0a7-77cf0b4542cc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image {
    
    
  }


.s-cd9fa786-469f-460e-b0a7-77cf0b4542cc .shogun-image-content {
  
    align-items: center;
  
}

.s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cd9fa786-469f-460e-b0a7-77cf0b4542cc {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image-container {
      position: relative;
    }

    .s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cd9fa786-469f-460e-b0a7-77cf0b4542cc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-cd9fa786-469f-460e-b0a7-77cf0b4542cc .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-cd9fa786-469f-460e-b0a7-77cf0b4542cc .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cd9fa786-469f-460e-b0a7-77cf0b4542cc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-cd9fa786-469f-460e-b0a7-77cf0b4542cc {
    width: 100%;
    height: auto;
  }

  #s-cd9fa786-469f-460e-b0a7-77cf0b4542cc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image {
    
    
  }


.s-cd9fa786-469f-460e-b0a7-77cf0b4542cc .shogun-image-content {
  
    align-items: center;
  
}

.s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cd9fa786-469f-460e-b0a7-77cf0b4542cc {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image-container {
      position: relative;
    }

    .s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cd9fa786-469f-460e-b0a7-77cf0b4542cc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-cd9fa786-469f-460e-b0a7-77cf0b4542cc .shg-image-content-wrapper {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }

    #s-cd9fa786-469f-460e-b0a7-77cf0b4542cc .shogun-image-link {
      aspect-ratio: 645/460;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cd9fa786-469f-460e-b0a7-77cf0b4542cc .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-cd9fa786-469f-460e-b0a7-77cf0b4542cc {
    width: 100%;
    height: auto;
  }

  #s-cd9fa786-469f-460e-b0a7-77cf0b4542cc img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image {
    
    
  }


.s-cd9fa786-469f-460e-b0a7-77cf0b4542cc .shogun-image-content {
  
    align-items: center;
  
}

.s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cd9fa786-469f-460e-b0a7-77cf0b4542cc {
      --shg-aspect-ratio: calc(645/460); 
    }

    .s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image-container {
      position: relative;
    }

    .s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cd9fa786-469f-460e-b0a7-77cf0b4542cc.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cd9fa786-469f-460e-b0a7-77cf0b4542cc img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-8f2837a1-6151-40c3-afab-9d19c06eee06 {
  margin-top: 0px;
padding-top: 11px;
padding-bottom: 12px;
}

#s-b2e85165-b4b0-4c83-a40d-99fe27324490 {
  min-height: 90px;
}








#s-b2e85165-b4b0-4c83-a40d-99fe27324490 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b2e85165-b4b0-4c83-a40d-99fe27324490.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3963a8e0-385b-4b69-9f62-9111d3d2dffc {
  margin-bottom: 6px;
padding-top: 6px;
padding-bottom: 6px;
text-align: center;
background-color: rgba(0, 128, 128, 1);
}

#s-3963a8e0-385b-4b69-9f62-9111d3d2dffc .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Raleway";
  font-style:  normal ;
  font-size: 42px;
  
  
  
}



#s-c61c0a1c-a50d-4c01-a433-aa764d8db5f6 {
  margin-top: 9px;
}

@media (min-width: 0px) {
[id="s-c61c0a1c-a50d-4c01-a433-aa764d8db5f6"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 25.0px);
}

}

@media (min-width: 768px) {
[id="s-c61c0a1c-a50d-4c01-a433-aa764d8db5f6"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 37.5px);
}

}

@media (min-width: 992px) {
[id="s-c61c0a1c-a50d-4c01-a433-aa764d8db5f6"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 37.5px);
}

}

@media (min-width: 1200px) {
[id="s-c61c0a1c-a50d-4c01-a433-aa764d8db5f6"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 37.5px);
}

}

#s-e39df5a8-6978-4918-a4f9-1c2583f7d5fb {
  margin-bottom: 30px;
}

#s-430f4303-8f9e-4867-8883-310cf7814005 {
  text-align: left;
}



.shg-c#s-430f4303-8f9e-4867-8883-310cf7814005 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-430f4303-8f9e-4867-8883-310cf7814005 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-430f4303-8f9e-4867-8883-310cf7814005 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-430f4303-8f9e-4867-8883-310cf7814005 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-430f4303-8f9e-4867-8883-310cf7814005 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-430f4303-8f9e-4867-8883-310cf7814005 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-430f4303-8f9e-4867-8883-310cf7814005 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-430f4303-8f9e-4867-8883-310cf7814005 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-430f4303-8f9e-4867-8883-310cf7814005 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-430f4303-8f9e-4867-8883-310cf7814005 img.shogun-image {
  width: 100%;
}



}
#s-340500f7-97ed-4d8b-8ce0-d4d2dde8f31e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-340500f7-97ed-4d8b-8ce0-d4d2dde8f31e .shg-product-title-component h4 {
  color: rgba(68, 68, 68, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-f50bb05d-55db-4079-a5c8-d48fd60081c9 {
  text-align: center;
}

#s-f50bb05d-55db-4079-a5c8-d48fd60081c9 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-f50bb05d-55db-4079-a5c8-d48fd60081c9 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-f50bb05d-55db-4079-a5c8-d48fd60081c9 .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-9e0fa811-5511-4b3e-8b02-319615a94a0b {
  margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-9e0fa811-5511-4b3e-8b02-319615a94a0b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9e0fa811-5511-4b3e-8b02-319615a94a0b:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-9e0fa811-5511-4b3e-8b02-319615a94a0b {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-9e0fa811-5511-4b3e-8b02-319615a94a0b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-9e0fa811-5511-4b3e-8b02-319615a94a0b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-9e0fa811-5511-4b3e-8b02-319615a94a0b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-9e0fa811-5511-4b3e-8b02-319615a94a0b.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-b57f3676-bd9c-4bdd-affc-5eeeea3606eb {
  text-align: left;
}



.shg-c#s-b57f3676-bd9c-4bdd-affc-5eeeea3606eb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b57f3676-bd9c-4bdd-affc-5eeeea3606eb img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-b57f3676-bd9c-4bdd-affc-5eeeea3606eb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b57f3676-bd9c-4bdd-affc-5eeeea3606eb img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-b57f3676-bd9c-4bdd-affc-5eeeea3606eb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b57f3676-bd9c-4bdd-affc-5eeeea3606eb img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-b57f3676-bd9c-4bdd-affc-5eeeea3606eb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b57f3676-bd9c-4bdd-affc-5eeeea3606eb img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-b57f3676-bd9c-4bdd-affc-5eeeea3606eb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b57f3676-bd9c-4bdd-affc-5eeeea3606eb img.shogun-image {
  width: 100%;
}



}
#s-5d0040eb-5778-4a20-addd-3115ededad43 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5d0040eb-5778-4a20-addd-3115ededad43 .shg-product-title-component h4 {
  color: rgba(68, 68, 68, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-31761476-b5c8-4d87-a5da-9f64102ef2fa {
  text-align: center;
}

#s-31761476-b5c8-4d87-a5da-9f64102ef2fa .shg-product-sold-out {
  display: none;
  color: rgba(6, 6, 6, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-31761476-b5c8-4d87-a5da-9f64102ef2fa .shg-product-price {
  color: rgba(6, 6, 6, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-31761476-b5c8-4d87-a5da-9f64102ef2fa .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-b508260f-b00a-491c-bb86-26c7a2405808 {
  margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-b508260f-b00a-491c-bb86-26c7a2405808:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b508260f-b00a-491c-bb86-26c7a2405808:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-b508260f-b00a-491c-bb86-26c7a2405808 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b508260f-b00a-491c-bb86-26c7a2405808.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b508260f-b00a-491c-bb86-26c7a2405808.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-b508260f-b00a-491c-bb86-26c7a2405808.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-b508260f-b00a-491c-bb86-26c7a2405808.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-16dd5e47-04a4-4c9e-840b-7f8151e9e93a {
  text-align: left;
}



.shg-c#s-16dd5e47-04a4-4c9e-840b-7f8151e9e93a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-16dd5e47-04a4-4c9e-840b-7f8151e9e93a img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-16dd5e47-04a4-4c9e-840b-7f8151e9e93a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-16dd5e47-04a4-4c9e-840b-7f8151e9e93a img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-16dd5e47-04a4-4c9e-840b-7f8151e9e93a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-16dd5e47-04a4-4c9e-840b-7f8151e9e93a img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-16dd5e47-04a4-4c9e-840b-7f8151e9e93a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-16dd5e47-04a4-4c9e-840b-7f8151e9e93a img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-16dd5e47-04a4-4c9e-840b-7f8151e9e93a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-16dd5e47-04a4-4c9e-840b-7f8151e9e93a img.shogun-image {
  width: 100%;
}



}
#s-7ea4d5ac-d80b-4c0c-9c4d-19a1cdc1a02c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7ea4d5ac-d80b-4c0c-9c4d-19a1cdc1a02c .shg-product-title-component h4 {
  color: rgba(68, 68, 68, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-2ee68305-3bc4-4ca1-b413-ca62e15037a8 {
  text-align: center;
}

#s-2ee68305-3bc4-4ca1-b413-ca62e15037a8 .shg-product-sold-out {
  display: none;
  color: rgba(10, 10, 10, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-2ee68305-3bc4-4ca1-b413-ca62e15037a8 .shg-product-price {
  color: rgba(10, 10, 10, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-2ee68305-3bc4-4ca1-b413-ca62e15037a8 .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-04577630-44fa-4907-a8d4-4788f6313c33 {
  margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-04577630-44fa-4907-a8d4-4788f6313c33:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-04577630-44fa-4907-a8d4-4788f6313c33:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-04577630-44fa-4907-a8d4-4788f6313c33 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-04577630-44fa-4907-a8d4-4788f6313c33.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-04577630-44fa-4907-a8d4-4788f6313c33.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-04577630-44fa-4907-a8d4-4788f6313c33.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-04577630-44fa-4907-a8d4-4788f6313c33.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-b5ba8e51-a3d1-4c03-86d6-6ec74b4e7e0f {
  text-align: left;
}



.shg-c#s-b5ba8e51-a3d1-4c03-86d6-6ec74b4e7e0f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b5ba8e51-a3d1-4c03-86d6-6ec74b4e7e0f img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-b5ba8e51-a3d1-4c03-86d6-6ec74b4e7e0f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b5ba8e51-a3d1-4c03-86d6-6ec74b4e7e0f img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-b5ba8e51-a3d1-4c03-86d6-6ec74b4e7e0f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b5ba8e51-a3d1-4c03-86d6-6ec74b4e7e0f img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-b5ba8e51-a3d1-4c03-86d6-6ec74b4e7e0f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b5ba8e51-a3d1-4c03-86d6-6ec74b4e7e0f img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-b5ba8e51-a3d1-4c03-86d6-6ec74b4e7e0f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b5ba8e51-a3d1-4c03-86d6-6ec74b4e7e0f img.shogun-image {
  width: 100%;
}



}
#s-b3c88748-d0b2-4308-91aa-ff68a605e744 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b3c88748-d0b2-4308-91aa-ff68a605e744 .shg-product-title-component h4 {
  color: rgba(68, 68, 68, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-70367255-ad83-405d-8e0e-f8c0069f97c6 {
  text-align: center;
}

#s-70367255-ad83-405d-8e0e-f8c0069f97c6 .shg-product-sold-out {
  display: none;
  color: rgba(1, 0, 0, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-70367255-ad83-405d-8e0e-f8c0069f97c6 .shg-product-price {
  color: rgba(1, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-70367255-ad83-405d-8e0e-f8c0069f97c6 .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-e85e2df1-9627-478e-98ab-2a89652768f5 {
  margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-e85e2df1-9627-478e-98ab-2a89652768f5:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e85e2df1-9627-478e-98ab-2a89652768f5:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-e85e2df1-9627-478e-98ab-2a89652768f5 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-e85e2df1-9627-478e-98ab-2a89652768f5.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-e85e2df1-9627-478e-98ab-2a89652768f5.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-e85e2df1-9627-478e-98ab-2a89652768f5.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-e85e2df1-9627-478e-98ab-2a89652768f5.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-37f95706-0c3c-4dd1-843b-dad90e69cd0a {
  min-height: 30px;
}








#s-37f95706-0c3c-4dd1-843b-dad90e69cd0a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-37f95706-0c3c-4dd1-843b-dad90e69cd0a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9d7943b9-7075-4002-8f82-2281a28e97c8 {
  min-height: 60px;
}








#s-9d7943b9-7075-4002-8f82-2281a28e97c8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9d7943b9-7075-4002-8f82-2281a28e97c8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-138d554a-59ce-4d04-a5ef-785d0adb6c2c {
  margin-top: 9px;
}

@media (min-width: 0px) {
[id="s-138d554a-59ce-4d04-a5ef-785d0adb6c2c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 25.0px);
}

}

@media (min-width: 768px) {
[id="s-138d554a-59ce-4d04-a5ef-785d0adb6c2c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 37.5px);
}

}

@media (min-width: 992px) {
[id="s-138d554a-59ce-4d04-a5ef-785d0adb6c2c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 37.5px);
}

}

@media (min-width: 1200px) {
[id="s-138d554a-59ce-4d04-a5ef-785d0adb6c2c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 37.5px);
}

}

#s-79a7e6b8-83ee-44d4-9850-851ebc36a85c {
  margin-bottom: 30px;
}

#s-bcbccb6a-1b80-447f-b51a-a337d917fdba {
  text-align: left;
}



.shg-c#s-bcbccb6a-1b80-447f-b51a-a337d917fdba .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bcbccb6a-1b80-447f-b51a-a337d917fdba img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-bcbccb6a-1b80-447f-b51a-a337d917fdba .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bcbccb6a-1b80-447f-b51a-a337d917fdba img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-bcbccb6a-1b80-447f-b51a-a337d917fdba .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bcbccb6a-1b80-447f-b51a-a337d917fdba img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-bcbccb6a-1b80-447f-b51a-a337d917fdba .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bcbccb6a-1b80-447f-b51a-a337d917fdba img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-bcbccb6a-1b80-447f-b51a-a337d917fdba .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bcbccb6a-1b80-447f-b51a-a337d917fdba img.shogun-image {
  width: 100%;
}



}
#s-df14f5fb-f57b-405f-91f8-fe323b8b148f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-df14f5fb-f57b-405f-91f8-fe323b8b148f .shg-product-title-component h4 {
  color: rgba(68, 68, 68, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-6b45cb65-d7b0-4d15-8c35-21f578cb72f4 {
  text-align: center;
}

#s-6b45cb65-d7b0-4d15-8c35-21f578cb72f4 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-6b45cb65-d7b0-4d15-8c35-21f578cb72f4 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-6b45cb65-d7b0-4d15-8c35-21f578cb72f4 .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-c9f961b8-ac5b-43a2-acdb-a28117d80b12 {
  margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-c9f961b8-ac5b-43a2-acdb-a28117d80b12:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c9f961b8-ac5b-43a2-acdb-a28117d80b12:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-c9f961b8-ac5b-43a2-acdb-a28117d80b12 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-c9f961b8-ac5b-43a2-acdb-a28117d80b12.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-c9f961b8-ac5b-43a2-acdb-a28117d80b12.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-c9f961b8-ac5b-43a2-acdb-a28117d80b12.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-c9f961b8-ac5b-43a2-acdb-a28117d80b12.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-6ac504ad-5cfe-4078-99a3-94cbc9a88b18 {
  margin-bottom: 30px;
}

#s-a6f89e75-484c-4012-b1e4-7148cca64676 {
  text-align: left;
}



.shg-c#s-a6f89e75-484c-4012-b1e4-7148cca64676 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a6f89e75-484c-4012-b1e4-7148cca64676 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-a6f89e75-484c-4012-b1e4-7148cca64676 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a6f89e75-484c-4012-b1e4-7148cca64676 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-a6f89e75-484c-4012-b1e4-7148cca64676 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a6f89e75-484c-4012-b1e4-7148cca64676 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-a6f89e75-484c-4012-b1e4-7148cca64676 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a6f89e75-484c-4012-b1e4-7148cca64676 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-a6f89e75-484c-4012-b1e4-7148cca64676 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a6f89e75-484c-4012-b1e4-7148cca64676 img.shogun-image {
  width: 100%;
}



}
#s-4c4e8e7f-30c2-461e-b284-f6a58adbb4f4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4c4e8e7f-30c2-461e-b284-f6a58adbb4f4 .shg-product-title-component h4 {
  color: rgba(68, 68, 68, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-4ec66343-bd6b-4cde-8857-f6adbc708b30 {
  text-align: center;
}

#s-4ec66343-bd6b-4cde-8857-f6adbc708b30 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-4ec66343-bd6b-4cde-8857-f6adbc708b30 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-4ec66343-bd6b-4cde-8857-f6adbc708b30 .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-b25226aa-9fcb-41e7-8f30-51d127026dd7 {
  margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-b25226aa-9fcb-41e7-8f30-51d127026dd7:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b25226aa-9fcb-41e7-8f30-51d127026dd7:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-b25226aa-9fcb-41e7-8f30-51d127026dd7 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b25226aa-9fcb-41e7-8f30-51d127026dd7.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b25226aa-9fcb-41e7-8f30-51d127026dd7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-b25226aa-9fcb-41e7-8f30-51d127026dd7.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-b25226aa-9fcb-41e7-8f30-51d127026dd7.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-377b7024-a8ff-4212-a583-74e3f7388ab7 {
  text-align: left;
}



.shg-c#s-377b7024-a8ff-4212-a583-74e3f7388ab7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-377b7024-a8ff-4212-a583-74e3f7388ab7 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-377b7024-a8ff-4212-a583-74e3f7388ab7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-377b7024-a8ff-4212-a583-74e3f7388ab7 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-377b7024-a8ff-4212-a583-74e3f7388ab7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-377b7024-a8ff-4212-a583-74e3f7388ab7 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-377b7024-a8ff-4212-a583-74e3f7388ab7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-377b7024-a8ff-4212-a583-74e3f7388ab7 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-377b7024-a8ff-4212-a583-74e3f7388ab7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-377b7024-a8ff-4212-a583-74e3f7388ab7 img.shogun-image {
  width: 100%;
}



}
#s-6017450b-73bd-40cb-b6e4-23427f7afa6e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6017450b-73bd-40cb-b6e4-23427f7afa6e .shg-product-title-component h4 {
  color: rgba(68, 68, 68, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-303d6222-c82b-407b-ab27-b054512a0071 {
  text-align: center;
}

#s-303d6222-c82b-407b-ab27-b054512a0071 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-303d6222-c82b-407b-ab27-b054512a0071 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-303d6222-c82b-407b-ab27-b054512a0071 .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-c473dc57-206c-4889-be7b-8d5be1b81a62 {
  margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-c473dc57-206c-4889-be7b-8d5be1b81a62:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c473dc57-206c-4889-be7b-8d5be1b81a62:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-c473dc57-206c-4889-be7b-8d5be1b81a62 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-c473dc57-206c-4889-be7b-8d5be1b81a62.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-c473dc57-206c-4889-be7b-8d5be1b81a62.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-c473dc57-206c-4889-be7b-8d5be1b81a62.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-c473dc57-206c-4889-be7b-8d5be1b81a62.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-5ae60cf0-b565-4a2b-bd2b-4d17c831ed99 {
  text-align: left;
}



.shg-c#s-5ae60cf0-b565-4a2b-bd2b-4d17c831ed99 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5ae60cf0-b565-4a2b-bd2b-4d17c831ed99 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-5ae60cf0-b565-4a2b-bd2b-4d17c831ed99 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5ae60cf0-b565-4a2b-bd2b-4d17c831ed99 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-5ae60cf0-b565-4a2b-bd2b-4d17c831ed99 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5ae60cf0-b565-4a2b-bd2b-4d17c831ed99 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-5ae60cf0-b565-4a2b-bd2b-4d17c831ed99 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5ae60cf0-b565-4a2b-bd2b-4d17c831ed99 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-5ae60cf0-b565-4a2b-bd2b-4d17c831ed99 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5ae60cf0-b565-4a2b-bd2b-4d17c831ed99 img.shogun-image {
  width: 100%;
}



}
#s-6b4e0712-d11d-42d0-8e54-6ad8d8e2b153 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6b4e0712-d11d-42d0-8e54-6ad8d8e2b153 .shg-product-title-component h4 {
  color: rgba(68, 68, 68, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-ee24a311-00be-490d-95cb-8c1b16b48965 {
  text-align: center;
}

#s-ee24a311-00be-490d-95cb-8c1b16b48965 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-ee24a311-00be-490d-95cb-8c1b16b48965 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-ee24a311-00be-490d-95cb-8c1b16b48965 .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-47e94437-fb32-4172-9720-e10530a181bc {
  margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-47e94437-fb32-4172-9720-e10530a181bc:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-47e94437-fb32-4172-9720-e10530a181bc:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-47e94437-fb32-4172-9720-e10530a181bc {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-47e94437-fb32-4172-9720-e10530a181bc.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-47e94437-fb32-4172-9720-e10530a181bc.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-47e94437-fb32-4172-9720-e10530a181bc.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-47e94437-fb32-4172-9720-e10530a181bc.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-b8942426-4aeb-4aa6-9016-862369d5cddc {
  min-height: 60px;
}








#s-b8942426-4aeb-4aa6-9016-862369d5cddc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b8942426-4aeb-4aa6-9016-862369d5cddc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-438d7097-e7ab-4228-8fe6-75fa57369914 {
  margin-top: 9px;
}

@media (min-width: 0px) {
[id="s-438d7097-e7ab-4228-8fe6-75fa57369914"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-438d7097-e7ab-4228-8fe6-75fa57369914"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

@media (min-width: 992px) {
[id="s-438d7097-e7ab-4228-8fe6-75fa57369914"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

@media (min-width: 1200px) {
[id="s-438d7097-e7ab-4228-8fe6-75fa57369914"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

#s-d9c752cf-9364-48b5-9823-c4849bcd2ca7 {
  text-align: left;
}



.shg-c#s-d9c752cf-9364-48b5-9823-c4849bcd2ca7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d9c752cf-9364-48b5-9823-c4849bcd2ca7 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-d9c752cf-9364-48b5-9823-c4849bcd2ca7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d9c752cf-9364-48b5-9823-c4849bcd2ca7 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-d9c752cf-9364-48b5-9823-c4849bcd2ca7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d9c752cf-9364-48b5-9823-c4849bcd2ca7 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-d9c752cf-9364-48b5-9823-c4849bcd2ca7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d9c752cf-9364-48b5-9823-c4849bcd2ca7 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-d9c752cf-9364-48b5-9823-c4849bcd2ca7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d9c752cf-9364-48b5-9823-c4849bcd2ca7 img.shogun-image {
  width: 100%;
}



}
#s-a08a39e9-45e8-4c14-a206-a1ef37dcc8d9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a08a39e9-45e8-4c14-a206-a1ef37dcc8d9 .shg-product-title-component h4 {
  color: rgba(68, 68, 68, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-65bfd101-f023-4c33-b0d3-482eb2658049 {
  text-align: center;
}

#s-65bfd101-f023-4c33-b0d3-482eb2658049 .shg-product-sold-out {
  display: none;
  color: rgba(10, 10, 10, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-65bfd101-f023-4c33-b0d3-482eb2658049 .shg-product-price {
  color: rgba(10, 10, 10, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-65bfd101-f023-4c33-b0d3-482eb2658049 .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-8d7a9764-0b52-4616-be18-b7281f5b2249 {
  margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-8d7a9764-0b52-4616-be18-b7281f5b2249:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8d7a9764-0b52-4616-be18-b7281f5b2249:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-8d7a9764-0b52-4616-be18-b7281f5b2249 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-8d7a9764-0b52-4616-be18-b7281f5b2249.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-8d7a9764-0b52-4616-be18-b7281f5b2249.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-8d7a9764-0b52-4616-be18-b7281f5b2249.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-8d7a9764-0b52-4616-be18-b7281f5b2249.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-7f2136e3-476b-4abf-9a29-5961c59935cc {
  margin-bottom: 30px;
}

#s-26ce50e4-cbb8-4f96-a09b-62ac58cc0cc8 {
  text-align: left;
}



.shg-c#s-26ce50e4-cbb8-4f96-a09b-62ac58cc0cc8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-26ce50e4-cbb8-4f96-a09b-62ac58cc0cc8 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-26ce50e4-cbb8-4f96-a09b-62ac58cc0cc8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-26ce50e4-cbb8-4f96-a09b-62ac58cc0cc8 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-26ce50e4-cbb8-4f96-a09b-62ac58cc0cc8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-26ce50e4-cbb8-4f96-a09b-62ac58cc0cc8 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-26ce50e4-cbb8-4f96-a09b-62ac58cc0cc8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-26ce50e4-cbb8-4f96-a09b-62ac58cc0cc8 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-26ce50e4-cbb8-4f96-a09b-62ac58cc0cc8 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-26ce50e4-cbb8-4f96-a09b-62ac58cc0cc8 img.shogun-image {
  width: 100%;
}



}
#s-305094bb-1fdc-4180-912c-7502c6d6b81d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-305094bb-1fdc-4180-912c-7502c6d6b81d .shg-product-title-component h4 {
  color: rgba(68, 68, 68, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-faade78c-fc56-4b76-a95d-50dc328d584e {
  text-align: center;
}

#s-faade78c-fc56-4b76-a95d-50dc328d584e .shg-product-sold-out {
  display: none;
  color: rgba(6, 0, 0, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-faade78c-fc56-4b76-a95d-50dc328d584e .shg-product-price {
  color: rgba(6, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-faade78c-fc56-4b76-a95d-50dc328d584e .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-bf805b29-c68e-47fe-9ff8-b3512bdacc2a {
  margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-bf805b29-c68e-47fe-9ff8-b3512bdacc2a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-bf805b29-c68e-47fe-9ff8-b3512bdacc2a:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-bf805b29-c68e-47fe-9ff8-b3512bdacc2a {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-bf805b29-c68e-47fe-9ff8-b3512bdacc2a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-bf805b29-c68e-47fe-9ff8-b3512bdacc2a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-bf805b29-c68e-47fe-9ff8-b3512bdacc2a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-bf805b29-c68e-47fe-9ff8-b3512bdacc2a.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-7b157645-5d60-4acf-bbb4-0e2f3bb43dac {
  text-align: left;
}



.shg-c#s-7b157645-5d60-4acf-bbb4-0e2f3bb43dac .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7b157645-5d60-4acf-bbb4-0e2f3bb43dac img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-7b157645-5d60-4acf-bbb4-0e2f3bb43dac .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7b157645-5d60-4acf-bbb4-0e2f3bb43dac img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-7b157645-5d60-4acf-bbb4-0e2f3bb43dac .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7b157645-5d60-4acf-bbb4-0e2f3bb43dac img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-7b157645-5d60-4acf-bbb4-0e2f3bb43dac .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7b157645-5d60-4acf-bbb4-0e2f3bb43dac img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-7b157645-5d60-4acf-bbb4-0e2f3bb43dac .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7b157645-5d60-4acf-bbb4-0e2f3bb43dac img.shogun-image {
  width: 100%;
}



}
#s-a7a8e789-f743-4481-9156-3e48544b3283 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a7a8e789-f743-4481-9156-3e48544b3283 .shg-product-title-component h4 {
  color: rgba(68, 68, 68, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-c37a38cd-245e-4906-bd5b-9f3353ea4296 {
  text-align: center;
}

#s-c37a38cd-245e-4906-bd5b-9f3353ea4296 .shg-product-sold-out {
  display: none;
  color: rgba(6, 6, 6, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-c37a38cd-245e-4906-bd5b-9f3353ea4296 .shg-product-price {
  color: rgba(6, 6, 6, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-c37a38cd-245e-4906-bd5b-9f3353ea4296 .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-fe4b6c50-f228-45de-998d-4013cf344ebb {
  margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-fe4b6c50-f228-45de-998d-4013cf344ebb:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-fe4b6c50-f228-45de-998d-4013cf344ebb:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-fe4b6c50-f228-45de-998d-4013cf344ebb {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-fe4b6c50-f228-45de-998d-4013cf344ebb.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-fe4b6c50-f228-45de-998d-4013cf344ebb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-fe4b6c50-f228-45de-998d-4013cf344ebb.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-fe4b6c50-f228-45de-998d-4013cf344ebb.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-22d5016c-9075-42cd-bb92-7ef695ea97ac {
  min-height: 60px;
}








#s-22d5016c-9075-42cd-bb92-7ef695ea97ac > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-22d5016c-9075-42cd-bb92-7ef695ea97ac.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f9c168a1-a562-4156-a057-4c0ec1036480 {
  min-height: 60px;
}








#s-f9c168a1-a562-4156-a057-4c0ec1036480 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f9c168a1-a562-4156-a057-4c0ec1036480.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f6328fa7-833a-4ffd-80ba-640db2c9c271 {
  padding-top: 5px;
padding-left: 20px;
padding-bottom: 5px;
padding-right: 20px;
border-radius: 0px;
min-height: 48px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
}
#s-f6328fa7-833a-4ffd-80ba-640db2c9c271:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-f6328fa7-833a-4ffd-80ba-640db2c9c271:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-f6328fa7-833a-4ffd-80ba-640db2c9c271-root {
    text-align: center;
  }


#s-f6328fa7-833a-4ffd-80ba-640db2c9c271.shg-btn {
  color: #ffffff;
  font-size: 35px;
  font-weight: 600;
  
  font-family: Raleway;
  display:  block ;
}
@media (min-width: 1200px){
  #s-f6328fa7-833a-4ffd-80ba-640db2c9c271-root {
    text-align: center;
  }


#s-f6328fa7-833a-4ffd-80ba-640db2c9c271.shg-btn {
  color: #ffffff;
  font-size: 35px;
  font-weight: 600;
  
  font-family: Raleway;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f6328fa7-833a-4ffd-80ba-640db2c9c271-root {
    text-align: center;
  }


#s-f6328fa7-833a-4ffd-80ba-640db2c9c271.shg-btn {
  color: #ffffff;
  font-size: 35px;
  font-weight: 600;
  
  font-family: Raleway;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f6328fa7-833a-4ffd-80ba-640db2c9c271-root {
    text-align: center;
  }


#s-f6328fa7-833a-4ffd-80ba-640db2c9c271.shg-btn {
  color: #ffffff;
  font-size: 35px;
  font-weight: 600;
  
  font-family: Raleway;
  display:  block ;
}
}@media (max-width: 767px){
  #s-f6328fa7-833a-4ffd-80ba-640db2c9c271-root {
    text-align: center;
  }


#s-f6328fa7-833a-4ffd-80ba-640db2c9c271.shg-btn {
  color: #ffffff;
  font-size: 35px;
  font-weight: 600;
  
  font-family: Raleway;
  display:  block ;
}
}
#s-fbd5e4d2-5a2e-4372-9195-3cb087ec1d1f {
  margin-top: 9px;
}

@media (min-width: 0px) {
[id="s-fbd5e4d2-5a2e-4372-9195-3cb087ec1d1f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 25.0px);
}

}

@media (min-width: 768px) {
[id="s-fbd5e4d2-5a2e-4372-9195-3cb087ec1d1f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 37.5px);
}

}

@media (min-width: 992px) {
[id="s-fbd5e4d2-5a2e-4372-9195-3cb087ec1d1f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 37.5px);
}

}

@media (min-width: 1200px) {
[id="s-fbd5e4d2-5a2e-4372-9195-3cb087ec1d1f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 37.5px);
}

}

#s-c9c5d76a-e850-46a6-baa3-0903b1aec58c {
  margin-bottom: 30px;
}

#s-77ade17e-6d81-4149-9aa4-b5548cddeaa3 {
  text-align: left;
}



.shg-c#s-77ade17e-6d81-4149-9aa4-b5548cddeaa3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-77ade17e-6d81-4149-9aa4-b5548cddeaa3 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-77ade17e-6d81-4149-9aa4-b5548cddeaa3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-77ade17e-6d81-4149-9aa4-b5548cddeaa3 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-77ade17e-6d81-4149-9aa4-b5548cddeaa3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-77ade17e-6d81-4149-9aa4-b5548cddeaa3 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-77ade17e-6d81-4149-9aa4-b5548cddeaa3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-77ade17e-6d81-4149-9aa4-b5548cddeaa3 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-77ade17e-6d81-4149-9aa4-b5548cddeaa3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-77ade17e-6d81-4149-9aa4-b5548cddeaa3 img.shogun-image {
  width: 100%;
}



}
#s-db2452cc-6e1c-482e-a5a7-ed6fd09c1a0a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-db2452cc-6e1c-482e-a5a7-ed6fd09c1a0a .shg-product-title-component h4 {
  color: rgba(68, 68, 68, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-6e15dcbb-8c83-4dc5-9edf-81fe5fe5fb4f {
  text-align: center;
}

#s-6e15dcbb-8c83-4dc5-9edf-81fe5fe5fb4f .shg-product-sold-out {
  display: none;
  color: rgba(34, 34, 34, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-6e15dcbb-8c83-4dc5-9edf-81fe5fe5fb4f .shg-product-price {
  color: rgba(34, 34, 34, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-6e15dcbb-8c83-4dc5-9edf-81fe5fe5fb4f .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-eedd4025-1341-42a6-bb24-fa4954841c66 {
  margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-eedd4025-1341-42a6-bb24-fa4954841c66:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-eedd4025-1341-42a6-bb24-fa4954841c66:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-eedd4025-1341-42a6-bb24-fa4954841c66 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-eedd4025-1341-42a6-bb24-fa4954841c66.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-eedd4025-1341-42a6-bb24-fa4954841c66.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-eedd4025-1341-42a6-bb24-fa4954841c66.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-eedd4025-1341-42a6-bb24-fa4954841c66.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-335aa9ce-b813-41fd-8474-e059199b21a4 {
  margin-bottom: 30px;
}

#s-d482b06d-6b44-405e-9109-3746f9fb7167 {
  text-align: left;
}



.shg-c#s-d482b06d-6b44-405e-9109-3746f9fb7167 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d482b06d-6b44-405e-9109-3746f9fb7167 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-d482b06d-6b44-405e-9109-3746f9fb7167 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d482b06d-6b44-405e-9109-3746f9fb7167 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-d482b06d-6b44-405e-9109-3746f9fb7167 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d482b06d-6b44-405e-9109-3746f9fb7167 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-d482b06d-6b44-405e-9109-3746f9fb7167 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d482b06d-6b44-405e-9109-3746f9fb7167 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-d482b06d-6b44-405e-9109-3746f9fb7167 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d482b06d-6b44-405e-9109-3746f9fb7167 img.shogun-image {
  width: 100%;
}



}
#s-20679e12-3532-4329-aa1a-3a9185b3bdf9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-20679e12-3532-4329-aa1a-3a9185b3bdf9 .shg-product-title-component h4 {
  color: rgba(68, 68, 68, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-6ca9c608-a880-4bec-80e6-e62f6db25eb2 {
  text-align: center;
}

#s-6ca9c608-a880-4bec-80e6-e62f6db25eb2 .shg-product-sold-out {
  display: none;
  color: rgba(34, 34, 34, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-6ca9c608-a880-4bec-80e6-e62f6db25eb2 .shg-product-price {
  color: rgba(34, 34, 34, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-6ca9c608-a880-4bec-80e6-e62f6db25eb2 .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-336fd39a-3e92-46aa-8c41-a1d0f94facd6 {
  margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-336fd39a-3e92-46aa-8c41-a1d0f94facd6:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-336fd39a-3e92-46aa-8c41-a1d0f94facd6:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-336fd39a-3e92-46aa-8c41-a1d0f94facd6 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-336fd39a-3e92-46aa-8c41-a1d0f94facd6.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-336fd39a-3e92-46aa-8c41-a1d0f94facd6.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-336fd39a-3e92-46aa-8c41-a1d0f94facd6.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-336fd39a-3e92-46aa-8c41-a1d0f94facd6.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-fc34de7d-7bf0-41d2-b1e0-7bfa96ffd209 {
  text-align: left;
}



.shg-c#s-fc34de7d-7bf0-41d2-b1e0-7bfa96ffd209 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fc34de7d-7bf0-41d2-b1e0-7bfa96ffd209 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-fc34de7d-7bf0-41d2-b1e0-7bfa96ffd209 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fc34de7d-7bf0-41d2-b1e0-7bfa96ffd209 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-fc34de7d-7bf0-41d2-b1e0-7bfa96ffd209 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fc34de7d-7bf0-41d2-b1e0-7bfa96ffd209 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-fc34de7d-7bf0-41d2-b1e0-7bfa96ffd209 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fc34de7d-7bf0-41d2-b1e0-7bfa96ffd209 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-fc34de7d-7bf0-41d2-b1e0-7bfa96ffd209 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fc34de7d-7bf0-41d2-b1e0-7bfa96ffd209 img.shogun-image {
  width: 100%;
}



}
#s-c6b855bf-db5b-4773-b066-a31204721c32 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c6b855bf-db5b-4773-b066-a31204721c32 .shg-product-title-component h4 {
  color: rgba(68, 68, 68, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-89a762e9-2dc1-419b-b962-d57dd71a061f {
  text-align: center;
}

#s-89a762e9-2dc1-419b-b962-d57dd71a061f .shg-product-sold-out {
  display: none;
  color: rgba(34, 34, 34, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-89a762e9-2dc1-419b-b962-d57dd71a061f .shg-product-price {
  color: rgba(34, 34, 34, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-89a762e9-2dc1-419b-b962-d57dd71a061f .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-79e3e674-9b95-47bd-8740-6bc3824d93dd {
  margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-79e3e674-9b95-47bd-8740-6bc3824d93dd:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-79e3e674-9b95-47bd-8740-6bc3824d93dd:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-79e3e674-9b95-47bd-8740-6bc3824d93dd {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-79e3e674-9b95-47bd-8740-6bc3824d93dd.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-79e3e674-9b95-47bd-8740-6bc3824d93dd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-79e3e674-9b95-47bd-8740-6bc3824d93dd.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-79e3e674-9b95-47bd-8740-6bc3824d93dd.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-7a006b3d-7a10-4ace-8062-c0583c39227c {
  text-align: left;
}



.shg-c#s-7a006b3d-7a10-4ace-8062-c0583c39227c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a006b3d-7a10-4ace-8062-c0583c39227c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-7a006b3d-7a10-4ace-8062-c0583c39227c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a006b3d-7a10-4ace-8062-c0583c39227c img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-7a006b3d-7a10-4ace-8062-c0583c39227c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a006b3d-7a10-4ace-8062-c0583c39227c img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-7a006b3d-7a10-4ace-8062-c0583c39227c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a006b3d-7a10-4ace-8062-c0583c39227c img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-7a006b3d-7a10-4ace-8062-c0583c39227c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a006b3d-7a10-4ace-8062-c0583c39227c img.shogun-image {
  width: 100%;
}



}
#s-b563cac1-417c-4381-b10d-ace2bfa176d0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b563cac1-417c-4381-b10d-ace2bfa176d0 .shg-product-title-component h4 {
  color: rgba(68, 68, 68, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-807adfce-a716-4e71-b333-6456749079a8 {
  text-align: center;
}

#s-807adfce-a716-4e71-b333-6456749079a8 .shg-product-sold-out {
  display: none;
  color: rgba(34, 34, 34, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-807adfce-a716-4e71-b333-6456749079a8 .shg-product-price {
  color: rgba(34, 34, 34, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-807adfce-a716-4e71-b333-6456749079a8 .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-01a22d7a-127c-4669-9bff-c14426728f24 {
  margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-01a22d7a-127c-4669-9bff-c14426728f24:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-01a22d7a-127c-4669-9bff-c14426728f24:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-01a22d7a-127c-4669-9bff-c14426728f24 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-01a22d7a-127c-4669-9bff-c14426728f24.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-01a22d7a-127c-4669-9bff-c14426728f24.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-01a22d7a-127c-4669-9bff-c14426728f24.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-01a22d7a-127c-4669-9bff-c14426728f24.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-c9f35cda-875a-4ac2-adff-919b38ec5de1 {
  min-height: 60px;
}








#s-c9f35cda-875a-4ac2-adff-919b38ec5de1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c9f35cda-875a-4ac2-adff-919b38ec5de1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7325c275-a118-4040-b50c-57857b23d306 {
  margin-top: 9px;
}

@media (min-width: 0px) {
[id="s-7325c275-a118-4040-b50c-57857b23d306"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 25.0px);
}

}

@media (min-width: 768px) {
[id="s-7325c275-a118-4040-b50c-57857b23d306"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 37.5px);
}

}

@media (min-width: 992px) {
[id="s-7325c275-a118-4040-b50c-57857b23d306"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 37.5px);
}

}

@media (min-width: 1200px) {
[id="s-7325c275-a118-4040-b50c-57857b23d306"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 37.5px);
}

}

#s-7d5aa09e-9090-4220-ac97-4ac55c8ea677 {
  margin-bottom: 30px;
}

#s-df6be8ec-2186-47f7-ba35-9098f62b3c4f {
  text-align: left;
}



.shg-c#s-df6be8ec-2186-47f7-ba35-9098f62b3c4f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-df6be8ec-2186-47f7-ba35-9098f62b3c4f img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-df6be8ec-2186-47f7-ba35-9098f62b3c4f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-df6be8ec-2186-47f7-ba35-9098f62b3c4f img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-df6be8ec-2186-47f7-ba35-9098f62b3c4f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-df6be8ec-2186-47f7-ba35-9098f62b3c4f img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-df6be8ec-2186-47f7-ba35-9098f62b3c4f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-df6be8ec-2186-47f7-ba35-9098f62b3c4f img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-df6be8ec-2186-47f7-ba35-9098f62b3c4f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-df6be8ec-2186-47f7-ba35-9098f62b3c4f img.shogun-image {
  width: 100%;
}



}
#s-16c3234f-db51-4bca-91fd-1cfbbf1e45a0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-16c3234f-db51-4bca-91fd-1cfbbf1e45a0 .shg-product-title-component h4 {
  color: rgba(68, 68, 68, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-67e77bab-1a59-40cc-a9be-23647bae7bdc {
  text-align: center;
}

#s-67e77bab-1a59-40cc-a9be-23647bae7bdc .shg-product-sold-out {
  display: none;
  color: rgba(34, 34, 34, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-67e77bab-1a59-40cc-a9be-23647bae7bdc .shg-product-price {
  color: rgba(34, 34, 34, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-67e77bab-1a59-40cc-a9be-23647bae7bdc .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-06683a46-f52a-40ec-afd1-ce5414c3631a {
  margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-06683a46-f52a-40ec-afd1-ce5414c3631a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-06683a46-f52a-40ec-afd1-ce5414c3631a:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-06683a46-f52a-40ec-afd1-ce5414c3631a {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-06683a46-f52a-40ec-afd1-ce5414c3631a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-06683a46-f52a-40ec-afd1-ce5414c3631a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-06683a46-f52a-40ec-afd1-ce5414c3631a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-06683a46-f52a-40ec-afd1-ce5414c3631a.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-57faa84d-aa82-40cf-aa19-60d589188ab0 {
  margin-bottom: 30px;
}

#s-c156f871-0fe1-4251-a131-3d59e5579c57 {
  text-align: left;
}



.shg-c#s-c156f871-0fe1-4251-a131-3d59e5579c57 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c156f871-0fe1-4251-a131-3d59e5579c57 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-c156f871-0fe1-4251-a131-3d59e5579c57 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c156f871-0fe1-4251-a131-3d59e5579c57 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-c156f871-0fe1-4251-a131-3d59e5579c57 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c156f871-0fe1-4251-a131-3d59e5579c57 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-c156f871-0fe1-4251-a131-3d59e5579c57 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c156f871-0fe1-4251-a131-3d59e5579c57 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-c156f871-0fe1-4251-a131-3d59e5579c57 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-c156f871-0fe1-4251-a131-3d59e5579c57 img.shogun-image {
  width: 100%;
}



}
#s-a11f556c-76ad-4e12-8459-0621649477ff {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a11f556c-76ad-4e12-8459-0621649477ff .shg-product-title-component h4 {
  color: rgba(68, 68, 68, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-0138492a-7a2c-4af9-89e3-4992817c1d41 {
  text-align: center;
}

#s-0138492a-7a2c-4af9-89e3-4992817c1d41 .shg-product-sold-out {
  display: none;
  color: rgba(34, 34, 34, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-0138492a-7a2c-4af9-89e3-4992817c1d41 .shg-product-price {
  color: rgba(34, 34, 34, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-0138492a-7a2c-4af9-89e3-4992817c1d41 .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-41cb1de1-9697-4394-8944-bb2bd2e83fb9 {
  margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-41cb1de1-9697-4394-8944-bb2bd2e83fb9:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-41cb1de1-9697-4394-8944-bb2bd2e83fb9:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-41cb1de1-9697-4394-8944-bb2bd2e83fb9 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-41cb1de1-9697-4394-8944-bb2bd2e83fb9.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-41cb1de1-9697-4394-8944-bb2bd2e83fb9.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-41cb1de1-9697-4394-8944-bb2bd2e83fb9.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-41cb1de1-9697-4394-8944-bb2bd2e83fb9.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-12a011a3-f6b0-491b-9393-b9fc6053463c {
  margin-bottom: 20px;
}

#s-aaef0a60-636c-47c9-afd9-4f2cbda962f7 {
  text-align: left;
}



.shg-c#s-aaef0a60-636c-47c9-afd9-4f2cbda962f7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-aaef0a60-636c-47c9-afd9-4f2cbda962f7 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-aaef0a60-636c-47c9-afd9-4f2cbda962f7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-aaef0a60-636c-47c9-afd9-4f2cbda962f7 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-aaef0a60-636c-47c9-afd9-4f2cbda962f7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-aaef0a60-636c-47c9-afd9-4f2cbda962f7 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-aaef0a60-636c-47c9-afd9-4f2cbda962f7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-aaef0a60-636c-47c9-afd9-4f2cbda962f7 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-aaef0a60-636c-47c9-afd9-4f2cbda962f7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-aaef0a60-636c-47c9-afd9-4f2cbda962f7 img.shogun-image {
  width: 100%;
}



}
#s-d396ee99-3aee-48f7-b0d3-21ca5a9e2362 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d396ee99-3aee-48f7-b0d3-21ca5a9e2362 .shg-product-title-component h4 {
  color: rgba(68, 68, 68, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-2a822a52-783d-4015-ac41-71dc87ee3842 {
  text-align: center;
}

#s-2a822a52-783d-4015-ac41-71dc87ee3842 .shg-product-sold-out {
  display: none;
  color: rgba(34, 34, 34, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-2a822a52-783d-4015-ac41-71dc87ee3842 .shg-product-price {
  color: rgba(34, 34, 34, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-2a822a52-783d-4015-ac41-71dc87ee3842 .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-510693da-c402-439f-adb0-f54c37541ab0 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-510693da-c402-439f-adb0-f54c37541ab0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-510693da-c402-439f-adb0-f54c37541ab0:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-510693da-c402-439f-adb0-f54c37541ab0 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-510693da-c402-439f-adb0-f54c37541ab0.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-510693da-c402-439f-adb0-f54c37541ab0.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-510693da-c402-439f-adb0-f54c37541ab0.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-510693da-c402-439f-adb0-f54c37541ab0.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-1d3dd899-61ce-4cab-88eb-e82a6d3caf68 {
  text-align: left;
}



.shg-c#s-1d3dd899-61ce-4cab-88eb-e82a6d3caf68 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1d3dd899-61ce-4cab-88eb-e82a6d3caf68 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-1d3dd899-61ce-4cab-88eb-e82a6d3caf68 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1d3dd899-61ce-4cab-88eb-e82a6d3caf68 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-1d3dd899-61ce-4cab-88eb-e82a6d3caf68 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1d3dd899-61ce-4cab-88eb-e82a6d3caf68 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-1d3dd899-61ce-4cab-88eb-e82a6d3caf68 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1d3dd899-61ce-4cab-88eb-e82a6d3caf68 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-1d3dd899-61ce-4cab-88eb-e82a6d3caf68 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1d3dd899-61ce-4cab-88eb-e82a6d3caf68 img.shogun-image {
  width: 100%;
}



}
#s-82748116-3a6f-493c-be6f-479088f7a2ef {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-82748116-3a6f-493c-be6f-479088f7a2ef .shg-product-title-component h4 {
  color: rgba(68, 68, 68, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-a4b279b3-3b2d-4348-84b5-85d058e4213a {
  text-align: center;
}

#s-a4b279b3-3b2d-4348-84b5-85d058e4213a .shg-product-sold-out {
  display: none;
  color: rgba(34, 34, 34, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-a4b279b3-3b2d-4348-84b5-85d058e4213a .shg-product-price {
  color: rgba(34, 34, 34, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-a4b279b3-3b2d-4348-84b5-85d058e4213a .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-92dfff26-1a0c-4b8b-82e2-b6b897945876 {
  margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-92dfff26-1a0c-4b8b-82e2-b6b897945876:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-92dfff26-1a0c-4b8b-82e2-b6b897945876:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-92dfff26-1a0c-4b8b-82e2-b6b897945876 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-92dfff26-1a0c-4b8b-82e2-b6b897945876.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-92dfff26-1a0c-4b8b-82e2-b6b897945876.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-92dfff26-1a0c-4b8b-82e2-b6b897945876.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-92dfff26-1a0c-4b8b-82e2-b6b897945876.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-e69a54af-fc9c-4b3c-b94a-f9eeb7d9eedc {
  min-height: 50px;
}








#s-e69a54af-fc9c-4b3c-b94a-f9eeb7d9eedc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e69a54af-fc9c-4b3c-b94a-f9eeb7d9eedc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4b5aecf6-e8c5-4f61-99c9-f3e41093e631 {
  min-height: 60px;
}








#s-4b5aecf6-e8c5-4f61-99c9-f3e41093e631 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4b5aecf6-e8c5-4f61-99c9-f3e41093e631.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4117823a-5554-4792-a81b-ac0472540707 {
  margin-bottom: 20px;
padding-top: 5px;
padding-left: 20px;
padding-bottom: 5px;
padding-right: 20px;
border-radius: 0px;
min-height: 50px;
background-color: rgba(209, 116, 174, 1);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
}
#s-4117823a-5554-4792-a81b-ac0472540707:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-4117823a-5554-4792-a81b-ac0472540707:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-4117823a-5554-4792-a81b-ac0472540707-root {
    text-align: center;
  }


#s-4117823a-5554-4792-a81b-ac0472540707.shg-btn {
  color: #ffffff;
  font-size: 38px;
  font-weight: 600;
  
  font-family: Raleway;
  display:  block ;
}
@media (min-width: 1200px){
  #s-4117823a-5554-4792-a81b-ac0472540707-root {
    text-align: center;
  }


#s-4117823a-5554-4792-a81b-ac0472540707.shg-btn {
  color: #ffffff;
  font-size: 38px;
  font-weight: 600;
  
  font-family: Raleway;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4117823a-5554-4792-a81b-ac0472540707-root {
    text-align: center;
  }


#s-4117823a-5554-4792-a81b-ac0472540707.shg-btn {
  color: #ffffff;
  font-size: 38px;
  font-weight: 600;
  
  font-family: Raleway;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4117823a-5554-4792-a81b-ac0472540707-root {
    text-align: center;
  }


#s-4117823a-5554-4792-a81b-ac0472540707.shg-btn {
  color: #ffffff;
  font-size: 38px;
  font-weight: 600;
  
  font-family: Raleway;
  display:  block ;
}
}@media (max-width: 767px){
  #s-4117823a-5554-4792-a81b-ac0472540707-root {
    text-align: center;
  }


#s-4117823a-5554-4792-a81b-ac0472540707.shg-btn {
  color: #ffffff;
  font-size: 38px;
  font-weight: 600;
  
  font-family: Raleway;
  display:  block ;
}
}
#s-74d5af84-3a40-4202-aa7f-50025cec7f28 {
  min-height: 20px;
}








#s-74d5af84-3a40-4202-aa7f-50025cec7f28 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-74d5af84-3a40-4202-aa7f-50025cec7f28.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fef4769a-d14d-45ca-8737-ebf6b47a0713 {
  margin-top: 9px;
}

@media (min-width: 0px) {
[id="s-fef4769a-d14d-45ca-8737-ebf6b47a0713"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 25.0px);
}

}

@media (min-width: 768px) {
[id="s-fef4769a-d14d-45ca-8737-ebf6b47a0713"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 37.5px);
}

}

@media (min-width: 992px) {
[id="s-fef4769a-d14d-45ca-8737-ebf6b47a0713"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 37.5px);
}

}

@media (min-width: 1200px) {
[id="s-fef4769a-d14d-45ca-8737-ebf6b47a0713"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 37.5px);
}

}

#s-97edac5e-2e4e-4b1a-818d-4b347faaff87 {
  margin-bottom: 30px;
}

#s-789bf47b-55c6-4b4d-a94e-023e8853507d {
  text-align: left;
}



.shg-c#s-789bf47b-55c6-4b4d-a94e-023e8853507d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-789bf47b-55c6-4b4d-a94e-023e8853507d img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-789bf47b-55c6-4b4d-a94e-023e8853507d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-789bf47b-55c6-4b4d-a94e-023e8853507d img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-789bf47b-55c6-4b4d-a94e-023e8853507d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-789bf47b-55c6-4b4d-a94e-023e8853507d img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-789bf47b-55c6-4b4d-a94e-023e8853507d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-789bf47b-55c6-4b4d-a94e-023e8853507d img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-789bf47b-55c6-4b4d-a94e-023e8853507d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-789bf47b-55c6-4b4d-a94e-023e8853507d img.shogun-image {
  width: 100%;
}



}
#s-34b49cb5-b01f-4b87-a55d-db42f2f7b86e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-34b49cb5-b01f-4b87-a55d-db42f2f7b86e .shg-product-title-component h4 {
  color: rgba(68, 68, 68, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-6f8a31bd-397d-436f-ad88-19664ae59bfa {
  text-align: center;
}

#s-6f8a31bd-397d-436f-ad88-19664ae59bfa .shg-product-sold-out {
  display: none;
  color: rgba(34, 34, 34, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-6f8a31bd-397d-436f-ad88-19664ae59bfa .shg-product-price {
  color: rgba(34, 34, 34, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-6f8a31bd-397d-436f-ad88-19664ae59bfa .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-9fd62383-bd46-4290-a573-979e603418a2 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-9fd62383-bd46-4290-a573-979e603418a2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9fd62383-bd46-4290-a573-979e603418a2:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-9fd62383-bd46-4290-a573-979e603418a2 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-9fd62383-bd46-4290-a573-979e603418a2.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-9fd62383-bd46-4290-a573-979e603418a2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-9fd62383-bd46-4290-a573-979e603418a2.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-9fd62383-bd46-4290-a573-979e603418a2.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-de59127b-c463-4de3-aec1-25236325376e {
  margin-bottom: 30px;
}

#s-39ffbd6d-e8d6-4975-abce-bd2f31d91d57 {
  text-align: left;
}



.shg-c#s-39ffbd6d-e8d6-4975-abce-bd2f31d91d57 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-39ffbd6d-e8d6-4975-abce-bd2f31d91d57 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-39ffbd6d-e8d6-4975-abce-bd2f31d91d57 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-39ffbd6d-e8d6-4975-abce-bd2f31d91d57 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-39ffbd6d-e8d6-4975-abce-bd2f31d91d57 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-39ffbd6d-e8d6-4975-abce-bd2f31d91d57 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-39ffbd6d-e8d6-4975-abce-bd2f31d91d57 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-39ffbd6d-e8d6-4975-abce-bd2f31d91d57 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-39ffbd6d-e8d6-4975-abce-bd2f31d91d57 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-39ffbd6d-e8d6-4975-abce-bd2f31d91d57 img.shogun-image {
  width: 100%;
}



}
#s-1f08e66f-feeb-4cff-ab48-b3bd812058bb {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1f08e66f-feeb-4cff-ab48-b3bd812058bb .shg-product-title-component h4 {
  color: rgba(68, 68, 68, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-4048cbf1-e3d9-4943-9c9f-e4150a641d65 {
  text-align: center;
}

#s-4048cbf1-e3d9-4943-9c9f-e4150a641d65 .shg-product-sold-out {
  display: none;
  color: rgba(34, 34, 34, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-4048cbf1-e3d9-4943-9c9f-e4150a641d65 .shg-product-price {
  color: rgba(34, 34, 34, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-4048cbf1-e3d9-4943-9c9f-e4150a641d65 .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-ab5f3cbf-39ef-419f-9ad3-f129175fb086 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-ab5f3cbf-39ef-419f-9ad3-f129175fb086:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ab5f3cbf-39ef-419f-9ad3-f129175fb086:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-ab5f3cbf-39ef-419f-9ad3-f129175fb086 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-ab5f3cbf-39ef-419f-9ad3-f129175fb086.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-ab5f3cbf-39ef-419f-9ad3-f129175fb086.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-ab5f3cbf-39ef-419f-9ad3-f129175fb086.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-ab5f3cbf-39ef-419f-9ad3-f129175fb086.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-b725cbd6-085f-4d11-ad08-ccba82990bc3 {
  text-align: left;
}



.shg-c#s-b725cbd6-085f-4d11-ad08-ccba82990bc3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b725cbd6-085f-4d11-ad08-ccba82990bc3 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-b725cbd6-085f-4d11-ad08-ccba82990bc3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b725cbd6-085f-4d11-ad08-ccba82990bc3 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-b725cbd6-085f-4d11-ad08-ccba82990bc3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b725cbd6-085f-4d11-ad08-ccba82990bc3 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-b725cbd6-085f-4d11-ad08-ccba82990bc3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b725cbd6-085f-4d11-ad08-ccba82990bc3 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-b725cbd6-085f-4d11-ad08-ccba82990bc3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b725cbd6-085f-4d11-ad08-ccba82990bc3 img.shogun-image {
  width: 100%;
}



}
#s-3a5cacad-be91-4c7d-a684-e306ebad3a24 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3a5cacad-be91-4c7d-a684-e306ebad3a24 .shg-product-title-component h4 {
  color: rgba(68, 68, 68, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-048d2dd9-e37b-4390-a515-5f25599b719d {
  text-align: center;
}

#s-048d2dd9-e37b-4390-a515-5f25599b719d .shg-product-sold-out {
  display: none;
  color: rgba(34, 34, 34, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-048d2dd9-e37b-4390-a515-5f25599b719d .shg-product-price {
  color: rgba(34, 34, 34, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-048d2dd9-e37b-4390-a515-5f25599b719d .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-752e1c9d-2166-4693-b0e9-fc9e0745cd8f {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-752e1c9d-2166-4693-b0e9-fc9e0745cd8f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-752e1c9d-2166-4693-b0e9-fc9e0745cd8f:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-752e1c9d-2166-4693-b0e9-fc9e0745cd8f {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-752e1c9d-2166-4693-b0e9-fc9e0745cd8f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-752e1c9d-2166-4693-b0e9-fc9e0745cd8f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-752e1c9d-2166-4693-b0e9-fc9e0745cd8f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-752e1c9d-2166-4693-b0e9-fc9e0745cd8f.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-8f4224ed-94fc-4357-9ac1-ab17c63a275d {
  text-align: left;
}



.shg-c#s-8f4224ed-94fc-4357-9ac1-ab17c63a275d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8f4224ed-94fc-4357-9ac1-ab17c63a275d img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-8f4224ed-94fc-4357-9ac1-ab17c63a275d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8f4224ed-94fc-4357-9ac1-ab17c63a275d img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-8f4224ed-94fc-4357-9ac1-ab17c63a275d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8f4224ed-94fc-4357-9ac1-ab17c63a275d img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-8f4224ed-94fc-4357-9ac1-ab17c63a275d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8f4224ed-94fc-4357-9ac1-ab17c63a275d img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-8f4224ed-94fc-4357-9ac1-ab17c63a275d .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8f4224ed-94fc-4357-9ac1-ab17c63a275d img.shogun-image {
  width: 100%;
}



}
#s-3fa71e8a-0da9-4906-af49-34bebe9c3745 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3fa71e8a-0da9-4906-af49-34bebe9c3745 .shg-product-title-component h4 {
  color: rgba(68, 68, 68, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-c389ae98-de60-4919-8056-7c3458a5c763 {
  text-align: center;
}

#s-c389ae98-de60-4919-8056-7c3458a5c763 .shg-product-sold-out {
  display: none;
  color: rgba(34, 34, 34, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-c389ae98-de60-4919-8056-7c3458a5c763 .shg-product-price {
  color: rgba(34, 34, 34, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-c389ae98-de60-4919-8056-7c3458a5c763 .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-aee59d0f-eca7-43c3-ae85-fee53550f570 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-aee59d0f-eca7-43c3-ae85-fee53550f570:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-aee59d0f-eca7-43c3-ae85-fee53550f570:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-aee59d0f-eca7-43c3-ae85-fee53550f570 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-aee59d0f-eca7-43c3-ae85-fee53550f570.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-aee59d0f-eca7-43c3-ae85-fee53550f570.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-aee59d0f-eca7-43c3-ae85-fee53550f570.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-aee59d0f-eca7-43c3-ae85-fee53550f570.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-2815719c-2725-4768-b6a2-fab4c2816b2d {
  margin-top: 9px;
}

@media (min-width: 0px) {
[id="s-2815719c-2725-4768-b6a2-fab4c2816b2d"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 25.0px);
}

}

@media (min-width: 768px) {
[id="s-2815719c-2725-4768-b6a2-fab4c2816b2d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 37.5px);
}

}

@media (min-width: 992px) {
[id="s-2815719c-2725-4768-b6a2-fab4c2816b2d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 37.5px);
}

}

@media (min-width: 1200px) {
[id="s-2815719c-2725-4768-b6a2-fab4c2816b2d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 37.5px);
}

}

#s-96cd9885-fda5-4637-8ad6-d0a7e835cdb1 {
  margin-bottom: 30px;
}

#s-0e34993a-b625-4786-9fe9-6aabacb980b9 {
  text-align: left;
}



.shg-c#s-0e34993a-b625-4786-9fe9-6aabacb980b9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0e34993a-b625-4786-9fe9-6aabacb980b9 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-0e34993a-b625-4786-9fe9-6aabacb980b9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0e34993a-b625-4786-9fe9-6aabacb980b9 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-0e34993a-b625-4786-9fe9-6aabacb980b9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0e34993a-b625-4786-9fe9-6aabacb980b9 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-0e34993a-b625-4786-9fe9-6aabacb980b9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0e34993a-b625-4786-9fe9-6aabacb980b9 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-0e34993a-b625-4786-9fe9-6aabacb980b9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0e34993a-b625-4786-9fe9-6aabacb980b9 img.shogun-image {
  width: 100%;
}



}
#s-8ecbd73f-7213-45c5-b8da-ee3d7743c6e5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8ecbd73f-7213-45c5-b8da-ee3d7743c6e5 .shg-product-title-component h4 {
  color: rgba(68, 68, 68, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-3790f873-0dbb-4f36-9529-01b5238b1e0d {
  text-align: center;
}

#s-3790f873-0dbb-4f36-9529-01b5238b1e0d .shg-product-sold-out {
  display: none;
  color: rgba(34, 34, 34, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-3790f873-0dbb-4f36-9529-01b5238b1e0d .shg-product-price {
  color: rgba(34, 34, 34, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-3790f873-0dbb-4f36-9529-01b5238b1e0d .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-84961237-da00-45e7-9564-134099b4ee4b {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-84961237-da00-45e7-9564-134099b4ee4b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-84961237-da00-45e7-9564-134099b4ee4b:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-84961237-da00-45e7-9564-134099b4ee4b {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-84961237-da00-45e7-9564-134099b4ee4b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-84961237-da00-45e7-9564-134099b4ee4b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-84961237-da00-45e7-9564-134099b4ee4b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-84961237-da00-45e7-9564-134099b4ee4b.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-72b56895-4683-48ec-ab6c-a9235f202043 {
  margin-bottom: 30px;
}

#s-5a85b0d6-4265-4b98-8718-4a367f90e54c {
  text-align: left;
}



.shg-c#s-5a85b0d6-4265-4b98-8718-4a367f90e54c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5a85b0d6-4265-4b98-8718-4a367f90e54c img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-5a85b0d6-4265-4b98-8718-4a367f90e54c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5a85b0d6-4265-4b98-8718-4a367f90e54c img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-5a85b0d6-4265-4b98-8718-4a367f90e54c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5a85b0d6-4265-4b98-8718-4a367f90e54c img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-5a85b0d6-4265-4b98-8718-4a367f90e54c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5a85b0d6-4265-4b98-8718-4a367f90e54c img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-5a85b0d6-4265-4b98-8718-4a367f90e54c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5a85b0d6-4265-4b98-8718-4a367f90e54c img.shogun-image {
  width: 100%;
}



}
#s-1e0cd627-3425-472d-83e9-dda380c00cd3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1e0cd627-3425-472d-83e9-dda380c00cd3 .shg-product-title-component h4 {
  color: rgba(68, 68, 68, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-0a1ef139-e159-441c-807f-86de818a96c2 {
  text-align: center;
}

#s-0a1ef139-e159-441c-807f-86de818a96c2 .shg-product-sold-out {
  display: none;
  color: rgba(34, 34, 34, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-0a1ef139-e159-441c-807f-86de818a96c2 .shg-product-price {
  color: rgba(34, 34, 34, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-0a1ef139-e159-441c-807f-86de818a96c2 .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-37aa00aa-5d38-4bde-a388-e58c1b079da2 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-37aa00aa-5d38-4bde-a388-e58c1b079da2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-37aa00aa-5d38-4bde-a388-e58c1b079da2:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-37aa00aa-5d38-4bde-a388-e58c1b079da2 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-37aa00aa-5d38-4bde-a388-e58c1b079da2.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-37aa00aa-5d38-4bde-a388-e58c1b079da2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-37aa00aa-5d38-4bde-a388-e58c1b079da2.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-37aa00aa-5d38-4bde-a388-e58c1b079da2.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-49a49965-b515-429b-8106-810d0768dbbe {
  text-align: left;
}



.shg-c#s-49a49965-b515-429b-8106-810d0768dbbe .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-49a49965-b515-429b-8106-810d0768dbbe img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-49a49965-b515-429b-8106-810d0768dbbe .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-49a49965-b515-429b-8106-810d0768dbbe img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-49a49965-b515-429b-8106-810d0768dbbe .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-49a49965-b515-429b-8106-810d0768dbbe img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-49a49965-b515-429b-8106-810d0768dbbe .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-49a49965-b515-429b-8106-810d0768dbbe img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-49a49965-b515-429b-8106-810d0768dbbe .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-49a49965-b515-429b-8106-810d0768dbbe img.shogun-image {
  width: 100%;
}



}
#s-3c9d7a73-2b81-41ae-8e04-a771fdaa2eff {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3c9d7a73-2b81-41ae-8e04-a771fdaa2eff .shg-product-title-component h4 {
  color: rgba(68, 68, 68, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-3115f690-2c96-4622-9bed-93cf28e0b8a2 {
  text-align: center;
}

#s-3115f690-2c96-4622-9bed-93cf28e0b8a2 .shg-product-sold-out {
  display: none;
  color: rgba(34, 34, 34, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-3115f690-2c96-4622-9bed-93cf28e0b8a2 .shg-product-price {
  color: rgba(34, 34, 34, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-3115f690-2c96-4622-9bed-93cf28e0b8a2 .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-23284ec1-b1f6-4686-be5f-141096dfc408 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-23284ec1-b1f6-4686-be5f-141096dfc408:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-23284ec1-b1f6-4686-be5f-141096dfc408:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-23284ec1-b1f6-4686-be5f-141096dfc408 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-23284ec1-b1f6-4686-be5f-141096dfc408.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-23284ec1-b1f6-4686-be5f-141096dfc408.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-23284ec1-b1f6-4686-be5f-141096dfc408.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-23284ec1-b1f6-4686-be5f-141096dfc408.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-25e4c9d8-dccc-42d0-b973-fdd8f9066d51 {
  text-align: left;
}



.shg-c#s-25e4c9d8-dccc-42d0-b973-fdd8f9066d51 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-25e4c9d8-dccc-42d0-b973-fdd8f9066d51 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-25e4c9d8-dccc-42d0-b973-fdd8f9066d51 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-25e4c9d8-dccc-42d0-b973-fdd8f9066d51 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-25e4c9d8-dccc-42d0-b973-fdd8f9066d51 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-25e4c9d8-dccc-42d0-b973-fdd8f9066d51 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-25e4c9d8-dccc-42d0-b973-fdd8f9066d51 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-25e4c9d8-dccc-42d0-b973-fdd8f9066d51 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-25e4c9d8-dccc-42d0-b973-fdd8f9066d51 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-25e4c9d8-dccc-42d0-b973-fdd8f9066d51 img.shogun-image {
  width: 100%;
}



}
#s-71d6e979-9bb6-4221-b78e-17f333195c9a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-71d6e979-9bb6-4221-b78e-17f333195c9a .shg-product-title-component h4 {
  color: rgba(68, 68, 68, 1);
  font-weight:  600 ;
  font-family: Raleway;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
}

#s-22382ebc-f086-42f1-894a-f0a85c40685b {
  text-align: center;
}

#s-22382ebc-f086-42f1-894a-f0a85c40685b .shg-product-sold-out {
  display: none;
  color: rgba(34, 34, 34, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-22382ebc-f086-42f1-894a-f0a85c40685b .shg-product-price {
  color: rgba(34, 34, 34, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-22382ebc-f086-42f1-894a-f0a85c40685b .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-f6abadfb-8ba9-4da4-a73d-0138c1db9fdd {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 7px;
background-color: rgba(0, 128, 128, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-f6abadfb-8ba9-4da4-a73d-0138c1db9fdd:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-f6abadfb-8ba9-4da4-a73d-0138c1db9fdd:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-f6abadfb-8ba9-4da4-a73d-0138c1db9fdd {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-f6abadfb-8ba9-4da4-a73d-0138c1db9fdd.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-f6abadfb-8ba9-4da4-a73d-0138c1db9fdd.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  
  font-family: Raleway;
  display:  inline-block ;
}

#s-f6abadfb-8ba9-4da4-a73d-0138c1db9fdd.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-f6abadfb-8ba9-4da4-a73d-0138c1db9fdd.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-75f2d436-d997-462e-a8c0-c363ecf2948f {
  min-height: 50px;
}








#s-75f2d436-d997-462e-a8c0-c363ecf2948f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-75f2d436-d997-462e-a8c0-c363ecf2948f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-hr-wrapper {
  padding: 30px 0;
}

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

#s-0e875cc3-bce5-48af-96d3-513a7979e68d {
  padding-top: 13px;
padding-bottom: 13px;
}

#s-0e875cc3-bce5-48af-96d3-513a7979e68d hr {
  border-top: 2px solid rgba(68, 68, 68, 1);
}

#s-a411bdb6-198d-4229-b024-77d6232508f3 {
  margin-bottom: 20px;
padding-top: 5px;
padding-left: 20px;
padding-bottom: 5px;
padding-right: 20px;
border-radius: 0px;
min-height: 50px;
background-color: rgba(113, 188, 181, 1);
text-align: center;
text-decoration: none;
letter-spacing: 3px;
background-image: none;
hover-type: color;
}
#s-a411bdb6-198d-4229-b024-77d6232508f3:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a411bdb6-198d-4229-b024-77d6232508f3:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-a411bdb6-198d-4229-b024-77d6232508f3-root {
    text-align: center;
  }


#s-a411bdb6-198d-4229-b024-77d6232508f3.shg-btn {
  color: #ffffff;
  font-size: 38px;
  font-weight: 600;
  
  font-family: Raleway;
  display:  block ;
}
@media (min-width: 1200px){
  #s-a411bdb6-198d-4229-b024-77d6232508f3-root {
    text-align: center;
  }


#s-a411bdb6-198d-4229-b024-77d6232508f3.shg-btn {
  color: #ffffff;
  font-size: 38px;
  font-weight: 600;
  
  font-family: Raleway;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a411bdb6-198d-4229-b024-77d6232508f3-root {
    text-align: center;
  }


#s-a411bdb6-198d-4229-b024-77d6232508f3.shg-btn {
  color: #ffffff;
  font-size: 38px;
  font-weight: 600;
  
  font-family: Raleway;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a411bdb6-198d-4229-b024-77d6232508f3-root {
    text-align: center;
  }


#s-a411bdb6-198d-4229-b024-77d6232508f3.shg-btn {
  color: #ffffff;
  font-size: 38px;
  font-weight: 600;
  
  font-family: Raleway;
  display:  block ;
}
}@media (max-width: 767px){
  #s-a411bdb6-198d-4229-b024-77d6232508f3-root {
    text-align: center;
  }


#s-a411bdb6-198d-4229-b024-77d6232508f3.shg-btn {
  color: #ffffff;
  font-size: 38px;
  font-weight: 600;
  
  font-family: Raleway;
  display:  block ;
}
}
#s-7045d366-c69b-4aa0-a333-e20be4c0ece4 {
  padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
}

@media (min-width: 0px) {
[id="s-7045d366-c69b-4aa0-a333-e20be4c0ece4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7045d366-c69b-4aa0-a333-e20be4c0ece4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 11.0px);
}

}

@media (min-width: 992px) {
[id="s-7045d366-c69b-4aa0-a333-e20be4c0ece4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 11.0px);
}

}

@media (min-width: 1200px) {
[id="s-7045d366-c69b-4aa0-a333-e20be4c0ece4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 11.0px);
}

}

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

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

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

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

#s-24252932-b0fc-41fd-a1af-589444387946 {
  margin-bottom: 32px;
}

#s-825b9c51-4fea-47bb-b4db-8a45be0dbe6c {
  min-height: 90px;
}








#s-825b9c51-4fea-47bb-b4db-8a45be0dbe6c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-825b9c51-4fea-47bb-b4db-8a45be0dbe6c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 {
  max-width: 1310px;
aspect-ratio: 1310/380;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 .shg-image-content-wrapper {
      aspect-ratio: 1310/380;
      min-width: 100%;
      height: auto;
    }

    #s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 .shogun-image-link {
      aspect-ratio: 1310/380;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 {
    width: 100%;
    height: auto;
  }

  #s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image {
    
    
  }


.s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 .shogun-image-content {
  
    align-items: center;
  
}

.s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shg-align-container {
  display: flex;
  justify-content: center
}

.s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 {
      --shg-aspect-ratio: calc(1310/380); 
    }

    .s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image-container {
      position: relative;
    }

    .s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 .shg-image-content-wrapper {
      aspect-ratio: 1310/380;
      min-width: 100%;
      height: auto;
    }

    #s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 .shogun-image-link {
      aspect-ratio: 1310/380;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 {
    width: 100%;
    height: auto;
  }

  #s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image {
    
    
  }


.s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 .shogun-image-content {
  
    align-items: center;
  
}

.s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shg-align-container {
  display: flex;
  justify-content: center
}

.s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 {
      --shg-aspect-ratio: calc(1310/380); 
    }

    .s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image-container {
      position: relative;
    }

    .s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 .shg-image-content-wrapper {
      aspect-ratio: 1310/380;
      min-width: 100%;
      height: auto;
    }

    #s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 .shogun-image-link {
      aspect-ratio: 1310/380;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 {
    width: 100%;
    height: auto;
  }

  #s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image {
    
    
  }


.s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 .shogun-image-content {
  
    align-items: center;
  
}

.s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shg-align-container {
  display: flex;
  justify-content: center
}

.s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 {
      --shg-aspect-ratio: calc(1310/380); 
    }

    .s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image-container {
      position: relative;
    }

    .s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 .shg-image-content-wrapper {
      aspect-ratio: 1310/380;
      min-width: 100%;
      height: auto;
    }

    #s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 .shogun-image-link {
      aspect-ratio: 1310/380;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 {
    width: 100%;
    height: auto;
  }

  #s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image {
    
    
  }


.s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 .shogun-image-content {
  
    align-items: center;
  
}

.s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shg-align-container {
  display: flex;
  justify-content: center
}

.s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 {
      --shg-aspect-ratio: calc(1310/380); 
    }

    .s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image-container {
      position: relative;
    }

    .s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}@media (max-width: 767px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 .shg-image-content-wrapper {
      aspect-ratio: 1310/380;
      min-width: 100%;
      height: auto;
    }

    #s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 .shogun-image-link {
      aspect-ratio: 1310/380;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 {
    width: 100%;
    height: auto;
  }

  #s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image {
    
    
  }


.s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 .shogun-image-content {
  
    align-items: center;
  
}

.s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shg-align-container {
  display: flex;
  justify-content: center
}

.s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 {
      --shg-aspect-ratio: calc(1310/380); 
    }

    .s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image-container {
      position: relative;
    }

    .s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-07116c19-d9af-4a9b-81ea-5b6dec1b5584.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-07116c19-d9af-4a9b-81ea-5b6dec1b5584 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-29ccde2d-528a-4062-b7dd-b5cf26511b45 {
  padding-top: 20px;
padding-left: 4%;
padding-bottom: 7px;
padding-right: 4%;
}

#s-9bc2cfe9-35cd-4ef3-94af-f7433edc599d {
  min-height: 90px;
}








#s-9bc2cfe9-35cd-4ef3-94af-f7433edc599d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9bc2cfe9-35cd-4ef3-94af-f7433edc599d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-cover {
  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;
}

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

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

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

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

#s-f0be9d86-2ab0-44a6-89da-7e5955ebf99d {
  text-align: center;
}







  #s-f0be9d86-2ab0-44a6-89da-7e5955ebf99d img.shogun-image {
    

    
    
    
  }


#s-f0be9d86-2ab0-44a6-89da-7e5955ebf99d .shogun-image-content {
  
    align-items: center;
  
}

#s-59425b95-5129-4367-971f-da106c9783de {
  padding-top: 20px;
padding-left: 4%;
padding-bottom: 7px;
padding-right: 4%;
}

#s-6af4c1a6-ee5b-4a76-ac94-44839f24b8ad {
  min-height: 60px;
}








#s-6af4c1a6-ee5b-4a76-ac94-44839f24b8ad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6af4c1a6-ee5b-4a76-ac94-44839f24b8ad.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e0c6aa5c-d609-4478-aba9-7b5856bd5fcf {
  margin-top: 20px;
margin-bottom: 9px;
}

#s-e0c6aa5c-d609-4478-aba9-7b5856bd5fcf hr {
  border-top: 2px solid #ddd;
}

#s-c47b6bf7-fc9a-4649-92d2-6a420107e5d8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c47b6bf7-fc9a-4649-92d2-6a420107e5d8 .shogun-heading-component h1 {
  color: rgba(232, 86, 86, 1);
  font-weight:  700 ;
  font-family: "Raleway";
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



@media (min-width: 0px) {
[id="s-6cd3f7f2-1c67-4c52-a515-20c88f68c739"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-6cd3f7f2-1c67-4c52-a515-20c88f68c739"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-6cd3f7f2-1c67-4c52-a515-20c88f68c739"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-6cd3f7f2-1c67-4c52-a515-20c88f68c739"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-eceac22e-4ea9-4bca-989a-7ba1b3756708 {
  text-align: center;
}







  #s-eceac22e-4ea9-4bca-989a-7ba1b3756708 img.shogun-image {
    

    
    
    
  }


#s-eceac22e-4ea9-4bca-989a-7ba1b3756708 .shogun-image-content {
  
    align-items: center;
  
}

#s-3209ca6f-95da-4ef5-994c-a9f18a0cfc79 {
  padding-top: 6px;
padding-bottom: 6px;
}

#s-e0746865-271f-403f-8d71-a5797f528210 {
  text-align: center;
}







  #s-e0746865-271f-403f-8d71-a5797f528210 img.shogun-image {
    

    
    
    
  }


#s-e0746865-271f-403f-8d71-a5797f528210 .shogun-image-content {
  
    align-items: center;
  
}

#s-2b53d5c0-58cd-49e4-a1f6-a50b019fed3f {
  padding-top: 6px;
padding-bottom: 6px;
}

#s-146a1e8b-295f-4949-a75f-d56013d0551b {
  text-align: center;
}







  #s-146a1e8b-295f-4949-a75f-d56013d0551b img.shogun-image {
    

    
    
    
  }


#s-146a1e8b-295f-4949-a75f-d56013d0551b .shogun-image-content {
  
    align-items: center;
  
}

#s-24820918-7003-489b-aa01-1ae5246d9a35 {
  padding-top: 6px;
padding-bottom: 6px;
}

#s-51c147b5-be2b-4961-bb65-f1b1106da08a {
  text-align: center;
}







  #s-51c147b5-be2b-4961-bb65-f1b1106da08a img.shogun-image {
    

    
    
    
  }


#s-51c147b5-be2b-4961-bb65-f1b1106da08a .shogun-image-content {
  
    align-items: center;
  
}

#s-96927513-3704-43a6-9d27-c53885dd4b40 {
  padding-top: 6px;
padding-bottom: 6px;
}

#s-b8e70790-2e7f-46b9-a90f-1b5659ecbc2e {
  min-height: 60px;
}








#s-b8e70790-2e7f-46b9-a90f-1b5659ecbc2e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b8e70790-2e7f-46b9-a90f-1b5659ecbc2e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b6164fe2-a8ae-4fb9-8d1c-e9fd6d10fc34 {
  min-height: 60px;
}








#s-b6164fe2-a8ae-4fb9-8d1c-e9fd6d10fc34 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b6164fe2-a8ae-4fb9-8d1c-e9fd6d10fc34.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

/*
  $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}
