.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-29b5ca00-dc42-417b-848e-467b57b63abb {
  min-height: 50px;
}
@media (min-width: 1200px){#s-29b5ca00-dc42-417b-848e-467b57b63abb {
  display: none;
}
#s-29b5ca00-dc42-417b-848e-467b57b63abb, #wrap-s-29b5ca00-dc42-417b-848e-467b57b63abb { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-29b5ca00-dc42-417b-848e-467b57b63abb {
  display: none;
}
#s-29b5ca00-dc42-417b-848e-467b57b63abb, #wrap-s-29b5ca00-dc42-417b-848e-467b57b63abb { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-29b5ca00-dc42-417b-848e-467b57b63abb {
  display: none;
}
#s-29b5ca00-dc42-417b-848e-467b57b63abb, #wrap-s-29b5ca00-dc42-417b-848e-467b57b63abb { display:none !important; }}@media (max-width: 767px){#s-29b5ca00-dc42-417b-848e-467b57b63abb {
  display: none;
}
#s-29b5ca00-dc42-417b-848e-467b57b63abb, #wrap-s-29b5ca00-dc42-417b-848e-467b57b63abb { display:none !important; }}







#s-29b5ca00-dc42-417b-848e-467b57b63abb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-29b5ca00-dc42-417b-848e-467b57b63abb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-9d65e6c8-2ce1-467e-899c-47f14a4ddf45 {
  text-align: center;
}
@media (min-width: 1200px){#s-9d65e6c8-2ce1-467e-899c-47f14a4ddf45 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9d65e6c8-2ce1-467e-899c-47f14a4ddf45 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-9d65e6c8-2ce1-467e-899c-47f14a4ddf45 {
  
}
}@media (max-width: 767px){#s-9d65e6c8-2ce1-467e-899c-47f14a4ddf45 {
  
}
}






  #s-9d65e6c8-2ce1-467e-899c-47f14a4ddf45 img.shogun-image {
    

    
    
    
  }


#s-9d65e6c8-2ce1-467e-899c-47f14a4ddf45 .shogun-image-content {
  
    align-items: center;
  
}

#s-a14f7097-dc5b-4700-a6fc-5751ea8d229a {
  min-height: 50px;
}








#s-a14f7097-dc5b-4700-a6fc-5751ea8d229a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a14f7097-dc5b-4700-a6fc-5751ea8d229a.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-0e737b61-4feb-4df7-90aa-257d0ae6821f {
  background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
min-height: 465px;
background-position: center center;
}

#s-0e737b61-4feb-4df7-90aa-257d0ae6821f {
  background-image: url(https://i.shgcdn.com/f49be92e-f0a5-4579-abaf-eca168c5dc4c/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-0e737b61-4feb-4df7-90aa-257d0ae6821f > .shg-box-overlay {
  background-color: rgba(120, 164, 201, 1);
  opacity: 0.5;
}#s-0e737b61-4feb-4df7-90aa-257d0ae6821f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-36c8212a-1b8f-42fc-a677-0bcb9ee52b0a {
  padding-top: 10px;
padding-bottom: 10px;
min-height: 50px;
max-width: 1000px;
}
@media (min-width: 1200px){#s-36c8212a-1b8f-42fc-a677-0bcb9ee52b0a {
  margin-left: auto;
margin-right: auto;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-36c8212a-1b8f-42fc-a677-0bcb9ee52b0a {
  margin-left: auto;
margin-right: auto;
}
}@media (min-width: 768px) and (max-width: 991px){#s-36c8212a-1b8f-42fc-a677-0bcb9ee52b0a {
  margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-36c8212a-1b8f-42fc-a677-0bcb9ee52b0a {
  margin-left: 20px;
margin-right: 20px;
padding-top: 0px;
padding-bottom: 0px;
}
}







#s-36c8212a-1b8f-42fc-a677-0bcb9ee52b0a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-36c8212a-1b8f-42fc-a677-0bcb9ee52b0a.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;
}

@media (max-width: 767px){#s-8d155d14-96f0-4b0c-ba0b-af7957f2b2cc {
  margin-top: 25px;
margin-bottom: 25px;
}
}
@media (min-width: 0px) {
[id="s-8d155d14-96f0-4b0c-ba0b-af7957f2b2cc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8d155d14-96f0-4b0c-ba0b-af7957f2b2cc"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-8d155d14-96f0-4b0c-ba0b-af7957f2b2cc"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-8d155d14-96f0-4b0c-ba0b-af7957f2b2cc"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-8d155d14-96f0-4b0c-ba0b-af7957f2b2cc"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-8d155d14-96f0-4b0c-ba0b-af7957f2b2cc"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-8d155d14-96f0-4b0c-ba0b-af7957f2b2cc"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-3a494c5b-f355-4c4c-ba42-b291b4c598d0 {
  min-height: 40px;
}
@media (min-width: 768px) and (max-width: 991px){#s-3a494c5b-f355-4c4c-ba42-b291b4c598d0 {
  display: none;
}
#s-3a494c5b-f355-4c4c-ba42-b291b4c598d0, #wrap-s-3a494c5b-f355-4c4c-ba42-b291b4c598d0 { display:none !important; }}@media (max-width: 767px){#s-3a494c5b-f355-4c4c-ba42-b291b4c598d0 {
  display: none;
}
#s-3a494c5b-f355-4c4c-ba42-b291b4c598d0, #wrap-s-3a494c5b-f355-4c4c-ba42-b291b4c598d0 { display:none !important; }}







#s-3a494c5b-f355-4c4c-ba42-b291b4c598d0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3a494c5b-f355-4c4c-ba42-b291b4c598d0.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-bfa0ff6f-8f47-4196-964f-78c5e4d17871 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-bfa0ff6f-8f47-4196-964f-78c5e4d17871 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-bfa0ff6f-8f47-4196-964f-78c5e4d17871 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-bfa0ff6f-8f47-4196-964f-78c5e4d17871 {
  margin-top: 25px;
}
}
#s-bfa0ff6f-8f47-4196-964f-78c5e4d17871 .shogun-heading-component h1 {
  color: rgba(28, 25, 75, 1);
  font-weight:  normal ;
  font-family: "Chelsea Market";
  font-style:  normal ;
  font-size: 33px;
  line-height: 1.5em;
  
  text-align: center;
}


@media (min-width: 768px) and (max-width: 991px){#s-bfa0ff6f-8f47-4196-964f-78c5e4d17871 .shogun-heading-component h1 {
  color: rgba(28, 25, 75, 1);
  font-weight:  normal ;
  font-family: "Chelsea Market";
  font-style:  normal ;
  font-size: 33px;
  line-height: 1.3em;
  
  text-align: center;
}


}@media (max-width: 767px){#s-bfa0ff6f-8f47-4196-964f-78c5e4d17871 .shogun-heading-component h1 {
  color: rgba(28, 25, 75, 1);
  font-weight:  normal ;
  font-family: "Chelsea Market";
  font-style:  normal ;
  font-size: 27px;
  line-height: 1.2em;
  
  text-align: center;
}


}
#s-3e2a86ef-a530-420a-b183-de75cefe3379 {
  margin-top: 10px;
