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

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

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

@media (min-width: 0px) {
[id="s-be956cb0-ecd1-47f7-965f-81469dc86c10"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-be956cb0-ecd1-47f7-965f-81469dc86c10"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-be956cb0-ecd1-47f7-965f-81469dc86c10"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-be956cb0-ecd1-47f7-965f-81469dc86c10"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-be956cb0-ecd1-47f7-965f-81469dc86c10"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-be956cb0-ecd1-47f7-965f-81469dc86c10"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-be956cb0-ecd1-47f7-965f-81469dc86c10"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 10.0px);
}

}

.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-a957ee6f-b606-4145-9851-3713b7945e43 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a957ee6f-b606-4145-9851-3713b7945e43 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-2139041f-f6dd-4d43-a2ec-a4673c1203c4 {
  text-align: left;
}

#s-2139041f-f6dd-4d43-a2ec-a4673c1203c4 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 20px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-2139041f-f6dd-4d43-a2ec-a4673c1203c4 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 20px;
}

#s-2139041f-f6dd-4d43-a2ec-a4673c1203c4 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

.shg-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-6e8f7447-610c-4273-a402-caaa54c69093 {
  min-height: 50px;
}








#s-6e8f7447-610c-4273-a402-caaa54c69093 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6e8f7447-610c-4273-a402-caaa54c69093.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-30483a44-68b2-42b3-873d-f601a9699866 {
  min-height: 50px;
}








#s-30483a44-68b2-42b3-873d-f601a9699866 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-30483a44-68b2-42b3-873d-f601a9699866.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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-b7fa686e-0a22-48bd-876d-65734b94dd50 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-b7fa686e-0a22-48bd-876d-65734b94dd50 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-b7fa686e-0a22-48bd-876d-65734b94dd50 .shg-sld-nav-button.shg-sld-left,
#s-b7fa686e-0a22-48bd-876d-65734b94dd50 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

.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-7da53ba2-3637-42e3-a2bc-50394f729d89 {
  text-align: center;
}







  #s-7da53ba2-3637-42e3-a2bc-50394f729d89 img.shogun-image {
    

    
    
    
  }


#s-7da53ba2-3637-42e3-a2bc-50394f729d89 .shogun-image-content {
  
    align-items: center;
  
}

#s-e707698c-18de-448e-a037-7e40cad84486 {
  text-align: center;
}







  #s-e707698c-18de-448e-a037-7e40cad84486 img.shogun-image {
    

    
    
    
  }


#s-e707698c-18de-448e-a037-7e40cad84486 .shogun-image-content {
  
    align-items: center;
  
}

#s-273c4f82-c500-429b-8934-573691c8799a {
  text-align: center;
}







  #s-273c4f82-c500-429b-8934-573691c8799a img.shogun-image {
    

    
    
    
  }


#s-273c4f82-c500-429b-8934-573691c8799a .shogun-image-content {
  
    align-items: center;
  
}

#s-18e73fdf-a199-49b3-b95d-641e35842052 {
  min-height: 50px;
}








#s-18e73fdf-a199-49b3-b95d-641e35842052 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-18e73fdf-a199-49b3-b95d-641e35842052.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9960ff2a-c0d0-4594-aa08-e62923ac1659 {
  min-height: 50px;
}








#s-9960ff2a-c0d0-4594-aa08-e62923ac1659 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9960ff2a-c0d0-4594-aa08-e62923ac1659.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 991px){#s-134441de-2743-41ac-85b7-4e4405933195 {
  display: none;
}
#s-134441de-2743-41ac-85b7-4e4405933195, #wrap-s-134441de-2743-41ac-85b7-4e4405933195 { display: none !important; }}@media (max-width: 767px){#s-134441de-2743-41ac-85b7-4e4405933195 {
  display: none;
}
#s-134441de-2743-41ac-85b7-4e4405933195, #wrap-s-134441de-2743-41ac-85b7-4e4405933195 { display: none !important; }}
@media (min-width: 0px) {
[id="s-134441de-2743-41ac-85b7-4e4405933195"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-134441de-2743-41ac-85b7-4e4405933195"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-134441de-2743-41ac-85b7-4e4405933195"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-134441de-2743-41ac-85b7-4e4405933195"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-134441de-2743-41ac-85b7-4e4405933195"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-134441de-2743-41ac-85b7-4e4405933195"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-134441de-2743-41ac-85b7-4e4405933195"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

}

#s-b2e37dcb-6dbe-4d2c-bf2d-c6ca7b1d8343 {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-b2e37dcb-6dbe-4d2c-bf2d-c6ca7b1d8343 {
  display: none;
}
#s-b2e37dcb-6dbe-4d2c-bf2d-c6ca7b1d8343, #wrap-s-b2e37dcb-6dbe-4d2c-bf2d-c6ca7b1d8343 { display: none !important; }}@media (max-width: 767px){#s-b2e37dcb-6dbe-4d2c-bf2d-c6ca7b1d8343 {
  display: none;
}
#s-b2e37dcb-6dbe-4d2c-bf2d-c6ca7b1d8343, #wrap-s-b2e37dcb-6dbe-4d2c-bf2d-c6ca7b1d8343 { display: none !important; }}







#s-b2e37dcb-6dbe-4d2c-bf2d-c6ca7b1d8343 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b2e37dcb-6dbe-4d2c-bf2d-c6ca7b1d8343.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2061e17e-f6fb-4a6f-8607-1e7629506acb {
  text-align: center;
}







  #s-2061e17e-f6fb-4a6f-8607-1e7629506acb img.shogun-image {
    

    
    
    
  }


#s-2061e17e-f6fb-4a6f-8607-1e7629506acb .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-0f752aed-a1ae-47c7-8a9f-9023dd705847"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0f752aed-a1ae-47c7-8a9f-9023dd705847"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0f752aed-a1ae-47c7-8a9f-9023dd705847"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0f752aed-a1ae-47c7-8a9f-9023dd705847"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-12c54554-5ca1-4b20-b98b-a31c3a416832 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-12c54554-5ca1-4b20-b98b-a31c3a416832 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  300 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 30px;
  line-height: 0.5em;
  
  text-align: left;
}



#s-b0dfe3e6-e1c9-4ba5-b80a-d3c60a4382e8 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-b0dfe3e6-e1c9-4ba5-b80a-d3c60a4382e8 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 40px;
  
  
  text-align: left;
}



#s-7a9ca096-6a79-4881-87f3-9cdf6a27246c {
  text-align: left;
}







  #s-7a9ca096-6a79-4881-87f3-9cdf6a27246c img.shogun-image {
    

    
    
    
  }


#s-7a9ca096-6a79-4881-87f3-9cdf6a27246c .shogun-image-content {
  
    align-items: center;
  
}

#s-40133e1c-83a0-4217-a8ef-bf8ef8039eb9 {
  margin-left: 5%;
margin-right: 40%;
padding-top: 20px;
padding-bottom: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 11px;
min-height: 50px;
background-color: rgba(240, 241, 241, 1);
}








#s-40133e1c-83a0-4217-a8ef-bf8ef8039eb9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-40133e1c-83a0-4217-a8ef-bf8ef8039eb9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3f839e6e-acca-446e-b91e-c7550a63e793 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-3f839e6e-acca-446e-b91e-c7550a63e793 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 19px;
  
  
  text-align: center;
}



#s-2ab4a473-bd2d-41e7-996a-4f73b9fd5b2d {
  margin-left: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2ab4a473-bd2d-41e7-996a-4f73b9fd5b2d .shogun-heading-component h1 {
  color: rgba(133, 219, 215, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 37px;
  line-height: 1em;
  
  text-align: center;
}



#s-39571af1-6134-4058-8d27-047c786eba87 {
  margin-left: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-39571af1-6134-4058-8d27-047c786eba87 .shogun-heading-component h1 {
  color: #000;
  font-weight:  300 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: center;
}



#s-9227449e-a87c-415d-89f0-5d7de7645906 {
  margin-left: 0%;
margin-right: 0%;
padding-left: 14%;
padding-bottom: 9px;
padding-right: 3%;
}

@media (min-width: 0px) {
[id="s-9227449e-a87c-415d-89f0-5d7de7645906"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-9227449e-a87c-415d-89f0-5d7de7645906"] > .shg-row > .shg-c-sm-3_2 {
  width: calc(26.66666666666667% - 24.0px);
}

[id="s-9227449e-a87c-415d-89f0-5d7de7645906"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 24.0px);
}

[id="s-9227449e-a87c-415d-89f0-5d7de7645906"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 24.0px);
}

}

@media (min-width: 992px) {
[id="s-9227449e-a87c-415d-89f0-5d7de7645906"] > .shg-row > .shg-c-md-3_2 {
  width: calc(26.66666666666667% - 24.0px);
}

[id="s-9227449e-a87c-415d-89f0-5d7de7645906"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 24.0px);
}

[id="s-9227449e-a87c-415d-89f0-5d7de7645906"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 24.0px);
}

}

@media (min-width: 1200px) {
[id="s-9227449e-a87c-415d-89f0-5d7de7645906"] > .shg-row > .shg-c-lg-3_2 {
  width: calc(26.66666666666667% - 24.0px);
}

[id="s-9227449e-a87c-415d-89f0-5d7de7645906"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 24.0px);
}

[id="s-9227449e-a87c-415d-89f0-5d7de7645906"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 24.0px);
}

}

#s-d98fca56-4f18-46e5-911d-64411c1834a0 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-d98fca56-4f18-46e5-911d-64411c1834a0 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}



#s-6b2fe0bc-8453-42a8-9e8e-8ac2d1b1f7c3 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-6b2fe0bc-8453-42a8-9e8e-8ac2d1b1f7c3 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}



#s-42376cfe-18ac-4d70-b2c9-e3fecafaad78 {
  margin-left: 0%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-42376cfe-18ac-4d70-b2c9-e3fecafaad78 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}



#s-246356f1-d1f3-4f70-b554-ba76505e0309 {
  margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-246356f1-d1f3-4f70-b554-ba76505e0309 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}



#s-2a466210-739f-410d-be92-bf13479fb9fc {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-2a466210-739f-410d-be92-bf13479fb9fc .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}
#s-6e1a36de-6f98-4c26-927c-1e6b6fcff995 {
  text-align: center;
}







  img.s-6e1a36de-6f98-4c26-927c-1e6b6fcff995.shogun-image {
    
    
  }


.s-6e1a36de-6f98-4c26-927c-1e6b6fcff995 .shogun-image-content {
  
    align-items: center;
  
}

.s-6e1a36de-6f98-4c26-927c-1e6b6fcff995.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e1a36de-6f98-4c26-927c-1e6b6fcff995.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e1a36de-6f98-4c26-927c-1e6b6fcff995.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-6e1a36de-6f98-4c26-927c-1e6b6fcff995.shogun-image {
    
    
  }


.s-6e1a36de-6f98-4c26-927c-1e6b6fcff995 .shogun-image-content {
  
    align-items: center;
  
}

.s-6e1a36de-6f98-4c26-927c-1e6b6fcff995.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e1a36de-6f98-4c26-927c-1e6b6fcff995.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e1a36de-6f98-4c26-927c-1e6b6fcff995.shogun-image {
  box-sizing: border-box;
}



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





  img.s-6e1a36de-6f98-4c26-927c-1e6b6fcff995.shogun-image {
    
    
  }


.s-6e1a36de-6f98-4c26-927c-1e6b6fcff995 .shogun-image-content {
  
    align-items: center;
  
}

