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

.shg-box > .shg-box-content {
  z-index: 4;
  position: relative;
  /**
   * This is part of an IE11 fallback to avoid flex introducing
   * huge amount of weird space on the bottom on the section element.
   */
  min-height: 1px;
}

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

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

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

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

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

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

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

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

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

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

#s-04566b39-5fd6-42a6-bbe2-6824e66ad9b2 {
  min-height: 50px;
}








#s-04566b39-5fd6-42a6-bbe2-6824e66ad9b2 > .shg-box-overlay {
  background-color: rgba(255, 108, 108, 1);
  opacity: 0;
}#s-04566b39-5fd6-42a6-bbe2-6824e66ad9b2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

.shg-image-content-wrapper {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content>div {
  width: 100%;
}

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

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

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

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}
#s-2158d9d3-9c20-4389-87bd-2f80b754c405 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
min-height: 750px;
max-width: 3000px;
aspect-ratio: 3000/1250;
text-align: center;
}
@media (max-width: 767px){#s-2158d9d3-9c20-4389-87bd-2f80b754c405 {
  padding-left: 0%;
}
}




  #s-2158d9d3-9c20-4389-87bd-2f80b754c405 img.shogun-image,
  #s-2158d9d3-9c20-4389-87bd-2f80b754c405 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2158d9d3-9c20-4389-87bd-2f80b754c405 {
    width: 100%;
    height: auto;
  }

  #s-2158d9d3-9c20-4389-87bd-2f80b754c405 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-2158d9d3-9c20-4389-87bd-2f80b754c405 .shogun-image-content {
  
    align-items: center;
  
}

.s-2158d9d3-9c20-4389-87bd-2f80b754c405.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2158d9d3-9c20-4389-87bd-2f80b754c405.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2158d9d3-9c20-4389-87bd-2f80b754c405.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2158d9d3-9c20-4389-87bd-2f80b754c405 {
      --shg-aspect-ratio: calc(3600/1500); 
    }

    .s-2158d9d3-9c20-4389-87bd-2f80b754c405.shogun-image-container {
      position: relative;
    }

    .s-2158d9d3-9c20-4389-87bd-2f80b754c405.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2158d9d3-9c20-4389-87bd-2f80b754c405.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2158d9d3-9c20-4389-87bd-2f80b754c405 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-2158d9d3-9c20-4389-87bd-2f80b754c405 img.shogun-image,
  #s-2158d9d3-9c20-4389-87bd-2f80b754c405 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2158d9d3-9c20-4389-87bd-2f80b754c405 {
    width: 100%;
    height: auto;
  }

  #s-2158d9d3-9c20-4389-87bd-2f80b754c405 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-2158d9d3-9c20-4389-87bd-2f80b754c405 .shogun-image-content {
  
    align-items: center;
  
}

.s-2158d9d3-9c20-4389-87bd-2f80b754c405.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2158d9d3-9c20-4389-87bd-2f80b754c405.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2158d9d3-9c20-4389-87bd-2f80b754c405.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2158d9d3-9c20-4389-87bd-2f80b754c405 {
      --shg-aspect-ratio: calc(3600/1500); 
    }

    .s-2158d9d3-9c20-4389-87bd-2f80b754c405.shogun-image-container {
      position: relative;
    }

    .s-2158d9d3-9c20-4389-87bd-2f80b754c405.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2158d9d3-9c20-4389-87bd-2f80b754c405.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2158d9d3-9c20-4389-87bd-2f80b754c405 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-2158d9d3-9c20-4389-87bd-2f80b754c405 img.shogun-image,
  #s-2158d9d3-9c20-4389-87bd-2f80b754c405 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2158d9d3-9c20-4389-87bd-2f80b754c405 {
    width: 100%;
    height: auto;
  }

  #s-2158d9d3-9c20-4389-87bd-2f80b754c405 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-2158d9d3-9c20-4389-87bd-2f80b754c405 .shogun-image-content {
  
    align-items: center;
  
}

.s-2158d9d3-9c20-4389-87bd-2f80b754c405.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2158d9d3-9c20-4389-87bd-2f80b754c405.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2158d9d3-9c20-4389-87bd-2f80b754c405.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2158d9d3-9c20-4389-87bd-2f80b754c405 {
      --shg-aspect-ratio: calc(3600/1500); 
    }

    .s-2158d9d3-9c20-4389-87bd-2f80b754c405.shogun-image-container {
      position: relative;
    }

    .s-2158d9d3-9c20-4389-87bd-2f80b754c405.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2158d9d3-9c20-4389-87bd-2f80b754c405.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2158d9d3-9c20-4389-87bd-2f80b754c405 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-2158d9d3-9c20-4389-87bd-2f80b754c405 img.shogun-image,
  #s-2158d9d3-9c20-4389-87bd-2f80b754c405 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2158d9d3-9c20-4389-87bd-2f80b754c405 {
    width: 100%;
    height: auto;
  }

  #s-2158d9d3-9c20-4389-87bd-2f80b754c405 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-2158d9d3-9c20-4389-87bd-2f80b754c405 .shogun-image-content {
  
    align-items: center;
  
}

.s-2158d9d3-9c20-4389-87bd-2f80b754c405.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2158d9d3-9c20-4389-87bd-2f80b754c405.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2158d9d3-9c20-4389-87bd-2f80b754c405.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2158d9d3-9c20-4389-87bd-2f80b754c405 {
      --shg-aspect-ratio: calc(3600/1500); 
    }

    .s-2158d9d3-9c20-4389-87bd-2f80b754c405.shogun-image-container {
      position: relative;
    }

    .s-2158d9d3-9c20-4389-87bd-2f80b754c405.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2158d9d3-9c20-4389-87bd-2f80b754c405.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2158d9d3-9c20-4389-87bd-2f80b754c405 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-2158d9d3-9c20-4389-87bd-2f80b754c405 img.shogun-image,
  #s-2158d9d3-9c20-4389-87bd-2f80b754c405 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2158d9d3-9c20-4389-87bd-2f80b754c405 {
    width: 100%;
    height: auto;
  }

  #s-2158d9d3-9c20-4389-87bd-2f80b754c405 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }




.s-2158d9d3-9c20-4389-87bd-2f80b754c405 .shogun-image-content {
  
    align-items: center;
  
}

.s-2158d9d3-9c20-4389-87bd-2f80b754c405.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2158d9d3-9c20-4389-87bd-2f80b754c405.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2158d9d3-9c20-4389-87bd-2f80b754c405.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2158d9d3-9c20-4389-87bd-2f80b754c405 {
      --shg-aspect-ratio: calc(3600/1500); 
    }

    .s-2158d9d3-9c20-4389-87bd-2f80b754c405.shogun-image-container {
      position: relative;
    }

    .s-2158d9d3-9c20-4389-87bd-2f80b754c405.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2158d9d3-9c20-4389-87bd-2f80b754c405.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2158d9d3-9c20-4389-87bd-2f80b754c405 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: ;
  font-family: ;
  text-transform: none;
  font-weight: ;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

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

#s-d1a2ce0a-b92a-4a86-a058-845d99743fa9 {
  padding-top: 1px;
padding-left: 3%;
padding-bottom: 1px;
padding-right: 0%;
text-align: left;
}
@media (min-width: 1200px){#s-d1a2ce0a-b92a-4a86-a058-845d99743fa9 {
  padding-top: 350px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d1a2ce0a-b92a-4a86-a058-845d99743fa9 {
  padding-top: 350px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-d1a2ce0a-b92a-4a86-a058-845d99743fa9 {
  padding-top: 350px;
}
}@media (max-width: 767px){#s-d1a2ce0a-b92a-4a86-a058-845d99743fa9 {
  padding-top: 350px;
padding-bottom: 1px;
}
}
#s-d1a2ce0a-b92a-4a86-a058-845d99743fa9 .shogun-heading-component h1 {
  color: rgba(7, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 45px;
  line-height: 1em;
  
  text-align: left;
}


#s-d1a2ce0a-b92a-4a86-a058-845d99743fa9 .shogun-heading-component h1 a {
  color: rgba(7, 0, 0, 1);
}

@media (min-width: 1200px){#s-d1a2ce0a-b92a-4a86-a058-845d99743fa9 .shogun-heading-component h1 {
  color: rgba(7, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 78px;
  line-height: 1em;
  
  text-align: left;
}


#s-d1a2ce0a-b92a-4a86-a058-845d99743fa9 .shogun-heading-component h1 a {
  color: rgba(7, 0, 0, 1);
}

}@media (min-width: 992px) and (max-width: 1199px){#s-d1a2ce0a-b92a-4a86-a058-845d99743fa9 .shogun-heading-component h1 {
  color: rgba(7, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 72px;
  line-height: 1em;
  
  text-align: left;
}


#s-d1a2ce0a-b92a-4a86-a058-845d99743fa9 .shogun-heading-component h1 a {
  color: rgba(7, 0, 0, 1);
}

}@media (min-width: 768px) and (max-width: 991px){#s-d1a2ce0a-b92a-4a86-a058-845d99743fa9 .shogun-heading-component h1 {
  color: rgba(7, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 55px;
  line-height: 1em;
  
  text-align: left;
}


#s-d1a2ce0a-b92a-4a86-a058-845d99743fa9 .shogun-heading-component h1 a {
  color: rgba(7, 0, 0, 1);
}

}
#s-ce5972ed-81f1-4bab-94ad-1b4cd6819b17 {
  margin-top: 15px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 10px;
padding-left: 40px;
padding-bottom: 10px;
padding-right: 0px;
text-align: left;
}
@media (min-width: 1200px){#s-ce5972ed-81f1-4bab-94ad-1b4cd6819b17 {
  margin-left: 48px;
padding-left: 0px;
padding-right: 870px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ce5972ed-81f1-4bab-94ad-1b4cd6819b17 {
  margin-left: 37px;
padding-left: 0px;
padding-right: 800px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-ce5972ed-81f1-4bab-94ad-1b4cd6819b17 {
  padding-left: 24px;
padding-right: 370px;
}
}@media (max-width: 767px){#s-ce5972ed-81f1-4bab-94ad-1b4cd6819b17 {
  padding-top: 0px;
padding-left: 20px;
padding-bottom: 0px;
padding-right: 120px;
}
}
#s-ce5972ed-81f1-4bab-94ad-1b4cd6819b17 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 1200px){#s-ce5972ed-81f1-4bab-94ad-1b4cd6819b17 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 19px;
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-ce5972ed-81f1-4bab-94ad-1b4cd6819b17 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-ce5972ed-81f1-4bab-94ad-1b4cd6819b17 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}@media (max-width: 767px){#s-ce5972ed-81f1-4bab-94ad-1b4cd6819b17 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


}
#s-7c99a9ad-e78e-4193-a46d-2179c0f7659e {
  margin-top: 2px;
margin-bottom: 2px;
padding-bottom: 0px;
min-height: 50px;
}
@media (max-width: 767px){#s-7c99a9ad-e78e-4193-a46d-2179c0f7659e {
  margin-top: 0px;
margin-bottom: 0px;
}
}







#s-7c99a9ad-e78e-4193-a46d-2179c0f7659e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7c99a9ad-e78e-4193-a46d-2179c0f7659e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

#s-65ae638d-460d-493f-9309-e945a3249fe7 {
  margin-top: 50px;
margin-left: 0px;
margin-right: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 35px;
background-color: #252525;
text-align: center;
text-decoration: none;
}
#s-65ae638d-460d-493f-9309-e945a3249fe7:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-65ae638d-460d-493f-9309-e945a3249fe7:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 992px) and (max-width: 1199px){#s-65ae638d-460d-493f-9309-e945a3249fe7 {
  margin-right: 13px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-65ae638d-460d-493f-9309-e945a3249fe7 {
  margin-right: 30px;
}
}@media (max-width: 767px){#s-65ae638d-460d-493f-9309-e945a3249fe7 {
  margin-bottom: 17px;
}
}

  #s-65ae638d-460d-493f-9309-e945a3249fe7-root {
    text-align: center;
  }


#s-65ae638d-460d-493f-9309-e945a3249fe7.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-65ae638d-460d-493f-9309-e945a3249fe7-root {
    text-align: center;
  }


#s-65ae638d-460d-493f-9309-e945a3249fe7.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-65ae638d-460d-493f-9309-e945a3249fe7-root {
    text-align: center;
  }


#s-65ae638d-460d-493f-9309-e945a3249fe7.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-65ae638d-460d-493f-9309-e945a3249fe7-root {
    text-align: center;
  }


#s-65ae638d-460d-493f-9309-e945a3249fe7.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-65ae638d-460d-493f-9309-e945a3249fe7-root {
    text-align: center;
  }


#s-65ae638d-460d-493f-9309-e945a3249fe7.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-bf1f724e-21da-40c5-a175-e2b968ef9b07 {
  margin-top: 20px;
margin-left: 0px;
margin-bottom: 20px;
margin-right: 0px;
padding-top: 20px;
padding-left: 30px;
padding-bottom: 40px;
padding-right: 30px;
text-align: center;
}
@media (min-width: 1200px){#s-bf1f724e-21da-40c5-a175-e2b968ef9b07 {
  margin-top: 70px;
margin-bottom: 70px;
padding-top: 0px;
padding-left: 30px;
padding-bottom: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-bf1f724e-21da-40c5-a175-e2b968ef9b07 {
  padding-top: 40px;
padding-left: 100px;
padding-right: 100px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-bf1f724e-21da-40c5-a175-e2b968ef9b07 {
  margin-bottom: 0px;
padding-left: 30px;
}
}@media (max-width: 767px){#s-bf1f724e-21da-40c5-a175-e2b968ef9b07 {
  margin-top: 35px;
margin-bottom: 35px;
padding-top: 10px;
padding-bottom: 10px;
}
}
#s-bf1f724e-21da-40c5-a175-e2b968ef9b07 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 21px;
  
  
  
}


@media (min-width: 1200px){#s-bf1f724e-21da-40c5-a175-e2b968ef9b07 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 21px;
  line-height: 1.5em;
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-bf1f724e-21da-40c5-a175-e2b968ef9b07 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 21px;
  line-height: 1.5em;
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-bf1f724e-21da-40c5-a175-e2b968ef9b07 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 21px;
  line-height: 1.5em;
  
  
}


}@media (max-width: 767px){#s-bf1f724e-21da-40c5-a175-e2b968ef9b07 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 17px;
  line-height: 1.5em;
  
  
}


}
#s-b2b7bce7-c216-4721-bec8-a0cfcf768d97 {
  margin-top: 20px;
margin-bottom: 20px;
padding-left: 5%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 992px) and (max-width: 1199px){#s-b2b7bce7-c216-4721-bec8-a0cfcf768d97 {
  margin-top: 10px;
margin-bottom: 10px;
}
}@media (max-width: 767px){#s-b2b7bce7-c216-4721-bec8-a0cfcf768d97 {
  margin-top: 0px;
margin-bottom: 0px;
}
}







#s-b2b7bce7-c216-4721-bec8-a0cfcf768d97 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b2b7bce7-c216-4721-bec8-a0cfcf768d97.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

#s-39c5cc03-8224-4770-be50-7c643557bf02 {
  margin-top: 0px;
margin-bottom: 0px;
padding-left: 0px;
padding-right: 0px;
}

