.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-ac757885-3bbd-4b49-a69f-140bd67c13d5 {
  min-height: 50px;
}








#s-ac757885-3bbd-4b49-a69f-140bd67c13d5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ac757885-3bbd-4b49-a69f-140bd67c13d5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-66051002-af46-4ce3-9530-aef21f46eeab {
  min-height: 50px;
}








#s-66051002-af46-4ce3-9530-aef21f46eeab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-66051002-af46-4ce3-9530-aef21f46eeab.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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-76451d7a-5e12-419d-a314-0520221e3677 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 885px;
text-align: left;
}

#s-76451d7a-5e12-419d-a314-0520221e3677 .shogun-heading-component h1 {
  color: rgba(10, 10, 10, 1);
  font-weight:  600 ;
  font-family: "Fahkwang";
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: left;
}



.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-27ca1594-cd59-460a-937f-5f7051f88c9b {
  margin-top: 25px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
max-width: 1194px;
text-align: center;
}







  #s-27ca1594-cd59-460a-937f-5f7051f88c9b img.shogun-image {
    

    
    
    
  }


#s-27ca1594-cd59-460a-937f-5f7051f88c9b .shogun-image-content {
  
    align-items: center;
  
}

#s-40a227d4-0baf-4a71-b5a0-a5427565a152 {
  text-align: left;
}

#s-267dc204-4dc3-4ab4-93b4-5b0544eaa89e {
  min-height: 50px;
}








#s-267dc204-4dc3-4ab4-93b4-5b0544eaa89e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-267dc204-4dc3-4ab4-93b4-5b0544eaa89e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c0297b74-29f9-4bdb-9a0e-c4a524f6d9a6 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
min-height: 50px;
}








#s-c0297b74-29f9-4bdb-9a0e-c4a524f6d9a6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c0297b74-29f9-4bdb-9a0e-c4a524f6d9a6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

#s-0ea4457e-3731-4800-ab0d-ad7a546a2df5 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
max-width: 1194px;
}

@media (min-width: 0px) {
[id="s-0ea4457e-3731-4800-ab0d-ad7a546a2df5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0ea4457e-3731-4800-ab0d-ad7a546a2df5"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 40.0px);
}

[id="s-0ea4457e-3731-4800-ab0d-ad7a546a2df5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 40.0px);
}

[id="s-0ea4457e-3731-4800-ab0d-ad7a546a2df5"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 40.0px);
}

}

@media (min-width: 992px) {
[id="s-0ea4457e-3731-4800-ab0d-ad7a546a2df5"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 40.0px);
}

[id="s-0ea4457e-3731-4800-ab0d-ad7a546a2df5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 40.0px);
}

[id="s-0ea4457e-3731-4800-ab0d-ad7a546a2df5"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 40.0px);
}

}

@media (min-width: 1200px) {
[id="s-0ea4457e-3731-4800-ab0d-ad7a546a2df5"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 40.0px);
}

[id="s-0ea4457e-3731-4800-ab0d-ad7a546a2df5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 40.0px);
}

[id="s-0ea4457e-3731-4800-ab0d-ad7a546a2df5"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 40.0px);
}

}

@media (max-width: 767px) {
  [id="s-0ea4457e-3731-4800-ab0d-ad7a546a2df5"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-e05932c1-ea6e-4598-a167-01f17f8f8891 {
  margin-top: 20px;
margin-bottom: 20px;
min-height: 50px;
}








#s-e05932c1-ea6e-4598-a167-01f17f8f8891 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e05932c1-ea6e-4598-a167-01f17f8f8891.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5947b94a-d920-4f4e-b193-74653c02f5a6 {
  padding-top: 10px;
padding-bottom: 10px;
max-width: 684px;
text-align: left;
}

#s-5947b94a-d920-4f4e-b193-74653c02f5a6 .shogun-heading-component h2 {
  color: rgba(10, 10, 10, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 24px;
  line-height: 1.5em;
  letter-spacing: 0.32px;
  
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-1fd4477e-c3d7-4359-8aba-97fc6212fe79 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 721px;
}

#s-f9e176ee-bced-4ee0-99fa-2bd9afc6c7fe {
  padding-top: 0px;
padding-bottom: 0px;
max-width: 684px;
text-align: left;
}

#s-f9e176ee-bced-4ee0-99fa-2bd9afc6c7fe .shogun-heading-component h2 {
  color: rgba(10, 10, 10, 1);
  font-weight:  600 ;
  font-family: "Fahkwang";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.5em;
  letter-spacing: 0.32px;
  
}



#s-e533f948-97fe-43b6-a03e-b79bd4ae9566 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 721px;
}

#s-16609660-63ad-44a7-be64-3b2184295eaf {
  min-height: 50px;
}








#s-16609660-63ad-44a7-be64-3b2184295eaf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-16609660-63ad-44a7-be64-3b2184295eaf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-668e7b9c-c4fe-478c-9bd4-06e29c598017 {
  min-height: 50px;
}








#s-668e7b9c-c4fe-478c-9bd4-06e29c598017 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-668e7b9c-c4fe-478c-9bd4-06e29c598017.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bf1c220c-e9d9-4b1b-a7fc-aac89c304b90 {
  margin-bottom: 25px;
padding-bottom: 15px;
}

@media (min-width: 0px) {
[id="s-bf1c220c-e9d9-4b1b-a7fc-aac89c304b90"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bf1c220c-e9d9-4b1b-a7fc-aac89c304b90"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bf1c220c-e9d9-4b1b-a7fc-aac89c304b90"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bf1c220c-e9d9-4b1b-a7fc-aac89c304b90"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

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

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

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

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

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

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

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

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

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

#s-d7703536-7f66-48fe-b59b-fb2696bed218 {
  text-align: left;
}



.shg-c#s-d7703536-7f66-48fe-b59b-fb2696bed218 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d7703536-7f66-48fe-b59b-fb2696bed218 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-d7703536-7f66-48fe-b59b-fb2696bed218 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d7703536-7f66-48fe-b59b-fb2696bed218 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d7703536-7f66-48fe-b59b-fb2696bed218 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d7703536-7f66-48fe-b59b-fb2696bed218 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d7703536-7f66-48fe-b59b-fb2696bed218 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d7703536-7f66-48fe-b59b-fb2696bed218 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-d7703536-7f66-48fe-b59b-fb2696bed218 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d7703536-7f66-48fe-b59b-fb2696bed218 img.shogun-image {
  width: 100%;
}



}
#s-9d5c4fb1-b5f0-44b5-b0c2-ca9bea35b43f {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 50px;
background-color: rgba(211, 211, 210, 1);
}








#s-9d5c4fb1-b5f0-44b5-b0c2-ca9bea35b43f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9d5c4fb1-b5f0-44b5-b0c2-ca9bea35b43f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-product-title-component h1,
.shg-product-title-component h2,
.shg-product-title-component h3,
.shg-product-title-component h4,
.shg-product-title-component h5,
.shg-product-title-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: ;
  font-family: ;
  text-transform: none;
  font-weight: ;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

.shg-product-title-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-35c7c1f0-cff1-460e-b525-fb45b24350f0 {
  margin-left: 11%;
margin-right: 11%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-35c7c1f0-cff1-460e-b525-fb45b24350f0 .shg-product-title-component h3 {
  color: #000;
  font-weight:  500 ;
  font-family: Poppins;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

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

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

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

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

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

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

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

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

#s-ef431c22-20a4-4c94-bdb7-ff6a6b9a4027 {
  padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(14, 91, 219, 1);
border-style: solid;
border-radius: 4px;
background-color: rgba(14, 91, 219, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-ef431c22-20a4-4c94-bdb7-ff6a6b9a4027:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ef431c22-20a4-4c94-bdb7-ff6a6b9a4027:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-ef431c22-20a4-4c94-bdb7-ff6a6b9a4027-root {
    text-align: center;
  }


#s-ef431c22-20a4-4c94-bdb7-ff6a6b9a4027.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ef431c22-20a4-4c94-bdb7-ff6a6b9a4027-root {
    text-align: center;
  }


#s-ef431c22-20a4-4c94-bdb7-ff6a6b9a4027.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ef431c22-20a4-4c94-bdb7-ff6a6b9a4027-root {
    text-align: center;
  }


#s-ef431c22-20a4-4c94-bdb7-ff6a6b9a4027.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ef431c22-20a4-4c94-bdb7-ff6a6b9a4027-root {
    text-align: center;
  }


