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

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

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

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

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

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

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

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

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

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

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

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

#s-e49e7768-e131-44fa-ba3b-4ec5de2da2ab {
  margin-top: -40px;
margin-bottom: 0px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-e49e7768-e131-44fa-ba3b-4ec5de2da2ab {
  display: none;
}
#s-e49e7768-e131-44fa-ba3b-4ec5de2da2ab, #wrap-s-e49e7768-e131-44fa-ba3b-4ec5de2da2ab { display: none !important; }}@media (max-width: 767px){#s-e49e7768-e131-44fa-ba3b-4ec5de2da2ab {
  display: none;
}
#s-e49e7768-e131-44fa-ba3b-4ec5de2da2ab, #wrap-s-e49e7768-e131-44fa-ba3b-4ec5de2da2ab { display: none !important; }}







#s-e49e7768-e131-44fa-ba3b-4ec5de2da2ab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e49e7768-e131-44fa-ba3b-4ec5de2da2ab.shg-box.shg-c {
  justify-content: center;
}

#s-45043521-bc4c-404c-8f9d-11d138a7f820 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

.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 {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

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

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

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

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

.shogun-image-content {
  display: flex;
  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-60219d0c-2dfa-4606-9451-8a5e2d775ce1 {
  max-width: 3840px;
aspect-ratio: 3840/1280;
text-align: center;
opacity: 0.9;
}
@media (min-width: 768px) and (max-width: 991px){#s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 {
  display: none;
}
#s-60219d0c-2dfa-4606-9451-8a5e2d775ce1, #wrap-s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 { display: none !important; }}@media (max-width: 767px){#s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 {
  display: none;
}
#s-60219d0c-2dfa-4606-9451-8a5e2d775ce1, #wrap-s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 { display: none !important; }}




  @supports  (aspect-ratio: 1/1) {
    
    #s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 .shg-image-content-wrapper {
      aspect-ratio: 3840/1280;
      min-width: 100%;
      height: auto;
    }

    #s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 .shogun-image-link {
      aspect-ratio: 3840/1280;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 {
    width: 100%;
    height: auto;
  }

  #s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image {
    
    
  }


.s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 .shogun-image-content {
  
    align-items: center;
  
}

.s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 {
      --shg-aspect-ratio: calc(3840/1280); 
    }

    .s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image-container {
      position: relative;
    }

    .s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 .shg-image-content-wrapper {
      aspect-ratio: 3840/1280;
      min-width: 100%;
      height: auto;
    }

    #s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 .shogun-image-link {
      aspect-ratio: 3840/1280;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 {
    width: 100%;
    height: auto;
  }

  #s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image {
    
    
  }


.s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 .shogun-image-content {
  
    align-items: center;
  
}

.s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 {
      --shg-aspect-ratio: calc(3840/1280); 
    }

    .s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image-container {
      position: relative;
    }

    .s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 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-60219d0c-2dfa-4606-9451-8a5e2d775ce1 .shg-image-content-wrapper {
      aspect-ratio: 3840/1280;
      min-width: 100%;
      height: auto;
    }

    #s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 .shogun-image-link {
      aspect-ratio: 3840/1280;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 {
    width: 100%;
    height: auto;
  }

  #s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image {
    
    
  }


.s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 .shogun-image-content {
  
    align-items: center;
  
}

.s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 {
      --shg-aspect-ratio: calc(3840/1280); 
    }

    .s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image-container {
      position: relative;
    }

    .s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 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-60219d0c-2dfa-4606-9451-8a5e2d775ce1 .shg-image-content-wrapper {
      aspect-ratio: 3840/1280;
      min-width: 100%;
      height: auto;
    }

    #s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 .shogun-image-link {
      aspect-ratio: 3840/1280;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 {
    width: 100%;
    height: auto;
  }

  #s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image {
    
    
  }


.s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 .shogun-image-content {
  
    align-items: center;
  
}

.s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 {
      --shg-aspect-ratio: calc(3840/1280); 
    }

    .s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image-container {
      position: relative;
    }

    .s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 .shg-image-content-wrapper {
      aspect-ratio: 3840/1280;
      min-width: 100%;
      height: auto;
    }

    #s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 .shogun-image-link {
      aspect-ratio: 3840/1280;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 {
    width: 100%;
    height: auto;
  }

  #s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image {
    
    
  }


.s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 .shogun-image-content {
  
    align-items: center;
  
}

.s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 {
      --shg-aspect-ratio: calc(3840/1280); 
    }

    .s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image-container {
      position: relative;
    }

    .s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-60219d0c-2dfa-4606-9451-8a5e2d775ce1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-60219d0c-2dfa-4606-9451-8a5e2d775ce1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
aspect-ratio: 1722/1102;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 .shg-image-content-wrapper {
      aspect-ratio: 1722/1102;
      min-width: 100%;
      height: auto;
    }

    #s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 .shogun-image-link {
      aspect-ratio: 1722/1102;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 {
    width: 100%;
    height: auto;
  }

  #s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image {
    
    
  }


.s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 .shogun-image-content {
  
    align-items: center;
  
}

.s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 {
      --shg-aspect-ratio: calc(1722/1102); 
    }

    .s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image-container {
      position: relative;
    }

    .s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 .shg-image-content-wrapper {
      aspect-ratio: 1722/1102;
      min-width: 100%;
      height: auto;
    }

    #s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 .shogun-image-link {
      aspect-ratio: 1722/1102;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 {
    width: 100%;
    height: auto;
  }

  #s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image {
    
    
  }


.s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 .shogun-image-content {
  
    align-items: center;
  
}

.s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 {
      --shg-aspect-ratio: calc(1722/1102); 
    }

    .s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image-container {
      position: relative;
    }

    .s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 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-15af1fa3-f43d-47f3-a3d7-33692d553cb1 .shg-image-content-wrapper {
      aspect-ratio: 1722/1102;
      min-width: 100%;
      height: auto;
    }

    #s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 .shogun-image-link {
      aspect-ratio: 1722/1102;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 {
    width: 100%;
    height: auto;
  }

  #s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image {
    
    
  }


.s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 .shogun-image-content {
  
    align-items: center;
  
}

.s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 {
      --shg-aspect-ratio: calc(1722/1102); 
    }

    .s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image-container {
      position: relative;
    }

    .s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 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-15af1fa3-f43d-47f3-a3d7-33692d553cb1 .shg-image-content-wrapper {
      aspect-ratio: 1722/1102;
      min-width: 100%;
      height: auto;
    }

    #s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 .shogun-image-link {
      aspect-ratio: 1722/1102;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 {
    width: 100%;
    height: auto;
  }

  #s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image {
    
    
  }


.s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 .shogun-image-content {
  
    align-items: center;
  
}

.s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 {
      --shg-aspect-ratio: calc(1722/1102); 
    }

    .s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image-container {
      position: relative;
    }

    .s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 .shg-image-content-wrapper {
      aspect-ratio: 1722/1102;
      min-width: 100%;
      height: auto;
    }

    #s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 .shogun-image-link {
      aspect-ratio: 1722/1102;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 {
    width: 100%;
    height: auto;
  }

  #s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image {
    
    
  }


.s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 .shogun-image-content {
  
    align-items: center;
  
}

.s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 {
      --shg-aspect-ratio: calc(1722/1102); 
    }

    .s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image-container {
      position: relative;
    }

    .s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-15af1fa3-f43d-47f3-a3d7-33692d553cb1.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-15af1fa3-f43d-47f3-a3d7-33692d553cb1 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 {
  
  
  
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-theme-text-content h1,
.shg-theme-text-content h2,
.shg-theme-text-content h3,
.shg-theme-text-content h4,
.shg-theme-text-content h5,
.shg-theme-text-content h6 {
  
  
  
}

.shg-theme-text-content p {
  
  
  
}

#s-e7ec245e-e93d-438f-ae11-109f658fea02 {
  margin-bottom: -24px;
}

#s-161764ba-abdc-4873-8472-4bcc1e1eea96 {
  margin-top: -24px;
min-height: 50px;
}
@media (min-width: 1200px){#s-161764ba-abdc-4873-8472-4bcc1e1eea96 {
  display: none;
}
#s-161764ba-abdc-4873-8472-4bcc1e1eea96, #wrap-s-161764ba-abdc-4873-8472-4bcc1e1eea96 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-161764ba-abdc-4873-8472-4bcc1e1eea96 {
  display: none;
}
#s-161764ba-abdc-4873-8472-4bcc1e1eea96, #wrap-s-161764ba-abdc-4873-8472-4bcc1e1eea96 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-161764ba-abdc-4873-8472-4bcc1e1eea96 {
  display: unset;
}
#s-161764ba-abdc-4873-8472-4bcc1e1eea96, #wrap-s-161764ba-abdc-4873-8472-4bcc1e1eea96 { display: unset !important; }}@media (max-width: 767px){#s-161764ba-abdc-4873-8472-4bcc1e1eea96 {
  margin-bottom: -24px;
display: unset;
}
#s-161764ba-abdc-4873-8472-4bcc1e1eea96, #wrap-s-161764ba-abdc-4873-8472-4bcc1e1eea96 { display: unset !important; }}







#s-161764ba-abdc-4873-8472-4bcc1e1eea96 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-161764ba-abdc-4873-8472-4bcc1e1eea96.shg-box.shg-c {
  justify-content: center;
}

#s-817e7a51-19f9-4f56-b870-1a02bf590d08 {
  max-width: 1440px;
aspect-ratio: 1/1;
text-align: center;
opacity: 0.9;
}
@media (min-width: 1200px){#s-817e7a51-19f9-4f56-b870-1a02bf590d08 {
  display: none;
}
#s-817e7a51-19f9-4f56-b870-1a02bf590d08, #wrap-s-817e7a51-19f9-4f56-b870-1a02bf590d08 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-817e7a51-19f9-4f56-b870-1a02bf590d08 {
  display: none;
}
#s-817e7a51-19f9-4f56-b870-1a02bf590d08, #wrap-s-817e7a51-19f9-4f56-b870-1a02bf590d08 { display: none !important; }}




  @supports  (aspect-ratio: 1/1) {
    
    #s-817e7a51-19f9-4f56-b870-1a02bf590d08 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-817e7a51-19f9-4f56-b870-1a02bf590d08 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-817e7a51-19f9-4f56-b870-1a02bf590d08 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-817e7a51-19f9-4f56-b870-1a02bf590d08 {
    width: 100%;
    height: auto;
  }

  #s-817e7a51-19f9-4f56-b870-1a02bf590d08 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image {
    
    
  }


.s-817e7a51-19f9-4f56-b870-1a02bf590d08 .shogun-image-content {
  
    align-items: center;
  
}

.s-817e7a51-19f9-4f56-b870-1a02bf590d08.shg-align-container {
  display: flex;
  justify-content: center
}

.s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-817e7a51-19f9-4f56-b870-1a02bf590d08 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image-container {
      position: relative;
    }

    .s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-817e7a51-19f9-4f56-b870-1a02bf590d08 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-817e7a51-19f9-4f56-b870-1a02bf590d08 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-817e7a51-19f9-4f56-b870-1a02bf590d08 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-817e7a51-19f9-4f56-b870-1a02bf590d08 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-817e7a51-19f9-4f56-b870-1a02bf590d08 {
    width: 100%;
    height: auto;
  }

  #s-817e7a51-19f9-4f56-b870-1a02bf590d08 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image {
    
    
  }


.s-817e7a51-19f9-4f56-b870-1a02bf590d08 .shogun-image-content {
  
    align-items: center;
  
}

.s-817e7a51-19f9-4f56-b870-1a02bf590d08.shg-align-container {
  display: flex;
  justify-content: center
}

.s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-817e7a51-19f9-4f56-b870-1a02bf590d08 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image-container {
      position: relative;
    }

    .s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-817e7a51-19f9-4f56-b870-1a02bf590d08 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-817e7a51-19f9-4f56-b870-1a02bf590d08 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-817e7a51-19f9-4f56-b870-1a02bf590d08 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-817e7a51-19f9-4f56-b870-1a02bf590d08 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-817e7a51-19f9-4f56-b870-1a02bf590d08 {
    width: 100%;
    height: auto;
  }

  #s-817e7a51-19f9-4f56-b870-1a02bf590d08 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image {
    
    
  }


.s-817e7a51-19f9-4f56-b870-1a02bf590d08 .shogun-image-content {
  
    align-items: center;
  
}

.s-817e7a51-19f9-4f56-b870-1a02bf590d08.shg-align-container {
  display: flex;
  justify-content: center
}

.s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-817e7a51-19f9-4f56-b870-1a02bf590d08 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image-container {
      position: relative;
    }

    .s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-817e7a51-19f9-4f56-b870-1a02bf590d08 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-817e7a51-19f9-4f56-b870-1a02bf590d08 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-817e7a51-19f9-4f56-b870-1a02bf590d08 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-817e7a51-19f9-4f56-b870-1a02bf590d08 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-817e7a51-19f9-4f56-b870-1a02bf590d08 {
    width: 100%;
    height: auto;
  }

  #s-817e7a51-19f9-4f56-b870-1a02bf590d08 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image {
    
    
  }


.s-817e7a51-19f9-4f56-b870-1a02bf590d08 .shogun-image-content {
  
    align-items: center;
  
}

.s-817e7a51-19f9-4f56-b870-1a02bf590d08.shg-align-container {
  display: flex;
  justify-content: center
}

.s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-817e7a51-19f9-4f56-b870-1a02bf590d08 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image-container {
      position: relative;
    }

    .s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-817e7a51-19f9-4f56-b870-1a02bf590d08 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-817e7a51-19f9-4f56-b870-1a02bf590d08 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-817e7a51-19f9-4f56-b870-1a02bf590d08 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-817e7a51-19f9-4f56-b870-1a02bf590d08 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-817e7a51-19f9-4f56-b870-1a02bf590d08 {
    width: 100%;
    height: auto;
  }

  #s-817e7a51-19f9-4f56-b870-1a02bf590d08 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image {
    
    
  }


.s-817e7a51-19f9-4f56-b870-1a02bf590d08 .shogun-image-content {
  
    align-items: center;
  
}

.s-817e7a51-19f9-4f56-b870-1a02bf590d08.shg-align-container {
  display: flex;
  justify-content: center
}

.s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-817e7a51-19f9-4f56-b870-1a02bf590d08 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image-container {
      position: relative;
    }

    .s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-817e7a51-19f9-4f56-b870-1a02bf590d08.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-817e7a51-19f9-4f56-b870-1a02bf590d08 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 {
  max-width: 350px;
aspect-ratio: 1722/1102;
text-align: center;
}
@media (max-width: 767px){#s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 {
  margin-left: 4%;
margin-right: 4%;
max-width: 300px;
}
}




  @supports  (aspect-ratio: 1/1) {
    
    #s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 .shg-image-content-wrapper {
      aspect-ratio: 1722/1102;
      min-width: 100%;
      height: auto;
    }

    #s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 .shogun-image-link {
      aspect-ratio: 1722/1102;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 {
    width: 100%;
    height: auto;
  }

  #s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image {
    
    
  }


.s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 .shogun-image-content {
  
    align-items: center;
  
}

.s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 {
      --shg-aspect-ratio: calc(1722/1102); 
    }

    .s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image-container {
      position: relative;
    }

    .s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 .shg-image-content-wrapper {
      aspect-ratio: 1722/1102;
      min-width: 100%;
      height: auto;
    }

    #s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 .shogun-image-link {
      aspect-ratio: 1722/1102;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 {
    width: 100%;
    height: auto;
  }

  #s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image {
    
    
  }


.s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 .shogun-image-content {
  
    align-items: center;
  
}

.s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 {
      --shg-aspect-ratio: calc(1722/1102); 
    }

    .s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image-container {
      position: relative;
    }

    .s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 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-0d6fd423-bca6-48ce-b73f-6bd41d829c49 .shg-image-content-wrapper {
      aspect-ratio: 1722/1102;
      min-width: 100%;
      height: auto;
    }

    #s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 .shogun-image-link {
      aspect-ratio: 1722/1102;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 {
    width: 100%;
    height: auto;
  }

  #s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image {
    
    
  }


.s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 .shogun-image-content {
  
    align-items: center;
  
}

.s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 {
      --shg-aspect-ratio: calc(1722/1102); 
    }

    .s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image-container {
      position: relative;
    }

    .s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 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-0d6fd423-bca6-48ce-b73f-6bd41d829c49 .shg-image-content-wrapper {
      aspect-ratio: 1722/1102;
      min-width: 100%;
      height: auto;
    }

    #s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 .shogun-image-link {
      aspect-ratio: 1722/1102;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 {
    width: 100%;
    height: auto;
  }

  #s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image {
    
    
  }


.s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 .shogun-image-content {
  
    align-items: center;
  
}

.s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 {
      --shg-aspect-ratio: calc(1722/1102); 
    }

    .s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image-container {
      position: relative;
    }

    .s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 .shg-image-content-wrapper {
      aspect-ratio: 1722/1102;
      min-width: 100%;
      height: auto;
    }

    #s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 .shogun-image-link {
      aspect-ratio: 1722/1102;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 {
    width: 100%;
    height: auto;
  }

  #s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image {
    
    
  }


.s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 .shogun-image-content {
  
    align-items: center;
  
}

.s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 {
      --shg-aspect-ratio: calc(1722/1102); 
    }

    .s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image-container {
      position: relative;
    }

    .s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0d6fd423-bca6-48ce-b73f-6bd41d829c49.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0d6fd423-bca6-48ce-b73f-6bd41d829c49 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-0d69fc09-93ae-4ba3-b9cd-21854906f105 {
  margin-bottom: -24px;
}

#s-148b3e80-e49b-4dc5-b4b4-e2ed38b1653c {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1200px;
}
@media (max-width: 767px){#s-148b3e80-e49b-4dc5-b4b4-e2ed38b1653c {
  margin-left: 4%;
margin-right: 4%;
display: none;
}
#s-148b3e80-e49b-4dc5-b4b4-e2ed38b1653c, #wrap-s-148b3e80-e49b-4dc5-b4b4-e2ed38b1653c { display: none !important; }}







#s-148b3e80-e49b-4dc5-b4b4-e2ed38b1653c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-148b3e80-e49b-4dc5-b4b4-e2ed38b1653c.shg-box.shg-c {
  justify-content: center;
}

#s-04462bea-9eef-46b6-85fb-7198a4d19c40 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1200px;
}
@media (max-width: 767px){#s-04462bea-9eef-46b6-85fb-7198a4d19c40 {
  display: none;
}
#s-04462bea-9eef-46b6-85fb-7198a4d19c40, #wrap-s-04462bea-9eef-46b6-85fb-7198a4d19c40 { display: none !important; }}







#s-04462bea-9eef-46b6-85fb-7198a4d19c40 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-04462bea-9eef-46b6-85fb-7198a4d19c40.shg-box.shg-c {
  justify-content: center;
}

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

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

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

#s-35d4093b-060c-4b1b-a4fe-006364d53dc2 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
max-width: 1200px;
}
@media (min-width: 768px) and (max-width: 991px){#s-35d4093b-060c-4b1b-a4fe-006364d53dc2 {
  display: none;
}
#s-35d4093b-060c-4b1b-a4fe-006364d53dc2, #wrap-s-35d4093b-060c-4b1b-a4fe-006364d53dc2 { display: none !important; }}@media (max-width: 767px){#s-35d4093b-060c-4b1b-a4fe-006364d53dc2 {
  display: none;
}
#s-35d4093b-060c-4b1b-a4fe-006364d53dc2, #wrap-s-35d4093b-060c-4b1b-a4fe-006364d53dc2 { display: none !important; }}
@media (min-width: 0px) {
[id="s-35d4093b-060c-4b1b-a4fe-006364d53dc2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-35d4093b-060c-4b1b-a4fe-006364d53dc2"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-35d4093b-060c-4b1b-a4fe-006364d53dc2"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-35d4093b-060c-4b1b-a4fe-006364d53dc2"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 {
  margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 12px;
max-width: 1440px;
aspect-ratio: 1440/1920;
text-align: center;
opacity: 0.9;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 .shg-image-content-wrapper {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }

    #s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 .shogun-image-link {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 {
    width: 100%;
    height: auto;
  }

  #s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image {
    
    
  }


.s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 {
      --shg-aspect-ratio: calc(1440/1920); 
    }

    .s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image-container {
      position: relative;
    }

    .s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 .shg-image-content-wrapper {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }

    #s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 .shogun-image-link {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 {
    width: 100%;
    height: auto;
  }

  #s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image {
    
    
  }


.s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 {
      --shg-aspect-ratio: calc(1440/1920); 
    }

    .s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image-container {
      position: relative;
    }

    .s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 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-5fa91bba-27e2-4f45-b5d1-a561755db4c0 .shg-image-content-wrapper {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }

    #s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 .shogun-image-link {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 {
    width: 100%;
    height: auto;
  }

  #s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image {
    
    
  }


.s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 {
      --shg-aspect-ratio: calc(1440/1920); 
    }

    .s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image-container {
      position: relative;
    }

    .s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 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-5fa91bba-27e2-4f45-b5d1-a561755db4c0 .shg-image-content-wrapper {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }

    #s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 .shogun-image-link {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 {
    width: 100%;
    height: auto;
  }

  #s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image {
    
    
  }


.s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 {
      --shg-aspect-ratio: calc(1440/1920); 
    }

    .s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image-container {
      position: relative;
    }

    .s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 .shg-image-content-wrapper {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }

    #s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 .shogun-image-link {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 {
    width: 100%;
    height: auto;
  }

  #s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image {
    
    
  }


.s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 {
      --shg-aspect-ratio: calc(1440/1920); 
    }

    .s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image-container {
      position: relative;
    }

    .s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5fa91bba-27e2-4f45-b5d1-a561755db4c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5fa91bba-27e2-4f45-b5d1-a561755db4c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-0801e3f5-a24f-46e0-bfc1-7f1f4152cbd4 {
  margin-left: auto;
margin-right: auto;
min-height: 220px;
}








#s-0801e3f5-a24f-46e0-bfc1-7f1f4152cbd4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0801e3f5-a24f-46e0-bfc1-7f1f4152cbd4.shg-box.shg-c {
  justify-content: center;
}

#s-4f59cf1b-4855-438f-ba03-8feb9efdd78f {
  margin-top: 0px;
margin-bottom: -16px;
}

.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

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

.shg-btn-text {
  
  
}

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

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

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

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

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

#s-a4e7eea4-33e4-47ed-b4a2-4f57754406b7 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZmI0YmJhODEtYWJhYi00OWNmLTg5NDUtYzkyMDUzZjE0M2E2IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjU5MDFlO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmZiYTM2O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNmYjRiYmE4MS1hYmFiLTQ5Y2YtODk0NS1jOTIwNTNmMTQzYTYpIi8+PC9zdmc+);
background-repeat: no-repeat;
margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(245, 144, 30, 1);
border-style: solid;
border-radius: 8px;
text-align: center;
text-decoration: none;
color: rgba(29, 29, 29, 1);
hover-type: gradient;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f5901e"}, {"id"=>2, "pos"=>1, "color"=>"#ffba36"}];
}
#s-a4e7eea4-33e4-47ed-b4a2-4f57754406b7:hover {box-shadow:1px 1px 13px 10px rgba(22, 22, 22, 0.67) !important;
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iNDQ5ZGQxZjEtNmM0ZS00MWFkLTgyOWEtN2Y1ZGEzZDY0ZGE5IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZmZiYTM2O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZjU5MDFlO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCM0NDlkZDFmMS02YzRlLTQxYWQtODI5YS03ZjVkYTNkNjRkYTkpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#ffba36"}, {"id"=>2, "pos"=>1, "color"=>"#f5901e"}] !important;
hover-type: gradient !important;}#s-a4e7eea4-33e4-47ed-b4a2-4f57754406b7:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-a4e7eea4-33e4-47ed-b4a2-4f57754406b7-root {
    text-align: center;
  }


#s-a4e7eea4-33e4-47ed-b4a2-4f57754406b7.shg-btn {
  color: rgba(29, 29, 29, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-a4e7eea4-33e4-47ed-b4a2-4f57754406b7-root {
    text-align: center;
  }


#s-a4e7eea4-33e4-47ed-b4a2-4f57754406b7.shg-btn {
  color: rgba(29, 29, 29, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a4e7eea4-33e4-47ed-b4a2-4f57754406b7-root {
    text-align: center;
  }


#s-a4e7eea4-33e4-47ed-b4a2-4f57754406b7.shg-btn {
  color: rgba(29, 29, 29, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a4e7eea4-33e4-47ed-b4a2-4f57754406b7-root {
    text-align: center;
  }


#s-a4e7eea4-33e4-47ed-b4a2-4f57754406b7.shg-btn {
  color: rgba(29, 29, 29, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-a4e7eea4-33e4-47ed-b4a2-4f57754406b7-root {
    text-align: center;
  }


#s-a4e7eea4-33e4-47ed-b4a2-4f57754406b7.shg-btn {
  color: rgba(29, 29, 29, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
}
#s-d157e332-0798-4d55-8ef9-f006e5e39fd0 {
  margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 12px;
max-width: 1440px;
aspect-ratio: 1440/1920;
text-align: center;
opacity: 0.9;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-d157e332-0798-4d55-8ef9-f006e5e39fd0 .shg-image-content-wrapper {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }

    #s-d157e332-0798-4d55-8ef9-f006e5e39fd0 .shogun-image-link {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d157e332-0798-4d55-8ef9-f006e5e39fd0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d157e332-0798-4d55-8ef9-f006e5e39fd0 {
    width: 100%;
    height: auto;
  }

  #s-d157e332-0798-4d55-8ef9-f006e5e39fd0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image {
    
    
  }


.s-d157e332-0798-4d55-8ef9-f006e5e39fd0 .shogun-image-content {
  
    align-items: center;
  
}

.s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d157e332-0798-4d55-8ef9-f006e5e39fd0 {
      --shg-aspect-ratio: calc(1440/1920); 
    }

    .s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image-container {
      position: relative;
    }

    .s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d157e332-0798-4d55-8ef9-f006e5e39fd0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-d157e332-0798-4d55-8ef9-f006e5e39fd0 .shg-image-content-wrapper {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }

    #s-d157e332-0798-4d55-8ef9-f006e5e39fd0 .shogun-image-link {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d157e332-0798-4d55-8ef9-f006e5e39fd0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d157e332-0798-4d55-8ef9-f006e5e39fd0 {
    width: 100%;
    height: auto;
  }

  #s-d157e332-0798-4d55-8ef9-f006e5e39fd0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image {
    
    
  }