.s-6e1a36de-6f98-4c26-927c-1e6b6fcff995.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e1a36de-6f98-4c26-927c-1e6b6fcff995.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e1a36de-6f98-4c26-927c-1e6b6fcff995.shogun-image {
  box-sizing: border-box;
}



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





  img.s-6e1a36de-6f98-4c26-927c-1e6b6fcff995.shogun-image {
    
    
  }


.s-6e1a36de-6f98-4c26-927c-1e6b6fcff995 .shogun-image-content {
  
    align-items: center;
  
}

.s-6e1a36de-6f98-4c26-927c-1e6b6fcff995.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e1a36de-6f98-4c26-927c-1e6b6fcff995.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e1a36de-6f98-4c26-927c-1e6b6fcff995.shogun-image {
  box-sizing: border-box;
}



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





  img.s-6e1a36de-6f98-4c26-927c-1e6b6fcff995.shogun-image {
    
    
  }


.s-6e1a36de-6f98-4c26-927c-1e6b6fcff995 .shogun-image-content {
  
    align-items: center;
  
}

.s-6e1a36de-6f98-4c26-927c-1e6b6fcff995.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6e1a36de-6f98-4c26-927c-1e6b6fcff995.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6e1a36de-6f98-4c26-927c-1e6b6fcff995.shogun-image {
  box-sizing: border-box;
}



}
#s-e32f841d-a5e0-4541-a978-e85be72162aa {
  padding-top: 45px;
padding-bottom: 35px;
text-align: center;
}

#s-e32f841d-a5e0-4541-a978-e85be72162aa .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: center;
}



#s-77e6816d-5db9-4083-9abb-0a2d030c8395 {
  margin-left: 10%;
margin-right: 10%;
}

@media (min-width: 0px) {
[id="s-77e6816d-5db9-4083-9abb-0a2d030c8395"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-77e6816d-5db9-4083-9abb-0a2d030c8395"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-77e6816d-5db9-4083-9abb-0a2d030c8395"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-77e6816d-5db9-4083-9abb-0a2d030c8395"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

}

#s-df9e3718-5298-42fb-850e-4449be224b82 {
  text-align: center;
}







  img.s-df9e3718-5298-42fb-850e-4449be224b82.shogun-image {
    
    
  }


.s-df9e3718-5298-42fb-850e-4449be224b82 .shogun-image-content {
  
    align-items: center;
  
}

.s-df9e3718-5298-42fb-850e-4449be224b82.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df9e3718-5298-42fb-850e-4449be224b82.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df9e3718-5298-42fb-850e-4449be224b82.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-df9e3718-5298-42fb-850e-4449be224b82.shogun-image {
    
    
  }


.s-df9e3718-5298-42fb-850e-4449be224b82 .shogun-image-content {
  
    align-items: center;
  
}

.s-df9e3718-5298-42fb-850e-4449be224b82.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df9e3718-5298-42fb-850e-4449be224b82.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df9e3718-5298-42fb-850e-4449be224b82.shogun-image {
  box-sizing: border-box;
}



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





  img.s-df9e3718-5298-42fb-850e-4449be224b82.shogun-image {
    
    
  }


.s-df9e3718-5298-42fb-850e-4449be224b82 .shogun-image-content {
  
    align-items: center;
  
}

.s-df9e3718-5298-42fb-850e-4449be224b82.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df9e3718-5298-42fb-850e-4449be224b82.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df9e3718-5298-42fb-850e-4449be224b82.shogun-image {
  box-sizing: border-box;
}



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





  img.s-df9e3718-5298-42fb-850e-4449be224b82.shogun-image {
    
    
  }


.s-df9e3718-5298-42fb-850e-4449be224b82 .shogun-image-content {
  
    align-items: center;
  
}

.s-df9e3718-5298-42fb-850e-4449be224b82.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df9e3718-5298-42fb-850e-4449be224b82.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df9e3718-5298-42fb-850e-4449be224b82.shogun-image {
  box-sizing: border-box;
}



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





  img.s-df9e3718-5298-42fb-850e-4449be224b82.shogun-image {
    
    
  }


.s-df9e3718-5298-42fb-850e-4449be224b82 .shogun-image-content {
  
    align-items: center;
  
}

.s-df9e3718-5298-42fb-850e-4449be224b82.shg-align-container {
  display: flex;
  justify-content: center
}

.s-df9e3718-5298-42fb-850e-4449be224b82.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-df9e3718-5298-42fb-850e-4449be224b82.shogun-image {
  box-sizing: border-box;
}



}
#s-3f771671-b149-4ee3-ab0d-14d02e7bd599 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3f771671-b149-4ee3-ab0d-14d02e7bd599 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-5434132c-1402-4eca-909d-c2e14874da72 {
  text-align: center;
}







  img.s-5434132c-1402-4eca-909d-c2e14874da72.shogun-image {
    
    
  }


.s-5434132c-1402-4eca-909d-c2e14874da72 .shogun-image-content {
  
    align-items: center;
  
}

.s-5434132c-1402-4eca-909d-c2e14874da72.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5434132c-1402-4eca-909d-c2e14874da72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5434132c-1402-4eca-909d-c2e14874da72.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-5434132c-1402-4eca-909d-c2e14874da72.shogun-image {
    
    
  }


.s-5434132c-1402-4eca-909d-c2e14874da72 .shogun-image-content {
  
    align-items: center;
  
}

.s-5434132c-1402-4eca-909d-c2e14874da72.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5434132c-1402-4eca-909d-c2e14874da72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5434132c-1402-4eca-909d-c2e14874da72.shogun-image {
  box-sizing: border-box;
}



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





  img.s-5434132c-1402-4eca-909d-c2e14874da72.shogun-image {
    
    
  }


.s-5434132c-1402-4eca-909d-c2e14874da72 .shogun-image-content {
  
    align-items: center;
  
}

.s-5434132c-1402-4eca-909d-c2e14874da72.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5434132c-1402-4eca-909d-c2e14874da72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5434132c-1402-4eca-909d-c2e14874da72.shogun-image {
  box-sizing: border-box;
}



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





  img.s-5434132c-1402-4eca-909d-c2e14874da72.shogun-image {
    
    
  }


.s-5434132c-1402-4eca-909d-c2e14874da72 .shogun-image-content {
  
    align-items: center;
  
}

.s-5434132c-1402-4eca-909d-c2e14874da72.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5434132c-1402-4eca-909d-c2e14874da72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5434132c-1402-4eca-909d-c2e14874da72.shogun-image {
  box-sizing: border-box;
}



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





  img.s-5434132c-1402-4eca-909d-c2e14874da72.shogun-image {
    
    
  }


.s-5434132c-1402-4eca-909d-c2e14874da72 .shogun-image-content {
  
    align-items: center;
  
}

.s-5434132c-1402-4eca-909d-c2e14874da72.shg-align-container {
  display: flex;
  justify-content: center
}

.s-5434132c-1402-4eca-909d-c2e14874da72.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-5434132c-1402-4eca-909d-c2e14874da72.shogun-image {
  box-sizing: border-box;
}



}
#s-2abe5fde-90a9-4a24-93cc-42f4cd28e0fe {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2abe5fde-90a9-4a24-93cc-42f4cd28e0fe .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-7025c6e2-48b1-4ccb-881b-fefa88d9c493 {
  text-align: center;
}







  img.s-7025c6e2-48b1-4ccb-881b-fefa88d9c493.shogun-image {
    
    
  }


.s-7025c6e2-48b1-4ccb-881b-fefa88d9c493 .shogun-image-content {
  
    align-items: center;
  
}

.s-7025c6e2-48b1-4ccb-881b-fefa88d9c493.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7025c6e2-48b1-4ccb-881b-fefa88d9c493.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7025c6e2-48b1-4ccb-881b-fefa88d9c493.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-7025c6e2-48b1-4ccb-881b-fefa88d9c493.shogun-image {
    
    
  }


.s-7025c6e2-48b1-4ccb-881b-fefa88d9c493 .shogun-image-content {
  
    align-items: center;
  
}

.s-7025c6e2-48b1-4ccb-881b-fefa88d9c493.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7025c6e2-48b1-4ccb-881b-fefa88d9c493.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7025c6e2-48b1-4ccb-881b-fefa88d9c493.shogun-image {
  box-sizing: border-box;
}



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





  img.s-7025c6e2-48b1-4ccb-881b-fefa88d9c493.shogun-image {
    
    
  }


.s-7025c6e2-48b1-4ccb-881b-fefa88d9c493 .shogun-image-content {
  
    align-items: center;
  
}

.s-7025c6e2-48b1-4ccb-881b-fefa88d9c493.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7025c6e2-48b1-4ccb-881b-fefa88d9c493.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7025c6e2-48b1-4ccb-881b-fefa88d9c493.shogun-image {
  box-sizing: border-box;
}



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





  img.s-7025c6e2-48b1-4ccb-881b-fefa88d9c493.shogun-image {
    
    
  }


.s-7025c6e2-48b1-4ccb-881b-fefa88d9c493 .shogun-image-content {
  
    align-items: center;
  
}

.s-7025c6e2-48b1-4ccb-881b-fefa88d9c493.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7025c6e2-48b1-4ccb-881b-fefa88d9c493.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7025c6e2-48b1-4ccb-881b-fefa88d9c493.shogun-image {
  box-sizing: border-box;
}



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





  img.s-7025c6e2-48b1-4ccb-881b-fefa88d9c493.shogun-image {
    
    
  }


.s-7025c6e2-48b1-4ccb-881b-fefa88d9c493 .shogun-image-content {
  
    align-items: center;
  
}

.s-7025c6e2-48b1-4ccb-881b-fefa88d9c493.shg-align-container {
  display: flex;
  justify-content: center
}

.s-7025c6e2-48b1-4ccb-881b-fefa88d9c493.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7025c6e2-48b1-4ccb-881b-fefa88d9c493.shogun-image {
  box-sizing: border-box;
}



}
#s-aff83e7a-7fe1-4c99-ae6d-4e745c6b9999 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-aff83e7a-7fe1-4c99-ae6d-4e745c6b9999 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-d36090b7-e95f-47cc-bce3-5640a207ef43 {
  text-align: center;
}







  img.s-d36090b7-e95f-47cc-bce3-5640a207ef43.shogun-image {
    
    
  }


.s-d36090b7-e95f-47cc-bce3-5640a207ef43 .shogun-image-content {
  
    align-items: center;
  
}

.s-d36090b7-e95f-47cc-bce3-5640a207ef43.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d36090b7-e95f-47cc-bce3-5640a207ef43.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d36090b7-e95f-47cc-bce3-5640a207ef43.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-d36090b7-e95f-47cc-bce3-5640a207ef43.shogun-image {
    
    
  }


.s-d36090b7-e95f-47cc-bce3-5640a207ef43 .shogun-image-content {
  
    align-items: center;
  
}

.s-d36090b7-e95f-47cc-bce3-5640a207ef43.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d36090b7-e95f-47cc-bce3-5640a207ef43.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d36090b7-e95f-47cc-bce3-5640a207ef43.shogun-image {
  box-sizing: border-box;
}



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





  img.s-d36090b7-e95f-47cc-bce3-5640a207ef43.shogun-image {
    
    
  }


.s-d36090b7-e95f-47cc-bce3-5640a207ef43 .shogun-image-content {
  
    align-items: center;
  
}

