.shg-sld-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.shg-sld-slides {
  word-break: break-word;
  position: relative;
}

.shg-sld-slides-padded {
  padding: 0 35px;
}

.shg-sld-nav-button {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 0;
  width: 35px;
  min-height: 35px;
  height: 100%;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.shg-sld-nav-button > svg {
  height: 100%;
  width: 100%;
}

.shg-sld-nav-button.shg-sld-left {
  left: 0;
}

.shg-sld-nav-button.shg-sld-left-over-content {
  left: 2%;
}

.shg-sld-nav-button.shg-sld-right {
  right: 0;
}

.shg-sld-nav-button.shg-sld-right-over-content {
  right: 2%;
}

.shg-sld-nav-button.shg-sld-disabled {
  cursor: default;
  opacity: 0.2;
}

.shg-sld-item {
  display: none;
}

.shg-sld-item.shg-sld-active {
  display: block;
}

.shg-sld-dots {
  margin-top: 10px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.shg-sld-dots-on-top {
  margin-top: -30px !important;
}

.shg-sld-dot {
  cursor: pointer;
  display: inline-block !important;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  margin-left: 5px;
  opacity: 0.5;
}

.shg-sld-dot:first-child {
  margin-left: 0px;
}

.shg-sld-dot.shg-sld-active {
  opacity: 1;
}

@keyframes shg-sld-fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

#s-dac0d918-5793-43f3-84a3-90f3f4696d22 {
  margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 8px;
}
@media (max-width: 767px){#s-dac0d918-5793-43f3-84a3-90f3f4696d22 {
  display: none;
}
#s-dac0d918-5793-43f3-84a3-90f3f4696d22, #wrap-s-dac0d918-5793-43f3-84a3-90f3f4696d22 { display: none !important; }}
#s-dac0d918-5793-43f3-84a3-90f3f4696d22 .shg-sld-dot {
  background-color: rgba(251, 251, 251, 1);
}

#s-dac0d918-5793-43f3-84a3-90f3f4696d22 .shg-sld-nav-button.shg-sld-left,
#s-dac0d918-5793-43f3-84a3-90f3f4696d22 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(251, 251, 251, 1);
}

.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-c5dfe49b-4920-410e-b966-71263e45bc2c {
  min-height: 50px;
background-attachment: scroll;
}








#s-c5dfe49b-4920-410e-b966-71263e45bc2c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c5dfe49b-4920-410e-b966-71263e45bc2c {
  cursor: pointer;
}#s-c5dfe49b-4920-410e-b966-71263e45bc2c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-b3d3ff88-94f2-4478-a8a9-3ee5cd70e19d {
  text-align: center;
}







  #s-b3d3ff88-94f2-4478-a8a9-3ee5cd70e19d img.shogun-image {
    

    
    
    
  }


#s-b3d3ff88-94f2-4478-a8a9-3ee5cd70e19d .shogun-image-content {
  
    align-items: center;
  
}

#s-5f27e528-1629-47a2-adcd-682465805e43 {
  min-height: 50px;
}








#s-5f27e528-1629-47a2-adcd-682465805e43 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5f27e528-1629-47a2-adcd-682465805e43 {
  cursor: pointer;
}#s-5f27e528-1629-47a2-adcd-682465805e43.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a1dfa794-1f44-475f-b345-d5e91067ebc1 {
  padding-bottom: 0px;
text-align: center;
}







  #s-a1dfa794-1f44-475f-b345-d5e91067ebc1 img.shogun-image {
    

    
    
    
  }


#s-a1dfa794-1f44-475f-b345-d5e91067ebc1 .shogun-image-content {
  
    align-items: center;
  
}

#s-56ce2d79-059b-493c-b783-0d76cf956b9e {
  min-height: 50px;
}








#s-56ce2d79-059b-493c-b783-0d76cf956b9e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-56ce2d79-059b-493c-b783-0d76cf956b9e {
  cursor: pointer;
}#s-56ce2d79-059b-493c-b783-0d76cf956b9e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d265f79d-fdc7-4c23-9479-a724e268a64e {
  aspect-ratio: 1920/660;
text-align: center;
}







  #s-d265f79d-fdc7-4c23-9479-a724e268a64e img.shogun-image {
    

    
    
    
  }


#s-d265f79d-fdc7-4c23-9479-a724e268a64e .shogun-image-content {
  
    align-items: center;
  
}

#s-1b943f42-8ed5-4c52-bfe6-7218f4f9ebea {
  margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
}
@media (min-width: 1200px){#s-1b943f42-8ed5-4c52-bfe6-7218f4f9ebea {
  display: none;
}
#s-1b943f42-8ed5-4c52-bfe6-7218f4f9ebea, #wrap-s-1b943f42-8ed5-4c52-bfe6-7218f4f9ebea { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1b943f42-8ed5-4c52-bfe6-7218f4f9ebea {
  display: none;
}
#s-1b943f42-8ed5-4c52-bfe6-7218f4f9ebea, #wrap-s-1b943f42-8ed5-4c52-bfe6-7218f4f9ebea { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1b943f42-8ed5-4c52-bfe6-7218f4f9ebea {
  display: none;
}
#s-1b943f42-8ed5-4c52-bfe6-7218f4f9ebea, #wrap-s-1b943f42-8ed5-4c52-bfe6-7218f4f9ebea { display: none !important; }}
#s-1b943f42-8ed5-4c52-bfe6-7218f4f9ebea .shg-sld-dot {
  background-color: rgba(251, 251, 251, 1);
}

#s-1b943f42-8ed5-4c52-bfe6-7218f4f9ebea .shg-sld-nav-button.shg-sld-left,
#s-1b943f42-8ed5-4c52-bfe6-7218f4f9ebea .shg-sld-nav-button.shg-sld-right {
  fill: rgba(251, 251, 251, 1);
}

#s-8e4cc07c-ecb5-490d-a3f0-1b2f804d912a {
  min-height: 50px;
background-attachment: scroll;
}








#s-8e4cc07c-ecb5-490d-a3f0-1b2f804d912a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8e4cc07c-ecb5-490d-a3f0-1b2f804d912a {
  cursor: pointer;
}#s-8e4cc07c-ecb5-490d-a3f0-1b2f804d912a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7ecc195a-00b5-4ee7-ac7e-b7a5b2248ce6 {
  max-width: 835px;
aspect-ratio: 835/1011;
text-align: center;
}
@media (min-width: 1200px){#s-7ecc195a-00b5-4ee7-ac7e-b7a5b2248ce6 {
  display: none;
}
#s-7ecc195a-00b5-4ee7-ac7e-b7a5b2248ce6, #wrap-s-7ecc195a-00b5-4ee7-ac7e-b7a5b2248ce6 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7ecc195a-00b5-4ee7-ac7e-b7a5b2248ce6 {
  display: none;
}
#s-7ecc195a-00b5-4ee7-ac7e-b7a5b2248ce6, #wrap-s-7ecc195a-00b5-4ee7-ac7e-b7a5b2248ce6 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7ecc195a-00b5-4ee7-ac7e-b7a5b2248ce6 {
  display: none;
}
#s-7ecc195a-00b5-4ee7-ac7e-b7a5b2248ce6, #wrap-s-7ecc195a-00b5-4ee7-ac7e-b7a5b2248ce6 { display: none !important; }}




  #s-7ecc195a-00b5-4ee7-ac7e-b7a5b2248ce6 img.shogun-image,
  #s-7ecc195a-00b5-4ee7-ac7e-b7a5b2248ce6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7ecc195a-00b5-4ee7-ac7e-b7a5b2248ce6 {
    width: 100%;
    height: auto;
  }



  #s-7ecc195a-00b5-4ee7-ac7e-b7a5b2248ce6 img.shogun-image {
    

    
    
    
  }


#s-7ecc195a-00b5-4ee7-ac7e-b7a5b2248ce6 .shogun-image-content {
  
    align-items: center;
  
}

#s-0c26721c-edfd-43b7-adb1-41eab762f397 {
  min-height: 50px;
}








#s-0c26721c-edfd-43b7-adb1-41eab762f397 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0c26721c-edfd-43b7-adb1-41eab762f397 {
  cursor: pointer;
}#s-0c26721c-edfd-43b7-adb1-41eab762f397.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a5b52043-ba85-43a8-b418-2496914c76bb {
  max-width: 835px;