.s-d157e332-0798-4d55-8ef9-f006e5e39fd0 .shogun-image-content {
  
    align-items: center;
  
}

.s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d157e332-0798-4d55-8ef9-f006e5e39fd0 {
      --shg-aspect-ratio: calc(1440/1920); 
    }

    .s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image-container {
      position: relative;
    }

    .s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d157e332-0798-4d55-8ef9-f006e5e39fd0 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-d157e332-0798-4d55-8ef9-f006e5e39fd0 .shg-image-content-wrapper {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }

    #s-d157e332-0798-4d55-8ef9-f006e5e39fd0 .shogun-image-link {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d157e332-0798-4d55-8ef9-f006e5e39fd0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d157e332-0798-4d55-8ef9-f006e5e39fd0 {
    width: 100%;
    height: auto;
  }

  #s-d157e332-0798-4d55-8ef9-f006e5e39fd0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image {
    
    
  }


.s-d157e332-0798-4d55-8ef9-f006e5e39fd0 .shogun-image-content {
  
    align-items: center;
  
}

.s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d157e332-0798-4d55-8ef9-f006e5e39fd0 {
      --shg-aspect-ratio: calc(1440/1920); 
    }

    .s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image-container {
      position: relative;
    }

    .s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d157e332-0798-4d55-8ef9-f006e5e39fd0 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-d157e332-0798-4d55-8ef9-f006e5e39fd0 .shg-image-content-wrapper {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }

    #s-d157e332-0798-4d55-8ef9-f006e5e39fd0 .shogun-image-link {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d157e332-0798-4d55-8ef9-f006e5e39fd0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d157e332-0798-4d55-8ef9-f006e5e39fd0 {
    width: 100%;
    height: auto;
  }

  #s-d157e332-0798-4d55-8ef9-f006e5e39fd0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image {
    
    
  }


.s-d157e332-0798-4d55-8ef9-f006e5e39fd0 .shogun-image-content {
  
    align-items: center;
  
}

.s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d157e332-0798-4d55-8ef9-f006e5e39fd0 {
      --shg-aspect-ratio: calc(1440/1920); 
    }

    .s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image-container {
      position: relative;
    }

    .s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d157e332-0798-4d55-8ef9-f006e5e39fd0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-d157e332-0798-4d55-8ef9-f006e5e39fd0 .shg-image-content-wrapper {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }

    #s-d157e332-0798-4d55-8ef9-f006e5e39fd0 .shogun-image-link {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d157e332-0798-4d55-8ef9-f006e5e39fd0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d157e332-0798-4d55-8ef9-f006e5e39fd0 {
    width: 100%;
    height: auto;
  }

  #s-d157e332-0798-4d55-8ef9-f006e5e39fd0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image {
    
    
  }


.s-d157e332-0798-4d55-8ef9-f006e5e39fd0 .shogun-image-content {
  
    align-items: center;
  
}

.s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d157e332-0798-4d55-8ef9-f006e5e39fd0 {
      --shg-aspect-ratio: calc(1440/1920); 
    }

    .s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image-container {
      position: relative;
    }

    .s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d157e332-0798-4d55-8ef9-f006e5e39fd0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d157e332-0798-4d55-8ef9-f006e5e39fd0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-df8f7227-eea4-4340-9d50-45b06b348465 {
  margin-left: auto;
margin-right: auto;
min-height: 220px;
}








#s-df8f7227-eea4-4340-9d50-45b06b348465 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-df8f7227-eea4-4340-9d50-45b06b348465.shg-box.shg-c {
  justify-content: center;
}

#s-ef4770e4-9ead-4158-9a0b-4ba6650a990c {
  margin-top: 0px;
margin-bottom: -16px;
}

#s-bbcccfa2-9b45-4285-92f1-4013ded603f1 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZmI0YmJhODEtYWJhYi00OWNmLTg5NDUtYzkyMDUzZjE0M2E2IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjU5MDFlO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmZiYTM2O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNmYjRiYmE4MS1hYmFiLTQ5Y2YtODk0NS1jOTIwNTNmMTQzYTYpIi8+PC9zdmc+);
background-repeat: no-repeat;
margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(245, 144, 30, 1);
border-style: solid;
border-radius: 8px;
text-align: center;
text-decoration: none;
color: rgba(29, 29, 29, 1);
hover-type: gradient;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f5901e"}, {"id"=>2, "pos"=>1, "color"=>"#ffba36"}];
}
#s-bbcccfa2-9b45-4285-92f1-4013ded603f1:hover {box-shadow:1px 1px 13px 10px rgba(22, 22, 22, 0.67) !important;
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYTY2MDA2MTEtZGZiMS00MmIzLThjYTUtZDQ4ZTUzODhjYTFlIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZmZiYTM2O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZjU5MDFlO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNhNjYwMDYxMS1kZmIxLTQyYjMtOGNhNS1kNDhlNTM4OGNhMWUpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#ffba36"}, {"id"=>2, "pos"=>1, "color"=>"#f5901e"}] !important;
hover-type: gradient !important;}#s-bbcccfa2-9b45-4285-92f1-4013ded603f1:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-bbcccfa2-9b45-4285-92f1-4013ded603f1-root {
    text-align: center;
  }


#s-bbcccfa2-9b45-4285-92f1-4013ded603f1.shg-btn {
  color: rgba(29, 29, 29, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-bbcccfa2-9b45-4285-92f1-4013ded603f1-root {
    text-align: center;
  }


#s-bbcccfa2-9b45-4285-92f1-4013ded603f1.shg-btn {
  color: rgba(29, 29, 29, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-bbcccfa2-9b45-4285-92f1-4013ded603f1-root {
    text-align: center;
  }


#s-bbcccfa2-9b45-4285-92f1-4013ded603f1.shg-btn {
  color: rgba(29, 29, 29, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-bbcccfa2-9b45-4285-92f1-4013ded603f1-root {
    text-align: center;
  }


#s-bbcccfa2-9b45-4285-92f1-4013ded603f1.shg-btn {
  color: rgba(29, 29, 29, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-bbcccfa2-9b45-4285-92f1-4013ded603f1-root {
    text-align: center;
  }


#s-bbcccfa2-9b45-4285-92f1-4013ded603f1.shg-btn {
  color: rgba(29, 29, 29, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
}
#s-44caea90-26f1-4ddc-8ebd-e164e8c60389 {
  margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 12px;
max-width: 1440px;
aspect-ratio: 1440/1920;
text-align: center;
opacity: 0.9;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-44caea90-26f1-4ddc-8ebd-e164e8c60389 .shg-image-content-wrapper {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }

    #s-44caea90-26f1-4ddc-8ebd-e164e8c60389 .shogun-image-link {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-44caea90-26f1-4ddc-8ebd-e164e8c60389 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-44caea90-26f1-4ddc-8ebd-e164e8c60389 {
    width: 100%;
    height: auto;
  }

  #s-44caea90-26f1-4ddc-8ebd-e164e8c60389 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image {
    
    
  }


.s-44caea90-26f1-4ddc-8ebd-e164e8c60389 .shogun-image-content {
  
    align-items: center;
  
}

.s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-44caea90-26f1-4ddc-8ebd-e164e8c60389 {
      --shg-aspect-ratio: calc(1440/1920); 
    }

    .s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image-container {
      position: relative;
    }

    .s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44caea90-26f1-4ddc-8ebd-e164e8c60389 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-44caea90-26f1-4ddc-8ebd-e164e8c60389 .shg-image-content-wrapper {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }

    #s-44caea90-26f1-4ddc-8ebd-e164e8c60389 .shogun-image-link {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-44caea90-26f1-4ddc-8ebd-e164e8c60389 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-44caea90-26f1-4ddc-8ebd-e164e8c60389 {
    width: 100%;
    height: auto;
  }

  #s-44caea90-26f1-4ddc-8ebd-e164e8c60389 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image {
    
    
  }


.s-44caea90-26f1-4ddc-8ebd-e164e8c60389 .shogun-image-content {
  
    align-items: center;
  
}

.s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-44caea90-26f1-4ddc-8ebd-e164e8c60389 {
      --shg-aspect-ratio: calc(1440/1920); 
    }

    .s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image-container {
      position: relative;
    }

    .s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44caea90-26f1-4ddc-8ebd-e164e8c60389 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-44caea90-26f1-4ddc-8ebd-e164e8c60389 .shg-image-content-wrapper {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }

    #s-44caea90-26f1-4ddc-8ebd-e164e8c60389 .shogun-image-link {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-44caea90-26f1-4ddc-8ebd-e164e8c60389 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-44caea90-26f1-4ddc-8ebd-e164e8c60389 {
    width: 100%;
    height: auto;
  }

  #s-44caea90-26f1-4ddc-8ebd-e164e8c60389 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image {
    
    
  }


.s-44caea90-26f1-4ddc-8ebd-e164e8c60389 .shogun-image-content {
  
    align-items: center;
  
}

.s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-44caea90-26f1-4ddc-8ebd-e164e8c60389 {
      --shg-aspect-ratio: calc(1440/1920); 
    }

    .s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image-container {
      position: relative;
    }

    .s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44caea90-26f1-4ddc-8ebd-e164e8c60389 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-44caea90-26f1-4ddc-8ebd-e164e8c60389 .shg-image-content-wrapper {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }

    #s-44caea90-26f1-4ddc-8ebd-e164e8c60389 .shogun-image-link {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-44caea90-26f1-4ddc-8ebd-e164e8c60389 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-44caea90-26f1-4ddc-8ebd-e164e8c60389 {
    width: 100%;
    height: auto;
  }

  #s-44caea90-26f1-4ddc-8ebd-e164e8c60389 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image {
    
    
  }


.s-44caea90-26f1-4ddc-8ebd-e164e8c60389 .shogun-image-content {
  
    align-items: center;
  
}

.s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-44caea90-26f1-4ddc-8ebd-e164e8c60389 {
      --shg-aspect-ratio: calc(1440/1920); 
    }

    .s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image-container {
      position: relative;
    }

    .s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44caea90-26f1-4ddc-8ebd-e164e8c60389 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-44caea90-26f1-4ddc-8ebd-e164e8c60389 .shg-image-content-wrapper {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }

    #s-44caea90-26f1-4ddc-8ebd-e164e8c60389 .shogun-image-link {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-44caea90-26f1-4ddc-8ebd-e164e8c60389 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-44caea90-26f1-4ddc-8ebd-e164e8c60389 {
    width: 100%;
    height: auto;
  }

  #s-44caea90-26f1-4ddc-8ebd-e164e8c60389 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image {
    
    
  }


.s-44caea90-26f1-4ddc-8ebd-e164e8c60389 .shogun-image-content {
  
    align-items: center;
  
}

.s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shg-align-container {
  display: flex;
  justify-content: center
}

.s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-44caea90-26f1-4ddc-8ebd-e164e8c60389 {
      --shg-aspect-ratio: calc(1440/1920); 
    }

    .s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image-container {
      position: relative;
    }

    .s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-44caea90-26f1-4ddc-8ebd-e164e8c60389.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-44caea90-26f1-4ddc-8ebd-e164e8c60389 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-0b29bb26-3a51-418a-b41b-a1c527062118 {
  margin-left: auto;
margin-right: auto;
min-height: 220px;
}








#s-0b29bb26-3a51-418a-b41b-a1c527062118 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0b29bb26-3a51-418a-b41b-a1c527062118.shg-box.shg-c {
  justify-content: center;
}

#s-2a5c3154-3eab-401b-93d3-64ea9681bd21 {
  margin-top: 0px;
margin-bottom: -16px;
}

#s-42a9ddb9-87b8-46e4-819d-f6ff5ddc296a {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iZmI0YmJhODEtYWJhYi00OWNmLTg5NDUtYzkyMDUzZjE0M2E2IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZjU5MDFlO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmZiYTM2O3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNmYjRiYmE4MS1hYmFiLTQ5Y2YtODk0NS1jOTIwNTNmMTQzYTYpIi8+PC9zdmc+);
background-repeat: no-repeat;
margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(245, 144, 30, 1);
border-style: solid;
border-radius: 8px;
text-align: center;
text-decoration: none;
color: rgba(29, 29, 29, 1);
hover-type: gradient;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#f5901e"}, {"id"=>2, "pos"=>1, "color"=>"#ffba36"}];
}
#s-42a9ddb9-87b8-46e4-819d-f6ff5ddc296a:hover {box-shadow:1px 1px 13px 10px rgba(22, 22, 22, 0.67) !important;
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYmFiN2QyYjYtMzM1Yy00MWE2LWI2NjAtOGRiNTlhMWYwMzBmIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojZmZiYTM2O3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZjU5MDFlO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNiYWI3ZDJiNi0zMzVjLTQxYTYtYjY2MC04ZGI1OWExZjAzMGYpIi8+PC9zdmc+) !important;
background-repeat: no-repeat !important;
text-decoration: none !important;
background-gradient: [{"id"=>1, "pos"=>0, "color"=>"#ffba36"}, {"id"=>2, "pos"=>1, "color"=>"#f5901e"}] !important;
hover-type: gradient !important;}#s-42a9ddb9-87b8-46e4-819d-f6ff5ddc296a:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-42a9ddb9-87b8-46e4-819d-f6ff5ddc296a-root {
    text-align: center;
  }


#s-42a9ddb9-87b8-46e4-819d-f6ff5ddc296a.shg-btn {
  color: rgba(29, 29, 29, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-42a9ddb9-87b8-46e4-819d-f6ff5ddc296a-root {
    text-align: center;
  }


#s-42a9ddb9-87b8-46e4-819d-f6ff5ddc296a.shg-btn {
  color: rgba(29, 29, 29, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-42a9ddb9-87b8-46e4-819d-f6ff5ddc296a-root {
    text-align: center;
  }


#s-42a9ddb9-87b8-46e4-819d-f6ff5ddc296a.shg-btn {
  color: rgba(29, 29, 29, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-42a9ddb9-87b8-46e4-819d-f6ff5ddc296a-root {
    text-align: center;
  }


#s-42a9ddb9-87b8-46e4-819d-f6ff5ddc296a.shg-btn {
  color: rgba(29, 29, 29, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-42a9ddb9-87b8-46e4-819d-f6ff5ddc296a-root {
    text-align: center;
  }


#s-42a9ddb9-87b8-46e4-819d-f6ff5ddc296a.shg-btn {
  color: rgba(29, 29, 29, 1);
  font-size: 14px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
}
.shg-hr-wrapper {
  padding: 30px 0;
}

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

#s-bab79353-cc33-4aeb-ba11-dfb2806173be {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-bab79353-cc33-4aeb-ba11-dfb2806173be {
  margin-top: -15px;
display: unset;
}
#s-bab79353-cc33-4aeb-ba11-dfb2806173be, #wrap-s-bab79353-cc33-4aeb-ba11-dfb2806173be { display: unset !important; }}
#s-bab79353-cc33-4aeb-ba11-dfb2806173be hr {
  border-top: 1px solid rgba(171, 150, 109, 1);
}

#s-b76f743e-dcbe-4f3d-b65b-f63e950e074b {
  margin-top: -60px;
margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 600px;
}








#s-b76f743e-dcbe-4f3d-b65b-f63e950e074b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b76f743e-dcbe-4f3d-b65b-f63e950e074b.shg-box.shg-c {
  justify-content: center;
}

#s-70db768a-c5ab-4f5f-9bb2-a38daf24d39b {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-d10d283e-517e-4892-8205-3948d7a0e5e3 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 25px;
min-height: 50px;
max-width: 1200px;
}
@media (max-width: 767px){#s-d10d283e-517e-4892-8205-3948d7a0e5e3 {
  margin-top: 0px;
margin-left: 4%;
margin-right: 4%;
}
}







#s-d10d283e-517e-4892-8205-3948d7a0e5e3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d10d283e-517e-4892-8205-3948d7a0e5e3.shg-box.shg-c {
  justify-content: center;
}

#s-f00f7806-925d-464d-a785-900945a6e7eb {
  margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
max-width: 1200px;
background-color: rgba(22, 22, 22, 1);
}








#s-f00f7806-925d-464d-a785-900945a6e7eb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f00f7806-925d-464d-a785-900945a6e7eb.shg-box.shg-c {
  justify-content: center;
}

#s-c661b3e8-0c32-4848-8b87-740f0ce1e35b {
  margin-top: 40px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
max-width: 1000px;
}
@media (max-width: 767px){#s-c661b3e8-0c32-4848-8b87-740f0ce1e35b {
  margin-top: 20px;
margin-left: 4%;
margin-bottom: 20px;
margin-right: 4%;
}
}
@media (min-width: 0px) {
[id="s-c661b3e8-0c32-4848-8b87-740f0ce1e35b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c661b3e8-0c32-4848-8b87-740f0ce1e35b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c661b3e8-0c32-4848-8b87-740f0ce1e35b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c661b3e8-0c32-4848-8b87-740f0ce1e35b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-70f8aaa7-e7fc-4fa1-bda6-897fd2050be3 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (max-width: 767px){#s-70f8aaa7-e7fc-4fa1-bda6-897fd2050be3 {
  min-height: 2px;
}
}







#s-70f8aaa7-e7fc-4fa1-bda6-897fd2050be3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-70f8aaa7-e7fc-4fa1-bda6-897fd2050be3.shg-box.shg-c {
  justify-content: center;
}

#s-63f0fc96-d2b8-4807-881b-e3562b3e1262 {
  margin-bottom: -24px;
}

#s-47c3e4fc-e4de-48a6-a011-f56bd34e51cb {
  margin-top: 0px;
margin-bottom: -16px;
}

#s-3f4d1e52-2cb0-4cb0-a244-9e9793048f63 {
  margin-top: 10px;
margin-bottom: -21px;
}

#s-0bb688f7-2e5b-455f-80f3-6501a67a1b25 {
  min-height: 50px;
}
@media (max-width: 767px){#s-0bb688f7-2e5b-455f-80f3-6501a67a1b25 {
  min-height: 0px;
}
}







#s-0bb688f7-2e5b-455f-80f3-6501a67a1b25 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0bb688f7-2e5b-455f-80f3-6501a67a1b25.shg-box.shg-c {
  justify-content: center;
}

#s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 {
  margin-left: auto;
margin-right: auto;
max-width: 1440px;
aspect-ratio: 1440/1920;
text-align: center;
}
@media (max-width: 767px){#s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 {
  margin-top: 20px;
margin-bottom: 0px;
}
}




  @supports  (aspect-ratio: 1/1) {
    
    #s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 .shg-image-content-wrapper {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }

    #s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 .shogun-image-link {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 {
    width: 100%;
    height: auto;
  }

  #s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image {
    
    
  }


.s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 {
      --shg-aspect-ratio: calc(1440/1920); 
    }

    .s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image-container {
      position: relative;
    }

    .s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 .shg-image-content-wrapper {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }

    #s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 .shogun-image-link {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 {
    width: 100%;
    height: auto;
  }

  #s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image {
    
    
  }


.s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 {
      --shg-aspect-ratio: calc(1440/1920); 
    }

    .s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image-container {
      position: relative;
    }

    .s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 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-ea431d50-0e68-4f4f-8af4-4c428bed08c0 .shg-image-content-wrapper {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }

    #s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 .shogun-image-link {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 {
    width: 100%;
    height: auto;
  }

  #s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image {
    
    
  }


.s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 {
      --shg-aspect-ratio: calc(1440/1920); 
    }

    .s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image-container {
      position: relative;
    }

    .s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 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-ea431d50-0e68-4f4f-8af4-4c428bed08c0 .shg-image-content-wrapper {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }

    #s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 .shogun-image-link {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 {
    width: 100%;
    height: auto;
  }

  #s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image {
    
    
  }


.s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 {
      --shg-aspect-ratio: calc(1440/1920); 
    }

    .s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image-container {
      position: relative;
    }

    .s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 .shg-image-content-wrapper {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }

    #s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 .shogun-image-link {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 {
    width: 100%;
    height: auto;
  }

  #s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image {
    
    
  }


.s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 .shogun-image-content {
  
    align-items: center;
  
}

.s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 {
      --shg-aspect-ratio: calc(1440/1920); 
    }

    .s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image-container {
      position: relative;
    }

    .s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ea431d50-0e68-4f4f-8af4-4c428bed08c0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ea431d50-0e68-4f4f-8af4-4c428bed08c0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-0e885b55-839f-471c-8acc-421118cc46cd {
  margin-top: 0px;
margin-left: auto;
margin-bottom: -20px;
margin-right: auto;
max-width: 1000px;
}
@media (max-width: 767px){#s-0e885b55-839f-471c-8acc-421118cc46cd {
  margin-left: 4%;
margin-right: 4%;
}
}
#s-e8335f21-88cc-4536-9f78-f945d8d41d70 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 40px;
margin-right: auto;
max-width: 1000px;
}
@media (max-width: 767px){#s-e8335f21-88cc-4536-9f78-f945d8d41d70 {
  margin-left: 4%;
margin-right: 4%;
}
}
@media (min-width: 0px) {
[id="s-e8335f21-88cc-4536-9f78-f945d8d41d70"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-e8335f21-88cc-4536-9f78-f945d8d41d70"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e8335f21-88cc-4536-9f78-f945d8d41d70"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e8335f21-88cc-4536-9f78-f945d8d41d70"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

#s-27e7ec29-ff2e-476b-8626-72a2623d6f24 {
  margin-left: auto;
margin-right: auto;
max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}
@media (max-width: 767px){#s-27e7ec29-ff2e-476b-8626-72a2623d6f24 {
  margin-bottom: 20px;
}
}




  @supports  (aspect-ratio: 1/1) {
    
    #s-27e7ec29-ff2e-476b-8626-72a2623d6f24 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-27e7ec29-ff2e-476b-8626-72a2623d6f24 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-27e7ec29-ff2e-476b-8626-72a2623d6f24 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-27e7ec29-ff2e-476b-8626-72a2623d6f24 {
    width: 100%;
    height: auto;
  }

  #s-27e7ec29-ff2e-476b-8626-72a2623d6f24 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image {
    
    
  }


.s-27e7ec29-ff2e-476b-8626-72a2623d6f24 .shogun-image-content {
  
    align-items: center;
  
}

.s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-27e7ec29-ff2e-476b-8626-72a2623d6f24 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image-container {
      position: relative;
    }

    .s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-27e7ec29-ff2e-476b-8626-72a2623d6f24 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-27e7ec29-ff2e-476b-8626-72a2623d6f24 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-27e7ec29-ff2e-476b-8626-72a2623d6f24 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-27e7ec29-ff2e-476b-8626-72a2623d6f24 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-27e7ec29-ff2e-476b-8626-72a2623d6f24 {
    width: 100%;
    height: auto;
  }

  #s-27e7ec29-ff2e-476b-8626-72a2623d6f24 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image {
    
    
  }


.s-27e7ec29-ff2e-476b-8626-72a2623d6f24 .shogun-image-content {
  
    align-items: center;
  
}

.s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-27e7ec29-ff2e-476b-8626-72a2623d6f24 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image-container {
      position: relative;
    }

    .s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-27e7ec29-ff2e-476b-8626-72a2623d6f24 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-27e7ec29-ff2e-476b-8626-72a2623d6f24 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-27e7ec29-ff2e-476b-8626-72a2623d6f24 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-27e7ec29-ff2e-476b-8626-72a2623d6f24 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-27e7ec29-ff2e-476b-8626-72a2623d6f24 {
    width: 100%;
    height: auto;
  }

  #s-27e7ec29-ff2e-476b-8626-72a2623d6f24 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image {
    
    
  }


.s-27e7ec29-ff2e-476b-8626-72a2623d6f24 .shogun-image-content {
  
    align-items: center;
  
}

.s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-27e7ec29-ff2e-476b-8626-72a2623d6f24 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image-container {
      position: relative;
    }

    .s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-27e7ec29-ff2e-476b-8626-72a2623d6f24 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-27e7ec29-ff2e-476b-8626-72a2623d6f24 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-27e7ec29-ff2e-476b-8626-72a2623d6f24 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-27e7ec29-ff2e-476b-8626-72a2623d6f24 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-27e7ec29-ff2e-476b-8626-72a2623d6f24 {
    width: 100%;
    height: auto;
  }

  #s-27e7ec29-ff2e-476b-8626-72a2623d6f24 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image {
    
    
  }


.s-27e7ec29-ff2e-476b-8626-72a2623d6f24 .shogun-image-content {
  
    align-items: center;
  
}

.s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-27e7ec29-ff2e-476b-8626-72a2623d6f24 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image-container {
      position: relative;
    }

    .s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-27e7ec29-ff2e-476b-8626-72a2623d6f24 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-27e7ec29-ff2e-476b-8626-72a2623d6f24 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-27e7ec29-ff2e-476b-8626-72a2623d6f24 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-27e7ec29-ff2e-476b-8626-72a2623d6f24 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-27e7ec29-ff2e-476b-8626-72a2623d6f24 {
    width: 100%;
    height: auto;
  }

  #s-27e7ec29-ff2e-476b-8626-72a2623d6f24 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image {
    
    
  }


.s-27e7ec29-ff2e-476b-8626-72a2623d6f24 .shogun-image-content {
  
    align-items: center;
  
}

.s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shg-align-container {
  display: flex;
  justify-content: center
}

.s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-27e7ec29-ff2e-476b-8626-72a2623d6f24 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image-container {
      position: relative;
    }

    .s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-27e7ec29-ff2e-476b-8626-72a2623d6f24.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-27e7ec29-ff2e-476b-8626-72a2623d6f24 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-56754375-bdc2-4e8f-8f57-73de74a76c51 {
  margin-left: auto;
margin-right: auto;
max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-56754375-bdc2-4e8f-8f57-73de74a76c51 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-56754375-bdc2-4e8f-8f57-73de74a76c51 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-56754375-bdc2-4e8f-8f57-73de74a76c51 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-56754375-bdc2-4e8f-8f57-73de74a76c51 {
    width: 100%;
    height: auto;
  }

  #s-56754375-bdc2-4e8f-8f57-73de74a76c51 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image {
    
    
  }


.s-56754375-bdc2-4e8f-8f57-73de74a76c51 .shogun-image-content {
  
    align-items: center;
  
}

.s-56754375-bdc2-4e8f-8f57-73de74a76c51.shg-align-container {
  display: flex;
  justify-content: center
}

.s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-56754375-bdc2-4e8f-8f57-73de74a76c51 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image-container {
      position: relative;
    }

    .s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-56754375-bdc2-4e8f-8f57-73de74a76c51 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-56754375-bdc2-4e8f-8f57-73de74a76c51 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-56754375-bdc2-4e8f-8f57-73de74a76c51 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-56754375-bdc2-4e8f-8f57-73de74a76c51 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-56754375-bdc2-4e8f-8f57-73de74a76c51 {
    width: 100%;
    height: auto;
  }

  #s-56754375-bdc2-4e8f-8f57-73de74a76c51 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image {
    
    
  }


