.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-aaedeb24-0576-435e-aa2f-3ee64be2cabd {
  border-style: solid;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(208, 44, 48, 1);
border-radius: 5px;
min-height: 50px;
background-color: rgba(251, 236, 236, 1);
}








#s-aaedeb24-0576-435e-aa2f-3ee64be2cabd > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-aaedeb24-0576-435e-aa2f-3ee64be2cabd.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

#s-221e39f5-f3ee-4977-87a4-463e3a34a6c2 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-221e39f5-f3ee-4977-87a4-463e3a34a6c2 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-221e39f5-f3ee-4977-87a4-463e3a34a6c2 .shg-sld-nav-button.shg-sld-left,
#s-221e39f5-f3ee-4977-87a4-463e3a34a6c2 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

.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-0e43d986-20d8-49bb-8e83-d73a690fa177 {
  margin-top: 10px;
text-align: left;
}

#s-0e43d986-20d8-49bb-8e83-d73a690fa177 .shogun-heading-component h3 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-de47ff40-aaa3-4c48-9c73-7493b3244930 {
  margin-top: 10px;
text-align: left;
}

#s-de47ff40-aaa3-4c48-9c73-7493b3244930 .shogun-heading-component h3 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



.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-90166fb2-faec-4bce-aa60-8a8a55155f8d {
  min-height: 50px;
}








#s-90166fb2-faec-4bce-aa60-8a8a55155f8d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-90166fb2-faec-4bce-aa60-8a8a55155f8d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0c65072d-44db-48a5-a513-401fad21278e {
  min-height: 50px;
}








#s-0c65072d-44db-48a5-a513-401fad21278e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0c65072d-44db-48a5-a513-401fad21278e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

#s-38152b81-613f-4faf-a5e3-8fdd2b5417fb {
  margin-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-38152b81-613f-4faf-a5e3-8fdd2b5417fb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-38152b81-613f-4faf-a5e3-8fdd2b5417fb"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 33.333333333333336px);
}

[id="s-38152b81-613f-4faf-a5e3-8fdd2b5417fb"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 33.333333333333336px);
}

}

@media (min-width: 992px) {
[id="s-38152b81-613f-4faf-a5e3-8fdd2b5417fb"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 33.333333333333336px);
}

[id="s-38152b81-613f-4faf-a5e3-8fdd2b5417fb"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 33.333333333333336px);
}

}

@media (min-width: 1200px) {
[id="s-38152b81-613f-4faf-a5e3-8fdd2b5417fb"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 33.333333333333336px);
}

[id="s-38152b81-613f-4faf-a5e3-8fdd2b5417fb"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 33.333333333333336px);
}

}

@media (max-width: 767px) {
  [id="s-38152b81-613f-4faf-a5e3-8fdd2b5417fb"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-3b91e105-fe41-4b0f-8926-5b264bb67470 {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3b91e105-fe41-4b0f-8926-5b264bb67470 .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


@media (max-width: 767px){#s-3b91e105-fe41-4b0f-8926-5b264bb67470 .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


}
#s-755a6d07-8863-4a73-b7b2-2896acf1ddb0 {
  margin-left: 20px;
margin-right: 20px;
}

#s-0bd872ee-91ff-456c-a140-8827032d8368 {
  margin-left: 15%;
margin-bottom: 40px;
margin-right: 15%;
}
@media (min-width: 768px) and (max-width: 991px){#s-0bd872ee-91ff-456c-a140-8827032d8368 {
  margin-left: 5%;
margin-right: 5%;
}
}@media (max-width: 767px){#s-0bd872ee-91ff-456c-a140-8827032d8368 {
  margin-left: 5%;
margin-right: 5%;
}
}
@media (min-width: 0px) {
[id="s-0bd872ee-91ff-456c-a140-8827032d8368"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-0bd872ee-91ff-456c-a140-8827032d8368"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 12.5px);
}

}

@media (min-width: 992px) {
[id="s-0bd872ee-91ff-456c-a140-8827032d8368"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 12.5px);
}

}

@media (min-width: 1200px) {
[id="s-0bd872ee-91ff-456c-a140-8827032d8368"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 12.5px);
}

}

#s-afaf39fb-1b03-4112-8d10-8bbc4461c70e {
  margin-top: 10px;
margin-left: 25%;
margin-bottom: 10px;
margin-right: 25%;
}

#s-afaf39fb-1b03-4112-8d10-8bbc4461c70e .shogun-icon-wrapper {
  text-align: center;
}


#s-afaf39fb-1b03-4112-8d10-8bbc4461c70e .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(255, 69, 0, 1);
}