@media (min-width: 0px) {
[id="s-39c5cc03-8224-4770-be50-7c643557bf02"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 768px) {
[id="s-39c5cc03-8224-4770-be50-7c643557bf02"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-39c5cc03-8224-4770-be50-7c643557bf02"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-39c5cc03-8224-4770-be50-7c643557bf02"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content > div {
  width: 100%;
}

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

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

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

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

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

#s-d78f3cdc-6927-45d6-a715-9e918f0acb48 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
max-width: 1200px;
aspect-ratio: 1200/1500;
text-align: center;
}





  #s-d78f3cdc-6927-45d6-a715-9e918f0acb48 img.shogun-image,
  #s-d78f3cdc-6927-45d6-a715-9e918f0acb48 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d78f3cdc-6927-45d6-a715-9e918f0acb48 {
    width: 100%;
    height: auto;
  }



  #s-d78f3cdc-6927-45d6-a715-9e918f0acb48 img.shogun-image {
    

    
    
    
  }


#s-d78f3cdc-6927-45d6-a715-9e918f0acb48 .shogun-image-content {
  
    align-items: center;
  
}

#s-507a7cab-887d-413a-80a1-771e4e1ab4e4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-507a7cab-887d-413a-80a1-771e4e1ab4e4 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


@media (min-width: 1200px){#s-507a7cab-887d-413a-80a1-771e4e1ab4e4 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-507a7cab-887d-413a-80a1-771e4e1ab4e4 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}@media (max-width: 767px){#s-507a7cab-887d-413a-80a1-771e4e1ab4e4 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  
  
}


}
#s-43a33a84-61c2-45c0-be2c-397f45448d9c {
  margin-bottom: 0px;
max-width: 1200px;
aspect-ratio: 1200/1500;
text-align: center;
}





  #s-43a33a84-61c2-45c0-be2c-397f45448d9c img.shogun-image,
  #s-43a33a84-61c2-45c0-be2c-397f45448d9c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-43a33a84-61c2-45c0-be2c-397f45448d9c {
    width: 100%;
    height: auto;
  }



  #s-43a33a84-61c2-45c0-be2c-397f45448d9c img.shogun-image {
    

    
    
    
  }


#s-43a33a84-61c2-45c0-be2c-397f45448d9c .shogun-image-content {
  
    align-items: center;
  
}

#s-16168708-4ac3-47ab-b482-ab76f69ece2c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-16168708-4ac3-47ab-b482-ab76f69ece2c .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


@media (min-width: 1200px){#s-16168708-4ac3-47ab-b482-ab76f69ece2c .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-16168708-4ac3-47ab-b482-ab76f69ece2c .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}@media (max-width: 767px){#s-16168708-4ac3-47ab-b482-ab76f69ece2c .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  
  
}


}
#s-9856188e-7492-481d-898b-e8a27d9ca2ff {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
max-width: 1200px;
aspect-ratio: 1200/1500;
text-align: center;
}





  #s-9856188e-7492-481d-898b-e8a27d9ca2ff img.shogun-image,
  #s-9856188e-7492-481d-898b-e8a27d9ca2ff .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9856188e-7492-481d-898b-e8a27d9ca2ff {
    width: 100%;
    height: auto;
  }



  #s-9856188e-7492-481d-898b-e8a27d9ca2ff img.shogun-image {
    

    
    
    
  }


#s-9856188e-7492-481d-898b-e8a27d9ca2ff .shogun-image-content {
  
    align-items: center;
  
}

#s-8c2f7ef0-f4be-49be-9846-14aaec823040 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8c2f7ef0-f4be-49be-9846-14aaec823040 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}


@media (min-width: 1200px){#s-8c2f7ef0-f4be-49be-9846-14aaec823040 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-8c2f7ef0-f4be-49be-9846-14aaec823040 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


}@media (max-width: 767px){#s-8c2f7ef0-f4be-49be-9846-14aaec823040 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  
  
}


}
.shg-hr-wrapper {
  padding: 30px 0;
}

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

#s-8aeaba2a-630d-40db-988d-cff22aeb0225 {
  margin-top: 14px;
margin-left: 30px;
margin-right: 30px;
padding-left: 0px;
}

#s-8aeaba2a-630d-40db-988d-cff22aeb0225 hr {
  border-top: 1px solid rgba(219, 217, 217, 1);
}

#s-ce2b7022-c35f-4d77-b72a-6d634f0a5cb4 {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-top: 20px;
padding-left: 30px;
padding-bottom: 40px;
padding-right: 30px;
text-align: center;
}
@media (min-width: 1200px){#s-ce2b7022-c35f-4d77-b72a-6d634f0a5cb4 {
  padding-bottom: 90px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ce2b7022-c35f-4d77-b72a-6d634f0a5cb4 {
  padding-top: 40px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-ce2b7022-c35f-4d77-b72a-6d634f0a5cb4 {
  padding-left: 30px;
}
}@media (max-width: 767px){#s-ce2b7022-c35f-4d77-b72a-6d634f0a5cb4 {
  padding-top: 10px;
padding-bottom: 10px;
}
}
#s-ce2b7022-c35f-4d77-b72a-6d634f0a5cb4 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 21px;
  
  
  
}


@media (min-width: 1200px){#s-ce2b7022-c35f-4d77-b72a-6d634f0a5cb4 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 21px;
  line-height: 1.5em;
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-ce2b7022-c35f-4d77-b72a-6d634f0a5cb4 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 21px;
  line-height: 1.5em;
  
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-ce2b7022-c35f-4d77-b72a-6d634f0a5cb4 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 21px;
  line-height: 1.5em;
  
  
}


}@media (max-width: 767px){#s-ce2b7022-c35f-4d77-b72a-6d634f0a5cb4 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 17px;
  line-height: 1.5em;
  
  
}


}
#s-0d4c6cb8-6adc-4108-a0f0-be0476c2af31 {
  margin-top: 11px;
margin-left: 43px;
margin-bottom: 0px;
margin-right: 34px;
padding-top: 10px;
padding-bottom: 10px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-style: solid;
text-align: center;
}
@media (min-width: 1200px){#s-0d4c6cb8-6adc-4108-a0f0-be0476c2af31 {
  margin-left: 52px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0d4c6cb8-6adc-4108-a0f0-be0476c2af31 {
  text-align: left;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0d4c6cb8-6adc-4108-a0f0-be0476c2af31 {
  margin-left: 22px;
}
}@media (max-width: 767px){#s-0d4c6cb8-6adc-4108-a0f0-be0476c2af31 {
  margin-left: 19px;
}
}
#s-0d4c6cb8-6adc-4108-a0f0-be0476c2af31 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 33px;
  
  
  text-align: left;
}


#s-0d4c6cb8-6adc-4108-a0f0-be0476c2af31 .shogun-heading-component h1 a {
  color: ;
}


#s-afaf1a9d-44e0-45c9-be77-90f73131e05f {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-afaf1a9d-44e0-45c9-be77-90f73131e05f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-afaf1a9d-44e0-45c9-be77-90f73131e05f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-91ea3138-5a27-4c49-b3ec-da4f780ca97e {
  margin-top: 10px;
margin-left: 4%;
margin-bottom: 10px;
margin-right: 4%;
}

@media (min-width: 0px) {
[id="s-91ea3138-5a27-4c49-b3ec-da4f780ca97e"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-91ea3138-5a27-4c49-b3ec-da4f780ca97e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-91ea3138-5a27-4c49-b3ec-da4f780ca97e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-91ea3138-5a27-4c49-b3ec-da4f780ca97e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-9101535b-16fc-442d-a19c-096df0a677a2 {
  max-width: 1200px;
aspect-ratio: 1200/1500;
text-align: center;
}





  #s-9101535b-16fc-442d-a19c-096df0a677a2 img.shogun-image,
  #s-9101535b-16fc-442d-a19c-096df0a677a2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9101535b-16fc-442d-a19c-096df0a677a2 {
    width: 100%;
    height: auto;
  }

  #s-9101535b-16fc-442d-a19c-096df0a677a2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image {
    
    
  }


.s-9101535b-16fc-442d-a19c-096df0a677a2 .shogun-image-content {
  
    align-items: center;
  
}

.s-9101535b-16fc-442d-a19c-096df0a677a2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9101535b-16fc-442d-a19c-096df0a677a2 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image-container {
      position: relative;
    }

    .s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9101535b-16fc-442d-a19c-096df0a677a2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-9101535b-16fc-442d-a19c-096df0a677a2 img.shogun-image,
  #s-9101535b-16fc-442d-a19c-096df0a677a2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9101535b-16fc-442d-a19c-096df0a677a2 {
    width: 100%;
    height: auto;
  }

  #s-9101535b-16fc-442d-a19c-096df0a677a2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image {
    
    
  }


.s-9101535b-16fc-442d-a19c-096df0a677a2 .shogun-image-content {
  
    align-items: center;
  
}

.s-9101535b-16fc-442d-a19c-096df0a677a2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9101535b-16fc-442d-a19c-096df0a677a2 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image-container {
      position: relative;
    }

    .s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9101535b-16fc-442d-a19c-096df0a677a2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-9101535b-16fc-442d-a19c-096df0a677a2 img.shogun-image,
  #s-9101535b-16fc-442d-a19c-096df0a677a2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9101535b-16fc-442d-a19c-096df0a677a2 {
    width: 100%;
    height: auto;
  }

  #s-9101535b-16fc-442d-a19c-096df0a677a2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image {
    
    
  }


.s-9101535b-16fc-442d-a19c-096df0a677a2 .shogun-image-content {
  
    align-items: center;
  
}

.s-9101535b-16fc-442d-a19c-096df0a677a2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9101535b-16fc-442d-a19c-096df0a677a2 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image-container {
      position: relative;
    }

    .s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9101535b-16fc-442d-a19c-096df0a677a2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-9101535b-16fc-442d-a19c-096df0a677a2 img.shogun-image,
  #s-9101535b-16fc-442d-a19c-096df0a677a2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9101535b-16fc-442d-a19c-096df0a677a2 {
    width: 100%;
    height: auto;
  }

  #s-9101535b-16fc-442d-a19c-096df0a677a2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image {
    
    
  }


.s-9101535b-16fc-442d-a19c-096df0a677a2 .shogun-image-content {
  
    align-items: center;
  
}

.s-9101535b-16fc-442d-a19c-096df0a677a2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9101535b-16fc-442d-a19c-096df0a677a2 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image-container {
      position: relative;
    }

    .s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9101535b-16fc-442d-a19c-096df0a677a2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-9101535b-16fc-442d-a19c-096df0a677a2 img.shogun-image,
  #s-9101535b-16fc-442d-a19c-096df0a677a2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9101535b-16fc-442d-a19c-096df0a677a2 {
    width: 100%;
    height: auto;
  }

  #s-9101535b-16fc-442d-a19c-096df0a677a2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image {
    
    
  }


.s-9101535b-16fc-442d-a19c-096df0a677a2 .shogun-image-content {
  
    align-items: center;
  
}

.s-9101535b-16fc-442d-a19c-096df0a677a2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-9101535b-16fc-442d-a19c-096df0a677a2 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image-container {
      position: relative;
    }

    .s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-9101535b-16fc-442d-a19c-096df0a677a2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-9101535b-16fc-442d-a19c-096df0a677a2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-d7793841-24bf-44c3-83ee-d229bb844fdc {
  min-height: 50px;
}








#s-d7793841-24bf-44c3-83ee-d229bb844fdc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d7793841-24bf-44c3-83ee-d229bb844fdc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-22df4e03-510c-40b4-83d7-5b0ac50644b0 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-22df4e03-510c-40b4-83d7-5b0ac50644b0 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-22df4e03-510c-40b4-83d7-5b0ac50644b0 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 10px;
  
  
  text-align: left;
}


}
#s-cd5e0934-8a6e-43d2-97e5-97dee43092be {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cd5e0934-8a6e-43d2-97e5-97dee43092be .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}



#s-b97be828-b58d-4f50-b511-f4de89ade5d2 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 40px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-b97be828-b58d-4f50-b511-f4de89ade5d2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b97be828-b58d-4f50-b511-f4de89ade5d2:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-b97be828-b58d-4f50-b511-f4de89ade5d2-root {
    text-align: left;
  }


#s-b97be828-b58d-4f50-b511-f4de89ade5d2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b97be828-b58d-4f50-b511-f4de89ade5d2-root {
    text-align: left;
  }


#s-b97be828-b58d-4f50-b511-f4de89ade5d2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b97be828-b58d-4f50-b511-f4de89ade5d2-root {
    text-align: left;
  }


#s-b97be828-b58d-4f50-b511-f4de89ade5d2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b97be828-b58d-4f50-b511-f4de89ade5d2-root {
    text-align: left;
  }


#s-b97be828-b58d-4f50-b511-f4de89ade5d2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b97be828-b58d-4f50-b511-f4de89ade5d2-root {
    text-align: left;
  }


#s-b97be828-b58d-4f50-b511-f4de89ade5d2.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  inline-block ;
}
}
#s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 {
  max-width: 1200px;
aspect-ratio: 1200/1500;
text-align: center;
}





  #s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 img.shogun-image,
  #s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 {
    width: 100%;
    height: auto;
  }

  #s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image {
    
    
  }


.s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 .shogun-image-content {
  
    align-items: center;
  
}

.s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image-container {
      position: relative;
    }

    .s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 img.shogun-image,
  #s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 {
    width: 100%;
    height: auto;
  }

  #s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image {
    
    
  }


.s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 .shogun-image-content {
  
    align-items: center;
  
}

.s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image-container {
      position: relative;
    }

    .s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 img.shogun-image,
  #s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 {
    width: 100%;
    height: auto;
  }

  #s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image {
    
    
  }


.s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 .shogun-image-content {
  
    align-items: center;
  
}

.s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image-container {
      position: relative;
    }

    .s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 img.shogun-image,
  #s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 {
    width: 100%;
    height: auto;
  }

  #s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image {
    
    
  }


.s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 .shogun-image-content {
  
    align-items: center;
  
}

.s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image-container {
      position: relative;
    }

    .s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 img.shogun-image,
  #s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 {
    width: 100%;
    height: auto;
  }

  #s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image {
    
    
  }


.s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 .shogun-image-content {
  
    align-items: center;
  
}

.s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image-container {
      position: relative;
    }

    .s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-7a6bd63e-1c47-4e70-911e-0acb73c333a0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-7a6bd63e-1c47-4e70-911e-0acb73c333a0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-4434d0a3-07a3-45f9-a554-b864dc7ef074 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-4434d0a3-07a3-45f9-a554-b864dc7ef074 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-4434d0a3-07a3-45f9-a554-b864dc7ef074 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 10px;
  
  
  text-align: left;
}


}
#s-22facf6c-4959-493e-9fbc-ce9d1e255832 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-22facf6c-4959-493e-9fbc-ce9d1e255832 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}



#s-d3797598-9ad3-44cc-a390-5773b5657eac {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 40px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-d3797598-9ad3-44cc-a390-5773b5657eac:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d3797598-9ad3-44cc-a390-5773b5657eac:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-d3797598-9ad3-44cc-a390-5773b5657eac-root {
    text-align: left;
  }


#s-d3797598-9ad3-44cc-a390-5773b5657eac.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d3797598-9ad3-44cc-a390-5773b5657eac-root {
    text-align: left;
  }


#s-d3797598-9ad3-44cc-a390-5773b5657eac.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d3797598-9ad3-44cc-a390-5773b5657eac-root {
    text-align: left;
  }


#s-d3797598-9ad3-44cc-a390-5773b5657eac.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d3797598-9ad3-44cc-a390-5773b5657eac-root {
    text-align: left;
  }


#s-d3797598-9ad3-44cc-a390-5773b5657eac.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d3797598-9ad3-44cc-a390-5773b5657eac-root {
    text-align: left;
  }


#s-d3797598-9ad3-44cc-a390-5773b5657eac.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  inline-block ;
}
}
#s-c7ae160d-2af1-46ad-90ac-09da9f675947 {
  max-width: 1200px;
