.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-2e1cabc4-4928-4d4d-9881-01031b2d0c1f {
  background-repeat: no-repeat;
background-size: cover;
min-height: 350px;
background-position: center center;
}

#s-2e1cabc4-4928-4d4d-9881-01031b2d0c1f {
  background-image: url(https://i.shgcdn.com/4f8ee8ef-9a68-4d7f-ab85-824de384a834/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-2e1cabc4-4928-4d4d-9881-01031b2d0c1f > .shg-box-overlay {
  background-color: rgba(9, 9, 9, 1);
  opacity: 0.6;
}#s-2e1cabc4-4928-4d4d-9881-01031b2d0c1f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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;
}

#s-60ecc434-8433-4cd2-b958-479acf4359e3 {
  text-align: center;
}







  img.s-60ecc434-8433-4cd2-b958-479acf4359e3.shogun-image {
    
    
  }


.s-60ecc434-8433-4cd2-b958-479acf4359e3 .shogun-image-content {
  
    align-items: center;
  
}

.s-60ecc434-8433-4cd2-b958-479acf4359e3.shg-align-container {
  text-align: center
}

.s-60ecc434-8433-4cd2-b958-479acf4359e3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60ecc434-8433-4cd2-b958-479acf4359e3.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-60ecc434-8433-4cd2-b958-479acf4359e3.shogun-image {
    
    
  }


.s-60ecc434-8433-4cd2-b958-479acf4359e3 .shogun-image-content {
  
    align-items: center;
  
}

.s-60ecc434-8433-4cd2-b958-479acf4359e3.shg-align-container {
  text-align: center
}

.s-60ecc434-8433-4cd2-b958-479acf4359e3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60ecc434-8433-4cd2-b958-479acf4359e3.shogun-image {
  box-sizing: border-box;
}


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





  img.s-60ecc434-8433-4cd2-b958-479acf4359e3.shogun-image {
    
    
  }


.s-60ecc434-8433-4cd2-b958-479acf4359e3 .shogun-image-content {
  
    align-items: center;
  
}

.s-60ecc434-8433-4cd2-b958-479acf4359e3.shg-align-container {
  text-align: center
}

.s-60ecc434-8433-4cd2-b958-479acf4359e3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60ecc434-8433-4cd2-b958-479acf4359e3.shogun-image {
  box-sizing: border-box;
}


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





  img.s-60ecc434-8433-4cd2-b958-479acf4359e3.shogun-image {
    
    
  }


.s-60ecc434-8433-4cd2-b958-479acf4359e3 .shogun-image-content {
  
    align-items: center;
  
}

.s-60ecc434-8433-4cd2-b958-479acf4359e3.shg-align-container {
  text-align: center
}

.s-60ecc434-8433-4cd2-b958-479acf4359e3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60ecc434-8433-4cd2-b958-479acf4359e3.shogun-image {
  box-sizing: border-box;
}


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





  img.s-60ecc434-8433-4cd2-b958-479acf4359e3.shogun-image {
    
    
  }


.s-60ecc434-8433-4cd2-b958-479acf4359e3 .shogun-image-content {
  
    align-items: center;
  
}

.s-60ecc434-8433-4cd2-b958-479acf4359e3.shg-align-container {
  text-align: center
}

.s-60ecc434-8433-4cd2-b958-479acf4359e3.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-60ecc434-8433-4cd2-b958-479acf4359e3.shogun-image {
  box-sizing: border-box;
}


}
.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-2fd417eb-f8e3-4dbb-9562-f10ce24ee1ba {
  margin-left: 0%;
margin-right: 0%;
padding-left: 10%;
padding-right: 10%;
}
@media (min-width: 768px) and (max-width: 991px){#s-2fd417eb-f8e3-4dbb-9562-f10ce24ee1ba {
  padding-left: 5%;
padding-right: 5%;
}
}@media (max-width: 767px){#s-2fd417eb-f8e3-4dbb-9562-f10ce24ee1ba {
  padding-left: 20px;
padding-right: 20px;
}
}
@media (min-width: 0px) {
[id="s-2fd417eb-f8e3-4dbb-9562-f10ce24ee1ba"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2fd417eb-f8e3-4dbb-9562-f10ce24ee1ba"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-2fd417eb-f8e3-4dbb-9562-f10ce24ee1ba"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2fd417eb-f8e3-4dbb-9562-f10ce24ee1ba"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-2fd417eb-f8e3-4dbb-9562-f10ce24ee1ba"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2fd417eb-f8e3-4dbb-9562-f10ce24ee1ba"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-2fd417eb-f8e3-4dbb-9562-f10ce24ee1ba"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: #000;
  font-family: ;
  text-transform: none;
  font-weight: normal;
  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-909491c7-44cd-4024-bf67-6d6f9ba9ee3c {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 6px;
text-align: center;
}

#s-909491c7-44cd-4024-bf67-6d6f9ba9ee3c .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: "Poppins";
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-8012e222-99af-45ed-8da0-291204f15fdb {
  border-style: solid;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(241, 241, 249, 1);
border-style: solid;
max-width: 376px;
text-align: center;
}

#s-8012e222-99af-45ed-8da0-291204f15fdb .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 22px;
  line-height: 1.25em;
  letter-spacing: ;
  text-align: center;
}



#s-7d4f4371-2b13-4764-89b6-3a084adfee9e {
  background-repeat: no-repeat;
background-size: cover;
margin-bottom: 0%;
padding-top: 2%;
padding-bottom: 6%;
min-height: 700px;
background-position: center center;
}