#s-ef431c22-20a4-4c94-bdb7-ff6a6b9a4027.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ef431c22-20a4-4c94-bdb7-ff6a6b9a4027-root {
    text-align: center;
  }


#s-ef431c22-20a4-4c94-bdb7-ff6a6b9a4027.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
  #s-ef431c22-20a4-4c94-bdb7-ff6a6b9a4027-root {
    text-align: center;
  }


#s-ef431c22-20a4-4c94-bdb7-ff6a6b9a4027.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-2563c5a4-96d0-46d1-9631-0088147c1ee1 {
  margin-top: 10px;
min-height: 50px;
}








#s-2563c5a4-96d0-46d1-9631-0088147c1ee1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2563c5a4-96d0-46d1-9631-0088147c1ee1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dc797ff0-d57c-4d22-8607-774e91bfd3f6 {
  margin-top: 5px;
margin-bottom: 5px;
padding-left: 10px;
}

@media (min-width: 0px) {
[id="s-d255876c-bbff-4362-a343-79e95e56e7dc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d255876c-bbff-4362-a343-79e95e56e7dc"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-d255876c-bbff-4362-a343-79e95e56e7dc"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d255876c-bbff-4362-a343-79e95e56e7dc"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-d255876c-bbff-4362-a343-79e95e56e7dc"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d255876c-bbff-4362-a343-79e95e56e7dc"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-d255876c-bbff-4362-a343-79e95e56e7dc"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

#s-acf8a15f-1b82-4376-ac50-71c16ab83411 {
  text-align: center;
}







  #s-acf8a15f-1b82-4376-ac50-71c16ab83411 img.shogun-image {
    

    
    
    
  }


#s-acf8a15f-1b82-4376-ac50-71c16ab83411 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-add383f1-402a-43f5-af5d-04b23b8bacc0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-add383f1-402a-43f5-af5d-04b23b8bacc0"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-add383f1-402a-43f5-af5d-04b23b8bacc0"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-add383f1-402a-43f5-af5d-04b23b8bacc0"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-add383f1-402a-43f5-af5d-04b23b8bacc0"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-add383f1-402a-43f5-af5d-04b23b8bacc0"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-add383f1-402a-43f5-af5d-04b23b8bacc0"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

#s-5f991750-de86-4f5d-a5ed-12cd45231813 {
  text-align: center;
}







  #s-5f991750-de86-4f5d-a5ed-12cd45231813 img.shogun-image {
    

    
    
    
  }


#s-5f991750-de86-4f5d-a5ed-12cd45231813 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-2362ca2b-122b-450a-9fad-28313e23cc64"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2362ca2b-122b-450a-9fad-28313e23cc64"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-2362ca2b-122b-450a-9fad-28313e23cc64"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-2362ca2b-122b-450a-9fad-28313e23cc64"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-2362ca2b-122b-450a-9fad-28313e23cc64"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-2362ca2b-122b-450a-9fad-28313e23cc64"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-2362ca2b-122b-450a-9fad-28313e23cc64"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

#s-b33ceec3-f1c9-45f5-83c5-dd907cd29573 {
  text-align: center;
}







  #s-b33ceec3-f1c9-45f5-83c5-dd907cd29573 img.shogun-image {
    

    
    
    
  }


#s-b33ceec3-f1c9-45f5-83c5-dd907cd29573 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-156436fa-4fdd-4bf7-a4a6-6cc482588f60"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-156436fa-4fdd-4bf7-a4a6-6cc482588f60"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-156436fa-4fdd-4bf7-a4a6-6cc482588f60"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-156436fa-4fdd-4bf7-a4a6-6cc482588f60"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-156436fa-4fdd-4bf7-a4a6-6cc482588f60"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-156436fa-4fdd-4bf7-a4a6-6cc482588f60"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-156436fa-4fdd-4bf7-a4a6-6cc482588f60"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

#s-22971f90-37a6-4e12-8e3a-639e9c576734 {
  text-align: center;
}







  #s-22971f90-37a6-4e12-8e3a-639e9c576734 img.shogun-image {
    

    
    
    
  }


#s-22971f90-37a6-4e12-8e3a-639e9c576734 .shogun-image-content {
  
    align-items: center;
  
}

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

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

#s-b2ef4757-3971-43f6-a902-1c847250e948 hr {
  border-top: 2px solid rgba(102, 102, 102, 1);
}

#s-a0a91f93-e26b-421e-aebf-d86c5d6f4808 {
  margin-top: 5px;
margin-bottom: 5px;
padding-left: 10px;
}

@media (min-width: 0px) {
[id="s-b06debf2-1968-4138-bb07-11921db48418"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b06debf2-1968-4138-bb07-11921db48418"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-b06debf2-1968-4138-bb07-11921db48418"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-b06debf2-1968-4138-bb07-11921db48418"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-b06debf2-1968-4138-bb07-11921db48418"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-b06debf2-1968-4138-bb07-11921db48418"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-b06debf2-1968-4138-bb07-11921db48418"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

#s-626b6a83-c75c-4837-8a4a-2b7b19b7b893 {
  text-align: center;
}







  #s-626b6a83-c75c-4837-8a4a-2b7b19b7b893 img.shogun-image {
    

    
    
    
  }


#s-626b6a83-c75c-4837-8a4a-2b7b19b7b893 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-5ab8171d-745c-455b-b377-fbc5ee42cf73"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5ab8171d-745c-455b-b377-fbc5ee42cf73"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-5ab8171d-745c-455b-b377-fbc5ee42cf73"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5ab8171d-745c-455b-b377-fbc5ee42cf73"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-5ab8171d-745c-455b-b377-fbc5ee42cf73"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5ab8171d-745c-455b-b377-fbc5ee42cf73"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-5ab8171d-745c-455b-b377-fbc5ee42cf73"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

#s-c2a2b199-aaed-42b9-a98e-546cb3b06d9f {
  text-align: center;
}







  #s-c2a2b199-aaed-42b9-a98e-546cb3b06d9f img.shogun-image {
    

    
    
    
  }


#s-c2a2b199-aaed-42b9-a98e-546cb3b06d9f .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-7289ce08-b751-435d-b06c-e988b9d67059"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7289ce08-b751-435d-b06c-e988b9d67059"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-7289ce08-b751-435d-b06c-e988b9d67059"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-7289ce08-b751-435d-b06c-e988b9d67059"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-7289ce08-b751-435d-b06c-e988b9d67059"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-7289ce08-b751-435d-b06c-e988b9d67059"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-7289ce08-b751-435d-b06c-e988b9d67059"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

#s-dc04fd3c-3bda-4e97-ac3b-3ab07ac528fc {
  text-align: center;
}







  #s-dc04fd3c-3bda-4e97-ac3b-3ab07ac528fc img.shogun-image {
    

    
    
    
  }


#s-dc04fd3c-3bda-4e97-ac3b-3ab07ac528fc .shogun-image-content {
  
    align-items: center;
  
}

#s-6966e79c-5d8b-4008-bdaf-6affdc7f22ee {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 721px;
}

.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-c9ab68ca-ef8c-47f7-bd5f-893f070e224c {
  text-align: center;
}







  img.s-c9ab68ca-ef8c-47f7-bd5f-893f070e224c.shogun-image {
    
    
  }


.s-c9ab68ca-ef8c-47f7-bd5f-893f070e224c .shogun-image-content {
  
    align-items: center;
  
}

.s-c9ab68ca-ef8c-47f7-bd5f-893f070e224c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c9ab68ca-ef8c-47f7-bd5f-893f070e224c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c9ab68ca-ef8c-47f7-bd5f-893f070e224c.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-c9ab68ca-ef8c-47f7-bd5f-893f070e224c.shogun-image {
    
    
  }


.s-c9ab68ca-ef8c-47f7-bd5f-893f070e224c .shogun-image-content {
  
    align-items: center;
  
}

.s-c9ab68ca-ef8c-47f7-bd5f-893f070e224c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c9ab68ca-ef8c-47f7-bd5f-893f070e224c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c9ab68ca-ef8c-47f7-bd5f-893f070e224c.shogun-image {
  box-sizing: border-box;
}



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





  img.s-c9ab68ca-ef8c-47f7-bd5f-893f070e224c.shogun-image {
    
    
  }