aspect-ratio: 1200/1500;
text-align: center;
}





  #s-c7ae160d-2af1-46ad-90ac-09da9f675947 img.shogun-image,
  #s-c7ae160d-2af1-46ad-90ac-09da9f675947 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c7ae160d-2af1-46ad-90ac-09da9f675947 {
    width: 100%;
    height: auto;
  }

  #s-c7ae160d-2af1-46ad-90ac-09da9f675947 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image {
    
    
  }


.s-c7ae160d-2af1-46ad-90ac-09da9f675947 .shogun-image-content {
  
    align-items: center;
  
}

.s-c7ae160d-2af1-46ad-90ac-09da9f675947.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c7ae160d-2af1-46ad-90ac-09da9f675947 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image-container {
      position: relative;
    }

    .s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7ae160d-2af1-46ad-90ac-09da9f675947 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-c7ae160d-2af1-46ad-90ac-09da9f675947 img.shogun-image,
  #s-c7ae160d-2af1-46ad-90ac-09da9f675947 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c7ae160d-2af1-46ad-90ac-09da9f675947 {
    width: 100%;
    height: auto;
  }

  #s-c7ae160d-2af1-46ad-90ac-09da9f675947 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image {
    
    
  }


.s-c7ae160d-2af1-46ad-90ac-09da9f675947 .shogun-image-content {
  
    align-items: center;
  
}

.s-c7ae160d-2af1-46ad-90ac-09da9f675947.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c7ae160d-2af1-46ad-90ac-09da9f675947 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image-container {
      position: relative;
    }

    .s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7ae160d-2af1-46ad-90ac-09da9f675947 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-c7ae160d-2af1-46ad-90ac-09da9f675947 img.shogun-image,
  #s-c7ae160d-2af1-46ad-90ac-09da9f675947 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c7ae160d-2af1-46ad-90ac-09da9f675947 {
    width: 100%;
    height: auto;
  }

  #s-c7ae160d-2af1-46ad-90ac-09da9f675947 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image {
    
    
  }


.s-c7ae160d-2af1-46ad-90ac-09da9f675947 .shogun-image-content {
  
    align-items: center;
  
}

.s-c7ae160d-2af1-46ad-90ac-09da9f675947.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c7ae160d-2af1-46ad-90ac-09da9f675947 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image-container {
      position: relative;
    }

    .s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7ae160d-2af1-46ad-90ac-09da9f675947 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-c7ae160d-2af1-46ad-90ac-09da9f675947 img.shogun-image,
  #s-c7ae160d-2af1-46ad-90ac-09da9f675947 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c7ae160d-2af1-46ad-90ac-09da9f675947 {
    width: 100%;
    height: auto;
  }

  #s-c7ae160d-2af1-46ad-90ac-09da9f675947 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image {
    
    
  }


.s-c7ae160d-2af1-46ad-90ac-09da9f675947 .shogun-image-content {
  
    align-items: center;
  
}

.s-c7ae160d-2af1-46ad-90ac-09da9f675947.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c7ae160d-2af1-46ad-90ac-09da9f675947 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image-container {
      position: relative;
    }

    .s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7ae160d-2af1-46ad-90ac-09da9f675947 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-c7ae160d-2af1-46ad-90ac-09da9f675947 img.shogun-image,
  #s-c7ae160d-2af1-46ad-90ac-09da9f675947 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c7ae160d-2af1-46ad-90ac-09da9f675947 {
    width: 100%;
    height: auto;
  }

  #s-c7ae160d-2af1-46ad-90ac-09da9f675947 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image {
    
    
  }


.s-c7ae160d-2af1-46ad-90ac-09da9f675947 .shogun-image-content {
  
    align-items: center;
  
}

.s-c7ae160d-2af1-46ad-90ac-09da9f675947.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c7ae160d-2af1-46ad-90ac-09da9f675947 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image-container {
      position: relative;
    }

    .s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c7ae160d-2af1-46ad-90ac-09da9f675947.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c7ae160d-2af1-46ad-90ac-09da9f675947 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-d1256d58-db2a-4641-af05-acd0b492e356 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d1256d58-db2a-4641-af05-acd0b492e356 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-d1256d58-db2a-4641-af05-acd0b492e356 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 10px;
  
  
  text-align: left;
}


}
#s-803297ab-916d-4104-848f-0f82cc28b934 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-803297ab-916d-4104-848f-0f82cc28b934 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}



#s-ff12d44f-38de-4b5d-8f1d-e4222a828d07 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 40px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-ff12d44f-38de-4b5d-8f1d-e4222a828d07:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ff12d44f-38de-4b5d-8f1d-e4222a828d07:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-ff12d44f-38de-4b5d-8f1d-e4222a828d07-root {
    text-align: left;
  }


#s-ff12d44f-38de-4b5d-8f1d-e4222a828d07.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ff12d44f-38de-4b5d-8f1d-e4222a828d07-root {
    text-align: left;
  }


#s-ff12d44f-38de-4b5d-8f1d-e4222a828d07.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ff12d44f-38de-4b5d-8f1d-e4222a828d07-root {
    text-align: left;
  }


#s-ff12d44f-38de-4b5d-8f1d-e4222a828d07.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ff12d44f-38de-4b5d-8f1d-e4222a828d07-root {
    text-align: left;
  }


#s-ff12d44f-38de-4b5d-8f1d-e4222a828d07.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ff12d44f-38de-4b5d-8f1d-e4222a828d07-root {
    text-align: left;
  }


#s-ff12d44f-38de-4b5d-8f1d-e4222a828d07.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  inline-block ;
}
}
#s-30879f84-83c4-43db-8237-de9a7a7614f2 {
  margin-top: 30px;
margin-left: 42px;
margin-bottom: 0px;
margin-right: 42px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-style: solid;
text-align: left;
}
@media (min-width: 1200px){#s-30879f84-83c4-43db-8237-de9a7a7614f2 {
  margin-left: 52px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-30879f84-83c4-43db-8237-de9a7a7614f2 {
  margin-left: 22px;
}
}@media (max-width: 767px){#s-30879f84-83c4-43db-8237-de9a7a7614f2 {
  margin-left: 19px;
}
}
#s-30879f84-83c4-43db-8237-de9a7a7614f2 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 48px;
  
  
  text-align: left;
}


#s-30879f84-83c4-43db-8237-de9a7a7614f2 .shogun-heading-component h1 a {
  color: ;
}

@media (max-width: 767px){#s-30879f84-83c4-43db-8237-de9a7a7614f2 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 35px;
  
  
  text-align: left;
}


#s-30879f84-83c4-43db-8237-de9a7a7614f2 .shogun-heading-component h1 a {
  color: ;
}

}
#s-abe5e91b-6068-4a33-8ead-da16a73c6200 {
  min-height: 50px;
}








#s-abe5e91b-6068-4a33-8ead-da16a73c6200 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-abe5e91b-6068-4a33-8ead-da16a73c6200.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-41da3125-b425-493f-869a-625134fcd6f2 {
  margin-top: 10px;
margin-left: 4%;
margin-bottom: 10px;
margin-right: 4%;
}

@media (min-width: 0px) {
[id="s-41da3125-b425-493f-869a-625134fcd6f2"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-41da3125-b425-493f-869a-625134fcd6f2"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-41da3125-b425-493f-869a-625134fcd6f2"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-41da3125-b425-493f-869a-625134fcd6f2"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-5d043b61-b122-4b44-9710-11e6a3d9cbbf {
  max-width: 1200px;
aspect-ratio: 1200/1500;
text-align: center;
}





  #s-5d043b61-b122-4b44-9710-11e6a3d9cbbf img.shogun-image,
  #s-5d043b61-b122-4b44-9710-11e6a3d9cbbf .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5d043b61-b122-4b44-9710-11e6a3d9cbbf {
    width: 100%;
    height: auto;
  }

  #s-5d043b61-b122-4b44-9710-11e6a3d9cbbf img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image {
    
    
  }


.s-5d043b61-b122-4b44-9710-11e6a3d9cbbf .shogun-image-content {
  
    align-items: center;
  
}

.s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5d043b61-b122-4b44-9710-11e6a3d9cbbf {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image-container {
      position: relative;
    }

    .s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d043b61-b122-4b44-9710-11e6a3d9cbbf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-5d043b61-b122-4b44-9710-11e6a3d9cbbf img.shogun-image,
  #s-5d043b61-b122-4b44-9710-11e6a3d9cbbf .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5d043b61-b122-4b44-9710-11e6a3d9cbbf {
    width: 100%;
    height: auto;
  }

  #s-5d043b61-b122-4b44-9710-11e6a3d9cbbf img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image {
    
    
  }


.s-5d043b61-b122-4b44-9710-11e6a3d9cbbf .shogun-image-content {
  
    align-items: center;
  
}

.s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5d043b61-b122-4b44-9710-11e6a3d9cbbf {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image-container {
      position: relative;
    }

    .s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d043b61-b122-4b44-9710-11e6a3d9cbbf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-5d043b61-b122-4b44-9710-11e6a3d9cbbf img.shogun-image,
  #s-5d043b61-b122-4b44-9710-11e6a3d9cbbf .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5d043b61-b122-4b44-9710-11e6a3d9cbbf {
    width: 100%;
    height: auto;
  }

  #s-5d043b61-b122-4b44-9710-11e6a3d9cbbf img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image {
    
    
  }


.s-5d043b61-b122-4b44-9710-11e6a3d9cbbf .shogun-image-content {
  
    align-items: center;
  
}

.s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5d043b61-b122-4b44-9710-11e6a3d9cbbf {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image-container {
      position: relative;
    }

    .s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d043b61-b122-4b44-9710-11e6a3d9cbbf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-5d043b61-b122-4b44-9710-11e6a3d9cbbf img.shogun-image,
  #s-5d043b61-b122-4b44-9710-11e6a3d9cbbf .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5d043b61-b122-4b44-9710-11e6a3d9cbbf {
    width: 100%;
    height: auto;
  }

  #s-5d043b61-b122-4b44-9710-11e6a3d9cbbf img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image {
    
    
  }


.s-5d043b61-b122-4b44-9710-11e6a3d9cbbf .shogun-image-content {
  
    align-items: center;
  
}

.s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5d043b61-b122-4b44-9710-11e6a3d9cbbf {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image-container {
      position: relative;
    }

    .s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d043b61-b122-4b44-9710-11e6a3d9cbbf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-5d043b61-b122-4b44-9710-11e6a3d9cbbf img.shogun-image,
  #s-5d043b61-b122-4b44-9710-11e6a3d9cbbf .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5d043b61-b122-4b44-9710-11e6a3d9cbbf {
    width: 100%;
    height: auto;
  }

  #s-5d043b61-b122-4b44-9710-11e6a3d9cbbf img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image {
    
    
  }


.s-5d043b61-b122-4b44-9710-11e6a3d9cbbf .shogun-image-content {
  
    align-items: center;
  
}

.s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-5d043b61-b122-4b44-9710-11e6a3d9cbbf {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image-container {
      position: relative;
    }

    .s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-5d043b61-b122-4b44-9710-11e6a3d9cbbf.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-5d043b61-b122-4b44-9710-11e6a3d9cbbf img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-4083dc9a-d1f3-44d3-ab84-b48c46a03129 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-4083dc9a-d1f3-44d3-ab84-b48c46a03129 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-4083dc9a-d1f3-44d3-ab84-b48c46a03129 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 11px;
  
  
  text-align: left;
}


}
#s-154cbda2-c98b-4ead-aae3-7ab552c587b1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-154cbda2-c98b-4ead-aae3-7ab552c587b1 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}



#s-06804341-49aa-41de-82fc-2439020f0e19 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 40px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-06804341-49aa-41de-82fc-2439020f0e19:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-06804341-49aa-41de-82fc-2439020f0e19:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-06804341-49aa-41de-82fc-2439020f0e19-root {
    text-align: left;
  }


#s-06804341-49aa-41de-82fc-2439020f0e19.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-06804341-49aa-41de-82fc-2439020f0e19-root {
    text-align: left;
  }


#s-06804341-49aa-41de-82fc-2439020f0e19.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-06804341-49aa-41de-82fc-2439020f0e19-root {
    text-align: left;
  }


#s-06804341-49aa-41de-82fc-2439020f0e19.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-06804341-49aa-41de-82fc-2439020f0e19-root {
    text-align: left;
  }


#s-06804341-49aa-41de-82fc-2439020f0e19.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-06804341-49aa-41de-82fc-2439020f0e19-root {
    text-align: left;
  }


#s-06804341-49aa-41de-82fc-2439020f0e19.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  inline-block ;
}
}
#s-bdbba47a-5174-42fe-b173-d1474ae7f54a {
  max-width: 1200px;
aspect-ratio: 1200/1500;
text-align: center;
}





  #s-bdbba47a-5174-42fe-b173-d1474ae7f54a img.shogun-image,
  #s-bdbba47a-5174-42fe-b173-d1474ae7f54a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bdbba47a-5174-42fe-b173-d1474ae7f54a {
    width: 100%;
    height: auto;
  }

  #s-bdbba47a-5174-42fe-b173-d1474ae7f54a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image {
    
    
  }


.s-bdbba47a-5174-42fe-b173-d1474ae7f54a .shogun-image-content {
  
    align-items: center;
  
}

.s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bdbba47a-5174-42fe-b173-d1474ae7f54a {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image-container {
      position: relative;
    }

    .s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bdbba47a-5174-42fe-b173-d1474ae7f54a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-bdbba47a-5174-42fe-b173-d1474ae7f54a img.shogun-image,
  #s-bdbba47a-5174-42fe-b173-d1474ae7f54a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bdbba47a-5174-42fe-b173-d1474ae7f54a {
    width: 100%;
    height: auto;
  }

  #s-bdbba47a-5174-42fe-b173-d1474ae7f54a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image {
    
    
  }


.s-bdbba47a-5174-42fe-b173-d1474ae7f54a .shogun-image-content {
  
    align-items: center;
  
}

.s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bdbba47a-5174-42fe-b173-d1474ae7f54a {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image-container {
      position: relative;
    }

    .s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bdbba47a-5174-42fe-b173-d1474ae7f54a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-bdbba47a-5174-42fe-b173-d1474ae7f54a img.shogun-image,
  #s-bdbba47a-5174-42fe-b173-d1474ae7f54a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bdbba47a-5174-42fe-b173-d1474ae7f54a {
    width: 100%;
    height: auto;
  }

  #s-bdbba47a-5174-42fe-b173-d1474ae7f54a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image {
    
    
  }


.s-bdbba47a-5174-42fe-b173-d1474ae7f54a .shogun-image-content {
  
    align-items: center;
  
}

.s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bdbba47a-5174-42fe-b173-d1474ae7f54a {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image-container {
      position: relative;
    }

    .s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bdbba47a-5174-42fe-b173-d1474ae7f54a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-bdbba47a-5174-42fe-b173-d1474ae7f54a img.shogun-image,
  #s-bdbba47a-5174-42fe-b173-d1474ae7f54a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bdbba47a-5174-42fe-b173-d1474ae7f54a {
    width: 100%;
    height: auto;
  }

  #s-bdbba47a-5174-42fe-b173-d1474ae7f54a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image {
    
    
  }


.s-bdbba47a-5174-42fe-b173-d1474ae7f54a .shogun-image-content {
  
    align-items: center;
  
}

.s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bdbba47a-5174-42fe-b173-d1474ae7f54a {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image-container {
      position: relative;
    }

    .s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bdbba47a-5174-42fe-b173-d1474ae7f54a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-bdbba47a-5174-42fe-b173-d1474ae7f54a img.shogun-image,
  #s-bdbba47a-5174-42fe-b173-d1474ae7f54a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-bdbba47a-5174-42fe-b173-d1474ae7f54a {
    width: 100%;
    height: auto;
  }

  #s-bdbba47a-5174-42fe-b173-d1474ae7f54a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image {
    
    
  }