.s-56754375-bdc2-4e8f-8f57-73de74a76c51 .shogun-image-content {
  
    align-items: center;
  
}

.s-56754375-bdc2-4e8f-8f57-73de74a76c51.shg-align-container {
  display: flex;
  justify-content: center
}

.s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-56754375-bdc2-4e8f-8f57-73de74a76c51 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image-container {
      position: relative;
    }

    .s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-56754375-bdc2-4e8f-8f57-73de74a76c51 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-56754375-bdc2-4e8f-8f57-73de74a76c51 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-56754375-bdc2-4e8f-8f57-73de74a76c51 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-56754375-bdc2-4e8f-8f57-73de74a76c51 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-56754375-bdc2-4e8f-8f57-73de74a76c51 {
    width: 100%;
    height: auto;
  }

  #s-56754375-bdc2-4e8f-8f57-73de74a76c51 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image {
    
    
  }


.s-56754375-bdc2-4e8f-8f57-73de74a76c51 .shogun-image-content {
  
    align-items: center;
  
}

.s-56754375-bdc2-4e8f-8f57-73de74a76c51.shg-align-container {
  display: flex;
  justify-content: center
}

.s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-56754375-bdc2-4e8f-8f57-73de74a76c51 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image-container {
      position: relative;
    }

    .s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-56754375-bdc2-4e8f-8f57-73de74a76c51 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-56754375-bdc2-4e8f-8f57-73de74a76c51 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-56754375-bdc2-4e8f-8f57-73de74a76c51 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-56754375-bdc2-4e8f-8f57-73de74a76c51 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-56754375-bdc2-4e8f-8f57-73de74a76c51 {
    width: 100%;
    height: auto;
  }

  #s-56754375-bdc2-4e8f-8f57-73de74a76c51 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image {
    
    
  }


.s-56754375-bdc2-4e8f-8f57-73de74a76c51 .shogun-image-content {
  
    align-items: center;
  
}

.s-56754375-bdc2-4e8f-8f57-73de74a76c51.shg-align-container {
  display: flex;
  justify-content: center
}

.s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-56754375-bdc2-4e8f-8f57-73de74a76c51 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image-container {
      position: relative;
    }

    .s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-56754375-bdc2-4e8f-8f57-73de74a76c51 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-56754375-bdc2-4e8f-8f57-73de74a76c51 .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-56754375-bdc2-4e8f-8f57-73de74a76c51 .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-56754375-bdc2-4e8f-8f57-73de74a76c51 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-56754375-bdc2-4e8f-8f57-73de74a76c51 {
    width: 100%;
    height: auto;
  }

  #s-56754375-bdc2-4e8f-8f57-73de74a76c51 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image {
    
    
  }


.s-56754375-bdc2-4e8f-8f57-73de74a76c51 .shogun-image-content {
  
    align-items: center;
  
}

.s-56754375-bdc2-4e8f-8f57-73de74a76c51.shg-align-container {
  display: flex;
  justify-content: center
}

.s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-56754375-bdc2-4e8f-8f57-73de74a76c51 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image-container {
      position: relative;
    }

    .s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-56754375-bdc2-4e8f-8f57-73de74a76c51.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-56754375-bdc2-4e8f-8f57-73de74a76c51 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-8877d2db-05e6-477b-8b60-453b6bab571a {
  margin-left: auto;
margin-right: auto;
max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-8877d2db-05e6-477b-8b60-453b6bab571a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8877d2db-05e6-477b-8b60-453b6bab571a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8877d2db-05e6-477b-8b60-453b6bab571a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-8877d2db-05e6-477b-8b60-453b6bab571a {
    width: 100%;
    height: auto;
  }

  #s-8877d2db-05e6-477b-8b60-453b6bab571a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image {
    
    
  }


.s-8877d2db-05e6-477b-8b60-453b6bab571a .shogun-image-content {
  
    align-items: center;
  
}

.s-8877d2db-05e6-477b-8b60-453b6bab571a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8877d2db-05e6-477b-8b60-453b6bab571a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image-container {
      position: relative;
    }

    .s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8877d2db-05e6-477b-8b60-453b6bab571a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-8877d2db-05e6-477b-8b60-453b6bab571a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8877d2db-05e6-477b-8b60-453b6bab571a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8877d2db-05e6-477b-8b60-453b6bab571a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-8877d2db-05e6-477b-8b60-453b6bab571a {
    width: 100%;
    height: auto;
  }

  #s-8877d2db-05e6-477b-8b60-453b6bab571a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image {
    
    
  }


.s-8877d2db-05e6-477b-8b60-453b6bab571a .shogun-image-content {
  
    align-items: center;
  
}

.s-8877d2db-05e6-477b-8b60-453b6bab571a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8877d2db-05e6-477b-8b60-453b6bab571a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image-container {
      position: relative;
    }

    .s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8877d2db-05e6-477b-8b60-453b6bab571a 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-8877d2db-05e6-477b-8b60-453b6bab571a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8877d2db-05e6-477b-8b60-453b6bab571a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8877d2db-05e6-477b-8b60-453b6bab571a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-8877d2db-05e6-477b-8b60-453b6bab571a {
    width: 100%;
    height: auto;
  }

  #s-8877d2db-05e6-477b-8b60-453b6bab571a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image {
    
    
  }


.s-8877d2db-05e6-477b-8b60-453b6bab571a .shogun-image-content {
  
    align-items: center;
  
}

.s-8877d2db-05e6-477b-8b60-453b6bab571a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8877d2db-05e6-477b-8b60-453b6bab571a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image-container {
      position: relative;
    }

    .s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8877d2db-05e6-477b-8b60-453b6bab571a 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-8877d2db-05e6-477b-8b60-453b6bab571a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8877d2db-05e6-477b-8b60-453b6bab571a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8877d2db-05e6-477b-8b60-453b6bab571a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-8877d2db-05e6-477b-8b60-453b6bab571a {
    width: 100%;
    height: auto;
  }

  #s-8877d2db-05e6-477b-8b60-453b6bab571a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image {
    
    
  }


.s-8877d2db-05e6-477b-8b60-453b6bab571a .shogun-image-content {
  
    align-items: center;
  
}

.s-8877d2db-05e6-477b-8b60-453b6bab571a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8877d2db-05e6-477b-8b60-453b6bab571a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image-container {
      position: relative;
    }

    .s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8877d2db-05e6-477b-8b60-453b6bab571a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-8877d2db-05e6-477b-8b60-453b6bab571a .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-8877d2db-05e6-477b-8b60-453b6bab571a .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-8877d2db-05e6-477b-8b60-453b6bab571a .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-8877d2db-05e6-477b-8b60-453b6bab571a {
    width: 100%;
    height: auto;
  }

  #s-8877d2db-05e6-477b-8b60-453b6bab571a img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image {
    
    
  }


.s-8877d2db-05e6-477b-8b60-453b6bab571a .shogun-image-content {
  
    align-items: center;
  
}

.s-8877d2db-05e6-477b-8b60-453b6bab571a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8877d2db-05e6-477b-8b60-453b6bab571a {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image-container {
      position: relative;
    }

    .s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8877d2db-05e6-477b-8b60-453b6bab571a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8877d2db-05e6-477b-8b60-453b6bab571a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-d784a685-2092-43b7-89c9-260315ef0afb {
  margin-left: auto;
margin-right: auto;
max-width: 800px;
aspect-ratio: 1/1;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-d784a685-2092-43b7-89c9-260315ef0afb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d784a685-2092-43b7-89c9-260315ef0afb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d784a685-2092-43b7-89c9-260315ef0afb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d784a685-2092-43b7-89c9-260315ef0afb {
    width: 100%;
    height: auto;
  }

  #s-d784a685-2092-43b7-89c9-260315ef0afb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image {
    
    
  }


.s-d784a685-2092-43b7-89c9-260315ef0afb .shogun-image-content {
  
    align-items: center;
  
}

.s-d784a685-2092-43b7-89c9-260315ef0afb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d784a685-2092-43b7-89c9-260315ef0afb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image-container {
      position: relative;
    }

    .s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d784a685-2092-43b7-89c9-260315ef0afb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-d784a685-2092-43b7-89c9-260315ef0afb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d784a685-2092-43b7-89c9-260315ef0afb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d784a685-2092-43b7-89c9-260315ef0afb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d784a685-2092-43b7-89c9-260315ef0afb {
    width: 100%;
    height: auto;
  }

  #s-d784a685-2092-43b7-89c9-260315ef0afb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image {
    
    
  }


.s-d784a685-2092-43b7-89c9-260315ef0afb .shogun-image-content {
  
    align-items: center;
  
}

.s-d784a685-2092-43b7-89c9-260315ef0afb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d784a685-2092-43b7-89c9-260315ef0afb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image-container {
      position: relative;
    }

    .s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d784a685-2092-43b7-89c9-260315ef0afb 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-d784a685-2092-43b7-89c9-260315ef0afb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d784a685-2092-43b7-89c9-260315ef0afb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d784a685-2092-43b7-89c9-260315ef0afb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d784a685-2092-43b7-89c9-260315ef0afb {
    width: 100%;
    height: auto;
  }

  #s-d784a685-2092-43b7-89c9-260315ef0afb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image {
    
    
  }


.s-d784a685-2092-43b7-89c9-260315ef0afb .shogun-image-content {
  
    align-items: center;
  
}

.s-d784a685-2092-43b7-89c9-260315ef0afb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d784a685-2092-43b7-89c9-260315ef0afb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image-container {
      position: relative;
    }

    .s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d784a685-2092-43b7-89c9-260315ef0afb 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-d784a685-2092-43b7-89c9-260315ef0afb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d784a685-2092-43b7-89c9-260315ef0afb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d784a685-2092-43b7-89c9-260315ef0afb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d784a685-2092-43b7-89c9-260315ef0afb {
    width: 100%;
    height: auto;
  }

  #s-d784a685-2092-43b7-89c9-260315ef0afb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image {
    
    
  }


.s-d784a685-2092-43b7-89c9-260315ef0afb .shogun-image-content {
  
    align-items: center;
  
}

.s-d784a685-2092-43b7-89c9-260315ef0afb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d784a685-2092-43b7-89c9-260315ef0afb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image-container {
      position: relative;
    }

    .s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d784a685-2092-43b7-89c9-260315ef0afb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-d784a685-2092-43b7-89c9-260315ef0afb .shg-image-content-wrapper {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }

    #s-d784a685-2092-43b7-89c9-260315ef0afb .shogun-image-link {
      aspect-ratio: 1/1;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d784a685-2092-43b7-89c9-260315ef0afb .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d784a685-2092-43b7-89c9-260315ef0afb {
    width: 100%;
    height: auto;
  }

  #s-d784a685-2092-43b7-89c9-260315ef0afb img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image {
    
    
  }


.s-d784a685-2092-43b7-89c9-260315ef0afb .shogun-image-content {
  
    align-items: center;
  
}

.s-d784a685-2092-43b7-89c9-260315ef0afb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d784a685-2092-43b7-89c9-260315ef0afb {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image-container {
      position: relative;
    }

    .s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d784a685-2092-43b7-89c9-260315ef0afb.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d784a685-2092-43b7-89c9-260315ef0afb img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-bb729bf0-febc-4871-9eaf-8670629c8544 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 50px;
max-width: 1200px;
}
@media (max-width: 767px){#s-bb729bf0-febc-4871-9eaf-8670629c8544 {
  margin-left: 4%;
margin-right: 4%;
}
}







#s-bb729bf0-febc-4871-9eaf-8670629c8544 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bb729bf0-febc-4871-9eaf-8670629c8544.shg-box.shg-c {
  justify-content: center;
}

#s-30860d43-89e4-462d-82b6-603baca6efa8 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-092d45e1-7622-4e10-8bde-54c698bb8fe5 {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-092d45e1-7622-4e10-8bde-54c698bb8fe5 {
  margin-top: 0px;
}
}
#s-092d45e1-7622-4e10-8bde-54c698bb8fe5 hr {
  border-top: 1px solid rgba(171, 150, 109, 1);
}

#s-1f8d4865-d59f-4846-87e5-416ffe250319 {
  margin-top: 0px;
margin-bottom: -20px;
}

#s-327d566d-6d8e-4e26-b75f-346c6749838e {
  margin-top: 20px;
margin-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-327d566d-6d8e-4e26-b75f-346c6749838e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-327d566d-6d8e-4e26-b75f-346c6749838e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-327d566d-6d8e-4e26-b75f-346c6749838e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-327d566d-6d8e-4e26-b75f-346c6749838e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 15px;
max-width: 1920px;
aspect-ratio: 16/9;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 {
    width: 100%;
    height: auto;
  }

  #s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image {
    
    
  }


.s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 .shogun-image-content {
  
    align-items: center;
  
}

.s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image-container {
      position: relative;
    }

    .s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 {
    width: 100%;
    height: auto;
  }

  #s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image {
    
    
  }


.s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 .shogun-image-content {
  
    align-items: center;
  
}

.s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image-container {
      position: relative;
    }

    .s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 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-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 {
    width: 100%;
    height: auto;
  }

  #s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image {
    
    
  }


.s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 .shogun-image-content {
  
    align-items: center;
  
}

.s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image-container {
      position: relative;
    }

    .s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 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-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 {
    width: 100%;
    height: auto;
  }

  #s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image {
    
    
  }


.s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 .shogun-image-content {
  
    align-items: center;
  
}

.s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image-container {
      position: relative;
    }

    .s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 {
    width: 100%;
    height: auto;
  }

  #s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image {
    
    
  }


.s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 .shogun-image-content {
  
    align-items: center;
  
}

.s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image-container {
      position: relative;
    }

    .s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f057265e-2db8-4aa0-ad65-6f4760b9d4b7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-28cdb868-b70f-46b7-b5d1-d95814e2c867 {
  min-height: 50px;
}








#s-28cdb868-b70f-46b7-b5d1-d95814e2c867 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-28cdb868-b70f-46b7-b5d1-d95814e2c867.shg-box.shg-c {
  justify-content: center;
}

#s-8ddead83-6339-46f2-a3ea-27dd971b3e02 {
  margin-top: 10px;
margin-bottom: -21px;
}

#s-1fa85f4b-a14f-454b-b430-a1ac9f121935 {
  min-height: 50px;
}








#s-1fa85f4b-a14f-454b-b430-a1ac9f121935 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1fa85f4b-a14f-454b-b430-a1ac9f121935.shg-box.shg-c {
  justify-content: center;
}

#s-93aa76cd-88d9-4141-b658-dc3211845bfd {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 15px;
max-width: 1920px;
aspect-ratio: 16/9;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-93aa76cd-88d9-4141-b658-dc3211845bfd .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-93aa76cd-88d9-4141-b658-dc3211845bfd .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-93aa76cd-88d9-4141-b658-dc3211845bfd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-93aa76cd-88d9-4141-b658-dc3211845bfd {
    width: 100%;
    height: auto;
  }

  #s-93aa76cd-88d9-4141-b658-dc3211845bfd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image {
    
    
  }


.s-93aa76cd-88d9-4141-b658-dc3211845bfd .shogun-image-content {
  
    align-items: center;
  
}

.s-93aa76cd-88d9-4141-b658-dc3211845bfd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-93aa76cd-88d9-4141-b658-dc3211845bfd {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image-container {
      position: relative;
    }

    .s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-93aa76cd-88d9-4141-b658-dc3211845bfd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-93aa76cd-88d9-4141-b658-dc3211845bfd .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-93aa76cd-88d9-4141-b658-dc3211845bfd .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-93aa76cd-88d9-4141-b658-dc3211845bfd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-93aa76cd-88d9-4141-b658-dc3211845bfd {
    width: 100%;
    height: auto;
  }

  #s-93aa76cd-88d9-4141-b658-dc3211845bfd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image {
    
    
  }


.s-93aa76cd-88d9-4141-b658-dc3211845bfd .shogun-image-content {
  
    align-items: center;
  
}

.s-93aa76cd-88d9-4141-b658-dc3211845bfd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-93aa76cd-88d9-4141-b658-dc3211845bfd {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image-container {
      position: relative;
    }

    .s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-93aa76cd-88d9-4141-b658-dc3211845bfd 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-93aa76cd-88d9-4141-b658-dc3211845bfd .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-93aa76cd-88d9-4141-b658-dc3211845bfd .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-93aa76cd-88d9-4141-b658-dc3211845bfd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-93aa76cd-88d9-4141-b658-dc3211845bfd {
    width: 100%;
    height: auto;
  }

  #s-93aa76cd-88d9-4141-b658-dc3211845bfd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image {
    
    
  }


.s-93aa76cd-88d9-4141-b658-dc3211845bfd .shogun-image-content {
  
    align-items: center;
  
}

.s-93aa76cd-88d9-4141-b658-dc3211845bfd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-93aa76cd-88d9-4141-b658-dc3211845bfd {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image-container {
      position: relative;
    }

    .s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-93aa76cd-88d9-4141-b658-dc3211845bfd 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-93aa76cd-88d9-4141-b658-dc3211845bfd .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-93aa76cd-88d9-4141-b658-dc3211845bfd .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-93aa76cd-88d9-4141-b658-dc3211845bfd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-93aa76cd-88d9-4141-b658-dc3211845bfd {
    width: 100%;
    height: auto;
  }

  #s-93aa76cd-88d9-4141-b658-dc3211845bfd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image {
    
    
  }


.s-93aa76cd-88d9-4141-b658-dc3211845bfd .shogun-image-content {
  
    align-items: center;
  
}

.s-93aa76cd-88d9-4141-b658-dc3211845bfd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-93aa76cd-88d9-4141-b658-dc3211845bfd {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image-container {
      position: relative;
    }

    .s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-93aa76cd-88d9-4141-b658-dc3211845bfd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-93aa76cd-88d9-4141-b658-dc3211845bfd .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-93aa76cd-88d9-4141-b658-dc3211845bfd .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-93aa76cd-88d9-4141-b658-dc3211845bfd .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-93aa76cd-88d9-4141-b658-dc3211845bfd {
    width: 100%;
    height: auto;
  }

  #s-93aa76cd-88d9-4141-b658-dc3211845bfd img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image {
    
    
  }


.s-93aa76cd-88d9-4141-b658-dc3211845bfd .shogun-image-content {
  
    align-items: center;
  
}

.s-93aa76cd-88d9-4141-b658-dc3211845bfd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-93aa76cd-88d9-4141-b658-dc3211845bfd {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image-container {
      position: relative;
    }

    .s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-93aa76cd-88d9-4141-b658-dc3211845bfd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-93aa76cd-88d9-4141-b658-dc3211845bfd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-cead0793-dba0-45e0-b5c3-6dcc06776b03 {
  min-height: 50px;
}








#s-cead0793-dba0-45e0-b5c3-6dcc06776b03 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cead0793-dba0-45e0-b5c3-6dcc06776b03.shg-box.shg-c {
  justify-content: center;
}

#s-10fa8669-3845-4dbb-982b-240ca6a6acf0 {
  margin-top: 10px;
margin-bottom: -21px;
}

#s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 15px;
max-width: 1920px;
aspect-ratio: 16/9;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 {
    width: 100%;
    height: auto;
  }

  #s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image {
    
    
  }


.s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 .shogun-image-content {
  
    align-items: center;
  
}

.s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image-container {
      position: relative;
    }

    .s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 {
    width: 100%;
    height: auto;
  }

  #s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image {
    
    
  }


.s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 .shogun-image-content {
  
    align-items: center;
  
}

.s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image-container {
      position: relative;
    }

    .s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 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-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 {
    width: 100%;
    height: auto;
  }

  #s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image {
    
    
  }


.s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 .shogun-image-content {
  
    align-items: center;
  
}

.s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image-container {
      position: relative;
    }

    .s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 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-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 {
    width: 100%;
    height: auto;
  }

  #s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image {
    
    
  }


.s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 .shogun-image-content {
  
    align-items: center;
  
}

.s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image-container {
      position: relative;
    }

    .s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 {
    width: 100%;
    height: auto;
  }

  #s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image {
    
    
  }


.s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 .shogun-image-content {
  
    align-items: center;
  
}

.s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image-container {
      position: relative;
    }

    .s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2b8e9df0-ce85-4f05-98a3-6ffc86fa8a15 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-c0b84bdf-8187-4062-bbab-b399b1c1c85c {
  min-height: 50px;
}








#s-c0b84bdf-8187-4062-bbab-b399b1c1c85c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c0b84bdf-8187-4062-bbab-b399b1c1c85c.shg-box.shg-c {
  justify-content: center;
}

#s-e8abc42a-1c34-4cca-9bf7-d2d047f8b643 {
  margin-top: 10px;
margin-bottom: -21px;
}

#s-67c943e3-5771-40e5-aeb6-568a023f7201 {
  margin-top: 20px;
margin-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-67c943e3-5771-40e5-aeb6-568a023f7201"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-67c943e3-5771-40e5-aeb6-568a023f7201"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-67c943e3-5771-40e5-aeb6-568a023f7201"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-67c943e3-5771-40e5-aeb6-568a023f7201"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-c50c0570-76f8-4d56-ac41-2f935090d840 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 15px;
max-width: 1920px;
aspect-ratio: 16/9;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-c50c0570-76f8-4d56-ac41-2f935090d840 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-c50c0570-76f8-4d56-ac41-2f935090d840 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c50c0570-76f8-4d56-ac41-2f935090d840 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c50c0570-76f8-4d56-ac41-2f935090d840 {
    width: 100%;
    height: auto;
  }

  #s-c50c0570-76f8-4d56-ac41-2f935090d840 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image {
    
    
  }


.s-c50c0570-76f8-4d56-ac41-2f935090d840 .shogun-image-content {
  
    align-items: center;
  
}

.s-c50c0570-76f8-4d56-ac41-2f935090d840.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c50c0570-76f8-4d56-ac41-2f935090d840 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image-container {
      position: relative;
    }

    .s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c50c0570-76f8-4d56-ac41-2f935090d840 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-c50c0570-76f8-4d56-ac41-2f935090d840 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-c50c0570-76f8-4d56-ac41-2f935090d840 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c50c0570-76f8-4d56-ac41-2f935090d840 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c50c0570-76f8-4d56-ac41-2f935090d840 {
    width: 100%;
    height: auto;
  }

  #s-c50c0570-76f8-4d56-ac41-2f935090d840 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image {
    
    
  }


.s-c50c0570-76f8-4d56-ac41-2f935090d840 .shogun-image-content {
  
    align-items: center;
  
}

.s-c50c0570-76f8-4d56-ac41-2f935090d840.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c50c0570-76f8-4d56-ac41-2f935090d840 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image-container {
      position: relative;
    }

    .s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c50c0570-76f8-4d56-ac41-2f935090d840 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-c50c0570-76f8-4d56-ac41-2f935090d840 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-c50c0570-76f8-4d56-ac41-2f935090d840 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c50c0570-76f8-4d56-ac41-2f935090d840 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c50c0570-76f8-4d56-ac41-2f935090d840 {
    width: 100%;
    height: auto;
  }

  #s-c50c0570-76f8-4d56-ac41-2f935090d840 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image {
    
    
  }


.s-c50c0570-76f8-4d56-ac41-2f935090d840 .shogun-image-content {
  
    align-items: center;
  
}

.s-c50c0570-76f8-4d56-ac41-2f935090d840.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c50c0570-76f8-4d56-ac41-2f935090d840 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image-container {
      position: relative;
    }

    .s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c50c0570-76f8-4d56-ac41-2f935090d840 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-c50c0570-76f8-4d56-ac41-2f935090d840 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-c50c0570-76f8-4d56-ac41-2f935090d840 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c50c0570-76f8-4d56-ac41-2f935090d840 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c50c0570-76f8-4d56-ac41-2f935090d840 {
    width: 100%;
    height: auto;
  }

  #s-c50c0570-76f8-4d56-ac41-2f935090d840 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image {
    
    
  }


.s-c50c0570-76f8-4d56-ac41-2f935090d840 .shogun-image-content {
  
    align-items: center;
  
}

.s-c50c0570-76f8-4d56-ac41-2f935090d840.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c50c0570-76f8-4d56-ac41-2f935090d840 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image-container {
      position: relative;
    }

    .s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c50c0570-76f8-4d56-ac41-2f935090d840 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-c50c0570-76f8-4d56-ac41-2f935090d840 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-c50c0570-76f8-4d56-ac41-2f935090d840 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c50c0570-76f8-4d56-ac41-2f935090d840 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c50c0570-76f8-4d56-ac41-2f935090d840 {
    width: 100%;
    height: auto;
  }

  #s-c50c0570-76f8-4d56-ac41-2f935090d840 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image {
    
    
  }


.s-c50c0570-76f8-4d56-ac41-2f935090d840 .shogun-image-content {
  
    align-items: center;
  
}

.s-c50c0570-76f8-4d56-ac41-2f935090d840.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c50c0570-76f8-4d56-ac41-2f935090d840 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image-container {
      position: relative;
    }

    .s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c50c0570-76f8-4d56-ac41-2f935090d840.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c50c0570-76f8-4d56-ac41-2f935090d840 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-4a81075c-e3cd-4192-bd55-47696b755992 {
  min-height: 50px;
}








#s-4a81075c-e3cd-4192-bd55-47696b755992 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4a81075c-e3cd-4192-bd55-47696b755992.shg-box.shg-c {
  justify-content: center;
}

#s-520c86e9-a28e-42cf-9e5c-03561306fa99 {
  margin-top: 10px;
margin-bottom: -21px;
}

#s-8dcc7b68-7628-4d85-8979-d908b9c28cc5 {
  min-height: 50px;
}








#s-8dcc7b68-7628-4d85-8979-d908b9c28cc5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8dcc7b68-7628-4d85-8979-d908b9c28cc5.shg-box.shg-c {
  justify-content: center;
}

#s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 15px;
max-width: 1920px;
aspect-ratio: 16/9;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 {
    width: 100%;
    height: auto;
  }

  #s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image {
    
    
  }


.s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 .shogun-image-content {
  
    align-items: center;
  
}

.s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shg-align-container {
  display: flex;
  justify-content: center
}

.s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image-container {
      position: relative;
    }

    .s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 {
    width: 100%;
    height: auto;
  }

  #s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image {
    
    
  }


.s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 .shogun-image-content {
  
    align-items: center;
  
}

.s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shg-align-container {
  display: flex;
  justify-content: center
}