.s-c9ab68ca-ef8c-47f7-bd5f-893f070e224c .shogun-image-content {
  
    align-items: center;
  
}

.s-c9ab68ca-ef8c-47f7-bd5f-893f070e224c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c9ab68ca-ef8c-47f7-bd5f-893f070e224c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c9ab68ca-ef8c-47f7-bd5f-893f070e224c.shogun-image {
  box-sizing: border-box;
}



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





  img.s-c9ab68ca-ef8c-47f7-bd5f-893f070e224c.shogun-image {
    
    
  }


.s-c9ab68ca-ef8c-47f7-bd5f-893f070e224c .shogun-image-content {
  
    align-items: center;
  
}

.s-c9ab68ca-ef8c-47f7-bd5f-893f070e224c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c9ab68ca-ef8c-47f7-bd5f-893f070e224c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c9ab68ca-ef8c-47f7-bd5f-893f070e224c.shogun-image {
  box-sizing: border-box;
}



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





  img.s-c9ab68ca-ef8c-47f7-bd5f-893f070e224c.shogun-image {
    
    
  }


.s-c9ab68ca-ef8c-47f7-bd5f-893f070e224c .shogun-image-content {
  
    align-items: center;
  
}

.s-c9ab68ca-ef8c-47f7-bd5f-893f070e224c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c9ab68ca-ef8c-47f7-bd5f-893f070e224c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c9ab68ca-ef8c-47f7-bd5f-893f070e224c.shogun-image {
  box-sizing: border-box;
}



}
#s-419eb846-62c9-4985-8eaf-fdfff57f0eff hr {
  border-top: 2px solid #ddd;
}

#s-1cfcf4ea-8ab5-4eb1-b2be-e3705b89fcd9 {
  padding-top: 25px;
padding-bottom: 10px;
max-width: 684px;
text-align: left;
}

#s-1cfcf4ea-8ab5-4eb1-b2be-e3705b89fcd9 .shogun-heading-component h2 {
  color: rgba(10, 10, 10, 1);
  font-weight:  600 ;
  font-family: "Fahkwang";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.5em;
  letter-spacing: 0.32px;
  
}



#s-5a51c874-2e50-4d32-a0c6-65897026a618 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 721px;
}

#s-2c2038ff-9b55-481f-a1de-4d948b9584f5 {
  min-height: 50px;
}








#s-2c2038ff-9b55-481f-a1de-4d948b9584f5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2c2038ff-9b55-481f-a1de-4d948b9584f5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e05e1be7-9a85-43ef-a939-eafb220a6e84 {
  margin-bottom: 25px;
padding-bottom: 15px;
}

@media (min-width: 0px) {
[id="s-e05e1be7-9a85-43ef-a939-eafb220a6e84"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e05e1be7-9a85-43ef-a939-eafb220a6e84"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e05e1be7-9a85-43ef-a939-eafb220a6e84"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e05e1be7-9a85-43ef-a939-eafb220a6e84"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-931f8ec7-f98d-489f-a28d-3f8ee18d4b03 {
  text-align: left;
}



.shg-c#s-931f8ec7-f98d-489f-a28d-3f8ee18d4b03 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-931f8ec7-f98d-489f-a28d-3f8ee18d4b03 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-931f8ec7-f98d-489f-a28d-3f8ee18d4b03 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-931f8ec7-f98d-489f-a28d-3f8ee18d4b03 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-931f8ec7-f98d-489f-a28d-3f8ee18d4b03 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-931f8ec7-f98d-489f-a28d-3f8ee18d4b03 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-931f8ec7-f98d-489f-a28d-3f8ee18d4b03 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-931f8ec7-f98d-489f-a28d-3f8ee18d4b03 img.shogun-image {
  width: 100%;
}



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

.shg-c#s-931f8ec7-f98d-489f-a28d-3f8ee18d4b03 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-931f8ec7-f98d-489f-a28d-3f8ee18d4b03 img.shogun-image {
  width: 100%;
}



}
#s-856c8b07-048f-4f5d-a4bc-d4b32cedd509 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 50px;
background-color: rgba(211, 211, 210, 1);
}








#s-856c8b07-048f-4f5d-a4bc-d4b32cedd509 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-856c8b07-048f-4f5d-a4bc-d4b32cedd509.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-41e738a2-92c2-45de-91a8-316e2b489869 {
  margin-left: 11%;
margin-right: 11%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-41e738a2-92c2-45de-91a8-316e2b489869 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: Poppins;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-c7ca7abe-303c-4823-b813-9ced314d19bb {
  padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(14, 91, 219, 1);
border-style: solid;
border-radius: 4px;
background-color: rgba(14, 91, 219, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-c7ca7abe-303c-4823-b813-9ced314d19bb:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c7ca7abe-303c-4823-b813-9ced314d19bb:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-c7ca7abe-303c-4823-b813-9ced314d19bb-root {
    text-align: center;
  }


#s-c7ca7abe-303c-4823-b813-9ced314d19bb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c7ca7abe-303c-4823-b813-9ced314d19bb-root {
    text-align: center;
  }


#s-c7ca7abe-303c-4823-b813-9ced314d19bb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c7ca7abe-303c-4823-b813-9ced314d19bb-root {
    text-align: center;
  }


#s-c7ca7abe-303c-4823-b813-9ced314d19bb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c7ca7abe-303c-4823-b813-9ced314d19bb-root {
    text-align: center;
  }


#s-c7ca7abe-303c-4823-b813-9ced314d19bb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c7ca7abe-303c-4823-b813-9ced314d19bb-root {
    text-align: center;
  }


#s-c7ca7abe-303c-4823-b813-9ced314d19bb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
  #s-c7ca7abe-303c-4823-b813-9ced314d19bb-root {
    text-align: center;
  }


#s-c7ca7abe-303c-4823-b813-9ced314d19bb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-b673ce5e-cc30-449f-920d-c9c4438221e1 {
  margin-top: 10px;
min-height: 50px;
}








#s-b673ce5e-cc30-449f-920d-c9c4438221e1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b673ce5e-cc30-449f-920d-c9c4438221e1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c11c498e-72b9-4ced-8864-da23baf6d3d4 {
  margin-top: 5px;
margin-bottom: 5px;
padding-left: 10px;
}

@media (min-width: 0px) {
[id="s-b203f84c-34e7-4675-a602-cf6304c1b1ce"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b203f84c-34e7-4675-a602-cf6304c1b1ce"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-b203f84c-34e7-4675-a602-cf6304c1b1ce"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-b203f84c-34e7-4675-a602-cf6304c1b1ce"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-b203f84c-34e7-4675-a602-cf6304c1b1ce"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-b203f84c-34e7-4675-a602-cf6304c1b1ce"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-b203f84c-34e7-4675-a602-cf6304c1b1ce"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

#s-c2c8d6d3-ae1a-42bd-940c-56fc70eedf28 {
  text-align: center;
}







  #s-c2c8d6d3-ae1a-42bd-940c-56fc70eedf28 img.shogun-image {
    

    
    
    
  }


#s-c2c8d6d3-ae1a-42bd-940c-56fc70eedf28 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-d65dfb7b-53e0-4cac-836d-bd451ef38604"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d65dfb7b-53e0-4cac-836d-bd451ef38604"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-d65dfb7b-53e0-4cac-836d-bd451ef38604"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d65dfb7b-53e0-4cac-836d-bd451ef38604"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-d65dfb7b-53e0-4cac-836d-bd451ef38604"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d65dfb7b-53e0-4cac-836d-bd451ef38604"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-d65dfb7b-53e0-4cac-836d-bd451ef38604"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

#s-f2e5afa1-3df6-46c0-a857-4fbc0a283f2b {
  text-align: center;
}







  #s-f2e5afa1-3df6-46c0-a857-4fbc0a283f2b img.shogun-image {
    

    
    
    
  }


#s-f2e5afa1-3df6-46c0-a857-4fbc0a283f2b .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-c19cb77a-7306-4524-abf8-5b773a12fc3b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c19cb77a-7306-4524-abf8-5b773a12fc3b"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-c19cb77a-7306-4524-abf8-5b773a12fc3b"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-c19cb77a-7306-4524-abf8-5b773a12fc3b"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-c19cb77a-7306-4524-abf8-5b773a12fc3b"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-c19cb77a-7306-4524-abf8-5b773a12fc3b"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-c19cb77a-7306-4524-abf8-5b773a12fc3b"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