.s-bdbba47a-5174-42fe-b173-d1474ae7f54a .shogun-image-content {
  
    align-items: center;
  
}

.s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-bdbba47a-5174-42fe-b173-d1474ae7f54a {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image-container {
      position: relative;
    }

    .s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-bdbba47a-5174-42fe-b173-d1474ae7f54a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-bdbba47a-5174-42fe-b173-d1474ae7f54a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-2d0debe7-701a-46ab-ae3e-8c7a99d0325d {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-2d0debe7-701a-46ab-ae3e-8c7a99d0325d .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-2d0debe7-701a-46ab-ae3e-8c7a99d0325d .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 11px;
  
  
  text-align: left;
}


}
#s-10c4f417-9030-4ead-aa87-efc9f5b0927b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-10c4f417-9030-4ead-aa87-efc9f5b0927b .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}



#s-ba66f44b-d66f-4aeb-ae9e-341fb8e322e0 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 40px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-ba66f44b-d66f-4aeb-ae9e-341fb8e322e0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ba66f44b-d66f-4aeb-ae9e-341fb8e322e0:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-ba66f44b-d66f-4aeb-ae9e-341fb8e322e0-root {
    text-align: left;
  }


#s-ba66f44b-d66f-4aeb-ae9e-341fb8e322e0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ba66f44b-d66f-4aeb-ae9e-341fb8e322e0-root {
    text-align: left;
  }


#s-ba66f44b-d66f-4aeb-ae9e-341fb8e322e0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ba66f44b-d66f-4aeb-ae9e-341fb8e322e0-root {
    text-align: left;
  }


#s-ba66f44b-d66f-4aeb-ae9e-341fb8e322e0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ba66f44b-d66f-4aeb-ae9e-341fb8e322e0-root {
    text-align: left;
  }


#s-ba66f44b-d66f-4aeb-ae9e-341fb8e322e0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ba66f44b-d66f-4aeb-ae9e-341fb8e322e0-root {
    text-align: left;
  }


#s-ba66f44b-d66f-4aeb-ae9e-341fb8e322e0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  inline-block ;
}
}
#s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 {
  max-width: 1200px;
aspect-ratio: 1200/1500;
text-align: center;
}





  #s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 img.shogun-image,
  #s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 {
    width: 100%;
    height: auto;
  }

  #s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image {
    
    
  }


.s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 .shogun-image-content {
  
    align-items: center;
  
}

.s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image-container {
      position: relative;
    }

    .s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 img.shogun-image,
  #s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 {
    width: 100%;
    height: auto;
  }

  #s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image {
    
    
  }


.s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 .shogun-image-content {
  
    align-items: center;
  
}

.s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image-container {
      position: relative;
    }

    .s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 img.shogun-image,
  #s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 {
    width: 100%;
    height: auto;
  }

  #s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image {
    
    
  }


.s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 .shogun-image-content {
  
    align-items: center;
  
}

.s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image-container {
      position: relative;
    }

    .s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 img.shogun-image,
  #s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 {
    width: 100%;
    height: auto;
  }

  #s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image {
    
    
  }


.s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 .shogun-image-content {
  
    align-items: center;
  
}

.s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image-container {
      position: relative;
    }

    .s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 img.shogun-image,
  #s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 {
    width: 100%;
    height: auto;
  }

  #s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image {
    
    
  }


.s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 .shogun-image-content {
  
    align-items: center;
  
}

.s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image-container {
      position: relative;
    }

    .s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2fa36e5f-f9d3-499e-8739-6ba33576fad7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2fa36e5f-f9d3-499e-8739-6ba33576fad7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-a3b73863-b43a-44a2-976e-db6ecc26d3c7 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-a3b73863-b43a-44a2-976e-db6ecc26d3c7 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  
  
  text-align: left;
}


#s-a3b73863-b43a-44a2-976e-db6ecc26d3c7 .shogun-heading-component h1 a {
  color: ;
}

@media (max-width: 767px){#s-a3b73863-b43a-44a2-976e-db6ecc26d3c7 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 11px;
  
  
  text-align: left;
}


#s-a3b73863-b43a-44a2-976e-db6ecc26d3c7 .shogun-heading-component h1 a {
  color: ;
}

}
#s-6aea5eb4-e932-4933-8c79-6e513fbf2f92 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6aea5eb4-e932-4933-8c79-6e513fbf2f92 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}



#s-b25d2523-f967-4aee-acfc-0c6b630a70a0 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 40px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-b25d2523-f967-4aee-acfc-0c6b630a70a0:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b25d2523-f967-4aee-acfc-0c6b630a70a0:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-b25d2523-f967-4aee-acfc-0c6b630a70a0-root {
    text-align: left;
  }


#s-b25d2523-f967-4aee-acfc-0c6b630a70a0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b25d2523-f967-4aee-acfc-0c6b630a70a0-root {
    text-align: left;
  }


#s-b25d2523-f967-4aee-acfc-0c6b630a70a0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b25d2523-f967-4aee-acfc-0c6b630a70a0-root {
    text-align: left;
  }


#s-b25d2523-f967-4aee-acfc-0c6b630a70a0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b25d2523-f967-4aee-acfc-0c6b630a70a0-root {
    text-align: left;
  }


#s-b25d2523-f967-4aee-acfc-0c6b630a70a0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b25d2523-f967-4aee-acfc-0c6b630a70a0-root {
    text-align: left;
  }


#s-b25d2523-f967-4aee-acfc-0c6b630a70a0.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  inline-block ;
}
}
#s-760204a8-41ad-44c9-8633-6acd8f0199f7 {
  margin-top: 30px;
margin-left: 43px;
margin-bottom: 0px;
margin-right: 43px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-style: solid;
text-align: center;
}
@media (min-width: 1200px){#s-760204a8-41ad-44c9-8633-6acd8f0199f7 {
  margin-left: 52px;
margin-right: 45px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-760204a8-41ad-44c9-8633-6acd8f0199f7 {
  margin-left: 22px;
}
}@media (max-width: 767px){#s-760204a8-41ad-44c9-8633-6acd8f0199f7 {
  margin-left: 19px;
}
}
#s-760204a8-41ad-44c9-8633-6acd8f0199f7 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 48px;
  
  
  text-align: left;
}


#s-760204a8-41ad-44c9-8633-6acd8f0199f7 .shogun-heading-component h1 a {
  color: ;
}

@media (max-width: 767px){#s-760204a8-41ad-44c9-8633-6acd8f0199f7 .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 35px;
  
  
  text-align: left;
}


#s-760204a8-41ad-44c9-8633-6acd8f0199f7 .shogun-heading-component h1 a {
  color: ;
}

}
#s-f00c09dd-f33b-4219-a0df-70e0eeb3f155 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-f00c09dd-f33b-4219-a0df-70e0eeb3f155 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f00c09dd-f33b-4219-a0df-70e0eeb3f155.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9da6b070-ab4e-4d38-ba64-597303c1e3a2 {
  margin-top: 10px;
margin-left: 4%;
margin-bottom: 10px;
margin-right: 4%;
}

@media (min-width: 0px) {
[id="s-9da6b070-ab4e-4d38-ba64-597303c1e3a2"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-9da6b070-ab4e-4d38-ba64-597303c1e3a2"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-9da6b070-ab4e-4d38-ba64-597303c1e3a2"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-9da6b070-ab4e-4d38-ba64-597303c1e3a2"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-f62f9bd3-b001-4af7-86f4-bfb19351950a {
  max-width: 1200px;
aspect-ratio: 1200/1500;
text-align: center;
}





  #s-f62f9bd3-b001-4af7-86f4-bfb19351950a img.shogun-image,
  #s-f62f9bd3-b001-4af7-86f4-bfb19351950a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f62f9bd3-b001-4af7-86f4-bfb19351950a {
    width: 100%;
    height: auto;
  }

  #s-f62f9bd3-b001-4af7-86f4-bfb19351950a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image {
    
    
  }


.s-f62f9bd3-b001-4af7-86f4-bfb19351950a .shogun-image-content {
  
    align-items: center;
  
}

.s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f62f9bd3-b001-4af7-86f4-bfb19351950a {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image-container {
      position: relative;
    }

    .s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f62f9bd3-b001-4af7-86f4-bfb19351950a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-f62f9bd3-b001-4af7-86f4-bfb19351950a img.shogun-image,
  #s-f62f9bd3-b001-4af7-86f4-bfb19351950a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f62f9bd3-b001-4af7-86f4-bfb19351950a {
    width: 100%;
    height: auto;
  }

  #s-f62f9bd3-b001-4af7-86f4-bfb19351950a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image {
    
    
  }


.s-f62f9bd3-b001-4af7-86f4-bfb19351950a .shogun-image-content {
  
    align-items: center;
  
}

.s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f62f9bd3-b001-4af7-86f4-bfb19351950a {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image-container {
      position: relative;
    }

    .s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f62f9bd3-b001-4af7-86f4-bfb19351950a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-f62f9bd3-b001-4af7-86f4-bfb19351950a img.shogun-image,
  #s-f62f9bd3-b001-4af7-86f4-bfb19351950a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f62f9bd3-b001-4af7-86f4-bfb19351950a {
    width: 100%;
    height: auto;
  }

  #s-f62f9bd3-b001-4af7-86f4-bfb19351950a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image {
    
    
  }


.s-f62f9bd3-b001-4af7-86f4-bfb19351950a .shogun-image-content {
  
    align-items: center;
  
}

.s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f62f9bd3-b001-4af7-86f4-bfb19351950a {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image-container {
      position: relative;
    }

    .s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f62f9bd3-b001-4af7-86f4-bfb19351950a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-f62f9bd3-b001-4af7-86f4-bfb19351950a img.shogun-image,
  #s-f62f9bd3-b001-4af7-86f4-bfb19351950a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f62f9bd3-b001-4af7-86f4-bfb19351950a {
    width: 100%;
    height: auto;
  }

  #s-f62f9bd3-b001-4af7-86f4-bfb19351950a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image {
    
    
  }


.s-f62f9bd3-b001-4af7-86f4-bfb19351950a .shogun-image-content {
  
    align-items: center;
  
}

.s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f62f9bd3-b001-4af7-86f4-bfb19351950a {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image-container {
      position: relative;
    }

    .s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f62f9bd3-b001-4af7-86f4-bfb19351950a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-f62f9bd3-b001-4af7-86f4-bfb19351950a img.shogun-image,
  #s-f62f9bd3-b001-4af7-86f4-bfb19351950a .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f62f9bd3-b001-4af7-86f4-bfb19351950a {
    width: 100%;
    height: auto;
  }

  #s-f62f9bd3-b001-4af7-86f4-bfb19351950a img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image {
    
    
  }


.s-f62f9bd3-b001-4af7-86f4-bfb19351950a .shogun-image-content {
  
    align-items: center;
  
}

.s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f62f9bd3-b001-4af7-86f4-bfb19351950a {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image-container {
      position: relative;
    }

    .s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f62f9bd3-b001-4af7-86f4-bfb19351950a.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f62f9bd3-b001-4af7-86f4-bfb19351950a img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-7527a123-c412-43c1-bf0a-6a42c215dd19 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-7527a123-c412-43c1-bf0a-6a42c215dd19 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-7527a123-c412-43c1-bf0a-6a42c215dd19 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 11px;
  
  
  text-align: left;
}


}
#s-31549532-79ae-4f78-9ee6-0b9ee77785c6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-31549532-79ae-4f78-9ee6-0b9ee77785c6 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}



#s-cd56b289-c793-4bf2-85d5-7effe4cfd2e4 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 40px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-cd56b289-c793-4bf2-85d5-7effe4cfd2e4:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-cd56b289-c793-4bf2-85d5-7effe4cfd2e4:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-cd56b289-c793-4bf2-85d5-7effe4cfd2e4-root {
    text-align: left;
  }


#s-cd56b289-c793-4bf2-85d5-7effe4cfd2e4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-cd56b289-c793-4bf2-85d5-7effe4cfd2e4-root {
    text-align: left;
  }


#s-cd56b289-c793-4bf2-85d5-7effe4cfd2e4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-cd56b289-c793-4bf2-85d5-7effe4cfd2e4-root {
    text-align: left;
  }


#s-cd56b289-c793-4bf2-85d5-7effe4cfd2e4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-cd56b289-c793-4bf2-85d5-7effe4cfd2e4-root {
    text-align: left;
  }


#s-cd56b289-c793-4bf2-85d5-7effe4cfd2e4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-cd56b289-c793-4bf2-85d5-7effe4cfd2e4-root {
    text-align: left;
  }


#s-cd56b289-c793-4bf2-85d5-7effe4cfd2e4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  inline-block ;
}
}
#s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd {
  max-width: 1200px;
aspect-ratio: 1200/1500;
text-align: center;
}





  #s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd img.shogun-image,
  #s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd {
    width: 100%;
    height: auto;
  }

  #s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image {
    
    
  }


.s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd .shogun-image-content {
  
    align-items: center;
  
}

.s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image-container {
      position: relative;
    }

    .s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd img.shogun-image,
  #s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd {
    width: 100%;
    height: auto;
  }

  #s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image {
    
    
  }


.s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd .shogun-image-content {
  
    align-items: center;
  
}

.s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image-container {
      position: relative;
    }

    .s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd img.shogun-image,
  #s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd {
    width: 100%;
    height: auto;
  }

  #s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image {
    
    
  }


.s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd .shogun-image-content {
  
    align-items: center;
  
}

.s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image-container {
      position: relative;
    }

    .s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd img.shogun-image,
  #s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd {
    width: 100%;
    height: auto;
  }

  #s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image {
    
    
  }


.s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd .shogun-image-content {
  
    align-items: center;
  
}

.s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image-container {
      position: relative;
    }

    .s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd img.shogun-image,
  #s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd {
    width: 100%;
    height: auto;
  }

  #s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image {
    
    
  }


.s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd .shogun-image-content {
  
    align-items: center;
  
}

.s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image-container {
      position: relative;
    }

    .s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-2e4ee7e8-96db-4c44-aff2-49ce31ddefdd img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-9cd34ae1-eb93-4c54-ab38-810cbdb3a973 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-9cd34ae1-eb93-4c54-ab38-810cbdb3a973 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-9cd34ae1-eb93-4c54-ab38-810cbdb3a973 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 11px;
  
  
  text-align: left;
}


}
#s-6242eaf5-5fd3-45dc-be4c-93d73290cb7c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6242eaf5-5fd3-45dc-be4c-93d73290cb7c .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}



#s-efa8683e-c3c4-45ab-866f-b85608e091bb {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 40px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-efa8683e-c3c4-45ab-866f-b85608e091bb:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-efa8683e-c3c4-45ab-866f-b85608e091bb:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-efa8683e-c3c4-45ab-866f-b85608e091bb-root {
    text-align: left;
  }


#s-efa8683e-c3c4-45ab-866f-b85608e091bb.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-efa8683e-c3c4-45ab-866f-b85608e091bb-root {
    text-align: left;
  }


#s-efa8683e-c3c4-45ab-866f-b85608e091bb.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-efa8683e-c3c4-45ab-866f-b85608e091bb-root {
    text-align: left;
  }


#s-efa8683e-c3c4-45ab-866f-b85608e091bb.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-efa8683e-c3c4-45ab-866f-b85608e091bb-root {
    text-align: left;
  }


#s-efa8683e-c3c4-45ab-866f-b85608e091bb.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-efa8683e-c3c4-45ab-866f-b85608e091bb-root {
    text-align: left;
  }