aspect-ratio: 835/1011;
text-align: center;
}
@media (min-width: 1200px){#s-a5b52043-ba85-43a8-b418-2496914c76bb {
  display: none;
}
#s-a5b52043-ba85-43a8-b418-2496914c76bb, #wrap-s-a5b52043-ba85-43a8-b418-2496914c76bb { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a5b52043-ba85-43a8-b418-2496914c76bb {
  display: none;
}
#s-a5b52043-ba85-43a8-b418-2496914c76bb, #wrap-s-a5b52043-ba85-43a8-b418-2496914c76bb { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a5b52043-ba85-43a8-b418-2496914c76bb {
  display: none;
}
#s-a5b52043-ba85-43a8-b418-2496914c76bb, #wrap-s-a5b52043-ba85-43a8-b418-2496914c76bb { display: none !important; }}




  #s-a5b52043-ba85-43a8-b418-2496914c76bb img.shogun-image,
  #s-a5b52043-ba85-43a8-b418-2496914c76bb .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-a5b52043-ba85-43a8-b418-2496914c76bb {
    width: 100%;
    height: auto;
  }



  #s-a5b52043-ba85-43a8-b418-2496914c76bb img.shogun-image {
    

    
    
    
  }


#s-a5b52043-ba85-43a8-b418-2496914c76bb .shogun-image-content {
  
    align-items: center;
  
}

#s-697ef99e-e510-4059-9066-9c16a47dc74e {
  min-height: 50px;
}








#s-697ef99e-e510-4059-9066-9c16a47dc74e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-697ef99e-e510-4059-9066-9c16a47dc74e {
  cursor: pointer;
}#s-697ef99e-e510-4059-9066-9c16a47dc74e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d843c564-2bda-4a8c-ba80-404d0fa92231 {
  max-width: 835px;
aspect-ratio: 835/1011;
text-align: center;
}
@media (min-width: 1200px){#s-d843c564-2bda-4a8c-ba80-404d0fa92231 {
  display: none;
}
#s-d843c564-2bda-4a8c-ba80-404d0fa92231, #wrap-s-d843c564-2bda-4a8c-ba80-404d0fa92231 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d843c564-2bda-4a8c-ba80-404d0fa92231 {
  display: none;
}
#s-d843c564-2bda-4a8c-ba80-404d0fa92231, #wrap-s-d843c564-2bda-4a8c-ba80-404d0fa92231 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d843c564-2bda-4a8c-ba80-404d0fa92231 {
  display: none;
}
#s-d843c564-2bda-4a8c-ba80-404d0fa92231, #wrap-s-d843c564-2bda-4a8c-ba80-404d0fa92231 { display: none !important; }}




  #s-d843c564-2bda-4a8c-ba80-404d0fa92231 img.shogun-image,
  #s-d843c564-2bda-4a8c-ba80-404d0fa92231 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d843c564-2bda-4a8c-ba80-404d0fa92231 {
    width: 100%;
    height: auto;
  }



  #s-d843c564-2bda-4a8c-ba80-404d0fa92231 img.shogun-image {
    

    
    
    
  }


#s-d843c564-2bda-4a8c-ba80-404d0fa92231 .shogun-image-content {
  
    align-items: center;
  
}

#s-2660ea50-7bd9-4956-ba0d-02d2a9e28143 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-2660ea50-7bd9-4956-ba0d-02d2a9e28143 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2660ea50-7bd9-4956-ba0d-02d2a9e28143 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-2660ea50-7bd9-4956-ba0d-02d2a9e28143 {
  
}
}@media (max-width: 767px){#s-2660ea50-7bd9-4956-ba0d-02d2a9e28143 {
  
}
}
#s-2660ea50-7bd9-4956-ba0d-02d2a9e28143 {
  background-image: url();
}








#s-2660ea50-7bd9-4956-ba0d-02d2a9e28143 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2660ea50-7bd9-4956-ba0d-02d2a9e28143.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-6f28e339-881b-4823-a6dd-f8acfc3d6b22 {
  min-height: 50px;
background-color: rgba(102, 187, 172, 1);
}








#s-6f28e339-881b-4823-a6dd-f8acfc3d6b22 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6f28e339-881b-4823-a6dd-f8acfc3d6b22.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cf0da307-dc0d-47aa-aa76-2ddf877bea66 {
  padding-top: 15px;
padding-bottom: 15px;
}

.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-10fa1935-8896-432a-8d6b-4fa5a6727fc5 {
  border-style: solid;
margin-top: 10px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 20px;
padding-bottom: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0.2);
text-align: center;
}

#s-10fa1935-8896-432a-8d6b-4fa5a6727fc5 .shogun-heading-component h1 {
  color: rgba(102, 187, 172, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 50px;
  
  
  
}



.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-6ddce479-634d-41c9-ab94-f50856c4141c {
  margin-top: 0px;
margin-left: 4%;
margin-bottom: 0px;
margin-right: 4%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-6ddce479-634d-41c9-ab94-f50856c4141c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-6ddce479-634d-41c9-ab94-f50856c4141c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-6ddce479-634d-41c9-ab94-f50856c4141c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-6ddce479-634d-41c9-ab94-f50856c4141c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-40951767-895f-42af-9981-479eaa43338e {
  text-align: center;
}







  #s-40951767-895f-42af-9981-479eaa43338e img.shogun-image {
    

    
    
    
  }


#s-40951767-895f-42af-9981-479eaa43338e .shogun-image-content {
  
    align-items: center;
  
}

#s-28cbc087-ae72-43ba-8fca-b51365d9d658 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-28cbc087-ae72-43ba-8fca-b51365d9d658 .shogun-heading-component h1 {
  color: rgba(79, 106, 126, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


#s-28cbc087-ae72-43ba-8fca-b51365d9d658 .shogun-heading-component h1 a {
  color: rgba(79, 106, 126, 1);
}


.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-6f46ac40-900a-4a71-a421-414080d442d0 {
  margin-top: 0px;
margin-left: 5%;
margin-bottom: 30px;
margin-right: 5%;
padding-top: 15px;
padding-bottom: 15px;
border-radius: 7px;
max-width: 100%;
background-color: rgba(102, 187, 172, 1);
text-align: center;
text-decoration: none;
letter-spacing: 1px;
}
#s-6f46ac40-900a-4a71-a421-414080d442d0:hover {background-color: rgba(102, 187, 172, 1) !important;
text-decoration: none !important;
color: rgba(79, 106, 126, 1) !important;}#s-6f46ac40-900a-4a71-a421-414080d442d0:active {background-color: rgba(102, 187, 172, 1) !important;
text-decoration: none !important;
color: rgba(79, 106, 126, 1) !important;}

  #s-6f46ac40-900a-4a71-a421-414080d442d0-root {
    text-align: center;
  }


#s-6f46ac40-900a-4a71-a421-414080d442d0.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-6f46ac40-900a-4a71-a421-414080d442d0-root {
    text-align: center;
  }


#s-6f46ac40-900a-4a71-a421-414080d442d0.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6f46ac40-900a-4a71-a421-414080d442d0-root {
    text-align: center;
  }


#s-6f46ac40-900a-4a71-a421-414080d442d0.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6f46ac40-900a-4a71-a421-414080d442d0-root {
    text-align: center;
  }


#s-6f46ac40-900a-4a71-a421-414080d442d0.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-6f46ac40-900a-4a71-a421-414080d442d0-root {
    text-align: center;
  }


#s-6f46ac40-900a-4a71-a421-414080d442d0.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}
}
#s-bedc3662-35f6-46f2-82e5-20a4f4d24c70 {
  text-align: center;
}







  #s-bedc3662-35f6-46f2-82e5-20a4f4d24c70 img.shogun-image {
    

    
    
    
  }


#s-bedc3662-35f6-46f2-82e5-20a4f4d24c70 .shogun-image-content {
  
    align-items: center;
  
}

#s-cbee6d6e-ffe8-4e8a-bba2-7b92ab99977d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cbee6d6e-ffe8-4e8a-bba2-7b92ab99977d .shogun-heading-component h1 {
  color: rgba(79, 106, 126, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


#s-cbee6d6e-ffe8-4e8a-bba2-7b92ab99977d .shogun-heading-component h1 a {
  color: rgba(79, 106, 126, 1);
}


#s-c0c090a5-2fe5-420d-8910-15251a84b109 {
  margin-left: 5%;
margin-bottom: 30px;
margin-right: 5%;
padding-top: 15px;
padding-bottom: 15px;
border-radius: 7px;
background-color: rgba(102, 187, 172, 1);
text-align: center;
text-decoration: none;
letter-spacing: 1px;
}
#s-c0c090a5-2fe5-420d-8910-15251a84b109:hover {background-color: rgba(102, 187, 172, 1) !important;
text-decoration: none !important;
color: rgba(79, 106, 126, 1) !important;}#s-c0c090a5-2fe5-420d-8910-15251a84b109:active {background-color: rgba(102, 187, 172, 1) !important;
text-decoration: none !important;
color: rgba(79, 106, 126, 1) !important;}

  #s-c0c090a5-2fe5-420d-8910-15251a84b109-root {
    text-align: center;
  }