.s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image-container {
      position: relative;
    }

    .s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 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-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 {
    width: 100%;
    height: auto;
  }

  #s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image {
    
    
  }


.s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 .shogun-image-content {
  
    align-items: center;
  
}

.s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shg-align-container {
  display: flex;
  justify-content: center
}

.s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image-container {
      position: relative;
    }

    .s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 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-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 {
    width: 100%;
    height: auto;
  }

  #s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image {
    
    
  }


.s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 .shogun-image-content {
  
    align-items: center;
  
}

.s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shg-align-container {
  display: flex;
  justify-content: center
}

.s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image-container {
      position: relative;
    }

    .s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 {
    width: 100%;
    height: auto;
  }

  #s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image {
    
    
  }


.s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 .shogun-image-content {
  
    align-items: center;
  
}

.s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shg-align-container {
  display: flex;
  justify-content: center
}

.s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image-container {
      position: relative;
    }

    .s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-020d7eb6-afc5-4b3c-8c11-6d677f2b1889 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-93af2043-4de5-419e-8a93-6c34caaa074b {
  min-height: 50px;
}








#s-93af2043-4de5-419e-8a93-6c34caaa074b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-93af2043-4de5-419e-8a93-6c34caaa074b.shg-box.shg-c {
  justify-content: center;
}

#s-7dd1326a-ba60-477c-83a5-5d6a951097ff {
  margin-top: 10px;
margin-bottom: -21px;
}

#s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 15px;
max-width: 1920px;
aspect-ratio: 16/9;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 {
    width: 100%;
    height: auto;
  }

  #s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image {
    
    
  }


.s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 .shogun-image-content {
  
    align-items: center;
  
}

.s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image-container {
      position: relative;
    }

    .s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 {
    width: 100%;
    height: auto;
  }

  #s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image {
    
    
  }


.s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 .shogun-image-content {
  
    align-items: center;
  
}

.s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image-container {
      position: relative;
    }

    .s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 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-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 {
    width: 100%;
    height: auto;
  }

  #s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image {
    
    
  }


.s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 .shogun-image-content {
  
    align-items: center;
  
}

.s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image-container {
      position: relative;
    }

    .s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 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-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 {
    width: 100%;
    height: auto;
  }

  #s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image {
    
    
  }


.s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 .shogun-image-content {
  
    align-items: center;
  
}

.s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image-container {
      position: relative;
    }

    .s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 {
    width: 100%;
    height: auto;
  }

  #s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image {
    
    
  }


.s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 .shogun-image-content {
  
    align-items: center;
  
}

.s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image-container {
      position: relative;
    }

    .s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7d3598cf-38ef-4393-8b0c-c34a7a5ae623 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-3409560c-3cdd-446c-b9a3-732c2c39c792 {
  min-height: 50px;
}








#s-3409560c-3cdd-446c-b9a3-732c2c39c792 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3409560c-3cdd-446c-b9a3-732c2c39c792.shg-box.shg-c {
  justify-content: center;
}

#s-ffbe766b-93d2-4300-a05e-151fc1800f8d {
  margin-top: 10px;
margin-bottom: -21px;
}

#s-f7eb95d0-4a55-456b-aed1-0ea439738b42 {
  margin-top: 20px;
margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1200px;
}
@media (max-width: 767px){#s-f7eb95d0-4a55-456b-aed1-0ea439738b42 {
  margin-top: 0px;
margin-left: 4%;
margin-right: 4%;
}
}







#s-f7eb95d0-4a55-456b-aed1-0ea439738b42 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f7eb95d0-4a55-456b-aed1-0ea439738b42.shg-box.shg-c {
  justify-content: center;
}

#s-92c38bbe-d391-431d-9864-f0b30a607d43 {
  margin-top: 0px;
margin-bottom: -20px;
}

#s-9ce7f77c-9882-4d00-850d-d8e849cd9b8f {
  margin-top: 20px;
margin-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-9ce7f77c-9882-4d00-850d-d8e849cd9b8f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9ce7f77c-9882-4d00-850d-d8e849cd9b8f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-9ce7f77c-9882-4d00-850d-d8e849cd9b8f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-9ce7f77c-9882-4d00-850d-d8e849cd9b8f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 15px;
max-width: 1920px;
aspect-ratio: 16/9;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 {
    width: 100%;
    height: auto;
  }

  #s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image {
    
    
  }


.s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 .shogun-image-content {
  
    align-items: center;
  
}

.s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image-container {
      position: relative;
    }

    .s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 {
    width: 100%;
    height: auto;
  }

  #s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image {
    
    
  }


.s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 .shogun-image-content {
  
    align-items: center;
  
}

.s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image-container {
      position: relative;
    }

    .s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 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-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 {
    width: 100%;
    height: auto;
  }

  #s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image {
    
    
  }


.s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 .shogun-image-content {
  
    align-items: center;
  
}

.s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image-container {
      position: relative;
    }

    .s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 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-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 {
    width: 100%;
    height: auto;
  }

  #s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image {
    
    
  }


.s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 .shogun-image-content {
  
    align-items: center;
  
}

.s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image-container {
      position: relative;
    }

    .s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 {
    width: 100%;
    height: auto;
  }

  #s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image {
    
    
  }


.s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 .shogun-image-content {
  
    align-items: center;
  
}

.s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image-container {
      position: relative;
    }

    .s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f39c7ad9-27b1-4bb5-8762-67cdca7fb365 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-ab532782-09d3-4e81-a005-12453c8032ec {
  min-height: 50px;
}
@media (max-width: 767px){#s-ab532782-09d3-4e81-a005-12453c8032ec {
  margin-bottom: 20px;
}
}







#s-ab532782-09d3-4e81-a005-12453c8032ec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ab532782-09d3-4e81-a005-12453c8032ec.shg-box.shg-c {
  justify-content: center;
}

#s-74e4b584-029d-427c-af90-a246179460e3 {
  margin-top: 10px;
margin-bottom: -15px;
}

#s-7b05bc91-ef78-42aa-8dfd-59f373faa025 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 15px;
max-width: 1920px;
aspect-ratio: 16/9;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-7b05bc91-ef78-42aa-8dfd-59f373faa025 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-7b05bc91-ef78-42aa-8dfd-59f373faa025 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7b05bc91-ef78-42aa-8dfd-59f373faa025 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-7b05bc91-ef78-42aa-8dfd-59f373faa025 {
    width: 100%;
    height: auto;
  }

  #s-7b05bc91-ef78-42aa-8dfd-59f373faa025 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image {
    
    
  }


.s-7b05bc91-ef78-42aa-8dfd-59f373faa025 .shogun-image-content {
  
    align-items: center;
  
}

.s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7b05bc91-ef78-42aa-8dfd-59f373faa025 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image-container {
      position: relative;
    }

    .s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7b05bc91-ef78-42aa-8dfd-59f373faa025 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-7b05bc91-ef78-42aa-8dfd-59f373faa025 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-7b05bc91-ef78-42aa-8dfd-59f373faa025 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7b05bc91-ef78-42aa-8dfd-59f373faa025 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-7b05bc91-ef78-42aa-8dfd-59f373faa025 {
    width: 100%;
    height: auto;
  }

  #s-7b05bc91-ef78-42aa-8dfd-59f373faa025 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image {
    
    
  }


.s-7b05bc91-ef78-42aa-8dfd-59f373faa025 .shogun-image-content {
  
    align-items: center;
  
}

.s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7b05bc91-ef78-42aa-8dfd-59f373faa025 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image-container {
      position: relative;
    }

    .s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7b05bc91-ef78-42aa-8dfd-59f373faa025 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-7b05bc91-ef78-42aa-8dfd-59f373faa025 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-7b05bc91-ef78-42aa-8dfd-59f373faa025 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7b05bc91-ef78-42aa-8dfd-59f373faa025 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-7b05bc91-ef78-42aa-8dfd-59f373faa025 {
    width: 100%;
    height: auto;
  }

  #s-7b05bc91-ef78-42aa-8dfd-59f373faa025 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image {
    
    
  }


.s-7b05bc91-ef78-42aa-8dfd-59f373faa025 .shogun-image-content {
  
    align-items: center;
  
}

.s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7b05bc91-ef78-42aa-8dfd-59f373faa025 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image-container {
      position: relative;
    }

    .s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7b05bc91-ef78-42aa-8dfd-59f373faa025 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-7b05bc91-ef78-42aa-8dfd-59f373faa025 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-7b05bc91-ef78-42aa-8dfd-59f373faa025 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7b05bc91-ef78-42aa-8dfd-59f373faa025 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-7b05bc91-ef78-42aa-8dfd-59f373faa025 {
    width: 100%;
    height: auto;
  }

  #s-7b05bc91-ef78-42aa-8dfd-59f373faa025 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image {
    
    
  }


.s-7b05bc91-ef78-42aa-8dfd-59f373faa025 .shogun-image-content {
  
    align-items: center;
  
}

.s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7b05bc91-ef78-42aa-8dfd-59f373faa025 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image-container {
      position: relative;
    }

    .s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7b05bc91-ef78-42aa-8dfd-59f373faa025 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-7b05bc91-ef78-42aa-8dfd-59f373faa025 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-7b05bc91-ef78-42aa-8dfd-59f373faa025 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-7b05bc91-ef78-42aa-8dfd-59f373faa025 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-7b05bc91-ef78-42aa-8dfd-59f373faa025 {
    width: 100%;
    height: auto;
  }

  #s-7b05bc91-ef78-42aa-8dfd-59f373faa025 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image {
    
    
  }


.s-7b05bc91-ef78-42aa-8dfd-59f373faa025 .shogun-image-content {
  
    align-items: center;
  
}

.s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7b05bc91-ef78-42aa-8dfd-59f373faa025 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image-container {
      position: relative;
    }

    .s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7b05bc91-ef78-42aa-8dfd-59f373faa025.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7b05bc91-ef78-42aa-8dfd-59f373faa025 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-ec0112c9-ad40-4082-94a2-2e10a5977dfd {
  min-height: 50px;
}
@media (max-width: 767px){#s-ec0112c9-ad40-4082-94a2-2e10a5977dfd {
  margin-bottom: 20px;
}
}







#s-ec0112c9-ad40-4082-94a2-2e10a5977dfd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ec0112c9-ad40-4082-94a2-2e10a5977dfd.shg-box.shg-c {
  justify-content: center;
}

#s-ec12e522-c19a-4b9a-972b-e2fad539dec8 {
  margin-top: 10px;
margin-bottom: -15px;
}

#s-d526d785-8b6d-4fd9-b451-3a38158143c6 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 15px;
max-width: 1920px;
aspect-ratio: 16/9;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-d526d785-8b6d-4fd9-b451-3a38158143c6 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-d526d785-8b6d-4fd9-b451-3a38158143c6 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d526d785-8b6d-4fd9-b451-3a38158143c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d526d785-8b6d-4fd9-b451-3a38158143c6 {
    width: 100%;
    height: auto;
  }

  #s-d526d785-8b6d-4fd9-b451-3a38158143c6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image {
    
    
  }


.s-d526d785-8b6d-4fd9-b451-3a38158143c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-d526d785-8b6d-4fd9-b451-3a38158143c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d526d785-8b6d-4fd9-b451-3a38158143c6 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image-container {
      position: relative;
    }

    .s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d526d785-8b6d-4fd9-b451-3a38158143c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-d526d785-8b6d-4fd9-b451-3a38158143c6 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-d526d785-8b6d-4fd9-b451-3a38158143c6 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d526d785-8b6d-4fd9-b451-3a38158143c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d526d785-8b6d-4fd9-b451-3a38158143c6 {
    width: 100%;
    height: auto;
  }

  #s-d526d785-8b6d-4fd9-b451-3a38158143c6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image {
    
    
  }


.s-d526d785-8b6d-4fd9-b451-3a38158143c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-d526d785-8b6d-4fd9-b451-3a38158143c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d526d785-8b6d-4fd9-b451-3a38158143c6 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image-container {
      position: relative;
    }

    .s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d526d785-8b6d-4fd9-b451-3a38158143c6 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-d526d785-8b6d-4fd9-b451-3a38158143c6 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-d526d785-8b6d-4fd9-b451-3a38158143c6 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d526d785-8b6d-4fd9-b451-3a38158143c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d526d785-8b6d-4fd9-b451-3a38158143c6 {
    width: 100%;
    height: auto;
  }

  #s-d526d785-8b6d-4fd9-b451-3a38158143c6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image {
    
    
  }


.s-d526d785-8b6d-4fd9-b451-3a38158143c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-d526d785-8b6d-4fd9-b451-3a38158143c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d526d785-8b6d-4fd9-b451-3a38158143c6 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image-container {
      position: relative;
    }

    .s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d526d785-8b6d-4fd9-b451-3a38158143c6 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-d526d785-8b6d-4fd9-b451-3a38158143c6 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-d526d785-8b6d-4fd9-b451-3a38158143c6 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d526d785-8b6d-4fd9-b451-3a38158143c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d526d785-8b6d-4fd9-b451-3a38158143c6 {
    width: 100%;
    height: auto;
  }

  #s-d526d785-8b6d-4fd9-b451-3a38158143c6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image {
    
    
  }


.s-d526d785-8b6d-4fd9-b451-3a38158143c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-d526d785-8b6d-4fd9-b451-3a38158143c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d526d785-8b6d-4fd9-b451-3a38158143c6 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image-container {
      position: relative;
    }

    .s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d526d785-8b6d-4fd9-b451-3a38158143c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-d526d785-8b6d-4fd9-b451-3a38158143c6 .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-d526d785-8b6d-4fd9-b451-3a38158143c6 .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-d526d785-8b6d-4fd9-b451-3a38158143c6 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-d526d785-8b6d-4fd9-b451-3a38158143c6 {
    width: 100%;
    height: auto;
  }

  #s-d526d785-8b6d-4fd9-b451-3a38158143c6 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image {
    
    
  }


.s-d526d785-8b6d-4fd9-b451-3a38158143c6 .shogun-image-content {
  
    align-items: center;
  
}

.s-d526d785-8b6d-4fd9-b451-3a38158143c6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-d526d785-8b6d-4fd9-b451-3a38158143c6 {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image-container {
      position: relative;
    }

    .s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-d526d785-8b6d-4fd9-b451-3a38158143c6.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-d526d785-8b6d-4fd9-b451-3a38158143c6 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-c4112f59-8f80-42d4-9d0b-4ae4eb187299 {
  min-height: 50px;
}
@media (max-width: 767px){#s-c4112f59-8f80-42d4-9d0b-4ae4eb187299 {
  margin-bottom: 0px;
}
}







#s-c4112f59-8f80-42d4-9d0b-4ae4eb187299 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c4112f59-8f80-42d4-9d0b-4ae4eb187299.shg-box.shg-c {
  justify-content: center;
}

#s-21b043c9-f6fc-4a37-b2b8-0518b24c634e {
  margin-top: 10px;
margin-bottom: -15px;
}

#s-98c4b57a-c07f-41a6-950f-333edc1f708b {
  margin-top: 40px;
margin-bottom: 20px;
}
@media (max-width: 767px){#s-98c4b57a-c07f-41a6-950f-333edc1f708b {
  margin-top: 0px;
margin-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-98c4b57a-c07f-41a6-950f-333edc1f708b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-98c4b57a-c07f-41a6-950f-333edc1f708b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-98c4b57a-c07f-41a6-950f-333edc1f708b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-98c4b57a-c07f-41a6-950f-333edc1f708b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-c059648a-3003-43be-a380-465bf0a588aa {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 15px;
max-width: 1920px;
aspect-ratio: 16/9;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-c059648a-3003-43be-a380-465bf0a588aa .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-c059648a-3003-43be-a380-465bf0a588aa .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c059648a-3003-43be-a380-465bf0a588aa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c059648a-3003-43be-a380-465bf0a588aa {
    width: 100%;
    height: auto;
  }

  #s-c059648a-3003-43be-a380-465bf0a588aa img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image {
    
    
  }


.s-c059648a-3003-43be-a380-465bf0a588aa .shogun-image-content {
  
    align-items: center;
  
}

.s-c059648a-3003-43be-a380-465bf0a588aa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c059648a-3003-43be-a380-465bf0a588aa {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image-container {
      position: relative;
    }

    .s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c059648a-3003-43be-a380-465bf0a588aa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-c059648a-3003-43be-a380-465bf0a588aa .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-c059648a-3003-43be-a380-465bf0a588aa .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c059648a-3003-43be-a380-465bf0a588aa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c059648a-3003-43be-a380-465bf0a588aa {
    width: 100%;
    height: auto;
  }

  #s-c059648a-3003-43be-a380-465bf0a588aa img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image {
    
    
  }


.s-c059648a-3003-43be-a380-465bf0a588aa .shogun-image-content {
  
    align-items: center;
  
}

.s-c059648a-3003-43be-a380-465bf0a588aa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c059648a-3003-43be-a380-465bf0a588aa {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image-container {
      position: relative;
    }

    .s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c059648a-3003-43be-a380-465bf0a588aa 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-c059648a-3003-43be-a380-465bf0a588aa .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-c059648a-3003-43be-a380-465bf0a588aa .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c059648a-3003-43be-a380-465bf0a588aa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c059648a-3003-43be-a380-465bf0a588aa {
    width: 100%;
    height: auto;
  }

  #s-c059648a-3003-43be-a380-465bf0a588aa img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image {
    
    
  }


.s-c059648a-3003-43be-a380-465bf0a588aa .shogun-image-content {
  
    align-items: center;
  
}

.s-c059648a-3003-43be-a380-465bf0a588aa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c059648a-3003-43be-a380-465bf0a588aa {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image-container {
      position: relative;
    }

    .s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c059648a-3003-43be-a380-465bf0a588aa 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-c059648a-3003-43be-a380-465bf0a588aa .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-c059648a-3003-43be-a380-465bf0a588aa .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c059648a-3003-43be-a380-465bf0a588aa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c059648a-3003-43be-a380-465bf0a588aa {
    width: 100%;
    height: auto;
  }

  #s-c059648a-3003-43be-a380-465bf0a588aa img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image {
    
    
  }


.s-c059648a-3003-43be-a380-465bf0a588aa .shogun-image-content {
  
    align-items: center;
  
}

.s-c059648a-3003-43be-a380-465bf0a588aa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c059648a-3003-43be-a380-465bf0a588aa {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image-container {
      position: relative;
    }

    .s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c059648a-3003-43be-a380-465bf0a588aa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-c059648a-3003-43be-a380-465bf0a588aa .shg-image-content-wrapper {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }

    #s-c059648a-3003-43be-a380-465bf0a588aa .shogun-image-link {
      aspect-ratio: 16/9;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-c059648a-3003-43be-a380-465bf0a588aa .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-c059648a-3003-43be-a380-465bf0a588aa {
    width: 100%;
    height: auto;
  }

  #s-c059648a-3003-43be-a380-465bf0a588aa img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image {
    
    
  }


.s-c059648a-3003-43be-a380-465bf0a588aa .shogun-image-content {
  
    align-items: center;
  
}

.s-c059648a-3003-43be-a380-465bf0a588aa.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c059648a-3003-43be-a380-465bf0a588aa {
      --shg-aspect-ratio: calc(16/9); 
    }

    .s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image-container {
      position: relative;
    }

    .s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c059648a-3003-43be-a380-465bf0a588aa.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c059648a-3003-43be-a380-465bf0a588aa img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-6044b677-05fe-4ffe-bda5-0fedd92492ac {
  min-height: 50px;
}








#s-6044b677-05fe-4ffe-bda5-0fedd92492ac > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6044b677-05fe-4ffe-bda5-0fedd92492ac.shg-box.shg-c {
  justify-content: center;
}

#s-25a3f049-9a94-43a1-8327-4c689e361709 {
  margin-top: 10px;
margin-bottom: -15px;
}

#s-0795df50-e955-4917-9382-a8bd0ce3a0ca {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-a75822c6-5e05-42cb-81e9-fa95c45afe43 {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-a75822c6-5e05-42cb-81e9-fa95c45afe43 {
  margin-top: 0px;
}
}
#s-a75822c6-5e05-42cb-81e9-fa95c45afe43 hr {
  border-top: 1px solid rgba(171, 150, 109, 1);
}

#s-76600bdf-f231-45bc-b65f-70bdcf0e0dfa {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 50px;
max-width: 1200px;
}
@media (max-width: 767px){#s-76600bdf-f231-45bc-b65f-70bdcf0e0dfa {
  margin-left: 4%;
margin-right: 4%;
}
}







#s-76600bdf-f231-45bc-b65f-70bdcf0e0dfa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-76600bdf-f231-45bc-b65f-70bdcf0e0dfa.shg-box.shg-c {
  justify-content: center;
}

#s-bc510ef1-b5e5-40b0-9bae-5db3f30d571d {
  margin-top: 0px;
margin-bottom: -25px;
}

#s-64afc838-9cbe-488f-99c1-9eb42829a223 {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-64afc838-9cbe-488f-99c1-9eb42829a223 {
  margin-left: 0%;
margin-right: 0%;
}
}







#s-64afc838-9cbe-488f-99c1-9eb42829a223 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-64afc838-9cbe-488f-99c1-9eb42829a223.shg-box.shg-c {
  justify-content: center;
}

#s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da {
  margin-top: 20px;
margin-bottom: 20px;
max-width: 1920px;
aspect-ratio: 1920/237;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da {
  display: none;
}
#s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da, #wrap-s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da { display: none !important; }}@media (max-width: 767px){#s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da {
  display: none;
}
#s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da, #wrap-s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da { display: none !important; }}




  @supports  (aspect-ratio: 1/1) {
    
    #s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da .shg-image-content-wrapper {
      aspect-ratio: 1920/237;
      min-width: 100%;
      height: auto;
    }

    #s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da .shogun-image-link {
      aspect-ratio: 1920/237;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da {
    width: 100%;
    height: auto;
  }

  #s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image {
    
    
  }


.s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da .shogun-image-content {
  
    align-items: center;
  
}

.s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shg-align-container {
  display: flex;
  justify-content: center
}

.s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da {
      --shg-aspect-ratio: calc(1920/237); 
    }

    .s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image-container {
      position: relative;
    }

    .s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da .shg-image-content-wrapper {
      aspect-ratio: 1920/237;
      min-width: 100%;
      height: auto;
    }

    #s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da .shogun-image-link {
      aspect-ratio: 1920/237;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da {
    width: 100%;
    height: auto;
  }

  #s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image {
    
    
  }


.s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da .shogun-image-content {
  
    align-items: center;
  
}

.s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shg-align-container {
  display: flex;
  justify-content: center
}

.s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da {
      --shg-aspect-ratio: calc(1920/237); 
    }

    .s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image-container {
      position: relative;
    }

    .s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da 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-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da .shg-image-content-wrapper {
      aspect-ratio: 1920/237;
      min-width: 100%;
      height: auto;
    }

    #s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da .shogun-image-link {
      aspect-ratio: 1920/237;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da {
    width: 100%;
    height: auto;
  }

  #s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image {
    
    
  }


.s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da .shogun-image-content {
  
    align-items: center;
  
}

.s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shg-align-container {
  display: flex;
  justify-content: center
}

.s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da {
      --shg-aspect-ratio: calc(1920/237); 
    }

    .s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image-container {
      position: relative;
    }

    .s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da 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-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da .shg-image-content-wrapper {
      aspect-ratio: 1920/237;
      min-width: 100%;
      height: auto;
    }

    #s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da .shogun-image-link {
      aspect-ratio: 1920/237;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da {
    width: 100%;
    height: auto;
  }

  #s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image {
    
    
  }


.s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da .shogun-image-content {
  
    align-items: center;
  
}

.s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shg-align-container {
  display: flex;
  justify-content: center
}

.s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da {
      --shg-aspect-ratio: calc(1920/237); 
    }

    .s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image-container {
      position: relative;
    }

    .s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da .shg-image-content-wrapper {
      aspect-ratio: 1920/237;
      min-width: 100%;
      height: auto;
    }

    #s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da .shogun-image-link {
      aspect-ratio: 1920/237;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da {
    width: 100%;
    height: auto;
  }

  #s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image {
    
    
  }


.s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da .shogun-image-content {
  
    align-items: center;
  
}

.s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shg-align-container {
  display: flex;
  justify-content: center
}

.s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da {
      --shg-aspect-ratio: calc(1920/237); 
    }

    .s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image-container {
      position: relative;
    }

    .s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-040b9cf2-0a0c-4ca3-ad3c-470bd1ec25da img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 {
  margin-top: 20px;
margin-bottom: 20px;
max-width: 640px;
aspect-ratio: 640/100;
text-align: center;
}
@media (min-width: 1200px){#s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 {
  display: none;
}
#s-53d77229-0f4b-46f2-a32c-33fb89ba5d75, #wrap-s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 {
  display: none;
}
#s-53d77229-0f4b-46f2-a32c-33fb89ba5d75, #wrap-s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 { display: none !important; }}@media (max-width: 767px){#s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 {
  max-width: 640px;
}
}




  @supports  (aspect-ratio: 1/1) {
    
    #s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 .shg-image-content-wrapper {
      aspect-ratio: 640/100;
      min-width: 100%;
      height: auto;
    }

    #s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 .shogun-image-link {
      aspect-ratio: 640/100;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 {
    width: 100%;
    height: auto;
  }

  #s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image {
    
    
  }


.s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 .shogun-image-content {
  
    align-items: center;
  
}

.s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 {
      --shg-aspect-ratio: calc(640/100); 
    }

    .s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image-container {
      position: relative;
    }

    .s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 .shg-image-content-wrapper {
      aspect-ratio: 640/100;
      min-width: 100%;
      height: auto;
    }

    #s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 .shogun-image-link {
      aspect-ratio: 640/100;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 {
    width: 100%;
    height: auto;
  }

  #s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image {
    
    
  }


.s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 .shogun-image-content {
  
    align-items: center;
  
}

.s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 {
      --shg-aspect-ratio: calc(640/100); 
    }

    .s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image-container {
      position: relative;
    }

    .s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 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-53d77229-0f4b-46f2-a32c-33fb89ba5d75 .shg-image-content-wrapper {
      aspect-ratio: 640/100;
      min-width: 100%;
      height: auto;
    }

    #s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 .shogun-image-link {
      aspect-ratio: 640/100;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 {
    width: 100%;
    height: auto;
  }

  #s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image {
    
    
  }


.s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 .shogun-image-content {
  
    align-items: center;
  
}

.s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 {
      --shg-aspect-ratio: calc(640/100); 
    }

    .s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image-container {
      position: relative;
    }

    .s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 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-53d77229-0f4b-46f2-a32c-33fb89ba5d75 .shg-image-content-wrapper {
      aspect-ratio: 640/100;
      min-width: 100%;
      height: auto;
    }

    #s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 .shogun-image-link {
      aspect-ratio: 640/100;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 {
    width: 100%;
    height: auto;
  }

  #s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image {
    
    
  }