margin-left: 10px;
text-align: center;
}







  #s-3e2a86ef-a530-420a-b183-de75cefe3379 img.shogun-image {
    

    
    
    
  }


#s-3e2a86ef-a530-420a-b183-de75cefe3379 .shogun-image-content {
  
    align-items: center;
  
}

#s-93d72fec-59e9-4e6e-8d05-015abbf20d90 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-93d72fec-59e9-4e6e-8d05-015abbf20d90 {
  margin-top: -10px;
margin-bottom: -10px;
}
}
#s-93d72fec-59e9-4e6e-8d05-015abbf20d90 .shogun-heading-component h1 {
  color: rgba(28, 25, 75, 1);
  font-weight:  normal ;
  font-family: "Chelsea Market";
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.3em;
  
  
}


@media (max-width: 767px){#s-93d72fec-59e9-4e6e-8d05-015abbf20d90 .shogun-heading-component h1 {
  color: rgba(28, 25, 75, 1);
  font-weight:  normal ;
  font-family: "Chelsea Market";
  font-style:  normal ;
  font-size: 17px;
  line-height: 1.4em;
  
  
}


}
#s-a1e1cb84-f0b8-4f84-898a-9dd7887d74ca {
  min-height: 40px;
}
@media (min-width: 768px) and (max-width: 991px){#s-a1e1cb84-f0b8-4f84-898a-9dd7887d74ca {
  display: none;
}
#s-a1e1cb84-f0b8-4f84-898a-9dd7887d74ca, #wrap-s-a1e1cb84-f0b8-4f84-898a-9dd7887d74ca { display:none !important; }}@media (max-width: 767px){#s-a1e1cb84-f0b8-4f84-898a-9dd7887d74ca {
  display: none;
}
#s-a1e1cb84-f0b8-4f84-898a-9dd7887d74ca, #wrap-s-a1e1cb84-f0b8-4f84-898a-9dd7887d74ca { display:none !important; }}







#s-a1e1cb84-f0b8-4f84-898a-9dd7887d74ca > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a1e1cb84-f0b8-4f84-898a-9dd7887d74ca.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f4ccc97e-d4ae-4427-bad3-cc271e2912f2 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: center center;
}








#s-f4ccc97e-d4ae-4427-bad3-cc271e2912f2 > .shg-box-overlay {
  background-color: rgba(216, 177, 68, 1);
  opacity: 0.3;
}#s-f4ccc97e-d4ae-4427-bad3-cc271e2912f2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e9be53da-44b5-44a2-a279-a42385927179 {
  min-height: 50px;
max-width: 976px;
}
@media (min-width: 1200px){#s-e9be53da-44b5-44a2-a279-a42385927179 {
  margin-left: auto;
margin-right: auto;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e9be53da-44b5-44a2-a279-a42385927179 {
  margin-left: auto;
margin-right: auto;
}
}@media (min-width: 768px) and (max-width: 991px){#s-e9be53da-44b5-44a2-a279-a42385927179 {
  margin-left: 20px;
margin-right: 20px;
max-width: 768px;
}
}@media (max-width: 767px){#s-e9be53da-44b5-44a2-a279-a42385927179 {
  margin-left: 20px;
margin-right: 20px;
}
}







#s-e9be53da-44b5-44a2-a279-a42385927179 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e9be53da-44b5-44a2-a279-a42385927179.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-15b0ba76-cc07-4cfb-b042-7fd81cf0ac6c {
  min-height: 65px;
}








#s-15b0ba76-cc07-4cfb-b042-7fd81cf0ac6c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-15b0ba76-cc07-4cfb-b042-7fd81cf0ac6c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3d4fde96-11e6-453d-85b1-12a25a7fb928 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-3d4fde96-11e6-453d-85b1-12a25a7fb928 {
  margin-top: -10px;
margin-bottom: -10px;
}
}
#s-3d4fde96-11e6-453d-85b1-12a25a7fb928 .shogun-heading-component h1 {
  color: rgba(28, 25, 75, 1);
  font-weight:  normal ;
  font-family: "Chelsea Market";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}



#s-b509a394-738c-499d-8d2c-822abcf544ae {
  margin-top: -5px;
margin-bottom: -5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b509a394-738c-499d-8d2c-822abcf544ae .shogun-heading-component h1 {
  color: rgba(28, 25, 75, 1);
  font-weight:  normal ;
  font-family: "Chelsea Market";
  font-style:  normal ;
  font-size: 37px;
  line-height: 1em;
  
  
}



#s-f1378ee8-4732-4ef4-bd94-32e9ed4791a3 {
  min-height: 40px;
}








#s-f1378ee8-4732-4ef4-bd94-32e9ed4791a3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f1378ee8-4732-4ef4-bd94-32e9ed4791a3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 991px){#s-650e59e9-9489-42c1-8e18-04829d59439f {
  margin-right: 35px;
}
}
@media (min-width: 0px) {
[id="s-650e59e9-9489-42c1-8e18-04829d59439f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-650e59e9-9489-42c1-8e18-04829d59439f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-650e59e9-9489-42c1-8e18-04829d59439f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-650e59e9-9489-42c1-8e18-04829d59439f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-650e59e9-9489-42c1-8e18-04829d59439f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-650e59e9-9489-42c1-8e18-04829d59439f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-650e59e9-9489-42c1-8e18-04829d59439f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

#s-a0bb8913-92b4-412a-a758-ff27da232fa7 {
  text-align: center;
}







  #s-a0bb8913-92b4-412a-a758-ff27da232fa7 img.shogun-image {
    

    
    
    
  }


#s-a0bb8913-92b4-412a-a758-ff27da232fa7 .shogun-image-content {
  
    align-items: 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: ;
  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-f9538f85-fe87-428f-9f86-63192a2e66f8 {
  padding-top: 10px;
}
@media (min-width: 1200px){#s-f9538f85-fe87-428f-9f86-63192a2e66f8 {
  margin-top: -5px;
margin-bottom: 5px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f9538f85-fe87-428f-9f86-63192a2e66f8 {
  margin-top: -5px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f9538f85-fe87-428f-9f86-63192a2e66f8 {
  margin-top: -5px;
margin-bottom: 5px;
}
}@media (max-width: 767px){#s-f9538f85-fe87-428f-9f86-63192a2e66f8 {
  margin-top: -5px;
}
}
#s-013b7e5a-db9b-46c0-80e2-a7b6f059cf45 {
  margin-top: 20px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-013b7e5a-db9b-46c0-80e2-a7b6f059cf45 {
  margin-right: 20px;
}
}
#s-3f1f7d85-338b-41da-9512-f2926b011988 {
  margin-top: 15px;
}