.s-d36090b7-e95f-47cc-bce3-5640a207ef43.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d36090b7-e95f-47cc-bce3-5640a207ef43.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d36090b7-e95f-47cc-bce3-5640a207ef43.shogun-image {
  box-sizing: border-box;
}



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





  img.s-d36090b7-e95f-47cc-bce3-5640a207ef43.shogun-image {
    
    
  }


.s-d36090b7-e95f-47cc-bce3-5640a207ef43 .shogun-image-content {
  
    align-items: center;
  
}

.s-d36090b7-e95f-47cc-bce3-5640a207ef43.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d36090b7-e95f-47cc-bce3-5640a207ef43.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d36090b7-e95f-47cc-bce3-5640a207ef43.shogun-image {
  box-sizing: border-box;
}



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





  img.s-d36090b7-e95f-47cc-bce3-5640a207ef43.shogun-image {
    
    
  }


.s-d36090b7-e95f-47cc-bce3-5640a207ef43 .shogun-image-content {
  
    align-items: center;
  
}

.s-d36090b7-e95f-47cc-bce3-5640a207ef43.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d36090b7-e95f-47cc-bce3-5640a207ef43.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d36090b7-e95f-47cc-bce3-5640a207ef43.shogun-image {
  box-sizing: border-box;
}



}
#s-a2b6c7f9-160b-4840-8281-adf074c14ff1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a2b6c7f9-160b-4840-8281-adf074c14ff1 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-c54553c7-fe75-4d38-9523-5e05c31804c8 {
  text-align: center;
}







  img.s-c54553c7-fe75-4d38-9523-5e05c31804c8.shogun-image {
    
    
  }


.s-c54553c7-fe75-4d38-9523-5e05c31804c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-c54553c7-fe75-4d38-9523-5e05c31804c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c54553c7-fe75-4d38-9523-5e05c31804c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c54553c7-fe75-4d38-9523-5e05c31804c8.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-c54553c7-fe75-4d38-9523-5e05c31804c8.shogun-image {
    
    
  }


.s-c54553c7-fe75-4d38-9523-5e05c31804c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-c54553c7-fe75-4d38-9523-5e05c31804c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c54553c7-fe75-4d38-9523-5e05c31804c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c54553c7-fe75-4d38-9523-5e05c31804c8.shogun-image {
  box-sizing: border-box;
}



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





  img.s-c54553c7-fe75-4d38-9523-5e05c31804c8.shogun-image {
    
    
  }


.s-c54553c7-fe75-4d38-9523-5e05c31804c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-c54553c7-fe75-4d38-9523-5e05c31804c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c54553c7-fe75-4d38-9523-5e05c31804c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c54553c7-fe75-4d38-9523-5e05c31804c8.shogun-image {
  box-sizing: border-box;
}



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





  img.s-c54553c7-fe75-4d38-9523-5e05c31804c8.shogun-image {
    
    
  }


.s-c54553c7-fe75-4d38-9523-5e05c31804c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-c54553c7-fe75-4d38-9523-5e05c31804c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c54553c7-fe75-4d38-9523-5e05c31804c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c54553c7-fe75-4d38-9523-5e05c31804c8.shogun-image {
  box-sizing: border-box;
}



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





  img.s-c54553c7-fe75-4d38-9523-5e05c31804c8.shogun-image {
    
    
  }


.s-c54553c7-fe75-4d38-9523-5e05c31804c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-c54553c7-fe75-4d38-9523-5e05c31804c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c54553c7-fe75-4d38-9523-5e05c31804c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c54553c7-fe75-4d38-9523-5e05c31804c8.shogun-image {
  box-sizing: border-box;
}



}
#s-60700f49-3230-47d3-a0c8-b2a27638876f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-60700f49-3230-47d3-a0c8-b2a27638876f .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-495452f8-8db7-444d-aad0-dfa374970253 {
  text-align: center;
}







  img.s-495452f8-8db7-444d-aad0-dfa374970253.shogun-image {
    
    
  }


.s-495452f8-8db7-444d-aad0-dfa374970253 .shogun-image-content {
  
    align-items: center;
  
}

.s-495452f8-8db7-444d-aad0-dfa374970253.shg-align-container {
  display: flex;
  justify-content: center
}

.s-495452f8-8db7-444d-aad0-dfa374970253.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-495452f8-8db7-444d-aad0-dfa374970253.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-495452f8-8db7-444d-aad0-dfa374970253.shogun-image {
    
    
  }


.s-495452f8-8db7-444d-aad0-dfa374970253 .shogun-image-content {
  
    align-items: center;
  
}

.s-495452f8-8db7-444d-aad0-dfa374970253.shg-align-container {
  display: flex;
  justify-content: center
}

.s-495452f8-8db7-444d-aad0-dfa374970253.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-495452f8-8db7-444d-aad0-dfa374970253.shogun-image {
  box-sizing: border-box;
}



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





  img.s-495452f8-8db7-444d-aad0-dfa374970253.shogun-image {
    
    
  }


.s-495452f8-8db7-444d-aad0-dfa374970253 .shogun-image-content {
  
    align-items: center;
  
}

.s-495452f8-8db7-444d-aad0-dfa374970253.shg-align-container {
  display: flex;
  justify-content: center
}

.s-495452f8-8db7-444d-aad0-dfa374970253.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-495452f8-8db7-444d-aad0-dfa374970253.shogun-image {
  box-sizing: border-box;
}



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





  img.s-495452f8-8db7-444d-aad0-dfa374970253.shogun-image {
    
    
  }


.s-495452f8-8db7-444d-aad0-dfa374970253 .shogun-image-content {
  
    align-items: center;
  
}

.s-495452f8-8db7-444d-aad0-dfa374970253.shg-align-container {
  display: flex;
  justify-content: center
}

.s-495452f8-8db7-444d-aad0-dfa374970253.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-495452f8-8db7-444d-aad0-dfa374970253.shogun-image {
  box-sizing: border-box;
}



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





  img.s-495452f8-8db7-444d-aad0-dfa374970253.shogun-image {
    
    
  }


.s-495452f8-8db7-444d-aad0-dfa374970253 .shogun-image-content {
  
    align-items: center;
  
}

.s-495452f8-8db7-444d-aad0-dfa374970253.shg-align-container {
  display: flex;
  justify-content: center
}

.s-495452f8-8db7-444d-aad0-dfa374970253.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-495452f8-8db7-444d-aad0-dfa374970253.shogun-image {
  box-sizing: border-box;
}



}
#s-ee478584-09cb-4477-83b0-e7240d45a554 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ee478584-09cb-4477-83b0-e7240d45a554 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-00d2b578-1a38-4752-b1e6-e188155ab903 {
  margin-top: -1%;
margin-bottom: -1%;
min-height: 50px;
}








#s-00d2b578-1a38-4752-b1e6-e188155ab903 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-00d2b578-1a38-4752-b1e6-e188155ab903.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-d98a3c89-d443-4b8b-b0f8-09d1e1a07c52"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d98a3c89-d443-4b8b-b0f8-09d1e1a07c52"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d98a3c89-d443-4b8b-b0f8-09d1e1a07c52"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d98a3c89-d443-4b8b-b0f8-09d1e1a07c52"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-a5c2f38b-a35b-4814-bd93-6d32d85c65a1 {
  text-align: center;
}







  #s-a5c2f38b-a35b-4814-bd93-6d32d85c65a1 img.shogun-image {
    

    
    
    
  }


#s-a5c2f38b-a35b-4814-bd93-6d32d85c65a1 .shogun-image-content {
  
    align-items: center;
  
}

#s-744ea38c-1dc4-4ec1-aa62-7726871bf92e {
  margin-left: 14%;
min-height: 50px;
}








#s-744ea38c-1dc4-4ec1-aa62-7726871bf92e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-744ea38c-1dc4-4ec1-aa62-7726871bf92e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-23b9d003-8e89-4118-9a9c-14af7d372224 {
  margin-left: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-23b9d003-8e89-4118-9a9c-14af7d372224 .shogun-heading-component h1 {
  color: rgba(133, 219, 215, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 38px;
  line-height: 1.3em;
  
  text-align: left;
}



#s-54619495-09a4-418e-83ca-fcf459bf9c57 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-54619495-09a4-418e-83ca-fcf459bf9c57 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



@media (min-width: 0px) {
[id="s-405a3f89-5b9e-4f88-8adb-202242789a6f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-405a3f89-5b9e-4f88-8adb-202242789a6f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-405a3f89-5b9e-4f88-8adb-202242789a6f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-405a3f89-5b9e-4f88-8adb-202242789a6f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-7871578b-d12e-4358-9f1b-f2cbf3e53208 {
  margin-left: 15%;
min-height: 50px;
}








#s-7871578b-d12e-4358-9f1b-f2cbf3e53208 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7871578b-d12e-4358-9f1b-f2cbf3e53208.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3701a763-8603-427d-8835-e5e78d7afd56 {
  margin-left: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-3701a763-8603-427d-8835-e5e78d7afd56 .shogun-heading-component h1 {
  color: rgba(133, 219, 215, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 38px;
  line-height: 1.3em;
  
  text-align: left;
}



#s-22489b19-6ffb-4d60-a71d-ac3703cd4642 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-22489b19-6ffb-4d60-a71d-ac3703cd4642 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-da8841e8-3ffa-48e9-8d78-56516ec0bf1b {
  text-align: center;
}







  #s-da8841e8-3ffa-48e9-8d78-56516ec0bf1b img.shogun-image {
    

    
    
    
  }


#s-da8841e8-3ffa-48e9-8d78-56516ec0bf1b .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-1956f393-2aba-4382-bf7c-f9991035ef2d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1956f393-2aba-4382-bf7c-f9991035ef2d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1956f393-2aba-4382-bf7c-f9991035ef2d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1956f393-2aba-4382-bf7c-f9991035ef2d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-90124faf-3848-4865-af8e-b4b605478fd4 {
  text-align: center;
}







  #s-90124faf-3848-4865-af8e-b4b605478fd4 img.shogun-image {
    

    
    
    
  }


#s-90124faf-3848-4865-af8e-b4b605478fd4 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-2fd5ce4c-e555-40f2-894c-7f8103431cfa {
  margin-left: 9%;
margin-right: 0%;
min-height: 50px;
}








#s-2fd5ce4c-e555-40f2-894c-7f8103431cfa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2fd5ce4c-e555-40f2-894c-7f8103431cfa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-03b3b9ce-c529-4d7e-84e3-f82b6db98a6b {
  margin-left: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-03b3b9ce-c529-4d7e-84e3-f82b6db98a6b .shogun-heading-component h1 {
  color: rgba(133, 219, 215, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 38px;
  line-height: 1.3em;
  
  text-align: left;
}



#s-ef15870d-8d61-49c6-9cd5-c8ff4e928355 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-ef15870d-8d61-49c6-9cd5-c8ff4e928355 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-56019754-e325-4c8f-b628-ba9deddc65a1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-56019754-e325-4c8f-b628-ba9deddc65a1 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-eb41a0f8-32e0-4286-82cb-76e769479156 {
  min-height: 50px;
}








#s-eb41a0f8-32e0-4286-82cb-76e769479156 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eb41a0f8-32e0-4286-82cb-76e769479156.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0dde8fe6-ff1d-494e-84bd-6866813dedf6 {
  padding-left: 15%;
padding-right: 15%;
min-height: 50px;
}








#s-0dde8fe6-ff1d-494e-84bd-6866813dedf6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0dde8fe6-ff1d-494e-84bd-6866813dedf6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2306105e-6d7e-40db-8021-023bf75288c9 {
  padding-top: 15px;
padding-bottom: 15px;
}