#s-efa8683e-c3c4-45ab-866f-b85608e091bb.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  inline-block ;
}
}
#s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 {
  max-width: 1200px;
aspect-ratio: 1200/1500;
text-align: center;
}





  #s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 img.shogun-image,
  #s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 {
    width: 100%;
    height: auto;
  }

  #s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image {
    
    
  }


.s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 .shogun-image-content {
  
    align-items: center;
  
}

.s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image-container {
      position: relative;
    }

    .s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 img.shogun-image,
  #s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 {
    width: 100%;
    height: auto;
  }

  #s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image {
    
    
  }


.s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 .shogun-image-content {
  
    align-items: center;
  
}

.s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image-container {
      position: relative;
    }

    .s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 img.shogun-image,
  #s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 {
    width: 100%;
    height: auto;
  }

  #s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image {
    
    
  }


.s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 .shogun-image-content {
  
    align-items: center;
  
}

.s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image-container {
      position: relative;
    }

    .s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 img.shogun-image,
  #s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 {
    width: 100%;
    height: auto;
  }

  #s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image {
    
    
  }


.s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 .shogun-image-content {
  
    align-items: center;
  
}

.s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image-container {
      position: relative;
    }

    .s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 img.shogun-image,
  #s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 {
    width: 100%;
    height: auto;
  }

  #s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image {
    
    
  }


.s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 .shogun-image-content {
  
    align-items: center;
  
}

.s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image-container {
      position: relative;
    }

    .s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-0b4cbd00-cc9e-49df-a83f-66f71d5e7bd7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-387cacc0-f2ac-4443-a4ad-ff7a78cf903e {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-387cacc0-f2ac-4443-a4ad-ff7a78cf903e .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-387cacc0-f2ac-4443-a4ad-ff7a78cf903e .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 11px;
  
  
  text-align: left;
}


}
#s-23f1b170-0882-422e-8837-5a00bf313bba {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-23f1b170-0882-422e-8837-5a00bf313bba .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}



#s-d68be47a-a2e4-48bf-888e-d1209551d56c {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 40px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-d68be47a-a2e4-48bf-888e-d1209551d56c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d68be47a-a2e4-48bf-888e-d1209551d56c:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-d68be47a-a2e4-48bf-888e-d1209551d56c-root {
    text-align: left;
  }


#s-d68be47a-a2e4-48bf-888e-d1209551d56c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d68be47a-a2e4-48bf-888e-d1209551d56c-root {
    text-align: left;
  }


#s-d68be47a-a2e4-48bf-888e-d1209551d56c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d68be47a-a2e4-48bf-888e-d1209551d56c-root {
    text-align: left;
  }


#s-d68be47a-a2e4-48bf-888e-d1209551d56c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d68be47a-a2e4-48bf-888e-d1209551d56c-root {
    text-align: left;
  }


#s-d68be47a-a2e4-48bf-888e-d1209551d56c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d68be47a-a2e4-48bf-888e-d1209551d56c-root {
    text-align: left;
  }


#s-d68be47a-a2e4-48bf-888e-d1209551d56c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  inline-block ;
}
}
#s-02eda797-279c-43dd-8c3a-ffe5db7e6b8e {
  margin-top: 30px;
margin-left: 52px;
margin-bottom: 0px;
margin-right: 43px;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-style: solid;
text-align: center;
}
@media (min-width: 1200px){#s-02eda797-279c-43dd-8c3a-ffe5db7e6b8e {
  margin-left: 52px;
}
}@media (max-width: 767px){#s-02eda797-279c-43dd-8c3a-ffe5db7e6b8e {
  margin-left: 19px;
}
}
#s-02eda797-279c-43dd-8c3a-ffe5db7e6b8e .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 48px;
  
  
  text-align: left;
}


#s-02eda797-279c-43dd-8c3a-ffe5db7e6b8e .shogun-heading-component h1 a {
  color: ;
}

@media (max-width: 767px){#s-02eda797-279c-43dd-8c3a-ffe5db7e6b8e .shogun-heading-component h1 {
  color: ;
  font-weight:  700 ;
  font-family: "Montserrat";
  font-style:  normal ;
  font-size: 35px;
  
  
  text-align: left;
}


#s-02eda797-279c-43dd-8c3a-ffe5db7e6b8e .shogun-heading-component h1 a {
  color: ;
}

}
#s-4f17cb34-b66d-4bfe-a898-f7b35eb81a0b {
  min-height: 50px;
}








#s-4f17cb34-b66d-4bfe-a898-f7b35eb81a0b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4f17cb34-b66d-4bfe-a898-f7b35eb81a0b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-900fdd3e-d47d-4700-a8f6-c03fe05bdaa6 {
  margin-top: 10px;
margin-left: 4%;
margin-bottom: 10px;
margin-right: 4%;
}

@media (min-width: 0px) {
[id="s-900fdd3e-d47d-4700-a8f6-c03fe05bdaa6"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-900fdd3e-d47d-4700-a8f6-c03fe05bdaa6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-900fdd3e-d47d-4700-a8f6-c03fe05bdaa6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-900fdd3e-d47d-4700-a8f6-c03fe05bdaa6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 {
  max-width: 1200px;
aspect-ratio: 1200/1500;
text-align: center;
}





  #s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 img.shogun-image,
  #s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 {
    width: 100%;
    height: auto;
  }

  #s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image {
    
    
  }


.s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 .shogun-image-content {
  
    align-items: center;
  
}

.s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image-container {
      position: relative;
    }

    .s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 img.shogun-image,
  #s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 {
    width: 100%;
    height: auto;
  }

  #s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image {
    
    
  }


.s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 .shogun-image-content {
  
    align-items: center;
  
}

.s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image-container {
      position: relative;
    }

    .s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 img.shogun-image,
  #s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 {
    width: 100%;
    height: auto;
  }

  #s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image {
    
    
  }


.s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 .shogun-image-content {
  
    align-items: center;
  
}

.s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image-container {
      position: relative;
    }

    .s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 img.shogun-image,
  #s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 {
    width: 100%;
    height: auto;
  }

  #s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image {
    
    
  }


.s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 .shogun-image-content {
  
    align-items: center;
  
}

.s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image-container {
      position: relative;
    }

    .s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 img.shogun-image,
  #s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 {
    width: 100%;
    height: auto;
  }

  #s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image {
    
    
  }


.s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 .shogun-image-content {
  
    align-items: center;
  
}

.s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image-container {
      position: relative;
    }

    .s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4a41615f-3ecb-4f7d-94c6-4e60998dd517.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4a41615f-3ecb-4f7d-94c6-4e60998dd517 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-d188a4ef-cb13-4049-ad17-cd647b272ccc {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-d188a4ef-cb13-4049-ad17-cd647b272ccc .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-d188a4ef-cb13-4049-ad17-cd647b272ccc .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 11px;
  
  
  text-align: left;
}


}
#s-5acee25f-682d-44a6-9066-ae781a330dd7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5acee25f-682d-44a6-9066-ae781a330dd7 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}



#s-efdd6ba6-8592-4e99-9e7d-4da632721a6c {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 40px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-efdd6ba6-8592-4e99-9e7d-4da632721a6c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-efdd6ba6-8592-4e99-9e7d-4da632721a6c:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-efdd6ba6-8592-4e99-9e7d-4da632721a6c-root {
    text-align: left;
  }


#s-efdd6ba6-8592-4e99-9e7d-4da632721a6c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-efdd6ba6-8592-4e99-9e7d-4da632721a6c-root {
    text-align: left;
  }


#s-efdd6ba6-8592-4e99-9e7d-4da632721a6c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-efdd6ba6-8592-4e99-9e7d-4da632721a6c-root {
    text-align: left;
  }


#s-efdd6ba6-8592-4e99-9e7d-4da632721a6c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-efdd6ba6-8592-4e99-9e7d-4da632721a6c-root {
    text-align: left;
  }


#s-efdd6ba6-8592-4e99-9e7d-4da632721a6c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-efdd6ba6-8592-4e99-9e7d-4da632721a6c-root {
    text-align: left;
  }


#s-efdd6ba6-8592-4e99-9e7d-4da632721a6c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  inline-block ;
}
}
#s-c196dad6-6665-4e70-baaf-3b16062dcae0 {
  max-width: 1200px;
aspect-ratio: 1200/1500;
text-align: center;
}





  #s-c196dad6-6665-4e70-baaf-3b16062dcae0 img.shogun-image,
  #s-c196dad6-6665-4e70-baaf-3b16062dcae0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c196dad6-6665-4e70-baaf-3b16062dcae0 {
    width: 100%;
    height: auto;
  }

  #s-c196dad6-6665-4e70-baaf-3b16062dcae0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image {
    
    
  }


.s-c196dad6-6665-4e70-baaf-3b16062dcae0 .shogun-image-content {
  
    align-items: center;
  
}

.s-c196dad6-6665-4e70-baaf-3b16062dcae0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c196dad6-6665-4e70-baaf-3b16062dcae0 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image-container {
      position: relative;
    }

    .s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c196dad6-6665-4e70-baaf-3b16062dcae0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-c196dad6-6665-4e70-baaf-3b16062dcae0 img.shogun-image,
  #s-c196dad6-6665-4e70-baaf-3b16062dcae0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c196dad6-6665-4e70-baaf-3b16062dcae0 {
    width: 100%;
    height: auto;
  }

  #s-c196dad6-6665-4e70-baaf-3b16062dcae0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image {
    
    
  }


.s-c196dad6-6665-4e70-baaf-3b16062dcae0 .shogun-image-content {
  
    align-items: center;
  
}

.s-c196dad6-6665-4e70-baaf-3b16062dcae0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c196dad6-6665-4e70-baaf-3b16062dcae0 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image-container {
      position: relative;
    }

    .s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c196dad6-6665-4e70-baaf-3b16062dcae0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-c196dad6-6665-4e70-baaf-3b16062dcae0 img.shogun-image,
  #s-c196dad6-6665-4e70-baaf-3b16062dcae0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c196dad6-6665-4e70-baaf-3b16062dcae0 {
    width: 100%;
    height: auto;
  }

  #s-c196dad6-6665-4e70-baaf-3b16062dcae0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image {
    
    
  }


.s-c196dad6-6665-4e70-baaf-3b16062dcae0 .shogun-image-content {
  
    align-items: center;
  
}

.s-c196dad6-6665-4e70-baaf-3b16062dcae0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c196dad6-6665-4e70-baaf-3b16062dcae0 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image-container {
      position: relative;
    }

    .s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c196dad6-6665-4e70-baaf-3b16062dcae0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-c196dad6-6665-4e70-baaf-3b16062dcae0 img.shogun-image,
  #s-c196dad6-6665-4e70-baaf-3b16062dcae0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c196dad6-6665-4e70-baaf-3b16062dcae0 {
    width: 100%;
    height: auto;
  }

  #s-c196dad6-6665-4e70-baaf-3b16062dcae0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image {
    
    
  }


.s-c196dad6-6665-4e70-baaf-3b16062dcae0 .shogun-image-content {
  
    align-items: center;
  
}

.s-c196dad6-6665-4e70-baaf-3b16062dcae0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c196dad6-6665-4e70-baaf-3b16062dcae0 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image-container {
      position: relative;
    }

    .s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c196dad6-6665-4e70-baaf-3b16062dcae0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-c196dad6-6665-4e70-baaf-3b16062dcae0 img.shogun-image,
  #s-c196dad6-6665-4e70-baaf-3b16062dcae0 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-c196dad6-6665-4e70-baaf-3b16062dcae0 {
    width: 100%;
    height: auto;
  }

  #s-c196dad6-6665-4e70-baaf-3b16062dcae0 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image {
    
    
  }


.s-c196dad6-6665-4e70-baaf-3b16062dcae0 .shogun-image-content {
  
    align-items: center;
  
}

.s-c196dad6-6665-4e70-baaf-3b16062dcae0.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-c196dad6-6665-4e70-baaf-3b16062dcae0 {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image-container {
      position: relative;
    }

    .s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-c196dad6-6665-4e70-baaf-3b16062dcae0.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-c196dad6-6665-4e70-baaf-3b16062dcae0 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-935a7e9f-0dd6-48ab-bf6c-90f049353cac {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-935a7e9f-0dd6-48ab-bf6c-90f049353cac .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-935a7e9f-0dd6-48ab-bf6c-90f049353cac .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 11px;
  
  
  text-align: left;
}


}
#s-63dbbc77-ce48-4d76-96cc-efeed2b014f0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-63dbbc77-ce48-4d76-96cc-efeed2b014f0 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}



#s-eeccfdc1-8161-4dde-b73d-e43e9faae532 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 40px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-eeccfdc1-8161-4dde-b73d-e43e9faae532:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-eeccfdc1-8161-4dde-b73d-e43e9faae532:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-eeccfdc1-8161-4dde-b73d-e43e9faae532 {
  margin-top: 0px;
margin-bottom: 0px;
}
}

  #s-eeccfdc1-8161-4dde-b73d-e43e9faae532-root {
    text-align: left;
  }


#s-eeccfdc1-8161-4dde-b73d-e43e9faae532.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-eeccfdc1-8161-4dde-b73d-e43e9faae532-root {
    text-align: left;
  }


#s-eeccfdc1-8161-4dde-b73d-e43e9faae532.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-eeccfdc1-8161-4dde-b73d-e43e9faae532-root {
    text-align: left;
  }


#s-eeccfdc1-8161-4dde-b73d-e43e9faae532.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-eeccfdc1-8161-4dde-b73d-e43e9faae532-root {
    text-align: left;
  }


#s-eeccfdc1-8161-4dde-b73d-e43e9faae532.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-eeccfdc1-8161-4dde-b73d-e43e9faae532-root {
    text-align: left;
  }


#s-eeccfdc1-8161-4dde-b73d-e43e9faae532.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  inline-block ;
}
}
#s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f {
  max-width: 1200px;
aspect-ratio: 1200/1500;
text-align: center;
}





  #s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f img.shogun-image,
  #s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f {
    width: 100%;
    height: auto;
  }

  #s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image {
    
    
  }


.s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f .shogun-image-content {
  
    align-items: center;
  
}

.s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image-container {
      position: relative;
    }

    .s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f img.shogun-image,
  #s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f {
    width: 100%;
    height: auto;
  }

  #s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image {
    
    
  }


.s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f .shogun-image-content {
  
    align-items: center;
  
}

.s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image-container {
      position: relative;
    }

    .s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f img.shogun-image,
  #s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f {
    width: 100%;
    height: auto;
  }

  #s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image {
    
    
  }


.s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f .shogun-image-content {
  
    align-items: center;
  
}

.s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image-container {
      position: relative;
    }

    .s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f img.shogun-image,
  #s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f {
    width: 100%;
    height: auto;
  }

  #s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image {
    
    
  }


.s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f .shogun-image-content {
  
    align-items: center;
  
}

.s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image-container {
      position: relative;
    }

    .s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f img.shogun-image,
  #s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f {
    width: 100%;
    height: auto;
  }

  #s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image {
    
    
  }


.s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f .shogun-image-content {
  
    align-items: center;
  
}

.s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f {
      --shg-aspect-ratio: calc(1200/1500); 
    }

    .s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image-container {
      position: relative;
    }

    .s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-3e5172fb-5f8b-48cf-b4d4-90d41018e71f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-850ebd6d-b04c-4c55-a594-ef44f0b84fb3 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-850ebd6d-b04c-4c55-a594-ef44f0b84fb3 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  
  
  text-align: left;
}