#s-bbfbc4c1-0f47-4567-9ca9-c4c9e1056612 {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-bbfbc4c1-0f47-4567-9ca9-c4c9e1056612"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bbfbc4c1-0f47-4567-9ca9-c4c9e1056612"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-bbfbc4c1-0f47-4567-9ca9-c4c9e1056612"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-bbfbc4c1-0f47-4567-9ca9-c4c9e1056612"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-bbfbc4c1-0f47-4567-9ca9-c4c9e1056612"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-bbfbc4c1-0f47-4567-9ca9-c4c9e1056612"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-bbfbc4c1-0f47-4567-9ca9-c4c9e1056612"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

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

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

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

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

#s-5b80d71f-4460-4aaa-9e47-a4749fa0be49 {
  min-height: 85px;
}








#s-5b80d71f-4460-4aaa-9e47-a4749fa0be49 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5b80d71f-4460-4aaa-9e47-a4749fa0be49.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fa551856-a6d8-4db5-97fc-3a1cbb1a66ec {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: center center;
}








#s-fa551856-a6d8-4db5-97fc-3a1cbb1a66ec > .shg-box-overlay {
  background-color: rgba(158, 161, 198, 1);
  opacity: 0.4;
}#s-fa551856-a6d8-4db5-97fc-3a1cbb1a66ec.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e3c5d3ff-f072-4d10-a881-04ae80d736c2 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 976px;
}








#s-e3c5d3ff-f072-4d10-a881-04ae80d736c2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e3c5d3ff-f072-4d10-a881-04ae80d736c2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e51ff195-368e-419c-81f7-4727de276e84 {
  min-height: 50px;
}








#s-e51ff195-368e-419c-81f7-4727de276e84 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e51ff195-368e-419c-81f7-4727de276e84.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 991px){#s-6a1691af-f3a8-4170-8565-80e49514abbc {
  margin-right: 35px;
}
}
@media (min-width: 0px) {
[id="s-6a1691af-f3a8-4170-8565-80e49514abbc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6a1691af-f3a8-4170-8565-80e49514abbc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-6a1691af-f3a8-4170-8565-80e49514abbc"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-6a1691af-f3a8-4170-8565-80e49514abbc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-6a1691af-f3a8-4170-8565-80e49514abbc"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-6a1691af-f3a8-4170-8565-80e49514abbc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-6a1691af-f3a8-4170-8565-80e49514abbc"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

#s-777ef856-52ec-465a-ad73-430653745022 {
  text-align: center;
}







  #s-777ef856-52ec-465a-ad73-430653745022 img.shogun-image {
    

    
    
    
  }


#s-777ef856-52ec-465a-ad73-430653745022 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 1200px){#s-fca5661d-88aa-4e3f-a2ac-00b7d4ad8d43 {
  margin-top: -5px;
margin-bottom: 5px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-fca5661d-88aa-4e3f-a2ac-00b7d4ad8d43 {
  margin-top: -5px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-fca5661d-88aa-4e3f-a2ac-00b7d4ad8d43 {
  margin-top: -5px;
margin-bottom: 5px;
}
}@media (max-width: 767px){#s-fca5661d-88aa-4e3f-a2ac-00b7d4ad8d43 {
  margin-top: -5px;
}
}
#s-03f9b040-88ab-4d2a-8827-22e1aaac7974 {
  margin-top: 20px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-03f9b040-88ab-4d2a-8827-22e1aaac7974 {
  margin-right: 20px;
}
}
#s-75522d30-6ea8-4a7b-97e6-39162334f3b5 {
  margin-top: 15px;
}

#s-0c0132bc-21fb-4322-abd5-20c96f745533 {
  margin-top: 20px;
}

@media (min-width: 0px) {
[id="s-0c0132bc-21fb-4322-abd5-20c96f745533"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0c0132bc-21fb-4322-abd5-20c96f745533"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-0c0132bc-21fb-4322-abd5-20c96f745533"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-0c0132bc-21fb-4322-abd5-20c96f745533"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-0c0132bc-21fb-4322-abd5-20c96f745533"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-0c0132bc-21fb-4322-abd5-20c96f745533"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-0c0132bc-21fb-4322-abd5-20c96f745533"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

}

#s-73a78b8f-fed8-462e-892b-d4544d0ec69b {
  min-height: 50px;
}








#s-73a78b8f-fed8-462e-892b-d4544d0ec69b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-73a78b8f-fed8-462e-892b-d4544d0ec69b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d0f6573c-7d4c-427d-85b0-0f5ccc9d7736 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: center center;
}








#s-d0f6573c-7d4c-427d-85b0-0f5ccc9d7736 > .shg-box-overlay {
  background-color: rgba(220, 158, 76, 1);
  opacity: 0.4;
}#s-d0f6573c-7d4c-427d-85b0-0f5ccc9d7736.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cd7e7a43-13d2-44bd-b7b2-ca00a3527ab0 {
  min-height: 50px;
max-width: 976px;
}
@media (min-width: 1200px){#s-cd7e7a43-13d2-44bd-b7b2-ca00a3527ab0 {
  margin-left: auto;
margin-right: auto;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-cd7e7a43-13d2-44bd-b7b2-ca00a3527ab0 {
  margin-left: auto;
margin-right: auto;
}
}@media (min-width: 768px) and (max-width: 991px){#s-cd7e7a43-13d2-44bd-b7b2-ca00a3527ab0 {
  margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-cd7e7a43-13d2-44bd-b7b2-ca00a3527ab0 {
  margin-left: 20px;
margin-right: 20px;
}
}







#s-cd7e7a43-13d2-44bd-b7b2-ca00a3527ab0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cd7e7a43-13d2-44bd-b7b2-ca00a3527ab0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-292be70f-2153-4c2f-8111-bb704da8567c {
  min-height: 65px;
}








#s-292be70f-2153-4c2f-8111-bb704da8567c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-292be70f-2153-4c2f-8111-bb704da8567c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2e07de7d-9685-466f-8227-a654fa34eea0 {
  min-height: 50px;
background-color: rgba(234, 181, 94, 0);
}








#s-2e07de7d-9685-466f-8227-a654fa34eea0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2e07de7d-9685-466f-8227-a654fa34eea0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 991px){#s-0b6dbf3d-cb7a-47e2-9985-92f8ca9f9bc7 {
  margin-left: 0px;