@media (min-width: 0px) {
[id="s-2306105e-6d7e-40db-8021-023bf75288c9"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-2306105e-6d7e-40db-8021-023bf75288c9"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 992px) {
[id="s-2306105e-6d7e-40db-8021-023bf75288c9"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 1200px) {
[id="s-2306105e-6d7e-40db-8021-023bf75288c9"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 11.25px);
}

}

#s-9f34822b-96bb-4319-8958-832a8c08d535 {
  text-align: center;
}







  img.s-9f34822b-96bb-4319-8958-832a8c08d535.shogun-image {
    
    
  }


.s-9f34822b-96bb-4319-8958-832a8c08d535 .shogun-image-content {
  
    align-items: center;
  
}

.s-9f34822b-96bb-4319-8958-832a8c08d535.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f34822b-96bb-4319-8958-832a8c08d535.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f34822b-96bb-4319-8958-832a8c08d535.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-9f34822b-96bb-4319-8958-832a8c08d535.shogun-image {
    
    
  }


.s-9f34822b-96bb-4319-8958-832a8c08d535 .shogun-image-content {
  
    align-items: center;
  
}

.s-9f34822b-96bb-4319-8958-832a8c08d535.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f34822b-96bb-4319-8958-832a8c08d535.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f34822b-96bb-4319-8958-832a8c08d535.shogun-image {
  box-sizing: border-box;
}



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





  img.s-9f34822b-96bb-4319-8958-832a8c08d535.shogun-image {
    
    
  }


.s-9f34822b-96bb-4319-8958-832a8c08d535 .shogun-image-content {
  
    align-items: center;
  
}

.s-9f34822b-96bb-4319-8958-832a8c08d535.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f34822b-96bb-4319-8958-832a8c08d535.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f34822b-96bb-4319-8958-832a8c08d535.shogun-image {
  box-sizing: border-box;
}



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





  img.s-9f34822b-96bb-4319-8958-832a8c08d535.shogun-image {
    
    
  }


.s-9f34822b-96bb-4319-8958-832a8c08d535 .shogun-image-content {
  
    align-items: center;
  
}

.s-9f34822b-96bb-4319-8958-832a8c08d535.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f34822b-96bb-4319-8958-832a8c08d535.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f34822b-96bb-4319-8958-832a8c08d535.shogun-image {
  box-sizing: border-box;
}



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





  img.s-9f34822b-96bb-4319-8958-832a8c08d535.shogun-image {
    
    
  }


.s-9f34822b-96bb-4319-8958-832a8c08d535 .shogun-image-content {
  
    align-items: center;
  
}

.s-9f34822b-96bb-4319-8958-832a8c08d535.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9f34822b-96bb-4319-8958-832a8c08d535.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9f34822b-96bb-4319-8958-832a8c08d535.shogun-image {
  box-sizing: border-box;
}



}
#s-c18345cf-c47b-48db-aebe-278178d78d1a {
  text-align: center;
}







  img.s-c18345cf-c47b-48db-aebe-278178d78d1a.shogun-image {
    
    
  }


.s-c18345cf-c47b-48db-aebe-278178d78d1a .shogun-image-content {
  
    align-items: center;
  
}

.s-c18345cf-c47b-48db-aebe-278178d78d1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c18345cf-c47b-48db-aebe-278178d78d1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c18345cf-c47b-48db-aebe-278178d78d1a.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-c18345cf-c47b-48db-aebe-278178d78d1a.shogun-image {
    
    
  }


.s-c18345cf-c47b-48db-aebe-278178d78d1a .shogun-image-content {
  
    align-items: center;
  
}

.s-c18345cf-c47b-48db-aebe-278178d78d1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c18345cf-c47b-48db-aebe-278178d78d1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c18345cf-c47b-48db-aebe-278178d78d1a.shogun-image {
  box-sizing: border-box;
}



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





  img.s-c18345cf-c47b-48db-aebe-278178d78d1a.shogun-image {
    
    
  }


.s-c18345cf-c47b-48db-aebe-278178d78d1a .shogun-image-content {
  
    align-items: center;
  
}

.s-c18345cf-c47b-48db-aebe-278178d78d1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c18345cf-c47b-48db-aebe-278178d78d1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c18345cf-c47b-48db-aebe-278178d78d1a.shogun-image {
  box-sizing: border-box;
}



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





  img.s-c18345cf-c47b-48db-aebe-278178d78d1a.shogun-image {
    
    
  }


.s-c18345cf-c47b-48db-aebe-278178d78d1a .shogun-image-content {
  
    align-items: center;
  
}

.s-c18345cf-c47b-48db-aebe-278178d78d1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c18345cf-c47b-48db-aebe-278178d78d1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c18345cf-c47b-48db-aebe-278178d78d1a.shogun-image {
  box-sizing: border-box;
}



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





  img.s-c18345cf-c47b-48db-aebe-278178d78d1a.shogun-image {
    
    
  }


.s-c18345cf-c47b-48db-aebe-278178d78d1a .shogun-image-content {
  
    align-items: center;
  
}

.s-c18345cf-c47b-48db-aebe-278178d78d1a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c18345cf-c47b-48db-aebe-278178d78d1a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c18345cf-c47b-48db-aebe-278178d78d1a.shogun-image {
  box-sizing: border-box;
}



}
#s-13ee873f-e02e-4eb1-a992-02f6912e82eb {
  text-align: center;
}







  img.s-13ee873f-e02e-4eb1-a992-02f6912e82eb.shogun-image {
    
    
  }


.s-13ee873f-e02e-4eb1-a992-02f6912e82eb .shogun-image-content {
  
    align-items: center;
  
}

.s-13ee873f-e02e-4eb1-a992-02f6912e82eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13ee873f-e02e-4eb1-a992-02f6912e82eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13ee873f-e02e-4eb1-a992-02f6912e82eb.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-13ee873f-e02e-4eb1-a992-02f6912e82eb.shogun-image {
    
    
  }


.s-13ee873f-e02e-4eb1-a992-02f6912e82eb .shogun-image-content {
  
    align-items: center;
  
}

.s-13ee873f-e02e-4eb1-a992-02f6912e82eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13ee873f-e02e-4eb1-a992-02f6912e82eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13ee873f-e02e-4eb1-a992-02f6912e82eb.shogun-image {
  box-sizing: border-box;
}



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





  img.s-13ee873f-e02e-4eb1-a992-02f6912e82eb.shogun-image {
    
    
  }


.s-13ee873f-e02e-4eb1-a992-02f6912e82eb .shogun-image-content {
  
    align-items: center;
  
}

.s-13ee873f-e02e-4eb1-a992-02f6912e82eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13ee873f-e02e-4eb1-a992-02f6912e82eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13ee873f-e02e-4eb1-a992-02f6912e82eb.shogun-image {
  box-sizing: border-box;
}



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





  img.s-13ee873f-e02e-4eb1-a992-02f6912e82eb.shogun-image {
    
    
  }


.s-13ee873f-e02e-4eb1-a992-02f6912e82eb .shogun-image-content {
  
    align-items: center;
  
}

.s-13ee873f-e02e-4eb1-a992-02f6912e82eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13ee873f-e02e-4eb1-a992-02f6912e82eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13ee873f-e02e-4eb1-a992-02f6912e82eb.shogun-image {
  box-sizing: border-box;
}



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





  img.s-13ee873f-e02e-4eb1-a992-02f6912e82eb.shogun-image {
    
    
  }


.s-13ee873f-e02e-4eb1-a992-02f6912e82eb .shogun-image-content {
  
    align-items: center;
  
}

.s-13ee873f-e02e-4eb1-a992-02f6912e82eb.shg-align-container {
  display: flex;
  justify-content: center
}

.s-13ee873f-e02e-4eb1-a992-02f6912e82eb.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-13ee873f-e02e-4eb1-a992-02f6912e82eb.shogun-image {
  box-sizing: border-box;
}



}
@media (min-width: 0px) {
[id="s-6efade11-f448-4afc-8928-711d2781eeef"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-6efade11-f448-4afc-8928-711d2781eeef"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-6efade11-f448-4afc-8928-711d2781eeef"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-6efade11-f448-4afc-8928-711d2781eeef"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-436afcca-545c-449e-904d-7370192420dd {
  padding-top: 10px;
min-height: 20px;
}








#s-436afcca-545c-449e-904d-7370192420dd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-436afcca-545c-449e-904d-7370192420dd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2ac3c16e-6c32-4665-a986-2620a29518ba {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-2ac3c16e-6c32-4665-a986-2620a29518ba .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



#s-6ab5ab39-a0ba-4804-ad83-b8bed77941fc {
  padding-top: 10px;
min-height: 20px;
background-color: rgba(133, 219, 215, 0.25);
}








#s-6ab5ab39-a0ba-4804-ad83-b8bed77941fc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6ab5ab39-a0ba-4804-ad83-b8bed77941fc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-13e44be3-8a18-43b9-9b93-1534f90810fb {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-13e44be3-8a18-43b9-9b93-1534f90810fb .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



#s-9a04cccc-23c0-415b-bccb-250092f0f5b6 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
min-height: 20px;
background-color: rgba(133, 219, 215, 0);
}








#s-9a04cccc-23c0-415b-bccb-250092f0f5b6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9a04cccc-23c0-415b-bccb-250092f0f5b6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e8159e9f-6acd-40e6-ab47-ac11145545bb {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-e8159e9f-6acd-40e6-ab47-ac11145545bb .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



#s-8dd8c74c-2741-4772-9c38-a07cad891273 {
  padding-top: 10px;
min-height: 20px;
background-color: rgba(133, 219, 215, 0);
}








#s-8dd8c74c-2741-4772-9c38-a07cad891273 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8dd8c74c-2741-4772-9c38-a07cad891273.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8a7d243c-ded0-4cf9-b192-f1287469966a {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-8a7d243c-ded0-4cf9-b192-f1287469966a .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



@media (min-width: 0px) {
[id="s-266cb379-bc87-4d3f-8b1a-3997eb26cc92"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-266cb379-bc87-4d3f-8b1a-3997eb26cc92"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-266cb379-bc87-4d3f-8b1a-3997eb26cc92"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-266cb379-bc87-4d3f-8b1a-3997eb26cc92"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-c628343b-5b9a-4363-963e-1109463282e4 {
  min-height: 0px;
background-color: rgba(133, 219, 215, 0);
}








#s-c628343b-5b9a-4363-963e-1109463282e4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c628343b-5b9a-4363-963e-1109463282e4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

#s-16f3a107-514b-427a-adb4-cd8f1806c7d9 hr {
  border-top: 1px solid rgba(151, 151, 151, 1);
}

#s-e5cc16f2-c0fc-44e0-b4d6-31d328e26367 {
  min-height: 0px;
background-color: rgba(133, 219, 215, 0.25);
}








#s-e5cc16f2-c0fc-44e0-b4d6-31d328e26367 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e5cc16f2-c0fc-44e0-b4d6-31d328e26367.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9d84f8c4-ec89-49ba-bc13-f51e452d04c0 hr {
  border-top: 1px solid rgba(151, 151, 151, 1);
}

#s-19504c8f-0dfe-40f4-b4c1-2c6b45e916ce {
  min-height: 0px;
background-color: rgba(133, 219, 215, 0);
}








#s-19504c8f-0dfe-40f4-b4c1-2c6b45e916ce > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-19504c8f-0dfe-40f4-b4c1-2c6b45e916ce.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dd054223-c8df-4aea-b40f-2e51b7739b51 hr {
  border-top: 1px solid rgba(151, 151, 151, 1);
}