.s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 .shogun-image-content {
  
    align-items: center;
  
}

.s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 {
      --shg-aspect-ratio: calc(640/100); 
    }

    .s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image-container {
      position: relative;
    }

    .s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 .shg-image-content-wrapper {
      aspect-ratio: 640/100;
      min-width: 100%;
      height: auto;
    }

    #s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 .shogun-image-link {
      aspect-ratio: 640/100;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 {
    width: 100%;
    height: auto;
  }

  #s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image {
    
    
  }


.s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 .shogun-image-content {
  
    align-items: center;
  
}

.s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shg-align-container {
  display: flex;
  justify-content: center
}

.s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 {
      --shg-aspect-ratio: calc(640/100); 
    }

    .s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image-container {
      position: relative;
    }

    .s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-53d77229-0f4b-46f2-a32c-33fb89ba5d75.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-53d77229-0f4b-46f2-a32c-33fb89ba5d75 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-category-grid {
  margin: -20px 0;
}

.shg-category-row,
.shg-category-row-hor {
  display: flex;
  margin: 20px 0;
}

.shg-category-col,
.shg-category-col-1 {
  flex: 1;
  padding: 0 10px;
}

.shg-category-col:last-child {
  padding-right: 0;
}

.shg-category-col:first-child {
  padding-left: 0;
}

.shg-category-col-2 {
  flex: 2;
  padding: 0 20px;
}

.shg-category-col-3 {
  flex: 3;
  padding: 0 30px;
}

.shg-category-col-4 {
  flex: 4;
  padding: 0 40px;
}

.shg-category-col-5 {
  flex: 5;
  padding: 0 50px;
}

.shg-category-grid .shg-product-image-wrapper img.shogun-image {
  width: 100%;
}

@media (max-width: 768px) {
  .shg-category-row.stacked {
    display: block;
  }

  .shg-category-row .shg-category-col {
    padding: 20px 0;
  }

  .shg-category-row .shg-category-col:first-child {
    padding-top: 0;
  }

  .shg-category-row .shg-category-col:last-child {
    padding-bottom: 0;
  }
}
#s-570d5dee-488b-49fd-84d0-4e428ee5f723 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
}
@media (min-width: 768px) and (max-width: 991px){#s-570d5dee-488b-49fd-84d0-4e428ee5f723 {
  display: none;
}
#s-570d5dee-488b-49fd-84d0-4e428ee5f723, #wrap-s-570d5dee-488b-49fd-84d0-4e428ee5f723 { display: none !important; }}@media (max-width: 767px){#s-570d5dee-488b-49fd-84d0-4e428ee5f723 {
  display: none;
}
#s-570d5dee-488b-49fd-84d0-4e428ee5f723, #wrap-s-570d5dee-488b-49fd-84d0-4e428ee5f723 { display: none !important; }}
#s-5a3c0171-8196-4755-aba1-70c1ecdf87b0 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: rgba(181, 181, 181, 1);
}

.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 {
  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-7a12249b-d039-47e5-9d52-0dd2c788755b {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 0%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
background-color: rgba(244, 244, 244, 1);
}



.shg-c#s-7a12249b-d039-47e5-9d52-0dd2c788755b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a12249b-d039-47e5-9d52-0dd2c788755b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-7a12249b-d039-47e5-9d52-0dd2c788755b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a12249b-d039-47e5-9d52-0dd2c788755b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-7a12249b-d039-47e5-9d52-0dd2c788755b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a12249b-d039-47e5-9d52-0dd2c788755b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-7a12249b-d039-47e5-9d52-0dd2c788755b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a12249b-d039-47e5-9d52-0dd2c788755b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-7a12249b-d039-47e5-9d52-0dd2c788755b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-7a12249b-d039-47e5-9d52-0dd2c788755b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
.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;
  
  
  text-transform: none;
  
  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-71fe814e-54a0-4110-aac8-99524c5033c5 {
  margin-top: 0%;
margin-left: 2%;
margin-bottom: 2%;
margin-right: 2%;
padding-top: 15px;
padding-left: 4%;
padding-bottom: 15px;
padding-right: 4%;
min-height: 75px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}

#s-71fe814e-54a0-4110-aac8-99524c5033c5 .shg-product-title-component h3 {
  color: rgba(24, 24, 24, 1);
  
  font-family: Urbanist;
  
  font-size: 16px;
  
  
}

.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-2afb36a8-3164-453f-82f9-e93bc6891500 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-2afb36a8-3164-453f-82f9-e93bc6891500:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-2afb36a8-3164-453f-82f9-e93bc6891500:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-2afb36a8-3164-453f-82f9-e93bc6891500 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2afb36a8-3164-453f-82f9-e93bc6891500.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2afb36a8-3164-453f-82f9-e93bc6891500.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}

#s-2afb36a8-3164-453f-82f9-e93bc6891500.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-9219017a-6dc3-46d1-9e4f-0c6160909498 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: rgba(181, 181, 181, 1);
}

#s-5514660c-4437-4a07-b447-c74eda9d7926 {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 0%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
background-color: rgba(244, 244, 244, 1);
}



.shg-c#s-5514660c-4437-4a07-b447-c74eda9d7926 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5514660c-4437-4a07-b447-c74eda9d7926 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-5514660c-4437-4a07-b447-c74eda9d7926 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5514660c-4437-4a07-b447-c74eda9d7926 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-5514660c-4437-4a07-b447-c74eda9d7926 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5514660c-4437-4a07-b447-c74eda9d7926 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-5514660c-4437-4a07-b447-c74eda9d7926 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5514660c-4437-4a07-b447-c74eda9d7926 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-5514660c-4437-4a07-b447-c74eda9d7926 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-5514660c-4437-4a07-b447-c74eda9d7926 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-fa6485ec-8b91-4ea6-8270-177d03d08b1c {
  margin-top: 0%;
margin-left: 2%;
margin-bottom: 2%;
margin-right: 2%;
padding-top: 15px;
padding-left: 4%;
padding-bottom: 15px;
padding-right: 4%;
min-height: 75px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}

#s-fa6485ec-8b91-4ea6-8270-177d03d08b1c .shg-product-title-component h3 {
  color: rgba(24, 24, 24, 1);
  
  font-family: Urbanist;
  
  font-size: 16px;
  
  
}

#s-c63b5fa2-c06a-4cff-970c-89dcdfebeac0 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-c63b5fa2-c06a-4cff-970c-89dcdfebeac0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c63b5fa2-c06a-4cff-970c-89dcdfebeac0:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-c63b5fa2-c06a-4cff-970c-89dcdfebeac0 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-c63b5fa2-c06a-4cff-970c-89dcdfebeac0.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-c63b5fa2-c06a-4cff-970c-89dcdfebeac0.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}

#s-c63b5fa2-c06a-4cff-970c-89dcdfebeac0.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-e8ee2d4e-0b87-493f-90db-2fb46d11d01c {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: rgba(181, 181, 181, 1);
}

#s-64afc693-bab7-4cdc-b655-5fd1f9d6afd2 {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 0%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
background-color: rgba(244, 244, 244, 1);
}



.shg-c#s-64afc693-bab7-4cdc-b655-5fd1f9d6afd2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-64afc693-bab7-4cdc-b655-5fd1f9d6afd2 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-64afc693-bab7-4cdc-b655-5fd1f9d6afd2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-64afc693-bab7-4cdc-b655-5fd1f9d6afd2 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-64afc693-bab7-4cdc-b655-5fd1f9d6afd2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-64afc693-bab7-4cdc-b655-5fd1f9d6afd2 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-64afc693-bab7-4cdc-b655-5fd1f9d6afd2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-64afc693-bab7-4cdc-b655-5fd1f9d6afd2 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-64afc693-bab7-4cdc-b655-5fd1f9d6afd2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-64afc693-bab7-4cdc-b655-5fd1f9d6afd2 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-7315c597-d47c-44ff-9945-dc0c4481f5ed {
  margin-top: 0%;
margin-left: 2%;
margin-bottom: 2%;
margin-right: 2%;
padding-top: 15px;
padding-left: 4%;
padding-bottom: 15px;
padding-right: 4%;
min-height: 75px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}

#s-7315c597-d47c-44ff-9945-dc0c4481f5ed .shg-product-title-component h3 {
  color: rgba(24, 24, 24, 1);
  
  font-family: Urbanist;
  
  font-size: 16px;
  
  
}

#s-cd81f965-c03a-4ca2-a4cd-4391604ecb95 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-cd81f965-c03a-4ca2-a4cd-4391604ecb95:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-cd81f965-c03a-4ca2-a4cd-4391604ecb95:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-cd81f965-c03a-4ca2-a4cd-4391604ecb95 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-cd81f965-c03a-4ca2-a4cd-4391604ecb95.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-cd81f965-c03a-4ca2-a4cd-4391604ecb95.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}

#s-cd81f965-c03a-4ca2-a4cd-4391604ecb95.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-a6cf039f-c320-46ff-b73b-affd1a09035d {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: rgba(181, 181, 181, 1);
}

#s-794d41cd-0b89-42ce-bc73-5caed57ce21f {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 0%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
background-color: rgba(244, 244, 244, 1);
}



.shg-c#s-794d41cd-0b89-42ce-bc73-5caed57ce21f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-794d41cd-0b89-42ce-bc73-5caed57ce21f img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-794d41cd-0b89-42ce-bc73-5caed57ce21f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-794d41cd-0b89-42ce-bc73-5caed57ce21f img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-794d41cd-0b89-42ce-bc73-5caed57ce21f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-794d41cd-0b89-42ce-bc73-5caed57ce21f img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-794d41cd-0b89-42ce-bc73-5caed57ce21f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-794d41cd-0b89-42ce-bc73-5caed57ce21f img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-794d41cd-0b89-42ce-bc73-5caed57ce21f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-794d41cd-0b89-42ce-bc73-5caed57ce21f img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-42ecb545-3ab6-4874-b85b-a57ed06f478a {
  margin-top: 0%;
margin-left: 2%;
margin-bottom: 2%;
margin-right: 2%;
padding-top: 15px;
padding-left: 4%;
padding-bottom: 15px;
padding-right: 4%;
min-height: 75px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}

#s-42ecb545-3ab6-4874-b85b-a57ed06f478a .shg-product-title-component h3 {
  color: rgba(24, 24, 24, 1);
  
  font-family: Urbanist;
  
  font-size: 16px;
  
  
}

#s-bf241f1d-e28a-43c5-92fc-ecfa800c9ae2 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-bf241f1d-e28a-43c5-92fc-ecfa800c9ae2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-bf241f1d-e28a-43c5-92fc-ecfa800c9ae2:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-bf241f1d-e28a-43c5-92fc-ecfa800c9ae2 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-bf241f1d-e28a-43c5-92fc-ecfa800c9ae2.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-bf241f1d-e28a-43c5-92fc-ecfa800c9ae2.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}

#s-bf241f1d-e28a-43c5-92fc-ecfa800c9ae2.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-c4764580-ebcb-49f7-8d96-3c64bc40011b {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: rgba(181, 181, 181, 1);
}

#s-d5357f14-4e13-4d07-b81b-4be14990f092 {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 0%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
background-color: rgba(244, 244, 244, 1);
}



.shg-c#s-d5357f14-4e13-4d07-b81b-4be14990f092 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d5357f14-4e13-4d07-b81b-4be14990f092 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-d5357f14-4e13-4d07-b81b-4be14990f092 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d5357f14-4e13-4d07-b81b-4be14990f092 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-d5357f14-4e13-4d07-b81b-4be14990f092 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d5357f14-4e13-4d07-b81b-4be14990f092 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-d5357f14-4e13-4d07-b81b-4be14990f092 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d5357f14-4e13-4d07-b81b-4be14990f092 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-d5357f14-4e13-4d07-b81b-4be14990f092 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d5357f14-4e13-4d07-b81b-4be14990f092 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-29d6b4e3-3f8b-442d-8c1d-23ba102cfdb6 {
  margin-top: 0%;
margin-left: 2%;
margin-bottom: 2%;
margin-right: 2%;
padding-top: 15px;
padding-left: 4%;
padding-bottom: 15px;
padding-right: 4%;
min-height: 75px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}

#s-29d6b4e3-3f8b-442d-8c1d-23ba102cfdb6 .shg-product-title-component h3 {
  color: rgba(24, 24, 24, 1);
  
  font-family: Urbanist;
  
  font-size: 16px;
  
  
}

#s-9321ec72-7bac-47ca-b7d8-83a287885451 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-9321ec72-7bac-47ca-b7d8-83a287885451:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9321ec72-7bac-47ca-b7d8-83a287885451:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-9321ec72-7bac-47ca-b7d8-83a287885451 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-9321ec72-7bac-47ca-b7d8-83a287885451.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-9321ec72-7bac-47ca-b7d8-83a287885451.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}

#s-9321ec72-7bac-47ca-b7d8-83a287885451.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-71c29db9-11f7-4947-b0d9-5d54081a7739 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: rgba(181, 181, 181, 1);
}

#s-70c850be-14ff-40b9-823d-89a448209af9 {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 0%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
background-color: rgba(244, 244, 244, 1);
}



.shg-c#s-70c850be-14ff-40b9-823d-89a448209af9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-70c850be-14ff-40b9-823d-89a448209af9 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-70c850be-14ff-40b9-823d-89a448209af9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-70c850be-14ff-40b9-823d-89a448209af9 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-70c850be-14ff-40b9-823d-89a448209af9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-70c850be-14ff-40b9-823d-89a448209af9 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-70c850be-14ff-40b9-823d-89a448209af9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-70c850be-14ff-40b9-823d-89a448209af9 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-70c850be-14ff-40b9-823d-89a448209af9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-70c850be-14ff-40b9-823d-89a448209af9 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-6b11b1f7-988a-4bf2-adf2-f1cc628a9e03 {
  margin-top: 0%;
margin-left: 2%;
margin-bottom: 2%;
margin-right: 2%;
padding-top: 15px;
padding-left: 4%;
padding-bottom: 15px;
padding-right: 4%;
min-height: 75px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}

#s-6b11b1f7-988a-4bf2-adf2-f1cc628a9e03 .shg-product-title-component h3 {
  color: rgba(24, 24, 24, 1);
  
  font-family: Urbanist;
  
  font-size: 16px;
  
  
}

#s-169d868b-75fb-4cb0-bb7f-90930ee8c7ec {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-169d868b-75fb-4cb0-bb7f-90930ee8c7ec:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-169d868b-75fb-4cb0-bb7f-90930ee8c7ec:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-169d868b-75fb-4cb0-bb7f-90930ee8c7ec {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-169d868b-75fb-4cb0-bb7f-90930ee8c7ec.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-169d868b-75fb-4cb0-bb7f-90930ee8c7ec.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}

#s-169d868b-75fb-4cb0-bb7f-90930ee8c7ec.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-83dc6ffc-38d8-47e8-87d3-4c07a08c8757 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: rgba(181, 181, 181, 1);
}

#s-a157a16c-5fc5-4439-8f62-6083f7d41e0b {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 0%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
background-color: rgba(244, 244, 244, 1);
}



.shg-c#s-a157a16c-5fc5-4439-8f62-6083f7d41e0b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a157a16c-5fc5-4439-8f62-6083f7d41e0b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-a157a16c-5fc5-4439-8f62-6083f7d41e0b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a157a16c-5fc5-4439-8f62-6083f7d41e0b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-a157a16c-5fc5-4439-8f62-6083f7d41e0b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a157a16c-5fc5-4439-8f62-6083f7d41e0b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-a157a16c-5fc5-4439-8f62-6083f7d41e0b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a157a16c-5fc5-4439-8f62-6083f7d41e0b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-a157a16c-5fc5-4439-8f62-6083f7d41e0b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a157a16c-5fc5-4439-8f62-6083f7d41e0b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-eae1c4b0-38e9-4c65-82a1-053bc5bbf5c1 {
  margin-top: 0%;
margin-left: 2%;
margin-bottom: 2%;
margin-right: 2%;
padding-top: 15px;
padding-left: 4%;
padding-bottom: 15px;
padding-right: 4%;
min-height: 75px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}

#s-eae1c4b0-38e9-4c65-82a1-053bc5bbf5c1 .shg-product-title-component h3 {
  color: rgba(24, 24, 24, 1);
  
  font-family: Urbanist;
  
  font-size: 16px;
  
  
}

#s-ac22f5e2-a0d8-497d-a8f7-1d1462c47d70 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-ac22f5e2-a0d8-497d-a8f7-1d1462c47d70:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ac22f5e2-a0d8-497d-a8f7-1d1462c47d70:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-ac22f5e2-a0d8-497d-a8f7-1d1462c47d70 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-ac22f5e2-a0d8-497d-a8f7-1d1462c47d70.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-ac22f5e2-a0d8-497d-a8f7-1d1462c47d70.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}

#s-ac22f5e2-a0d8-497d-a8f7-1d1462c47d70.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-02935f4b-1f7f-4b56-9e27-8482735441c0 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: rgba(181, 181, 181, 1);
}

#s-e60d2531-0d6c-4ad5-a514-1bb4e5b0d3c0 {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 0%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
background-color: rgba(244, 244, 244, 1);
}



.shg-c#s-e60d2531-0d6c-4ad5-a514-1bb4e5b0d3c0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e60d2531-0d6c-4ad5-a514-1bb4e5b0d3c0 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-e60d2531-0d6c-4ad5-a514-1bb4e5b0d3c0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e60d2531-0d6c-4ad5-a514-1bb4e5b0d3c0 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-e60d2531-0d6c-4ad5-a514-1bb4e5b0d3c0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e60d2531-0d6c-4ad5-a514-1bb4e5b0d3c0 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-e60d2531-0d6c-4ad5-a514-1bb4e5b0d3c0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e60d2531-0d6c-4ad5-a514-1bb4e5b0d3c0 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-e60d2531-0d6c-4ad5-a514-1bb4e5b0d3c0 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e60d2531-0d6c-4ad5-a514-1bb4e5b0d3c0 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-1175cdfd-fb3a-478a-b421-40a8004bf8aa {
  margin-top: 0%;
margin-left: 2%;
margin-bottom: 2%;
margin-right: 2%;
padding-top: 15px;
padding-left: 4%;
padding-bottom: 15px;
padding-right: 4%;
min-height: 75px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}

#s-1175cdfd-fb3a-478a-b421-40a8004bf8aa .shg-product-title-component h3 {
  color: rgba(24, 24, 24, 1);
  
  font-family: Urbanist;
  
  font-size: 16px;
  
  
}

#s-c403b476-33bb-458b-a25c-a5c8997bcf65 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-c403b476-33bb-458b-a25c-a5c8997bcf65:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c403b476-33bb-458b-a25c-a5c8997bcf65:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-c403b476-33bb-458b-a25c-a5c8997bcf65 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-c403b476-33bb-458b-a25c-a5c8997bcf65.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-c403b476-33bb-458b-a25c-a5c8997bcf65.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}

#s-c403b476-33bb-458b-a25c-a5c8997bcf65.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-abe743ef-10f8-41de-9708-664f1433c56e {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: rgba(181, 181, 181, 1);
}

#s-e239d308-172a-4630-8859-21c2c4390702 {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 0%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
background-color: rgba(244, 244, 244, 1);
}



.shg-c#s-e239d308-172a-4630-8859-21c2c4390702 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e239d308-172a-4630-8859-21c2c4390702 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-e239d308-172a-4630-8859-21c2c4390702 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e239d308-172a-4630-8859-21c2c4390702 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-e239d308-172a-4630-8859-21c2c4390702 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e239d308-172a-4630-8859-21c2c4390702 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-e239d308-172a-4630-8859-21c2c4390702 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e239d308-172a-4630-8859-21c2c4390702 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-e239d308-172a-4630-8859-21c2c4390702 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e239d308-172a-4630-8859-21c2c4390702 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-4eba17f0-377d-40b3-a9ff-fae9a46640ef {
  margin-top: 0%;
margin-left: 2%;
margin-bottom: 2%;
margin-right: 2%;
padding-top: 15px;
padding-left: 4%;
padding-bottom: 15px;
padding-right: 4%;
min-height: 75px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}

#s-4eba17f0-377d-40b3-a9ff-fae9a46640ef .shg-product-title-component h3 {
  color: rgba(24, 24, 24, 1);
  
  font-family: Urbanist;
  
  font-size: 16px;
  
  
}

#s-2dacb390-fee6-497b-82b5-f5b2bb002456 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-2dacb390-fee6-497b-82b5-f5b2bb002456:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-2dacb390-fee6-497b-82b5-f5b2bb002456:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-2dacb390-fee6-497b-82b5-f5b2bb002456 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2dacb390-fee6-497b-82b5-f5b2bb002456.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2dacb390-fee6-497b-82b5-f5b2bb002456.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}

#s-2dacb390-fee6-497b-82b5-f5b2bb002456.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-26d0eb2d-bc09-4b0d-bead-26beb2d39bd5 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: rgba(181, 181, 181, 1);
}

#s-e0961a42-ea1c-499d-ac05-be197f1a259c {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 0%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
background-color: rgba(244, 244, 244, 1);
}



.shg-c#s-e0961a42-ea1c-499d-ac05-be197f1a259c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e0961a42-ea1c-499d-ac05-be197f1a259c img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-e0961a42-ea1c-499d-ac05-be197f1a259c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e0961a42-ea1c-499d-ac05-be197f1a259c img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-e0961a42-ea1c-499d-ac05-be197f1a259c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e0961a42-ea1c-499d-ac05-be197f1a259c img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-e0961a42-ea1c-499d-ac05-be197f1a259c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e0961a42-ea1c-499d-ac05-be197f1a259c img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-e0961a42-ea1c-499d-ac05-be197f1a259c .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-e0961a42-ea1c-499d-ac05-be197f1a259c img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-49334905-fd4d-4cf0-8ae6-5d97328bb08d {
  margin-top: 0%;
margin-left: 2%;
margin-bottom: 2%;
margin-right: 2%;
padding-top: 15px;
padding-left: 4%;
padding-bottom: 15px;
padding-right: 4%;
min-height: 75px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}

#s-49334905-fd4d-4cf0-8ae6-5d97328bb08d .shg-product-title-component h3 {
  color: rgba(24, 24, 24, 1);
  
  font-family: Urbanist;
  
  font-size: 16px;
  
  
}

#s-d06dc933-6815-40ff-a1f7-255fa7ecdb48 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-d06dc933-6815-40ff-a1f7-255fa7ecdb48:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d06dc933-6815-40ff-a1f7-255fa7ecdb48:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-d06dc933-6815-40ff-a1f7-255fa7ecdb48 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-d06dc933-6815-40ff-a1f7-255fa7ecdb48.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d06dc933-6815-40ff-a1f7-255fa7ecdb48.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}

#s-d06dc933-6815-40ff-a1f7-255fa7ecdb48.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-f7a6ce8b-474f-4418-8738-707432f3833c {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: rgba(181, 181, 181, 1);
}

#s-fcb3dd98-1783-44ce-b440-0f51f903e0bc {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 0%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
background-color: rgba(244, 244, 244, 1);
}



.shg-c#s-fcb3dd98-1783-44ce-b440-0f51f903e0bc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fcb3dd98-1783-44ce-b440-0f51f903e0bc img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-fcb3dd98-1783-44ce-b440-0f51f903e0bc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fcb3dd98-1783-44ce-b440-0f51f903e0bc img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-fcb3dd98-1783-44ce-b440-0f51f903e0bc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fcb3dd98-1783-44ce-b440-0f51f903e0bc img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-fcb3dd98-1783-44ce-b440-0f51f903e0bc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fcb3dd98-1783-44ce-b440-0f51f903e0bc img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-fcb3dd98-1783-44ce-b440-0f51f903e0bc .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-fcb3dd98-1783-44ce-b440-0f51f903e0bc img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-466a3d7b-9705-4c9e-b4b2-322bab7f4562 {
  margin-top: 0%;
margin-left: 2%;
margin-bottom: 2%;
margin-right: 2%;
padding-top: 15px;
padding-left: 4%;
padding-bottom: 15px;
padding-right: 4%;
min-height: 75px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}

#s-466a3d7b-9705-4c9e-b4b2-322bab7f4562 .shg-product-title-component h3 {
  color: rgba(24, 24, 24, 1);
  
  font-family: Urbanist;
  
  font-size: 16px;
  
  
}

#s-2b31020b-7b7d-4572-9b9a-d0ba7c67e370 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-2b31020b-7b7d-4572-9b9a-d0ba7c67e370:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-2b31020b-7b7d-4572-9b9a-d0ba7c67e370:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-2b31020b-7b7d-4572-9b9a-d0ba7c67e370 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2b31020b-7b7d-4572-9b9a-d0ba7c67e370.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2b31020b-7b7d-4572-9b9a-d0ba7c67e370.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}

#s-2b31020b-7b7d-4572-9b9a-d0ba7c67e370.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-c105cb38-12e1-4306-9d35-f58336947206 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
}
@media (min-width: 1200px){#s-c105cb38-12e1-4306-9d35-f58336947206 {
  display: none;
}
#s-c105cb38-12e1-4306-9d35-f58336947206, #wrap-s-c105cb38-12e1-4306-9d35-f58336947206 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c105cb38-12e1-4306-9d35-f58336947206 {
  display: none;
}
#s-c105cb38-12e1-4306-9d35-f58336947206, #wrap-s-c105cb38-12e1-4306-9d35-f58336947206 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c105cb38-12e1-4306-9d35-f58336947206 {
  display: unset;
}
#s-c105cb38-12e1-4306-9d35-f58336947206, #wrap-s-c105cb38-12e1-4306-9d35-f58336947206 { display: unset !important; }}@media (max-width: 767px){#s-c105cb38-12e1-4306-9d35-f58336947206 {
  display: unset;
}
#s-c105cb38-12e1-4306-9d35-f58336947206, #wrap-s-c105cb38-12e1-4306-9d35-f58336947206 { display: unset !important; }}
#s-05fe7304-ae00-4b8c-8468-fabdc803e7a3 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: rgba(181, 181, 181, 1);
}

#s-1ff67ede-5e1b-48b2-852d-4df4d6b82181 {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 0%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
background-color: rgba(244, 244, 244, 1);
}