#s-757bf276-2c0b-4703-b1ba-41661df98b81 {
  text-align: center;
}







  #s-757bf276-2c0b-4703-b1ba-41661df98b81 img.shogun-image {
    

    
    
    
  }


#s-757bf276-2c0b-4703-b1ba-41661df98b81 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-e4b25efd-f029-4f00-bc63-8ea2f4a77be4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e4b25efd-f029-4f00-bc63-8ea2f4a77be4"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-e4b25efd-f029-4f00-bc63-8ea2f4a77be4"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-e4b25efd-f029-4f00-bc63-8ea2f4a77be4"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-e4b25efd-f029-4f00-bc63-8ea2f4a77be4"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-e4b25efd-f029-4f00-bc63-8ea2f4a77be4"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-e4b25efd-f029-4f00-bc63-8ea2f4a77be4"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

#s-bcbdd56d-0377-4f25-9b58-9d452cbd1dd3 {
  text-align: center;
}







  #s-bcbdd56d-0377-4f25-9b58-9d452cbd1dd3 img.shogun-image {
    

    
    
    
  }


#s-bcbdd56d-0377-4f25-9b58-9d452cbd1dd3 .shogun-image-content {
  
    align-items: center;
  
}

#s-d712642a-bb7e-47a2-bda6-9eaa56b21472 hr {
  border-top: 2px solid rgba(102, 102, 102, 1);
}

#s-b39c0543-916b-4a54-915c-435ec47af78f {
  margin-top: 5px;
margin-bottom: 5px;
padding-left: 10px;
}

@media (min-width: 0px) {
[id="s-9f4cd5ea-77ca-4c9a-a72a-22b1f5d87745"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9f4cd5ea-77ca-4c9a-a72a-22b1f5d87745"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-9f4cd5ea-77ca-4c9a-a72a-22b1f5d87745"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-9f4cd5ea-77ca-4c9a-a72a-22b1f5d87745"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-9f4cd5ea-77ca-4c9a-a72a-22b1f5d87745"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-9f4cd5ea-77ca-4c9a-a72a-22b1f5d87745"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-9f4cd5ea-77ca-4c9a-a72a-22b1f5d87745"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

#s-f982cc06-e82d-48e2-a1de-66ef5d9321c4 {
  text-align: center;
}







  #s-f982cc06-e82d-48e2-a1de-66ef5d9321c4 img.shogun-image {
    

    
    
    
  }


#s-f982cc06-e82d-48e2-a1de-66ef5d9321c4 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-5e7ba6f8-9e0e-4f12-8295-fc0a33cc1181"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5e7ba6f8-9e0e-4f12-8295-fc0a33cc1181"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-5e7ba6f8-9e0e-4f12-8295-fc0a33cc1181"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5e7ba6f8-9e0e-4f12-8295-fc0a33cc1181"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-5e7ba6f8-9e0e-4f12-8295-fc0a33cc1181"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5e7ba6f8-9e0e-4f12-8295-fc0a33cc1181"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-5e7ba6f8-9e0e-4f12-8295-fc0a33cc1181"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

#s-8548511e-37c7-4f8a-afda-679a5a55d118 {
  text-align: center;
}







  #s-8548511e-37c7-4f8a-afda-679a5a55d118 img.shogun-image {
    

    
    
    
  }


#s-8548511e-37c7-4f8a-afda-679a5a55d118 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-3b32f0b1-211c-486e-a7bb-a0a8c48f8159"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3b32f0b1-211c-486e-a7bb-a0a8c48f8159"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3b32f0b1-211c-486e-a7bb-a0a8c48f8159"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-3b32f0b1-211c-486e-a7bb-a0a8c48f8159"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3b32f0b1-211c-486e-a7bb-a0a8c48f8159"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-3b32f0b1-211c-486e-a7bb-a0a8c48f8159"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3b32f0b1-211c-486e-a7bb-a0a8c48f8159"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

#s-caa96408-d50e-410a-ab9d-4df33f370346 {
  text-align: center;
}







  #s-caa96408-d50e-410a-ab9d-4df33f370346 img.shogun-image {
    

    
    
    
  }


#s-caa96408-d50e-410a-ab9d-4df33f370346 .shogun-image-content {
  
    align-items: center;
  
}

#s-baf4f281-46da-4da8-b345-dba09ee1e741 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 721px;
}

#s-1203d0e6-1966-4841-a5a8-946e4f45aefc {
  text-align: center;
}







  img.s-1203d0e6-1966-4841-a5a8-946e4f45aefc.shogun-image {
    
    
  }


.s-1203d0e6-1966-4841-a5a8-946e4f45aefc .shogun-image-content {
  
    align-items: center;
  
}

.s-1203d0e6-1966-4841-a5a8-946e4f45aefc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1203d0e6-1966-4841-a5a8-946e4f45aefc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1203d0e6-1966-4841-a5a8-946e4f45aefc.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-1203d0e6-1966-4841-a5a8-946e4f45aefc.shogun-image {
    
    
  }


.s-1203d0e6-1966-4841-a5a8-946e4f45aefc .shogun-image-content {
  
    align-items: center;
  
}

.s-1203d0e6-1966-4841-a5a8-946e4f45aefc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1203d0e6-1966-4841-a5a8-946e4f45aefc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1203d0e6-1966-4841-a5a8-946e4f45aefc.shogun-image {
  box-sizing: border-box;
}



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





  img.s-1203d0e6-1966-4841-a5a8-946e4f45aefc.shogun-image {
    
    
  }


.s-1203d0e6-1966-4841-a5a8-946e4f45aefc .shogun-image-content {
  
    align-items: center;
  
}

.s-1203d0e6-1966-4841-a5a8-946e4f45aefc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1203d0e6-1966-4841-a5a8-946e4f45aefc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1203d0e6-1966-4841-a5a8-946e4f45aefc.shogun-image {
  box-sizing: border-box;
}



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





  img.s-1203d0e6-1966-4841-a5a8-946e4f45aefc.shogun-image {
    
    
  }


.s-1203d0e6-1966-4841-a5a8-946e4f45aefc .shogun-image-content {
  
    align-items: center;
  
}

.s-1203d0e6-1966-4841-a5a8-946e4f45aefc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1203d0e6-1966-4841-a5a8-946e4f45aefc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1203d0e6-1966-4841-a5a8-946e4f45aefc.shogun-image {
  box-sizing: border-box;
}



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





  img.s-1203d0e6-1966-4841-a5a8-946e4f45aefc.shogun-image {
    
    
  }


.s-1203d0e6-1966-4841-a5a8-946e4f45aefc .shogun-image-content {
  
    align-items: center;
  
}

.s-1203d0e6-1966-4841-a5a8-946e4f45aefc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-1203d0e6-1966-4841-a5a8-946e4f45aefc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1203d0e6-1966-4841-a5a8-946e4f45aefc.shogun-image {
  box-sizing: border-box;
}



}
#s-eae65a76-5cde-40cc-9ea1-06ab73237d66 {
  padding-top: 10px;
padding-bottom: 10px;
max-width: 684px;
text-align: left;
}

#s-eae65a76-5cde-40cc-9ea1-06ab73237d66 .shogun-heading-component h3 {
  color: rgba(10, 10, 10, 1);
  font-weight:  600 ;
  font-family: "Fahkwang";
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  letter-spacing: 0.32px;
  
}



#s-c0c7a8b0-4efa-4dd4-a1e9-d135d5dbc059 hr {
  border-top: 2px solid #ddd;
}

#s-22a728eb-2e5d-435a-9a40-5deb49b552e9 {
  padding-top: 25px;
padding-bottom: 10px;
max-width: 684px;
text-align: left;
}

#s-22a728eb-2e5d-435a-9a40-5deb49b552e9 .shogun-heading-component h2 {
  color: rgba(10, 10, 10, 1);
  font-weight:  600 ;
  font-family: "Fahkwang";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.5em;
  letter-spacing: 0.32px;
  
}



#s-d58cee60-85f1-4593-aece-22cae8fbcb6f {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 721px;
}

#s-3393e7fd-373e-4aae-8133-3000bff21317 {
  margin-bottom: 25px;
padding-bottom: 15px;
}