#s-7d4f4371-2b13-4764-89b6-3a084adfee9e {
  background-image: url(https://i.shgcdn.com/f0a29db8-3a9f-4d3a-b05f-01bbef76d17b/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-7d4f4371-2b13-4764-89b6-3a084adfee9e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7d4f4371-2b13-4764-89b6-3a084adfee9e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b355b93a-b715-425c-a530-0dfd65a71ba5 {
  min-height: 100px;
}








#s-b355b93a-b715-425c-a530-0dfd65a71ba5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b355b93a-b715-425c-a530-0dfd65a71ba5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-beb0bf77-58c4-4e11-95ae-4e058929b49e {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 20px;
padding-bottom: 20px;
max-width: 1000px;
text-align: center;
}

#s-beb0bf77-58c4-4e11-95ae-4e058929b49e .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  300 ;
  font-family: "Poppins";
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-ba90772f-2e3f-454e-8666-3dba8d63f568 {
  margin-top: 30px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
max-width: 1100px;
}

@media (min-width: 0px) {
[id="s-ba90772f-2e3f-454e-8666-3dba8d63f568"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ba90772f-2e3f-454e-8666-3dba8d63f568"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-ba90772f-2e3f-454e-8666-3dba8d63f568"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-ba90772f-2e3f-454e-8666-3dba8d63f568"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

#s-16d26d3c-e87c-43a1-96d1-e95182e766d5 {
  
}

#s-16d26d3c-e87c-43a1-96d1-e95182e766d5 {
  background-image: url();
}








#s-16d26d3c-e87c-43a1-96d1-e95182e766d5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0.4;
}#s-16d26d3c-e87c-43a1-96d1-e95182e766d5.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.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;
}
#s-1284c066-910e-4afc-a4c2-76732a759525 {
  text-align: center;
}







  #s-1284c066-910e-4afc-a4c2-76732a759525 img.shogun-image {
    

    
    
    
  }


#s-1284c066-910e-4afc-a4c2-76732a759525 .shogun-image-content {
  
    align-items: center;
  
}

#s-d7353427-b5de-4118-930b-2dbb1b3fddf9 {
  min-height: 180px;
}

#s-d7353427-b5de-4118-930b-2dbb1b3fddf9 {
  background-image: url();
}








#s-d7353427-b5de-4118-930b-2dbb1b3fddf9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0.1;
}#s-d7353427-b5de-4118-930b-2dbb1b3fddf9.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-56268be3-dc61-4930-9777-a40f037a51a1 {
  margin-top: 20px;
padding-left: 10%;
padding-right: 10%;
text-align: center;
}

#s-56268be3-dc61-4930-9777-a40f037a51a1 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



.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: #000;
  font-family: ;
  font-weight: normal;
}

.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: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  color: #000;
  font-family: inherit;
}

.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;
}

#s-18485c0f-07f1-4e82-8a58-bafa296a6b86 {
  padding-left: 10%;
padding-right: 10%;
}

.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.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-9ca5357c-8668-4a6e-93cd-092ba91ab2dc {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 6px;
padding-left: 34px;
padding-bottom: 6px;
padding-right: 34px;
border-radius: 5px;
background-color: rgba(252, 99, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-9ca5357c-8668-4a6e-93cd-092ba91ab2dc:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9ca5357c-8668-4a6e-93cd-092ba91ab2dc:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-9ca5357c-8668-4a6e-93cd-092ba91ab2dc-btn-wrapper {
    text-align: center;
  }


#s-9ca5357c-8668-4a6e-93cd-092ba91ab2dc.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-9ca5357c-8668-4a6e-93cd-092ba91ab2dc-btn-wrapper {
    text-align: center;
  }


#s-9ca5357c-8668-4a6e-93cd-092ba91ab2dc.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9ca5357c-8668-4a6e-93cd-092ba91ab2dc-btn-wrapper {
    text-align: center;
  }


#s-9ca5357c-8668-4a6e-93cd-092ba91ab2dc.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9ca5357c-8668-4a6e-93cd-092ba91ab2dc-btn-wrapper {
    text-align: center;
  }


#s-9ca5357c-8668-4a6e-93cd-092ba91ab2dc.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-9ca5357c-8668-4a6e-93cd-092ba91ab2dc-btn-wrapper {
    text-align: center;
  }


#s-9ca5357c-8668-4a6e-93cd-092ba91ab2dc.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-9980b928-2cc9-480c-882d-ef2f575a6d88 {
  
}