#s-7c12510e-6d33-4297-8c8d-9447edd58ba6 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-7c12510e-6d33-4297-8c8d-9447edd58ba6 .shogun-heading-component h3 {
  color: rgba(35, 31, 32, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-f9e6064d-3e75-4c21-abf3-523723d1041e {
  margin-top: 10px;
margin-left: 25%;
margin-bottom: 10px;
margin-right: 25%;
}

#s-f9e6064d-3e75-4c21-abf3-523723d1041e .shogun-icon-wrapper {
  text-align: center;
}


#s-f9e6064d-3e75-4c21-abf3-523723d1041e .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(212, 212, 212, 1);
}

#s-7470fc3a-6926-41a3-83dd-fa17f2901182 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-7470fc3a-6926-41a3-83dd-fa17f2901182 .shogun-heading-component h3 {
  color: rgba(35, 31, 32, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-041a4de8-2773-4ff6-9852-efcd8232c1d0 {
  margin-top: 10px;
margin-left: 25%;
margin-bottom: 10px;
margin-right: 25%;
}

#s-041a4de8-2773-4ff6-9852-efcd8232c1d0 .shogun-icon-wrapper {
  text-align: center;
}


#s-041a4de8-2773-4ff6-9852-efcd8232c1d0 .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(212, 212, 212, 1);
}

#s-261ac53c-7101-40ef-bbe8-24268625e657 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-261ac53c-7101-40ef-bbe8-24268625e657 .shogun-heading-component h3 {
  color: rgba(35, 31, 32, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-a32cd29e-6574-48c0-bcfd-a0f1c33e211c {
  margin-top: 10px;
margin-left: 25%;
margin-bottom: 10px;
margin-right: 25%;
}

#s-a32cd29e-6574-48c0-bcfd-a0f1c33e211c .shogun-icon-wrapper {
  text-align: center;
}


#s-a32cd29e-6574-48c0-bcfd-a0f1c33e211c .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(212, 212, 212, 1);
}

#s-fd58b2d1-00a1-4542-b570-fbd52c521bbd {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-fd58b2d1-00a1-4542-b570-fbd52c521bbd .shogun-heading-component h3 {
  color: rgba(35, 31, 32, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-26c8dd81-f5fc-4a20-bc40-ab9c6a64a6f1 {
  margin-top: 10px;
margin-left: 25%;
margin-bottom: 10px;
margin-right: 25%;
}

#s-26c8dd81-f5fc-4a20-bc40-ab9c6a64a6f1 .shogun-icon-wrapper {
  text-align: center;
}


#s-26c8dd81-f5fc-4a20-bc40-ab9c6a64a6f1 .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(212, 212, 212, 1);
}

#s-ce0917da-589e-4e77-8c9c-5f50b3383fd9 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-ce0917da-589e-4e77-8c9c-5f50b3383fd9 .shogun-heading-component h3 {
  color: rgba(35, 31, 32, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-afe9806f-22ca-46a5-a346-74307b8eeab0 {
  margin-top: 10px;
margin-left: 25%;
margin-bottom: 10px;
margin-right: 25%;
}

#s-afe9806f-22ca-46a5-a346-74307b8eeab0 .shogun-icon-wrapper {
  text-align: center;
}


#s-afe9806f-22ca-46a5-a346-74307b8eeab0 .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(212, 212, 212, 1);
}

#s-809db0ac-3acf-4452-aad5-92050d99e403 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-809db0ac-3acf-4452-aad5-92050d99e403 .shogun-heading-component h3 {
  color: rgba(35, 31, 32, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-d8d50bc8-5bd5-4ba2-b3e1-0f291efb1b20 {
  margin-bottom: 20px;
padding-top: 20px;
padding-left: 10%;
padding-bottom: 20px;
padding-right: 10%;
background-color: rgba(245, 245, 245, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-d8d50bc8-5bd5-4ba2-b3e1-0f291efb1b20 {
  padding-left: 5%;
padding-right: 5%;
}
}@media (max-width: 767px){#s-d8d50bc8-5bd5-4ba2-b3e1-0f291efb1b20 {
  padding-left: 5%;
padding-right: 5%;
}
}







#s-d8d50bc8-5bd5-4ba2-b3e1-0f291efb1b20 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d8d50bc8-5bd5-4ba2-b3e1-0f291efb1b20.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-89b7a126-f9a7-4d31-b2d7-dfa20ecb727e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-89b7a126-f9a7-4d31-b2d7-dfa20ecb727e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-89b7a126-f9a7-4d31-b2d7-dfa20ecb727e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-89b7a126-f9a7-4d31-b2d7-dfa20ecb727e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (max-width: 767px) {
  [id="s-89b7a126-f9a7-4d31-b2d7-dfa20ecb727e"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-0ba384e9-1939-4a1c-80bf-15087563f4b5 {
  margin-top: 30px;
margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-0ba384e9-1939-4a1c-80bf-15087563f4b5 {
  margin-top: 0px;
}
}
#s-0ba384e9-1939-4a1c-80bf-15087563f4b5 .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


@media (max-width: 767px){#s-0ba384e9-1939-4a1c-80bf-15087563f4b5 .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-c00c6618-7765-4c82-bc8b-175f15f2225f {
  margin-left: 20px;
margin-right: 20px;
}

.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-d923a608-3bb5-491e-85b8-5a67331a5806 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
text-align: center;
}







  #s-d923a608-3bb5-491e-85b8-5a67331a5806 img.shogun-image {
    

    
    
    
  }