@media (min-width: 0px) {
[id="s-3393e7fd-373e-4aae-8133-3000bff21317"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3393e7fd-373e-4aae-8133-3000bff21317"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3393e7fd-373e-4aae-8133-3000bff21317"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3393e7fd-373e-4aae-8133-3000bff21317"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-0d49841a-486d-4f32-8e9a-cfd54efcc6aa {
  text-align: left;
}



.shg-c#s-0d49841a-486d-4f32-8e9a-cfd54efcc6aa .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0d49841a-486d-4f32-8e9a-cfd54efcc6aa img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-0d49841a-486d-4f32-8e9a-cfd54efcc6aa .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0d49841a-486d-4f32-8e9a-cfd54efcc6aa img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0d49841a-486d-4f32-8e9a-cfd54efcc6aa .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0d49841a-486d-4f32-8e9a-cfd54efcc6aa img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0d49841a-486d-4f32-8e9a-cfd54efcc6aa .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0d49841a-486d-4f32-8e9a-cfd54efcc6aa img.shogun-image {
  width: 100%;
}



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

.shg-c#s-0d49841a-486d-4f32-8e9a-cfd54efcc6aa .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-0d49841a-486d-4f32-8e9a-cfd54efcc6aa img.shogun-image {
  width: 100%;
}



}
#s-b192f7cf-4029-4ea6-94ad-2ad3052f9e1d {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 50px;
background-color: rgba(211, 211, 210, 1);
}








#s-b192f7cf-4029-4ea6-94ad-2ad3052f9e1d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b192f7cf-4029-4ea6-94ad-2ad3052f9e1d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dcd5ce4c-818c-4df1-ba4c-bc15d478b77e {
  margin-left: 11%;
margin-right: 11%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-dcd5ce4c-818c-4df1-ba4c-bc15d478b77e .shg-product-title-component h3 {
  color: #000;
  font-weight:  500 ;
  font-family: Poppins;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-eac9e55d-b8a6-4bde-8377-8445b9d86677 {
  padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(14, 91, 219, 1);
border-style: solid;
border-radius: 4px;
background-color: rgba(14, 91, 219, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-eac9e55d-b8a6-4bde-8377-8445b9d86677:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-eac9e55d-b8a6-4bde-8377-8445b9d86677:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-eac9e55d-b8a6-4bde-8377-8445b9d86677-root {
    text-align: center;
  }


#s-eac9e55d-b8a6-4bde-8377-8445b9d86677.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-eac9e55d-b8a6-4bde-8377-8445b9d86677-root {
    text-align: center;
  }


#s-eac9e55d-b8a6-4bde-8377-8445b9d86677.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-eac9e55d-b8a6-4bde-8377-8445b9d86677-root {
    text-align: center;
  }


#s-eac9e55d-b8a6-4bde-8377-8445b9d86677.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-eac9e55d-b8a6-4bde-8377-8445b9d86677-root {
    text-align: center;
  }


#s-eac9e55d-b8a6-4bde-8377-8445b9d86677.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-eac9e55d-b8a6-4bde-8377-8445b9d86677-root {
    text-align: center;
  }


#s-eac9e55d-b8a6-4bde-8377-8445b9d86677.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
  #s-eac9e55d-b8a6-4bde-8377-8445b9d86677-root {
    text-align: center;
  }


#s-eac9e55d-b8a6-4bde-8377-8445b9d86677.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-361cd7f3-9a09-4149-ad9b-7a493d5c0981 {
  margin-top: 10px;
min-height: 50px;
}








#s-361cd7f3-9a09-4149-ad9b-7a493d5c0981 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-361cd7f3-9a09-4149-ad9b-7a493d5c0981.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d2b96d9c-fb82-4c6f-9b44-2044b3c615dc {
  margin-top: 5px;
margin-bottom: 5px;
padding-left: 10px;
}

@media (min-width: 0px) {
[id="s-fff02fd8-0b63-414e-b588-00229c8abeb4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fff02fd8-0b63-414e-b588-00229c8abeb4"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-fff02fd8-0b63-414e-b588-00229c8abeb4"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-fff02fd8-0b63-414e-b588-00229c8abeb4"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-fff02fd8-0b63-414e-b588-00229c8abeb4"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-fff02fd8-0b63-414e-b588-00229c8abeb4"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-fff02fd8-0b63-414e-b588-00229c8abeb4"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

#s-19c13198-5d78-4651-9cd3-9a36355c82f9 {
  text-align: center;
}







  #s-19c13198-5d78-4651-9cd3-9a36355c82f9 img.shogun-image {
    

    
    
    
  }


#s-19c13198-5d78-4651-9cd3-9a36355c82f9 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-0c1e4ad6-f22c-461f-a8af-65c5319ff7b6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0c1e4ad6-f22c-461f-a8af-65c5319ff7b6"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-0c1e4ad6-f22c-461f-a8af-65c5319ff7b6"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-0c1e4ad6-f22c-461f-a8af-65c5319ff7b6"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-0c1e4ad6-f22c-461f-a8af-65c5319ff7b6"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-0c1e4ad6-f22c-461f-a8af-65c5319ff7b6"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-0c1e4ad6-f22c-461f-a8af-65c5319ff7b6"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

#s-dd20bec9-4dd6-41bd-81f2-ee43b96dfdbc {
  text-align: center;
}







  #s-dd20bec9-4dd6-41bd-81f2-ee43b96dfdbc img.shogun-image {
    

    
    
    
  }


#s-dd20bec9-4dd6-41bd-81f2-ee43b96dfdbc .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-9806ebec-faf9-4531-b983-e5c5f9899801"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9806ebec-faf9-4531-b983-e5c5f9899801"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-9806ebec-faf9-4531-b983-e5c5f9899801"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-9806ebec-faf9-4531-b983-e5c5f9899801"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-9806ebec-faf9-4531-b983-e5c5f9899801"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-9806ebec-faf9-4531-b983-e5c5f9899801"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-9806ebec-faf9-4531-b983-e5c5f9899801"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

#s-b94fc051-ede2-468d-b7ac-4b782871e5ed {
  text-align: center;
}







  #s-b94fc051-ede2-468d-b7ac-4b782871e5ed img.shogun-image {
    

    
    
    
  }


#s-b94fc051-ede2-468d-b7ac-4b782871e5ed .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-cad3c8f7-afff-4250-9e99-f23fc8820a2c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cad3c8f7-afff-4250-9e99-f23fc8820a2c"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-cad3c8f7-afff-4250-9e99-f23fc8820a2c"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-cad3c8f7-afff-4250-9e99-f23fc8820a2c"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-cad3c8f7-afff-4250-9e99-f23fc8820a2c"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-cad3c8f7-afff-4250-9e99-f23fc8820a2c"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-cad3c8f7-afff-4250-9e99-f23fc8820a2c"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

#s-aa98e56c-aa03-4402-b243-d6321edc4179 {
  text-align: center;
}







  #s-aa98e56c-aa03-4402-b243-d6321edc4179 img.shogun-image {
    

    
    
    
  }


#s-aa98e56c-aa03-4402-b243-d6321edc4179 .shogun-image-content {
  
    align-items: center;
  
}

#s-f010aa8d-17de-4472-8df6-75d1b088c422 hr {
  border-top: 2px solid rgba(102, 102, 102, 1);
}

#s-2b566ec5-9683-4742-b971-76bccdfadd7c {
  margin-top: 5px;
margin-bottom: 5px;
padding-left: 10px;
}

@media (min-width: 0px) {
[id="s-eed3643a-d8eb-4a43-b778-f3c79be5e812"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-eed3643a-d8eb-4a43-b778-f3c79be5e812"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-eed3643a-d8eb-4a43-b778-f3c79be5e812"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-eed3643a-d8eb-4a43-b778-f3c79be5e812"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-eed3643a-d8eb-4a43-b778-f3c79be5e812"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-eed3643a-d8eb-4a43-b778-f3c79be5e812"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-eed3643a-d8eb-4a43-b778-f3c79be5e812"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

#s-a5c49ac9-2cf7-4351-8fa8-68d3e4d753ea {
  text-align: center;
}







  #s-a5c49ac9-2cf7-4351-8fa8-68d3e4d753ea img.shogun-image {
    

    
    
    
  }


