.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-75136cbf-ecbf-43e2-9cc8-3e322d9dc2ed {
  border-style: solid;
margin-bottom: 20px;
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-75136cbf-ecbf-43e2-9cc8-3e322d9dc2ed > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-75136cbf-ecbf-43e2-9cc8-3e322d9dc2ed.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-8881c94c-1eb1-4c87-869b-a91cddf43850 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-8881c94c-1eb1-4c87-869b-a91cddf43850 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-8881c94c-1eb1-4c87-869b-a91cddf43850 .shg-sld-nav-button.shg-sld-left,
#s-8881c94c-1eb1-4c87-869b-a91cddf43850 .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-623d11f9-aa57-4f61-940a-a52989188ed7 {
  margin-top: 10px;
text-align: left;
}

#s-623d11f9-aa57-4f61-940a-a52989188ed7 .shogun-heading-component h3 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-067b4944-ddd5-43c9-90eb-012755b5eb79 {
  margin-top: 10px;
text-align: left;
}

#s-067b4944-ddd5-43c9-90eb-012755b5eb79 .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-47af4cf7-62af-4a1b-aa5a-099ab562acd4 {
  min-height: 50px;
}








#s-47af4cf7-62af-4a1b-aa5a-099ab562acd4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-47af4cf7-62af-4a1b-aa5a-099ab562acd4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3e95a151-29a7-49fc-90cb-8bc2847ee032 {
  min-height: 50px;
}








#s-3e95a151-29a7-49fc-90cb-8bc2847ee032 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3e95a151-29a7-49fc-90cb-8bc2847ee032.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-2db15162-b7b3-4899-933d-5ae76fd8a50e {
  margin-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-2db15162-b7b3-4899-933d-5ae76fd8a50e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2db15162-b7b3-4899-933d-5ae76fd8a50e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 33.333333333333336px);
}

[id="s-2db15162-b7b3-4899-933d-5ae76fd8a50e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 33.333333333333336px);
}

}

@media (min-width: 992px) {
[id="s-2db15162-b7b3-4899-933d-5ae76fd8a50e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 33.333333333333336px);
}

[id="s-2db15162-b7b3-4899-933d-5ae76fd8a50e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 33.333333333333336px);
}

}

@media (min-width: 1200px) {
[id="s-2db15162-b7b3-4899-933d-5ae76fd8a50e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 33.333333333333336px);
}

[id="s-2db15162-b7b3-4899-933d-5ae76fd8a50e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 33.333333333333336px);
}

}

@media (max-width: 767px) {
  [id="s-2db15162-b7b3-4899-933d-5ae76fd8a50e"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-f8e4f5b3-fa1a-435c-821b-0b2fc5c4926a {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f8e4f5b3-fa1a-435c-821b-0b2fc5c4926a .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


@media (max-width: 767px){#s-f8e4f5b3-fa1a-435c-821b-0b2fc5c4926a .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


}
#s-27bb6f50-f8e2-4156-95a8-22faa634f781 {
  margin-left: 15%;
margin-bottom: 40px;
margin-right: 15%;
}
@media (min-width: 768px) and (max-width: 991px){#s-27bb6f50-f8e2-4156-95a8-22faa634f781 {
  margin-left: 5%;
margin-right: 5%;
}
}@media (max-width: 767px){#s-27bb6f50-f8e2-4156-95a8-22faa634f781 {
  margin-left: 5%;
margin-right: 5%;
}
}
@media (min-width: 0px) {
[id="s-27bb6f50-f8e2-4156-95a8-22faa634f781"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-27bb6f50-f8e2-4156-95a8-22faa634f781"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 12.0px);
}

}

@media (min-width: 992px) {
[id="s-27bb6f50-f8e2-4156-95a8-22faa634f781"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 12.0px);
}

}

@media (min-width: 1200px) {
[id="s-27bb6f50-f8e2-4156-95a8-22faa634f781"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 12.0px);
}

}

#s-4c8cf732-ee62-4124-b465-e0f30682ffbf {
  margin-top: 10px;
margin-left: 25%;
margin-bottom: 10px;
margin-right: 25%;
}

#s-4c8cf732-ee62-4124-b465-e0f30682ffbf .shogun-icon-wrapper {
  text-align: center;
}


#s-4c8cf732-ee62-4124-b465-e0f30682ffbf .shogun-icon-wrapper > .shogun-icon {

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

#s-058b19ab-93bb-42ca-8a0e-68d678ad027e {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-058b19ab-93bb-42ca-8a0e-68d678ad027e .shogun-heading-component h3 {
  color: rgba(35, 31, 32, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-5105e26a-0be5-44f4-9f1b-7bdfd425aa6e {
  margin-top: 10px;
margin-left: 25%;
margin-bottom: 10px;
margin-right: 25%;
}

#s-5105e26a-0be5-44f4-9f1b-7bdfd425aa6e .shogun-icon-wrapper {
  text-align: center;
}