#s-c0c090a5-2fe5-420d-8910-15251a84b109.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-c0c090a5-2fe5-420d-8910-15251a84b109-root {
    text-align: center;
  }


#s-c0c090a5-2fe5-420d-8910-15251a84b109.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c0c090a5-2fe5-420d-8910-15251a84b109-root {
    text-align: center;
  }


#s-c0c090a5-2fe5-420d-8910-15251a84b109.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c0c090a5-2fe5-420d-8910-15251a84b109-root {
    text-align: center;
  }


#s-c0c090a5-2fe5-420d-8910-15251a84b109.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-c0c090a5-2fe5-420d-8910-15251a84b109-root {
    text-align: center;
  }


#s-c0c090a5-2fe5-420d-8910-15251a84b109.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}
}
#s-ed809b9e-5234-4568-93e1-f12e4c08decb {
  text-align: center;
}







  #s-ed809b9e-5234-4568-93e1-f12e4c08decb img.shogun-image {
    

    
    
    
  }


#s-ed809b9e-5234-4568-93e1-f12e4c08decb .shogun-image-content {
  
    align-items: center;
  
}

#s-a0a70502-fdf8-4473-8275-00c5aac4b4cb {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a0a70502-fdf8-4473-8275-00c5aac4b4cb .shogun-heading-component h1 {
  color: rgba(79, 106, 126, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


#s-a0a70502-fdf8-4473-8275-00c5aac4b4cb .shogun-heading-component h1 a {
  color: rgba(79, 106, 126, 1);
}


#s-88b7747d-7d72-4196-8b05-5bc956575216 {
  text-align: left;
}

#s-19294650-ac31-4683-b451-15ca1e6ae01f {
  margin-left: 5%;
margin-bottom: 30px;
margin-right: 5%;
padding-top: 15px;
padding-bottom: 15px;
border-radius: 7px;
background-color: rgba(102, 187, 172, 1);
text-align: center;
text-decoration: none;
letter-spacing: 1px;
}
#s-19294650-ac31-4683-b451-15ca1e6ae01f:hover {background-color: rgba(102, 187, 172, 1) !important;
text-decoration: none !important;
color: rgba(79, 106, 126, 1) !important;}#s-19294650-ac31-4683-b451-15ca1e6ae01f:active {background-color: rgba(102, 187, 172, 1) !important;
text-decoration: none !important;
color: rgba(79, 106, 126, 1) !important;}

  #s-19294650-ac31-4683-b451-15ca1e6ae01f-root {
    text-align: center;
  }


#s-19294650-ac31-4683-b451-15ca1e6ae01f.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-19294650-ac31-4683-b451-15ca1e6ae01f-root {
    text-align: center;
  }


#s-19294650-ac31-4683-b451-15ca1e6ae01f.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-19294650-ac31-4683-b451-15ca1e6ae01f-root {
    text-align: center;
  }


#s-19294650-ac31-4683-b451-15ca1e6ae01f.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-19294650-ac31-4683-b451-15ca1e6ae01f-root {
    text-align: center;
  }


#s-19294650-ac31-4683-b451-15ca1e6ae01f.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-19294650-ac31-4683-b451-15ca1e6ae01f-root {
    text-align: center;
  }


#s-19294650-ac31-4683-b451-15ca1e6ae01f.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}
}
#s-cb090d90-d562-48c7-812b-2e382f0b79ba {
  text-align: center;
}







  #s-cb090d90-d562-48c7-812b-2e382f0b79ba img.shogun-image {
    

    
    
    
  }


#s-cb090d90-d562-48c7-812b-2e382f0b79ba .shogun-image-content {
  
    align-items: center;
  
}

#s-6debf97d-3870-4fdb-8226-85ec5285ffe6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6debf97d-3870-4fdb-8226-85ec5285ffe6 .shogun-heading-component h1 {
  color: rgba(79, 106, 126, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}


#s-6debf97d-3870-4fdb-8226-85ec5285ffe6 .shogun-heading-component h1 a {
  color: rgba(79, 106, 126, 1);
}


#s-621d7fd6-c6de-4e4c-afb3-6d0b878b96b1 {
  margin-left: 5%;
margin-bottom: 30px;
margin-right: 5%;
padding-top: 15px;
padding-bottom: 15px;
border-radius: 7px;
background-color: rgba(102, 187, 172, 1);
text-align: center;
text-decoration: none;
letter-spacing: 1px;
}
#s-621d7fd6-c6de-4e4c-afb3-6d0b878b96b1:hover {background-color: rgba(102, 187, 172, 1) !important;
text-decoration: none !important;
color: rgba(79, 106, 126, 1) !important;}#s-621d7fd6-c6de-4e4c-afb3-6d0b878b96b1:active {background-color: rgba(102, 187, 172, 1) !important;
text-decoration: none !important;
color: rgba(79, 106, 126, 1) !important;}

  #s-621d7fd6-c6de-4e4c-afb3-6d0b878b96b1-root {
    text-align: center;
  }


#s-621d7fd6-c6de-4e4c-afb3-6d0b878b96b1.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-621d7fd6-c6de-4e4c-afb3-6d0b878b96b1-root {
    text-align: center;
  }


#s-621d7fd6-c6de-4e4c-afb3-6d0b878b96b1.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-621d7fd6-c6de-4e4c-afb3-6d0b878b96b1-root {
    text-align: center;
  }


#s-621d7fd6-c6de-4e4c-afb3-6d0b878b96b1.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-621d7fd6-c6de-4e4c-afb3-6d0b878b96b1-root {
    text-align: center;
  }


#s-621d7fd6-c6de-4e4c-afb3-6d0b878b96b1.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-621d7fd6-c6de-4e4c-afb3-6d0b878b96b1-root {
    text-align: center;
  }


#s-621d7fd6-c6de-4e4c-afb3-6d0b878b96b1.shg-btn {
  color: #ffffff;
  font-size: 18px;
  
  
  
  display:  block ;
}
}
#s-7a363840-efd2-4ccd-95a0-a42516f09762 {
  min-height: 50px;
}








#s-7a363840-efd2-4ccd-95a0-a42516f09762 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7a363840-efd2-4ccd-95a0-a42516f09762.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-category-grid {
  margin: -20px 0;
}

.shg-category-row,
.shg-category-row-hor {
  display: flex;
  margin: 20px 0;
}

.shg-category-col,
.shg-category-col-1 {
  flex: 1;
  padding: 0 10px;
}

.shg-category-col:last-child {
  padding-right: 0;
}

.shg-category-col:first-child {
  padding-left: 0;
}

.shg-category-col-2 {
  flex: 2;
  padding: 0 20px;
}

.shg-category-col-3 {
  flex: 3;
  padding: 0 30px;
}

.shg-category-col-4 {
  flex: 4;
  padding: 0 40px;
}

.shg-category-col-5 {
  flex: 5;
  padding: 0 50px;
}

@media (max-width: 768px) {
  .shg-category-row.stacked {
    display: block;
  }

  .shg-category-row .shg-category-col {
    padding: 20px 0;
  }

  .shg-category-row .shg-category-col:first-child {
    padding-top: 0;
  }

  .shg-category-row .shg-category-col:last-child {
    padding-bottom: 0;
  }
}

@media (min-width: 1200px){#s-e5f6ade9-ecfa-488b-bf58-92416f1691ad {
  display: none;
}
#s-e5f6ade9-ecfa-488b-bf58-92416f1691ad, #wrap-s-e5f6ade9-ecfa-488b-bf58-92416f1691ad { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e5f6ade9-ecfa-488b-bf58-92416f1691ad {
  display: none;
}
#s-e5f6ade9-ecfa-488b-bf58-92416f1691ad, #wrap-s-e5f6ade9-ecfa-488b-bf58-92416f1691ad { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e5f6ade9-ecfa-488b-bf58-92416f1691ad {
  display: none;
}
#s-e5f6ade9-ecfa-488b-bf58-92416f1691ad, #wrap-s-e5f6ade9-ecfa-488b-bf58-92416f1691ad { display: none !important; }}@media (max-width: 767px){#s-e5f6ade9-ecfa-488b-bf58-92416f1691ad {
  display: none;
}
#s-e5f6ade9-ecfa-488b-bf58-92416f1691ad, #wrap-s-e5f6ade9-ecfa-488b-bf58-92416f1691ad { display: none !important; }}
.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

.shg-product-img-placeholder img {
  padding: 3rem;
  background: rgba(0, 0, 0, 0.1);
}

.shg-product-image-wrapper {
  display: none;
  position: relative;
  width: 100%;
}