#s-9980b928-2cc9-480c-882d-ef2f575a6d88 {
  background-image: url();
}








#s-9980b928-2cc9-480c-882d-ef2f575a6d88 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0.4;
}#s-9980b928-2cc9-480c-882d-ef2f575a6d88.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-52fafba4-fc95-45ac-b58b-8043d988bf26 {
  text-align: center;
}







  #s-52fafba4-fc95-45ac-b58b-8043d988bf26 img.shogun-image {
    

    
    
    
  }


#s-52fafba4-fc95-45ac-b58b-8043d988bf26 .shogun-image-content {
  
    align-items: center;
  
}

#s-718fe5de-bc36-48b3-98cf-2261b04af360 {
  min-height: 180px;
}

#s-718fe5de-bc36-48b3-98cf-2261b04af360 {
  background-image: url();
}








#s-718fe5de-bc36-48b3-98cf-2261b04af360 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0.1;
}#s-718fe5de-bc36-48b3-98cf-2261b04af360.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-941f0b5f-703b-4dca-b58a-f206da89bb26 {
  margin-top: 20px;
padding-left: 10%;
padding-right: 10%;
text-align: center;
}

#s-941f0b5f-703b-4dca-b58a-f206da89bb26 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-bc7ac0ae-0419-4a78-a786-767627b48284 {
  padding-left: 10%;
padding-right: 10%;
}

#s-94833d27-d011-4109-b9a8-5a2cba07240b {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 6px;
padding-left: 34px;
padding-bottom: 6px;
padding-right: 34px;
border-radius: 5px;
background-color: rgba(252, 99, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-94833d27-d011-4109-b9a8-5a2cba07240b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-94833d27-d011-4109-b9a8-5a2cba07240b:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-94833d27-d011-4109-b9a8-5a2cba07240b-btn-wrapper {
    text-align: center;
  }


#s-94833d27-d011-4109-b9a8-5a2cba07240b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-94833d27-d011-4109-b9a8-5a2cba07240b-btn-wrapper {
    text-align: center;
  }


#s-94833d27-d011-4109-b9a8-5a2cba07240b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-94833d27-d011-4109-b9a8-5a2cba07240b-btn-wrapper {
    text-align: center;
  }


#s-94833d27-d011-4109-b9a8-5a2cba07240b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-94833d27-d011-4109-b9a8-5a2cba07240b-btn-wrapper {
    text-align: center;
  }


#s-94833d27-d011-4109-b9a8-5a2cba07240b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-94833d27-d011-4109-b9a8-5a2cba07240b-btn-wrapper {
    text-align: center;
  }


#s-94833d27-d011-4109-b9a8-5a2cba07240b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-7687fcb1-f3e5-44b8-a6ce-7e6f3071d871 {
  
}

#s-7687fcb1-f3e5-44b8-a6ce-7e6f3071d871 {
  background-image: url();
}








#s-7687fcb1-f3e5-44b8-a6ce-7e6f3071d871 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0.4;
}#s-7687fcb1-f3e5-44b8-a6ce-7e6f3071d871.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-c2a865dd-01b5-4e14-8a16-a9f6af798774 {
  text-align: center;
}







  #s-c2a865dd-01b5-4e14-8a16-a9f6af798774 img.shogun-image {
    

    
    
    
  }


#s-c2a865dd-01b5-4e14-8a16-a9f6af798774 .shogun-image-content {
  
    align-items: center;
  
}

#s-4836e867-f938-4eb2-ba88-a953d405d45b {
  min-height: 180px;
}

#s-4836e867-f938-4eb2-ba88-a953d405d45b {
  background-image: url();
}








#s-4836e867-f938-4eb2-ba88-a953d405d45b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0.1;
}#s-4836e867-f938-4eb2-ba88-a953d405d45b.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-129925ce-d8f4-47a3-b29f-43cda0adc50a {
  margin-top: 20px;
padding-left: 10%;
padding-right: 10%;
text-align: center;
}

#s-129925ce-d8f4-47a3-b29f-43cda0adc50a .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-e46679a0-d3ea-4981-94c7-0f05bee36abf {
  padding-left: 10%;
padding-right: 10%;
}

#s-05b3e179-5f6f-4c1b-8775-fa479354352a {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 6px;
padding-left: 34px;
padding-bottom: 6px;
padding-right: 34px;
border-radius: 5px;
background-color: rgba(252, 99, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-05b3e179-5f6f-4c1b-8775-fa479354352a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-05b3e179-5f6f-4c1b-8775-fa479354352a:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-05b3e179-5f6f-4c1b-8775-fa479354352a-btn-wrapper {
    text-align: center;
  }


#s-05b3e179-5f6f-4c1b-8775-fa479354352a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-05b3e179-5f6f-4c1b-8775-fa479354352a-btn-wrapper {
    text-align: center;
  }


#s-05b3e179-5f6f-4c1b-8775-fa479354352a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-05b3e179-5f6f-4c1b-8775-fa479354352a-btn-wrapper {
    text-align: center;
  }