#s-a5c49ac9-2cf7-4351-8fa8-68d3e4d753ea .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-00f38e7e-97a1-4745-b96e-92e5de22bc25"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-00f38e7e-97a1-4745-b96e-92e5de22bc25"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-00f38e7e-97a1-4745-b96e-92e5de22bc25"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-00f38e7e-97a1-4745-b96e-92e5de22bc25"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-00f38e7e-97a1-4745-b96e-92e5de22bc25"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-00f38e7e-97a1-4745-b96e-92e5de22bc25"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-00f38e7e-97a1-4745-b96e-92e5de22bc25"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

#s-6d69f299-78b6-4216-834a-54ee14651737 {
  text-align: center;
}







  #s-6d69f299-78b6-4216-834a-54ee14651737 img.shogun-image {
    

    
    
    
  }


#s-6d69f299-78b6-4216-834a-54ee14651737 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-5e6dfcb0-1517-4fb1-807f-8cfd4204fdf1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5e6dfcb0-1517-4fb1-807f-8cfd4204fdf1"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-5e6dfcb0-1517-4fb1-807f-8cfd4204fdf1"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5e6dfcb0-1517-4fb1-807f-8cfd4204fdf1"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-5e6dfcb0-1517-4fb1-807f-8cfd4204fdf1"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5e6dfcb0-1517-4fb1-807f-8cfd4204fdf1"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-5e6dfcb0-1517-4fb1-807f-8cfd4204fdf1"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

}

#s-dbdba206-ab57-4adf-8b42-15c27040b7c5 {
  text-align: center;
}







  #s-dbdba206-ab57-4adf-8b42-15c27040b7c5 img.shogun-image {
    

    
    
    
  }


#s-dbdba206-ab57-4adf-8b42-15c27040b7c5 .shogun-image-content {
  
    align-items: center;
  
}

#s-64d75c8f-fd98-4310-b474-c1bea56eb491 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 721px;
}

#s-bd8bb5d0-874e-43fa-91b0-095c17733f89 {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 721px;
}

#s-c329995f-2ea1-459f-9280-8c631fcc2df7 {
  min-height: 50px;
}








#s-c329995f-2ea1-459f-9280-8c631fcc2df7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c329995f-2ea1-459f-9280-8c631fcc2df7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f5158432-8e9b-41b1-97e2-dd4171b17dd9 {
  padding-bottom: 35px;
text-align: center;
}







  img.s-f5158432-8e9b-41b1-97e2-dd4171b17dd9.shogun-image {
    
    
  }


.s-f5158432-8e9b-41b1-97e2-dd4171b17dd9 .shogun-image-content {
  
    align-items: center;
  
}

.s-f5158432-8e9b-41b1-97e2-dd4171b17dd9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f5158432-8e9b-41b1-97e2-dd4171b17dd9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5158432-8e9b-41b1-97e2-dd4171b17dd9.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-f5158432-8e9b-41b1-97e2-dd4171b17dd9.shogun-image {
    
    
  }


.s-f5158432-8e9b-41b1-97e2-dd4171b17dd9 .shogun-image-content {
  
    align-items: center;
  
}

.s-f5158432-8e9b-41b1-97e2-dd4171b17dd9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f5158432-8e9b-41b1-97e2-dd4171b17dd9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5158432-8e9b-41b1-97e2-dd4171b17dd9.shogun-image {
  box-sizing: border-box;
}



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





  img.s-f5158432-8e9b-41b1-97e2-dd4171b17dd9.shogun-image {
    
    
  }


.s-f5158432-8e9b-41b1-97e2-dd4171b17dd9 .shogun-image-content {
  
    align-items: center;
  
}

.s-f5158432-8e9b-41b1-97e2-dd4171b17dd9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f5158432-8e9b-41b1-97e2-dd4171b17dd9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5158432-8e9b-41b1-97e2-dd4171b17dd9.shogun-image {
  box-sizing: border-box;
}



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





  img.s-f5158432-8e9b-41b1-97e2-dd4171b17dd9.shogun-image {
    
    
  }


.s-f5158432-8e9b-41b1-97e2-dd4171b17dd9 .shogun-image-content {
  
    align-items: center;
  
}

.s-f5158432-8e9b-41b1-97e2-dd4171b17dd9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f5158432-8e9b-41b1-97e2-dd4171b17dd9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5158432-8e9b-41b1-97e2-dd4171b17dd9.shogun-image {
  box-sizing: border-box;
}



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





  img.s-f5158432-8e9b-41b1-97e2-dd4171b17dd9.shogun-image {
    
    
  }


.s-f5158432-8e9b-41b1-97e2-dd4171b17dd9 .shogun-image-content {
  
    align-items: center;
  
}

.s-f5158432-8e9b-41b1-97e2-dd4171b17dd9.shg-align-container {
  display: flex;
  justify-content: center
}

.s-f5158432-8e9b-41b1-97e2-dd4171b17dd9.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-f5158432-8e9b-41b1-97e2-dd4171b17dd9.shogun-image {
  box-sizing: border-box;
}



}
#s-0ad24eb1-0d80-4961-a349-0df977c5454a {
  min-height: 50px;
}








#s-0ad24eb1-0d80-4961-a349-0df977c5454a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0ad24eb1-0d80-4961-a349-0df977c5454a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1d938e68-bac0-4bf1-86d0-1b7c338b71d5 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 40px;
padding-left: 30px;
padding-bottom: 40px;
padding-right: 30px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(14, 91, 219, 1);
border-style: solid;
border-radius: 6px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-1d938e68-bac0-4bf1-86d0-1b7c338b71d5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1d938e68-bac0-4bf1-86d0-1b7c338b71d5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-adb33d6b-f1f2-47d7-a8bf-d6001bca9258 {
  margin-top: 0px;
margin-bottom: 0px;
}

#s-0b509748-66f0-4753-abe0-4aa2fc047707 hr {
  border-top: 2px solid #ddd;
}

#s-323facf1-17a0-4fdf-aaa6-5cf7edcc4ad3 hr {
  border-top: 2px solid #ddd;
}

#s-667a605c-e131-46ef-a6a1-536eb664b660 {
  box-shadow:2px 2px 3px 0px rgba(0, 0, 0, 0.25);
margin-bottom: 20px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 6px;
min-height: 50px;
}








#s-667a605c-e131-46ef-a6a1-536eb664b660 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-667a605c-e131-46ef-a6a1-536eb664b660.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-20b77ca5-30af-47c9-8ded-db85bcd5a3cc {
  min-height: 8px;
}

#s-20b77ca5-30af-47c9-8ded-db85bcd5a3cc {
  background-image: url();
}








#s-20b77ca5-30af-47c9-8ded-db85bcd5a3cc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-20b77ca5-30af-47c9-8ded-db85bcd5a3cc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4ba37623-e849-4b4c-8fa2-072ac7bf7cb5 {
  padding-top: 30px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-4ba37623-e849-4b4c-8fa2-072ac7bf7cb5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4ba37623-e849-4b4c-8fa2-072ac7bf7cb5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-442a01ca-74f9-4056-881b-921731a11c28 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-442a01ca-74f9-4056-881b-921731a11c28 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 0px;
}

#s-442a01ca-74f9-4056-881b-921731a11c28 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(10, 10, 10, 1);
}

#s-442a01ca-74f9-4056-881b-921731a11c28 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-442a01ca-74f9-4056-881b-921731a11c28 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(10, 10, 10, 1);
  text-align: left;
  font-family: Fahkwang;
  font-weight: 700;
  font-style: ;
  font-size: 32px;
}

#s-442a01ca-74f9-4056-881b-921731a11c28 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 32px;
}
#s-f991609d-41d8-4890-8cf0-a326d2d78c46 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(10, 10, 10, 1);
border-style: solid;
}

#s-c440408b-63ac-4ac2-8c03-1c81f5f73125 {
  margin-top: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(10, 10, 10, 1);
border-style: solid;
}

#s-264c0ddc-2e17-4b0c-b991-88036edd3469 {
  margin-top: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(10, 10, 10, 1);
border-style: solid;
}

#s-02a544cd-c2f2-4750-b82e-1b80ccfd9282 {
  margin-top: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(10, 10, 10, 1);
border-style: solid;
}

#s-27c2705e-6e69-4039-84c4-9f4583560a6b {
  box-shadow:2px 2px 3px 0px rgba(0, 0, 0, 0.25);