margin-right: 25px;
}
}
@media (min-width: 0px) {
[id="s-0b6dbf3d-cb7a-47e2-9985-92f8ca9f9bc7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0b6dbf3d-cb7a-47e2-9985-92f8ca9f9bc7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-0b6dbf3d-cb7a-47e2-9985-92f8ca9f9bc7"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-0b6dbf3d-cb7a-47e2-9985-92f8ca9f9bc7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-0b6dbf3d-cb7a-47e2-9985-92f8ca9f9bc7"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-0b6dbf3d-cb7a-47e2-9985-92f8ca9f9bc7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-0b6dbf3d-cb7a-47e2-9985-92f8ca9f9bc7"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

#s-11c150e8-20b6-45d1-bc0a-105c6aa87b8c {
  text-align: center;
}







  #s-11c150e8-20b6-45d1-bc0a-105c6aa87b8c img.shogun-image {
    

    
    
    
  }


#s-11c150e8-20b6-45d1-bc0a-105c6aa87b8c .shogun-image-content {
  
    align-items: center;
  
}

#s-e5ce0f6a-c81c-449b-a87b-f54b3446589a {
  margin-top: -10px;
}

#s-832adcbc-de74-4404-b009-e94e58d8b2f2 {
  margin-top: 20px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-832adcbc-de74-4404-b009-e94e58d8b2f2 {
  margin-right: 20px;
}
}@media (max-width: 767px){#s-832adcbc-de74-4404-b009-e94e58d8b2f2 {
  margin-top: 5px;
}
}
#s-a3d9cd55-03b2-46a6-b812-8d3fc37bfd8a {
  margin-top: 15px;
}
@media (max-width: 767px){#s-a3d9cd55-03b2-46a6-b812-8d3fc37bfd8a {
  margin-top: 10px;
}
}
#s-e7622a24-585e-4216-87ff-e36c421acae3 {
  min-height: 50px;
}








#s-e7622a24-585e-4216-87ff-e36c421acae3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e7622a24-585e-4216-87ff-e36c421acae3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-b312ce12-c4ad-48e8-af38-11d1f9ded6eb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b312ce12-c4ad-48e8-af38-11d1f9ded6eb"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-b312ce12-c4ad-48e8-af38-11d1f9ded6eb"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-b312ce12-c4ad-48e8-af38-11d1f9ded6eb"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-b312ce12-c4ad-48e8-af38-11d1f9ded6eb"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-b312ce12-c4ad-48e8-af38-11d1f9ded6eb"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-b312ce12-c4ad-48e8-af38-11d1f9ded6eb"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-dba8cf8a-430a-4f0c-b27a-a075f18ef58d {
  min-height: 60px;
}








#s-dba8cf8a-430a-4f0c-b27a-a075f18ef58d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dba8cf8a-430a-4f0c-b27a-a075f18ef58d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2293b455-c8a0-47bd-a531-0b757c6910f8 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: center center;
}








#s-2293b455-c8a0-47bd-a531-0b757c6910f8 > .shg-box-overlay {
  background-color: rgba(174, 183, 205, 1);
  opacity: 0.6;
}#s-2293b455-c8a0-47bd-a531-0b757c6910f8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-72ab40fa-26b2-45f3-9d9e-58084e908e37 {
  min-height: 50px;
max-width: 976px;
}
@media (min-width: 1200px){#s-72ab40fa-26b2-45f3-9d9e-58084e908e37 {
  margin-left: auto;
margin-right: auto;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-72ab40fa-26b2-45f3-9d9e-58084e908e37 {
  margin-left: auto;
margin-right: auto;
}
}@media (min-width: 768px) and (max-width: 991px){#s-72ab40fa-26b2-45f3-9d9e-58084e908e37 {
  margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-72ab40fa-26b2-45f3-9d9e-58084e908e37 {
  margin-left: 20px;
margin-right: 20px;
}
}







#s-72ab40fa-26b2-45f3-9d9e-58084e908e37 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-72ab40fa-26b2-45f3-9d9e-58084e908e37.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-53968034-fad3-493a-abdf-5e24200b4b9e {
  min-height: 65px;
}








#s-53968034-fad3-493a-abdf-5e24200b4b9e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-53968034-fad3-493a-abdf-5e24200b4b9e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6786b33c-6068-44bd-a02a-96bbee7b949c {
  margin-right: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-6786b33c-6068-44bd-a02a-96bbee7b949c {
  margin-right: 25px;
}
}
@media (min-width: 0px) {
[id="s-6786b33c-6068-44bd-a02a-96bbee7b949c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6786b33c-6068-44bd-a02a-96bbee7b949c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-6786b33c-6068-44bd-a02a-96bbee7b949c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-6786b33c-6068-44bd-a02a-96bbee7b949c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-6786b33c-6068-44bd-a02a-96bbee7b949c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-6786b33c-6068-44bd-a02a-96bbee7b949c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-6786b33c-6068-44bd-a02a-96bbee7b949c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

#s-d4114279-2ef6-40cf-8a84-a5764aff109f {
  text-align: center;
}







  #s-d4114279-2ef6-40cf-8a84-a5764aff109f img.shogun-image {
    

    
    
    
  }


#s-d4114279-2ef6-40cf-8a84-a5764aff109f .shogun-image-content {
  
    align-items: center;
  
}

#s-540c06b7-0914-468b-8986-03e555445c36 {
  margin-top: -10px;
}

#s-49aef0c3-ef58-4aed-af92-7580b24cce78 {
  margin-top: 20px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-49aef0c3-ef58-4aed-af92-7580b24cce78 {
  margin-right: 20px;
}
}@media (max-width: 767px){#s-49aef0c3-ef58-4aed-af92-7580b24cce78 {
  margin-top: 5px;
}
}
#s-a995b58b-e162-4052-8897-28a971437fd7 {
  margin-top: 15px;
}

#s-4322614e-04aa-4386-b11f-d35f19d8068c {
  min-height: 50px;
}








#s-4322614e-04aa-4386-b11f-d35f19d8068c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4322614e-04aa-4386-b11f-d35f19d8068c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-944e1249-05c3-4fe6-acc2-fb22bbad86d6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-944e1249-05c3-4fe6-acc2-fb22bbad86d6"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-944e1249-05c3-4fe6-acc2-fb22bbad86d6"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-944e1249-05c3-4fe6-acc2-fb22bbad86d6"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-944e1249-05c3-4fe6-acc2-fb22bbad86d6"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-944e1249-05c3-4fe6-acc2-fb22bbad86d6"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-944e1249-05c3-4fe6-acc2-fb22bbad86d6"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

}

#s-de0754a8-2e24-4d36-bf41-d8eac6a1e0a2 {
  min-height: 65px;
}








#s-de0754a8-2e24-4d36-bf41-d8eac6a1e0a2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-de0754a8-2e24-4d36-bf41-d8eac6a1e0a2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8d0b5aa9-f4e2-4e30-8a27-aa118ca3c58a {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: center center;
}