#s-05b3e179-5f6f-4c1b-8775-fa479354352a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-05b3e179-5f6f-4c1b-8775-fa479354352a-btn-wrapper {
    text-align: center;
  }


#s-05b3e179-5f6f-4c1b-8775-fa479354352a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-05b3e179-5f6f-4c1b-8775-fa479354352a-btn-wrapper {
    text-align: center;
  }


#s-05b3e179-5f6f-4c1b-8775-fa479354352a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-dfea5321-23a0-47a1-aaee-06e595684f07 {
  margin-top: 30px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
max-width: 1100px;
}

@media (min-width: 0px) {
[id="s-dfea5321-23a0-47a1-aaee-06e595684f07"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-dfea5321-23a0-47a1-aaee-06e595684f07"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-dfea5321-23a0-47a1-aaee-06e595684f07"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-dfea5321-23a0-47a1-aaee-06e595684f07"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

#s-a956211d-fb7c-47d8-9b3b-75b2be476c94 {
  
}

#s-a956211d-fb7c-47d8-9b3b-75b2be476c94 {
  background-image: url();
}








#s-a956211d-fb7c-47d8-9b3b-75b2be476c94 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0.4;
}#s-a956211d-fb7c-47d8-9b3b-75b2be476c94.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-bdbdb314-c10a-46ad-8297-37a2b13f0f79 {
  text-align: center;
}







  #s-bdbdb314-c10a-46ad-8297-37a2b13f0f79 img.shogun-image {
    

    
    
    
  }


#s-bdbdb314-c10a-46ad-8297-37a2b13f0f79 .shogun-image-content {
  
    align-items: center;
  
}

#s-f86b8bb7-3d1a-4be8-abc6-43ec09c50d5c {
  min-height: 180px;
}

#s-f86b8bb7-3d1a-4be8-abc6-43ec09c50d5c {
  background-image: url();
}








#s-f86b8bb7-3d1a-4be8-abc6-43ec09c50d5c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0.1;
}#s-f86b8bb7-3d1a-4be8-abc6-43ec09c50d5c.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-6cf41ef8-956e-4ab2-8dd6-369292d0c060 {
  margin-top: 20px;
padding-left: 10%;
padding-right: 10%;
text-align: center;
}

#s-6cf41ef8-956e-4ab2-8dd6-369292d0c060 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-8396ec9e-8a35-4632-8d12-30278181bf03 {
  padding-left: 10%;
padding-right: 10%;
}

#s-42b636f6-3045-4749-856f-0d6b50b448df {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 6px;
padding-left: 34px;
padding-bottom: 6px;
padding-right: 34px;
border-radius: 5px;
background-color: rgba(252, 99, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-42b636f6-3045-4749-856f-0d6b50b448df:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-42b636f6-3045-4749-856f-0d6b50b448df:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-42b636f6-3045-4749-856f-0d6b50b448df-btn-wrapper {
    text-align: center;
  }


#s-42b636f6-3045-4749-856f-0d6b50b448df.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-42b636f6-3045-4749-856f-0d6b50b448df-btn-wrapper {
    text-align: center;
  }


#s-42b636f6-3045-4749-856f-0d6b50b448df.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-42b636f6-3045-4749-856f-0d6b50b448df-btn-wrapper {
    text-align: center;
  }


#s-42b636f6-3045-4749-856f-0d6b50b448df.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-42b636f6-3045-4749-856f-0d6b50b448df-btn-wrapper {
    text-align: center;
  }


#s-42b636f6-3045-4749-856f-0d6b50b448df.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-42b636f6-3045-4749-856f-0d6b50b448df-btn-wrapper {
    text-align: center;
  }


#s-42b636f6-3045-4749-856f-0d6b50b448df.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-2f8dbf0d-9a5d-4881-8d94-3fc7bdca869b {
  
}

#s-2f8dbf0d-9a5d-4881-8d94-3fc7bdca869b {
  background-image: url();
}








#s-2f8dbf0d-9a5d-4881-8d94-3fc7bdca869b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0.4;
}#s-2f8dbf0d-9a5d-4881-8d94-3fc7bdca869b.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-9d27ff46-c12c-4c77-a3f0-5336991ae7e2 {
  text-align: center;
}







  #s-9d27ff46-c12c-4c77-a3f0-5336991ae7e2 img.shogun-image {
    

    
    
    
  }


#s-9d27ff46-c12c-4c77-a3f0-5336991ae7e2 .shogun-image-content {
  
    align-items: center;
  
}

#s-96af6b90-ff1a-4d38-b664-a599f734502b {
  min-height: 180px;
}

#s-96af6b90-ff1a-4d38-b664-a599f734502b {
  background-image: url();
}








#s-96af6b90-ff1a-4d38-b664-a599f734502b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0.1;
}#s-96af6b90-ff1a-4d38-b664-a599f734502b.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-e6e8b60f-eda3-466b-956f-687064232c64 {
  margin-top: 20px;
padding-left: 10%;
padding-right: 10%;
text-align: center;
}