.shg-product-image-wrapper.visible {
  display: inline-block;
}

.shg-product-image-wrapper .shg-product-image-wrapper a {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.shg-product-image-wrapper .shg-image-zoom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  max-width: 100%;
  min-height: 100%;
}

.shg-c.shg-align-center .shg-image-zoom {
  margin: 0 auto;
}

.shg-c.shg-align-right .shg-image-zoom {
  margin-left: auto;
}

.shg-image-zoom .shg-image-zoom-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.5s ease-out;
  transform: scale(1);
}

/**
  Fix for IE11, as min-width does not works there.
**/
@media screen\0 {
  .shg-product-image-wrapper > .shogun-image {
    width: 100%;
  }
}

#s-b1285282-d9b2-4a0b-989b-815e0d58539b {
  text-align: left;
}



.shg-c#s-b1285282-d9b2-4a0b-989b-815e0d58539b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b1285282-d9b2-4a0b-989b-815e0d58539b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-b1285282-d9b2-4a0b-989b-815e0d58539b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b1285282-d9b2-4a0b-989b-815e0d58539b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b1285282-d9b2-4a0b-989b-815e0d58539b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b1285282-d9b2-4a0b-989b-815e0d58539b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b1285282-d9b2-4a0b-989b-815e0d58539b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b1285282-d9b2-4a0b-989b-815e0d58539b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-b1285282-d9b2-4a0b-989b-815e0d58539b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-b1285282-d9b2-4a0b-989b-815e0d58539b img.shogun-image {
  width: 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: ;
}

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

.shg-product-atc-wrapper {
  position: relative;
}

.shg-product-atc-btn {
  position: relative;
  z-index: 2;
  display: block;
  border: none;
  align-items: normal;
  box-sizing: border-box;
  cursor: pointer;
  transition: opacity 200ms linear;
  opacity: 1;
}

.shg-product-atc-btn-opaque {
  opacity: 0;
}

.shg-product-atc-info-box {
  position: absolute;
  z-index: 1;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  text-align: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

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

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

#s-7e543f3b-51c7-49da-93c4-bcb5697364c9 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 8px;
background-color: rgba(102, 187, 172, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-7e543f3b-51c7-49da-93c4-bcb5697364c9:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-7e543f3b-51c7-49da-93c4-bcb5697364c9:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-7e543f3b-51c7-49da-93c4-bcb5697364c9 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-7e543f3b-51c7-49da-93c4-bcb5697364c9.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-7e543f3b-51c7-49da-93c4-bcb5697364c9.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  
  display:  inline-block ;
}

#s-7e543f3b-51c7-49da-93c4-bcb5697364c9.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-3e457957-aaf4-4975-b982-5a39f2f13b79 {
  min-height: 50px;
}








#s-3e457957-aaf4-4975-b982-5a39f2f13b79 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3e457957-aaf4-4975-b982-5a39f2f13b79.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3b5bb85b-1abe-465e-b5c0-d9a866d5d4ad {
  margin-top: 25px;
margin-left: 4%;
margin-bottom: 25px;
margin-right: 4%;
min-height: 50px;
}
@media (min-width: 1200px){#s-3b5bb85b-1abe-465e-b5c0-d9a866d5d4ad {
  display: none;
}
#s-3b5bb85b-1abe-465e-b5c0-d9a866d5d4ad, #wrap-s-3b5bb85b-1abe-465e-b5c0-d9a866d5d4ad { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3b5bb85b-1abe-465e-b5c0-d9a866d5d4ad {
  display: none;
}
#s-3b5bb85b-1abe-465e-b5c0-d9a866d5d4ad, #wrap-s-3b5bb85b-1abe-465e-b5c0-d9a866d5d4ad { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3b5bb85b-1abe-465e-b5c0-d9a866d5d4ad {
  display: none;
}
#s-3b5bb85b-1abe-465e-b5c0-d9a866d5d4ad, #wrap-s-3b5bb85b-1abe-465e-b5c0-d9a866d5d4ad { display: none !important; }}







#s-3b5bb85b-1abe-465e-b5c0-d9a866d5d4ad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3b5bb85b-1abe-465e-b5c0-d9a866d5d4ad {
  cursor: pointer;
}#s-3b5bb85b-1abe-465e-b5c0-d9a866d5d4ad.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d70d5dd9-10fc-4ccc-a6b4-17fd16f46a80 {
  text-align: center;
}
@media (min-width: 1200px){#s-d70d5dd9-10fc-4ccc-a6b4-17fd16f46a80 {
  display: none;
}
#s-d70d5dd9-10fc-4ccc-a6b4-17fd16f46a80, #wrap-s-d70d5dd9-10fc-4ccc-a6b4-17fd16f46a80 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d70d5dd9-10fc-4ccc-a6b4-17fd16f46a80 {
  display: none;
}
#s-d70d5dd9-10fc-4ccc-a6b4-17fd16f46a80, #wrap-s-d70d5dd9-10fc-4ccc-a6b4-17fd16f46a80 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d70d5dd9-10fc-4ccc-a6b4-17fd16f46a80 {
  display: none;
}
#s-d70d5dd9-10fc-4ccc-a6b4-17fd16f46a80, #wrap-s-d70d5dd9-10fc-4ccc-a6b4-17fd16f46a80 { display: none !important; }}@media (max-width: 767px){#s-d70d5dd9-10fc-4ccc-a6b4-17fd16f46a80 {
  
}
}






  #s-d70d5dd9-10fc-4ccc-a6b4-17fd16f46a80 img.shogun-image {
    

    
    
    
  }


#s-d70d5dd9-10fc-4ccc-a6b4-17fd16f46a80 .shogun-image-content {
  
    align-items: center;
  
}

#s-eb5f80bc-421a-4fcc-aca3-761734a8bec7 {
  margin-left: 4%;
margin-right: 4%;
min-height: 50px;
}
@media (min-width: 1200px){#s-eb5f80bc-421a-4fcc-aca3-761734a8bec7 {
  display: none;
}
#s-eb5f80bc-421a-4fcc-aca3-761734a8bec7, #wrap-s-eb5f80bc-421a-4fcc-aca3-761734a8bec7 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-eb5f80bc-421a-4fcc-aca3-761734a8bec7 {
  display: none;
}
#s-eb5f80bc-421a-4fcc-aca3-761734a8bec7, #wrap-s-eb5f80bc-421a-4fcc-aca3-761734a8bec7 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-eb5f80bc-421a-4fcc-aca3-761734a8bec7 {
  display: none;
}
#s-eb5f80bc-421a-4fcc-aca3-761734a8bec7, #wrap-s-eb5f80bc-421a-4fcc-aca3-761734a8bec7 { display: none !important; }}







#s-eb5f80bc-421a-4fcc-aca3-761734a8bec7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eb5f80bc-421a-4fcc-aca3-761734a8bec7 {
  cursor: pointer;
}#s-eb5f80bc-421a-4fcc-aca3-761734a8bec7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e2ce75d7-1a1c-41e9-99ef-18a4b2f3a4ea {
  border-radius: 20px;
text-align: center;
}







  #s-e2ce75d7-1a1c-41e9-99ef-18a4b2f3a4ea img.shogun-image {
    

    
    
    
  }


#s-e2ce75d7-1a1c-41e9-99ef-18a4b2f3a4ea .shogun-image-content {
  
    align-items: center;
  
}

#s-fa7d3d56-a30e-418d-a823-56f71de935c4 {
  margin-top: 100px;
margin-left: 15%;
margin-bottom: 100px;
margin-right: 15%;
padding-top: 0px;
padding-bottom: 0px;
}
@media (max-width: 767px){#s-fa7d3d56-a30e-418d-a823-56f71de935c4 {
  display: none;
}
#s-fa7d3d56-a30e-418d-a823-56f71de935c4, #wrap-s-fa7d3d56-a30e-418d-a823-56f71de935c4 { display: none !important; }}
@media (min-width: 0px) {
[id="s-fa7d3d56-a30e-418d-a823-56f71de935c4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fa7d3d56-a30e-418d-a823-56f71de935c4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fa7d3d56-a30e-418d-a823-56f71de935c4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fa7d3d56-a30e-418d-a823-56f71de935c4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-2bc7eae8-9232-4857-a762-f78af5dd8ad2 {
  margin-top: 15px;
margin-bottom: 0px;
text-align: center;
}







  #s-2bc7eae8-9232-4857-a762-f78af5dd8ad2 img.shogun-image {
    

    
    
    
  }


#s-2bc7eae8-9232-4857-a762-f78af5dd8ad2 .shogun-image-content {
  
    align-items: center;
  
}