#s-5105e26a-0be5-44f4-9f1b-7bdfd425aa6e .shogun-icon-wrapper > .shogun-icon {

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

#s-2719ed34-d9ed-4406-a46e-fa36c0ede579 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-2719ed34-d9ed-4406-a46e-fa36c0ede579 .shogun-heading-component h3 {
  color: rgba(35, 31, 32, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-f61150b6-b663-4424-b379-3d0b9e9ab1e2 {
  margin-top: 10px;
margin-left: 25%;
margin-bottom: 10px;
margin-right: 25%;
}

#s-f61150b6-b663-4424-b379-3d0b9e9ab1e2 .shogun-icon-wrapper {
  text-align: center;
}


#s-f61150b6-b663-4424-b379-3d0b9e9ab1e2 .shogun-icon-wrapper > .shogun-icon {

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

#s-84fbd1b7-e869-4861-89e6-4d56f0c5da55 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-84fbd1b7-e869-4861-89e6-4d56f0c5da55 .shogun-heading-component h3 {
  color: rgba(35, 31, 32, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-f8c6a0f3-8d72-44ea-b527-5216b257ebea {
  margin-top: 10px;
margin-left: 25%;
margin-bottom: 10px;
margin-right: 25%;
}

#s-f8c6a0f3-8d72-44ea-b527-5216b257ebea .shogun-icon-wrapper {
  text-align: center;
}


#s-f8c6a0f3-8d72-44ea-b527-5216b257ebea .shogun-icon-wrapper > .shogun-icon {

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

#s-9c2f1345-c72d-4483-a2a6-8ccbaa1c9a4d {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-9c2f1345-c72d-4483-a2a6-8ccbaa1c9a4d .shogun-heading-component h3 {
  color: rgba(35, 31, 32, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-41d961b0-7988-4905-ae34-40d20594e07f {
  margin-top: 10px;
margin-left: 25%;
margin-bottom: 10px;
margin-right: 25%;
}

#s-41d961b0-7988-4905-ae34-40d20594e07f .shogun-icon-wrapper {
  text-align: center;
}


#s-41d961b0-7988-4905-ae34-40d20594e07f .shogun-icon-wrapper > .shogun-icon {

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

#s-b493b14c-3c95-4d73-822d-4f81f7258b79 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-b493b14c-3c95-4d73-822d-4f81f7258b79 .shogun-heading-component h3 {
  color: rgba(35, 31, 32, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 14px;
  
  
  
}



#s-f70e12aa-d735-4f7c-ac31-8c3e64cad8a8 {
  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-f70e12aa-d735-4f7c-ac31-8c3e64cad8a8 {
  padding-left: 5%;
padding-right: 5%;
}
}@media (max-width: 767px){#s-f70e12aa-d735-4f7c-ac31-8c3e64cad8a8 {
  padding-left: 5%;
padding-right: 5%;
}
}







#s-f70e12aa-d735-4f7c-ac31-8c3e64cad8a8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f70e12aa-d735-4f7c-ac31-8c3e64cad8a8.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-f89605ae-8085-49f8-ba21-8ca982e4bd95"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f89605ae-8085-49f8-ba21-8ca982e4bd95"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-f89605ae-8085-49f8-ba21-8ca982e4bd95"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-f89605ae-8085-49f8-ba21-8ca982e4bd95"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (max-width: 767px) {
  [id="s-f89605ae-8085-49f8-ba21-8ca982e4bd95"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-baf6166b-1d34-44bc-b629-3aa5ec27d017 {
  margin-top: 30px;
margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-baf6166b-1d34-44bc-b629-3aa5ec27d017 {
  margin-top: 0px;
}
}
#s-baf6166b-1d34-44bc-b629-3aa5ec27d017 .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


@media (max-width: 767px){#s-baf6166b-1d34-44bc-b629-3aa5ec27d017 .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-1d73b27c-25e1-490c-921a-c084ad289a16 {
  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-af7d9749-da89-461f-946e-32d8f7c0b51a {
  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-af7d9749-da89-461f-946e-32d8f7c0b51a img.shogun-image {
    

    
    
    
  }


#s-af7d9749-da89-461f-946e-32d8f7c0b51a .shogun-image-content {
  
    align-items: center;
  
}

#s-4ea2ab71-3e2b-4174-b2fd-2ed59e159a3f {
  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-4ea2ab71-3e2b-4174-b2fd-2ed59e159a3f {
  padding-left: 5%;
padding-right: 5%;
}
}@media (max-width: 767px){#s-4ea2ab71-3e2b-4174-b2fd-2ed59e159a3f {
  padding-left: 5%;
padding-right: 5%;
}
}