#s-8d0b5aa9-f4e2-4e30-8a27-aa118ca3c58a > .shg-box-overlay {
  background-color: rgba(164, 216, 237, 1);
  opacity: 0.5;
}#s-8d0b5aa9-f4e2-4e30-8a27-aa118ca3c58a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-507812db-362e-4776-b3bd-9219bcf72b02 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 976px;
}
@media (max-width: 767px){#s-507812db-362e-4776-b3bd-9219bcf72b02 {
  margin-left: 20px;
margin-right: 20px;
}
}







#s-507812db-362e-4776-b3bd-9219bcf72b02 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-507812db-362e-4776-b3bd-9219bcf72b02.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-21469d8d-54f2-486e-826c-413fc8284a94 {
  min-height: 65px;
}








#s-21469d8d-54f2-486e-826c-413fc8284a94 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-21469d8d-54f2-486e-826c-413fc8284a94.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1a1ece8c-d6de-48bc-b299-cacd11ece4e8 {
  min-height: 50px;
background-color: rgba(164, 216, 237, 0.01);
}








#s-1a1ece8c-d6de-48bc-b299-cacd11ece4e8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1a1ece8c-d6de-48bc-b299-cacd11ece4e8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 991px){#s-94370bae-ba13-4f5c-9004-dee8a3304925 {
  margin-left: 20px;
margin-right: 35px;
}
}
@media (min-width: 0px) {
[id="s-94370bae-ba13-4f5c-9004-dee8a3304925"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-94370bae-ba13-4f5c-9004-dee8a3304925"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-94370bae-ba13-4f5c-9004-dee8a3304925"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-94370bae-ba13-4f5c-9004-dee8a3304925"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-94370bae-ba13-4f5c-9004-dee8a3304925"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-94370bae-ba13-4f5c-9004-dee8a3304925"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-94370bae-ba13-4f5c-9004-dee8a3304925"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

#s-62b81ca7-f622-40bc-a5b7-2b67285be1cc {
  text-align: center;
}







  #s-62b81ca7-f622-40bc-a5b7-2b67285be1cc img.shogun-image {
    

    
    
    
  }


#s-62b81ca7-f622-40bc-a5b7-2b67285be1cc .shogun-image-content {
  
    align-items: center;
  
}

#s-2e9a4a94-d8a8-4d3a-a8d6-2510175a0a82 {
  margin-top: -10px;
}

#s-280a1cb1-6a3d-4a8d-a30c-145e2a02c979 {
  margin-top: 20px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-280a1cb1-6a3d-4a8d-a30c-145e2a02c979 {
  margin-right: 20px;
}
}@media (max-width: 767px){#s-280a1cb1-6a3d-4a8d-a30c-145e2a02c979 {
  margin-top: 5px;
}
}
#s-be6c0594-8d88-4f82-bb97-8784e326f3b7 {
  margin-top: 20px;
}

@media (min-width: 768px) and (max-width: 991px){#s-80a463ac-228d-4ca9-83ac-66c9c3387074 {
  margin-right: 35px;
}
}
@media (min-width: 0px) {
[id="s-80a463ac-228d-4ca9-83ac-66c9c3387074"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-80a463ac-228d-4ca9-83ac-66c9c3387074"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-80a463ac-228d-4ca9-83ac-66c9c3387074"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-80a463ac-228d-4ca9-83ac-66c9c3387074"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-80a463ac-228d-4ca9-83ac-66c9c3387074"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-80a463ac-228d-4ca9-83ac-66c9c3387074"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-80a463ac-228d-4ca9-83ac-66c9c3387074"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

#s-2208a247-c8cd-4aeb-b733-d4416ddbfdec {
  text-align: center;
}
@media (max-width: 767px){#s-2208a247-c8cd-4aeb-b733-d4416ddbfdec {
  margin-top: 25px;
}
}






  #s-2208a247-c8cd-4aeb-b733-d4416ddbfdec img.shogun-image {
    

    
    
    
  }


#s-2208a247-c8cd-4aeb-b733-d4416ddbfdec .shogun-image-content {
  
    align-items: center;
  
}

#s-4345b2e3-30a5-4041-8880-809ef7b2bd3f {
  margin-top: -10px;
}
@media (min-width: 1200px){#s-4345b2e3-30a5-4041-8880-809ef7b2bd3f {
  margin-top: -20px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4345b2e3-30a5-4041-8880-809ef7b2bd3f {
  margin-top: -20px;
}
}
#s-9cbf934b-882c-4724-bb2d-14a2f804b810 {
  margin-top: 20px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-9cbf934b-882c-4724-bb2d-14a2f804b810 {
  margin-right: 20px;
}
}@media (max-width: 767px){#s-9cbf934b-882c-4724-bb2d-14a2f804b810 {
  margin-top: 0px;
}
}
#s-86dcdc4e-6de0-4ed8-8602-90923ce0e7ea {
  margin-top: 20px;
}

#s-b8ec9e0d-fc17-4d03-8c3b-b5fc22ec16c0 {
  padding-top: 20px;
}
@media (min-width: 768px) and (max-width: 991px){#s-b8ec9e0d-fc17-4d03-8c3b-b5fc22ec16c0 {
  padding-top: 25px;
}
}
@media (min-width: 0px) {
[id="s-b8ec9e0d-fc17-4d03-8c3b-b5fc22ec16c0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b8ec9e0d-fc17-4d03-8c3b-b5fc22ec16c0"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 13.333333333333334px);
}

[id="s-b8ec9e0d-fc17-4d03-8c3b-b5fc22ec16c0"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 13.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-b8ec9e0d-fc17-4d03-8c3b-b5fc22ec16c0"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 13.333333333333334px);
}

[id="s-b8ec9e0d-fc17-4d03-8c3b-b5fc22ec16c0"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 13.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-b8ec9e0d-fc17-4d03-8c3b-b5fc22ec16c0"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 13.333333333333334px);
}

[id="s-b8ec9e0d-fc17-4d03-8c3b-b5fc22ec16c0"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 13.333333333333334px);
}

}

#s-2d4d1ec5-f87e-494b-8c64-4939e70c17e8 {
  min-height: 50px;
}
@media (max-width: 767px){#s-2d4d1ec5-f87e-494b-8c64-4939e70c17e8 {
  display: none;
}
#s-2d4d1ec5-f87e-494b-8c64-4939e70c17e8, #wrap-s-2d4d1ec5-f87e-494b-8c64-4939e70c17e8 { display:none !important; }}