margin-bottom: 20px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 6px;
min-height: 50px;
}








#s-27c2705e-6e69-4039-84c4-9f4583560a6b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-27c2705e-6e69-4039-84c4-9f4583560a6b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1dae7e27-f7b1-48e3-a7b7-a760ac84d7f7 {
  min-height: 8px;
}

#s-1dae7e27-f7b1-48e3-a7b7-a760ac84d7f7 {
  background-image: url();
}








#s-1dae7e27-f7b1-48e3-a7b7-a760ac84d7f7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1dae7e27-f7b1-48e3-a7b7-a760ac84d7f7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4fbe9a12-afb5-4333-a7e5-e7d97233816d {
  padding-top: 40px;
padding-left: 20px;
padding-bottom: 30px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-4fbe9a12-afb5-4333-a7e5-e7d97233816d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4fbe9a12-afb5-4333-a7e5-e7d97233816d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4cc521b2-ac6e-42a3-98d6-e48eefd00cff > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-4cc521b2-ac6e-42a3-98d6-e48eefd00cff > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 0px;
}

#s-4cc521b2-ac6e-42a3-98d6-e48eefd00cff > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(10, 10, 10, 1);
}

#s-4cc521b2-ac6e-42a3-98d6-e48eefd00cff > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-4cc521b2-ac6e-42a3-98d6-e48eefd00cff > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(10, 10, 10, 1);
  text-align: left;
  font-family: Fahkwang;
  font-weight: 700;
  font-style: ;
  font-size: 32px;
}

#s-4cc521b2-ac6e-42a3-98d6-e48eefd00cff > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 32px;
}
#s-233a18d7-586e-4e44-b579-e005f14ae2f7 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(10, 10, 10, 1);
border-style: solid;
}

#s-6b56c9cc-df7c-4365-903e-5b4c95d66a62 {
  margin-top: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(10, 10, 10, 1);
border-style: solid;
}

#s-ae4d64ab-254c-4e24-977d-10541198dd0a {
  margin-top: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(10, 10, 10, 1);
border-style: solid;
}

#s-fa0bc153-2c67-4fc0-b6e5-83070f3cc00b {
  margin-top: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(10, 10, 10, 1);
border-style: solid;
}

#s-cf7f1510-e15d-4414-9f07-8a5c1cee6025 {
  box-shadow:2px 2px 3px 0px rgba(0, 0, 0, 0.25);
margin-bottom: 20px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 6px;
min-height: 50px;
}








#s-cf7f1510-e15d-4414-9f07-8a5c1cee6025 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cf7f1510-e15d-4414-9f07-8a5c1cee6025.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f1b8914e-0ed2-4ff2-b5c7-b914d5a7dfcc {
  min-height: 8px;
}

#s-f1b8914e-0ed2-4ff2-b5c7-b914d5a7dfcc {
  background-image: url();
}








#s-f1b8914e-0ed2-4ff2-b5c7-b914d5a7dfcc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f1b8914e-0ed2-4ff2-b5c7-b914d5a7dfcc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7f628117-cf7c-45c4-8311-2bc5cd317009 {
  padding-top: 40px;
padding-left: 20px;
padding-bottom: 30px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-7f628117-cf7c-45c4-8311-2bc5cd317009 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7f628117-cf7c-45c4-8311-2bc5cd317009.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1e39367f-2520-4ab1-a693-f2d84980c590 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-1e39367f-2520-4ab1-a693-f2d84980c590 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 0px;
}

#s-1e39367f-2520-4ab1-a693-f2d84980c590 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(10, 10, 10, 1);
}

#s-1e39367f-2520-4ab1-a693-f2d84980c590 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-1e39367f-2520-4ab1-a693-f2d84980c590 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(10, 10, 10, 1);
  text-align: left;
  font-family: Fahkwang;
  font-weight: 700;
  font-style: ;
  font-size: 32px;
}

#s-1e39367f-2520-4ab1-a693-f2d84980c590 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 32px;
}
#s-40f56d5c-4342-480a-98c0-e68ee3d3b8cf {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(10, 10, 10, 1);
border-style: solid;
}

#s-3369f106-eca1-4736-a631-b959f57b6941 {
  margin-top: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(10, 10, 10, 1);
border-style: solid;
}

#s-6bb7cccc-d147-48cb-b314-e8bab16770bc {
  margin-top: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(10, 10, 10, 1);
border-style: solid;
}

#s-b89595c3-d676-4cef-af31-86dd4ad8a28e {
  margin-top: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(10, 10, 10, 1);
border-style: solid;
}

#s-873b1da0-825a-4820-949d-b384824d8abb {
  margin-left: auto;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
min-height: 50px;
background-attachment: scroll;
background-color: rgba(0, 52, 89, 1);
background-repeat: no-repeat;
}








#s-873b1da0-825a-4820-949d-b384824d8abb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-873b1da0-825a-4820-949d-b384824d8abb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d4e40f31-87d5-43d2-838e-d6ed4dbeeef7 {
  margin-bottom: 20px;
text-align: center;
}

#s-d4e40f31-87d5-43d2-838e-d6ed4dbeeef7 .shogun-heading-component h3 {
  color: rgba(111, 207, 151, 1);
  font-weight:  700 ;
  font-family: "Fahkwang";
  font-style:  normal ;
  font-size: 32px;
  line-height: 1.5em;
  
  
}



#s-7987fa4c-837e-46d5-a158-f4a2f251e0f5 {
  margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
max-width: 1440px;
}

@media (min-width: 0px) {
[id="s-7987fa4c-837e-46d5-a158-f4a2f251e0f5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7987fa4c-837e-46d5-a158-f4a2f251e0f5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 18.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-7987fa4c-837e-46d5-a158-f4a2f251e0f5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 18.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-7987fa4c-837e-46d5-a158-f4a2f251e0f5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 18.666666666666668px);
}

}

#s-2115e156-58e9-4022-ba80-2711515e8f5f {
  margin-bottom: 30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 6px;
background-color: rgba(250, 250, 250, 1);
}








#s-2115e156-58e9-4022-ba80-2711515e8f5f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2115e156-58e9-4022-ba80-2711515e8f5f.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-4f4669ff-7f6a-4cef-ab96-58a85ae3e3e6 {
  max-width: 378px;
aspect-ratio: 378/199;
text-align: center;
}





  #s-4f4669ff-7f6a-4cef-ab96-58a85ae3e3e6 img.shogun-image,
  #s-4f4669ff-7f6a-4cef-ab96-58a85ae3e3e6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4f4669ff-7f6a-4cef-ab96-58a85ae3e3e6 {
    width: 100%;
    height: auto;
  }



  #s-4f4669ff-7f6a-4cef-ab96-58a85ae3e3e6 img.shogun-image {
    

    
    
    
  }


#s-4f4669ff-7f6a-4cef-ab96-58a85ae3e3e6 .shogun-image-content {
  
    align-items: center;
  
}

#s-35232898-b823-4e18-8470-15b561c27a11 {
  padding-top: 25px;
padding-left: 28px;
padding-bottom: 25px;
padding-right: 28px;
min-height: 50px;
}








#s-35232898-b823-4e18-8470-15b561c27a11 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-35232898-b823-4e18-8470-15b561c27a11.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2713207b-a079-4746-a58d-c6c1304fc108 {
  margin-bottom: 20px;
text-align: left;
}

#s-2713207b-a079-4746-a58d-c6c1304fc108 .shogun-heading-component h4 {
  color: #000;
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-d9ccd7f0-d6b9-4e6c-937a-01f60d862315 {
  margin-bottom: 30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 4px;
background-color: rgba(250, 250, 250, 1);
}








#s-d9ccd7f0-d6b9-4e6c-937a-01f60d862315 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d9ccd7f0-d6b9-4e6c-937a-01f60d862315.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-d646a540-e170-4590-8a0b-8149805392cf {
  max-width: 378px;
aspect-ratio: 378/203;
text-align: center;
}





  #s-d646a540-e170-4590-8a0b-8149805392cf img.shogun-image,
  #s-d646a540-e170-4590-8a0b-8149805392cf .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d646a540-e170-4590-8a0b-8149805392cf {
    width: 100%;
    height: auto;
  }



  #s-d646a540-e170-4590-8a0b-8149805392cf img.shogun-image {
    

    
    
    
  }