#s-4ea2ab71-3e2b-4174-b2fd-2ed59e159a3f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4ea2ab71-3e2b-4174-b2fd-2ed59e159a3f.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-9868cd7c-ccea-4dbf-a9a3-06ad890c60ad"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9868cd7c-ccea-4dbf-a9a3-06ad890c60ad"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-9868cd7c-ccea-4dbf-a9a3-06ad890c60ad"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-9868cd7c-ccea-4dbf-a9a3-06ad890c60ad"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 25.0px);
}

}

#s-bba6dfd8-aedf-4e11-9a9d-8692ef59f858 {
  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-bba6dfd8-aedf-4e11-9a9d-8692ef59f858 img.shogun-image {
    

    
    
    
  }


#s-bba6dfd8-aedf-4e11-9a9d-8692ef59f858 .shogun-image-content {
  
    align-items: center;
  
}

#s-f8cc3267-aed0-441b-9413-25911dfb85f9 {
  margin-top: 30px;
margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-f8cc3267-aed0-441b-9413-25911dfb85f9 {
  margin-top: 0px;
}
}
#s-f8cc3267-aed0-441b-9413-25911dfb85f9 .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


@media (max-width: 767px){#s-f8cc3267-aed0-441b-9413-25911dfb85f9 .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-55f8cea1-efd0-4fda-b475-79dec8dea79c {
  margin-left: 20px;
margin-right: 20px;
}

#s-fce7fb2a-03ef-4311-8599-84b1b78dbc6c {
  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-fce7fb2a-03ef-4311-8599-84b1b78dbc6c {
  padding-left: 5%;
padding-right: 5%;
}
}@media (max-width: 767px){#s-fce7fb2a-03ef-4311-8599-84b1b78dbc6c {
  padding-left: 5%;
padding-right: 5%;
}
}







#s-fce7fb2a-03ef-4311-8599-84b1b78dbc6c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fce7fb2a-03ef-4311-8599-84b1b78dbc6c.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-f2994a80-e620-465d-837f-e4739f6e26b7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f2994a80-e620-465d-837f-e4739f6e26b7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-f2994a80-e620-465d-837f-e4739f6e26b7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-f2994a80-e620-465d-837f-e4739f6e26b7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (max-width: 767px) {
  [id="s-f2994a80-e620-465d-837f-e4739f6e26b7"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-682afcf3-c33e-4abd-adc9-11915508a524 {
  margin-top: 30px;
margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-682afcf3-c33e-4abd-adc9-11915508a524 {
  margin-top: 0px;
}
}
#s-682afcf3-c33e-4abd-adc9-11915508a524 .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


@media (max-width: 767px){#s-682afcf3-c33e-4abd-adc9-11915508a524 .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-e4b6bddd-9354-4740-9fd4-8017115bebe9 {
  margin-left: 20px;
margin-right: 20px;
}

#s-6b8df7b7-9d63-42bd-927c-721686fc67e0 {
  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-6b8df7b7-9d63-42bd-927c-721686fc67e0 img.shogun-image {
    

    
    
    
  }


#s-6b8df7b7-9d63-42bd-927c-721686fc67e0 .shogun-image-content {
  
    align-items: center;
  
}

#s-df1d5a4f-81e7-4557-a72d-c7c0330082f6 {
  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-df1d5a4f-81e7-4557-a72d-c7c0330082f6 {
  padding-left: 5%;
padding-right: 5%;
}
}@media (max-width: 767px){#s-df1d5a4f-81e7-4557-a72d-c7c0330082f6 {
  padding-left: 5%;
padding-right: 5%;
}
}







#s-df1d5a4f-81e7-4557-a72d-c7c0330082f6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-df1d5a4f-81e7-4557-a72d-c7c0330082f6.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-d9a89af1-bb05-4e83-99f4-c179fb7569ab"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d9a89af1-bb05-4e83-99f4-c179fb7569ab"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-d9a89af1-bb05-4e83-99f4-c179fb7569ab"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-d9a89af1-bb05-4e83-99f4-c179fb7569ab"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 25.0px);
}

}

#s-deeec803-e793-422d-9721-63ffb39ade43 {
  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-deeec803-e793-422d-9721-63ffb39ade43 img.shogun-image {
    

    
    
    
  }


#s-deeec803-e793-422d-9721-63ffb39ade43 .shogun-image-content {
  
    align-items: center;
  
}

#s-373536c5-7cb6-40fb-812b-8a5b1d245f6e {
  margin-top: 30px;
margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-373536c5-7cb6-40fb-812b-8a5b1d245f6e {
  margin-top: 0px;
}
}
#s-373536c5-7cb6-40fb-812b-8a5b1d245f6e .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


@media (max-width: 767px){#s-373536c5-7cb6-40fb-812b-8a5b1d245f6e .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-d304bf65-1cfc-4829-8fac-3d37c4d5645a {
  margin-left: 20px;
margin-right: 20px;
}

#s-c1e15130-39bd-4e31-b58c-eecf885b07b1 {
  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-c1e15130-39bd-4e31-b58c-eecf885b07b1 {
  padding-left: 5%;
padding-right: 5%;
}
}@media (max-width: 767px){#s-c1e15130-39bd-4e31-b58c-eecf885b07b1 {
  padding-left: 5%;
padding-right: 5%;
}
}







#s-c1e15130-39bd-4e31-b58c-eecf885b07b1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c1e15130-39bd-4e31-b58c-eecf885b07b1.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-8da7da2c-f42c-4359-b60a-2018025062da"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8da7da2c-f42c-4359-b60a-2018025062da"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-8da7da2c-f42c-4359-b60a-2018025062da"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-8da7da2c-f42c-4359-b60a-2018025062da"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (max-width: 767px) {
  [id="s-8da7da2c-f42c-4359-b60a-2018025062da"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-a520be7f-5d65-4b2c-b676-d410818d0a66 {
  margin-top: 30px;
margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-a520be7f-5d65-4b2c-b676-d410818d0a66 {
  margin-top: 0px;
}
}
#s-a520be7f-5d65-4b2c-b676-d410818d0a66 .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


@media (max-width: 767px){#s-a520be7f-5d65-4b2c-b676-d410818d0a66 .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-31656420-3e0f-4a4b-a99d-9da96543c2f9 {
  margin-left: 20px;
margin-right: 20px;
}

#s-ce75f284-0dfa-4f0c-a56b-b6d2e7106088 {
  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-ce75f284-0dfa-4f0c-a56b-b6d2e7106088 img.shogun-image {
    

    
    
    
  }


#s-ce75f284-0dfa-4f0c-a56b-b6d2e7106088 .shogun-image-content {
  
    align-items: center;
  
}

#s-e5e4f253-cb8e-48bd-97a3-7accd49db27e {
  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-e5e4f253-cb8e-48bd-97a3-7accd49db27e {
  padding-left: 5%;
padding-right: 5%;
}
}@media (max-width: 767px){#s-e5e4f253-cb8e-48bd-97a3-7accd49db27e {
  padding-left: 5%;
padding-right: 5%;
}
}







#s-e5e4f253-cb8e-48bd-97a3-7accd49db27e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e5e4f253-cb8e-48bd-97a3-7accd49db27e.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-beaf9713-6572-4943-8f55-783c0523b7d5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-beaf9713-6572-4943-8f55-783c0523b7d5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-beaf9713-6572-4943-8f55-783c0523b7d5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-beaf9713-6572-4943-8f55-783c0523b7d5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 25.0px);
}

}

#s-6e9fa746-3611-48ce-8e91-6f84536005f6 {
  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-6e9fa746-3611-48ce-8e91-6f84536005f6 img.shogun-image {
    

    
    
    
  }


#s-6e9fa746-3611-48ce-8e91-6f84536005f6 .shogun-image-content {
  
    align-items: center;
  
}

#s-aeb78be3-9f48-4f97-bb00-8ca17b5c388b {
  margin-top: 30px;
margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-aeb78be3-9f48-4f97-bb00-8ca17b5c388b {
  margin-top: 0px;
}
}
#s-aeb78be3-9f48-4f97-bb00-8ca17b5c388b .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


@media (max-width: 767px){#s-aeb78be3-9f48-4f97-bb00-8ca17b5c388b .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-fffc6590-9e4b-4b14-b59b-1f7acc68a865 {
  margin-left: 20px;
margin-right: 20px;
}

#s-61328f86-6ee9-420d-9e73-aeaf7c3426d4 {
  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-61328f86-6ee9-420d-9e73-aeaf7c3426d4 {
  padding-left: 5%;
padding-right: 5%;
}
}@media (max-width: 767px){#s-61328f86-6ee9-420d-9e73-aeaf7c3426d4 {
  padding-left: 5%;
padding-right: 5%;
}
}







#s-61328f86-6ee9-420d-9e73-aeaf7c3426d4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-61328f86-6ee9-420d-9e73-aeaf7c3426d4.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-213b4eef-1cb3-45a2-8f39-2ac9ed6e6a2c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-213b4eef-1cb3-45a2-8f39-2ac9ed6e6a2c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-213b4eef-1cb3-45a2-8f39-2ac9ed6e6a2c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-213b4eef-1cb3-45a2-8f39-2ac9ed6e6a2c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 25.0px);
}

}