#s-eacc6ad5-f425-44db-a6a8-1a75482a71cc {
  min-height: 0px;
background-color: rgba(133, 219, 215, 0);
}








#s-eacc6ad5-f425-44db-a6a8-1a75482a71cc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eacc6ad5-f425-44db-a6a8-1a75482a71cc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ec326456-6671-4ce4-a844-9c1decf991bc hr {
  border-top: 1px solid rgba(151, 151, 151, 1);
}

@media (min-width: 0px) {
[id="s-7e1fce7a-dae7-47ce-826e-0faa2a79cbbf"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-7e1fce7a-dae7-47ce-826e-0faa2a79cbbf"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-7e1fce7a-dae7-47ce-826e-0faa2a79cbbf"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-7e1fce7a-dae7-47ce-826e-0faa2a79cbbf"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-f4ecdcfb-b114-4a61-8127-7df434123349 {
  min-height: 30px;
}








#s-f4ecdcfb-b114-4a61-8127-7df434123349 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f4ecdcfb-b114-4a61-8127-7df434123349.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c536ec3a-7274-47f2-8c10-276aebfab845 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-c536ec3a-7274-47f2-8c10-276aebfab845 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



#s-ff0cf3c1-5ce3-4b5a-aa58-d1684c455444 {
  min-height: 30px;
background-color: rgba(133, 219, 215, 0.25);
}








#s-ff0cf3c1-5ce3-4b5a-aa58-d1684c455444 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ff0cf3c1-5ce3-4b5a-aa58-d1684c455444.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ba96e827-cc33-4f2b-82fc-7362e45108a8 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-ba96e827-cc33-4f2b-82fc-7362e45108a8 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



#s-a7694611-043f-4b0e-a42f-ffcd954f8789 {
  min-height: 30px;
background-color: rgba(133, 219, 215, 0);
}








#s-a7694611-043f-4b0e-a42f-ffcd954f8789 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a7694611-043f-4b0e-a42f-ffcd954f8789.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0d558934-afe3-4dad-9510-78f927aababe {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-0d558934-afe3-4dad-9510-78f927aababe .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



#s-e3fd1491-6213-4e97-9049-522b16c69756 {
  min-height: 30px;
background-color: rgba(133, 219, 215, 0);
}








#s-e3fd1491-6213-4e97-9049-522b16c69756 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e3fd1491-6213-4e97-9049-522b16c69756.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-48822c51-e61f-4aab-8c66-9344b5bbf413 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-48822c51-e61f-4aab-8c66-9344b5bbf413 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



@media (min-width: 0px) {
[id="s-c0c8ec57-cb74-438e-9a94-01106b0d1a5c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-c0c8ec57-cb74-438e-9a94-01106b0d1a5c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-c0c8ec57-cb74-438e-9a94-01106b0d1a5c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-c0c8ec57-cb74-438e-9a94-01106b0d1a5c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-02c98622-3771-4412-ba6f-229c2aff7ec7 {
  min-height: 0px;
background-color: rgba(133, 219, 215, 0);
}








#s-02c98622-3771-4412-ba6f-229c2aff7ec7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-02c98622-3771-4412-ba6f-229c2aff7ec7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-39c1d669-0b48-4cc2-adea-f5cecbbbe793 hr {
  border-top: 1px solid rgba(151, 151, 151, 1);
}

#s-a0d0da56-a4a6-4206-96b9-66324027c0c7 {
  min-height: 0px;
background-color: rgba(133, 219, 215, 0.25);
}








#s-a0d0da56-a4a6-4206-96b9-66324027c0c7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a0d0da56-a4a6-4206-96b9-66324027c0c7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e631916f-72e7-47bc-84d0-b2b7e90fd62d hr {
  border-top: 1px solid rgba(151, 151, 151, 1);
}

#s-c9c7268b-c8c3-4a69-8ee0-4c62e82f8d71 {
  min-height: 0px;
background-color: rgba(133, 219, 215, 0);
}








#s-c9c7268b-c8c3-4a69-8ee0-4c62e82f8d71 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c9c7268b-c8c3-4a69-8ee0-4c62e82f8d71.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-56ec79e1-4679-48a4-8041-c6d4eaeef96d hr {
  border-top: 1px solid rgba(151, 151, 151, 1);
}

#s-1c35b6ae-6484-49ea-8187-d6bfe1b65dd0 {
  min-height: 0px;
background-color: rgba(133, 219, 215, 0);
}








#s-1c35b6ae-6484-49ea-8187-d6bfe1b65dd0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1c35b6ae-6484-49ea-8187-d6bfe1b65dd0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-72960c9f-0694-42e8-801d-4bedff40bb46 hr {
  border-top: 1px solid rgba(151, 151, 151, 1);
}

@media (min-width: 0px) {
[id="s-508b1383-2bab-4f6b-9f19-e00c76415b95"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-508b1383-2bab-4f6b-9f19-e00c76415b95"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-508b1383-2bab-4f6b-9f19-e00c76415b95"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-508b1383-2bab-4f6b-9f19-e00c76415b95"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-eecc085b-1652-4df2-9f61-069308dc0221 {
  min-height: 30px;
}








#s-eecc085b-1652-4df2-9f61-069308dc0221 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eecc085b-1652-4df2-9f61-069308dc0221.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1828e0d0-fcae-4e6b-86cd-59b322841ed0 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-1828e0d0-fcae-4e6b-86cd-59b322841ed0 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



#s-65b7fe0b-fadd-4d88-b361-25f35d2a9cf3 {
  min-height: 30px;
background-color: rgba(133, 219, 215, 0.25);
}








#s-65b7fe0b-fadd-4d88-b361-25f35d2a9cf3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-65b7fe0b-fadd-4d88-b361-25f35d2a9cf3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b72ec648-65ab-4f81-b169-f2eb0e2cc852 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-b72ec648-65ab-4f81-b169-f2eb0e2cc852 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



#s-a21d89a1-e0b2-4b5f-a7f6-ffb43b850b1e {
  min-height: 30px;
background-color: rgba(133, 219, 215, 0);
}








#s-a21d89a1-e0b2-4b5f-a7f6-ffb43b850b1e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a21d89a1-e0b2-4b5f-a7f6-ffb43b850b1e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7e41cea6-57e8-47d4-abb4-04b88b9d8454 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-7e41cea6-57e8-47d4-abb4-04b88b9d8454 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



#s-405b4257-0edf-4ba4-b0ed-0b059e0c98fb {
  min-height: 30px;
background-color: rgba(133, 219, 215, 0);
}








#s-405b4257-0edf-4ba4-b0ed-0b059e0c98fb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-405b4257-0edf-4ba4-b0ed-0b059e0c98fb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cd4fb4e5-c147-42de-b48c-c5b62251ba96 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-cd4fb4e5-c147-42de-b48c-c5b62251ba96 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



#s-8b4033e2-b37a-442a-856c-af70f11fea80 {
  min-height: 50px;
}








#s-8b4033e2-b37a-442a-856c-af70f11fea80 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8b4033e2-b37a-442a-856c-af70f11fea80.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-820593ef-74ae-4b1e-a685-84a27a6e252b {
  min-height: 50px;
}
@media (min-width: 1200px){#s-820593ef-74ae-4b1e-a685-84a27a6e252b {
  display: none;
}
#s-820593ef-74ae-4b1e-a685-84a27a6e252b, #wrap-s-820593ef-74ae-4b1e-a685-84a27a6e252b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-820593ef-74ae-4b1e-a685-84a27a6e252b {
  display: none;
}
#s-820593ef-74ae-4b1e-a685-84a27a6e252b, #wrap-s-820593ef-74ae-4b1e-a685-84a27a6e252b { display: none !important; }}







#s-820593ef-74ae-4b1e-a685-84a27a6e252b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-820593ef-74ae-4b1e-a685-84a27a6e252b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b53dc0fe-9b11-4a10-9a3e-6d73083b1435 {
  text-align: center;
}







  img.s-b53dc0fe-9b11-4a10-9a3e-6d73083b1435.shogun-image {
    
    
  }


.s-b53dc0fe-9b11-4a10-9a3e-6d73083b1435 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-b53dc0fe-9b11-4a10-9a3e-6d73083b1435.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b53dc0fe-9b11-4a10-9a3e-6d73083b1435.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b53dc0fe-9b11-4a10-9a3e-6d73083b1435.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-b53dc0fe-9b11-4a10-9a3e-6d73083b1435.shogun-image {
    
    
  }


.s-b53dc0fe-9b11-4a10-9a3e-6d73083b1435 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-b53dc0fe-9b11-4a10-9a3e-6d73083b1435.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b53dc0fe-9b11-4a10-9a3e-6d73083b1435.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b53dc0fe-9b11-4a10-9a3e-6d73083b1435.shogun-image {
  box-sizing: border-box;
}



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





  img.s-b53dc0fe-9b11-4a10-9a3e-6d73083b1435.shogun-image {
    
    
  }


.s-b53dc0fe-9b11-4a10-9a3e-6d73083b1435 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-b53dc0fe-9b11-4a10-9a3e-6d73083b1435.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b53dc0fe-9b11-4a10-9a3e-6d73083b1435.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b53dc0fe-9b11-4a10-9a3e-6d73083b1435.shogun-image {
  box-sizing: border-box;
}



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





  img.s-b53dc0fe-9b11-4a10-9a3e-6d73083b1435.shogun-image {
    
    
  }


.s-b53dc0fe-9b11-4a10-9a3e-6d73083b1435 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-b53dc0fe-9b11-4a10-9a3e-6d73083b1435.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b53dc0fe-9b11-4a10-9a3e-6d73083b1435.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b53dc0fe-9b11-4a10-9a3e-6d73083b1435.shogun-image {
  box-sizing: border-box;
}



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





  img.s-b53dc0fe-9b11-4a10-9a3e-6d73083b1435.shogun-image {
    
    
  }


.s-b53dc0fe-9b11-4a10-9a3e-6d73083b1435 .shogun-image-content {
  
    align-items: flex-start;
  
}

.s-b53dc0fe-9b11-4a10-9a3e-6d73083b1435.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b53dc0fe-9b11-4a10-9a3e-6d73083b1435.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b53dc0fe-9b11-4a10-9a3e-6d73083b1435.shogun-image {
  box-sizing: border-box;
}



}
#s-f2c0f76e-f09e-4960-8d34-69a6af8cc1d8 {
  margin-top: 40px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f2c0f76e-f09e-4960-8d34-69a6af8cc1d8 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  300 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 21px;
  line-height: 0.5em;
  
  
}



#s-43335553-06a0-4cbf-8a55-fff57fc875d3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-43335553-06a0-4cbf-8a55-fff57fc875d3 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 28px;
  line-height: 0.5em;
  letter-spacing: -0.2px;
  
}



#s-054c035c-377a-4a61-aec1-f0141c5483f8 {
  min-height: 50px;
}








#s-054c035c-377a-4a61-aec1-f0141c5483f8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-054c035c-377a-4a61-aec1-f0141c5483f8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-00e834ff-a1b7-4aa2-beef-d10ab2457b61 {
  padding-top: 15px;
padding-bottom: 15px;
min-height: 50px;
background-color: rgba(240, 241, 241, 1);
}








#s-00e834ff-a1b7-4aa2-beef-d10ab2457b61 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-00e834ff-a1b7-4aa2-beef-d10ab2457b61.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-855826a3-05ed-47dd-aed8-76ae527ef53f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-855826a3-05ed-47dd-aed8-76ae527ef53f .shogun-heading-component h1 {
  color: rgba(109, 110, 113, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  line-height: 0.5em;
  
  
}