#s-c8cb1876-addd-460f-aac9-3a1dab2ba0eb {
  margin-top: 6px;
border-radius: 20px;
text-align: center;
}







  #s-c8cb1876-addd-460f-aac9-3a1dab2ba0eb img.shogun-image {
    

    
    
    
  }


#s-c8cb1876-addd-460f-aac9-3a1dab2ba0eb .shogun-image-content {
  
    align-items: center;
  
}

#s-3b212248-3e2e-4852-990d-833e921cb18b {
  margin-top: 10px;
border-radius: 20px;
text-align: center;
}







  #s-3b212248-3e2e-4852-990d-833e921cb18b img.shogun-image {
    

    
    
    
  }


#s-3b212248-3e2e-4852-990d-833e921cb18b .shogun-image-content {
  
    align-items: center;
  
}

#s-c6b0b08f-961b-4588-b079-1fbf5c465f20 {
  margin-top: 30px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c6b0b08f-961b-4588-b079-1fbf5c465f20 .shogun-heading-component h1 {
  color: rgba(102, 187, 172, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 50px;
  
  
  
}



#s-d93bf1a0-51ab-4bdf-80ae-c8b715c08d0e {
  margin-left: 1%;
margin-right: 1%;
}

#s-8ab7980b-ef3c-4054-a1df-9d4229f56b6b {
  text-align: left;
}



.shg-c#s-8ab7980b-ef3c-4054-a1df-9d4229f56b6b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8ab7980b-ef3c-4054-a1df-9d4229f56b6b img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-8ab7980b-ef3c-4054-a1df-9d4229f56b6b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8ab7980b-ef3c-4054-a1df-9d4229f56b6b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8ab7980b-ef3c-4054-a1df-9d4229f56b6b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8ab7980b-ef3c-4054-a1df-9d4229f56b6b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8ab7980b-ef3c-4054-a1df-9d4229f56b6b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8ab7980b-ef3c-4054-a1df-9d4229f56b6b img.shogun-image {
  width: 100%;
}



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

.shg-c#s-8ab7980b-ef3c-4054-a1df-9d4229f56b6b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8ab7980b-ef3c-4054-a1df-9d4229f56b6b img.shogun-image {
  width: 100%;
}



}
#s-82579d77-fdb2-4d25-994f-5a56ef08236b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-82579d77-fdb2-4d25-994f-5a56ef08236b .shogun-heading-component h1 {
  color: rgba(79, 106, 126, 1);
  font-weight:  normal ;
  font-family: "DIN Condensed";
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-eddabc8d-1011-46e8-92db-8617660c8c41 {
  text-align: center;
}

#s-eddabc8d-1011-46e8-92db-8617660c8c41 .shg-product-sold-out {
  display: none;
  color: rgba(102, 187, 172, 1);
  font-size: ;
  font-weight:   ;
  font-family: Helvetica;
  font-style:  normal ;
}

#s-eddabc8d-1011-46e8-92db-8617660c8c41 .shg-product-price {
  color: rgba(102, 187, 172, 1);
  font-weight:   ;
  font-family: Helvetica;
  font-style:  normal ;
  font-size: ;
}

#s-eddabc8d-1011-46e8-92db-8617660c8c41 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
@media (max-width: 767px){#s-eddabc8d-1011-46e8-92db-8617660c8c41 .shg-product-sold-out {
  display: none;
  color: rgba(102, 187, 172, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: Helvetica;
  font-style:  normal ;
}

#s-eddabc8d-1011-46e8-92db-8617660c8c41 .shg-product-price {
  color: rgba(102, 187, 172, 1);
  font-weight:   ;
  font-family: Helvetica;
  font-style:  normal ;
  font-size: 16px;
}

#s-eddabc8d-1011-46e8-92db-8617660c8c41 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
}
#s-ecae54cb-70c0-468a-8ef5-baec69e15bab {
  text-align: center;
}


.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab {
  max-width:  100%;
}

.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab .shg-image-zoom,
.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab img.shogun-image {
  max-width: 350px !important;
  
}

.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab {
  max-width:  100%;
}

.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab .shg-image-zoom,
.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab img.shogun-image {
  max-width: 350px !important;
  
}

.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab {
  max-width:  100%;
}

.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab .shg-image-zoom,
.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab img.shogun-image {
  max-width: 350px !important;
  
}

.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab {
  max-width:  100%;
}

.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab .shg-image-zoom,
.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab {
  max-width:  100%;
}

.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab .shg-image-zoom,
.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab img.shogun-image {
  max-width: 200px !important;
  
}

.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ecae54cb-70c0-468a-8ef5-baec69e15bab img.shogun-image {
  width: 100%;
}



}
#s-aabf5b5d-c109-4dff-b05a-a5a10b1864d1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-aabf5b5d-c109-4dff-b05a-a5a10b1864d1 .shogun-heading-component h1 {
  color: rgba(79, 106, 126, 1);
  font-weight:  normal ;
  font-family: "DIN Condensed";
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-da8040ab-1672-410a-b7f7-f9a4d7dcd1b5 {
  text-align: center;
}

#s-da8040ab-1672-410a-b7f7-f9a4d7dcd1b5 .shg-product-sold-out {
  display: none;
  color: rgba(102, 187, 172, 1);
  font-size: ;
  font-weight:   ;
  font-family: Helvetica;
  font-style:  normal ;
}

#s-da8040ab-1672-410a-b7f7-f9a4d7dcd1b5 .shg-product-price {
  color: rgba(102, 187, 172, 1);
  font-weight:   ;
  font-family: Helvetica;
  font-style:  normal ;
  font-size: ;
}

#s-da8040ab-1672-410a-b7f7-f9a4d7dcd1b5 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
@media (max-width: 767px){#s-da8040ab-1672-410a-b7f7-f9a4d7dcd1b5 .shg-product-sold-out {
  display: none;
  color: rgba(102, 187, 172, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: Helvetica;
  font-style:  normal ;
}

#s-da8040ab-1672-410a-b7f7-f9a4d7dcd1b5 .shg-product-price {
  color: rgba(102, 187, 172, 1);
  font-weight:   ;
  font-family: Helvetica;
  font-style:  normal ;
  font-size: 16px;
}

#s-da8040ab-1672-410a-b7f7-f9a4d7dcd1b5 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
}
#s-a0a9ab15-1243-4809-a29f-cf618b6c951f {
  text-align: center;
}


.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f {
  max-width:  100%;
}

.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f .shg-image-zoom,
.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f img.shogun-image {
  max-width: 350px !important;
  
}

.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f {
  max-width:  100%;
}

.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f .shg-image-zoom,
.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f img.shogun-image {
  max-width: 350px !important;
  
}

.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f {
  max-width:  100%;
}

.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f .shg-image-zoom,
.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f img.shogun-image {
  max-width: 350px !important;
  
}

.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f {
  max-width:  100%;
}

.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f .shg-image-zoom,
.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f {
  max-width:  100%;
}

.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f .shg-image-zoom,
.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f img.shogun-image {
  max-width: 200px !important;
  
}

.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a0a9ab15-1243-4809-a29f-cf618b6c951f img.shogun-image {
  width: 100%;
}



}
#s-edd149f2-5dc2-4b0c-84b3-7169326900b1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-edd149f2-5dc2-4b0c-84b3-7169326900b1 .shogun-heading-component h1 {
  color: rgba(79, 106, 126, 1);
  font-weight:  normal ;
  font-family: "DIN Condensed";
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-c5f35ff9-002f-4172-a964-b7730305919d {
  text-align: center;
}

#s-c5f35ff9-002f-4172-a964-b7730305919d .shg-product-sold-out {
  display: none;
  color: rgba(102, 187, 172, 1);
  font-size: ;
  font-weight:   ;
  font-family: Helvetica;
  font-style:  normal ;
}

#s-c5f35ff9-002f-4172-a964-b7730305919d .shg-product-price {
  color: rgba(102, 187, 172, 1);
  font-weight:   ;
  font-family: Helvetica;
  font-style:  normal ;
  font-size: ;
}

#s-c5f35ff9-002f-4172-a964-b7730305919d .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
@media (max-width: 767px){#s-c5f35ff9-002f-4172-a964-b7730305919d .shg-product-sold-out {
  display: none;
  color: rgba(102, 187, 172, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: Helvetica;
  font-style:  normal ;
}

#s-c5f35ff9-002f-4172-a964-b7730305919d .shg-product-price {
  color: rgba(102, 187, 172, 1);
  font-weight:   ;
  font-family: Helvetica;
  font-style:  normal ;
  font-size: 16px;
}

#s-c5f35ff9-002f-4172-a964-b7730305919d .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
}
#s-bbe69139-b48d-4994-baf5-4293c4fd85cb {
  text-align: center;
}