@media (max-width: 767px) {
  [id="s-213b4eef-1cb3-45a2-8f39-2ac9ed6e6a2c"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-b11aa87f-b512-49b8-993e-ea0874304714 {
  margin-top: 30px;
margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-b11aa87f-b512-49b8-993e-ea0874304714 {
  margin-top: 0px;
}
}
#s-b11aa87f-b512-49b8-993e-ea0874304714 .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


@media (max-width: 767px){#s-b11aa87f-b512-49b8-993e-ea0874304714 .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-c526d4c1-dd18-4d05-a324-625ee66e4b9f {
  margin-left: 20px;
margin-right: 20px;
}

#s-69dd3c9c-5b76-4af6-a1b8-c4cb089f76fe {
  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-69dd3c9c-5b76-4af6-a1b8-c4cb089f76fe img.shogun-image {
    

    
    
    
  }


#s-69dd3c9c-5b76-4af6-a1b8-c4cb089f76fe .shogun-image-content {
  
    align-items: center;
  
}

#s-1b5d4494-93ae-42f8-b85e-cc7c2666947b {
  border-style: solid;
margin-top: 10px;
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-1b5d4494-93ae-42f8-b85e-cc7c2666947b > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-1b5d4494-93ae-42f8-b85e-cc7c2666947b.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-63500a84-a2e1-4025-9382-f26f83db4bc8 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-63500a84-a2e1-4025-9382-f26f83db4bc8 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-63500a84-a2e1-4025-9382-f26f83db4bc8 .shg-sld-nav-button.shg-sld-left,
#s-63500a84-a2e1-4025-9382-f26f83db4bc8 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-e676b08a-f660-4bfd-bc04-abe427b1317b {
  margin-top: 10px;
text-align: left;
}

#s-e676b08a-f660-4bfd-bc04-abe427b1317b .shogun-heading-component h3 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-2e5310ad-b4f6-48ae-953e-22c3a154b138 {
  margin-top: 10px;
text-align: left;
}

#s-2e5310ad-b4f6-48ae-953e-22c3a154b138 .shogun-heading-component h3 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



.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-e6b19853-0faa-4d87-b301-171c985f1027 {
  margin-left: 10px;
margin-right: 10px;
}

#s-e6b19853-0faa-4d87-b301-171c985f1027 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(212, 212, 212, 1);
}

#s-e6b19853-0faa-4d87-b301-171c985f1027 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 1);
  padding: 12px;
}

#s-e6b19853-0faa-4d87-b301-171c985f1027 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(208, 44, 48, 1);
}

#s-e6b19853-0faa-4d87-b301-171c985f1027 > .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-e6b19853-0faa-4d87-b301-171c985f1027 > .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-e6b19853-0faa-4d87-b301-171c985f1027 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}
#s-199979ba-a5dc-448e-9ef7-35cad840a858 {
  margin-left: 20px;
margin-right: 20px;
}

#s-c1085de1-07d9-40b6-b664-6287da475d17 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-c1085de1-07d9-40b6-b664-6287da475d17 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c1085de1-07d9-40b6-b664-6287da475d17.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f41ce598-d8c4-4f0f-bcd5-7e7b12b49ce4 {
  min-height: 50px;
}








#s-f41ce598-d8c4-4f0f-bcd5-7e7b12b49ce4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f41ce598-d8c4-4f0f-bcd5-7e7b12b49ce4.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-661795da-6bfc-4ddb-825a-fc79b048149d {
  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-661795da-6bfc-4ddb-825a-fc79b048149d"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-661795da-6bfc-4ddb-825a-fc79b048149d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-661795da-6bfc-4ddb-825a-fc79b048149d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-661795da-6bfc-4ddb-825a-fc79b048149d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-180a16f3-95c9-4c54-b0c2-bc2a29cb2051 {
  
}

#s-ef4c4ac3-63cf-4a3d-b7bd-11d8fd056e3c {
  
}

#s-4207745d-5d2b-4f16-8e39-ab17eee3b1fc {
  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-4207745d-5d2b-4f16-8e39-ab17eee3b1fc"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-4207745d-5d2b-4f16-8e39-ab17eee3b1fc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-4207745d-5d2b-4f16-8e39-ab17eee3b1fc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-4207745d-5d2b-4f16-8e39-ab17eee3b1fc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-f1719b95-f699-4377-afce-113767d55872 {
  
}

#s-573275e4-cb4b-4b4c-ba49-2b7fa103e723 {
  
}