#s-d923a608-3bb5-491e-85b8-5a67331a5806 .shogun-image-content {
  
    align-items: center;
  
}

#s-c4fc7151-5507-48b8-adda-33ed787c0c89 {
  margin-bottom: 20px;
padding-top: 20px;
padding-left: 10%;
padding-bottom: 20px;
padding-right: 10%;
background-color: rgba(245, 245, 245, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-c4fc7151-5507-48b8-adda-33ed787c0c89 {
  padding-left: 5%;
padding-right: 5%;
}
}@media (max-width: 767px){#s-c4fc7151-5507-48b8-adda-33ed787c0c89 {
  padding-left: 5%;
padding-right: 5%;
}
}







#s-c4fc7151-5507-48b8-adda-33ed787c0c89 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c4fc7151-5507-48b8-adda-33ed787c0c89.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-53929384-3429-40d7-b51d-e11a34a89983"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-53929384-3429-40d7-b51d-e11a34a89983"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-53929384-3429-40d7-b51d-e11a34a89983"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-53929384-3429-40d7-b51d-e11a34a89983"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 25.0px);
}

}

#s-0678059d-096f-47eb-9a4e-cc52964f2725 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
text-align: center;
}







  #s-0678059d-096f-47eb-9a4e-cc52964f2725 img.shogun-image {
    

    
    
    
  }


#s-0678059d-096f-47eb-9a4e-cc52964f2725 .shogun-image-content {
  
    align-items: center;
  
}

#s-92b42822-01f9-4db9-8f8a-88579d3afabf {
  margin-top: 30px;
margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-92b42822-01f9-4db9-8f8a-88579d3afabf {
  margin-top: 0px;
}
}
#s-92b42822-01f9-4db9-8f8a-88579d3afabf .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


@media (max-width: 767px){#s-92b42822-01f9-4db9-8f8a-88579d3afabf .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-9b87ac08-f674-4a96-8433-7eed6e0bc2a0 {
  margin-left: 20px;
margin-right: 20px;
}

#s-2f635100-ebb7-448a-9246-342f324bf3a6 {
  margin-bottom: 20px;
padding-top: 20px;
padding-left: 10%;
padding-bottom: 20px;
padding-right: 10%;
background-color: rgba(245, 245, 245, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-2f635100-ebb7-448a-9246-342f324bf3a6 {
  padding-left: 5%;
padding-right: 5%;
}
}@media (max-width: 767px){#s-2f635100-ebb7-448a-9246-342f324bf3a6 {
  padding-left: 5%;
padding-right: 5%;
}
}







#s-2f635100-ebb7-448a-9246-342f324bf3a6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2f635100-ebb7-448a-9246-342f324bf3a6.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-9987c440-4462-44a2-99d2-4a19fe684ef2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9987c440-4462-44a2-99d2-4a19fe684ef2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-9987c440-4462-44a2-99d2-4a19fe684ef2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-9987c440-4462-44a2-99d2-4a19fe684ef2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (max-width: 767px) {
  [id="s-9987c440-4462-44a2-99d2-4a19fe684ef2"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-6da02144-ff45-49e4-8d5e-c7b4b33ec99d {
  margin-top: 30px;
margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-6da02144-ff45-49e4-8d5e-c7b4b33ec99d {
  margin-top: 0px;
}
}
#s-6da02144-ff45-49e4-8d5e-c7b4b33ec99d .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


@media (max-width: 767px){#s-6da02144-ff45-49e4-8d5e-c7b4b33ec99d .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-47039c27-2f73-47ae-9696-1975c32dfff5 {
  margin-left: 20px;
margin-right: 20px;
}

#s-c6a48142-7f09-4a3c-8931-23e6a2d135e8 {
  margin-left: 20px;
margin-right: 20px;
}