.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb {
  max-width:  100%;
}

.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb .shg-image-zoom,
.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb img.shogun-image {
  max-width: 350px !important;
  
}

.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb {
  max-width:  100%;
}

.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb .shg-image-zoom,
.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb img.shogun-image {
  max-width: 350px !important;
  
}

.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb {
  max-width:  100%;
}

.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb .shg-image-zoom,
.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb img.shogun-image {
  max-width: 350px !important;
  
}

.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb {
  max-width:  100%;
}

.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb .shg-image-zoom,
.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb {
  max-width:  100%;
}

.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb .shg-image-zoom,
.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb img.shogun-image {
  max-width: 200px !important;
  
}

.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bbe69139-b48d-4994-baf5-4293c4fd85cb img.shogun-image {
  width: 100%;
}



}
#s-cb840aba-8916-4819-9b1d-61dd0b1808d2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cb840aba-8916-4819-9b1d-61dd0b1808d2 .shogun-heading-component h1 {
  color: rgba(79, 106, 126, 1);
  font-weight:  normal ;
  font-family: "DIN Condensed";
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-10461ffa-534c-4270-831c-ad0beb82b059 {
  text-align: center;
}

#s-10461ffa-534c-4270-831c-ad0beb82b059 .shg-product-sold-out {
  display: none;
  color: rgba(102, 187, 172, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: Helvetica;
  font-style:  normal ;
}

#s-10461ffa-534c-4270-831c-ad0beb82b059 .shg-product-price {
  color: rgba(102, 187, 172, 1);
  font-weight:   ;
  font-family: Helvetica;
  font-style:  normal ;
  font-size: 16px;
}

#s-10461ffa-534c-4270-831c-ad0beb82b059 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-bb025393-473d-463c-88c7-72ce44a042c2 {
  text-align: center;
}


.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 {
  max-width:  100%;
}

.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 .shg-image-zoom,
.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 img.shogun-image {
  max-width: 350px !important;
  
}

.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){
.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 {
  max-width:  100%;
}

.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 .shg-image-zoom,
.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 img.shogun-image {
  max-width: 350px !important;
  
}

.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 {
  max-width:  100%;
}

.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 .shg-image-zoom,
.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 img.shogun-image {
  max-width: 350px !important;
  
}

.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 {
  max-width:  100%;
}

.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 .shg-image-zoom,
.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 img.shogun-image {
  max-width: 250px !important;
  
}

.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){
.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 {
  max-width:  100%;
}

.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 .shg-image-zoom,
.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 img.shogun-image {
  max-width: 200px !important;
  
}

.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 .shg-image-zoom {
  
    margin: 0 auto;
  
}


.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bb025393-473d-463c-88c7-72ce44a042c2 img.shogun-image {
  width: 100%;
}



}
#s-bf91386c-7ef9-4fc8-a8bc-58440fae11cc {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bf91386c-7ef9-4fc8-a8bc-58440fae11cc .shogun-heading-component h1 {
  color: rgba(79, 106, 126, 1);
  font-weight:  normal ;
  font-family: "DIN Condensed";
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-23945775-cba5-4ea0-a14a-6db5c261c4e8 {
  text-align: center;
}

#s-23945775-cba5-4ea0-a14a-6db5c261c4e8 .shg-product-sold-out {
  display: none;
  color: rgba(102, 187, 172, 1);
  font-size: ;
  font-weight:   ;
  font-family: Helvetica;
  font-style:  normal ;
}

#s-23945775-cba5-4ea0-a14a-6db5c261c4e8 .shg-product-price {
  color: rgba(102, 187, 172, 1);
  font-weight:   ;
  font-family: Helvetica;
  font-style:  normal ;
  font-size: ;
}

#s-23945775-cba5-4ea0-a14a-6db5c261c4e8 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
@media (max-width: 767px){#s-23945775-cba5-4ea0-a14a-6db5c261c4e8 .shg-product-sold-out {
  display: none;
  color: rgba(102, 187, 172, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: Helvetica;
  font-style:  normal ;
}

#s-23945775-cba5-4ea0-a14a-6db5c261c4e8 .shg-product-price {
  color: rgba(102, 187, 172, 1);
  font-weight:   ;
  font-family: Helvetica;
  font-style:  normal ;
  font-size: 16px;
}

#s-23945775-cba5-4ea0-a14a-6db5c261c4e8 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
}
#s-533989d4-f449-46d8-a371-120b686ab152 {
  margin-top: 25px;
margin-left: 4%;
margin-bottom: 25px;
margin-right: 4%;
padding-left: 0%;
padding-right: 0%;
min-height: 50px;
}
@media (min-width: 1200px){#s-533989d4-f449-46d8-a371-120b686ab152 {
  display: none;
}
#s-533989d4-f449-46d8-a371-120b686ab152, #wrap-s-533989d4-f449-46d8-a371-120b686ab152 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-533989d4-f449-46d8-a371-120b686ab152 {
  display: none;
}
#s-533989d4-f449-46d8-a371-120b686ab152, #wrap-s-533989d4-f449-46d8-a371-120b686ab152 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-533989d4-f449-46d8-a371-120b686ab152 {
  display: none;
}
#s-533989d4-f449-46d8-a371-120b686ab152, #wrap-s-533989d4-f449-46d8-a371-120b686ab152 { display: none !important; }}







#s-533989d4-f449-46d8-a371-120b686ab152 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-533989d4-f449-46d8-a371-120b686ab152 {
  cursor: pointer;
}#s-533989d4-f449-46d8-a371-120b686ab152.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c0059902-3570-4ca4-88e0-fedba6959ea9 {
  border-radius: 20px;
text-align: center;
}







  #s-c0059902-3570-4ca4-88e0-fedba6959ea9 img.shogun-image {
    

    
    
    
  }


#s-c0059902-3570-4ca4-88e0-fedba6959ea9 .shogun-image-content {
  
    align-items: center;
  
}

#s-a71fdb57-0a3a-4262-ae4e-e7a9e8f5e9d3 {
  margin-top: 50px;
margin-left: 15%;
margin-bottom: 50px;
margin-right: 15%;
min-height: 48px;
}








#s-a71fdb57-0a3a-4262-ae4e-e7a9e8f5e9d3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a71fdb57-0a3a-4262-ae4e-e7a9e8f5e9d3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-video {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.shogun-video-16x9 {
  padding-bottom: 56.25%;
}

.shogun-video-4x3 {
  padding-bottom: 75%;
}

.shogun-video-embed {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#s-9cdd5272-c2ee-406f-ade8-7e201157cb86 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
}

#s-76b4cf0d-6c41-45c2-8c8c-ea821e709023 {
  text-align: center;
}
@media (max-width: 767px){#s-76b4cf0d-6c41-45c2-8c8c-ea821e709023 {
  margin-left: 4%;
margin-right: 4%;
}
}






  #s-76b4cf0d-6c41-45c2-8c8c-ea821e709023 img.shogun-image {
    

    
    
    
  }


#s-76b4cf0d-6c41-45c2-8c8c-ea821e709023 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-9cc91f41-4b6b-4cda-9b15-d3a5440d5616"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9cc91f41-4b6b-4cda-9b15-d3a5440d5616"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-9cc91f41-4b6b-4cda-9b15-d3a5440d5616"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-9cc91f41-4b6b-4cda-9b15-d3a5440d5616"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-9cc91f41-4b6b-4cda-9b15-d3a5440d5616"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-9cc91f41-4b6b-4cda-9b15-d3a5440d5616"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-9cc91f41-4b6b-4cda-9b15-d3a5440d5616"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

}

#s-af095e9e-0e94-4a10-bfee-276b8b41e821 {
  margin-top: 30px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-af095e9e-0e94-4a10-bfee-276b8b41e821 .shogun-heading-component h1 {
  color: rgba(79, 106, 126, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 50px;
  
  
  
}



#s-6200343f-aedc-497d-9fc2-6d82fbc0d45b {
  padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
}
@media (max-width: 767px){#s-6200343f-aedc-497d-9fc2-6d82fbc0d45b {
  padding-left: 3%;
padding-right: 3%;
max-width: 600px;
}
}
@media (min-width: 0px) {
[id="s-6200343f-aedc-497d-9fc2-6d82fbc0d45b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6200343f-aedc-497d-9fc2-6d82fbc0d45b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-6200343f-aedc-497d-9fc2-6d82fbc0d45b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-6200343f-aedc-497d-9fc2-6d82fbc0d45b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-03ae99b4-7eb1-459a-b3f3-c733578003d7 {
  margin-top: 35px;
margin-bottom: 35px;
text-align: center;
}







  #s-03ae99b4-7eb1-459a-b3f3-c733578003d7 img.shogun-image {
    

    
    
    
  }