#s-e8312908-ba20-40cb-b424-792f70c132f6 {
  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-e8312908-ba20-40cb-b424-792f70c132f6"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-e8312908-ba20-40cb-b424-792f70c132f6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-e8312908-ba20-40cb-b424-792f70c132f6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-e8312908-ba20-40cb-b424-792f70c132f6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-6eef0982-f372-455e-bdf7-9ad425cb66ff {
  
}

#s-52dc34f5-7518-4e6c-b326-bbfeba734a5d {
  
}

#s-bd8d61ea-1808-4fb1-bdcb-aa381d6cddc9 {
  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-bd8d61ea-1808-4fb1-bdcb-aa381d6cddc9"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-bd8d61ea-1808-4fb1-bdcb-aa381d6cddc9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-bd8d61ea-1808-4fb1-bdcb-aa381d6cddc9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-bd8d61ea-1808-4fb1-bdcb-aa381d6cddc9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-d0ae3ef4-b667-4b47-ac91-79b818d616a1 {
  
}

#s-72abde86-36c5-4fce-bf93-12fa677e169c {
  
}

#s-4c722a0c-5aa8-4044-bd85-fde8616f5208 {
  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-4c722a0c-5aa8-4044-bd85-fde8616f5208"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-4c722a0c-5aa8-4044-bd85-fde8616f5208"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-4c722a0c-5aa8-4044-bd85-fde8616f5208"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-4c722a0c-5aa8-4044-bd85-fde8616f5208"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-27262f15-98b6-4e37-8857-5a1083676cd7 {
  
}

#s-6a644f6a-4530-4669-8044-53e0013acc38 {
  
}

#s-4cd6b125-59d6-46cb-970d-4d815e81bd75 {
  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-4cd6b125-59d6-46cb-970d-4d815e81bd75"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-4cd6b125-59d6-46cb-970d-4d815e81bd75"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-4cd6b125-59d6-46cb-970d-4d815e81bd75"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-4cd6b125-59d6-46cb-970d-4d815e81bd75"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-ff6b17bf-dc3c-476a-8b51-024b7771f1c7 {
  
}

#s-601cdb31-7a45-486d-ac19-3f7e0bbc7292 {
  
}

#s-697e004a-d73e-476b-b9f7-d9daf2f60cff {
  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-697e004a-d73e-476b-b9f7-d9daf2f60cff"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-697e004a-d73e-476b-b9f7-d9daf2f60cff"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-697e004a-d73e-476b-b9f7-d9daf2f60cff"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-697e004a-d73e-476b-b9f7-d9daf2f60cff"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-ce098706-7d42-4c17-a0bc-7d1b65f9c30d {
  
}

#s-d23e982c-5920-41e2-87be-483d5be4ea99 {
  
}

#s-303e8f3a-b9ca-440e-8bee-fb663aadfd63 {
  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-303e8f3a-b9ca-440e-8bee-fb663aadfd63"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-303e8f3a-b9ca-440e-8bee-fb663aadfd63"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-303e8f3a-b9ca-440e-8bee-fb663aadfd63"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-303e8f3a-b9ca-440e-8bee-fb663aadfd63"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-c11b613b-e0cb-4c9c-b868-71918350e9d2 {
  
}

#s-c13c10ca-97c8-49d5-b754-e1012467fc5f {
  
}

#s-88914bfd-5c13-41ea-ab3f-5e6cd390b073 {
  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-88914bfd-5c13-41ea-ab3f-5e6cd390b073"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-88914bfd-5c13-41ea-ab3f-5e6cd390b073"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-88914bfd-5c13-41ea-ab3f-5e6cd390b073"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-88914bfd-5c13-41ea-ab3f-5e6cd390b073"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-3dfa45d5-2711-42d0-a56d-823c7d1cb029 {
  
}

#s-e2b68b84-d1fc-41b2-a51e-878101e51003 {
  
}

#s-dd780f7b-9fe5-473c-8182-db6d61143342 {
  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-dd780f7b-9fe5-473c-8182-db6d61143342"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-dd780f7b-9fe5-473c-8182-db6d61143342"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-dd780f7b-9fe5-473c-8182-db6d61143342"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-dd780f7b-9fe5-473c-8182-db6d61143342"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-3fde3abd-4372-4431-bf15-1225bb4ae80c {
  
}

#s-25c71f88-cc6d-4911-8c1f-d2c570d91b84 {
  
}

#s-7def138d-4029-4afb-bb0f-fc01b8927b69 {
  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-7def138d-4029-4afb-bb0f-fc01b8927b69"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-7def138d-4029-4afb-bb0f-fc01b8927b69"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-7def138d-4029-4afb-bb0f-fc01b8927b69"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-7def138d-4029-4afb-bb0f-fc01b8927b69"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-95d0721c-a38e-4ce1-9db0-286f0ebb8252 {
  
}