#s-e6e8b60f-eda3-466b-956f-687064232c64 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-8cda651b-98fc-4e9f-b702-05b88edde2b4 {
  padding-left: 10%;
padding-right: 10%;
}

#s-95645e9c-a536-4147-ad86-6960b2e742bb {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 6px;
padding-left: 34px;
padding-bottom: 6px;
padding-right: 34px;
border-radius: 5px;
background-color: rgba(252, 99, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-95645e9c-a536-4147-ad86-6960b2e742bb:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-95645e9c-a536-4147-ad86-6960b2e742bb:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-95645e9c-a536-4147-ad86-6960b2e742bb-btn-wrapper {
    text-align: center;
  }


#s-95645e9c-a536-4147-ad86-6960b2e742bb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-95645e9c-a536-4147-ad86-6960b2e742bb-btn-wrapper {
    text-align: center;
  }


#s-95645e9c-a536-4147-ad86-6960b2e742bb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-95645e9c-a536-4147-ad86-6960b2e742bb-btn-wrapper {
    text-align: center;
  }


#s-95645e9c-a536-4147-ad86-6960b2e742bb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-95645e9c-a536-4147-ad86-6960b2e742bb-btn-wrapper {
    text-align: center;
  }


#s-95645e9c-a536-4147-ad86-6960b2e742bb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-95645e9c-a536-4147-ad86-6960b2e742bb-btn-wrapper {
    text-align: center;
  }


#s-95645e9c-a536-4147-ad86-6960b2e742bb.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-feb1f4f3-a068-478f-afa6-30c7ed789e4a {
  
}

#s-feb1f4f3-a068-478f-afa6-30c7ed789e4a {
  background-image: url();
}








#s-feb1f4f3-a068-478f-afa6-30c7ed789e4a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0.4;
}#s-feb1f4f3-a068-478f-afa6-30c7ed789e4a.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-0699bfdf-7799-4bfd-b16d-2eec13cbb474 {
  text-align: center;
}







  #s-0699bfdf-7799-4bfd-b16d-2eec13cbb474 img.shogun-image {
    

    
    
    
  }


#s-0699bfdf-7799-4bfd-b16d-2eec13cbb474 .shogun-image-content {
  
    align-items: center;
  
}

#s-f17f399a-3944-4bfd-9ddd-ab33bb40d432 {
  min-height: 180px;
}

#s-f17f399a-3944-4bfd-9ddd-ab33bb40d432 {
  background-image: url();
}








#s-f17f399a-3944-4bfd-9ddd-ab33bb40d432 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0.1;
}#s-f17f399a-3944-4bfd-9ddd-ab33bb40d432.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-ce7164d9-7cc9-4165-b20a-6fe9649ea066 {
  margin-top: 20px;
padding-left: 10%;
padding-right: 10%;
text-align: center;
}

#s-ce7164d9-7cc9-4165-b20a-6fe9649ea066 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-75b4ae9a-af8a-45b6-8535-3d3a7d1cb769 {
  padding-left: 10%;
padding-right: 10%;
}

#s-464be5c3-c853-46ef-bd52-9d6abb927a8b {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 6px;
padding-left: 34px;
padding-bottom: 6px;
padding-right: 34px;
border-radius: 5px;
background-color: rgba(252, 99, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-464be5c3-c853-46ef-bd52-9d6abb927a8b:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-464be5c3-c853-46ef-bd52-9d6abb927a8b:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-464be5c3-c853-46ef-bd52-9d6abb927a8b-btn-wrapper {
    text-align: center;
  }


#s-464be5c3-c853-46ef-bd52-9d6abb927a8b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-464be5c3-c853-46ef-bd52-9d6abb927a8b-btn-wrapper {
    text-align: center;
  }


#s-464be5c3-c853-46ef-bd52-9d6abb927a8b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-464be5c3-c853-46ef-bd52-9d6abb927a8b-btn-wrapper {
    text-align: center;
  }


#s-464be5c3-c853-46ef-bd52-9d6abb927a8b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-464be5c3-c853-46ef-bd52-9d6abb927a8b-btn-wrapper {
    text-align: center;
  }


#s-464be5c3-c853-46ef-bd52-9d6abb927a8b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-464be5c3-c853-46ef-bd52-9d6abb927a8b-btn-wrapper {
    text-align: center;
  }


#s-464be5c3-c853-46ef-bd52-9d6abb927a8b.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-3ece12a5-8fe5-4638-850d-049b80c60f15 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(252, 99, 0, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-3ece12a5-8fe5-4638-850d-049b80c60f15:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-3ece12a5-8fe5-4638-850d-049b80c60f15:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-3ece12a5-8fe5-4638-850d-049b80c60f15-btn-wrapper {
    text-align: center;
  }


#s-3ece12a5-8fe5-4638-850d-049b80c60f15.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-3ece12a5-8fe5-4638-850d-049b80c60f15-btn-wrapper {
    text-align: center;
  }