@media (max-width: 767px){#s-850ebd6d-b04c-4c55-a594-ef44f0b84fb3 .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 11px;
  
  
  text-align: left;
}


}
#s-7d33e8d9-fc0a-4944-be4f-11f6d1e2758a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7d33e8d9-fc0a-4944-be4f-11f6d1e2758a .shogun-heading-component h1 {
  color: ;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}



#s-9e9bdf1d-aff3-4152-813b-5288c32feb84 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #2C2A34;
border-radius: 40px;
background-color: rgba(255, 255, 255, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-9e9bdf1d-aff3-4152-813b-5288c32feb84:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9e9bdf1d-aff3-4152-813b-5288c32feb84:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-9e9bdf1d-aff3-4152-813b-5288c32feb84-root {
    text-align: left;
  }


#s-9e9bdf1d-aff3-4152-813b-5288c32feb84.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-9e9bdf1d-aff3-4152-813b-5288c32feb84-root {
    text-align: left;
  }


#s-9e9bdf1d-aff3-4152-813b-5288c32feb84.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9e9bdf1d-aff3-4152-813b-5288c32feb84-root {
    text-align: left;
  }


#s-9e9bdf1d-aff3-4152-813b-5288c32feb84.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9e9bdf1d-aff3-4152-813b-5288c32feb84-root {
    text-align: left;
  }


#s-9e9bdf1d-aff3-4152-813b-5288c32feb84.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-9e9bdf1d-aff3-4152-813b-5288c32feb84-root {
    text-align: left;
  }


#s-9e9bdf1d-aff3-4152-813b-5288c32feb84.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 10px;
  
  
  
  display:  inline-block ;
}
}
#s-7ccece29-5d27-4924-a701-6203b97b293a {
  margin-top: 50px;
margin-bottom: 7px;
}

@media (min-width: 0px) {
[id="s-7ccece29-5d27-4924-a701-6203b97b293a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7ccece29-5d27-4924-a701-6203b97b293a"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-7ccece29-5d27-4924-a701-6203b97b293a"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-7ccece29-5d27-4924-a701-6203b97b293a"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-7ccece29-5d27-4924-a701-6203b97b293a"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-7ccece29-5d27-4924-a701-6203b97b293a"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-7ccece29-5d27-4924-a701-6203b97b293a"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

#s-3b239cb4-7d2d-47b5-924e-bfcdc4feffa0 {
  margin-left: 0%;
margin-bottom: 70px;
margin-right: 0%;
min-height: 50px;
background-color: rgba(244, 241, 234, 0);
}








#s-3b239cb4-7d2d-47b5-924e-bfcdc4feffa0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3b239cb4-7d2d-47b5-924e-bfcdc4feffa0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d5e0617c-f24a-4ae8-b6f8-3515887a2b38 {
  padding-left: 10%;
padding-right: 10%;
background-color: rgba(0, 0, 0, 0);
}

@media (min-width: 0px) {
[id="s-d5e0617c-f24a-4ae8-b6f8-3515887a2b38"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d5e0617c-f24a-4ae8-b6f8-3515887a2b38"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-d5e0617c-f24a-4ae8-b6f8-3515887a2b38"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-d5e0617c-f24a-4ae8-b6f8-3515887a2b38"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-d4b32e85-4df1-4fef-b1c5-28cd47952a5a {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 10px;
min-height: 50px;
background-color: rgba(244, 241, 234, 1);
}








#s-d4b32e85-4df1-4fef-b1c5-28cd47952a5a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d4b32e85-4df1-4fef-b1c5-28cd47952a5a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 {
  padding-top: 10px;
max-width: 50px;
aspect-ratio: 1/1;
text-align: center;
opacity: 0.65;
background-color: rgba(0, 0, 0, 0);
}





  #s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 img.shogun-image,
  #s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 {
    width: 100%;
    height: auto;
  }

  #s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image {
    
    
  }


.s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 .shogun-image-content {
  
    align-items: center;
  
}

.s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image-container {
      position: relative;
    }

    .s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 img.shogun-image,
  #s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 {
    width: 100%;
    height: auto;
  }

  #s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image {
    
    
  }


.s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 .shogun-image-content {
  
    align-items: center;
  
}

.s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image-container {
      position: relative;
    }

    .s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 img.shogun-image,
  #s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 {
    width: 100%;
    height: auto;
  }

  #s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image {
    
    
  }


.s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 .shogun-image-content {
  
    align-items: center;
  
}

.s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image-container {
      position: relative;
    }

    .s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 img.shogun-image,
  #s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 {
    width: 100%;
    height: auto;
  }

  #s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image {
    
    
  }


.s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 .shogun-image-content {
  
    align-items: center;
  
}

.s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image-container {
      position: relative;
    }

    .s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 img.shogun-image,
  #s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 {
    width: 100%;
    height: auto;
  }

  #s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image {
    
    
  }


.s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 .shogun-image-content {
  
    align-items: center;
  
}

.s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image-container {
      position: relative;
    }

    .s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-1bd62fd9-e615-4c56-9fb8-3924fc5b1f49 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-8f935aca-54ee-4249-8de6-c311ad061817 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-left: 10%;
padding-bottom: 20px;
padding-right: 10%;
text-align: center;
}

#s-8f935aca-54ee-4249-8de6-c311ad061817 .shogun-heading-component h1 {
  color: rgba(36, 36, 36, 1);
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-72291930-ac13-4de5-b1a0-d3cf0f55d681 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 10px;
min-height: 50px;
background-color: rgba(244, 241, 234, 1);
}
@media (max-width: 767px){#s-72291930-ac13-4de5-b1a0-d3cf0f55d681 {
  margin-top: 10px;
margin-bottom: 10px;
}
}







#s-72291930-ac13-4de5-b1a0-d3cf0f55d681 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-72291930-ac13-4de5-b1a0-d3cf0f55d681.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 {
  padding-top: 10px;
max-width: 50px;
aspect-ratio: 1/1;
text-align: center;
opacity: 0.65;
background-color: rgba(0, 0, 0, 0);
}





  #s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 img.shogun-image,
  #s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 {
    width: 100%;
    height: auto;
  }

  #s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image {
    
    
  }


.s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 .shogun-image-content {
  
    align-items: center;
  
}

.s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image-container {
      position: relative;
    }

    .s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 img.shogun-image,
  #s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 {
    width: 100%;
    height: auto;
  }

  #s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image {
    
    
  }


.s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 .shogun-image-content {
  
    align-items: center;
  
}

.s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image-container {
      position: relative;
    }

    .s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 img.shogun-image,
  #s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 {
    width: 100%;
    height: auto;
  }

  #s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image {
    
    
  }


.s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 .shogun-image-content {
  
    align-items: center;
  
}

.s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image-container {
      position: relative;
    }

    .s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 img.shogun-image,
  #s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 {
    width: 100%;
    height: auto;
  }

  #s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image {
    
    
  }


.s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 .shogun-image-content {
  
    align-items: center;
  
}

.s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image-container {
      position: relative;
    }

    .s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 img.shogun-image,
  #s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 {
    width: 100%;
    height: auto;
  }

  #s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image {
    
    
  }


.s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 .shogun-image-content {
  
    align-items: center;
  
}

.s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image-container {
      position: relative;
    }

    .s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-4c79dd6f-ca40-47f9-afee-641a6b2f1b50 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-8521d92c-39bc-4e71-b3b1-e286eb860f20 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-left: 10%;
padding-bottom: 20px;
padding-right: 10%;
text-align: center;
}

#s-8521d92c-39bc-4e71-b3b1-e286eb860f20 .shogun-heading-component h1 {
  color: rgba(36, 36, 36, 1);
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-57e29f4f-9a09-418d-8abe-8b683ed22889 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 10px;
min-height: 50px;
background-color: rgba(244, 241, 234, 1);
}








#s-57e29f4f-9a09-418d-8abe-8b683ed22889 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-57e29f4f-9a09-418d-8abe-8b683ed22889.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8e834941-3675-4651-80c2-855df2053f24 {
  padding-top: 10px;
max-width: 50px;
aspect-ratio: 1/1;
text-align: center;
opacity: 0.65;
background-color: rgba(0, 0, 0, 0);
}





  #s-8e834941-3675-4651-80c2-855df2053f24 img.shogun-image,
  #s-8e834941-3675-4651-80c2-855df2053f24 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8e834941-3675-4651-80c2-855df2053f24 {
    width: 100%;
    height: auto;
  }

  #s-8e834941-3675-4651-80c2-855df2053f24 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8e834941-3675-4651-80c2-855df2053f24.shogun-image {
    
    
  }


.s-8e834941-3675-4651-80c2-855df2053f24 .shogun-image-content {
  
    align-items: center;
  
}

.s-8e834941-3675-4651-80c2-855df2053f24.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e834941-3675-4651-80c2-855df2053f24.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e834941-3675-4651-80c2-855df2053f24.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8e834941-3675-4651-80c2-855df2053f24 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8e834941-3675-4651-80c2-855df2053f24.shogun-image-container {
      position: relative;
    }

    .s-8e834941-3675-4651-80c2-855df2053f24.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8e834941-3675-4651-80c2-855df2053f24.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8e834941-3675-4651-80c2-855df2053f24 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-8e834941-3675-4651-80c2-855df2053f24 img.shogun-image,
  #s-8e834941-3675-4651-80c2-855df2053f24 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8e834941-3675-4651-80c2-855df2053f24 {
    width: 100%;
    height: auto;
  }

  #s-8e834941-3675-4651-80c2-855df2053f24 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8e834941-3675-4651-80c2-855df2053f24.shogun-image {
    
    
  }


.s-8e834941-3675-4651-80c2-855df2053f24 .shogun-image-content {
  
    align-items: center;
  
}

.s-8e834941-3675-4651-80c2-855df2053f24.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e834941-3675-4651-80c2-855df2053f24.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e834941-3675-4651-80c2-855df2053f24.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8e834941-3675-4651-80c2-855df2053f24 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8e834941-3675-4651-80c2-855df2053f24.shogun-image-container {
      position: relative;
    }

    .s-8e834941-3675-4651-80c2-855df2053f24.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8e834941-3675-4651-80c2-855df2053f24.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8e834941-3675-4651-80c2-855df2053f24 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-8e834941-3675-4651-80c2-855df2053f24 img.shogun-image,
  #s-8e834941-3675-4651-80c2-855df2053f24 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8e834941-3675-4651-80c2-855df2053f24 {
    width: 100%;
    height: auto;
  }

  #s-8e834941-3675-4651-80c2-855df2053f24 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8e834941-3675-4651-80c2-855df2053f24.shogun-image {
    
    
  }


.s-8e834941-3675-4651-80c2-855df2053f24 .shogun-image-content {
  
    align-items: center;
  
}

.s-8e834941-3675-4651-80c2-855df2053f24.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e834941-3675-4651-80c2-855df2053f24.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e834941-3675-4651-80c2-855df2053f24.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8e834941-3675-4651-80c2-855df2053f24 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8e834941-3675-4651-80c2-855df2053f24.shogun-image-container {
      position: relative;
    }

    .s-8e834941-3675-4651-80c2-855df2053f24.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8e834941-3675-4651-80c2-855df2053f24.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8e834941-3675-4651-80c2-855df2053f24 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-8e834941-3675-4651-80c2-855df2053f24 img.shogun-image,
  #s-8e834941-3675-4651-80c2-855df2053f24 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8e834941-3675-4651-80c2-855df2053f24 {
    width: 100%;
    height: auto;
  }

  #s-8e834941-3675-4651-80c2-855df2053f24 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8e834941-3675-4651-80c2-855df2053f24.shogun-image {
    
    
  }


.s-8e834941-3675-4651-80c2-855df2053f24 .shogun-image-content {
  
    align-items: center;
  
}

.s-8e834941-3675-4651-80c2-855df2053f24.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e834941-3675-4651-80c2-855df2053f24.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e834941-3675-4651-80c2-855df2053f24.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8e834941-3675-4651-80c2-855df2053f24 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8e834941-3675-4651-80c2-855df2053f24.shogun-image-container {
      position: relative;
    }

    .s-8e834941-3675-4651-80c2-855df2053f24.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8e834941-3675-4651-80c2-855df2053f24.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8e834941-3675-4651-80c2-855df2053f24 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-8e834941-3675-4651-80c2-855df2053f24 img.shogun-image,
  #s-8e834941-3675-4651-80c2-855df2053f24 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-8e834941-3675-4651-80c2-855df2053f24 {
    width: 100%;
    height: auto;
  }

  #s-8e834941-3675-4651-80c2-855df2053f24 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-8e834941-3675-4651-80c2-855df2053f24.shogun-image {
    
    
  }


.s-8e834941-3675-4651-80c2-855df2053f24 .shogun-image-content {
  
    align-items: center;
  
}

.s-8e834941-3675-4651-80c2-855df2053f24.shg-align-container {
  display: flex;
  justify-content: center
}

.s-8e834941-3675-4651-80c2-855df2053f24.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8e834941-3675-4651-80c2-855df2053f24.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-8e834941-3675-4651-80c2-855df2053f24 {
      --shg-aspect-ratio: calc(1/1); 
    }

    .s-8e834941-3675-4651-80c2-855df2053f24.shogun-image-container {
      position: relative;
    }

    .s-8e834941-3675-4651-80c2-855df2053f24.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-8e834941-3675-4651-80c2-855df2053f24.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-8e834941-3675-4651-80c2-855df2053f24 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-d21e396d-7514-4b3a-b589-2d486b2c878e {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-left: 10%;
padding-bottom: 20px;
padding-right: 10%;
text-align: center;
}

#s-d21e396d-7514-4b3a-b589-2d486b2c878e .shogun-heading-component h1 {
  color: rgba(36, 36, 36, 1);
  font-weight:  normal ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-72800f2a-6fcf-4d17-9a04-cdf36db6e369 {
  min-height: 500px;
background-color: rgba(243, 243, 243, 1);
}
@media (min-width: 1200px){#s-72800f2a-6fcf-4d17-9a04-cdf36db6e369 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-72800f2a-6fcf-4d17-9a04-cdf36db6e369 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-72800f2a-6fcf-4d17-9a04-cdf36db6e369 {
  
}
}@media (max-width: 767px){#s-72800f2a-6fcf-4d17-9a04-cdf36db6e369 {
  
}
}







#s-72800f2a-6fcf-4d17-9a04-cdf36db6e369 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-72800f2a-6fcf-4d17-9a04-cdf36db6e369.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-343082aa-c1ce-451a-9922-2914450000e7 {
  margin-top: 70px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-343082aa-c1ce-451a-9922-2914450000e7 .shogun-heading-component h1 {
  color: rgba(3, 3, 3, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 33px;
  
  letter-spacing: -1px;
  
}



#s-67ff8887-2bba-4970-8d0e-f784a0d32b04 {
  margin-top: 30px;
margin-left: 50px;
margin-bottom: 50px;
margin-right: 50px;
}
@media (min-width: 1200px){#s-67ff8887-2bba-4970-8d0e-f784a0d32b04 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-67ff8887-2bba-4970-8d0e-f784a0d32b04 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-67ff8887-2bba-4970-8d0e-f784a0d32b04 {
  
}
}@media (max-width: 767px){#s-67ff8887-2bba-4970-8d0e-f784a0d32b04 {
  
}
}
@media (min-width: 0px) {
[id="s-67ff8887-2bba-4970-8d0e-f784a0d32b04"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-67ff8887-2bba-4970-8d0e-f784a0d32b04"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-67ff8887-2bba-4970-8d0e-f784a0d32b04"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-67ff8887-2bba-4970-8d0e-f784a0d32b04"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

}

#s-15fed47e-c353-4819-898e-eb3fad40a9e4 {
  margin-bottom: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(235, 235, 235, 1);
border-style: solid;
min-height: 50px;
background-color: rgba(243, 243, 243, 1);
}