#s-2d4d1ec5-f87e-494b-8c64-4939e70c17e8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2d4d1ec5-f87e-494b-8c64-4939e70c17e8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-63320bb5-3b7f-4892-8eba-7f2010e4f7ef {
  padding-top: 20px;
}
@media (min-width: 768px) and (max-width: 991px){#s-63320bb5-3b7f-4892-8eba-7f2010e4f7ef {
  padding-top: 25px;
}
}
@media (min-width: 0px) {
[id="s-63320bb5-3b7f-4892-8eba-7f2010e4f7ef"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-63320bb5-3b7f-4892-8eba-7f2010e4f7ef"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 13.333333333333334px);
}

[id="s-63320bb5-3b7f-4892-8eba-7f2010e4f7ef"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 13.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-63320bb5-3b7f-4892-8eba-7f2010e4f7ef"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 13.333333333333334px);
}

[id="s-63320bb5-3b7f-4892-8eba-7f2010e4f7ef"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 13.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-63320bb5-3b7f-4892-8eba-7f2010e4f7ef"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 13.333333333333334px);
}

[id="s-63320bb5-3b7f-4892-8eba-7f2010e4f7ef"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 13.333333333333334px);
}

}

#s-c8bd082d-5cdd-479a-8526-6fb37f60a51b {
  margin-top: 0px;
}

#s-056b5cc9-47c2-4c00-afac-dfd70a693528 {
  min-height: 50px;
}
@media (max-width: 767px){#s-056b5cc9-47c2-4c00-afac-dfd70a693528 {
  display: none;
}
#s-056b5cc9-47c2-4c00-afac-dfd70a693528, #wrap-s-056b5cc9-47c2-4c00-afac-dfd70a693528 { display:none !important; }}







#s-056b5cc9-47c2-4c00-afac-dfd70a693528 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-056b5cc9-47c2-4c00-afac-dfd70a693528.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8747bdd0-f3fa-4cac-899a-370f370c52be {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: center center;
}








#s-8747bdd0-f3fa-4cac-899a-370f370c52be > .shg-box-overlay {
  background-color: rgba(121, 195, 186, 1);
  opacity: 0.4;
}#s-8747bdd0-f3fa-4cac-899a-370f370c52be.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f75f21c7-9039-4a66-9b6f-27ecb4ee55fc {
  min-height: 50px;
max-width: 976px;
}
@media (min-width: 1200px){#s-f75f21c7-9039-4a66-9b6f-27ecb4ee55fc {
  margin-left: auto;
margin-right: auto;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f75f21c7-9039-4a66-9b6f-27ecb4ee55fc {
  margin-left: auto;
margin-right: auto;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f75f21c7-9039-4a66-9b6f-27ecb4ee55fc {
  margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-f75f21c7-9039-4a66-9b6f-27ecb4ee55fc {
  margin-left: 20px;
margin-right: 20px;
}
}







#s-f75f21c7-9039-4a66-9b6f-27ecb4ee55fc > .shg-box-overlay {
  background-color: rgba(121, 195, 186, 1);
  opacity: 0;
}#s-f75f21c7-9039-4a66-9b6f-27ecb4ee55fc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-436a9b1e-7bf5-46c8-bd6d-f135d60490a3 {
  min-height: 65px;
}








#s-436a9b1e-7bf5-46c8-bd6d-f135d60490a3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-436a9b1e-7bf5-46c8-bd6d-f135d60490a3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1d1958e6-ecbe-4601-8374-22aa3c9636e0 {
  min-height: 50px;
background-color: rgba(121, 195, 186, 0);
}








#s-1d1958e6-ecbe-4601-8374-22aa3c9636e0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1d1958e6-ecbe-4601-8374-22aa3c9636e0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 991px){#s-32d97e35-b959-4920-b93e-60a900034582 {
  margin-right: 25px;
}
}
@media (min-width: 0px) {
[id="s-32d97e35-b959-4920-b93e-60a900034582"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-32d97e35-b959-4920-b93e-60a900034582"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-32d97e35-b959-4920-b93e-60a900034582"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-32d97e35-b959-4920-b93e-60a900034582"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-32d97e35-b959-4920-b93e-60a900034582"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-32d97e35-b959-4920-b93e-60a900034582"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-32d97e35-b959-4920-b93e-60a900034582"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

#s-1b5d4bda-4e6f-4f16-ace9-b6d71e909c44 {
  text-align: center;
}







  #s-1b5d4bda-4e6f-4f16-ace9-b6d71e909c44 img.shogun-image {
    

    
    
    
  }


#s-1b5d4bda-4e6f-4f16-ace9-b6d71e909c44 .shogun-image-content {
  
    align-items: center;
  
}

#s-805f87c4-8672-4287-af64-1b9645b0265b {
  margin-top: -10px;
}

#s-333a6eb2-f49c-491e-9e86-8dd7f7295c7f {
  margin-top: 10px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-333a6eb2-f49c-491e-9e86-8dd7f7295c7f {
  margin-right: 25px;
}
}@media (max-width: 767px){#s-333a6eb2-f49c-491e-9e86-8dd7f7295c7f {
  margin-top: 5px;
}
}
#s-dcc07c11-f228-4c47-bc45-79b008101b04 {
  margin-top: 30px;
}

@media (min-width: 768px) and (max-width: 991px){#s-e86d4f09-7141-462a-b540-9d737adf692a {
  margin-right: 25px;
}
}
@media (min-width: 0px) {
[id="s-e86d4f09-7141-462a-b540-9d737adf692a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e86d4f09-7141-462a-b540-9d737adf692a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-e86d4f09-7141-462a-b540-9d737adf692a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-e86d4f09-7141-462a-b540-9d737adf692a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-e86d4f09-7141-462a-b540-9d737adf692a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-e86d4f09-7141-462a-b540-9d737adf692a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-e86d4f09-7141-462a-b540-9d737adf692a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

#s-62382e0c-6111-4a6f-bb40-c6341813a81a {
  text-align: center;
}







  #s-62382e0c-6111-4a6f-bb40-c6341813a81a img.shogun-image {
    

    
    
    
  }


#s-62382e0c-6111-4a6f-bb40-c6341813a81a .shogun-image-content {
  
    align-items: center;
  
}

#s-37e80d17-e148-4ace-bcea-86661db1183c {
  margin-top: -10px;
}

#s-1f491daf-58d0-4b8e-9aba-dedd6dcc4b4c {
  margin-top: 20px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-1f491daf-58d0-4b8e-9aba-dedd6dcc4b4c {
  margin-right: 20px;
}
}@media (max-width: 767px){#s-1f491daf-58d0-4b8e-9aba-dedd6dcc4b4c {
  margin-top: 5px;
}
}
#s-ff7cd79e-4d79-4c91-92b9-c113af3d8e52 {
  margin-top: 20px;
}
@media (min-width: 1200px){#s-ff7cd79e-4d79-4c91-92b9-c113af3d8e52 {
  margin-top: 10px;
margin-bottom: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ff7cd79e-4d79-4c91-92b9-c113af3d8e52 {
  margin-top: 10px;
margin-bottom: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-ff7cd79e-4d79-4c91-92b9-c113af3d8e52 {
  margin-top: 10px;
}
}
#s-a6d09119-1688-4f4e-9aa5-37da8065f38c {
  min-height: 50px;
}