#s-3ece12a5-8fe5-4638-850d-049b80c60f15.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3ece12a5-8fe5-4638-850d-049b80c60f15-btn-wrapper {
    text-align: center;
  }


#s-3ece12a5-8fe5-4638-850d-049b80c60f15.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3ece12a5-8fe5-4638-850d-049b80c60f15-btn-wrapper {
    text-align: center;
  }


#s-3ece12a5-8fe5-4638-850d-049b80c60f15.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-3ece12a5-8fe5-4638-850d-049b80c60f15-btn-wrapper {
    text-align: center;
  }


#s-3ece12a5-8fe5-4638-850d-049b80c60f15.shg-btn {
  color: #ffffff;
  font-size: 15px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-3c9c030b-b655-4610-b614-8676e1f5e4d2 {
  padding-top: 0px;
padding-bottom: 50px;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}








#s-3c9c030b-b655-4610-b614-8676e1f5e4d2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3c9c030b-b655-4610-b614-8676e1f5e4d2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6973ccf8-7d8a-4582-97dc-d48800570563 {
  margin-left: auto;
margin-right: auto;
padding-left: 3%;
padding-right: 3%;
max-width: 1100px;
}

@media (min-width: 0px) {
[id="s-6973ccf8-7d8a-4582-97dc-d48800570563"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6973ccf8-7d8a-4582-97dc-d48800570563"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6973ccf8-7d8a-4582-97dc-d48800570563"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6973ccf8-7d8a-4582-97dc-d48800570563"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-403788d8-c1e3-4b62-825e-c76c360d3385 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-403788d8-c1e3-4b62-825e-c76c360d3385 .shogun-heading-component h2 {
  color: rgba(241, 241, 249, 1);
  font-weight:   ;
  font-family: "Poppins";
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-e89c695f-f68c-4024-a064-3442583cf310 {
  text-align: center;
}







  #s-e89c695f-f68c-4024-a064-3442583cf310 img.shogun-image {
    

    
    
    
  }


#s-e89c695f-f68c-4024-a064-3442583cf310 .shogun-image-content {
  
    align-items: center;
  
}

#s-46274b4c-2ec7-451c-b77c-def53e3f46f6 {
  margin-top: 30px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-left: 3%;
padding-right: 3%;
max-width: 1100px;
}

@media (min-width: 0px) {
[id="s-46274b4c-2ec7-451c-b77c-def53e3f46f6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-46274b4c-2ec7-451c-b77c-def53e3f46f6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-46274b4c-2ec7-451c-b77c-def53e3f46f6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-46274b4c-2ec7-451c-b77c-def53e3f46f6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-6ad5387e-90ae-4a21-80eb-28240603330f {
  text-align: center;
}







  #s-6ad5387e-90ae-4a21-80eb-28240603330f img.shogun-image {
    

    
    
    
  }


#s-6ad5387e-90ae-4a21-80eb-28240603330f .shogun-image-content {
  
    align-items: center;
  
}

#s-0940da78-c2bb-430d-9218-e1e0fdbd6bd5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-0940da78-c2bb-430d-9218-e1e0fdbd6bd5 .shogun-heading-component h2 {
  color: rgba(241, 241, 249, 1);
  font-weight:   ;
  font-family: "Poppins";
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-e6f73227-836b-479f-875c-8e6759f935ea {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(252, 99, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-e6f73227-836b-479f-875c-8e6759f935ea:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-e6f73227-836b-479f-875c-8e6759f935ea:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-e6f73227-836b-479f-875c-8e6759f935ea-btn-wrapper {
    text-align: left;
  }


#s-e6f73227-836b-479f-875c-8e6759f935ea.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e6f73227-836b-479f-875c-8e6759f935ea-btn-wrapper {
    text-align: left;
  }


#s-e6f73227-836b-479f-875c-8e6759f935ea.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e6f73227-836b-479f-875c-8e6759f935ea-btn-wrapper {
    text-align: left;
  }


#s-e6f73227-836b-479f-875c-8e6759f935ea.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e6f73227-836b-479f-875c-8e6759f935ea-btn-wrapper {
    text-align: left;
  }


#s-e6f73227-836b-479f-875c-8e6759f935ea.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e6f73227-836b-479f-875c-8e6759f935ea-btn-wrapper {
    text-align: left;
  }


#s-e6f73227-836b-479f-875c-8e6759f935ea.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-4380e634-09e8-412f-ad03-a24fc0afa2c1 {
  min-height: 50px;
}








#s-4380e634-09e8-412f-ad03-a24fc0afa2c1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4380e634-09e8-412f-ad03-a24fc0afa2c1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5ecbd9a9-1fa0-4674-a729-3af9037f9544 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 150px;
background-position: center center;
}








#s-5ecbd9a9-1fa0-4674-a729-3af9037f9544 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5ecbd9a9-1fa0-4674-a729-3af9037f9544.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-df5ef421-a3bc-4ab2-a5af-d02a8848499a {
  margin-top: 5px;
margin-left: auto;
margin-bottom: 5px;
margin-right: auto;
max-width: 1000px;
}