#s-15fed47e-c353-4819-898e-eb3fad40a9e4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-15fed47e-c353-4819-898e-eb3fad40a9e4.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-b9ffcac2-6299-450c-b40f-5571aeb8b718 {
  max-width: 150px;
aspect-ratio: 300/81;
text-align: center;
}





  #s-b9ffcac2-6299-450c-b40f-5571aeb8b718 img.shogun-image,
  #s-b9ffcac2-6299-450c-b40f-5571aeb8b718 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b9ffcac2-6299-450c-b40f-5571aeb8b718 {
    width: 100%;
    height: auto;
  }

  #s-b9ffcac2-6299-450c-b40f-5571aeb8b718 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image {
    
    
  }


.s-b9ffcac2-6299-450c-b40f-5571aeb8b718 .shogun-image-content {
  
    align-items: center;
  
}

.s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b9ffcac2-6299-450c-b40f-5571aeb8b718 {
      --shg-aspect-ratio: calc(300/81); 
    }

    .s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image-container {
      position: relative;
    }

    .s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b9ffcac2-6299-450c-b40f-5571aeb8b718 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-b9ffcac2-6299-450c-b40f-5571aeb8b718 img.shogun-image,
  #s-b9ffcac2-6299-450c-b40f-5571aeb8b718 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b9ffcac2-6299-450c-b40f-5571aeb8b718 {
    width: 100%;
    height: auto;
  }

  #s-b9ffcac2-6299-450c-b40f-5571aeb8b718 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image {
    
    
  }


.s-b9ffcac2-6299-450c-b40f-5571aeb8b718 .shogun-image-content {
  
    align-items: center;
  
}

.s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b9ffcac2-6299-450c-b40f-5571aeb8b718 {
      --shg-aspect-ratio: calc(300/81); 
    }

    .s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image-container {
      position: relative;
    }

    .s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b9ffcac2-6299-450c-b40f-5571aeb8b718 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-b9ffcac2-6299-450c-b40f-5571aeb8b718 img.shogun-image,
  #s-b9ffcac2-6299-450c-b40f-5571aeb8b718 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b9ffcac2-6299-450c-b40f-5571aeb8b718 {
    width: 100%;
    height: auto;
  }

  #s-b9ffcac2-6299-450c-b40f-5571aeb8b718 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image {
    
    
  }


.s-b9ffcac2-6299-450c-b40f-5571aeb8b718 .shogun-image-content {
  
    align-items: center;
  
}

.s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b9ffcac2-6299-450c-b40f-5571aeb8b718 {
      --shg-aspect-ratio: calc(300/81); 
    }

    .s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image-container {
      position: relative;
    }

    .s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b9ffcac2-6299-450c-b40f-5571aeb8b718 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-b9ffcac2-6299-450c-b40f-5571aeb8b718 img.shogun-image,
  #s-b9ffcac2-6299-450c-b40f-5571aeb8b718 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b9ffcac2-6299-450c-b40f-5571aeb8b718 {
    width: 100%;
    height: auto;
  }

  #s-b9ffcac2-6299-450c-b40f-5571aeb8b718 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image {
    
    
  }


.s-b9ffcac2-6299-450c-b40f-5571aeb8b718 .shogun-image-content {
  
    align-items: center;
  
}

.s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b9ffcac2-6299-450c-b40f-5571aeb8b718 {
      --shg-aspect-ratio: calc(300/81); 
    }

    .s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image-container {
      position: relative;
    }

    .s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b9ffcac2-6299-450c-b40f-5571aeb8b718 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-b9ffcac2-6299-450c-b40f-5571aeb8b718 img.shogun-image,
  #s-b9ffcac2-6299-450c-b40f-5571aeb8b718 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b9ffcac2-6299-450c-b40f-5571aeb8b718 {
    width: 100%;
    height: auto;
  }

  #s-b9ffcac2-6299-450c-b40f-5571aeb8b718 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image {
    
    
  }


.s-b9ffcac2-6299-450c-b40f-5571aeb8b718 .shogun-image-content {
  
    align-items: center;
  
}

.s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-b9ffcac2-6299-450c-b40f-5571aeb8b718 {
      --shg-aspect-ratio: calc(300/81); 
    }

    .s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image-container {
      position: relative;
    }

    .s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b9ffcac2-6299-450c-b40f-5571aeb8b718.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b9ffcac2-6299-450c-b40f-5571aeb8b718 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
.shg-rich-text {
  overflow-wrap: break-word;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-277f069f-4008-46d7-b3c9-31947fdc7085 {
  margin-top: 0px;
margin-left: 20px;
margin-bottom: 40px;
margin-right: 20px;
opacity: 1;
}
@media (min-width: 1200px){#s-277f069f-4008-46d7-b3c9-31947fdc7085 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-277f069f-4008-46d7-b3c9-31947fdc7085 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-277f069f-4008-46d7-b3c9-31947fdc7085 {
  
}
}@media (max-width: 767px){#s-277f069f-4008-46d7-b3c9-31947fdc7085 {
  
}
}
#s-f8863d49-ffdf-41d1-be98-a924db81cfc2 {
  max-width: 150px;
aspect-ratio: 300/81;
text-align: center;
}





  #s-f8863d49-ffdf-41d1-be98-a924db81cfc2 img.shogun-image,
  #s-f8863d49-ffdf-41d1-be98-a924db81cfc2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f8863d49-ffdf-41d1-be98-a924db81cfc2 {
    width: 100%;
    height: auto;
  }

  #s-f8863d49-ffdf-41d1-be98-a924db81cfc2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image {
    
    
  }


.s-f8863d49-ffdf-41d1-be98-a924db81cfc2 .shogun-image-content {
  
    align-items: center;
  
}

.s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f8863d49-ffdf-41d1-be98-a924db81cfc2 {
      --shg-aspect-ratio: calc(300/81); 
    }

    .s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image-container {
      position: relative;
    }

    .s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f8863d49-ffdf-41d1-be98-a924db81cfc2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-f8863d49-ffdf-41d1-be98-a924db81cfc2 img.shogun-image,
  #s-f8863d49-ffdf-41d1-be98-a924db81cfc2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f8863d49-ffdf-41d1-be98-a924db81cfc2 {
    width: 100%;
    height: auto;
  }

  #s-f8863d49-ffdf-41d1-be98-a924db81cfc2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image {
    
    
  }


.s-f8863d49-ffdf-41d1-be98-a924db81cfc2 .shogun-image-content {
  
    align-items: center;
  
}

.s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f8863d49-ffdf-41d1-be98-a924db81cfc2 {
      --shg-aspect-ratio: calc(300/81); 
    }

    .s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image-container {
      position: relative;
    }

    .s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f8863d49-ffdf-41d1-be98-a924db81cfc2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-f8863d49-ffdf-41d1-be98-a924db81cfc2 img.shogun-image,
  #s-f8863d49-ffdf-41d1-be98-a924db81cfc2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f8863d49-ffdf-41d1-be98-a924db81cfc2 {
    width: 100%;
    height: auto;
  }

  #s-f8863d49-ffdf-41d1-be98-a924db81cfc2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image {
    
    
  }


.s-f8863d49-ffdf-41d1-be98-a924db81cfc2 .shogun-image-content {
  
    align-items: center;
  
}

.s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f8863d49-ffdf-41d1-be98-a924db81cfc2 {
      --shg-aspect-ratio: calc(300/81); 
    }

    .s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image-container {
      position: relative;
    }

    .s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f8863d49-ffdf-41d1-be98-a924db81cfc2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-f8863d49-ffdf-41d1-be98-a924db81cfc2 img.shogun-image,
  #s-f8863d49-ffdf-41d1-be98-a924db81cfc2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f8863d49-ffdf-41d1-be98-a924db81cfc2 {
    width: 100%;
    height: auto;
  }

  #s-f8863d49-ffdf-41d1-be98-a924db81cfc2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image {
    
    
  }


.s-f8863d49-ffdf-41d1-be98-a924db81cfc2 .shogun-image-content {
  
    align-items: center;
  
}

.s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f8863d49-ffdf-41d1-be98-a924db81cfc2 {
      --shg-aspect-ratio: calc(300/81); 
    }

    .s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image-container {
      position: relative;
    }

    .s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f8863d49-ffdf-41d1-be98-a924db81cfc2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-f8863d49-ffdf-41d1-be98-a924db81cfc2 img.shogun-image,
  #s-f8863d49-ffdf-41d1-be98-a924db81cfc2 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f8863d49-ffdf-41d1-be98-a924db81cfc2 {
    width: 100%;
    height: auto;
  }

  #s-f8863d49-ffdf-41d1-be98-a924db81cfc2 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image {
    
    
  }


.s-f8863d49-ffdf-41d1-be98-a924db81cfc2 .shogun-image-content {
  
    align-items: center;
  
}

.s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-f8863d49-ffdf-41d1-be98-a924db81cfc2 {
      --shg-aspect-ratio: calc(300/81); 
    }

    .s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image-container {
      position: relative;
    }

    .s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-f8863d49-ffdf-41d1-be98-a924db81cfc2.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-f8863d49-ffdf-41d1-be98-a924db81cfc2 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-58f37061-ea0d-4184-b4f5-011e97d5ea9f {
  margin-bottom: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(235, 235, 235, 1);
border-style: solid;
min-height: 50px;
background-color: rgba(243, 243, 243, 1);
}








#s-58f37061-ea0d-4184-b4f5-011e97d5ea9f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-58f37061-ea0d-4184-b4f5-011e97d5ea9f.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-705c85de-839a-4623-8fc0-b336742eaafc {
  margin-top: 0px;
margin-left: 20px;
margin-bottom: 40px;
margin-right: 20px;
opacity: 1;
}
@media (min-width: 1200px){#s-705c85de-839a-4623-8fc0-b336742eaafc {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-705c85de-839a-4623-8fc0-b336742eaafc {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-705c85de-839a-4623-8fc0-b336742eaafc {
  
}
}@media (max-width: 767px){#s-705c85de-839a-4623-8fc0-b336742eaafc {
  
}
}
#s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 {
  max-width: 150px;
aspect-ratio: 300/81;
text-align: center;
}





  #s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 img.shogun-image,
  #s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 {
    width: 100%;
    height: auto;
  }

  #s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image {
    
    
  }


.s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 .shogun-image-content {
  
    align-items: center;
  
}

.s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 {
      --shg-aspect-ratio: calc(300/81); 
    }

    .s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image-container {
      position: relative;
    }

    .s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 img.shogun-image,
  #s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 {
    width: 100%;
    height: auto;
  }

  #s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image {
    
    
  }


.s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 .shogun-image-content {
  
    align-items: center;
  
}

.s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 {
      --shg-aspect-ratio: calc(300/81); 
    }

    .s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image-container {
      position: relative;
    }

    .s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 img.shogun-image,
  #s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 {
    width: 100%;
    height: auto;
  }

  #s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image {
    
    
  }


.s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 .shogun-image-content {
  
    align-items: center;
  
}

.s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 {
      --shg-aspect-ratio: calc(300/81); 
    }

    .s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image-container {
      position: relative;
    }

    .s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 img.shogun-image,
  #s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 {
    width: 100%;
    height: auto;
  }

  #s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image {
    
    
  }


.s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 .shogun-image-content {
  
    align-items: center;
  
}

.s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 {
      --shg-aspect-ratio: calc(300/81); 
    }

    .s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image-container {
      position: relative;
    }

    .s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 img.shogun-image,
  #s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 {
    width: 100%;
    height: auto;
  }

  #s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image {
    
    
  }


.s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 .shogun-image-content {
  
    align-items: center;
  
}

.s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 {
      --shg-aspect-ratio: calc(300/81); 
    }

    .s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image-container {
      position: relative;
    }

    .s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-80f4ae0a-c879-4b8c-bffc-179ed62ac6f7 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-9056b0c2-2181-466e-b231-843084fd72ce {
  margin-top: 0px;
margin-left: 20px;
margin-bottom: 40px;
margin-right: 20px;
opacity: 1;
}
@media (min-width: 1200px){#s-9056b0c2-2181-466e-b231-843084fd72ce {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9056b0c2-2181-466e-b231-843084fd72ce {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-9056b0c2-2181-466e-b231-843084fd72ce {
  
}
}@media (max-width: 767px){#s-9056b0c2-2181-466e-b231-843084fd72ce {
  
}
}
#s-5e69d05f-65c7-499c-b9ac-f360ea21df86 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 50px;
padding-bottom: 50px;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}








#s-5e69d05f-65c7-499c-b9ac-f360ea21df86 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5e69d05f-65c7-499c-b9ac-f360ea21df86.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-209c1128-b1ca-42bf-8c02-30358bed6527 {
  margin-left: 10%;
margin-right: 10%;
background-color: rgba(0, 0, 0, 1);
}

@media (min-width: 0px) {
[id="s-209c1128-b1ca-42bf-8c02-30358bed6527"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-209c1128-b1ca-42bf-8c02-30358bed6527"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-209c1128-b1ca-42bf-8c02-30358bed6527"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-209c1128-b1ca-42bf-8c02-30358bed6527"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-549decd8-1a95-44c6-a05f-aaef190b687f {
  max-width: 1114px;
aspect-ratio: 1114/170;
text-align: center;
}





  #s-549decd8-1a95-44c6-a05f-aaef190b687f img.shogun-image,
  #s-549decd8-1a95-44c6-a05f-aaef190b687f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-549decd8-1a95-44c6-a05f-aaef190b687f {
    width: 100%;
    height: auto;
  }

  #s-549decd8-1a95-44c6-a05f-aaef190b687f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image {
    
    
  }


.s-549decd8-1a95-44c6-a05f-aaef190b687f .shogun-image-content {
  
    align-items: center;
  
}

.s-549decd8-1a95-44c6-a05f-aaef190b687f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-549decd8-1a95-44c6-a05f-aaef190b687f {
      --shg-aspect-ratio: calc(1114/170); 
    }

    .s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image-container {
      position: relative;
    }

    .s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-549decd8-1a95-44c6-a05f-aaef190b687f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-549decd8-1a95-44c6-a05f-aaef190b687f img.shogun-image,
  #s-549decd8-1a95-44c6-a05f-aaef190b687f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-549decd8-1a95-44c6-a05f-aaef190b687f {
    width: 100%;
    height: auto;
  }

  #s-549decd8-1a95-44c6-a05f-aaef190b687f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image {
    
    
  }


.s-549decd8-1a95-44c6-a05f-aaef190b687f .shogun-image-content {
  
    align-items: center;
  
}

.s-549decd8-1a95-44c6-a05f-aaef190b687f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-549decd8-1a95-44c6-a05f-aaef190b687f {
      --shg-aspect-ratio: calc(1114/170); 
    }

    .s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image-container {
      position: relative;
    }

    .s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-549decd8-1a95-44c6-a05f-aaef190b687f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-549decd8-1a95-44c6-a05f-aaef190b687f img.shogun-image,
  #s-549decd8-1a95-44c6-a05f-aaef190b687f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-549decd8-1a95-44c6-a05f-aaef190b687f {
    width: 100%;
    height: auto;
  }

  #s-549decd8-1a95-44c6-a05f-aaef190b687f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image {
    
    
  }


.s-549decd8-1a95-44c6-a05f-aaef190b687f .shogun-image-content {
  
    align-items: center;
  
}