#s-7f78b234-91eb-401e-a977-661b08d9f1e3 {
  
}

#s-5a27205d-5c87-497d-b7d0-2ac4cb260868 {
  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-5a27205d-5c87-497d-b7d0-2ac4cb260868"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-5a27205d-5c87-497d-b7d0-2ac4cb260868"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5a27205d-5c87-497d-b7d0-2ac4cb260868"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5a27205d-5c87-497d-b7d0-2ac4cb260868"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-9616a31e-2237-46de-a00b-7c6af2c6ba5e {
  
}

#s-ebc4bc94-7bb0-41f7-95a1-f7c290585572 {
  
}

#s-bbbcd2ff-a403-4ca4-b120-f6c15c4b6a85 {
  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-bbbcd2ff-a403-4ca4-b120-f6c15c4b6a85"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-bbbcd2ff-a403-4ca4-b120-f6c15c4b6a85"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-bbbcd2ff-a403-4ca4-b120-f6c15c4b6a85"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-bbbcd2ff-a403-4ca4-b120-f6c15c4b6a85"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-ffdd0f59-de61-466d-8e47-914eab31a34f {
  
}

#s-1e5c8850-d868-488e-9484-80123e63d6c4 {
  
}

#s-d7d8ade9-d262-4d67-98e1-3698bf83bdf4 {
  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-d7d8ade9-d262-4d67-98e1-3698bf83bdf4"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-d7d8ade9-d262-4d67-98e1-3698bf83bdf4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d7d8ade9-d262-4d67-98e1-3698bf83bdf4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d7d8ade9-d262-4d67-98e1-3698bf83bdf4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-c04e6a11-6990-444d-8f33-a536d34dbb7a {
  
}

#s-9158ac2f-954f-4239-9e4c-1cc4b544d6ae {
  
}

#s-eaaa6f70-2b03-4a3d-8931-807d235ca7fe {
  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-eaaa6f70-2b03-4a3d-8931-807d235ca7fe"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-eaaa6f70-2b03-4a3d-8931-807d235ca7fe"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-eaaa6f70-2b03-4a3d-8931-807d235ca7fe"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-eaaa6f70-2b03-4a3d-8931-807d235ca7fe"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-68869796-2720-4762-912d-f84697f5c507 {
  
}

#s-8a895194-c012-4c51-b8c0-c67901b045f3 {
  
}

#s-a66cc1e9-a95c-4895-9ddc-fafc0dbd9fba {
  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-a66cc1e9-a95c-4895-9ddc-fafc0dbd9fba"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-a66cc1e9-a95c-4895-9ddc-fafc0dbd9fba"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a66cc1e9-a95c-4895-9ddc-fafc0dbd9fba"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a66cc1e9-a95c-4895-9ddc-fafc0dbd9fba"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-93052344-da4d-4dfe-b5dc-463c30ae805e {
  
}

#s-b6f1c4ab-13a7-4dbe-a1ba-4ce507b4303f {
  
}

#s-96f5587a-a385-4000-9a93-7509271e5bec {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
}








#s-96f5587a-a385-4000-9a93-7509271e5bec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-96f5587a-a385-4000-9a93-7509271e5bec.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-c858dbbd-7dac-4834-9fe3-0db3237f58e7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c858dbbd-7dac-4834-9fe3-0db3237f58e7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-c858dbbd-7dac-4834-9fe3-0db3237f58e7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-c858dbbd-7dac-4834-9fe3-0db3237f58e7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 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-173bc39a-a546-4c4e-abeb-b38725663820 {
  margin-top: 0px;
margin-left: 20px;
margin-bottom: 0px;
margin-right: 20px;
}

#s-7e6a3550-c8be-4674-b9c9-8a5a245b80d2 {
  margin-top: 20px;
min-height: 50px;
background-color: rgba(51, 49, 49, 1);
}








#s-7e6a3550-c8be-4674-b9c9-8a5a245b80d2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7e6a3550-c8be-4674-b9c9-8a5a245b80d2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ea1d0fbe-79c6-448a-9a9b-c75008556734 {
  margin-top: 20px;