@media (min-width: 0px) {
[id="s-df5ef421-a3bc-4ab2-a5af-d02a8848499a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-df5ef421-a3bc-4ab2-a5af-d02a8848499a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-df5ef421-a3bc-4ab2-a5af-d02a8848499a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-df5ef421-a3bc-4ab2-a5af-d02a8848499a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-f0d303c6-bf8b-4327-8a87-f45d9fda8561 {
  margin-left: 3%;
margin-right: 3%;
padding-top: 10px;
padding-left: 2%;
padding-bottom: 10px;
padding-right: 2%;
max-width: 500px;
text-align: left;
}

#s-f0d303c6-bf8b-4327-8a87-f45d9fda8561 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: "Poppins";
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-aea223b3-9c0b-41c9-84d6-70e47d3cfe59 {
  margin-top: 20px;
margin-left: 3%;
margin-bottom: 20px;
margin-right: 3%;
padding-left: 2%;
padding-right: 2%;
max-width: 500px;
}

#s-7a6261a5-8c31-46f0-ab4c-f0795a14456e {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
max-width: 500px;
}

#s-7a6261a5-8c31-46f0-ab4c-f0795a14456e .shogun-form-box label.shogun-form-label {
  display: flex;
  font-weight:  normal;
  color: #000;
  
  
  
  
  
  
  padding-top: 5px;
  padding-bottom: 5px;
  
  
}

#s-7a6261a5-8c31-46f0-ab4c-f0795a14456e .shogun-form-success-msg {
  visibility: hidden;
  display: flex;
  align-items: center;
  
  
  color: #008000;
  
  
  
  
  
}

#s-7a6261a5-8c31-46f0-ab4c-f0795a14456e .shogun-form-success-msg > svg {
  margin-right: 4px;
  stroke: #008000;
}

#s-7a6261a5-8c31-46f0-ab4c-f0795a14456e .shogun-form-error-msg-container, #s-7a6261a5-8c31-46f0-ab4c-f0795a14456e .shogun-form-field-error-msg-container {
  display: none;
}

#s-7a6261a5-8c31-46f0-ab4c-f0795a14456e .shogun-form-error-msg {
  
  
  color: #ff0000;
  
  
  
  
  
}

#s-7a6261a5-8c31-46f0-ab4c-f0795a14456e .shogun-form-field-error-msg > svg {
  margin-right: 4px;
  stroke: #ff0000;
}

@media (min-width: 0px) {
[id="s-ddc6c5b7-2fa1-4cbb-8d91-c856a933f683"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ddc6c5b7-2fa1-4cbb-8d91-c856a933f683"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ddc6c5b7-2fa1-4cbb-8d91-c856a933f683"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ddc6c5b7-2fa1-4cbb-8d91-c856a933f683"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

.shogun-form-text-input-field {
  width: 100%;
}

.shogun-form-text-input-field:focus {
  outline: none;
}

textarea.shogun-form-text-input-field {
  resize: none;
  overflow: hidden;
  min-height: 70px !important;
}

#s-41d6c2db-8173-47a3-8161-1f105ce7a23a  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  
  
  color: #000;
  
  
  
  
}

#s-41d6c2db-8173-47a3-8161-1f105ce7a23a  .shogun-form-text-input-field::placeholder {
  
  
  color: #000;
  
  
  
  
}


#s-41d6c2db-8173-47a3-8161-1f105ce7a23a .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-41d6c2db-8173-47a3-8161-1f105ce7a23a .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


#s-35ba8cad-1692-4186-a268-02e29990694f  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  
  
  color: #000;
  
  
  
  
}

#s-35ba8cad-1692-4186-a268-02e29990694f  .shogun-form-text-input-field::placeholder {
  
  
  color: #000;
  
  
  
  
}


#s-35ba8cad-1692-4186-a268-02e29990694f .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-35ba8cad-1692-4186-a268-02e29990694f .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


#s-2beee218-79de-476a-94f8-fe1c2e0e461b  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  
  
  color: #000;
  
  
  
  
}

#s-2beee218-79de-476a-94f8-fe1c2e0e461b  .shogun-form-text-input-field::placeholder {
  
  
  color: #000;
  
  
  
  
}


#s-2beee218-79de-476a-94f8-fe1c2e0e461b .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-2beee218-79de-476a-94f8-fe1c2e0e461b .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


#s-76d09379-cfe8-41c2-8f21-118ace4fb88c  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  
  
  color: #000;
  
  
  
  
}

#s-76d09379-cfe8-41c2-8f21-118ace4fb88c  .shogun-form-text-input-field::placeholder {
  
  
  color: #000;
  
  
  
  
}


#s-76d09379-cfe8-41c2-8f21-118ace4fb88c .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-76d09379-cfe8-41c2-8f21-118ace4fb88c .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


#s-836cc882-50cc-406f-b391-286cde8df5cb  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  
  
  color: #000;
  
  
  
  
}

#s-836cc882-50cc-406f-b391-286cde8df5cb  .shogun-form-text-input-field::placeholder {
  
  
  color: #000;
  
  
  
  
}