.shg-c#s-1ff67ede-5e1b-48b2-852d-4df4d6b82181 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1ff67ede-5e1b-48b2-852d-4df4d6b82181 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-1ff67ede-5e1b-48b2-852d-4df4d6b82181 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1ff67ede-5e1b-48b2-852d-4df4d6b82181 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-1ff67ede-5e1b-48b2-852d-4df4d6b82181 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1ff67ede-5e1b-48b2-852d-4df4d6b82181 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-1ff67ede-5e1b-48b2-852d-4df4d6b82181 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1ff67ede-5e1b-48b2-852d-4df4d6b82181 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-1ff67ede-5e1b-48b2-852d-4df4d6b82181 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1ff67ede-5e1b-48b2-852d-4df4d6b82181 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-a96e75d1-6317-4ca7-b212-9b7b33e1f7e0 {
  margin-top: 0%;
margin-left: 2%;
margin-bottom: 2%;
margin-right: 2%;
padding-top: 15px;
padding-left: 4%;
padding-bottom: 15px;
padding-right: 4%;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}

#s-a96e75d1-6317-4ca7-b212-9b7b33e1f7e0 .shg-product-title-component h3 {
  color: rgba(24, 24, 24, 1);
  
  font-family: Urbanist;
  
  font-size: 16px;
  
  
}

#s-d31b25a5-85cd-4c17-ba39-4781f232bdc7 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-d31b25a5-85cd-4c17-ba39-4781f232bdc7:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d31b25a5-85cd-4c17-ba39-4781f232bdc7:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-d31b25a5-85cd-4c17-ba39-4781f232bdc7 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-d31b25a5-85cd-4c17-ba39-4781f232bdc7.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d31b25a5-85cd-4c17-ba39-4781f232bdc7.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}

#s-d31b25a5-85cd-4c17-ba39-4781f232bdc7.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-1bd55e61-8523-43b0-a773-5744a5f999e5 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: rgba(181, 181, 181, 1);
}

#s-ced6cf87-9bfa-4530-8b68-8df531fdc1ba {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 0%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
background-color: rgba(244, 244, 244, 1);
}



.shg-c#s-ced6cf87-9bfa-4530-8b68-8df531fdc1ba .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ced6cf87-9bfa-4530-8b68-8df531fdc1ba img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-ced6cf87-9bfa-4530-8b68-8df531fdc1ba .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ced6cf87-9bfa-4530-8b68-8df531fdc1ba img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-ced6cf87-9bfa-4530-8b68-8df531fdc1ba .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ced6cf87-9bfa-4530-8b68-8df531fdc1ba img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-ced6cf87-9bfa-4530-8b68-8df531fdc1ba .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ced6cf87-9bfa-4530-8b68-8df531fdc1ba img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-ced6cf87-9bfa-4530-8b68-8df531fdc1ba .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ced6cf87-9bfa-4530-8b68-8df531fdc1ba img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-3f0e551a-c84f-49b7-86db-29854b49e003 {
  margin-top: 0%;
margin-left: 2%;
margin-bottom: 2%;
margin-right: 2%;
padding-top: 15px;
padding-left: 4%;
padding-bottom: 15px;
padding-right: 4%;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}

#s-3f0e551a-c84f-49b7-86db-29854b49e003 .shg-product-title-component h3 {
  color: rgba(24, 24, 24, 1);
  
  font-family: Urbanist;
  
  font-size: 16px;
  
  
}

#s-ccda64e1-8bed-43e4-ac81-9a6ed36a4a4f {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-ccda64e1-8bed-43e4-ac81-9a6ed36a4a4f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ccda64e1-8bed-43e4-ac81-9a6ed36a4a4f:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-ccda64e1-8bed-43e4-ac81-9a6ed36a4a4f {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-ccda64e1-8bed-43e4-ac81-9a6ed36a4a4f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-ccda64e1-8bed-43e4-ac81-9a6ed36a4a4f.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}

#s-ccda64e1-8bed-43e4-ac81-9a6ed36a4a4f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-3fd7de28-8eab-484f-ae2b-e483b0d2376b {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: rgba(181, 181, 181, 1);
}

#s-6edaa150-b27f-4ce9-b9ab-cf2c0783d5ce {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 0%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
background-color: rgba(244, 244, 244, 1);
}



.shg-c#s-6edaa150-b27f-4ce9-b9ab-cf2c0783d5ce .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6edaa150-b27f-4ce9-b9ab-cf2c0783d5ce img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-6edaa150-b27f-4ce9-b9ab-cf2c0783d5ce .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6edaa150-b27f-4ce9-b9ab-cf2c0783d5ce img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-6edaa150-b27f-4ce9-b9ab-cf2c0783d5ce .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6edaa150-b27f-4ce9-b9ab-cf2c0783d5ce img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-6edaa150-b27f-4ce9-b9ab-cf2c0783d5ce .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6edaa150-b27f-4ce9-b9ab-cf2c0783d5ce img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-6edaa150-b27f-4ce9-b9ab-cf2c0783d5ce .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6edaa150-b27f-4ce9-b9ab-cf2c0783d5ce img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-1c2ca07d-c577-43fa-a0d5-3332804cdd42 {
  margin-top: 0%;
margin-left: 2%;
margin-bottom: 2%;
margin-right: 2%;
padding-top: 15px;
padding-left: 4%;
padding-bottom: 15px;
padding-right: 4%;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}

#s-1c2ca07d-c577-43fa-a0d5-3332804cdd42 .shg-product-title-component h3 {
  color: rgba(24, 24, 24, 1);
  
  font-family: Urbanist;
  
  font-size: 16px;
  
  
}

#s-43e90c9f-75ea-47a4-83cb-b29dbfa8d071 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-43e90c9f-75ea-47a4-83cb-b29dbfa8d071:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-43e90c9f-75ea-47a4-83cb-b29dbfa8d071:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-43e90c9f-75ea-47a4-83cb-b29dbfa8d071 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-43e90c9f-75ea-47a4-83cb-b29dbfa8d071.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-43e90c9f-75ea-47a4-83cb-b29dbfa8d071.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}

#s-43e90c9f-75ea-47a4-83cb-b29dbfa8d071.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-ac5fbb55-104e-432c-8956-f29e34fcc07b {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: rgba(181, 181, 181, 1);
}

#s-403545f4-0c09-4fb2-a536-e51ab9d131d9 {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 0%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
background-color: rgba(244, 244, 244, 1);
}



.shg-c#s-403545f4-0c09-4fb2-a536-e51ab9d131d9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-403545f4-0c09-4fb2-a536-e51ab9d131d9 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-403545f4-0c09-4fb2-a536-e51ab9d131d9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-403545f4-0c09-4fb2-a536-e51ab9d131d9 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-403545f4-0c09-4fb2-a536-e51ab9d131d9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-403545f4-0c09-4fb2-a536-e51ab9d131d9 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-403545f4-0c09-4fb2-a536-e51ab9d131d9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-403545f4-0c09-4fb2-a536-e51ab9d131d9 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-403545f4-0c09-4fb2-a536-e51ab9d131d9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-403545f4-0c09-4fb2-a536-e51ab9d131d9 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-535780e0-232c-4766-bf71-59207825f72a {
  margin-top: 0%;
margin-left: 2%;
margin-bottom: 2%;
margin-right: 2%;
padding-top: 15px;
padding-left: 4%;
padding-bottom: 15px;
padding-right: 4%;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}

#s-535780e0-232c-4766-bf71-59207825f72a .shg-product-title-component h3 {
  color: rgba(24, 24, 24, 1);
  
  font-family: Urbanist;
  
  font-size: 16px;
  
  
}

#s-ab384f8c-65be-4806-8c81-8fe5a265c23b {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-ab384f8c-65be-4806-8c81-8fe5a265c23b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ab384f8c-65be-4806-8c81-8fe5a265c23b:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-ab384f8c-65be-4806-8c81-8fe5a265c23b {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-ab384f8c-65be-4806-8c81-8fe5a265c23b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-ab384f8c-65be-4806-8c81-8fe5a265c23b.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}

#s-ab384f8c-65be-4806-8c81-8fe5a265c23b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-a032b260-f592-4192-bc3b-7da8e809d563 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: rgba(181, 181, 181, 1);
}

#s-3a324c6f-1403-475b-a34d-629499725206 {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 0%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
background-color: rgba(244, 244, 244, 1);
}



.shg-c#s-3a324c6f-1403-475b-a34d-629499725206 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3a324c6f-1403-475b-a34d-629499725206 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-3a324c6f-1403-475b-a34d-629499725206 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3a324c6f-1403-475b-a34d-629499725206 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-3a324c6f-1403-475b-a34d-629499725206 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3a324c6f-1403-475b-a34d-629499725206 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-3a324c6f-1403-475b-a34d-629499725206 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3a324c6f-1403-475b-a34d-629499725206 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-3a324c6f-1403-475b-a34d-629499725206 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-3a324c6f-1403-475b-a34d-629499725206 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-ac6f716f-2a19-450b-b878-4848f12da850 {
  margin-top: 0%;
margin-left: 2%;
margin-bottom: 2%;
margin-right: 2%;
padding-top: 15px;
padding-left: 4%;
padding-bottom: 15px;
padding-right: 4%;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}

#s-ac6f716f-2a19-450b-b878-4848f12da850 .shg-product-title-component h3 {
  color: rgba(24, 24, 24, 1);
  
  font-family: Urbanist;
  
  font-size: 16px;
  
  
}

#s-88268df3-458a-43cb-978e-f6767539cf8a {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-88268df3-458a-43cb-978e-f6767539cf8a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-88268df3-458a-43cb-978e-f6767539cf8a:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-88268df3-458a-43cb-978e-f6767539cf8a {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-88268df3-458a-43cb-978e-f6767539cf8a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-88268df3-458a-43cb-978e-f6767539cf8a.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}

#s-88268df3-458a-43cb-978e-f6767539cf8a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-851578d6-f0ca-4016-93b4-298df847d3cb {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: rgba(181, 181, 181, 1);
}

#s-53836dcc-b9b0-472e-8ac3-daefc20f4c95 {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 0%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
background-color: rgba(244, 244, 244, 1);
}



.shg-c#s-53836dcc-b9b0-472e-8ac3-daefc20f4c95 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-53836dcc-b9b0-472e-8ac3-daefc20f4c95 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-53836dcc-b9b0-472e-8ac3-daefc20f4c95 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-53836dcc-b9b0-472e-8ac3-daefc20f4c95 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-53836dcc-b9b0-472e-8ac3-daefc20f4c95 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-53836dcc-b9b0-472e-8ac3-daefc20f4c95 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-53836dcc-b9b0-472e-8ac3-daefc20f4c95 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-53836dcc-b9b0-472e-8ac3-daefc20f4c95 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-53836dcc-b9b0-472e-8ac3-daefc20f4c95 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-53836dcc-b9b0-472e-8ac3-daefc20f4c95 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-90b06255-00dc-42ce-b98b-1fed8fcc9b46 {
  margin-top: 0%;
margin-left: 2%;
margin-bottom: 2%;
margin-right: 2%;
padding-top: 15px;
padding-left: 4%;
padding-bottom: 15px;
padding-right: 4%;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}

#s-90b06255-00dc-42ce-b98b-1fed8fcc9b46 .shg-product-title-component h3 {
  color: rgba(24, 24, 24, 1);
  
  font-family: Urbanist;
  
  font-size: 16px;
  
  
}

#s-59f31430-decc-4ca9-90a6-0e98a31bb4c6 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-59f31430-decc-4ca9-90a6-0e98a31bb4c6:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-59f31430-decc-4ca9-90a6-0e98a31bb4c6:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-59f31430-decc-4ca9-90a6-0e98a31bb4c6 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-59f31430-decc-4ca9-90a6-0e98a31bb4c6.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-59f31430-decc-4ca9-90a6-0e98a31bb4c6.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}

#s-59f31430-decc-4ca9-90a6-0e98a31bb4c6.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-190eabda-c10a-45fd-b168-edac9d47a247 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: rgba(181, 181, 181, 1);
}

#s-6638afe4-2791-4a77-965d-51512a2143a3 {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 0%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
background-color: rgba(244, 244, 244, 1);
}



.shg-c#s-6638afe4-2791-4a77-965d-51512a2143a3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6638afe4-2791-4a77-965d-51512a2143a3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-6638afe4-2791-4a77-965d-51512a2143a3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6638afe4-2791-4a77-965d-51512a2143a3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-6638afe4-2791-4a77-965d-51512a2143a3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6638afe4-2791-4a77-965d-51512a2143a3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-6638afe4-2791-4a77-965d-51512a2143a3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6638afe4-2791-4a77-965d-51512a2143a3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-6638afe4-2791-4a77-965d-51512a2143a3 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-6638afe4-2791-4a77-965d-51512a2143a3 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-eee0cda3-d365-43e0-9239-996051ef28e0 {
  margin-top: 0%;
margin-left: 2%;
margin-bottom: 2%;
margin-right: 2%;
padding-top: 15px;
padding-left: 4%;
padding-bottom: 15px;
padding-right: 4%;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}

#s-eee0cda3-d365-43e0-9239-996051ef28e0 .shg-product-title-component h3 {
  color: rgba(24, 24, 24, 1);
  
  font-family: Urbanist;
  
  font-size: 16px;
  
  
}

#s-d399d936-fb87-425f-bde1-71c456387cde {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-d399d936-fb87-425f-bde1-71c456387cde:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d399d936-fb87-425f-bde1-71c456387cde:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-d399d936-fb87-425f-bde1-71c456387cde {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-d399d936-fb87-425f-bde1-71c456387cde.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d399d936-fb87-425f-bde1-71c456387cde.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}

#s-d399d936-fb87-425f-bde1-71c456387cde.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-73458187-d20c-4bec-a72f-9169cd0f4178 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: rgba(181, 181, 181, 1);
}

#s-edca2b4c-041a-44c4-b7a1-5d48e077496b {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 0%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
background-color: rgba(244, 244, 244, 1);
}



.shg-c#s-edca2b4c-041a-44c4-b7a1-5d48e077496b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-edca2b4c-041a-44c4-b7a1-5d48e077496b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-edca2b4c-041a-44c4-b7a1-5d48e077496b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-edca2b4c-041a-44c4-b7a1-5d48e077496b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-edca2b4c-041a-44c4-b7a1-5d48e077496b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-edca2b4c-041a-44c4-b7a1-5d48e077496b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-edca2b4c-041a-44c4-b7a1-5d48e077496b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-edca2b4c-041a-44c4-b7a1-5d48e077496b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-edca2b4c-041a-44c4-b7a1-5d48e077496b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-edca2b4c-041a-44c4-b7a1-5d48e077496b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-18cae31c-ad8d-4e5c-8b3f-2f62afbf1298 {
  margin-top: 0%;
margin-left: 2%;
margin-bottom: 2%;
margin-right: 2%;
padding-top: 15px;
padding-left: 4%;
padding-bottom: 15px;
padding-right: 4%;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}

#s-18cae31c-ad8d-4e5c-8b3f-2f62afbf1298 .shg-product-title-component h3 {
  color: rgba(24, 24, 24, 1);
  
  font-family: Urbanist;
  
  font-size: 16px;
  
  
}

#s-42a439b8-b8d0-4669-8950-64846582a317 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-42a439b8-b8d0-4669-8950-64846582a317:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-42a439b8-b8d0-4669-8950-64846582a317:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-42a439b8-b8d0-4669-8950-64846582a317 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-42a439b8-b8d0-4669-8950-64846582a317.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-42a439b8-b8d0-4669-8950-64846582a317.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}

#s-42a439b8-b8d0-4669-8950-64846582a317.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-da653239-b16f-47a0-b019-744ebdf4160d {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: rgba(181, 181, 181, 1);
}

#s-f94bbac7-da93-45af-af32-7a27cb05548f {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 0%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
background-color: rgba(244, 244, 244, 1);
}



.shg-c#s-f94bbac7-da93-45af-af32-7a27cb05548f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f94bbac7-da93-45af-af32-7a27cb05548f img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-f94bbac7-da93-45af-af32-7a27cb05548f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f94bbac7-da93-45af-af32-7a27cb05548f img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-f94bbac7-da93-45af-af32-7a27cb05548f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f94bbac7-da93-45af-af32-7a27cb05548f img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-f94bbac7-da93-45af-af32-7a27cb05548f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f94bbac7-da93-45af-af32-7a27cb05548f img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-f94bbac7-da93-45af-af32-7a27cb05548f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f94bbac7-da93-45af-af32-7a27cb05548f img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-cea66754-d0a3-4b1f-b76c-a83956268f3c {
  margin-top: 0%;
margin-left: 2%;
margin-bottom: 2%;
margin-right: 2%;
padding-top: 15px;
padding-left: 4%;
padding-bottom: 15px;
padding-right: 4%;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}

#s-cea66754-d0a3-4b1f-b76c-a83956268f3c .shg-product-title-component h3 {
  color: rgba(24, 24, 24, 1);
  
  font-family: Urbanist;
  
  font-size: 16px;
  
  
}

#s-326d2bfb-5ae7-473c-8099-fd884beda8eb {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-326d2bfb-5ae7-473c-8099-fd884beda8eb:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-326d2bfb-5ae7-473c-8099-fd884beda8eb:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-326d2bfb-5ae7-473c-8099-fd884beda8eb {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-326d2bfb-5ae7-473c-8099-fd884beda8eb.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-326d2bfb-5ae7-473c-8099-fd884beda8eb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}

#s-326d2bfb-5ae7-473c-8099-fd884beda8eb.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-466ad409-d7ce-49ce-880b-e1dc7c467db7 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: rgba(181, 181, 181, 1);
}

#s-d6332ec0-9723-46b6-a261-78627569cd41 {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 0%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
background-color: rgba(244, 244, 244, 1);
}



.shg-c#s-d6332ec0-9723-46b6-a261-78627569cd41 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d6332ec0-9723-46b6-a261-78627569cd41 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-d6332ec0-9723-46b6-a261-78627569cd41 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d6332ec0-9723-46b6-a261-78627569cd41 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-d6332ec0-9723-46b6-a261-78627569cd41 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d6332ec0-9723-46b6-a261-78627569cd41 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-d6332ec0-9723-46b6-a261-78627569cd41 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d6332ec0-9723-46b6-a261-78627569cd41 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-d6332ec0-9723-46b6-a261-78627569cd41 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d6332ec0-9723-46b6-a261-78627569cd41 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-c993711c-8109-4506-952b-2024e7c01978 {
  margin-top: 0%;
margin-left: 2%;
margin-bottom: 2%;
margin-right: 2%;
padding-top: 15px;
padding-left: 4%;
padding-bottom: 15px;
padding-right: 4%;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}

#s-c993711c-8109-4506-952b-2024e7c01978 .shg-product-title-component h3 {
  color: rgba(24, 24, 24, 1);
  
  font-family: Urbanist;
  
  font-size: 16px;
  
  
}

#s-71f620cb-cac5-45c2-ad2d-b10709eea05d {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-71f620cb-cac5-45c2-ad2d-b10709eea05d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-71f620cb-cac5-45c2-ad2d-b10709eea05d:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-71f620cb-cac5-45c2-ad2d-b10709eea05d {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-71f620cb-cac5-45c2-ad2d-b10709eea05d.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-71f620cb-cac5-45c2-ad2d-b10709eea05d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}

#s-71f620cb-cac5-45c2-ad2d-b10709eea05d.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-f028788a-164e-403d-827b-dc8d3f12e799 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 0%;
padding-left: 0%;
padding-bottom: 0%;
padding-right: 0%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: rgba(181, 181, 181, 1);
}

#s-78cf4d56-019d-467c-b6f4-1caba69b346b {
  margin-top: 2%;
margin-left: 2%;
margin-bottom: 0%;
margin-right: 2%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
background-color: rgba(244, 244, 244, 1);
}



.shg-c#s-78cf4d56-019d-467c-b6f4-1caba69b346b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-78cf4d56-019d-467c-b6f4-1caba69b346b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-78cf4d56-019d-467c-b6f4-1caba69b346b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-78cf4d56-019d-467c-b6f4-1caba69b346b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-78cf4d56-019d-467c-b6f4-1caba69b346b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-78cf4d56-019d-467c-b6f4-1caba69b346b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-78cf4d56-019d-467c-b6f4-1caba69b346b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-78cf4d56-019d-467c-b6f4-1caba69b346b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-78cf4d56-019d-467c-b6f4-1caba69b346b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-78cf4d56-019d-467c-b6f4-1caba69b346b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-21d6da8c-a841-4b0f-90c4-c31aa73a9f5c {
  margin-top: 0%;
margin-left: 2%;
margin-bottom: 2%;
margin-right: 2%;
padding-top: 15px;
padding-left: 4%;
padding-bottom: 15px;
padding-right: 4%;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}

#s-21d6da8c-a841-4b0f-90c4-c31aa73a9f5c .shg-product-title-component h3 {
  color: rgba(24, 24, 24, 1);
  
  font-family: Urbanist;
  
  font-size: 16px;
  
  
}

#s-825924e4-5e66-4224-a33c-f05d198ccd79 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: #252525;
text-align: center;
cursor: pointer;
}
#s-825924e4-5e66-4224-a33c-f05d198ccd79:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-825924e4-5e66-4224-a33c-f05d198ccd79:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-825924e4-5e66-4224-a33c-f05d198ccd79 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-825924e4-5e66-4224-a33c-f05d198ccd79.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-825924e4-5e66-4224-a33c-f05d198ccd79.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}

#s-825924e4-5e66-4224-a33c-f05d198ccd79.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-995eff21-6386-47f6-b60e-83fbf3a1b0e2 {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-995eff21-6386-47f6-b60e-83fbf3a1b0e2 {
  margin-top: -15px;
}
}
#s-995eff21-6386-47f6-b60e-83fbf3a1b0e2 hr {
  border-top: 1px solid rgba(171, 150, 109, 1);
}

#s-193a7dc8-51be-476f-9c20-4334da9c3d05 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
min-height: 50px;
max-width: 1200px;
}
@media (max-width: 767px){#s-193a7dc8-51be-476f-9c20-4334da9c3d05 {
  margin-left: 4%;
margin-right: 4%;
}
}







#s-193a7dc8-51be-476f-9c20-4334da9c3d05 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-193a7dc8-51be-476f-9c20-4334da9c3d05.shg-box.shg-c {
  justify-content: center;
}

#s-3ad1050e-64a0-49a6-b0b1-d5aca4d64dba {
  margin-top: 0px;
margin-bottom: -20px;
}

#s-5f029526-3ca2-4905-b095-905f135d1123 {
  margin-top: 40px;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-5f029526-3ca2-4905-b095-905f135d1123"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5f029526-3ca2-4905-b095-905f135d1123"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-5f029526-3ca2-4905-b095-905f135d1123"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-5f029526-3ca2-4905-b095-905f135d1123"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-64825c52-d05b-4eb4-bf41-085ec33e53bb {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 15px;
min-height: 50px;
background-color: rgba(22, 22, 22, 1);
}
@media (max-width: 767px){#s-64825c52-d05b-4eb4-bf41-085ec33e53bb {
  margin-bottom: 20px;
}
}







#s-64825c52-d05b-4eb4-bf41-085ec33e53bb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-64825c52-d05b-4eb4-bf41-085ec33e53bb.shg-box.shg-c {
  justify-content: center;
}

#s-cf15d4ae-e551-48ac-a117-05524777ca83 {
  max-width: 1440px;
aspect-ratio: 2/3;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-cf15d4ae-e551-48ac-a117-05524777ca83 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-cf15d4ae-e551-48ac-a117-05524777ca83 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cf15d4ae-e551-48ac-a117-05524777ca83 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-cf15d4ae-e551-48ac-a117-05524777ca83 {
    width: 100%;
    height: auto;
  }

  #s-cf15d4ae-e551-48ac-a117-05524777ca83 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image {
    
    
  }


.s-cf15d4ae-e551-48ac-a117-05524777ca83 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-cf15d4ae-e551-48ac-a117-05524777ca83.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cf15d4ae-e551-48ac-a117-05524777ca83 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image-container {
      position: relative;
    }

    .s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cf15d4ae-e551-48ac-a117-05524777ca83 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-cf15d4ae-e551-48ac-a117-05524777ca83 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-cf15d4ae-e551-48ac-a117-05524777ca83 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cf15d4ae-e551-48ac-a117-05524777ca83 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-cf15d4ae-e551-48ac-a117-05524777ca83 {
    width: 100%;
    height: auto;
  }

  #s-cf15d4ae-e551-48ac-a117-05524777ca83 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image {
    
    
  }


.s-cf15d4ae-e551-48ac-a117-05524777ca83 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-cf15d4ae-e551-48ac-a117-05524777ca83.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cf15d4ae-e551-48ac-a117-05524777ca83 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image-container {
      position: relative;
    }

    .s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cf15d4ae-e551-48ac-a117-05524777ca83 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-cf15d4ae-e551-48ac-a117-05524777ca83 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-cf15d4ae-e551-48ac-a117-05524777ca83 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cf15d4ae-e551-48ac-a117-05524777ca83 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-cf15d4ae-e551-48ac-a117-05524777ca83 {
    width: 100%;
    height: auto;
  }

  #s-cf15d4ae-e551-48ac-a117-05524777ca83 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image {
    
    
  }


.s-cf15d4ae-e551-48ac-a117-05524777ca83 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-cf15d4ae-e551-48ac-a117-05524777ca83.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cf15d4ae-e551-48ac-a117-05524777ca83 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image-container {
      position: relative;
    }

    .s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cf15d4ae-e551-48ac-a117-05524777ca83 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-cf15d4ae-e551-48ac-a117-05524777ca83 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-cf15d4ae-e551-48ac-a117-05524777ca83 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cf15d4ae-e551-48ac-a117-05524777ca83 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-cf15d4ae-e551-48ac-a117-05524777ca83 {
    width: 100%;
    height: auto;
  }

  #s-cf15d4ae-e551-48ac-a117-05524777ca83 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image {
    
    
  }


.s-cf15d4ae-e551-48ac-a117-05524777ca83 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-cf15d4ae-e551-48ac-a117-05524777ca83.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cf15d4ae-e551-48ac-a117-05524777ca83 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image-container {
      position: relative;
    }

    .s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cf15d4ae-e551-48ac-a117-05524777ca83 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-cf15d4ae-e551-48ac-a117-05524777ca83 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-cf15d4ae-e551-48ac-a117-05524777ca83 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-cf15d4ae-e551-48ac-a117-05524777ca83 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-cf15d4ae-e551-48ac-a117-05524777ca83 {
    width: 100%;
    height: auto;
  }

  #s-cf15d4ae-e551-48ac-a117-05524777ca83 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image {
    
    
  }