#s-8e964610-1369-4280-b0bf-e3d9d74cc69f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8e964610-1369-4280-b0bf-e3d9d74cc69f .shogun-heading-component h1 {
  color: rgba(133, 219, 215, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 27px;
  line-height: 0.5em;
  
  
}



#s-7e75805d-0df9-4da1-b06e-80ace19db648 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7e75805d-0df9-4da1-b06e-80ace19db648 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  line-height: 0.5em;
  letter-spacing: -0.2px;
  
}



#s-51ae9e84-3e3a-47b6-bbb2-62dd7ca7cdf5 {
  text-align: center;
}







  #s-51ae9e84-3e3a-47b6-bbb2-62dd7ca7cdf5 img.shogun-image {
    

    
    
    
  }


#s-51ae9e84-3e3a-47b6-bbb2-62dd7ca7cdf5 .shogun-image-content {
  
    align-items: center;
  
}

#s-9e57503c-e1da-4c26-a558-a8ba543c51f9 {
  text-align: center;
}







  img.s-9e57503c-e1da-4c26-a558-a8ba543c51f9.shogun-image {
    
    
  }


.s-9e57503c-e1da-4c26-a558-a8ba543c51f9 .shogun-image-content {
  
    align-items: center;
  
}

.s-9e57503c-e1da-4c26-a558-a8ba543c51f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e57503c-e1da-4c26-a558-a8ba543c51f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e57503c-e1da-4c26-a558-a8ba543c51f9.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-9e57503c-e1da-4c26-a558-a8ba543c51f9.shogun-image {
    
    
  }


.s-9e57503c-e1da-4c26-a558-a8ba543c51f9 .shogun-image-content {
  
    align-items: center;
  
}

.s-9e57503c-e1da-4c26-a558-a8ba543c51f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e57503c-e1da-4c26-a558-a8ba543c51f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e57503c-e1da-4c26-a558-a8ba543c51f9.shogun-image {
  box-sizing: border-box;
}



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





  img.s-9e57503c-e1da-4c26-a558-a8ba543c51f9.shogun-image {
    
    
  }


.s-9e57503c-e1da-4c26-a558-a8ba543c51f9 .shogun-image-content {
  
    align-items: center;
  
}

.s-9e57503c-e1da-4c26-a558-a8ba543c51f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e57503c-e1da-4c26-a558-a8ba543c51f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e57503c-e1da-4c26-a558-a8ba543c51f9.shogun-image {
  box-sizing: border-box;
}



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





  img.s-9e57503c-e1da-4c26-a558-a8ba543c51f9.shogun-image {
    
    
  }


.s-9e57503c-e1da-4c26-a558-a8ba543c51f9 .shogun-image-content {
  
    align-items: center;
  
}

.s-9e57503c-e1da-4c26-a558-a8ba543c51f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e57503c-e1da-4c26-a558-a8ba543c51f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e57503c-e1da-4c26-a558-a8ba543c51f9.shogun-image {
  box-sizing: border-box;
}



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





  img.s-9e57503c-e1da-4c26-a558-a8ba543c51f9.shogun-image {
    
    
  }


.s-9e57503c-e1da-4c26-a558-a8ba543c51f9 .shogun-image-content {
  
    align-items: center;
  
}

.s-9e57503c-e1da-4c26-a558-a8ba543c51f9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9e57503c-e1da-4c26-a558-a8ba543c51f9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9e57503c-e1da-4c26-a558-a8ba543c51f9.shogun-image {
  box-sizing: border-box;
}



}
#s-6500e742-1029-4dd9-ad8c-ab44cbb0fab0 {
  margin-top: 10px;
margin-left: 4%;
margin-right: 4%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(133, 219, 215, 1);
}








#s-6500e742-1029-4dd9-ad8c-ab44cbb0fab0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6500e742-1029-4dd9-ad8c-ab44cbb0fab0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-97757c1f-ec82-4dbf-98fe-1633a5a97fc2 {
  margin-top: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-97757c1f-ec82-4dbf-98fe-1633a5a97fc2 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-d7883f5a-6b8e-4749-8834-0569e310274e {
  padding-top: 5px;
padding-bottom: 5px;
text-align: center;
}

#s-d7883f5a-6b8e-4749-8834-0569e310274e .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-83667485-702a-4bc6-ae9d-8b55a20bdab4 {
  margin-top: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-83667485-702a-4bc6-ae9d-8b55a20bdab4 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-d096d78a-6af2-42a4-a1c9-b24d4a65e0a7 {
  padding-top: 5px;
padding-bottom: 5px;
text-align: center;
}

#s-d096d78a-6af2-42a4-a1c9-b24d4a65e0a7 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-49c526a1-5946-4b93-89b5-0245cee5a0f3 {
  margin-top: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-49c526a1-5946-4b93-89b5-0245cee5a0f3 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-d49de21c-1e82-4196-82e4-b35fcdaf8dde {
  padding-top: 5px;
padding-bottom: 5px;
text-align: center;
}

#s-d49de21c-1e82-4196-82e4-b35fcdaf8dde .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-12983dcc-b95b-4d1a-ad1c-c5ec606bb0b4 {
  margin-top: 10px;
margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-12983dcc-b95b-4d1a-ad1c-c5ec606bb0b4 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-e068c37a-fd7c-4460-9ac1-171730816fe8 {
  min-height: 50px;
}








#s-e068c37a-fd7c-4460-9ac1-171730816fe8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e068c37a-fd7c-4460-9ac1-171730816fe8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-95a6ea8f-0036-4fab-8401-37cd3bc5a8ef {
  margin-left: 5%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-95a6ea8f-0036-4fab-8401-37cd3bc5a8ef"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-95a6ea8f-0036-4fab-8401-37cd3bc5a8ef"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-95a6ea8f-0036-4fab-8401-37cd3bc5a8ef"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-95a6ea8f-0036-4fab-8401-37cd3bc5a8ef"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

#s-46b28ce3-5ddb-4343-abab-8edda56c3ba3 {
  min-height: 130px;
max-width: 130px;
text-align: center;
}







  img.s-46b28ce3-5ddb-4343-abab-8edda56c3ba3.shogun-image {
    
    
  }


.s-46b28ce3-5ddb-4343-abab-8edda56c3ba3 .shogun-image-content {
  
    align-items: center;
  
}

.s-46b28ce3-5ddb-4343-abab-8edda56c3ba3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-46b28ce3-5ddb-4343-abab-8edda56c3ba3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46b28ce3-5ddb-4343-abab-8edda56c3ba3.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-46b28ce3-5ddb-4343-abab-8edda56c3ba3.shogun-image {
    
    
  }


.s-46b28ce3-5ddb-4343-abab-8edda56c3ba3 .shogun-image-content {
  
    align-items: center;
  
}

.s-46b28ce3-5ddb-4343-abab-8edda56c3ba3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-46b28ce3-5ddb-4343-abab-8edda56c3ba3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46b28ce3-5ddb-4343-abab-8edda56c3ba3.shogun-image {
  box-sizing: border-box;
}



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





  img.s-46b28ce3-5ddb-4343-abab-8edda56c3ba3.shogun-image {
    
    
  }


.s-46b28ce3-5ddb-4343-abab-8edda56c3ba3 .shogun-image-content {
  
    align-items: center;
  
}

.s-46b28ce3-5ddb-4343-abab-8edda56c3ba3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-46b28ce3-5ddb-4343-abab-8edda56c3ba3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46b28ce3-5ddb-4343-abab-8edda56c3ba3.shogun-image {
  box-sizing: border-box;
}



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





  img.s-46b28ce3-5ddb-4343-abab-8edda56c3ba3.shogun-image {
    
    
  }


.s-46b28ce3-5ddb-4343-abab-8edda56c3ba3 .shogun-image-content {
  
    align-items: center;
  
}

.s-46b28ce3-5ddb-4343-abab-8edda56c3ba3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-46b28ce3-5ddb-4343-abab-8edda56c3ba3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46b28ce3-5ddb-4343-abab-8edda56c3ba3.shogun-image {
  box-sizing: border-box;
}



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





  img.s-46b28ce3-5ddb-4343-abab-8edda56c3ba3.shogun-image {
    
    
  }


.s-46b28ce3-5ddb-4343-abab-8edda56c3ba3 .shogun-image-content {
  
    align-items: center;
  
}

.s-46b28ce3-5ddb-4343-abab-8edda56c3ba3.shg-align-container {
  display: flex;
  justify-content: center
}

.s-46b28ce3-5ddb-4343-abab-8edda56c3ba3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-46b28ce3-5ddb-4343-abab-8edda56c3ba3.shogun-image {
  box-sizing: border-box;
}



}
#s-890e75ac-12dc-481f-9915-478629354ba7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-890e75ac-12dc-481f-9915-478629354ba7 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-64f5d240-30da-45f3-90d3-5556ee6c73a7 {
  min-height: 130px;
max-width: 130px;
text-align: center;
}







  img.s-64f5d240-30da-45f3-90d3-5556ee6c73a7.shogun-image {
    
    
  }


.s-64f5d240-30da-45f3-90d3-5556ee6c73a7 .shogun-image-content {
  
    align-items: center;
  
}

.s-64f5d240-30da-45f3-90d3-5556ee6c73a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-64f5d240-30da-45f3-90d3-5556ee6c73a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-64f5d240-30da-45f3-90d3-5556ee6c73a7.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-64f5d240-30da-45f3-90d3-5556ee6c73a7.shogun-image {
    
    
  }


.s-64f5d240-30da-45f3-90d3-5556ee6c73a7 .shogun-image-content {
  
    align-items: center;
  
}

.s-64f5d240-30da-45f3-90d3-5556ee6c73a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-64f5d240-30da-45f3-90d3-5556ee6c73a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-64f5d240-30da-45f3-90d3-5556ee6c73a7.shogun-image {
  box-sizing: border-box;
}



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





  img.s-64f5d240-30da-45f3-90d3-5556ee6c73a7.shogun-image {
    
    
  }


.s-64f5d240-30da-45f3-90d3-5556ee6c73a7 .shogun-image-content {
  
    align-items: center;
  
}

.s-64f5d240-30da-45f3-90d3-5556ee6c73a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-64f5d240-30da-45f3-90d3-5556ee6c73a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-64f5d240-30da-45f3-90d3-5556ee6c73a7.shogun-image {
  box-sizing: border-box;
}



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





  img.s-64f5d240-30da-45f3-90d3-5556ee6c73a7.shogun-image {
    
    
  }


.s-64f5d240-30da-45f3-90d3-5556ee6c73a7 .shogun-image-content {
  
    align-items: center;
  
}

.s-64f5d240-30da-45f3-90d3-5556ee6c73a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-64f5d240-30da-45f3-90d3-5556ee6c73a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-64f5d240-30da-45f3-90d3-5556ee6c73a7.shogun-image {
  box-sizing: border-box;
}



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





  img.s-64f5d240-30da-45f3-90d3-5556ee6c73a7.shogun-image {
    
    
  }


.s-64f5d240-30da-45f3-90d3-5556ee6c73a7 .shogun-image-content {
  
    align-items: center;
  
}

.s-64f5d240-30da-45f3-90d3-5556ee6c73a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-64f5d240-30da-45f3-90d3-5556ee6c73a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-64f5d240-30da-45f3-90d3-5556ee6c73a7.shogun-image {
  box-sizing: border-box;
}



}
#s-0cb85f74-8a85-4f05-bafb-7890f1c6d40f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0cb85f74-8a85-4f05-bafb-7890f1c6d40f .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-26452a08-3034-4eb3-9da3-279bd0a2f627 {
  min-height: 130px;