#s-836cc882-50cc-406f-b391-286cde8df5cb .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-836cc882-50cc-406f-b391-286cde8df5cb .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


#s-5289cb6a-21ff-4396-8b68-346a78973db2  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  
  
  color: #000;
  
  
  
  
}

#s-5289cb6a-21ff-4396-8b68-346a78973db2  .shogun-form-text-input-field::placeholder {
  
  
  color: #000;
  
  
  
  
}


#s-5289cb6a-21ff-4396-8b68-346a78973db2 .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-5289cb6a-21ff-4396-8b68-346a78973db2 .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


.shogun-form-box-submit {
  border: 0;
  font-size: 1em;
  line-height: 1.8;
}

.shogun-form-box-submit:focus {
  outline: none;
}

.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-b3b25474-8862-4585-b3ad-6e6caee7e1bd {
  margin-top: 5px;
margin-bottom: 5px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
color: #FFFFFF;
background-color: rgba(252, 99, 0, 1);
text-align: left;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-b3b25474-8862-4585-b3ad-6e6caee7e1bd:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b3b25474-8862-4585-b3ad-6e6caee7e1bd:active {background-color: #000000 !important;
text-decoration: none !important;}
#s-b3b25474-8862-4585-b3ad-6e6caee7e1bd[disabled],
#s-b3b25474-8862-4585-b3ad-6e6caee7e1bd[disabled]:hover,
#s-b3b25474-8862-4585-b3ad-6e6caee7e1bd[disabled]:focus {
  background-color: #D7D5E2 !important;
}

#s-b3b25474-8862-4585-b3ad-6e6caee7e1bd {
  display:  inline-block ;
  width:  auto ;
}


#s-68d9f532-a5fa-434e-afa8-20f483d59f6e {
  background-repeat: no-repeat;
background-size: cover;
min-height: 250px;
background-position: center center;
}








#s-68d9f532-a5fa-434e-afa8-20f483d59f6e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-68d9f532-a5fa-434e-afa8-20f483d59f6e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9ace85e8-c3f5-42ae-9186-4e2db66ee07a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9ace85e8-c3f5-42ae-9186-4e2db66ee07a .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: "Poppins";
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  
}



#s-006ff27d-0ff0-47c0-9386-4a6172d33780 {
  margin-left: auto;
margin-right: auto;
max-width: 800px;
}

#s-97456dff-a27e-4f10-952e-93cc8225e0bf {
  box-shadow:1px 1px 1px 1px rgba(255, 255, 255, 0.07);
border-style: solid;
margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 8px;
padding-bottom: 8px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 0px;
max-width: 160px;
text-align: center;
background-color: rgba(0, 0, 0, 0);
font-size: 16px;
color: rgba(255, 255, 255, 1);
text-decoration: none;
hover-type: image;
opacity: 1;
}
#s-97456dff-a27e-4f10-952e-93cc8225e0bf:hover {border-style: solid !important;
border-top-width: 1px !important;
border-left-width: 1px !important;
border-bottom-width: 1px !important;
border-right-width: 1px !important;
border-color: rgba(255, 255, 255, 1) !important;
border-radius: 0px !important;
opacity: 1 !important;
background-color: rgba(255, 255, 255, 0) !important;
color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-97456dff-a27e-4f10-952e-93cc8225e0bf:active {box-shadow:    rgba(0, 201, 148, 0) !important;
border-style: solid !important;
border-color: rgba(255, 255, 255, 1) !important;
opacity: 1 !important;
background-color: rgba(255, 255, 255, 0) !important;
color: rgba(252, 99, 0, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (min-width: 1200px){#s-97456dff-a27e-4f10-952e-93cc8225e0bf {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-97456dff-a27e-4f10-952e-93cc8225e0bf {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-97456dff-a27e-4f10-952e-93cc8225e0bf {
  
}
}@media (max-width: 767px){#s-97456dff-a27e-4f10-952e-93cc8225e0bf {
  
}
}

  #s-97456dff-a27e-4f10-952e-93cc8225e0bf-btn-wrapper {
    text-align: center;
  }


#s-97456dff-a27e-4f10-952e-93cc8225e0bf.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-97456dff-a27e-4f10-952e-93cc8225e0bf-btn-wrapper {
    text-align: center;
  }


#s-97456dff-a27e-4f10-952e-93cc8225e0bf.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-97456dff-a27e-4f10-952e-93cc8225e0bf-btn-wrapper {
    text-align: center;
  }


#s-97456dff-a27e-4f10-952e-93cc8225e0bf.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-97456dff-a27e-4f10-952e-93cc8225e0bf-btn-wrapper {
    text-align: center;
  }


#s-97456dff-a27e-4f10-952e-93cc8225e0bf.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-97456dff-a27e-4f10-952e-93cc8225e0bf-btn-wrapper {
    text-align: center;
  }


#s-97456dff-a27e-4f10-952e-93cc8225e0bf.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  block ;
}
}
/*
  $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}