#s-3e381720-17c2-4bdb-953d-96e2cdcc49a7 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
text-align: center;
}







  #s-3e381720-17c2-4bdb-953d-96e2cdcc49a7 img.shogun-image {
    

    
    
    
  }


#s-3e381720-17c2-4bdb-953d-96e2cdcc49a7 .shogun-image-content {
  
    align-items: center;
  
}

#s-d75c35aa-d295-4e20-8b44-d53ff56abed1 {
  margin-bottom: 20px;
padding-top: 20px;
padding-left: 10%;
padding-bottom: 20px;
padding-right: 10%;
background-color: rgba(245, 245, 245, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-d75c35aa-d295-4e20-8b44-d53ff56abed1 {
  padding-left: 5%;
padding-right: 5%;
}
}@media (max-width: 767px){#s-d75c35aa-d295-4e20-8b44-d53ff56abed1 {
  padding-left: 5%;
padding-right: 5%;
}
}







#s-d75c35aa-d295-4e20-8b44-d53ff56abed1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d75c35aa-d295-4e20-8b44-d53ff56abed1.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-2412c2dc-0823-4bed-8c26-84a6d0aa17f1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2412c2dc-0823-4bed-8c26-84a6d0aa17f1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-2412c2dc-0823-4bed-8c26-84a6d0aa17f1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-2412c2dc-0823-4bed-8c26-84a6d0aa17f1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 25.0px);
}

}

#s-8410f05d-6ad8-4bbe-8bdc-3dd600626221 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
text-align: center;
}







  #s-8410f05d-6ad8-4bbe-8bdc-3dd600626221 img.shogun-image {
    

    
    
    
  }


#s-8410f05d-6ad8-4bbe-8bdc-3dd600626221 .shogun-image-content {
  
    align-items: center;
  
}

#s-85acfe09-d434-4116-946f-473b1392d2bd {
  margin-top: 30px;
margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-85acfe09-d434-4116-946f-473b1392d2bd {
  margin-top: 0px;
}
}
#s-85acfe09-d434-4116-946f-473b1392d2bd .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


@media (max-width: 767px){#s-85acfe09-d434-4116-946f-473b1392d2bd .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-577049e9-b70e-4075-a289-5cf387c097ec {
  margin-left: 20px;
margin-right: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-250af23a-1415-4378-b1bb-134c8c3c192b {
  margin-left: 10px;
margin-right: 10px;
}

#s-250af23a-1415-4378-b1bb-134c8c3c192b > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(212, 212, 212, 1);
}

#s-250af23a-1415-4378-b1bb-134c8c3c192b > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 1);
  padding: 12px;
}

#s-250af23a-1415-4378-b1bb-134c8c3c192b > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(208, 44, 48, 1);
}

#s-250af23a-1415-4378-b1bb-134c8c3c192b > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 1);
  border-top: 1px solid rgba(212, 212, 212, 1);
}

#s-250af23a-1415-4378-b1bb-134c8c3c192b > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(208, 44, 48, 1);
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 18px;
}

#s-250af23a-1415-4378-b1bb-134c8c3c192b > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}
@media (min-width: 0px) {
[id="s-2f72e430-67bd-4727-ab74-bf88f8c65139"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2f72e430-67bd-4727-ab74-bf88f8c65139"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2f72e430-67bd-4727-ab74-bf88f8c65139"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2f72e430-67bd-4727-ab74-bf88f8c65139"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-5b3155b5-2dae-4502-8e37-e868e60191b2 {
  text-align: center;
}







  #s-5b3155b5-2dae-4502-8e37-e868e60191b2 img.shogun-image {
    

    
    
    
  }


#s-5b3155b5-2dae-4502-8e37-e868e60191b2 .shogun-image-content {
  
    align-items: center;
  
}

#s-b9f40040-9ffb-4f2a-a9ce-5aa6981fa6ca {
  margin-left: 20px;
margin-right: 20px;
}

#s-7818e04b-1bf5-42ad-a741-1885a060d4b9 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-7818e04b-1bf5-42ad-a741-1885a060d4b9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7818e04b-1bf5-42ad-a741-1885a060d4b9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d49a93e0-ad21-4f58-9e8b-a4e9b6a86aba {
  min-height: 50px;
}