#s-a6d09119-1688-4f4e-9aa5-37da8065f38c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a6d09119-1688-4f4e-9aa5-37da8065f38c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-bdff74a6-6382-4ae4-8aef-b8957a56c47d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bdff74a6-6382-4ae4-8aef-b8957a56c47d"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 40.0px);
}

[id="s-bdff74a6-6382-4ae4-8aef-b8957a56c47d"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 40.0px);
}

}

@media (min-width: 992px) {
[id="s-bdff74a6-6382-4ae4-8aef-b8957a56c47d"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 40.0px);
}

[id="s-bdff74a6-6382-4ae4-8aef-b8957a56c47d"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 40.0px);
}

}

@media (min-width: 1200px) {
[id="s-bdff74a6-6382-4ae4-8aef-b8957a56c47d"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 40.0px);
}

[id="s-bdff74a6-6382-4ae4-8aef-b8957a56c47d"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 40.0px);
}

}

#s-f1327762-b4dd-4064-90b9-1571f7c22cca {
  min-height: 75px;
}








#s-f1327762-b4dd-4064-90b9-1571f7c22cca > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f1327762-b4dd-4064-90b9-1571f7c22cca.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6a6c69e1-a7ff-489e-8e2f-7292f36bbe21 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: center center;
}








#s-6a6c69e1-a7ff-489e-8e2f-7292f36bbe21 > .shg-box-overlay {
  background-color: rgba(229, 140, 128, 1);
  opacity: 0.4;
}#s-6a6c69e1-a7ff-489e-8e2f-7292f36bbe21.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bbea9a81-f58d-4d78-8e8e-fdd7290f2726 {
  min-height: 50px;
max-width: 976px;
}
@media (min-width: 1200px){#s-bbea9a81-f58d-4d78-8e8e-fdd7290f2726 {
  margin-left: auto;
margin-right: auto;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-bbea9a81-f58d-4d78-8e8e-fdd7290f2726 {
  margin-left: auto;
margin-right: auto;
}
}@media (min-width: 768px) and (max-width: 991px){#s-bbea9a81-f58d-4d78-8e8e-fdd7290f2726 {
  margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-bbea9a81-f58d-4d78-8e8e-fdd7290f2726 {
  margin-left: 20px;
margin-right: 20px;
}
}







#s-bbea9a81-f58d-4d78-8e8e-fdd7290f2726 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bbea9a81-f58d-4d78-8e8e-fdd7290f2726.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5ef4eea8-3aa8-48e8-989c-018dd759c5ba {
  min-height: 65px;
}








#s-5ef4eea8-3aa8-48e8-989c-018dd759c5ba > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5ef4eea8-3aa8-48e8-989c-018dd759c5ba.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 991px){#s-9bf9bc1a-6d44-47d1-89ed-5c767474ec74 {
  margin-right: 25px;
}
}
@media (min-width: 0px) {
[id="s-9bf9bc1a-6d44-47d1-89ed-5c767474ec74"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9bf9bc1a-6d44-47d1-89ed-5c767474ec74"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-9bf9bc1a-6d44-47d1-89ed-5c767474ec74"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-9bf9bc1a-6d44-47d1-89ed-5c767474ec74"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-9bf9bc1a-6d44-47d1-89ed-5c767474ec74"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-9bf9bc1a-6d44-47d1-89ed-5c767474ec74"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-9bf9bc1a-6d44-47d1-89ed-5c767474ec74"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

#s-39dbe448-472c-40d7-a9ce-6edf9b1fa834 {
  text-align: center;
}







  #s-39dbe448-472c-40d7-a9ce-6edf9b1fa834 img.shogun-image {
    

    
    
    
  }


#s-39dbe448-472c-40d7-a9ce-6edf9b1fa834 .shogun-image-content {
  
    align-items: center;
  
}

#s-d7469787-b7ec-40d1-88d9-35d86d16d22c {
  margin-top: -10px;
}

#s-0eec3e13-d4fa-453a-b798-81bdb464207c {
  margin-top: 20px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-0eec3e13-d4fa-453a-b798-81bdb464207c {
  margin-right: 20px;
}
}@media (max-width: 767px){#s-0eec3e13-d4fa-453a-b798-81bdb464207c {
  margin-top: 5px;
}
}
#s-5f6091d8-5ea2-45d9-b937-5615187bc42c {
  margin-top: 20px;
margin-bottom: 20px;
}

#s-3ad6c7c6-35d6-4063-aa51-725894e697e5 {
  min-height: 50px;
}








#s-3ad6c7c6-35d6-4063-aa51-725894e697e5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3ad6c7c6-35d6-4063-aa51-725894e697e5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-02135e18-6ff5-407a-a713-0dd83b10a30d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-02135e18-6ff5-407a-a713-0dd83b10a30d"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 40.0px);
}

[id="s-02135e18-6ff5-407a-a713-0dd83b10a30d"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 40.0px);
}

}

@media (min-width: 992px) {
[id="s-02135e18-6ff5-407a-a713-0dd83b10a30d"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 40.0px);
}

[id="s-02135e18-6ff5-407a-a713-0dd83b10a30d"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 40.0px);
}

}

@media (min-width: 1200px) {
[id="s-02135e18-6ff5-407a-a713-0dd83b10a30d"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 40.0px);
}

[id="s-02135e18-6ff5-407a-a713-0dd83b10a30d"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 40.0px);
}

}

#s-e6864ae1-de15-4380-803c-8f7baf85738d {
  min-height: 50px;
}








#s-e6864ae1-de15-4380-803c-8f7baf85738d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e6864ae1-de15-4380-803c-8f7baf85738d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 991px){#s-40923d6f-87ec-4db6-b274-6b22795c9f1d {
  margin-left: 0px;
margin-right: 25px;
}
}
@media (min-width: 0px) {
[id="s-40923d6f-87ec-4db6-b274-6b22795c9f1d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-40923d6f-87ec-4db6-b274-6b22795c9f1d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-40923d6f-87ec-4db6-b274-6b22795c9f1d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-40923d6f-87ec-4db6-b274-6b22795c9f1d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-40923d6f-87ec-4db6-b274-6b22795c9f1d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-40923d6f-87ec-4db6-b274-6b22795c9f1d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-40923d6f-87ec-4db6-b274-6b22795c9f1d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

}

#s-ea448544-771c-45ab-982c-63ca1e2c5d50 {
  text-align: center;
}







  #s-ea448544-771c-45ab-982c-63ca1e2c5d50 img.shogun-image {
    

    
    
    
  }


#s-ea448544-771c-45ab-982c-63ca1e2c5d50 .shogun-image-content {
  
    align-items: center;
  
}

#s-1fcf4ac8-59b2-46d9-be90-59f960b76d5b {
  margin-top: -10px;
}