.s-cf15d4ae-e551-48ac-a117-05524777ca83 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-cf15d4ae-e551-48ac-a117-05524777ca83.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-cf15d4ae-e551-48ac-a117-05524777ca83 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image-container {
      position: relative;
    }

    .s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-cf15d4ae-e551-48ac-a117-05524777ca83.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-cf15d4ae-e551-48ac-a117-05524777ca83 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-15bad185-ff6b-4425-9021-ce6c47217e27 {
  margin-bottom: -15px;
}

#s-9378f556-d8f3-4fa5-ab6b-a29ad65e3ffb {
  margin-top: 0px;
margin-left: 6%;
margin-bottom: 10px;
margin-right: 6%;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
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: 10px;
background-color: #252525;
text-align: center;
text-decoration: none;
line-height: 1em;
}
#s-9378f556-d8f3-4fa5-ab6b-a29ad65e3ffb:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9378f556-d8f3-4fa5-ab6b-a29ad65e3ffb:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-9378f556-d8f3-4fa5-ab6b-a29ad65e3ffb {
  line-height: 1.5em;
}
}

  #s-9378f556-d8f3-4fa5-ab6b-a29ad65e3ffb-root {
    text-align: center;
  }


#s-9378f556-d8f3-4fa5-ab6b-a29ad65e3ffb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}
@media (min-width: 1200px){
  #s-9378f556-d8f3-4fa5-ab6b-a29ad65e3ffb-root {
    text-align: center;
  }


#s-9378f556-d8f3-4fa5-ab6b-a29ad65e3ffb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9378f556-d8f3-4fa5-ab6b-a29ad65e3ffb-root {
    text-align: center;
  }


#s-9378f556-d8f3-4fa5-ab6b-a29ad65e3ffb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9378f556-d8f3-4fa5-ab6b-a29ad65e3ffb-root {
    text-align: center;
  }


#s-9378f556-d8f3-4fa5-ab6b-a29ad65e3ffb.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}
}@media (max-width: 767px){
  #s-9378f556-d8f3-4fa5-ab6b-a29ad65e3ffb-root {
    text-align: center;
  }


#s-9378f556-d8f3-4fa5-ab6b-a29ad65e3ffb.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}
}
#s-16b47b1a-b796-4aff-a9e2-1015ef773054 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 1px;
background-image: none;
hover-type: color;
}
#s-16b47b1a-b796-4aff-a9e2-1015ef773054:hover {background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-16b47b1a-b796-4aff-a9e2-1015ef773054:active {background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-16b47b1a-b796-4aff-a9e2-1015ef773054-root {
    text-align: center;
  }


#s-16b47b1a-b796-4aff-a9e2-1015ef773054.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-16b47b1a-b796-4aff-a9e2-1015ef773054-root {
    text-align: center;
  }


#s-16b47b1a-b796-4aff-a9e2-1015ef773054.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-16b47b1a-b796-4aff-a9e2-1015ef773054-root {
    text-align: center;
  }


#s-16b47b1a-b796-4aff-a9e2-1015ef773054.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-16b47b1a-b796-4aff-a9e2-1015ef773054-root {
    text-align: center;
  }


#s-16b47b1a-b796-4aff-a9e2-1015ef773054.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-16b47b1a-b796-4aff-a9e2-1015ef773054-root {
    text-align: center;
  }


#s-16b47b1a-b796-4aff-a9e2-1015ef773054.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
}
#s-2e140322-dae7-4a16-9b0b-15cb75f42f48 {
  min-height: 50px;
}








#s-2e140322-dae7-4a16-9b0b-15cb75f42f48 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2e140322-dae7-4a16-9b0b-15cb75f42f48.shg-box.shg-c {
  justify-content: center;
}

#s-f6bab42a-4784-45a9-8ae5-747c17184eda {
  min-height: 50px;
}








#s-f6bab42a-4784-45a9-8ae5-747c17184eda > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f6bab42a-4784-45a9-8ae5-747c17184eda.shg-box.shg-c {
  justify-content: center;
}

#s-a66ec7c4-7d32-4dbd-81de-1ad5ceaff857 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 15px;
min-height: 50px;
background-color: rgba(22, 22, 22, 1);
}
@media (max-width: 767px){#s-a66ec7c4-7d32-4dbd-81de-1ad5ceaff857 {
  margin-top: 0px;
margin-bottom: 20px;
}
}







#s-a66ec7c4-7d32-4dbd-81de-1ad5ceaff857 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a66ec7c4-7d32-4dbd-81de-1ad5ceaff857.shg-box.shg-c {
  justify-content: center;
}

#s-b6634f24-a19b-4749-9161-e3fc1e111108 {
  max-width: 1440px;
aspect-ratio: 2/3;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-b6634f24-a19b-4749-9161-e3fc1e111108 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-b6634f24-a19b-4749-9161-e3fc1e111108 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b6634f24-a19b-4749-9161-e3fc1e111108 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b6634f24-a19b-4749-9161-e3fc1e111108 {
    width: 100%;
    height: auto;
  }

  #s-b6634f24-a19b-4749-9161-e3fc1e111108 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image {
    
    
  }


.s-b6634f24-a19b-4749-9161-e3fc1e111108 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-b6634f24-a19b-4749-9161-e3fc1e111108.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b6634f24-a19b-4749-9161-e3fc1e111108 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image-container {
      position: relative;
    }

    .s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b6634f24-a19b-4749-9161-e3fc1e111108 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-b6634f24-a19b-4749-9161-e3fc1e111108 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-b6634f24-a19b-4749-9161-e3fc1e111108 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b6634f24-a19b-4749-9161-e3fc1e111108 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b6634f24-a19b-4749-9161-e3fc1e111108 {
    width: 100%;
    height: auto;
  }

  #s-b6634f24-a19b-4749-9161-e3fc1e111108 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image {
    
    
  }


.s-b6634f24-a19b-4749-9161-e3fc1e111108 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-b6634f24-a19b-4749-9161-e3fc1e111108.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b6634f24-a19b-4749-9161-e3fc1e111108 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image-container {
      position: relative;
    }

    .s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b6634f24-a19b-4749-9161-e3fc1e111108 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-b6634f24-a19b-4749-9161-e3fc1e111108 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-b6634f24-a19b-4749-9161-e3fc1e111108 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b6634f24-a19b-4749-9161-e3fc1e111108 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b6634f24-a19b-4749-9161-e3fc1e111108 {
    width: 100%;
    height: auto;
  }

  #s-b6634f24-a19b-4749-9161-e3fc1e111108 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image {
    
    
  }


.s-b6634f24-a19b-4749-9161-e3fc1e111108 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-b6634f24-a19b-4749-9161-e3fc1e111108.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b6634f24-a19b-4749-9161-e3fc1e111108 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image-container {
      position: relative;
    }

    .s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b6634f24-a19b-4749-9161-e3fc1e111108 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-b6634f24-a19b-4749-9161-e3fc1e111108 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-b6634f24-a19b-4749-9161-e3fc1e111108 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b6634f24-a19b-4749-9161-e3fc1e111108 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b6634f24-a19b-4749-9161-e3fc1e111108 {
    width: 100%;
    height: auto;
  }

  #s-b6634f24-a19b-4749-9161-e3fc1e111108 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image {
    
    
  }


.s-b6634f24-a19b-4749-9161-e3fc1e111108 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-b6634f24-a19b-4749-9161-e3fc1e111108.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b6634f24-a19b-4749-9161-e3fc1e111108 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image-container {
      position: relative;
    }

    .s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b6634f24-a19b-4749-9161-e3fc1e111108 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-b6634f24-a19b-4749-9161-e3fc1e111108 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-b6634f24-a19b-4749-9161-e3fc1e111108 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b6634f24-a19b-4749-9161-e3fc1e111108 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-b6634f24-a19b-4749-9161-e3fc1e111108 {
    width: 100%;
    height: auto;
  }

  #s-b6634f24-a19b-4749-9161-e3fc1e111108 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image {
    
    
  }


.s-b6634f24-a19b-4749-9161-e3fc1e111108 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-b6634f24-a19b-4749-9161-e3fc1e111108.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b6634f24-a19b-4749-9161-e3fc1e111108 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image-container {
      position: relative;
    }

    .s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b6634f24-a19b-4749-9161-e3fc1e111108.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b6634f24-a19b-4749-9161-e3fc1e111108 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-2168b58b-2019-4c38-9dd0-2ec69ae008f7 {
  margin-bottom: -15px;
}

#s-1c93a256-9091-4a55-b648-bade550ba8dc {
  margin-top: 0px;
margin-left: 6%;
margin-bottom: 10px;
margin-right: 6%;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
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: 10px;
background-color: #252525;
text-align: center;
text-decoration: none;
line-height: 1em;
}
#s-1c93a256-9091-4a55-b648-bade550ba8dc:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-1c93a256-9091-4a55-b648-bade550ba8dc:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-1c93a256-9091-4a55-b648-bade550ba8dc {
  line-height: 1.5em;
}
}

  #s-1c93a256-9091-4a55-b648-bade550ba8dc-root {
    text-align: center;
  }


#s-1c93a256-9091-4a55-b648-bade550ba8dc.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}
@media (min-width: 1200px){
  #s-1c93a256-9091-4a55-b648-bade550ba8dc-root {
    text-align: center;
  }


#s-1c93a256-9091-4a55-b648-bade550ba8dc.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1c93a256-9091-4a55-b648-bade550ba8dc-root {
    text-align: center;
  }


#s-1c93a256-9091-4a55-b648-bade550ba8dc.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1c93a256-9091-4a55-b648-bade550ba8dc-root {
    text-align: center;
  }


#s-1c93a256-9091-4a55-b648-bade550ba8dc.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}
}@media (max-width: 767px){
  #s-1c93a256-9091-4a55-b648-bade550ba8dc-root {
    text-align: center;
  }


#s-1c93a256-9091-4a55-b648-bade550ba8dc.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}
}
#s-526b4665-42c9-4ccf-9bd9-3d5ab03c3dfe {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 1px;
background-image: none;
hover-type: color;
}
#s-526b4665-42c9-4ccf-9bd9-3d5ab03c3dfe:hover {background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-526b4665-42c9-4ccf-9bd9-3d5ab03c3dfe:active {background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-526b4665-42c9-4ccf-9bd9-3d5ab03c3dfe-root {
    text-align: center;
  }


#s-526b4665-42c9-4ccf-9bd9-3d5ab03c3dfe.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-526b4665-42c9-4ccf-9bd9-3d5ab03c3dfe-root {
    text-align: center;
  }


#s-526b4665-42c9-4ccf-9bd9-3d5ab03c3dfe.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-526b4665-42c9-4ccf-9bd9-3d5ab03c3dfe-root {
    text-align: center;
  }


#s-526b4665-42c9-4ccf-9bd9-3d5ab03c3dfe.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-526b4665-42c9-4ccf-9bd9-3d5ab03c3dfe-root {
    text-align: center;
  }


#s-526b4665-42c9-4ccf-9bd9-3d5ab03c3dfe.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-526b4665-42c9-4ccf-9bd9-3d5ab03c3dfe-root {
    text-align: center;
  }


#s-526b4665-42c9-4ccf-9bd9-3d5ab03c3dfe.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
}
#s-3ec773d0-a5b0-40b0-9954-dbaa2a6b1e77 {
  min-height: 50px;
}








#s-3ec773d0-a5b0-40b0-9954-dbaa2a6b1e77 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3ec773d0-a5b0-40b0-9954-dbaa2a6b1e77.shg-box.shg-c {
  justify-content: center;
}

#s-2b93fa8d-dc87-47b4-8a07-cf5b3c8058ed {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 15px;
min-height: 50px;
background-color: rgba(22, 22, 22, 1);
}
@media (max-width: 767px){#s-2b93fa8d-dc87-47b4-8a07-cf5b3c8058ed {
  margin-bottom: 20px;
}
}







#s-2b93fa8d-dc87-47b4-8a07-cf5b3c8058ed > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2b93fa8d-dc87-47b4-8a07-cf5b3c8058ed.shg-box.shg-c {
  justify-content: center;
}

#s-01614e0b-9594-40e5-85b3-f3a80b23fa03 {
  max-width: 1440px;
aspect-ratio: 2/3;
text-align: center;
}





  @supports  (aspect-ratio: 1/1) {
    
    #s-01614e0b-9594-40e5-85b3-f3a80b23fa03 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-01614e0b-9594-40e5-85b3-f3a80b23fa03 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-01614e0b-9594-40e5-85b3-f3a80b23fa03 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-01614e0b-9594-40e5-85b3-f3a80b23fa03 {
    width: 100%;
    height: auto;
  }

  #s-01614e0b-9594-40e5-85b3-f3a80b23fa03 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image {
    
    
  }


.s-01614e0b-9594-40e5-85b3-f3a80b23fa03 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shg-align-container {
  display: flex;
  justify-content: center
}

.s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-01614e0b-9594-40e5-85b3-f3a80b23fa03 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image-container {
      position: relative;
    }

    .s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-01614e0b-9594-40e5-85b3-f3a80b23fa03 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-01614e0b-9594-40e5-85b3-f3a80b23fa03 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-01614e0b-9594-40e5-85b3-f3a80b23fa03 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-01614e0b-9594-40e5-85b3-f3a80b23fa03 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-01614e0b-9594-40e5-85b3-f3a80b23fa03 {
    width: 100%;
    height: auto;
  }

  #s-01614e0b-9594-40e5-85b3-f3a80b23fa03 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image {
    
    
  }


.s-01614e0b-9594-40e5-85b3-f3a80b23fa03 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shg-align-container {
  display: flex;
  justify-content: center
}

.s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-01614e0b-9594-40e5-85b3-f3a80b23fa03 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image-container {
      position: relative;
    }

    .s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-01614e0b-9594-40e5-85b3-f3a80b23fa03 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-01614e0b-9594-40e5-85b3-f3a80b23fa03 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-01614e0b-9594-40e5-85b3-f3a80b23fa03 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-01614e0b-9594-40e5-85b3-f3a80b23fa03 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-01614e0b-9594-40e5-85b3-f3a80b23fa03 {
    width: 100%;
    height: auto;
  }

  #s-01614e0b-9594-40e5-85b3-f3a80b23fa03 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image {
    
    
  }


.s-01614e0b-9594-40e5-85b3-f3a80b23fa03 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shg-align-container {
  display: flex;
  justify-content: center
}

.s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-01614e0b-9594-40e5-85b3-f3a80b23fa03 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image-container {
      position: relative;
    }

    .s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-01614e0b-9594-40e5-85b3-f3a80b23fa03 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-01614e0b-9594-40e5-85b3-f3a80b23fa03 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-01614e0b-9594-40e5-85b3-f3a80b23fa03 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-01614e0b-9594-40e5-85b3-f3a80b23fa03 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-01614e0b-9594-40e5-85b3-f3a80b23fa03 {
    width: 100%;
    height: auto;
  }

  #s-01614e0b-9594-40e5-85b3-f3a80b23fa03 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image {
    
    
  }


.s-01614e0b-9594-40e5-85b3-f3a80b23fa03 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shg-align-container {
  display: flex;
  justify-content: center
}

.s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-01614e0b-9594-40e5-85b3-f3a80b23fa03 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image-container {
      position: relative;
    }

    .s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-01614e0b-9594-40e5-85b3-f3a80b23fa03 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-01614e0b-9594-40e5-85b3-f3a80b23fa03 .shg-image-content-wrapper {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }

    #s-01614e0b-9594-40e5-85b3-f3a80b23fa03 .shogun-image-link {
      aspect-ratio: 2/3;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-01614e0b-9594-40e5-85b3-f3a80b23fa03 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-01614e0b-9594-40e5-85b3-f3a80b23fa03 {
    width: 100%;
    height: auto;
  }

  #s-01614e0b-9594-40e5-85b3-f3a80b23fa03 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image {
    
    
  }


.s-01614e0b-9594-40e5-85b3-f3a80b23fa03 .shogun-image-content {
  
    align-items:  flex-end;
  
}

.s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shg-align-container {
  display: flex;
  justify-content: center
}

.s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-01614e0b-9594-40e5-85b3-f3a80b23fa03 {
      --shg-aspect-ratio: calc(2/3); 
    }

    .s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image-container {
      position: relative;
    }

    .s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-01614e0b-9594-40e5-85b3-f3a80b23fa03.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-01614e0b-9594-40e5-85b3-f3a80b23fa03 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-56122d24-12cc-47e8-a09a-3711bf4e6d3d {
  margin-bottom: -15px;
}

#s-e44c2b2d-d26d-4eb3-bc6a-7a3a6c72ec1d {
  margin-top: 0px;
margin-left: 6%;
margin-bottom: 10px;
margin-right: 6%;
padding-top: 15px;
padding-left: 20px;
padding-bottom: 15px;
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: 10px;
background-color: #252525;
text-align: center;
text-decoration: none;
line-height: 1em;
}
#s-e44c2b2d-d26d-4eb3-bc6a-7a3a6c72ec1d:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e44c2b2d-d26d-4eb3-bc6a-7a3a6c72ec1d:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-e44c2b2d-d26d-4eb3-bc6a-7a3a6c72ec1d {
  line-height: 1.5em;
}
}

  #s-e44c2b2d-d26d-4eb3-bc6a-7a3a6c72ec1d-root {
    text-align: center;
  }


#s-e44c2b2d-d26d-4eb3-bc6a-7a3a6c72ec1d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}
@media (min-width: 1200px){
  #s-e44c2b2d-d26d-4eb3-bc6a-7a3a6c72ec1d-root {
    text-align: center;
  }


#s-e44c2b2d-d26d-4eb3-bc6a-7a3a6c72ec1d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e44c2b2d-d26d-4eb3-bc6a-7a3a6c72ec1d-root {
    text-align: center;
  }


#s-e44c2b2d-d26d-4eb3-bc6a-7a3a6c72ec1d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e44c2b2d-d26d-4eb3-bc6a-7a3a6c72ec1d-root {
    text-align: center;
  }


#s-e44c2b2d-d26d-4eb3-bc6a-7a3a6c72ec1d.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}
}@media (max-width: 767px){
  #s-e44c2b2d-d26d-4eb3-bc6a-7a3a6c72ec1d-root {
    text-align: center;
  }


#s-e44c2b2d-d26d-4eb3-bc6a-7a3a6c72ec1d.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  block ;
}
}
#s-a5e1e985-f406-494f-993d-5521cd6ca41e {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(37, 37, 37, 0);
text-align: center;
text-decoration: none;
letter-spacing: 1px;
background-image: none;
hover-type: color;
}
#s-a5e1e985-f406-494f-993d-5521cd6ca41e:hover {background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-a5e1e985-f406-494f-993d-5521cd6ca41e:active {background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-a5e1e985-f406-494f-993d-5521cd6ca41e-root {
    text-align: center;
  }


#s-a5e1e985-f406-494f-993d-5521cd6ca41e.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-a5e1e985-f406-494f-993d-5521cd6ca41e-root {
    text-align: center;
  }


#s-a5e1e985-f406-494f-993d-5521cd6ca41e.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a5e1e985-f406-494f-993d-5521cd6ca41e-root {
    text-align: center;
  }


#s-a5e1e985-f406-494f-993d-5521cd6ca41e.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a5e1e985-f406-494f-993d-5521cd6ca41e-root {
    text-align: center;
  }


#s-a5e1e985-f406-494f-993d-5521cd6ca41e.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-a5e1e985-f406-494f-993d-5521cd6ca41e-root {
    text-align: center;
  }


#s-a5e1e985-f406-494f-993d-5521cd6ca41e.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  
  font-family: Urbanist;
  display:  inline-block ;
}
}
#s-c7c3a6e4-65ac-4f57-a210-b56c97f1d68b {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1200px;
}
@media (max-width: 767px){#s-c7c3a6e4-65ac-4f57-a210-b56c97f1d68b {
  margin-left: 4%;
margin-right: 4%;
}
}







#s-c7c3a6e4-65ac-4f57-a210-b56c97f1d68b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c7c3a6e4-65ac-4f57-a210-b56c97f1d68b.shg-box.shg-c {
  justify-content: center;
}

#s-f320c1f9-67dc-40f2-be52-daeeb6110069 {
  margin-top: 20px;
margin-bottom: 20px;
max-width: 1200px;
aspect-ratio: 1200/149;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-f320c1f9-67dc-40f2-be52-daeeb6110069 {
  display: none;
}
#s-f320c1f9-67dc-40f2-be52-daeeb6110069, #wrap-s-f320c1f9-67dc-40f2-be52-daeeb6110069 { display: none !important; }}@media (max-width: 767px){#s-f320c1f9-67dc-40f2-be52-daeeb6110069 {
  display: none;
}
#s-f320c1f9-67dc-40f2-be52-daeeb6110069, #wrap-s-f320c1f9-67dc-40f2-be52-daeeb6110069 { display: none !important; }}




  @supports  (aspect-ratio: 1/1) {
    
    #s-f320c1f9-67dc-40f2-be52-daeeb6110069 .shg-image-content-wrapper {
      aspect-ratio: 1200/149;
      min-width: 100%;
      height: auto;
    }

    #s-f320c1f9-67dc-40f2-be52-daeeb6110069 .shogun-image-link {
      aspect-ratio: 1200/149;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f320c1f9-67dc-40f2-be52-daeeb6110069 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f320c1f9-67dc-40f2-be52-daeeb6110069 {
    width: 100%;
    height: auto;
  }

  #s-f320c1f9-67dc-40f2-be52-daeeb6110069 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image {
    
    
  }


.s-f320c1f9-67dc-40f2-be52-daeeb6110069 .shogun-image-content {
  
    align-items: center;
  
}

.s-f320c1f9-67dc-40f2-be52-daeeb6110069.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f320c1f9-67dc-40f2-be52-daeeb6110069 {
      --shg-aspect-ratio: calc(1200/149); 
    }

    .s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image-container {
      position: relative;
    }

    .s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f320c1f9-67dc-40f2-be52-daeeb6110069 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-f320c1f9-67dc-40f2-be52-daeeb6110069 .shg-image-content-wrapper {
      aspect-ratio: 1200/149;
      min-width: 100%;
      height: auto;
    }

    #s-f320c1f9-67dc-40f2-be52-daeeb6110069 .shogun-image-link {
      aspect-ratio: 1200/149;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f320c1f9-67dc-40f2-be52-daeeb6110069 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f320c1f9-67dc-40f2-be52-daeeb6110069 {
    width: 100%;
    height: auto;
  }

  #s-f320c1f9-67dc-40f2-be52-daeeb6110069 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image {
    
    
  }


.s-f320c1f9-67dc-40f2-be52-daeeb6110069 .shogun-image-content {
  
    align-items: center;
  
}

.s-f320c1f9-67dc-40f2-be52-daeeb6110069.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f320c1f9-67dc-40f2-be52-daeeb6110069 {
      --shg-aspect-ratio: calc(1200/149); 
    }

    .s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image-container {
      position: relative;
    }

    .s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f320c1f9-67dc-40f2-be52-daeeb6110069 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-f320c1f9-67dc-40f2-be52-daeeb6110069 .shg-image-content-wrapper {
      aspect-ratio: 1200/149;
      min-width: 100%;
      height: auto;
    }

    #s-f320c1f9-67dc-40f2-be52-daeeb6110069 .shogun-image-link {
      aspect-ratio: 1200/149;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f320c1f9-67dc-40f2-be52-daeeb6110069 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f320c1f9-67dc-40f2-be52-daeeb6110069 {
    width: 100%;
    height: auto;
  }

  #s-f320c1f9-67dc-40f2-be52-daeeb6110069 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image {
    
    
  }


.s-f320c1f9-67dc-40f2-be52-daeeb6110069 .shogun-image-content {
  
    align-items: center;
  
}

.s-f320c1f9-67dc-40f2-be52-daeeb6110069.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f320c1f9-67dc-40f2-be52-daeeb6110069 {
      --shg-aspect-ratio: calc(1200/149); 
    }

    .s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image-container {
      position: relative;
    }

    .s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f320c1f9-67dc-40f2-be52-daeeb6110069 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-f320c1f9-67dc-40f2-be52-daeeb6110069 .shg-image-content-wrapper {
      aspect-ratio: 1200/149;
      min-width: 100%;
      height: auto;
    }

    #s-f320c1f9-67dc-40f2-be52-daeeb6110069 .shogun-image-link {
      aspect-ratio: 1200/149;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f320c1f9-67dc-40f2-be52-daeeb6110069 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f320c1f9-67dc-40f2-be52-daeeb6110069 {
    width: 100%;
    height: auto;
  }

  #s-f320c1f9-67dc-40f2-be52-daeeb6110069 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image {
    
    
  }


.s-f320c1f9-67dc-40f2-be52-daeeb6110069 .shogun-image-content {
  
    align-items: center;
  
}

.s-f320c1f9-67dc-40f2-be52-daeeb6110069.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f320c1f9-67dc-40f2-be52-daeeb6110069 {
      --shg-aspect-ratio: calc(1200/149); 
    }

    .s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image-container {
      position: relative;
    }

    .s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f320c1f9-67dc-40f2-be52-daeeb6110069 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-f320c1f9-67dc-40f2-be52-daeeb6110069 .shg-image-content-wrapper {
      aspect-ratio: 1200/149;
      min-width: 100%;
      height: auto;
    }

    #s-f320c1f9-67dc-40f2-be52-daeeb6110069 .shogun-image-link {
      aspect-ratio: 1200/149;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-f320c1f9-67dc-40f2-be52-daeeb6110069 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-f320c1f9-67dc-40f2-be52-daeeb6110069 {
    width: 100%;
    height: auto;
  }

  #s-f320c1f9-67dc-40f2-be52-daeeb6110069 img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image {
    
    
  }


.s-f320c1f9-67dc-40f2-be52-daeeb6110069 .shogun-image-content {
  
    align-items: center;
  
}

.s-f320c1f9-67dc-40f2-be52-daeeb6110069.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f320c1f9-67dc-40f2-be52-daeeb6110069 {
      --shg-aspect-ratio: calc(1200/149); 
    }

    .s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image-container {
      position: relative;
    }

    .s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f320c1f9-67dc-40f2-be52-daeeb6110069.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f320c1f9-67dc-40f2-be52-daeeb6110069 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
#s-67b357b8-6218-4e50-bd8f-1c100c8522ab {
  margin-top: 20px;