#s-d49a93e0-ad21-4f58-9e8b-a4e9b6a86aba > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d49a93e0-ad21-4f58-9e8b-a4e9b6a86aba.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-a53c81a0-da2e-443d-abc4-f9cee0b84458 {
  border-style: solid;
margin-top: px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 0);
border-radius: 0px;
background-color: rgba(245, 245, 245, 1);
}

@media (min-width: 0px) {
[id="s-a53c81a0-da2e-443d-abc4-f9cee0b84458"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-a53c81a0-da2e-443d-abc4-f9cee0b84458"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a53c81a0-da2e-443d-abc4-f9cee0b84458"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a53c81a0-da2e-443d-abc4-f9cee0b84458"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-0d79ab7f-215d-4400-a5b1-335bd8ff85ec {
  
}

#s-81a3c695-e94e-4b75-9e23-828e83630a75 {
  
}

#s-c1db1e04-7cb5-458c-a30c-47ed428f65b4 {
  border-style: solid;
margin-top: px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 0);
border-radius: 5px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-c1db1e04-7cb5-458c-a30c-47ed428f65b4"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-c1db1e04-7cb5-458c-a30c-47ed428f65b4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-c1db1e04-7cb5-458c-a30c-47ed428f65b4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-c1db1e04-7cb5-458c-a30c-47ed428f65b4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-f49e678a-de2f-4948-9817-309b160bb1fa {
  
}

#s-a71d1abd-05b8-4dc7-ba57-a7a600b61e47 {
  
}

#s-8d9a2fd0-93d2-4757-8e71-014fc8835429 {
  border-style: solid;
margin-top: px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 0);
background-color: rgba(245, 245, 245, 1);
}

@media (min-width: 0px) {
[id="s-8d9a2fd0-93d2-4757-8e71-014fc8835429"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-8d9a2fd0-93d2-4757-8e71-014fc8835429"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-8d9a2fd0-93d2-4757-8e71-014fc8835429"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-8d9a2fd0-93d2-4757-8e71-014fc8835429"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-3cf38e1f-aa89-4d58-b439-654f10dbd25a {
  
}

#s-23f3fea2-24ef-4412-bc56-4f560e53599c {
  
}

#s-af86b1ab-71a7-4a24-91af-1c7fca872bb5 {
  border-style: solid;
margin-top: px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-radius: 5px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-af86b1ab-71a7-4a24-91af-1c7fca872bb5"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-af86b1ab-71a7-4a24-91af-1c7fca872bb5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-af86b1ab-71a7-4a24-91af-1c7fca872bb5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-af86b1ab-71a7-4a24-91af-1c7fca872bb5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-434c1ec0-ef9e-4e04-9ad1-4c4ad44cf8fd {
  
}

#s-81e6de3e-b361-4af0-a43f-9eeba86a6720 {
  
}

#s-d64b3e6c-b3a0-43b1-8889-8d9f9e4776e0 {
  border-style: solid;
margin-top: px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
background-color: rgba(245, 245, 245, 1);
}

@media (min-width: 0px) {
[id="s-d64b3e6c-b3a0-43b1-8889-8d9f9e4776e0"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-d64b3e6c-b3a0-43b1-8889-8d9f9e4776e0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d64b3e6c-b3a0-43b1-8889-8d9f9e4776e0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d64b3e6c-b3a0-43b1-8889-8d9f9e4776e0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-ea6bfa1f-d778-4910-afff-dd26c13d84f8 {
  
}

#s-2548b537-113d-42af-8f9b-bbaaa4fc762f {
  
}

#s-bdaa8be4-7128-462a-8106-c2236ecb0c8c {
  border-style: solid;
margin-top: px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-radius: 5px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-bdaa8be4-7128-462a-8106-c2236ecb0c8c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-bdaa8be4-7128-462a-8106-c2236ecb0c8c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-bdaa8be4-7128-462a-8106-c2236ecb0c8c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-bdaa8be4-7128-462a-8106-c2236ecb0c8c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-a115e8b9-e45e-4d78-9ee9-1b4832b5f27d {
  
}

#s-9f6b0b62-5609-4897-8fc8-87834c060699 {
  
}

#s-1473acf3-c70b-4750-8678-9b35fd06e66f {
  border-style: solid;
margin-top: px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
background-color: rgba(245, 245, 245, 1);
}

@media (min-width: 0px) {
[id="s-1473acf3-c70b-4750-8678-9b35fd06e66f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-1473acf3-c70b-4750-8678-9b35fd06e66f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-1473acf3-c70b-4750-8678-9b35fd06e66f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-1473acf3-c70b-4750-8678-9b35fd06e66f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-be7593b1-cf5f-464e-8988-a28bcd235f9c {
  
}

#s-cd4db5ae-41b5-4eeb-81a0-698e456b51d1 {
  
}