#s-9c02cef0-fbe1-4ce1-818d-fa9fb7bf473c {
  margin-top: 20px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-9c02cef0-fbe1-4ce1-818d-fa9fb7bf473c {
  margin-right: 20px;
}
}@media (max-width: 767px){#s-9c02cef0-fbe1-4ce1-818d-fa9fb7bf473c {
  margin-top: 5px;
}
}
#s-46d7137c-5c40-495d-884d-27cfef743e86 {
  margin-top: 20px;
}

#s-956b4773-fd25-400e-9f3e-7c18f5d13b91 {
  min-height: 65px;
}








#s-956b4773-fd25-400e-9f3e-7c18f5d13b91 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-956b4773-fd25-400e-9f3e-7c18f5d13b91.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-5b543673-e035-4cd7-9087-32fc7e19d752"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5b543673-e035-4cd7-9087-32fc7e19d752"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 40.0px);
}

[id="s-5b543673-e035-4cd7-9087-32fc7e19d752"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 40.0px);
}

}

@media (min-width: 992px) {
[id="s-5b543673-e035-4cd7-9087-32fc7e19d752"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 40.0px);
}

[id="s-5b543673-e035-4cd7-9087-32fc7e19d752"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 40.0px);
}

}

@media (min-width: 1200px) {
[id="s-5b543673-e035-4cd7-9087-32fc7e19d752"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 40.0px);
}

[id="s-5b543673-e035-4cd7-9087-32fc7e19d752"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 40.0px);
}

}

#s-b4e8b56a-76d6-4d30-b8f5-469540b9a9c3 {
  min-height: 50px;
}








#s-b4e8b56a-76d6-4d30-b8f5-469540b9a9c3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b4e8b56a-76d6-4d30-b8f5-469540b9a9c3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-01c590d9-5e42-4d36-8162-6d9e04bd1073 {
  min-height: 50px;
background-color: rgba(255, 234, 125, 0.52);
}








#s-01c590d9-5e42-4d36-8162-6d9e04bd1073 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-01c590d9-5e42-4d36-8162-6d9e04bd1073.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6823aca5-8dae-4918-b7fe-0181fc287b8f {
  margin-left: auto;
margin-right: auto;
min-height: 30px;
max-width: 860px;
}
@media (min-width: 1200px){#s-6823aca5-8dae-4918-b7fe-0181fc287b8f {
  margin-left: auto;
margin-right: auto;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6823aca5-8dae-4918-b7fe-0181fc287b8f {
  margin-left: auto;
margin-right: auto;
}
}@media (min-width: 768px) and (max-width: 991px){#s-6823aca5-8dae-4918-b7fe-0181fc287b8f {
  margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-6823aca5-8dae-4918-b7fe-0181fc287b8f {
  margin-left: 20px;
margin-right: 20px;
}
}







#s-6823aca5-8dae-4918-b7fe-0181fc287b8f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6823aca5-8dae-4918-b7fe-0181fc287b8f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-096c72d6-ff88-4562-ad02-298a519cb72c {
  min-height: 50px;
}








#s-096c72d6-ff88-4562-ad02-298a519cb72c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-096c72d6-ff88-4562-ad02-298a519cb72c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b5bcb28b-cb80-4cf9-9477-79999870b23b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-b5bcb28b-cb80-4cf9-9477-79999870b23b {
  margin-bottom: 15px;
}
}
#s-b5bcb28b-cb80-4cf9-9477-79999870b23b .shogun-heading-component h1 {
  color: rgba(28, 25, 75, 1);
  font-weight:  normal ;
  font-family: "Chelsea Market";
  font-style:  normal ;
  font-size: 35px;
  
  
  text-align: center;
}



@media (min-width: 0px) {
[id="s-edef89a9-f645-4a81-a46d-8cafc2d87db4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-edef89a9-f645-4a81-a46d-8cafc2d87db4"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-edef89a9-f645-4a81-a46d-8cafc2d87db4"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-edef89a9-f645-4a81-a46d-8cafc2d87db4"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-edef89a9-f645-4a81-a46d-8cafc2d87db4"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-edef89a9-f645-4a81-a46d-8cafc2d87db4"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-edef89a9-f645-4a81-a46d-8cafc2d87db4"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

}

#s-3d2b475a-768a-4672-b70a-54e5d8539a87 {
  text-align: center;
}







  #s-3d2b475a-768a-4672-b70a-54e5d8539a87 img.shogun-image {
    

    
    
    
  }


#s-3d2b475a-768a-4672-b70a-54e5d8539a87 .shogun-image-content {
  
    align-items: center;
  
}

#s-40adc1ab-f8e3-4297-a084-96937757df86 {
  margin-top: 30px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-40adc1ab-f8e3-4297-a084-96937757df86 {
  margin-right: 20px;
}
}
#s-87cdd9ab-9367-4883-a39f-eec07e6ef149 {
  min-height: 20px;
}








#s-87cdd9ab-9367-4883-a39f-eec07e6ef149 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-87cdd9ab-9367-4883-a39f-eec07e6ef149.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-280fc4e3-c99d-4a73-ba7e-a3ec8dbc6e07"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-280fc4e3-c99d-4a73-ba7e-a3ec8dbc6e07"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-280fc4e3-c99d-4a73-ba7e-a3ec8dbc6e07"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-280fc4e3-c99d-4a73-ba7e-a3ec8dbc6e07"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-280fc4e3-c99d-4a73-ba7e-a3ec8dbc6e07"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-280fc4e3-c99d-4a73-ba7e-a3ec8dbc6e07"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-280fc4e3-c99d-4a73-ba7e-a3ec8dbc6e07"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

}

#s-750d910f-7ad8-426a-993a-99afa3e63bf4 {
  text-align: center;
}







  #s-750d910f-7ad8-426a-993a-99afa3e63bf4 img.shogun-image {
    

    
    
    
  }


#s-750d910f-7ad8-426a-993a-99afa3e63bf4 .shogun-image-content {
  
    align-items: center;
  
}

#s-7571c6c1-a0cb-4ab1-8d12-1e88ab550462 {
  margin-top: 30px;
}
@media (min-width: 992px) and (max-width: 1199px){#s-7571c6c1-a0cb-4ab1-8d12-1e88ab550462 {
  margin-right: 20px;
}
}
#s-eea6dc1d-55af-4a87-8626-c78ff992ebfb {
  min-height: 50px;
}








#s-eea6dc1d-55af-4a87-8626-c78ff992ebfb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eea6dc1d-55af-4a87-8626-c78ff992ebfb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}
.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-lazyload-bg-image {
  display: none;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}
/* <-- User Content Animations */

.shogun-form-error-msg, .shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

.shg-c:after,.shg-c:before{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width:1024px){.shg-box,.shg-c{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,.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:focus,.shg-lightbox .shg-lightbox-close:hover{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 .3s}.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}