margin-left: 15%;
margin-bottom: 20px;
margin-right: 15%;
}
@media (min-width: 768px) and (max-width: 991px){#s-ea1d0fbe-79c6-448a-9a9b-c75008556734 {
  margin-left: 5%;
margin-right: 5%;
}
}@media (max-width: 767px){#s-ea1d0fbe-79c6-448a-9a9b-c75008556734 {
  margin-left: 5%;
margin-right: 5%;
}
}
@media (min-width: 0px) {
[id="s-ea1d0fbe-79c6-448a-9a9b-c75008556734"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-ea1d0fbe-79c6-448a-9a9b-c75008556734"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-ea1d0fbe-79c6-448a-9a9b-c75008556734"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-ea1d0fbe-79c6-448a-9a9b-c75008556734"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

#s-3bcf79aa-8771-4cc1-bc63-ed5d8c95c70f {
  margin-top: 10px;
margin-left: 25%;
margin-bottom: 10px;
margin-right: 25%;
}

#s-3bcf79aa-8771-4cc1-bc63-ed5d8c95c70f .shogun-icon-wrapper {
  text-align: center;
}


#s-3bcf79aa-8771-4cc1-bc63-ed5d8c95c70f .shogun-icon-wrapper > .shogun-icon {

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

#s-c0be4e49-d41d-4e19-b8cd-7944ef233ad0 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-c0be4e49-d41d-4e19-b8cd-7944ef233ad0 .shogun-heading-component h3 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-f881fd08-b6c5-4b72-83d1-b65af209737c {
  margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-a329302f-206d-411a-a76e-0e70bee3eca8 {
  margin-top: 10px;
margin-left: 25%;
margin-bottom: 10px;
margin-right: 25%;
}

#s-a329302f-206d-411a-a76e-0e70bee3eca8 .shogun-icon-wrapper {
  text-align: center;
}


#s-a329302f-206d-411a-a76e-0e70bee3eca8 .shogun-icon-wrapper > .shogun-icon {

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

#s-97fd4391-b5fb-42f6-a8b6-76991292d539 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-97fd4391-b5fb-42f6-a8b6-76991292d539 .shogun-heading-component h3 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-a9096263-c9b6-4856-a9af-dbb0524c6244 {
  margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-d72c1be6-4d2b-4a06-a504-c626c2db0a3c {
  margin-top: 10px;
margin-left: 25%;
margin-bottom: 10px;
margin-right: 25%;
}

#s-d72c1be6-4d2b-4a06-a504-c626c2db0a3c .shogun-icon-wrapper {
  text-align: center;
}


#s-d72c1be6-4d2b-4a06-a504-c626c2db0a3c .shogun-icon-wrapper > .shogun-icon {

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

#s-5ef3ce88-1a66-4f85-b3b1-33fd3c164e1e {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-5ef3ce88-1a66-4f85-b3b1-33fd3c164e1e .shogun-heading-component h3 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-a01daff8-2512-4554-a120-867b12826297 {
  margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-451420a5-4aaa-402b-8cc5-9309ac59349f {
  margin-top: 10px;
margin-left: 25%;
margin-bottom: 10px;
margin-right: 25%;
}

#s-451420a5-4aaa-402b-8cc5-9309ac59349f .shogun-icon-wrapper {
  text-align: center;
}


#s-451420a5-4aaa-402b-8cc5-9309ac59349f .shogun-icon-wrapper > .shogun-icon {

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

#s-193b6f48-5398-4f87-9301-13c4c7387dc5 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-193b6f48-5398-4f87-9301-13c4c7387dc5 .shogun-heading-component h3 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-510218a7-206b-4666-a800-615dfc032a35 {
  margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-82a694ab-0553-484e-96d2-b72dce09f2e6 {
  margin-top: 10px;
margin-left: 25%;
margin-bottom: 10px;
margin-right: 25%;
}

#s-82a694ab-0553-484e-96d2-b72dce09f2e6 .shogun-icon-wrapper {
  text-align: center;
}


#s-82a694ab-0553-484e-96d2-b72dce09f2e6 .shogun-icon-wrapper > .shogun-icon {

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

#s-f2841feb-4ed5-4d95-a864-4c9ab149f441 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-f2841feb-4ed5-4d95-a864-4c9ab149f441 .shogun-heading-component h3 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-08562346-f719-43c1-918c-3a87cfbd6b13 {
  margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-ec591df3-cc6e-4200-859f-91abe680d9cd {
  margin-top: 10px;
margin-left: 25%;
margin-bottom: 10px;
margin-right: 25%;
}

#s-ec591df3-cc6e-4200-859f-91abe680d9cd .shogun-icon-wrapper {
  text-align: center;
}


#s-ec591df3-cc6e-4200-859f-91abe680d9cd .shogun-icon-wrapper > .shogun-icon {

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

#s-dd5361c7-f994-4a4d-b069-97e4fe2ce46d {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-dd5361c7-f994-4a4d-b069-97e4fe2ce46d .shogun-heading-component h3 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-dafa4518-2c1a-4d49-af8b-caea1e7332f9 {
  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}