#s-f89e548f-57ad-4077-a1cc-b25cab96de65 {
  border-style: solid;
margin-top: px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-radius: 5px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-f89e548f-57ad-4077-a1cc-b25cab96de65"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-f89e548f-57ad-4077-a1cc-b25cab96de65"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f89e548f-57ad-4077-a1cc-b25cab96de65"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f89e548f-57ad-4077-a1cc-b25cab96de65"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-beeeec97-0d50-436b-aa22-73434d9e9752 {
  
}

#s-254302d6-f198-4c2b-b534-b37806d277d5 {
  
}

#s-72eaba64-2923-4f20-a043-6ab548f5d7db {
  border-style: solid;
margin-top: px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
background-color: rgba(245, 245, 245, 1);
}

@media (min-width: 0px) {
[id="s-72eaba64-2923-4f20-a043-6ab548f5d7db"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-72eaba64-2923-4f20-a043-6ab548f5d7db"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-72eaba64-2923-4f20-a043-6ab548f5d7db"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-72eaba64-2923-4f20-a043-6ab548f5d7db"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-cc3112b0-8565-4a1c-b154-241c9ee85d58 {
  
}

#s-19fcc61c-c840-4115-8da3-c9f75d3bdab1 {
  
}

#s-226e45fa-1a08-4744-8582-7577cda05684 {
  border-style: solid;
margin-top: px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-radius: 5px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-226e45fa-1a08-4744-8582-7577cda05684"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-226e45fa-1a08-4744-8582-7577cda05684"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-226e45fa-1a08-4744-8582-7577cda05684"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-226e45fa-1a08-4744-8582-7577cda05684"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-1cc621cf-9a98-428c-b565-409c3275b714 {
  
}

#s-f41a7242-1993-49e4-96df-09ee9e519275 {
  
}

#s-2caace63-2d6d-43e3-940d-fb3c12f6ca6b {
  border-style: solid;
margin-top: px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
background-color: rgba(245, 245, 245, 1);
}

@media (min-width: 0px) {
[id="s-2caace63-2d6d-43e3-940d-fb3c12f6ca6b"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-2caace63-2d6d-43e3-940d-fb3c12f6ca6b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-2caace63-2d6d-43e3-940d-fb3c12f6ca6b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-2caace63-2d6d-43e3-940d-fb3c12f6ca6b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-eacfc423-d5cb-4232-b600-a19616dbf314 {
  
}

#s-34efca8b-9bf9-4d19-82e9-4b0cbebda45d {
  
}

#s-d0ddd363-25f9-4717-a2d1-0637f6d37a12 {
  border-style: solid;
margin-top: px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-radius: 5px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-d0ddd363-25f9-4717-a2d1-0637f6d37a12"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-d0ddd363-25f9-4717-a2d1-0637f6d37a12"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d0ddd363-25f9-4717-a2d1-0637f6d37a12"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d0ddd363-25f9-4717-a2d1-0637f6d37a12"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-44d1df1f-d6c1-4588-ba04-c2782886e725 {
  
}

#s-6e5288eb-320c-4328-9209-6a934d10b41c {
  
}

#s-a7fdcdfc-06c0-4408-8fb5-1f7d5f50cd7d {
  border-style: solid;
margin-top: px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
background-color: rgba(245, 245, 245, 1);
}

@media (min-width: 0px) {
[id="s-a7fdcdfc-06c0-4408-8fb5-1f7d5f50cd7d"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-a7fdcdfc-06c0-4408-8fb5-1f7d5f50cd7d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a7fdcdfc-06c0-4408-8fb5-1f7d5f50cd7d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a7fdcdfc-06c0-4408-8fb5-1f7d5f50cd7d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-5066f7c2-5d2d-43e8-b9dd-bf71461a6a43 {
  
}

#s-88e8e8e4-1773-4ee7-81ba-007c74f74c77 {
  
}

#s-123bc97f-5d80-43d4-81c6-df9902f9e66f {
  border-style: solid;
margin-top: px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-radius: 5px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-123bc97f-5d80-43d4-81c6-df9902f9e66f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-123bc97f-5d80-43d4-81c6-df9902f9e66f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-123bc97f-5d80-43d4-81c6-df9902f9e66f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-123bc97f-5d80-43d4-81c6-df9902f9e66f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-4d164939-d88f-4eee-863d-7ec84af21022 {
  
}

#s-4ed9809c-f738-4de9-b009-c2c633ea85bb {
  
}