.s-549decd8-1a95-44c6-a05f-aaef190b687f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-549decd8-1a95-44c6-a05f-aaef190b687f {
      --shg-aspect-ratio: calc(1114/170); 
    }

    .s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image-container {
      position: relative;
    }

    .s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-549decd8-1a95-44c6-a05f-aaef190b687f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-549decd8-1a95-44c6-a05f-aaef190b687f img.shogun-image,
  #s-549decd8-1a95-44c6-a05f-aaef190b687f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-549decd8-1a95-44c6-a05f-aaef190b687f {
    width: 100%;
    height: auto;
  }

  #s-549decd8-1a95-44c6-a05f-aaef190b687f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image {
    
    
  }


.s-549decd8-1a95-44c6-a05f-aaef190b687f .shogun-image-content {
  
    align-items: center;
  
}

.s-549decd8-1a95-44c6-a05f-aaef190b687f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-549decd8-1a95-44c6-a05f-aaef190b687f {
      --shg-aspect-ratio: calc(1114/170); 
    }

    .s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image-container {
      position: relative;
    }

    .s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-549decd8-1a95-44c6-a05f-aaef190b687f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-549decd8-1a95-44c6-a05f-aaef190b687f img.shogun-image,
  #s-549decd8-1a95-44c6-a05f-aaef190b687f .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-549decd8-1a95-44c6-a05f-aaef190b687f {
    width: 100%;
    height: auto;
  }

  #s-549decd8-1a95-44c6-a05f-aaef190b687f img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image {
    
    
  }


.s-549decd8-1a95-44c6-a05f-aaef190b687f .shogun-image-content {
  
    align-items: center;
  
}

.s-549decd8-1a95-44c6-a05f-aaef190b687f.shg-align-container {
  display: flex;
  justify-content: center
}

.s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-549decd8-1a95-44c6-a05f-aaef190b687f {
      --shg-aspect-ratio: calc(1114/170); 
    }

    .s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image-container {
      position: relative;
    }

    .s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-549decd8-1a95-44c6-a05f-aaef190b687f.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-549decd8-1a95-44c6-a05f-aaef190b687f img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-77d33d42-6431-4bac-b0f0-935374801415 {
  max-width: 1256px;
aspect-ratio: 1256/166;
text-align: center;
}





  #s-77d33d42-6431-4bac-b0f0-935374801415 img.shogun-image,
  #s-77d33d42-6431-4bac-b0f0-935374801415 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-77d33d42-6431-4bac-b0f0-935374801415 {
    width: 100%;
    height: auto;
  }

  #s-77d33d42-6431-4bac-b0f0-935374801415 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image {
    
    
  }


.s-77d33d42-6431-4bac-b0f0-935374801415 .shogun-image-content {
  
    align-items: center;
  
}

.s-77d33d42-6431-4bac-b0f0-935374801415.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77d33d42-6431-4bac-b0f0-935374801415 {
      --shg-aspect-ratio: calc(1256/166); 
    }

    .s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image-container {
      position: relative;
    }

    .s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77d33d42-6431-4bac-b0f0-935374801415 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-77d33d42-6431-4bac-b0f0-935374801415 img.shogun-image,
  #s-77d33d42-6431-4bac-b0f0-935374801415 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-77d33d42-6431-4bac-b0f0-935374801415 {
    width: 100%;
    height: auto;
  }

  #s-77d33d42-6431-4bac-b0f0-935374801415 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image {
    
    
  }


.s-77d33d42-6431-4bac-b0f0-935374801415 .shogun-image-content {
  
    align-items: center;
  
}

.s-77d33d42-6431-4bac-b0f0-935374801415.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77d33d42-6431-4bac-b0f0-935374801415 {
      --shg-aspect-ratio: calc(1256/166); 
    }

    .s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image-container {
      position: relative;
    }

    .s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77d33d42-6431-4bac-b0f0-935374801415 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-77d33d42-6431-4bac-b0f0-935374801415 img.shogun-image,
  #s-77d33d42-6431-4bac-b0f0-935374801415 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-77d33d42-6431-4bac-b0f0-935374801415 {
    width: 100%;
    height: auto;
  }

  #s-77d33d42-6431-4bac-b0f0-935374801415 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image {
    
    
  }


.s-77d33d42-6431-4bac-b0f0-935374801415 .shogun-image-content {
  
    align-items: center;
  
}

.s-77d33d42-6431-4bac-b0f0-935374801415.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77d33d42-6431-4bac-b0f0-935374801415 {
      --shg-aspect-ratio: calc(1256/166); 
    }

    .s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image-container {
      position: relative;
    }

    .s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77d33d42-6431-4bac-b0f0-935374801415 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-77d33d42-6431-4bac-b0f0-935374801415 img.shogun-image,
  #s-77d33d42-6431-4bac-b0f0-935374801415 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-77d33d42-6431-4bac-b0f0-935374801415 {
    width: 100%;
    height: auto;
  }

  #s-77d33d42-6431-4bac-b0f0-935374801415 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image {
    
    
  }


.s-77d33d42-6431-4bac-b0f0-935374801415 .shogun-image-content {
  
    align-items: center;
  
}

.s-77d33d42-6431-4bac-b0f0-935374801415.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77d33d42-6431-4bac-b0f0-935374801415 {
      --shg-aspect-ratio: calc(1256/166); 
    }

    .s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image-container {
      position: relative;
    }

    .s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77d33d42-6431-4bac-b0f0-935374801415 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-77d33d42-6431-4bac-b0f0-935374801415 img.shogun-image,
  #s-77d33d42-6431-4bac-b0f0-935374801415 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-77d33d42-6431-4bac-b0f0-935374801415 {
    width: 100%;
    height: auto;
  }

  #s-77d33d42-6431-4bac-b0f0-935374801415 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image {
    
    
  }


.s-77d33d42-6431-4bac-b0f0-935374801415 .shogun-image-content {
  
    align-items: center;
  
}

.s-77d33d42-6431-4bac-b0f0-935374801415.shg-align-container {
  display: flex;
  justify-content: center
}

.s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-77d33d42-6431-4bac-b0f0-935374801415 {
      --shg-aspect-ratio: calc(1256/166); 
    }

    .s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image-container {
      position: relative;
    }

    .s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-77d33d42-6431-4bac-b0f0-935374801415.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-77d33d42-6431-4bac-b0f0-935374801415 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-20b09c47-2a16-4f87-ba76-c43176872bab {
  margin-top: 40px;
margin-left: 10%;
margin-bottom: 10px;
margin-right: 10%;
}

@media (min-width: 0px) {
[id="s-20b09c47-2a16-4f87-ba76-c43176872bab"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-20b09c47-2a16-4f87-ba76-c43176872bab"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 40.0px);
}

}

@media (min-width: 992px) {
[id="s-20b09c47-2a16-4f87-ba76-c43176872bab"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 40.0px);
}

}

@media (min-width: 1200px) {
[id="s-20b09c47-2a16-4f87-ba76-c43176872bab"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 40.0px);
}

}

#s-e454ee66-01e2-42a5-83c2-cd60860b7c24 {
  max-width: 500px;
aspect-ratio: 651/137;
text-align: right;
}





  #s-e454ee66-01e2-42a5-83c2-cd60860b7c24 img.shogun-image,
  #s-e454ee66-01e2-42a5-83c2-cd60860b7c24 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e454ee66-01e2-42a5-83c2-cd60860b7c24 {
    width: 100%;
    height: auto;
  }

  #s-e454ee66-01e2-42a5-83c2-cd60860b7c24 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image {
    
    
  }


.s-e454ee66-01e2-42a5-83c2-cd60860b7c24 .shogun-image-content {
  
    align-items: center;
  
}

.s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shg-align-container {
  display: flex;
  justify-content: flex-end
}

.s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e454ee66-01e2-42a5-83c2-cd60860b7c24 {
      --shg-aspect-ratio: calc(651/137); 
    }

    .s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image-container {
      position: relative;
    }

    .s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e454ee66-01e2-42a5-83c2-cd60860b7c24 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-e454ee66-01e2-42a5-83c2-cd60860b7c24 img.shogun-image,
  #s-e454ee66-01e2-42a5-83c2-cd60860b7c24 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e454ee66-01e2-42a5-83c2-cd60860b7c24 {
    width: 100%;
    height: auto;
  }

  #s-e454ee66-01e2-42a5-83c2-cd60860b7c24 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image {
    
    
  }


.s-e454ee66-01e2-42a5-83c2-cd60860b7c24 .shogun-image-content {
  
    align-items: center;
  
}

.s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shg-align-container {
  display: flex;
  justify-content: flex-end
}

.s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e454ee66-01e2-42a5-83c2-cd60860b7c24 {
      --shg-aspect-ratio: calc(651/137); 
    }

    .s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image-container {
      position: relative;
    }

    .s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e454ee66-01e2-42a5-83c2-cd60860b7c24 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-e454ee66-01e2-42a5-83c2-cd60860b7c24 img.shogun-image,
  #s-e454ee66-01e2-42a5-83c2-cd60860b7c24 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e454ee66-01e2-42a5-83c2-cd60860b7c24 {
    width: 100%;
    height: auto;
  }

  #s-e454ee66-01e2-42a5-83c2-cd60860b7c24 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image {
    
    
  }


.s-e454ee66-01e2-42a5-83c2-cd60860b7c24 .shogun-image-content {
  
    align-items: center;
  
}

.s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shg-align-container {
  display: flex;
  justify-content: flex-end
}

.s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e454ee66-01e2-42a5-83c2-cd60860b7c24 {
      --shg-aspect-ratio: calc(651/137); 
    }

    .s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image-container {
      position: relative;
    }

    .s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e454ee66-01e2-42a5-83c2-cd60860b7c24 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-e454ee66-01e2-42a5-83c2-cd60860b7c24 img.shogun-image,
  #s-e454ee66-01e2-42a5-83c2-cd60860b7c24 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e454ee66-01e2-42a5-83c2-cd60860b7c24 {
    width: 100%;
    height: auto;
  }

  #s-e454ee66-01e2-42a5-83c2-cd60860b7c24 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image {
    
    
  }


.s-e454ee66-01e2-42a5-83c2-cd60860b7c24 .shogun-image-content {
  
    align-items: center;
  
}

.s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shg-align-container {
  display: flex;
  justify-content: flex-end
}

.s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e454ee66-01e2-42a5-83c2-cd60860b7c24 {
      --shg-aspect-ratio: calc(651/137); 
    }

    .s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image-container {
      position: relative;
    }

    .s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e454ee66-01e2-42a5-83c2-cd60860b7c24 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-e454ee66-01e2-42a5-83c2-cd60860b7c24 img.shogun-image,
  #s-e454ee66-01e2-42a5-83c2-cd60860b7c24 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-e454ee66-01e2-42a5-83c2-cd60860b7c24 {
    width: 100%;
    height: auto;
  }

  #s-e454ee66-01e2-42a5-83c2-cd60860b7c24 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image {
    
    
  }


.s-e454ee66-01e2-42a5-83c2-cd60860b7c24 .shogun-image-content {
  
    align-items: center;
  
}

.s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shg-align-container {
  display: flex;
  justify-content: flex-end
}

.s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-e454ee66-01e2-42a5-83c2-cd60860b7c24 {
      --shg-aspect-ratio: calc(651/137); 
    }

    .s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image-container {
      position: relative;
    }

    .s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-e454ee66-01e2-42a5-83c2-cd60860b7c24.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-e454ee66-01e2-42a5-83c2-cd60860b7c24 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 {
  max-width: 500px;
aspect-ratio: 651/137;
text-align: left;
}





  #s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 img.shogun-image,
  #s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 {
    width: 100%;
    height: auto;
  }

  #s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image {
    
    
  }


.s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 .shogun-image-content {
  
    align-items: center;
  
}

.s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 {
      --shg-aspect-ratio: calc(651/137); 
    }

    .s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image-container {
      position: relative;
    }

    .s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 img.shogun-image,
  #s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 {
    width: 100%;
    height: auto;
  }

  #s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image {
    
    
  }


.s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 .shogun-image-content {
  
    align-items: center;
  
}

.s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 {
      --shg-aspect-ratio: calc(651/137); 
    }

    .s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image-container {
      position: relative;
    }

    .s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 img.shogun-image,
  #s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 {
    width: 100%;
    height: auto;
  }

  #s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image {
    
    
  }


.s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 .shogun-image-content {
  
    align-items: center;
  
}

.s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 {
      --shg-aspect-ratio: calc(651/137); 
    }

    .s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image-container {
      position: relative;
    }

    .s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 img.shogun-image,
  #s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 {
    width: 100%;
    height: auto;
  }

  #s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image {
    
    
  }


.s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 .shogun-image-content {
  
    align-items: center;
  
}

.s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 {
      --shg-aspect-ratio: calc(651/137); 
    }

    .s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image-container {
      position: relative;
    }

    .s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 img.shogun-image,
  #s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 {
    width: 100%;
    height: auto;
  }

  #s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image {
    
    
  }


.s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 .shogun-image-content {
  
    align-items: center;
  
}

.s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 {
      --shg-aspect-ratio: calc(651/137); 
    }

    .s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image-container {
      position: relative;
    }

    .s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-ef417504-3fbb-4a54-a0ee-34eff076ecd8.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-ef417504-3fbb-4a54-a0ee-34eff076ecd8 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}
.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-lazyload-bg-image {
  display: none;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}
/* <-- User Content Animations */

.shogun-form-error-msg, .shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

.shg-c:before,.shg-c:after{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width: 1024px){.shg-c,.shg-box{background-attachment:scroll !important}}@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape){.shg-box{background-attachment:scroll !important}}#mc_embed_signup .clear{width:auto !important;height:auto !important;visibility:visible !important}.shg-clearfix:after{content:"";display:block;clear:both}.shogun-image{max-width:100%;min-height:inherit;max-height:inherit;display:inline !important;border:0;vertical-align:middle}.shg-fw{margin-left:calc(50% - 50vw);width:100vw}.shg-fw .shg-fw{margin-left:auto;margin-right:auto;width:100%}div[data-shg-lightbox-switch]{cursor:pointer}.shg-lightbox{position:fixed;z-index:999999;left:0;top:0;width:100%;height:100%;overflow:hidden;background-color:#000;background-color:rgba(0,0,0,0.85)}.shg-lightbox.hidden{display:none !important}.shg-lightbox .shg-lightbox-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;text-align:center}.shg-lightbox .shg-lightbox-close{position:absolute;right:0;padding:5px 0;color:#fff;font-size:45px;margin-right:10px;line-height:30px;user-select:none;cursor:pointer;z-index:1}.shg-lightbox .shg-lightbox-image-container{padding:25px}.shg-lightbox .shg-lightbox-image{margin:auto;max-height:90vh;max-width:100%}.shg-lightbox .shg-lightbox-close:hover,.shg-lightbox .shg-lightbox-close:focus{color:#a2a2a2;text-decoration:none;cursor:pointer}.shg-lightbox .shg-lightbox-nav{cursor:pointer;position:absolute;top:50%;width:35px;height:100px;background-size:contain;background-repeat:no-repeat;background-position:center;transform:translate(0%, -50%);z-index:1}.shg-lightbox .shg-lightbox-nav.hidden{display:none !important}.shg-lightbox .shg-lightbox-nav.shg-nav-left{left:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==)}.shg-lightbox .shg-lightbox-nav.shg-nav-right{right:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+)}@media screen and (min-width: 769px){.shg-lightbox .shg-lightbox-image-container{padding:50px}}.shogun-lazyload:not([src]),.shogun-lazyloading:not([src]){opacity:0}.shogun-lazyloaded{opacity:1;transition:opacity 300ms}.shogun-lazyload-bg-image{display:none}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{display:inline-block}[data-animations*="enterviewport"][data-animations*="fadeIn"],[data-animations*="enterviewport"][data-animations*="zoomIn"]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}