max-width: 130px;
text-align: center;
}







  img.s-26452a08-3034-4eb3-9da3-279bd0a2f627.shogun-image {
    
    
  }


.s-26452a08-3034-4eb3-9da3-279bd0a2f627 .shogun-image-content {
  
    align-items: center;
  
}

.s-26452a08-3034-4eb3-9da3-279bd0a2f627.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26452a08-3034-4eb3-9da3-279bd0a2f627.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26452a08-3034-4eb3-9da3-279bd0a2f627.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-26452a08-3034-4eb3-9da3-279bd0a2f627.shogun-image {
    
    
  }


.s-26452a08-3034-4eb3-9da3-279bd0a2f627 .shogun-image-content {
  
    align-items: center;
  
}

.s-26452a08-3034-4eb3-9da3-279bd0a2f627.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26452a08-3034-4eb3-9da3-279bd0a2f627.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26452a08-3034-4eb3-9da3-279bd0a2f627.shogun-image {
  box-sizing: border-box;
}



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





  img.s-26452a08-3034-4eb3-9da3-279bd0a2f627.shogun-image {
    
    
  }


.s-26452a08-3034-4eb3-9da3-279bd0a2f627 .shogun-image-content {
  
    align-items: center;
  
}

.s-26452a08-3034-4eb3-9da3-279bd0a2f627.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26452a08-3034-4eb3-9da3-279bd0a2f627.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26452a08-3034-4eb3-9da3-279bd0a2f627.shogun-image {
  box-sizing: border-box;
}



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





  img.s-26452a08-3034-4eb3-9da3-279bd0a2f627.shogun-image {
    
    
  }


.s-26452a08-3034-4eb3-9da3-279bd0a2f627 .shogun-image-content {
  
    align-items: center;
  
}

.s-26452a08-3034-4eb3-9da3-279bd0a2f627.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26452a08-3034-4eb3-9da3-279bd0a2f627.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26452a08-3034-4eb3-9da3-279bd0a2f627.shogun-image {
  box-sizing: border-box;
}



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





  img.s-26452a08-3034-4eb3-9da3-279bd0a2f627.shogun-image {
    
    
  }


.s-26452a08-3034-4eb3-9da3-279bd0a2f627 .shogun-image-content {
  
    align-items: center;
  
}

.s-26452a08-3034-4eb3-9da3-279bd0a2f627.shg-align-container {
  display: flex;
  justify-content: center
}

.s-26452a08-3034-4eb3-9da3-279bd0a2f627.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-26452a08-3034-4eb3-9da3-279bd0a2f627.shogun-image {
  box-sizing: border-box;
}



}
#s-7cbc9057-de30-409f-bacc-85ff2882b1ae {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7cbc9057-de30-409f-bacc-85ff2882b1ae .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-d05df1c3-e6c1-40fe-80a6-18348cc69861 {
  min-height: 130px;
max-width: 130px;
text-align: center;
}







  img.s-d05df1c3-e6c1-40fe-80a6-18348cc69861.shogun-image {
    
    
  }


.s-d05df1c3-e6c1-40fe-80a6-18348cc69861 .shogun-image-content {
  
    align-items: center;
  
}

.s-d05df1c3-e6c1-40fe-80a6-18348cc69861.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d05df1c3-e6c1-40fe-80a6-18348cc69861.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d05df1c3-e6c1-40fe-80a6-18348cc69861.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-d05df1c3-e6c1-40fe-80a6-18348cc69861.shogun-image {
    
    
  }


.s-d05df1c3-e6c1-40fe-80a6-18348cc69861 .shogun-image-content {
  
    align-items: center;
  
}

.s-d05df1c3-e6c1-40fe-80a6-18348cc69861.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d05df1c3-e6c1-40fe-80a6-18348cc69861.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d05df1c3-e6c1-40fe-80a6-18348cc69861.shogun-image {
  box-sizing: border-box;
}



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





  img.s-d05df1c3-e6c1-40fe-80a6-18348cc69861.shogun-image {
    
    
  }


.s-d05df1c3-e6c1-40fe-80a6-18348cc69861 .shogun-image-content {
  
    align-items: center;
  
}

.s-d05df1c3-e6c1-40fe-80a6-18348cc69861.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d05df1c3-e6c1-40fe-80a6-18348cc69861.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d05df1c3-e6c1-40fe-80a6-18348cc69861.shogun-image {
  box-sizing: border-box;
}



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





  img.s-d05df1c3-e6c1-40fe-80a6-18348cc69861.shogun-image {
    
    
  }


.s-d05df1c3-e6c1-40fe-80a6-18348cc69861 .shogun-image-content {
  
    align-items: center;
  
}

.s-d05df1c3-e6c1-40fe-80a6-18348cc69861.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d05df1c3-e6c1-40fe-80a6-18348cc69861.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d05df1c3-e6c1-40fe-80a6-18348cc69861.shogun-image {
  box-sizing: border-box;
}



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





  img.s-d05df1c3-e6c1-40fe-80a6-18348cc69861.shogun-image {
    
    
  }


.s-d05df1c3-e6c1-40fe-80a6-18348cc69861 .shogun-image-content {
  
    align-items: center;
  
}

.s-d05df1c3-e6c1-40fe-80a6-18348cc69861.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d05df1c3-e6c1-40fe-80a6-18348cc69861.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d05df1c3-e6c1-40fe-80a6-18348cc69861.shogun-image {
  box-sizing: border-box;
}



}
#s-cd4e8426-acd8-47a3-a3e8-e1e791ea70c3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cd4e8426-acd8-47a3-a3e8-e1e791ea70c3 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-d8327585-e449-409a-83c3-409f28689d7c {
  min-height: 130px;
max-width: 130px;
text-align: center;
}







  img.s-d8327585-e449-409a-83c3-409f28689d7c.shogun-image {
    
    
  }


.s-d8327585-e449-409a-83c3-409f28689d7c .shogun-image-content {
  
    align-items: center;
  
}

.s-d8327585-e449-409a-83c3-409f28689d7c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d8327585-e449-409a-83c3-409f28689d7c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d8327585-e449-409a-83c3-409f28689d7c.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-d8327585-e449-409a-83c3-409f28689d7c.shogun-image {
    
    
  }


.s-d8327585-e449-409a-83c3-409f28689d7c .shogun-image-content {
  
    align-items: center;
  
}

.s-d8327585-e449-409a-83c3-409f28689d7c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d8327585-e449-409a-83c3-409f28689d7c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d8327585-e449-409a-83c3-409f28689d7c.shogun-image {
  box-sizing: border-box;
}



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





  img.s-d8327585-e449-409a-83c3-409f28689d7c.shogun-image {
    
    
  }


.s-d8327585-e449-409a-83c3-409f28689d7c .shogun-image-content {
  
    align-items: center;
  
}

.s-d8327585-e449-409a-83c3-409f28689d7c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d8327585-e449-409a-83c3-409f28689d7c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d8327585-e449-409a-83c3-409f28689d7c.shogun-image {
  box-sizing: border-box;
}



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





  img.s-d8327585-e449-409a-83c3-409f28689d7c.shogun-image {
    
    
  }


.s-d8327585-e449-409a-83c3-409f28689d7c .shogun-image-content {
  
    align-items: center;
  
}

.s-d8327585-e449-409a-83c3-409f28689d7c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d8327585-e449-409a-83c3-409f28689d7c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d8327585-e449-409a-83c3-409f28689d7c.shogun-image {
  box-sizing: border-box;
}



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





  img.s-d8327585-e449-409a-83c3-409f28689d7c.shogun-image {
    
    
  }


.s-d8327585-e449-409a-83c3-409f28689d7c .shogun-image-content {
  
    align-items: center;
  
}

.s-d8327585-e449-409a-83c3-409f28689d7c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d8327585-e449-409a-83c3-409f28689d7c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d8327585-e449-409a-83c3-409f28689d7c.shogun-image {
  box-sizing: border-box;
}



}
#s-5ff17c9d-33fe-48f7-bd42-18e82442819b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5ff17c9d-33fe-48f7-bd42-18e82442819b .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-755ef827-1f50-4330-878f-fc6476b3d83d {
  min-height: 130px;
max-width: 130px;
text-align: center;
}







  img.s-755ef827-1f50-4330-878f-fc6476b3d83d.shogun-image {
    
    
  }


.s-755ef827-1f50-4330-878f-fc6476b3d83d .shogun-image-content {
  
    align-items: center;
  
}

.s-755ef827-1f50-4330-878f-fc6476b3d83d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-755ef827-1f50-4330-878f-fc6476b3d83d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-755ef827-1f50-4330-878f-fc6476b3d83d.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-755ef827-1f50-4330-878f-fc6476b3d83d.shogun-image {
    
    
  }


.s-755ef827-1f50-4330-878f-fc6476b3d83d .shogun-image-content {
  
    align-items: center;
  
}

.s-755ef827-1f50-4330-878f-fc6476b3d83d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-755ef827-1f50-4330-878f-fc6476b3d83d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-755ef827-1f50-4330-878f-fc6476b3d83d.shogun-image {
  box-sizing: border-box;
}



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





  img.s-755ef827-1f50-4330-878f-fc6476b3d83d.shogun-image {
    
    
  }


.s-755ef827-1f50-4330-878f-fc6476b3d83d .shogun-image-content {
  
    align-items: center;
  
}

.s-755ef827-1f50-4330-878f-fc6476b3d83d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-755ef827-1f50-4330-878f-fc6476b3d83d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-755ef827-1f50-4330-878f-fc6476b3d83d.shogun-image {
  box-sizing: border-box;
}



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





  img.s-755ef827-1f50-4330-878f-fc6476b3d83d.shogun-image {
    
    
  }


.s-755ef827-1f50-4330-878f-fc6476b3d83d .shogun-image-content {
  
    align-items: center;
  
}

.s-755ef827-1f50-4330-878f-fc6476b3d83d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-755ef827-1f50-4330-878f-fc6476b3d83d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-755ef827-1f50-4330-878f-fc6476b3d83d.shogun-image {
  box-sizing: border-box;
}



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





  img.s-755ef827-1f50-4330-878f-fc6476b3d83d.shogun-image {
    
    
  }


.s-755ef827-1f50-4330-878f-fc6476b3d83d .shogun-image-content {
  
    align-items: center;
  
}

.s-755ef827-1f50-4330-878f-fc6476b3d83d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-755ef827-1f50-4330-878f-fc6476b3d83d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-755ef827-1f50-4330-878f-fc6476b3d83d.shogun-image {
  box-sizing: border-box;
}



}
#s-14fd3597-058d-4239-8e20-92cfa1f8da6d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-14fd3597-058d-4239-8e20-92cfa1f8da6d .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-17f7245d-2a76-4ca0-8d56-2079a2084134 {
  min-height: 50px;
}








#s-17f7245d-2a76-4ca0-8d56-2079a2084134 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-17f7245d-2a76-4ca0-8d56-2079a2084134.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1254ed44-bc66-4263-a865-3730f1129c10 {
  min-height: 50px;
}








#s-1254ed44-bc66-4263-a865-3730f1129c10 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1254ed44-bc66-4263-a865-3730f1129c10.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8019f8e7-e5b2-4fde-9b35-99fd36ff968b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8019f8e7-e5b2-4fde-9b35-99fd36ff968b .shogun-heading-component h1 {
  color: rgba(133, 219, 215, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 27px;
  line-height: 0.5em;
  
  
}