#s-5e0e6b62-e402-40cb-b2ef-eabdc64f1512 {
  border-style: solid;
margin-top: px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
background-color: rgba(245, 245, 245, 1);
}

@media (min-width: 0px) {
[id="s-5e0e6b62-e402-40cb-b2ef-eabdc64f1512"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-5e0e6b62-e402-40cb-b2ef-eabdc64f1512"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5e0e6b62-e402-40cb-b2ef-eabdc64f1512"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5e0e6b62-e402-40cb-b2ef-eabdc64f1512"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-fdf3cb88-97cb-4221-b5ec-1c6cf0892698 {
  
}

#s-70095d4f-f0e2-46b3-b63a-af7c08f85e20 {
  
}

#s-ae889377-0923-447a-8e92-7aaa0c171cb3 {
  border-style: solid;
margin-top: px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-radius: 5px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-ae889377-0923-447a-8e92-7aaa0c171cb3"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-ae889377-0923-447a-8e92-7aaa0c171cb3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-ae889377-0923-447a-8e92-7aaa0c171cb3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-ae889377-0923-447a-8e92-7aaa0c171cb3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-7959838b-17f0-402d-a2aa-be61aa5e58b0 {
  
}

#s-24ac1fd5-80bd-4de7-86fe-c021565f4171 {
  
}

#s-91df000f-d26f-4be1-8181-8b17816f3455 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
}








#s-91df000f-d26f-4be1-8181-8b17816f3455 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-91df000f-d26f-4be1-8181-8b17816f3455.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-02592acb-1b19-4bbe-8c88-2e1d80843045 {
  margin-bottom: 10px;
}
@media (max-width: 767px){#s-02592acb-1b19-4bbe-8c88-2e1d80843045 {
  
}
}
@media (min-width: 0px) {
[id="s-02592acb-1b19-4bbe-8c88-2e1d80843045"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-02592acb-1b19-4bbe-8c88-2e1d80843045"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 8.0px);
}

}

@media (min-width: 992px) {
[id="s-02592acb-1b19-4bbe-8c88-2e1d80843045"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 8.0px);
}

}

@media (min-width: 1200px) {
[id="s-02592acb-1b19-4bbe-8c88-2e1d80843045"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 8.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-599787e4-d01c-48d9-98c3-6593e05efc52 {
  margin-top: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-599787e4-d01c-48d9-98c3-6593e05efc52 .shogun-heading-component h4 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-705163be-dd8a-4f17-a87c-2d8fc4f967b4 {
  margin-top: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-705163be-dd8a-4f17-a87c-2d8fc4f967b4 .shogun-heading-component h4 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-f0126b11-3354-4584-9944-b862ffe2c9c3 {
  margin-top: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f0126b11-3354-4584-9944-b862ffe2c9c3 .shogun-heading-component h4 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-65700c15-6a03-4d12-b047-c05a389a2127 {
  margin-top: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-65700c15-6a03-4d12-b047-c05a389a2127 .shogun-heading-component h4 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-87795a2e-fb07-4b7d-9eed-470eb9575b57 {
  margin-top: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-87795a2e-fb07-4b7d-9eed-470eb9575b57 .shogun-heading-component h4 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-47890b53-6448-4d6b-b768-f5af8f166820 {
  margin-top: 0px;
margin-left: 20px;
margin-bottom: 0px;
margin-right: 20px;
}

#s-4e6dc4e7-e8d7-4f66-b1c4-391288f0af04 {
  margin-top: 20px;
min-height: 50px;
background-color: rgba(51, 49, 49, 1);
}








#s-4e6dc4e7-e8d7-4f66-b1c4-391288f0af04 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4e6dc4e7-e8d7-4f66-b1c4-391288f0af04.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7e7ef1af-3d4c-46f7-a678-e7729049d6fb {
  margin-top: 20px;
margin-left: 15%;
margin-bottom: 20px;
margin-right: 15%;
}
@media (min-width: 768px) and (max-width: 991px){#s-7e7ef1af-3d4c-46f7-a678-e7729049d6fb {
  margin-left: 5%;
margin-right: 5%;
}
}@media (max-width: 767px){#s-7e7ef1af-3d4c-46f7-a678-e7729049d6fb {
  margin-left: 5%;
margin-right: 5%;
}
}
@media (min-width: 0px) {
[id="s-7e7ef1af-3d4c-46f7-a678-e7729049d6fb"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-7e7ef1af-3d4c-46f7-a678-e7729049d6fb"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-7e7ef1af-3d4c-46f7-a678-e7729049d6fb"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-7e7ef1af-3d4c-46f7-a678-e7729049d6fb"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

#s-f1665c88-dcf4-4794-98fc-d30fe8c6b7e3 {
  margin-top: 10px;
margin-left: 25%;
margin-bottom: 10px;
margin-right: 25%;
}

#s-f1665c88-dcf4-4794-98fc-d30fe8c6b7e3 .shogun-icon-wrapper {
  text-align: center;
}


#s-f1665c88-dcf4-4794-98fc-d30fe8c6b7e3 .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(212, 212, 212, 1);
}

#s-28445c84-ccad-4522-a4aa-b291f211e954 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-28445c84-ccad-4522-a4aa-b291f211e954 .shogun-heading-component h3 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-4a20ff68-835f-40b6-b758-49948cdefb57 {
  margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-fd131060-44ac-4e11-8d9e-acbf333e42b5 {
  margin-top: 10px;
margin-left: 25%;
margin-bottom: 10px;
margin-right: 25%;
}

#s-fd131060-44ac-4e11-8d9e-acbf333e42b5 .shogun-icon-wrapper {
  text-align: center;
}


#s-fd131060-44ac-4e11-8d9e-acbf333e42b5 .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(212, 212, 212, 1);
}