margin-bottom: 20px;
max-width: 1440px;
aspect-ratio: 1440/1920;
text-align: center;
}
@media (min-width: 1200px){#s-67b357b8-6218-4e50-bd8f-1c100c8522ab {
  display: none;
}
#s-67b357b8-6218-4e50-bd8f-1c100c8522ab, #wrap-s-67b357b8-6218-4e50-bd8f-1c100c8522ab { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-67b357b8-6218-4e50-bd8f-1c100c8522ab {
  display: none;
}
#s-67b357b8-6218-4e50-bd8f-1c100c8522ab, #wrap-s-67b357b8-6218-4e50-bd8f-1c100c8522ab { display: none !important; }}




  @supports  (aspect-ratio: 1/1) {
    
    #s-67b357b8-6218-4e50-bd8f-1c100c8522ab .shg-image-content-wrapper {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }

    #s-67b357b8-6218-4e50-bd8f-1c100c8522ab .shogun-image-link {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-67b357b8-6218-4e50-bd8f-1c100c8522ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-67b357b8-6218-4e50-bd8f-1c100c8522ab {
    width: 100%;
    height: auto;
  }

  #s-67b357b8-6218-4e50-bd8f-1c100c8522ab img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image {
    
    
  }


.s-67b357b8-6218-4e50-bd8f-1c100c8522ab .shogun-image-content {
  
    align-items: center;
  
}

.s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-67b357b8-6218-4e50-bd8f-1c100c8522ab {
      --shg-aspect-ratio: calc(1440/1920); 
    }

    .s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image-container {
      position: relative;
    }

    .s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-67b357b8-6218-4e50-bd8f-1c100c8522ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

@media (min-width: 1200px){



  @supports  (aspect-ratio: 1/1) {
    
    #s-67b357b8-6218-4e50-bd8f-1c100c8522ab .shg-image-content-wrapper {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }

    #s-67b357b8-6218-4e50-bd8f-1c100c8522ab .shogun-image-link {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-67b357b8-6218-4e50-bd8f-1c100c8522ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-67b357b8-6218-4e50-bd8f-1c100c8522ab {
    width: 100%;
    height: auto;
  }

  #s-67b357b8-6218-4e50-bd8f-1c100c8522ab img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image {
    
    
  }


.s-67b357b8-6218-4e50-bd8f-1c100c8522ab .shogun-image-content {
  
    align-items: center;
  
}

.s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-67b357b8-6218-4e50-bd8f-1c100c8522ab {
      --shg-aspect-ratio: calc(1440/1920); 
    }

    .s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image-container {
      position: relative;
    }

    .s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-67b357b8-6218-4e50-bd8f-1c100c8522ab 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-67b357b8-6218-4e50-bd8f-1c100c8522ab .shg-image-content-wrapper {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }

    #s-67b357b8-6218-4e50-bd8f-1c100c8522ab .shogun-image-link {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-67b357b8-6218-4e50-bd8f-1c100c8522ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-67b357b8-6218-4e50-bd8f-1c100c8522ab {
    width: 100%;
    height: auto;
  }

  #s-67b357b8-6218-4e50-bd8f-1c100c8522ab img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image {
    
    
  }


.s-67b357b8-6218-4e50-bd8f-1c100c8522ab .shogun-image-content {
  
    align-items: center;
  
}

.s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-67b357b8-6218-4e50-bd8f-1c100c8522ab {
      --shg-aspect-ratio: calc(1440/1920); 
    }

    .s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image-container {
      position: relative;
    }

    .s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-67b357b8-6218-4e50-bd8f-1c100c8522ab 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-67b357b8-6218-4e50-bd8f-1c100c8522ab .shg-image-content-wrapper {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }

    #s-67b357b8-6218-4e50-bd8f-1c100c8522ab .shogun-image-link {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-67b357b8-6218-4e50-bd8f-1c100c8522ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-67b357b8-6218-4e50-bd8f-1c100c8522ab {
    width: 100%;
    height: auto;
  }

  #s-67b357b8-6218-4e50-bd8f-1c100c8522ab img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image {
    
    
  }


.s-67b357b8-6218-4e50-bd8f-1c100c8522ab .shogun-image-content {
  
    align-items: center;
  
}

.s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-67b357b8-6218-4e50-bd8f-1c100c8522ab {
      --shg-aspect-ratio: calc(1440/1920); 
    }

    .s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image-container {
      position: relative;
    }

    .s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-67b357b8-6218-4e50-bd8f-1c100c8522ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

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



  @supports  (aspect-ratio: 1/1) {
    
    #s-67b357b8-6218-4e50-bd8f-1c100c8522ab .shg-image-content-wrapper {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }

    #s-67b357b8-6218-4e50-bd8f-1c100c8522ab .shogun-image-link {
      aspect-ratio: 1440/1920;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-67b357b8-6218-4e50-bd8f-1c100c8522ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  #s-67b357b8-6218-4e50-bd8f-1c100c8522ab {
    width: 100%;
    height: auto;
  }

  #s-67b357b8-6218-4e50-bd8f-1c100c8522ab img.shogun-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image {
    
    
  }


.s-67b357b8-6218-4e50-bd8f-1c100c8522ab .shogun-image-content {
  
    align-items: center;
  
}

.s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-67b357b8-6218-4e50-bd8f-1c100c8522ab {
      --shg-aspect-ratio: calc(1440/1920); 
    }

    .s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image-container {
      position: relative;
    }

    .s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-67b357b8-6218-4e50-bd8f-1c100c8522ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-67b357b8-6218-4e50-bd8f-1c100c8522ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

}
@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */:root{--animate-duration:1s;--animate-delay:1s;--animate-repeat:1}.animate__animated{animation-duration:1s;animation-duration:var(--animate-duration);animation-fill-mode:both}.animate__animated.animate__infinite{animation-iteration-count:infinite}.animate__animated.animate__repeat-1{animation-iteration-count:1;animation-iteration-count:var(--animate-repeat)}.animate__animated.animate__repeat-2{animation-iteration-count:2;animation-iteration-count:calc(var(--animate-repeat)*2)}.animate__animated.animate__repeat-3{animation-iteration-count:3;animation-iteration-count:calc(var(--animate-repeat)*3)}.animate__animated.animate__delay-1s{animation-delay:1s;animation-delay:var(--animate-delay)}.animate__animated.animate__delay-2s{animation-delay:2s;animation-delay:calc(var(--animate-delay)*2)}.animate__animated.animate__delay-3s{animation-delay:3s;animation-delay:calc(var(--animate-delay)*3)}.animate__animated.animate__delay-4s{animation-delay:4s;animation-delay:calc(var(--animate-delay)*4)}.animate__animated.animate__delay-5s{animation-delay:5s;animation-delay:calc(var(--animate-delay)*5)}.animate__animated.animate__faster{animation-duration:.5s;animation-duration:calc(var(--animate-duration)/2)}.animate__animated.animate__fast{animation-duration:.8s;animation-duration:calc(var(--animate-duration)*0.8)}.animate__animated.animate__slow{animation-duration:2s;animation-duration:calc(var(--animate-duration)*2)}.animate__animated.animate__slower{animation-duration:3s;animation-duration:calc(var(--animate-duration)*3)}@media (prefers-reduced-motion:reduce),print{.animate__animated{animation-duration:1ms!important;transition-duration:1ms!important;animation-iteration-count:1!important}.animate__animated[class*=Out]{opacity:0}}@keyframes bounce{0%,20%,53%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0)}40%,43%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0) scaleY(.95)}90%{transform:translate3d(0,-4px,0) scaleY(1.02)}}.animate__bounce{animation-name:bounce;transform-origin:center bottom}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.animate__flash{animation-name:flash}@keyframes pulse{0%{transform:scaleX(1)}50%{transform:scale3d(1.05,1.05,1.05)}to{transform:scaleX(1)}}.animate__pulse{animation-name:pulse;animation-timing-function:ease-in-out}@keyframes rubberBand{0%{transform:scaleX(1)}30%{transform:scale3d(1.25,.75,1)}40%{transform:scale3d(.75,1.25,1)}50%{transform:scale3d(1.15,.85,1)}65%{transform:scale3d(.95,1.05,1)}75%{transform:scale3d(1.05,.95,1)}to{transform:scaleX(1)}}.animate__rubberBand{animation-name:rubberBand}@keyframes shakeX{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(-10px,0,0)}20%,40%,60%,80%{transform:translate3d(10px,0,0)}}.animate__shakeX{animation-name:shakeX}@keyframes shakeY{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(0,-10px,0)}20%,40%,60%,80%{transform:translate3d(0,10px,0)}}.animate__shakeY{animation-name:shakeY}@keyframes headShake{0%{transform:translateX(0)}6.5%{transform:translateX(-6px) rotateY(-9deg)}18.5%{transform:translateX(5px) rotateY(7deg)}31.5%{transform:translateX(-3px) rotateY(-5deg)}43.5%{transform:translateX(2px) rotateY(3deg)}50%{transform:translateX(0)}}.animate__headShake{animation-timing-function:ease-in-out;animation-name:headShake}@keyframes swing{20%{transform:rotate(15deg)}40%{transform:rotate(-10deg)}60%{transform:rotate(5deg)}80%{transform:rotate(-5deg)}to{transform:rotate(0deg)}}.animate__swing{transform-origin:top center;animation-name:swing}@keyframes tada{0%{transform:scaleX(1)}10%,20%{transform:scale3d(.9,.9,.9) rotate(-3deg)}30%,50%,70%,90%{transform:scale3d(1.1,1.1,1.1) rotate(3deg)}40%,60%,80%{transform:scale3d(1.1,1.1,1.1) rotate(-3deg)}to{transform:scaleX(1)}}.animate__tada{animation-name:tada}@keyframes wobble{0%{transform:translateZ(0)}15%{transform:translate3d(-25%,0,0) rotate(-5deg)}30%{transform:translate3d(20%,0,0) rotate(3deg)}45%{transform:translate3d(-15%,0,0) rotate(-3deg)}60%{transform:translate3d(10%,0,0) rotate(2deg)}75%{transform:translate3d(-5%,0,0) rotate(-1deg)}to{transform:translateZ(0)}}.animate__wobble{animation-name:wobble}@keyframes jello{0%,11.1%,to{transform:translateZ(0)}22.2%{transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{transform:skewX(6.25deg) skewY(6.25deg)}44.4%{transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{transform:skewX(-.78125deg) skewY(-.78125deg)}77.7%{transform:skewX(.390625deg) skewY(.390625deg)}88.8%{transform:skewX(-.1953125deg) skewY(-.1953125deg)}}.animate__jello{animation-name:jello;transform-origin:center}@keyframes heartBeat{0%{transform:scale(1)}14%{transform:scale(1.3)}28%{transform:scale(1)}42%{transform:scale(1.3)}70%{transform:scale(1)}}.animate__heartBeat{animation-name:heartBeat;animation-duration:1.3s;animation-duration:calc(var(--animate-duration)*1.3);animation-timing-function:ease-in-out}@keyframes backInDown{0%{transform:translateY(-1200px) scale(.7);opacity:.7}80%{transform:translateY(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInDown{animation-name:backInDown}@keyframes backInLeft{0%{transform:translateX(-2000px) scale(.7);opacity:.7}80%{transform:translateX(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInLeft{animation-name:backInLeft}@keyframes backInRight{0%{transform:translateX(2000px) scale(.7);opacity:.7}80%{transform:translateX(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInRight{animation-name:backInRight}@keyframes backInUp{0%{transform:translateY(1200px) scale(.7);opacity:.7}80%{transform:translateY(0) scale(.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInUp{animation-name:backInUp}@keyframes backOutDown{0%{transform:scale(1);opacity:1}20%{transform:translateY(0) scale(.7);opacity:.7}to{transform:translateY(700px) scale(.7);opacity:.7}}.animate__backOutDown{animation-name:backOutDown}@keyframes backOutLeft{0%{transform:scale(1);opacity:1}20%{transform:translateX(0) scale(.7);opacity:.7}to{transform:translateX(-2000px) scale(.7);opacity:.7}}.animate__backOutLeft{animation-name:backOutLeft}@keyframes backOutRight{0%{transform:scale(1);opacity:1}20%{transform:translateX(0) scale(.7);opacity:.7}to{transform:translateX(2000px) scale(.7);opacity:.7}}.animate__backOutRight{animation-name:backOutRight}@keyframes backOutUp{0%{transform:scale(1);opacity:1}20%{transform:translateY(0) scale(.7);opacity:.7}to{transform:translateY(-700px) scale(.7);opacity:.7}}.animate__backOutUp{animation-name:backOutUp}@keyframes bounceIn{0%,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}to{opacity:1;transform:scaleX(1)}}.animate__bounceIn{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);animation-name:bounceIn}@keyframes bounceInDown{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;transform:translate3d(0,25px,0) scaleY(.9)}75%{transform:translate3d(0,-10px,0) scaleY(.95)}90%{transform:translate3d(0,5px,0) scaleY(.985)}to{transform:translateZ(0)}}.animate__bounceInDown{animation-name:bounceInDown}@keyframes bounceInLeft{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;transform:translate3d(25px,0,0) scaleX(1)}75%{transform:translate3d(-10px,0,0) scaleX(.98)}90%{transform:translate3d(5px,0,0) scaleX(.995)}to{transform:translateZ(0)}}.animate__bounceInLeft{animation-name:bounceInLeft}@keyframes bounceInRight{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;transform:translate3d(-25px,0,0) scaleX(1)}75%{transform:translate3d(10px,0,0) scaleX(.98)}90%{transform:translate3d(-5px,0,0) scaleX(.995)}to{transform:translateZ(0)}}.animate__bounceInRight{animation-name:bounceInRight}@keyframes bounceInUp{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;transform:translate3d(0,-20px,0) scaleY(.9)}75%{transform:translate3d(0,10px,0) scaleY(.95)}90%{transform:translate3d(0,-5px,0) scaleY(.985)}to{transform:translateZ(0)}}.animate__bounceInUp{animation-name:bounceInUp}@keyframes bounceOut{20%{transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;transform:scale3d(1.1,1.1,1.1)}to{opacity:0;transform:scale3d(.3,.3,.3)}}.animate__bounceOut{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);animation-name:bounceOut}@keyframes bounceOutDown{20%{transform:translate3d(0,10px,0) scaleY(.985)}40%,45%{opacity:1;transform:translate3d(0,-20px,0) scaleY(.9)}to{opacity:0;transform:translate3d(0,2000px,0) scaleY(3)}}.animate__bounceOutDown{animation-name:bounceOutDown}@keyframes bounceOutLeft{20%{opacity:1;transform:translate3d(20px,0,0) scaleX(.9)}to{opacity:0;transform:translate3d(-2000px,0,0) scaleX(2)}}.animate__bounceOutLeft{animation-name:bounceOutLeft}@keyframes bounceOutRight{20%{opacity:1;transform:translate3d(-20px,0,0) scaleX(.9)}to{opacity:0;transform:translate3d(2000px,0,0) scaleX(2)}}.animate__bounceOutRight{animation-name:bounceOutRight}@keyframes bounceOutUp{20%{transform:translate3d(0,-10px,0) scaleY(.985)}40%,45%{opacity:1;transform:translate3d(0,20px,0) scaleY(.9)}to{opacity:0;transform:translate3d(0,-2000px,0) scaleY(3)}}.animate__bounceOutUp{animation-name:bounceOutUp}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.animate__fadeIn{animation-name:fadeIn}@keyframes fadeInDown{0%{opacity:0;transform:translate3d(0,-100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInDown{animation-name:fadeInDown}@keyframes fadeInDownBig{0%{opacity:0;transform:translate3d(0,-2000px,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInDownBig{animation-name:fadeInDownBig}@keyframes fadeInLeft{0%{opacity:0;transform:translate3d(-100%,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInLeft{animation-name:fadeInLeft}@keyframes fadeInLeftBig{0%{opacity:0;transform:translate3d(-2000px,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInLeftBig{animation-name:fadeInLeftBig}@keyframes fadeInRight{0%{opacity:0;transform:translate3d(100%,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInRight{animation-name:fadeInRight}@keyframes fadeInRightBig{0%{opacity:0;transform:translate3d(2000px,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInRightBig{animation-name:fadeInRightBig}@keyframes fadeInUp{0%{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInUp{animation-name:fadeInUp}@keyframes fadeInUpBig{0%{opacity:0;transform:translate3d(0,2000px,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInUpBig{animation-name:fadeInUpBig}@keyframes fadeInTopLeft{0%{opacity:0;transform:translate3d(-100%,-100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInTopLeft{animation-name:fadeInTopLeft}@keyframes fadeInTopRight{0%{opacity:0;transform:translate3d(100%,-100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInTopRight{animation-name:fadeInTopRight}@keyframes fadeInBottomLeft{0%{opacity:0;transform:translate3d(-100%,100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInBottomLeft{animation-name:fadeInBottomLeft}@keyframes fadeInBottomRight{0%{opacity:0;transform:translate3d(100%,100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInBottomRight{animation-name:fadeInBottomRight}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.animate__fadeOut{animation-name:fadeOut}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;transform:translate3d(0,100%,0)}}.animate__fadeOutDown{animation-name:fadeOutDown}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;transform:translate3d(0,2000px,0)}}.animate__fadeOutDownBig{animation-name:fadeOutDownBig}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;transform:translate3d(-100%,0,0)}}.animate__fadeOutLeft{animation-name:fadeOutLeft}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;transform:translate3d(-2000px,0,0)}}.animate__fadeOutLeftBig{animation-name:fadeOutLeftBig}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0)}}.animate__fadeOutRight{animation-name:fadeOutRight}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;transform:translate3d(2000px,0,0)}}.animate__fadeOutRightBig{animation-name:fadeOutRightBig}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;transform:translate3d(0,-100%,0)}}.animate__fadeOutUp{animation-name:fadeOutUp}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;transform:translate3d(0,-2000px,0)}}.animate__fadeOutUpBig{animation-name:fadeOutUpBig}@keyframes fadeOutTopLeft{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(-100%,-100%,0)}}.animate__fadeOutTopLeft{animation-name:fadeOutTopLeft}@keyframes fadeOutTopRight{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(100%,-100%,0)}}.animate__fadeOutTopRight{animation-name:fadeOutTopRight}@keyframes fadeOutBottomRight{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(100%,100%,0)}}.animate__fadeOutBottomRight{animation-name:fadeOutBottomRight}@keyframes fadeOutBottomLeft{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(-100%,100%,0)}}.animate__fadeOutBottomLeft{animation-name:fadeOutBottomLeft}@keyframes flip{0%{transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);animation-timing-function:ease-out}40%{transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);animation-timing-function:ease-out}50%{transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);animation-timing-function:ease-in}80%{transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0deg);animation-timing-function:ease-in}to{transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);animation-timing-function:ease-in}}.animate__animated.animate__flip{-webkit-backface-visibility:visible;backface-visibility:visible;animation-name:flip}@keyframes flipInX{0%{transform:perspective(400px) rotateX(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateX(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateX(10deg);opacity:1}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}.animate__flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;animation-name:flipInX}@keyframes flipInY{0%{transform:perspective(400px) rotateY(90deg);animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateY(-20deg);animation-timing-function:ease-in}60%{transform:perspective(400px) rotateY(10deg);opacity:1}80%{transform:perspective(400px) rotateY(-5deg)}to{transform:perspective(400px)}}.animate__flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;animation-name:flipInY}@keyframes flipOutX{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateX(-20deg);opacity:1}to{transform:perspective(400px) rotateX(90deg);opacity:0}}.animate__flipOutX{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@keyframes flipOutY{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateY(-15deg);opacity:1}to{transform:perspective(400px) rotateY(90deg);opacity:0}}.animate__flipOutY{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*0.75);-webkit-backface-visibility:visible!important;backface-visibility:visible!important;animation-name:flipOutY}@keyframes lightSpeedInRight{0%{transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{transform:skewX(20deg);opacity:1}80%{transform:skewX(-5deg)}to{transform:translateZ(0)}}.animate__lightSpeedInRight{animation-name:lightSpeedInRight;animation-timing-function:ease-out}@keyframes lightSpeedInLeft{0%{transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{transform:skewX(-20deg);opacity:1}80%{transform:skewX(5deg)}to{transform:translateZ(0)}}.animate__lightSpeedInLeft{animation-name:lightSpeedInLeft;animation-timing-function:ease-out}@keyframes lightSpeedOutRight{0%{opacity:1}to{transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.animate__lightSpeedOutRight{animation-name:lightSpeedOutRight;animation-timing-function:ease-in}@keyframes lightSpeedOutLeft{0%{opacity:1}to{transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}.animate__lightSpeedOutLeft{animation-name:lightSpeedOutLeft;animation-timing-function:ease-in}@keyframes rotateIn{0%{transform:rotate(-200deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateIn{animation-name:rotateIn;transform-origin:center}@keyframes rotateInDownLeft{0%{transform:rotate(-45deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInDownLeft{animation-name:rotateInDownLeft;transform-origin:left bottom}@keyframes rotateInDownRight{0%{transform:rotate(45deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInDownRight{animation-name:rotateInDownRight;transform-origin:right bottom}@keyframes rotateInUpLeft{0%{transform:rotate(45deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInUpLeft{animation-name:rotateInUpLeft;transform-origin:left bottom}@keyframes rotateInUpRight{0%{transform:rotate(-90deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInUpRight{animation-name:rotateInUpRight;transform-origin:right bottom}@keyframes rotateOut{0%{opacity:1}to{transform:rotate(200deg);opacity:0}}.animate__rotateOut{animation-name:rotateOut;transform-origin:center}@keyframes rotateOutDownLeft{0%{opacity:1}to{transform:rotate(45deg);opacity:0}}.animate__rotateOutDownLeft{animation-name:rotateOutDownLeft;transform-origin:left bottom}@keyframes rotateOutDownRight{0%{opacity:1}to{transform:rotate(-45deg);opacity:0}}.animate__rotateOutDownRight{animation-name:rotateOutDownRight;transform-origin:right bottom}@keyframes rotateOutUpLeft{0%{opacity:1}to{transform:rotate(-45deg);opacity:0}}.animate__rotateOutUpLeft{animation-name:rotateOutUpLeft;transform-origin:left bottom}@keyframes rotateOutUpRight{0%{opacity:1}to{transform:rotate(90deg);opacity:0}}.animate__rotateOutUpRight{animation-name:rotateOutUpRight;transform-origin:right bottom}@keyframes hinge{0%{animation-timing-function:ease-in-out}20%,60%{transform:rotate(80deg);animation-timing-function:ease-in-out}40%,80%{transform:rotate(60deg);animation-timing-function:ease-in-out;opacity:1}to{transform:translate3d(0,700px,0);opacity:0}}.animate__hinge{animation-duration:2s;animation-duration:calc(var(--animate-duration)*2);animation-name:hinge;transform-origin:top left}@keyframes jackInTheBox{0%{opacity:0;transform:scale(.1) rotate(30deg);transform-origin:center bottom}50%{transform:rotate(-10deg)}70%{transform:rotate(3deg)}to{opacity:1;transform:scale(1)}}.animate__jackInTheBox{animation-name:jackInTheBox}@keyframes rollIn{0%{opacity:0;transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;transform:translateZ(0)}}.animate__rollIn{animation-name:rollIn}@keyframes rollOut{0%{opacity:1}to{opacity:0;transform:translate3d(100%,0,0) rotate(120deg)}}.animate__rollOut{animation-name:rollOut}@keyframes zoomIn{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}.animate__zoomIn{animation-name:zoomIn}@keyframes zoomInDown{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInDown{animation-name:zoomInDown}@keyframes zoomInLeft{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(-1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInLeft{animation-name:zoomInLeft}@keyframes zoomInRight{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(1000px,0,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-10px,0,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInRight{animation-name:zoomInRight}@keyframes zoomInUp{0%{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,1000px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}60%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomInUp{animation-name:zoomInUp}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}.animate__zoomOut{animation-name:zoomOut}@keyframes zoomOutDown{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,-60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,2000px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutDown{animation-name:zoomOutDown;transform-origin:center bottom}@keyframes zoomOutLeft{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(-2000px,0,0)}}.animate__zoomOutLeft{animation-name:zoomOutLeft;transform-origin:left center}@keyframes zoomOutRight{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(-42px,0,0)}to{opacity:0;transform:scale(.1) translate3d(2000px,0,0)}}.animate__zoomOutRight{animation-name:zoomOutRight;transform-origin:right center}@keyframes zoomOutUp{40%{opacity:1;transform:scale3d(.475,.475,.475) translate3d(0,60px,0);animation-timing-function:cubic-bezier(.55,.055,.675,.19)}to{opacity:0;transform:scale3d(.1,.1,.1) translate3d(0,-2000px,0);animation-timing-function:cubic-bezier(.175,.885,.32,1)}}.animate__zoomOutUp{animation-name:zoomOutUp;transform-origin:center bottom}@keyframes slideInDown{0%{transform:translate3d(0,-100%,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInDown{animation-name:slideInDown}@keyframes slideInLeft{0%{transform:translate3d(-100%,0,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInLeft{animation-name:slideInLeft}@keyframes slideInRight{0%{transform:translate3d(100%,0,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInRight{animation-name:slideInRight}@keyframes slideInUp{0%{transform:translate3d(0,100%,0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInUp{animation-name:slideInUp}@keyframes slideOutDown{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,100%,0)}}.animate__slideOutDown{animation-name:slideOutDown}@keyframes slideOutLeft{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(-100%,0,0)}}.animate__slideOutLeft{animation-name:slideOutLeft}@keyframes slideOutRight{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(100%,0,0)}}.animate__slideOutRight{animation-name:slideOutRight}@keyframes slideOutUp{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,-100%,0)}}.animate__slideOutUp{animation-name:slideOutUp}
/*
  $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;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}
.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  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;-webkit-user-select:none;-moz-user-select:none;user-select:none;cursor:pointer;z-index:1}.shg-lightbox .shg-lightbox-image-container{padding:25px}.shg-lightbox .shg-lightbox-image{margin:auto;max-height:90vh;max-width:100%}.shg-lightbox .shg-lightbox-close:hover,.shg-lightbox .shg-lightbox-close:focus{color:#a2a2a2;text-decoration:none;cursor:pointer}.shg-lightbox .shg-lightbox-nav{cursor:pointer;position:absolute;top:50%;width:35px;height:100px;background-size:contain;background-repeat:no-repeat;background-position:center;transform:translate(0%, -50%);z-index:1}.shg-lightbox .shg-lightbox-nav.hidden{display:none !important}.shg-lightbox .shg-lightbox-nav.shg-nav-left{left:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==)}.shg-lightbox .shg-lightbox-nav.shg-nav-right{right:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+)}@media screen and (min-width: 769px){.shg-lightbox .shg-lightbox-image-container{padding:50px}}.shogun-lazyload:not([src]),.shogun-lazyloading:not([src]){opacity:0}.shogun-lazyloaded{opacity:1;transition:opacity 300ms}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{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}