#s-747a0cd5-e8f9-4fa0-a7dc-79f35382c84d {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-bottom: 5px;
text-align: center;
}

#s-747a0cd5-e8f9-4fa0-a7dc-79f35382c84d .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



#s-4232e0c3-92f1-447f-ba83-93569ec37fb1 {
  text-align: center;
}







  img.s-4232e0c3-92f1-447f-ba83-93569ec37fb1.shogun-image {
    
    
  }


.s-4232e0c3-92f1-447f-ba83-93569ec37fb1 .shogun-image-content {
  
    align-items: center;
  
}

.s-4232e0c3-92f1-447f-ba83-93569ec37fb1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4232e0c3-92f1-447f-ba83-93569ec37fb1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4232e0c3-92f1-447f-ba83-93569ec37fb1.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-4232e0c3-92f1-447f-ba83-93569ec37fb1.shogun-image {
    
    
  }


.s-4232e0c3-92f1-447f-ba83-93569ec37fb1 .shogun-image-content {
  
    align-items: center;
  
}

.s-4232e0c3-92f1-447f-ba83-93569ec37fb1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4232e0c3-92f1-447f-ba83-93569ec37fb1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4232e0c3-92f1-447f-ba83-93569ec37fb1.shogun-image {
  box-sizing: border-box;
}



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





  img.s-4232e0c3-92f1-447f-ba83-93569ec37fb1.shogun-image {
    
    
  }


.s-4232e0c3-92f1-447f-ba83-93569ec37fb1 .shogun-image-content {
  
    align-items: center;
  
}

.s-4232e0c3-92f1-447f-ba83-93569ec37fb1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4232e0c3-92f1-447f-ba83-93569ec37fb1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4232e0c3-92f1-447f-ba83-93569ec37fb1.shogun-image {
  box-sizing: border-box;
}



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





  img.s-4232e0c3-92f1-447f-ba83-93569ec37fb1.shogun-image {
    
    
  }


.s-4232e0c3-92f1-447f-ba83-93569ec37fb1 .shogun-image-content {
  
    align-items: center;
  
}

.s-4232e0c3-92f1-447f-ba83-93569ec37fb1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4232e0c3-92f1-447f-ba83-93569ec37fb1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4232e0c3-92f1-447f-ba83-93569ec37fb1.shogun-image {
  box-sizing: border-box;
}



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





  img.s-4232e0c3-92f1-447f-ba83-93569ec37fb1.shogun-image {
    
    
  }


.s-4232e0c3-92f1-447f-ba83-93569ec37fb1 .shogun-image-content {
  
    align-items: center;
  
}

.s-4232e0c3-92f1-447f-ba83-93569ec37fb1.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4232e0c3-92f1-447f-ba83-93569ec37fb1.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4232e0c3-92f1-447f-ba83-93569ec37fb1.shogun-image {
  box-sizing: border-box;
}



}
#s-e0cee367-856d-4153-ab43-db1a47daf659 {
  min-height: 50px;
}








#s-e0cee367-856d-4153-ab43-db1a47daf659 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e0cee367-856d-4153-ab43-db1a47daf659.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a572f06c-7c0c-45a5-8e82-25cb5c799493 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a572f06c-7c0c-45a5-8e82-25cb5c799493 .shogun-heading-component h1 {
  color: rgba(133, 219, 215, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 27px;
  line-height: 1.1em;
  
  
}



#s-9ffd5ff9-b0c1-4b4c-ad1e-67212807e9fe {
  margin-left: 4%;
margin-right: 4%;
padding-top: 5px;
padding-bottom: 20px;
text-align: center;
}

#s-9ffd5ff9-b0c1-4b4c-ad1e-67212807e9fe .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



#s-152e3250-c1be-423b-9d05-8d701c8424b3 {
  min-height: 50px;
}








#s-152e3250-c1be-423b-9d05-8d701c8424b3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-152e3250-c1be-423b-9d05-8d701c8424b3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-60ba054d-8e37-462d-a8b3-ee414dd29f2e {
  text-align: center;
}







  #s-60ba054d-8e37-462d-a8b3-ee414dd29f2e img.shogun-image {
    

    
    
    
  }


#s-60ba054d-8e37-462d-a8b3-ee414dd29f2e .shogun-image-content {
  
    align-items: center;
  
}

#s-369a2073-045d-4449-ae0e-ca288fcfe2b1 {
  margin-top: 25px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-369a2073-045d-4449-ae0e-ca288fcfe2b1 .shogun-heading-component h1 {
  color: rgba(133, 219, 215, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 27px;
  line-height: 1.1em;
  
  
}



#s-d2484377-bd0d-42ca-8e7f-40f0b65e54cd {
  margin-left: 6%;
margin-right: 6%;
padding-top: 5px;
padding-bottom: 0px;
text-align: center;
}

#s-d2484377-bd0d-42ca-8e7f-40f0b65e54cd .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



#s-b3174219-0c6f-4322-b309-1c6f0fc43761 {
  text-align: center;
}







  #s-b3174219-0c6f-4322-b309-1c6f0fc43761 img.shogun-image {
    

    
    
    
  }


#s-b3174219-0c6f-4322-b309-1c6f0fc43761 .shogun-image-content {
  
    align-items: center;
  
}

#s-1f7473e7-cb86-40b6-8ed2-ad72eba5e8b3 {
  min-height: 50px;
}








#s-1f7473e7-cb86-40b6-8ed2-ad72eba5e8b3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1f7473e7-cb86-40b6-8ed2-ad72eba5e8b3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8c49b53a-57c0-497b-a247-efed2b2d651e {
  box-shadow:3px 3px 6px 1px rgba(219, 219, 219, 1);
margin-left: 6%;
margin-right: 6%;
min-height: 50px;
}








#s-8c49b53a-57c0-497b-a247-efed2b2d651e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8c49b53a-57c0-497b-a247-efed2b2d651e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-947d4496-8bc8-4254-b5ce-fef02c6a27ff {
  margin-top: 15px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-947d4496-8bc8-4254-b5ce-fef02c6a27ff .shogun-heading-component h1 {
  color: #000;
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 15px;
  
  
  
}



#s-b63332ac-462c-4a1a-8068-8426f6e80696 {
  margin-left: 11%;
margin-bottom: 20px;
margin-right: 11%;
}

@media (min-width: 0px) {
[id="s-b63332ac-462c-4a1a-8068-8426f6e80696"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-b63332ac-462c-4a1a-8068-8426f6e80696"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-b63332ac-462c-4a1a-8068-8426f6e80696"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-b63332ac-462c-4a1a-8068-8426f6e80696"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

}

#s-3e2fbb33-df71-4870-aecb-5ee22d5d9e60 {
  margin-left: 0%;
margin-right: 9%;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-3e2fbb33-df71-4870-aecb-5ee22d5d9e60 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  
  
  text-align: right;
}



#s-04ed2020-d033-4892-90bd-7b5b83fde8e1 hr {
  border-top: 1px solid rgba(156, 156, 156, 1);
}

#s-5aa3bcd8-b388-4d2f-bc4d-b7ddc9ce3d30 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-5aa3bcd8-b388-4d2f-bc4d-b7ddc9ce3d30 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  
  
  text-align: left;
}



#s-baaf2d60-34b8-441b-91b3-391424e2d0da hr {
  border-top: 1px solid rgba(156, 156, 156, 1);
}

#s-566d50a6-c11c-4a70-9f25-6f5c04a9be15 {
  margin-right: 9%;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-566d50a6-c11c-4a70-9f25-6f5c04a9be15 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  
  
  text-align: right;
}



#s-37744867-d474-4057-a664-de5beb8f88d6 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-37744867-d474-4057-a664-de5beb8f88d6 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  
  
  text-align: left;
}



#s-058beea0-42ce-41f0-88f8-8dec8f0782ac hr {
  border-top: 1px solid rgba(156, 156, 156, 1);
}

#s-57fb3584-973b-4b63-a4fe-3f9e2e2b47a4 {
  margin-right: 9%;
padding-top: 0px;
padding-bottom: 0px;
text-align: right;
}

#s-57fb3584-973b-4b63-a4fe-3f9e2e2b47a4 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  
  
  text-align: right;
}



#s-ffe1cec6-8d83-4a54-bfac-b3ca3772de0d hr {
  border-top: 1px solid rgba(156, 156, 156, 1);
}

#s-269b972d-efe0-4f02-a5fb-21bacf1bf0e7 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-269b972d-efe0-4f02-a5fb-21bacf1bf0e7 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 13px;
  
  
  text-align: left;
}



#s-5ae2f6cb-e926-4744-b017-717f6531cad3 {
  min-height: 50px;
}








#s-5ae2f6cb-e926-4744-b017-717f6531cad3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5ae2f6cb-e926-4744-b017-717f6531cad3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}
.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-lazyload-bg-image {
  display: none;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}
/* <-- User Content Animations */

.shogun-form-error-msg, .shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

.shg-c:before,.shg-c:after{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width: 1024px){.shg-c,.shg-box{background-attachment:scroll !important}}@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape){.shg-box{background-attachment:scroll !important}}#mc_embed_signup .clear{width:auto !important;height:auto !important;visibility:visible !important}.shg-clearfix:after{content:"";display:block;clear:both}.shogun-image{max-width:100%;min-height:inherit;max-height:inherit;display:inline !important;border:0;vertical-align:middle}.shg-fw{margin-left:calc(50% - 50vw);width:100vw}.shg-fw .shg-fw{margin-left:auto;margin-right:auto;width:100%}div[data-shg-lightbox-switch]{cursor:pointer}.shg-lightbox{position:fixed;z-index:999999;left:0;top:0;width:100%;height:100%;overflow:hidden;background-color:#000;background-color:rgba(0,0,0,0.85)}.shg-lightbox.hidden{display:none !important}.shg-lightbox .shg-lightbox-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;text-align:center}.shg-lightbox .shg-lightbox-close{position:absolute;right:0;padding:5px 0;color:#fff;font-size:45px;margin-right:10px;line-height:30px;user-select:none;cursor:pointer;z-index:1}.shg-lightbox .shg-lightbox-image-container{padding:25px}.shg-lightbox .shg-lightbox-image{margin:auto;max-height:90vh;max-width:100%}.shg-lightbox .shg-lightbox-close:hover,.shg-lightbox .shg-lightbox-close:focus{color:#a2a2a2;text-decoration:none;cursor:pointer}.shg-lightbox .shg-lightbox-nav{cursor:pointer;position:absolute;top:50%;width:35px;height:100px;background-size:contain;background-repeat:no-repeat;background-position:center;transform:translate(0%, -50%);z-index:1}.shg-lightbox .shg-lightbox-nav.hidden{display:none !important}.shg-lightbox .shg-lightbox-nav.shg-nav-left{left:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==)}.shg-lightbox .shg-lightbox-nav.shg-nav-right{right:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+)}@media screen and (min-width: 769px){.shg-lightbox .shg-lightbox-image-container{padding:50px}}.shogun-lazyload:not([src]),.shogun-lazyloading:not([src]){opacity:0}.shogun-lazyloaded{opacity:1;transition:opacity 300ms}.shogun-lazyload-bg-image{display:none}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{display:inline-block}[data-animations*="enterviewport"][data-animations*="fadeIn"],[data-animations*="enterviewport"][data-animations*="zoomIn"]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}