#s-d646a540-e170-4590-8a0b-8149805392cf .shogun-image-content {
  
    align-items: center;
  
}

#s-f00d835c-704b-4a56-89ed-16b8e4ec0ca4 {
  padding-top: 25px;
padding-left: 28px;
padding-bottom: 25px;
padding-right: 28px;
min-height: 50px;
}








#s-f00d835c-704b-4a56-89ed-16b8e4ec0ca4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f00d835c-704b-4a56-89ed-16b8e4ec0ca4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3bde1c34-026a-4e15-9c2a-2b36a487a9c5 {
  margin-bottom: 20px;
text-align: left;
}

#s-3bde1c34-026a-4e15-9c2a-2b36a487a9c5 .shogun-heading-component h4 {
  color: rgba(10, 10, 10, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-d8552952-d3cd-4cac-a2e2-04a9b5f40471 {
  margin-bottom: 30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 4px;
background-color: rgba(250, 250, 250, 1);
}








#s-d8552952-d3cd-4cac-a2e2-04a9b5f40471 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d8552952-d3cd-4cac-a2e2-04a9b5f40471.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-b66659fd-02f7-4542-8c6b-3e77fc6fb406 {
  max-width: 378px;
aspect-ratio: 378/199;
text-align: center;
}





  #s-b66659fd-02f7-4542-8c6b-3e77fc6fb406 img.shogun-image,
  #s-b66659fd-02f7-4542-8c6b-3e77fc6fb406 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b66659fd-02f7-4542-8c6b-3e77fc6fb406 {
    width: 100%;
    height: auto;
  }



  #s-b66659fd-02f7-4542-8c6b-3e77fc6fb406 img.shogun-image {
    

    
    
    
  }


#s-b66659fd-02f7-4542-8c6b-3e77fc6fb406 .shogun-image-content {
  
    align-items: center;
  
}

#s-641c4a73-54c3-40e0-bb55-c97372e9b3be {
  padding-top: 25px;
padding-left: 28px;
padding-bottom: 25px;
padding-right: 28px;
min-height: 50px;
}








#s-641c4a73-54c3-40e0-bb55-c97372e9b3be > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-641c4a73-54c3-40e0-bb55-c97372e9b3be.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2f457e73-d1c4-4418-912f-c44f0afaac8c {
  padding-top: 0px;
padding-bottom: 20px;
text-align: left;
}

#s-2f457e73-d1c4-4418-912f-c44f0afaac8c .shogun-heading-component h4 {
  color: rgba(10, 10, 10, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 17px;
  
  
  text-align: left;
}



#s-2780e7d6-5fe7-45c0-9672-69a6df71db05 {
  padding-top: 80px;
padding-bottom: 80px;
min-height: 50px;
background-color: rgba(250, 250, 250, 1);
}








#s-2780e7d6-5fe7-45c0-9672-69a6df71db05 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2780e7d6-5fe7-45c0-9672-69a6df71db05.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-df0b8921-f557-49dc-a754-a91700994f20 {
  margin-bottom: 40px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-df0b8921-f557-49dc-a754-a91700994f20 .shogun-heading-component h3 {
  color: rgba(14, 91, 219, 1);
  font-weight:  700 ;
  font-family: "Fahkwang";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-a4b8ef7f-db12-436e-a481-55bb2249cafa {
  margin-left: auto;
margin-right: auto;
padding-top: 30px;
padding-left: 20px;
padding-bottom: 30px;
padding-right: 20px;
min-height: 50px;
max-width: 1090px;
}

#s-a4b8ef7f-db12-436e-a481-55bb2249cafa {
  background-image: url();
}








#s-a4b8ef7f-db12-436e-a481-55bb2249cafa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a4b8ef7f-db12-436e-a481-55bb2249cafa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-04905274-5bca-43ec-a60e-248287514e3e {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-04905274-5bca-43ec-a60e-248287514e3e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 8.5px);
}

}

@media (min-width: 768px) {
[id="s-04905274-5bca-43ec-a60e-248287514e3e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 12.75px);
}

}

@media (min-width: 992px) {
[id="s-04905274-5bca-43ec-a60e-248287514e3e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 12.75px);
}

}

@media (min-width: 1200px) {
[id="s-04905274-5bca-43ec-a60e-248287514e3e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 12.75px);
}

}

#s-a75b52b0-3559-4615-a0aa-7aa122cad463 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
padding-top: 30px;
padding-bottom: 10px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(14, 91, 219, 1);
border-style: solid;
border-radius: 6px;
min-height: 50px;
max-width: 260px;
background-color: rgba(255, 255, 255, 1);
}








#s-a75b52b0-3559-4615-a0aa-7aa122cad463 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a75b52b0-3559-4615-a0aa-7aa122cad463.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2b661d8d-9167-4b40-b841-cd9ce27b50b1 {
  margin-bottom: 10px;
text-align: center;
}







  #s-2b661d8d-9167-4b40-b841-cd9ce27b50b1 img.shogun-image {
    

    
    
    
  }


#s-2b661d8d-9167-4b40-b841-cd9ce27b50b1 .shogun-image-content {
  
    align-items: center;
  
}

#s-68535a0f-9115-41b8-a562-6ce7790e0652 {
  margin-top: 10px;
margin-bottom: 0px;
}

#s-fa94fce0-fb1e-435f-89a8-6d06a78a638c {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
padding-top: 30px;
padding-bottom: 10px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(14, 91, 219, 1);
border-style: solid;
border-radius: 6px;
min-height: 50px;
max-width: 260px;
background-color: rgba(255, 255, 255, 1);
}








#s-fa94fce0-fb1e-435f-89a8-6d06a78a638c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fa94fce0-fb1e-435f-89a8-6d06a78a638c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0b230ede-5652-4d9b-81b1-f2312b7a5da4 {
  margin-bottom: 10px;
text-align: center;
}







  #s-0b230ede-5652-4d9b-81b1-f2312b7a5da4 img.shogun-image {
    

    
    
    
  }


#s-0b230ede-5652-4d9b-81b1-f2312b7a5da4 .shogun-image-content {
  
    align-items: center;
  
}

#s-e51a9843-f199-4222-883f-768180b86256 {
  margin-top: 10px;
margin-bottom: 0px;
}

#s-ae44eddb-8e01-4699-a09f-98210ccb369b {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
padding-top: 30px;
padding-bottom: 10px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(14, 91, 219, 1);
border-style: solid;
border-radius: 6px;
min-height: 50px;
max-width: 260px;
background-color: rgba(255, 255, 255, 1);
}








#s-ae44eddb-8e01-4699-a09f-98210ccb369b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ae44eddb-8e01-4699-a09f-98210ccb369b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6801a336-aa17-40b3-bd7d-745eacb5004f {
  margin-bottom: 10px;
text-align: center;
}







  #s-6801a336-aa17-40b3-bd7d-745eacb5004f img.shogun-image {
    

    
    
    
  }


#s-6801a336-aa17-40b3-bd7d-745eacb5004f .shogun-image-content {
  
    align-items: center;
  
}

#s-d1ae4808-f1ed-45cf-8c90-7f6bfe319bea {
  margin-top: 10px;
}

#s-a5bf2732-2c69-4be2-9b92-fb24d0fc44fa {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
padding-top: 30px;
padding-bottom: 10px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(14, 91, 219, 1);
border-style: solid;
border-radius: 6px;
min-height: 50px;
max-width: 260px;
background-color: rgba(255, 255, 255, 1);
}








#s-a5bf2732-2c69-4be2-9b92-fb24d0fc44fa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a5bf2732-2c69-4be2-9b92-fb24d0fc44fa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-adea1d5e-d409-4a33-9b57-7d48cda86669 {
  margin-top: 0px;
margin-bottom: 10px;
text-align: center;
}







  #s-adea1d5e-d409-4a33-9b57-7d48cda86669 img.shogun-image {
    

    
    
    
  }


#s-adea1d5e-d409-4a33-9b57-7d48cda86669 .shogun-image-content {
  
    align-items: center;
  
}

#s-3701d31c-a2bc-4280-894f-fb7fc8c2bedd {
  margin-top: 10px;
margin-bottom: 0px;
}

#s-80796ec3-1eb0-4262-b760-ce498dbf302c {
  margin-top: 40px;
margin-bottom: 0px;
}

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