#s-5c29412c-d7b6-497e-b6d5-1a2fdfe801b7 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-5c29412c-d7b6-497e-b6d5-1a2fdfe801b7 .shogun-heading-component h3 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-f7958648-6431-4d0a-86d8-73499cfaa05e {
  margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-39be8879-26dd-4e6a-bd9b-1d5d7d3e9e43 {
  margin-top: 10px;
margin-left: 25%;
margin-bottom: 10px;
margin-right: 25%;
}

#s-39be8879-26dd-4e6a-bd9b-1d5d7d3e9e43 .shogun-icon-wrapper {
  text-align: center;
}


#s-39be8879-26dd-4e6a-bd9b-1d5d7d3e9e43 .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(212, 212, 212, 1);
}

#s-deb94130-0000-42f5-b406-3dcc7597d815 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-deb94130-0000-42f5-b406-3dcc7597d815 .shogun-heading-component h3 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-9b8cde3d-39d6-4cf2-86bc-7f899981335e {
  margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-f3e1b49a-4df6-4fd3-8f34-1a95d79ce3a5 {
  margin-top: 10px;
margin-left: 25%;
margin-bottom: 10px;
margin-right: 25%;
}

#s-f3e1b49a-4df6-4fd3-8f34-1a95d79ce3a5 .shogun-icon-wrapper {
  text-align: center;
}


#s-f3e1b49a-4df6-4fd3-8f34-1a95d79ce3a5 .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(212, 212, 212, 1);
}

#s-5d2ff27b-5e97-4b46-8238-606baaec30fa {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-5d2ff27b-5e97-4b46-8238-606baaec30fa .shogun-heading-component h3 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-17996778-b242-4d30-8e28-4b0edb0871a4 {
  margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-b2ecd3e5-6206-4e5a-bbee-cfde3de11a0b {
  margin-top: 10px;
margin-left: 25%;
margin-bottom: 10px;
margin-right: 25%;
}

#s-b2ecd3e5-6206-4e5a-bbee-cfde3de11a0b .shogun-icon-wrapper {
  text-align: center;
}


#s-b2ecd3e5-6206-4e5a-bbee-cfde3de11a0b .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(212, 212, 212, 1);
}

#s-39af6b0f-cd18-43c9-a3ad-c201735cad40 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-39af6b0f-cd18-43c9-a3ad-c201735cad40 .shogun-heading-component h3 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-ca2192a3-7533-4212-9e54-96bd76ff850e {
  margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-ce3a2ab9-21fb-4d92-b454-4a36fb25fd30 {
  margin-top: 10px;
margin-left: 25%;
margin-bottom: 10px;
margin-right: 25%;
}

#s-ce3a2ab9-21fb-4d92-b454-4a36fb25fd30 .shogun-icon-wrapper {
  text-align: center;
}


#s-ce3a2ab9-21fb-4d92-b454-4a36fb25fd30 .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(212, 212, 212, 1);
}

#s-76e41313-ba9d-4707-8c57-ab03c4daf0e1 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-76e41313-ba9d-4707-8c57-ab03c4daf0e1 .shogun-heading-component h3 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-c5de664c-606a-41aa-ad07-a4a559b60b49 {
  margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
}

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

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-c: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}