#s-03ae99b4-7eb1-459a-b3f3-c733578003d7 .shogun-image-content {
  
    align-items: center;
  
}

#s-108a665a-c9be-4164-b599-9bf847f52c7e {
  margin-top: 35px;
margin-bottom: 35px;
text-align: center;
}







  #s-108a665a-c9be-4164-b599-9bf847f52c7e img.shogun-image {
    

    
    
    
  }


#s-108a665a-c9be-4164-b599-9bf847f52c7e .shogun-image-content {
  
    align-items: center;
  
}

#s-ea48a0b9-ab3f-495c-be8d-a970dc9b618a {
  margin-top: 35px;
margin-bottom: 35px;
text-align: center;
}







  #s-ea48a0b9-ab3f-495c-be8d-a970dc9b618a img.shogun-image {
    

    
    
    
  }


#s-ea48a0b9-ab3f-495c-be8d-a970dc9b618a .shogun-image-content {
  
    align-items: center;
  
}

@media (max-width: 767px){#s-81660ee4-68ac-4572-9eaf-ae17269c8aa8 {
  display: none;
}
#s-81660ee4-68ac-4572-9eaf-ae17269c8aa8, #wrap-s-81660ee4-68ac-4572-9eaf-ae17269c8aa8 { display: none !important; }}
@media (min-width: 0px) {
[id="s-81660ee4-68ac-4572-9eaf-ae17269c8aa8"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-81660ee4-68ac-4572-9eaf-ae17269c8aa8"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-81660ee4-68ac-4572-9eaf-ae17269c8aa8"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-81660ee4-68ac-4572-9eaf-ae17269c8aa8"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-09c6fbf8-d8cc-4632-8494-1c3f03842f7c {
  margin-top: 35px;
margin-bottom: 35px;
text-align: center;
}







  #s-09c6fbf8-d8cc-4632-8494-1c3f03842f7c img.shogun-image {
    

    
    
    
  }


#s-09c6fbf8-d8cc-4632-8494-1c3f03842f7c .shogun-image-content {
  
    align-items: center;
  
}

#s-4d4e4448-9d44-40ee-8075-7da210adcff5 {
  margin-top: 35px;
margin-bottom: 35px;
text-align: center;
}







  #s-4d4e4448-9d44-40ee-8075-7da210adcff5 img.shogun-image {
    

    
    
    
  }


#s-4d4e4448-9d44-40ee-8075-7da210adcff5 .shogun-image-content {
  
    align-items: center;
  
}

#s-94dbf993-34c7-4414-bbb3-a4bda26320a0 {
  margin-top: 35px;
margin-bottom: 35px;
text-align: center;
}







  #s-94dbf993-34c7-4414-bbb3-a4bda26320a0 img.shogun-image {
    

    
    
    
  }


#s-94dbf993-34c7-4414-bbb3-a4bda26320a0 .shogun-image-content {
  
    align-items: center;
  
}

#s-590e29e8-0724-4397-909d-583e6eef51f8 {
  margin-top: 35px;
margin-bottom: 35px;
text-align: center;
}







  #s-590e29e8-0724-4397-909d-583e6eef51f8 img.shogun-image {
    

    
    
    
  }


#s-590e29e8-0724-4397-909d-583e6eef51f8 .shogun-image-content {
  
    align-items: center;
  
}

#s-825156b3-e5d6-47cd-b48f-d3705338e477 {
  padding-left: 2%;
padding-right: 2%;
min-height: 50px;
}








#s-825156b3-e5d6-47cd-b48f-d3705338e477 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-825156b3-e5d6-47cd-b48f-d3705338e477.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5db7ebb7-0dcb-4a0f-96ec-43a9339bee81 {
  margin-top: 30px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5db7ebb7-0dcb-4a0f-96ec-43a9339bee81 .shogun-heading-component h1 {
  color: rgba(102, 187, 172, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 50px;
  
  
  
}



@media (min-width: 0px) {
[id="s-5d19c89d-84a2-48dd-a11a-067ca136c492"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-5d19c89d-84a2-48dd-a11a-067ca136c492"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-5d19c89d-84a2-48dd-a11a-067ca136c492"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-5d19c89d-84a2-48dd-a11a-067ca136c492"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-415c2f8f-d176-4ac4-a4de-af9b02ab701b {
  min-height: 50px;
}








#s-415c2f8f-d176-4ac4-a4de-af9b02ab701b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-415c2f8f-d176-4ac4-a4de-af9b02ab701b {
  cursor: pointer;
}#s-415c2f8f-d176-4ac4-a4de-af9b02ab701b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-070cfc2a-bd5c-4c94-b7ac-805a4b1be638 {
  border-radius: 40px;
text-align: center;
}
@media (max-width: 767px){#s-070cfc2a-bd5c-4c94-b7ac-805a4b1be638 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
}
}






  #s-070cfc2a-bd5c-4c94-b7ac-805a4b1be638 img.shogun-image {
    

    
    
    
  }


#s-070cfc2a-bd5c-4c94-b7ac-805a4b1be638 .shogun-image-content {
  
    align-items: center;
  
}

#s-687e9f39-fc21-4007-9ba7-e31afb1fdb9a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-687e9f39-fc21-4007-9ba7-e31afb1fdb9a .shogun-heading-component h1 {
  color: rgba(79, 106, 126, 1);
  font-weight:  normal ;
  font-family: "DIN Condensed";
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-efe8e4d7-38dc-4a3b-9903-fe58edcc6bae {
  min-height: 50px;
}








#s-efe8e4d7-38dc-4a3b-9903-fe58edcc6bae > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-efe8e4d7-38dc-4a3b-9903-fe58edcc6bae {
  cursor: pointer;
}#s-efe8e4d7-38dc-4a3b-9903-fe58edcc6bae.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fe524483-2b4f-4423-a5eb-161f4f6f8ae5 {
  border-radius: 40px;
text-align: center;
}
@media (max-width: 767px){#s-fe524483-2b4f-4423-a5eb-161f4f6f8ae5 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
}
}






  #s-fe524483-2b4f-4423-a5eb-161f4f6f8ae5 img.shogun-image {
    

    
    
    
  }


#s-fe524483-2b4f-4423-a5eb-161f4f6f8ae5 .shogun-image-content {
  
    align-items: center;
  
}

#s-5bb5fcf9-7126-4ea1-bf61-5d5446ba0363 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5bb5fcf9-7126-4ea1-bf61-5d5446ba0363 .shogun-heading-component h1 {
  color: rgba(79, 106, 126, 1);
  font-weight:  normal ;
  font-family: "DIN Condensed";
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-e7e35920-f2b3-487a-b64c-2cc1d713ab2d {
  min-height: 50px;
}








#s-e7e35920-f2b3-487a-b64c-2cc1d713ab2d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e7e35920-f2b3-487a-b64c-2cc1d713ab2d {
  cursor: pointer;
}#s-e7e35920-f2b3-487a-b64c-2cc1d713ab2d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1ce29e09-e6b0-4355-a9dd-18ccd641f344 {
  border-radius: 40px;
text-align: center;
}
@media (max-width: 767px){#s-1ce29e09-e6b0-4355-a9dd-18ccd641f344 {
  border-radius: 0px;
}
}






  #s-1ce29e09-e6b0-4355-a9dd-18ccd641f344 img.shogun-image {
    

    
    
    
  }


#s-1ce29e09-e6b0-4355-a9dd-18ccd641f344 .shogun-image-content {
  
    align-items: center;
  
}

#s-56c6232d-fecb-4576-959c-1f28ec78dc23 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-56c6232d-fecb-4576-959c-1f28ec78dc23 .shogun-heading-component h1 {
  color: rgba(79, 106, 126, 1);
  font-weight:  normal ;
  font-family: "DIN Condensed";
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-b1afa29f-d131-49ca-bf48-cd53b3cb9bd1 {
  min-height: 50px;
}








#s-b1afa29f-d131-49ca-bf48-cd53b3cb9bd1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b1afa29f-d131-49ca-bf48-cd53b3cb9bd1 {
  cursor: pointer;
}#s-b1afa29f-d131-49ca-bf48-cd53b3cb9bd1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e4a8077c-57dd-486d-94d4-7af8794c6731 {
  border-radius: 40px;
text-align: center;
}
@media (max-width: 767px){#s-e4a8077c-57dd-486d-94d4-7af8794c6731 {
  border-radius: 0px;
}
}






  #s-e4a8077c-57dd-486d-94d4-7af8794c6731 img.shogun-image {
    

    
    
    
  }


#s-e4a8077c-57dd-486d-94d4-7af8794c6731 .shogun-image-content {
  
    align-items: center;
  
}

#s-1e57bc88-938a-4ad3-9ca8-175acf8ed179 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1e57bc88-938a-4ad3-9ca8-175acf8ed179 .shogun-heading-component h1 {
  color: rgba(79, 106, 126, 1);
  font-weight:  normal ;
  font-family: "DIN Condensed";
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-34343414-3bd0-422e-be18-3db57adb8998 {
  margin-top: 30px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-34343414-3bd0-422e-be18-3db57adb8998 .shogun-heading-component h1 {
  color: rgba(102, 187, 172, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 50px;
  
  
  
}



.shg-ig-x {
  overflow-x: hidden;
}

.shg-ig-posts-container {
  display: flex;
  flex-wrap: wrap;
}

.shg-ig-posts {
  box-sizing: border-box;
  height: 100%;
}

.shg-ig-posts-link {
  text-decoration: none;
}

.shg-ig-posts-image {
  max-height: 100%;
  width: 100%;
  display: block;
  aspect-ratio: inherit;
}

.shg-ig-posts-image-square {
  aspect-ratio: 1/1;
  object-fit: cover;
  max-height: 100%;
  width: 100%;
}

.shg-ig-square-wrapper {
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: center;
}

.shg-ig-posts-caption {
  width: 100%;
  font-size: 12px;
  word-wrap: break-word;
  hyphens: auto;
  text-align: left;
}

.shg-ig-details-container {
  padding-top: 9px;
  border-top: 1px solid #ddd;
}

.shg-ig-user-details {
  display: flex;
  flex-direction: row;
}

.shg-ig-user-image {
  max-width: 30px;
  max-height: 30px;
  margin-right: 10px;
}

.shg-ig-username-container {
  display: flex;
  flex-direction: column;
}

.shg-ig-user-full-name {
  margin-bottom: 3px !important;
  font-family: Arial, serif;
  color: #b3b3b3;
  font-size: 12px;
}

.shg-ig-user-createdat {
  margin-bottom: 0 !important;
  font-family: Arial, serif;
  color: #b3b3b3;
  font-size: 12px;
}

@supports not (aspect-ratio: 1/1) {
  .shg-ig-square-wrapper {
    padding: calc((1 / (1 / 1)) * 100%) 0 0;
    position: relative;
  }

  .shg-ig-square-wrapper > .shg-ig-posts-image-square {
    display: block;
    position: absolute;
    top: 0.5em;
    left: 0.5em;
    height: 100%;
  }
}

#s-0809774b-2da1-4040-b2ef-7021a4481896 {
  margin-left: 5%;
margin-bottom: 50px;
margin-right: 5%;
}

[id="s-0809774b-2da1-4040-b2ef-7021a4481896"] .shg-ig-posts-container > .shg-ig-posts {
  width: 50%;
  padding-right: 30px;
}

.shg-ig-posts-container {
  width: calc(100% + 30px) !important;
}

@media (min-width: 768px) {
  [id="s-0809774b-2da1-4040-b2ef-7021a4481896"] .shg-ig-posts-container > .shg-ig-posts {
    width: 25.0%;
    padding-right: 30px;
  }

  .shg-ig-posts-container {
    width: calc(100% + 30px) !important;
  }
}

#s-2c7bd91f-f877-41f4-8635-eb69f3afd52b {
  padding-top: 20px;
padding-bottom: 20px;
text-align: center;
}
@media (max-width: 767px){#s-2c7bd91f-f877-41f4-8635-eb69f3afd52b {
  display: none;
}
#s-2c7bd91f-f877-41f4-8635-eb69f3afd52b, #wrap-s-2c7bd91f-f877-41f4-8635-eb69f3afd52b { display: none !important; }}






  #s-2c7bd91f-f877-41f4-8635-eb69f3afd52b img.shogun-image {
    

    
    
    
  }


#s-2c7bd91f-f877-41f4-8635-eb69f3afd52b .shogun-image-content {
  
    align-items: center;
  
}

#s-b9d4f485-01ee-4266-a64e-ebfac738d66a {
  margin-left: 0px;
margin-right: 0px;
padding-left: 20px;
padding-right: 20px;
}








#s-b9d4f485-01ee-4266-a64e-ebfac738d66a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b9d4f485-01ee-4266-a64e-ebfac738d66a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a47992d4-c84c-4361-98f6-3fc96ba85f7f {
  margin-top: 50px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a47992d4-c84c-4361-98f6-3fc96ba85f7f .shogun-heading-component h1 {
  color: rgba(102, 187, 172, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 50px;
  
  
  
}



.shogun-accordion-wrapper .shogun-accordion {
  margin-bottom: 0;
  border-radius: 4px;
}

.shogun-accordion {
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.shogun-accordion-wrapper .shogun-accordion + .shogun-accordion {
  margin-top: 5px;
}

.shogun-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.shogun-accordion-heading {
  color: #333;
  border-bottom: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  cursor: pointer;
}

.shogun-accordion-title {
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
  text-decoration: none;
  flex: 1;
  user-select: none;
}

.shogun-accordion-body {
  display: none;
  opacity: 0;
  transition: opacity 0.5s linear;
}

.shogun-accordion-body.shogun-accordion-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.shogun-accordion-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1.2em;
}

.shogun-accordion-icon > span {
  transition: 0.3s transform;
  position: absolute;
  right: 0;
  font-size: 1.2em;
}

.shogun-accordion-icon.shogun-icon-chevron > span::after {
  content: "▸";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-chevron
  > span {
  transform: rotate(90deg);
}

.shogun-accordion-icon.shogun-icon-plus > span::after {
  content: "＋";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-plus
  > span {
  transform: rotate(-225deg);
}

#s-c4f9f83a-4fb5-4545-82e4-0b2594642de2 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 50px;
}

#s-c4f9f83a-4fb5-4545-82e4-0b2594642de2 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(213, 213, 213, 1);
}

#s-c4f9f83a-4fb5-4545-82e4-0b2594642de2 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 16px;
}

#s-c4f9f83a-4fb5-4545-82e4-0b2594642de2 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(79, 106, 126, 1);
}

#s-c4f9f83a-4fb5-4545-82e4-0b2594642de2 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(213, 213, 213, 1);
}

#s-c4f9f83a-4fb5-4545-82e4-0b2594642de2 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(79, 106, 126, 1);
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 22px;
}

#s-c4f9f83a-4fb5-4545-82e4-0b2594642de2 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 22px;
}
#s-3ba7e872-ad8f-433c-8a4e-ad989085010d {
  margin-left: 20px;
margin-right: 20px;
}

#s-e7054cc2-c5ce-4785-b3a6-f3a1945c33c3 {
  margin-left: 20px;
margin-right: 20px;
}

#s-eaadfb93-9eef-47e4-b26f-2506a928dd77 {
  margin-left: 20px;
margin-right: 20px;
}

#s-bbe627b9-2d0b-4ee0-bd62-1f67852bdd33 {
  min-height: 50px;
}








#s-bbe627b9-2d0b-4ee0-bd62-1f67852bdd33 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bbe627b9-2d0b-4ee0-bd62-1f67852bdd33 {
  cursor: pointer;
}#s-bbe627b9-2d0b-4ee0-bd62-1f67852bdd33.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0ee959e5-30b7-4e47-ba44-00776dde69b8 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-0ee959e5-30b7-4e47-ba44-00776dde69b8 {
  display: none;
}
#s-0ee959e5-30b7-4e47-ba44-00776dde69b8, #wrap-s-0ee959e5-30b7-4e47-ba44-00776dde69b8 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0ee959e5-30b7-4e47-ba44-00776dde69b8 {
  display: none;
}
#s-0ee959e5-30b7-4e47-ba44-00776dde69b8, #wrap-s-0ee959e5-30b7-4e47-ba44-00776dde69b8 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-0ee959e5-30b7-4e47-ba44-00776dde69b8 {
  display: none;
}
#s-0ee959e5-30b7-4e47-ba44-00776dde69b8, #wrap-s-0ee959e5-30b7-4e47-ba44-00776dde69b8 { display: none !important; }}@media (max-width: 767px){#s-0ee959e5-30b7-4e47-ba44-00776dde69b8 {
  min-height: 100%;
}
}






  #s-0ee959e5-30b7-4e47-ba44-00776dde69b8 img.shogun-image {
    

    
    
    
  }


#s-0ee959e5-30b7-4e47-ba44-00776dde69b8 .shogun-image-content {
  
    align-items: center;
  
}

#s-adfddb51-5c93-4c7f-93c9-9e46bb4dedbd {
  text-align: left;
}

/*
  $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}
