.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-53661dd0-5897-4333-a003-a4a796f1a4c5 {
  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(245, 245, 245, 1);
}








#s-53661dd0-5897-4333-a003-a4a796f1a4c5 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
}#s-53661dd0-5897-4333-a003-a4a796f1a4c5.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-bd1441ad-3513-42ad-9410-392cc7aeb59b {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-bd1441ad-3513-42ad-9410-392cc7aeb59b .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-bd1441ad-3513-42ad-9410-392cc7aeb59b .shg-sld-nav-button.shg-sld-left,
#s-bd1441ad-3513-42ad-9410-392cc7aeb59b .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-65826657-3a18-49f2-8911-bd47226af66c {
  margin-top: 10px;
text-align: left;
}

#s-65826657-3a18-49f2-8911-bd47226af66c .shogun-heading-component h3 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-1e5f52e8-a8ff-47b6-bb40-31083abf3bd0 {
  margin-top: 10px;
text-align: left;
}

#s-1e5f52e8-a8ff-47b6-bb40-31083abf3bd0 .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-c940d379-c132-492d-b511-d748c5d65d67 {
  background-color: rgba(245, 245, 245, 1);
}

.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-4c50a3b1-56aa-4bb8-a503-3011de40ed7b {
  
}

#s-4c50a3b1-56aa-4bb8-a503-3011de40ed7b > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(212, 212, 212, 1);
}

#s-4c50a3b1-56aa-4bb8-a503-3011de40ed7b > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 1);
  padding: 15px;
}

#s-4c50a3b1-56aa-4bb8-a503-3011de40ed7b > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(208, 44, 48, 1);
}

#s-4c50a3b1-56aa-4bb8-a503-3011de40ed7b > .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-4c50a3b1-56aa-4bb8-a503-3011de40ed7b > .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: 20px;
}

#s-4c50a3b1-56aa-4bb8-a503-3011de40ed7b > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 20px;
}
#s-8d14fae9-7cec-4b82-a11f-0732a1a46adf {
  padding-top: 0px;
padding-left: 20px;
padding-bottom: 0px;
padding-right: 20px;
}

#s-7b0c7f8b-9b2c-4528-9e14-c118926f5b50 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
}








#s-7b0c7f8b-9b2c-4528-9e14-c118926f5b50 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7b0c7f8b-9b2c-4528-9e14-c118926f5b50.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-29feec98-b1ae-44a1-bbd3-b5a66ebebd40 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 255, 255, 1);
}

#s-29feec98-b1ae-44a1-bbd3-b5a66ebebd40 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 18px;
}

#s-29feec98-b1ae-44a1-bbd3-b5a66ebebd40 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(208, 44, 48, 1);
}

#s-29feec98-b1ae-44a1-bbd3-b5a66ebebd40 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-29feec98-b1ae-44a1-bbd3-b5a66ebebd40 > .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-29feec98-b1ae-44a1-bbd3-b5a66ebebd40 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}
#s-6eee9d1f-2d0e-46fa-a199-9aa86d754848 {
  margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
}

#s-52512ed4-41f5-4ab6-9dc0-5b708597888e {
  margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
}

#s-5ec3b654-cd6d-4f07-8c97-2369c7afa157 {
  margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
}

#s-a8a7cca3-d087-4b59-ad7e-fc3f1a14dea3 {
  margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
}

#s-332e02b7-d165-4d9f-9ea8-135e26e1e134 {
  margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
}

#s-fb92be64-3499-4487-8b05-81c5ddd7e3a8 {
  margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
}

#s-132ea57f-4b51-4b8a-928e-3ead74893a5d {
  margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
}

#s-d5c63576-44c7-43e7-ba21-7e4e86456cd8 {
  margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
}

#s-06b88978-8f63-4cdf-ac07-dd4d449408f8 {
  margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
}

#s-9a3223ad-be20-4849-a44c-cae023836bd7 {
  margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
}

#s-26472c28-1776-44ca-a05e-ffd4a3663fa7 {
  margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
}

#s-9530350f-beb9-40a3-acbf-adb507328901 {
  margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
}

#s-d7e02e76-8951-4f7e-94fb-53c356edf42b {
  margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
}

#s-48fcfedd-9d36-4e3b-89fa-c2de7fa5dda5 {
  margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
}

.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-8dbb92be-1d15-4ddf-ad7c-c1131a6423e5 {
  border-style: solid;
margin-left: 20px;
margin-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}

@media (min-width: 0px) {
[id="s-8dbb92be-1d15-4ddf-ad7c-c1131a6423e5"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-8dbb92be-1d15-4ddf-ad7c-c1131a6423e5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-8dbb92be-1d15-4ddf-ad7c-c1131a6423e5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-8dbb92be-1d15-4ddf-ad7c-c1131a6423e5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-04208340-26b4-4238-a831-05fae78ee10a {
  padding-left: 10px;
padding-right: 10px;
}

#s-c7447528-8ab4-4780-81a7-2e43c193e671 {
  padding-left: 10px;
padding-right: 10px;
}

#s-07c966e9-4e66-471c-8c63-5ac905f2615b {
  padding-left: 10px;
padding-right: 10px;
}

#s-47729494-e08f-4c63-9638-f45f9a260ece {
  border-style: solid;
margin-left: 20px;
margin-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
}

@media (min-width: 0px) {
[id="s-47729494-e08f-4c63-9638-f45f9a260ece"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-47729494-e08f-4c63-9638-f45f9a260ece"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-47729494-e08f-4c63-9638-f45f9a260ece"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-47729494-e08f-4c63-9638-f45f9a260ece"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-825a4d58-2b48-43a6-9a7b-62667250b8aa {
  padding-left: 10px;
padding-right: 10px;
}

#s-910ce5d3-5a1e-43b1-adbe-756b095c7b04 {
  padding-left: 10px;
padding-right: 10px;
}

#s-f2bb9c8b-c29b-4e17-b190-4d0d17d9df3e {
  padding-left: 10px;
padding-right: 10px;
}

#s-8024eb8e-1c2f-47b5-bfe3-01b68789882e {
  margin-left: 20px;
margin-right: 20px;
background-color: rgba(250, 250, 250, 1);
}

@media (min-width: 0px) {
[id="s-8024eb8e-1c2f-47b5-bfe3-01b68789882e"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-8024eb8e-1c2f-47b5-bfe3-01b68789882e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-8024eb8e-1c2f-47b5-bfe3-01b68789882e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-8024eb8e-1c2f-47b5-bfe3-01b68789882e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-ceb09c1c-9159-4178-ab40-08db4a2c2473 {
  padding-left: 10px;
padding-right: 10px;
}

#s-76672db2-6c8c-4e77-a872-95cc873227aa {
  padding-left: 10px;
padding-right: 10px;
}

#s-ef389521-b7ec-469f-8996-ddffc95d70b3 {
  padding-left: 10px;
padding-right: 10px;
}

#s-1132515d-a3dd-4b1d-9929-fe459f511a94 {
  margin-left: 20px;
margin-right: 20px;
background-color: rgba(250, 250, 250, 1);
}

@media (min-width: 0px) {
[id="s-1132515d-a3dd-4b1d-9929-fe459f511a94"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-1132515d-a3dd-4b1d-9929-fe459f511a94"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-1132515d-a3dd-4b1d-9929-fe459f511a94"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-1132515d-a3dd-4b1d-9929-fe459f511a94"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-8f33d75e-2b85-42bd-bbb0-02f1f888ca6f {
  padding-left: 10px;
padding-right: 10px;
}

#s-dad4ffcd-83b0-49b8-bc62-fa539c7eb0bf {
  padding-left: 10px;
padding-right: 10px;
}

#s-758d1d02-a94c-45bc-bf5a-ce432d8a0e3e {
  padding-left: 10px;
padding-right: 10px;
}

#s-4c1a7707-c9a0-4c7e-a937-ca0ed4445b72 {
  margin-left: 20px;
margin-right: 20px;
}

@media (min-width: 0px) {
[id="s-4c1a7707-c9a0-4c7e-a937-ca0ed4445b72"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-4c1a7707-c9a0-4c7e-a937-ca0ed4445b72"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-4c1a7707-c9a0-4c7e-a937-ca0ed4445b72"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-4c1a7707-c9a0-4c7e-a937-ca0ed4445b72"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-b281976c-9db0-4d56-972a-6e4e4bc7f9e4 {
  padding-left: 10px;
padding-right: 10px;
}

#s-1c71ae77-9a24-4df7-9a1a-c1a42f7b7446 {
  padding-left: 10px;
padding-right: 10px;
}

#s-70e19362-4bd7-4c8b-b58e-2e2131f4ffbf {
  padding-left: 10px;
padding-right: 10px;
}

#s-a6d55c17-c9aa-44c4-95be-42812a34bf25 {
  margin-left: 20px;
margin-right: 20px;
}

@media (min-width: 0px) {
[id="s-a6d55c17-c9aa-44c4-95be-42812a34bf25"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-a6d55c17-c9aa-44c4-95be-42812a34bf25"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-a6d55c17-c9aa-44c4-95be-42812a34bf25"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-a6d55c17-c9aa-44c4-95be-42812a34bf25"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-b1313f82-ac05-4816-be1a-9a3bc68dbf1b {
  padding-left: 10px;
padding-right: 10px;
}

#s-33eba7c5-efd8-45fa-8a9f-4ddca2f20687 {
  padding-left: 10px;
padding-right: 10px;
}

#s-d9c7e897-7a36-456f-8890-8f3b5eb3f4c6 {
  padding-left: 10px;
padding-right: 10px;
}

#s-c7007fed-4946-4b30-a9ff-6acd661f5469 {
  margin-left: 20px;
margin-right: 20px;
background-color: rgba(250, 250, 250, 1);
}

@media (min-width: 0px) {
[id="s-c7007fed-4946-4b30-a9ff-6acd661f5469"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-c7007fed-4946-4b30-a9ff-6acd661f5469"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-c7007fed-4946-4b30-a9ff-6acd661f5469"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-c7007fed-4946-4b30-a9ff-6acd661f5469"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-59a257a7-2b03-4798-bf0f-17f0a18ef968 {
  padding-left: 10px;
padding-right: 10px;
}

#s-d5d447f4-080d-47dc-b0f0-301b97e804b1 {
  padding-left: 10px;
padding-right: 10px;
}

#s-4e47c8ff-2665-42f7-a515-3f64a6cf3776 {
  padding-left: 10px;
padding-right: 10px;
}

#s-b51b2746-0d07-4899-bf4c-32cfb631b1c7 {
  margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
}

@media (min-width: 0px) {
[id="s-b51b2746-0d07-4899-bf4c-32cfb631b1c7"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-b51b2746-0d07-4899-bf4c-32cfb631b1c7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-b51b2746-0d07-4899-bf4c-32cfb631b1c7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-b51b2746-0d07-4899-bf4c-32cfb631b1c7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-92ab8075-1019-4926-bf67-f6b28630ab73 {
  padding-left: 10px;
padding-right: 10px;
}

#s-eb5daec9-e706-4373-998c-9f7237ae4b10 {
  padding-left: 10px;
padding-right: 10px;
}

#s-5544246c-0c28-4130-afaf-54dfdf643fc2 {
  padding-left: 10px;
padding-right: 10px;
}

#s-1d22ef97-35a6-45da-bacc-b1f65513b324 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
}








#s-1d22ef97-35a6-45da-bacc-b1f65513b324 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1d22ef97-35a6-45da-bacc-b1f65513b324.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bde4365f-bd8e-4554-b8ee-e08ebe0c9739 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-bde4365f-bd8e-4554-b8ee-e08ebe0c9739 .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  font-family: "Arimo";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-e1b8d0d0-7dd7-4e65-a94f-e49603d46789 {
  margin-bottom: 20px;
}

#s-d118e061-5a1f-49a5-a0ab-7e4ee822e60c {
  
}
@media (min-width: 1200px){#s-d118e061-5a1f-49a5-a0ab-7e4ee822e60c {
  display: none;
}
#s-d118e061-5a1f-49a5-a0ab-7e4ee822e60c, #wrap-s-d118e061-5a1f-49a5-a0ab-7e4ee822e60c { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d118e061-5a1f-49a5-a0ab-7e4ee822e60c {
  display: none;
}
#s-d118e061-5a1f-49a5-a0ab-7e4ee822e60c, #wrap-s-d118e061-5a1f-49a5-a0ab-7e4ee822e60c { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d118e061-5a1f-49a5-a0ab-7e4ee822e60c {
  display: none;
}
#s-d118e061-5a1f-49a5-a0ab-7e4ee822e60c, #wrap-s-d118e061-5a1f-49a5-a0ab-7e4ee822e60c { display:none !important; }}
#s-d118e061-5a1f-49a5-a0ab-7e4ee822e60c .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-d118e061-5a1f-49a5-a0ab-7e4ee822e60c .shg-sld-nav-button.shg-sld-left,
#s-d118e061-5a1f-49a5-a0ab-7e4ee822e60c .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

.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-35ffbcb8-dc89-4419-a173-ef26b6404852 {
  text-align: center;
}








#s-35ffbcb8-dc89-4419-a173-ef26b6404852 .shogun-image-content {
  
    align-items: center;
  
}

#s-95bea405-2e2d-41e0-8694-43ffa25aa685 {
  text-align: center;
}








#s-95bea405-2e2d-41e0-8694-43ffa25aa685 .shogun-image-content {
  
    align-items: center;
  
}

#s-e62e2301-0764-4083-9ae3-db045a9e40bc {
  text-align: center;
}








#s-e62e2301-0764-4083-9ae3-db045a9e40bc .shogun-image-content {
  
    align-items: center;
  
}

#s-93d75bb4-0baf-47e1-bda0-d335711a181e {
  text-align: center;
}








#s-93d75bb4-0baf-47e1-bda0-d335711a181e .shogun-image-content {
  
    align-items: center;
  
}

#s-163dadc8-f903-45b3-8778-183a2dc2e7e1 {
  text-align: center;
}








#s-163dadc8-f903-45b3-8778-183a2dc2e7e1 .shogun-image-content {
  
    align-items: center;
  
}

#s-ea583eda-c5f2-49fb-a5ad-f91d77efb126 {
  text-align: center;
}








#s-ea583eda-c5f2-49fb-a5ad-f91d77efb126 .shogun-image-content {
  
    align-items: center;
  
}

#s-b4eb6da5-0dba-4d8c-a37f-73fe68b9140b {
  text-align: center;
}








#s-b4eb6da5-0dba-4d8c-a37f-73fe68b9140b .shogun-image-content {
  
    align-items: center;
  
}

#s-2669ceab-ca85-46a9-9633-f00fbc0b8b8b {
  margin-left: 20px;
margin-right: 20px;
}
@media (max-width: 767px){#s-2669ceab-ca85-46a9-9633-f00fbc0b8b8b {
  
}
}
#s-343e3a33-8066-44bb-bcf2-f65dcbd591ee {
  margin-left: 20px;
margin-right: 20px;
}
@media (max-width: 767px){#s-343e3a33-8066-44bb-bcf2-f65dcbd591ee {
  
}
}
#s-5ef34398-a860-4600-be84-3d546c2ef4d9 {
  margin-left: 20px;
margin-right: 20px;
}
@media (max-width: 767px){#s-5ef34398-a860-4600-be84-3d546c2ef4d9 {
  
}
}
#s-eb07550b-b76c-493c-a203-3cecf4943c38 {
  margin-left: 20px;
margin-right: 20px;
}
@media (max-width: 767px){#s-eb07550b-b76c-493c-a203-3cecf4943c38 {
  
}
}
#s-8ebf2953-3c8d-4b99-8143-5efa706936a5 {
  margin-left: 20px;
margin-right: 20px;
}
@media (max-width: 767px){#s-8ebf2953-3c8d-4b99-8143-5efa706936a5 {
  
}
}
#s-a827dcef-99e2-4981-b3bb-a5481e2be6cb {
  margin-left: 20px;
margin-right: 20px;
}
@media (max-width: 767px){#s-a827dcef-99e2-4981-b3bb-a5481e2be6cb {
  
}
}
#s-0c427762-cf6c-44ea-a820-ea7d13f26296 {
  margin-left: 20px;
margin-right: 20px;
}
@media (max-width: 767px){#s-0c427762-cf6c-44ea-a820-ea7d13f26296 {
  
}
}
#s-67b78e98-82e5-49b4-8285-bf5f6fcf59d6 {
  
}
@media (max-width: 767px){#s-67b78e98-82e5-49b4-8285-bf5f6fcf59d6 {
  display: none;
}
#s-67b78e98-82e5-49b4-8285-bf5f6fcf59d6, #wrap-s-67b78e98-82e5-49b4-8285-bf5f6fcf59d6 { display:none !important; }}
@media (min-width: 0px) {
[id="s-67b78e98-82e5-49b4-8285-bf5f6fcf59d6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-67b78e98-82e5-49b4-8285-bf5f6fcf59d6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-67b78e98-82e5-49b4-8285-bf5f6fcf59d6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-67b78e98-82e5-49b4-8285-bf5f6fcf59d6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

#s-a9352d53-b6e2-413a-80c5-8ac1a0b53a2e {
  text-align: center;
}








#s-a9352d53-b6e2-413a-80c5-8ac1a0b53a2e .shogun-image-content {
  
    align-items: center;
  
}

#s-c67c076f-eee9-472f-8833-fefd2c4616ac {
  margin-left: 20px;
margin-right: 20px;
}
@media (max-width: 767px){#s-c67c076f-eee9-472f-8833-fefd2c4616ac {
  
}
}
#s-14468b66-ec22-4b95-b8ef-68c92b56c67f {
  text-align: center;
}








#s-14468b66-ec22-4b95-b8ef-68c92b56c67f .shogun-image-content {
  
    align-items: center;
  
}

#s-8aeac292-0ada-447a-91ba-2b70d6a8905b {
  margin-left: 20px;
margin-right: 20px;
}
@media (max-width: 767px){#s-8aeac292-0ada-447a-91ba-2b70d6a8905b {
  
}
}
#s-c66a749e-fdb9-4fee-920a-6dc754799593 {
  text-align: center;
}








#s-c66a749e-fdb9-4fee-920a-6dc754799593 .shogun-image-content {
  
    align-items: center;
  
}

#s-2888b9bd-b162-40a0-a986-b80701569f50 {
  margin-left: 20px;
margin-right: 20px;
}
@media (max-width: 767px){#s-2888b9bd-b162-40a0-a986-b80701569f50 {
  
}
}
#s-87698797-9760-4b09-b6ac-6937c7475faa {
  border-style: solid;
margin-left: px;
margin-right: px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(212, 212, 212, 0);
}
@media (max-width: 767px){#s-87698797-9760-4b09-b6ac-6937c7475faa {
  display: none;
}
#s-87698797-9760-4b09-b6ac-6937c7475faa, #wrap-s-87698797-9760-4b09-b6ac-6937c7475faa { display:none !important; }}
@media (min-width: 0px) {
[id="s-87698797-9760-4b09-b6ac-6937c7475faa"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-87698797-9760-4b09-b6ac-6937c7475faa"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-87698797-9760-4b09-b6ac-6937c7475faa"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-87698797-9760-4b09-b6ac-6937c7475faa"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

#s-09797e5e-3755-4e0e-9e8b-d2b8ce35f53f {
  text-align: center;
}








#s-09797e5e-3755-4e0e-9e8b-d2b8ce35f53f .shogun-image-content {
  
    align-items: center;
  
}

#s-ea03c18e-2762-42af-8ffd-a66a04a85466 {
  margin-left: 20px;
margin-right: 20px;
}
@media (max-width: 767px){#s-ea03c18e-2762-42af-8ffd-a66a04a85466 {
  
}
}
#s-beb06e5e-ebf8-4205-88d8-15a496f6790a {
  text-align: center;
}








#s-beb06e5e-ebf8-4205-88d8-15a496f6790a .shogun-image-content {
  
    align-items: center;
  
}

#s-a337ffd7-f85d-4361-9051-c060df12b308 {
  margin-left: 20px;
margin-right: 20px;
}
@media (max-width: 767px){#s-a337ffd7-f85d-4361-9051-c060df12b308 {
  
}
}
#s-c90a9856-4d73-4cc8-9010-1ad015773dd6 {
  text-align: center;
}








#s-c90a9856-4d73-4cc8-9010-1ad015773dd6 .shogun-image-content {
  
    align-items: center;
  
}

#s-6a3db23c-366d-47a4-9537-cf47f7c0b2ef {
  margin-left: 20px;
margin-right: 20px;
}
@media (max-width: 767px){#s-6a3db23c-366d-47a4-9537-cf47f7c0b2ef {
  
}
}
#s-6a3208c3-14f6-4f1c-a412-56522271e106 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
}








#s-6a3208c3-14f6-4f1c-a412-56522271e106 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6a3208c3-14f6-4f1c-a412-56522271e106.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-59bde29a-af78-456a-8052-010a9895f940 {
  min-height: 50px;
}








#s-59bde29a-af78-456a-8052-010a9895f940 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-59bde29a-af78-456a-8052-010a9895f940.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-b86b9695-fcd0-428e-ab1e-676f40f1e890 {
  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-b86b9695-fcd0-428e-ab1e-676f40f1e890"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-b86b9695-fcd0-428e-ab1e-676f40f1e890"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-b86b9695-fcd0-428e-ab1e-676f40f1e890"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-b86b9695-fcd0-428e-ab1e-676f40f1e890"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-d3bec67b-56ad-4460-b205-d04852fdae8e {
  
}

#s-16736d3d-78dd-4811-98d1-fa4bec654099 {
  
}

#s-003e5ce8-3a6b-4a1a-82eb-d2348dcded69 {
  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-003e5ce8-3a6b-4a1a-82eb-d2348dcded69"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-003e5ce8-3a6b-4a1a-82eb-d2348dcded69"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-003e5ce8-3a6b-4a1a-82eb-d2348dcded69"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-003e5ce8-3a6b-4a1a-82eb-d2348dcded69"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-37f3ccf2-3ced-4bb7-9a6d-def429155c44 {
  
}

#s-a10986ff-381d-4386-9a77-75485bb3cd82 {
  
}

#s-dcff5c67-314f-4ee8-8be5-82d1aa946333 {
  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-dcff5c67-314f-4ee8-8be5-82d1aa946333"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-dcff5c67-314f-4ee8-8be5-82d1aa946333"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-dcff5c67-314f-4ee8-8be5-82d1aa946333"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-dcff5c67-314f-4ee8-8be5-82d1aa946333"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-56a4574d-e871-4326-ba33-37a1fb7ce906 {
  
}

#s-4f44e3f8-d05a-4af8-a23c-5059c1abbb12 {
  
}

#s-a2bb74b0-fce8-400a-b638-3e1d34a23796 {
  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-a2bb74b0-fce8-400a-b638-3e1d34a23796"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-a2bb74b0-fce8-400a-b638-3e1d34a23796"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a2bb74b0-fce8-400a-b638-3e1d34a23796"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a2bb74b0-fce8-400a-b638-3e1d34a23796"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-bb52a665-3c56-41c2-844b-b8d05d632517 {
  
}

#s-fd74670e-d2a1-44ec-922d-7f6b2e93027f {
  
}

#s-5cdb741d-4e72-499a-9490-a47a43bc2b83 {
  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-5cdb741d-4e72-499a-9490-a47a43bc2b83"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-5cdb741d-4e72-499a-9490-a47a43bc2b83"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5cdb741d-4e72-499a-9490-a47a43bc2b83"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5cdb741d-4e72-499a-9490-a47a43bc2b83"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-b24117d7-4e0a-4fbc-9ac2-cbc6559633ae {
  
}

#s-703e1ab9-f0c3-4d4c-82c7-ab0c64b5aacb {
  
}

#s-ee2103ed-299b-4fe3-8c13-8d92d2d067eb {
  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-ee2103ed-299b-4fe3-8c13-8d92d2d067eb"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-ee2103ed-299b-4fe3-8c13-8d92d2d067eb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-ee2103ed-299b-4fe3-8c13-8d92d2d067eb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-ee2103ed-299b-4fe3-8c13-8d92d2d067eb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-1f1dca8f-2b2d-49f0-a6b9-b7a6e6b876dd {
  
}

#s-0bfcec09-90b3-4b0c-809f-7443be89148e {
  
}

#s-035289a2-4d8f-46ed-91ac-cc8a3cd57855 {
  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-035289a2-4d8f-46ed-91ac-cc8a3cd57855"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-035289a2-4d8f-46ed-91ac-cc8a3cd57855"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-035289a2-4d8f-46ed-91ac-cc8a3cd57855"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-035289a2-4d8f-46ed-91ac-cc8a3cd57855"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-26f80188-0a33-4722-8f86-ce0a4837837e {
  
}

#s-0d20804c-b2a9-4553-aa1f-3be4299f282a {
  
}

#s-b6900d8c-1537-4c20-a570-d7851799ab2a {
  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-b6900d8c-1537-4c20-a570-d7851799ab2a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-b6900d8c-1537-4c20-a570-d7851799ab2a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-b6900d8c-1537-4c20-a570-d7851799ab2a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-b6900d8c-1537-4c20-a570-d7851799ab2a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-61e28915-8075-4010-a177-7fca0df50de1 {
  
}

#s-66b82596-acb5-4036-8b92-e0754f071847 {
  
}

#s-d6f64611-bbe3-4109-b18a-e96fe5267a2a {
  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-d6f64611-bbe3-4109-b18a-e96fe5267a2a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-d6f64611-bbe3-4109-b18a-e96fe5267a2a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d6f64611-bbe3-4109-b18a-e96fe5267a2a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d6f64611-bbe3-4109-b18a-e96fe5267a2a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-49869114-fbed-4b0b-b8ee-35cb9e7cff66 {
  
}

#s-577b6a8a-c8f7-4402-a4d9-0a684ad96eac {
  
}

#s-2cc4d7a8-5a7d-47d8-aa0e-9220773095b2 {
  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-2cc4d7a8-5a7d-47d8-aa0e-9220773095b2"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-2cc4d7a8-5a7d-47d8-aa0e-9220773095b2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-2cc4d7a8-5a7d-47d8-aa0e-9220773095b2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-2cc4d7a8-5a7d-47d8-aa0e-9220773095b2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-b49acb3a-e161-478f-8d39-fdf3c09c0046 {
  
}

#s-8adfad47-0acb-4abb-882b-2d1d6d5564d0 {
  
}

#s-b0d31883-c3a7-4582-819d-a09a54612ed6 {
  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-b0d31883-c3a7-4582-819d-a09a54612ed6"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-b0d31883-c3a7-4582-819d-a09a54612ed6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-b0d31883-c3a7-4582-819d-a09a54612ed6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-b0d31883-c3a7-4582-819d-a09a54612ed6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-4d1dd014-b2c7-483a-be11-e6a0661a4fc6 {
  
}

#s-21b85b00-74d7-4bc5-a7f2-cdae14f1d1c8 {
  
}

#s-b9da52f0-7270-441c-a771-03335deaf050 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
}








#s-b9da52f0-7270-441c-a771-03335deaf050 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b9da52f0-7270-441c-a771-03335deaf050.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-850e7d1f-a47a-41db-ac96-bd7c63f866c0 {
  
}

#s-68e19bf4-8689-480c-bd1f-653edf55a36d {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
}








#s-68e19bf4-8689-480c-bd1f-653edf55a36d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-68e19bf4-8689-480c-bd1f-653edf55a36d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dd078edb-1808-4df5-be87-46a539631568 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-dd078edb-1808-4df5-be87-46a539631568 .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  font-family: "Arimo";
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



#s-a2651c3c-04ac-43e6-badf-e8b800f44816 {
  margin-bottom: 20px;
}

#s-fb18e6dc-7326-45e3-85ec-730cc38d4dcd {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-fb18e6dc-7326-45e3-85ec-730cc38d4dcd .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



.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-80beeae9-0ecf-4654-a75a-78183f746fae {
  margin-top: 20px;
}

#s-adbd6b1f-c6e8-418b-aeab-6e3da4e17454 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
max-width: 100px;
}

#s-110be6ea-5b8d-4892-95f1-a09b2e112a2b {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
}








#s-110be6ea-5b8d-4892-95f1-a09b2e112a2b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-110be6ea-5b8d-4892-95f1-a09b2e112a2b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4f3696b2-534c-48f0-b81f-b75745f5295d {
  margin-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-4f3696b2-534c-48f0-b81f-b75745f5295d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4f3696b2-534c-48f0-b81f-b75745f5295d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 7.5px);
}

[id="s-4f3696b2-534c-48f0-b81f-b75745f5295d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-4f3696b2-534c-48f0-b81f-b75745f5295d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 7.5px);
}

[id="s-4f3696b2-534c-48f0-b81f-b75745f5295d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-4f3696b2-534c-48f0-b81f-b75745f5295d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 7.5px);
}

[id="s-4f3696b2-534c-48f0-b81f-b75745f5295d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 7.5px);
}

}

@media (max-width: 767px) {
  [id="s-4f3696b2-534c-48f0-b81f-b75745f5295d"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-c4376699-2aed-4b34-be79-84b825ee5e7e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-c4376699-2aed-4b34-be79-84b825ee5e7e .shogun-heading-component h2 {
  color: rgba(208, 44, 48, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-d02d15f6-4f72-4f87-96b9-7fc0687725cf {
  
}

#s-0e7ec2a6-d98f-45bf-95c1-d7c247852e8b {
  text-align: center;
}








#s-0e7ec2a6-d98f-45bf-95c1-d7c247852e8b .shogun-image-content {
  
    align-items: center;
  
}

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

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-c:after,.shg-c:before{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width:1024px){.shg-box,.shg-c{background-attachment:scroll!important}}@media only screen and (min-width:1024px) and (max-height:1366px) and (-webkit-min-device-pixel-ratio:1.5) and (hover:none) and (orientation:landscape){.shg-box{background-attachment:scroll!important}}#mc_embed_signup .clear{width:auto!important;height:auto!important;visibility:visible!important}.shg-clearfix:after{content:"";display:block;clear:both}.shogun-image{max-width:100%;min-height:inherit;max-height:inherit;display:inline!important;border:0;vertical-align:middle}.shg-fw{margin-left:calc(50% - 50vw);width:100vw}.shg-fw .shg-fw{margin-left:auto;margin-right:auto;width:100%}div[data-shg-lightbox-switch]{cursor:pointer}.shg-lightbox{position:fixed;z-index:999999;left:0;top:0;width:100%;height:100%;overflow:hidden;background-color:#000;background-color:rgba(0,0,0,.85)}.shg-lightbox.hidden{display:none!important}.shg-lightbox .shg-lightbox-content{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:100%;text-align:center}.shg-lightbox .shg-lightbox-close{position:absolute;right:0;padding:5px 0;color:#fff;font-size:45px;margin-right:10px;line-height:30px;user-select:none;cursor:pointer;z-index:1}.shg-lightbox .shg-lightbox-image-container{padding:25px}.shg-lightbox .shg-lightbox-image{margin:auto;max-height:90vh;max-width:100%}.shg-lightbox .shg-lightbox-close:focus,.shg-lightbox .shg-lightbox-close:hover{color:#a2a2a2;text-decoration:none;cursor:pointer}.shg-lightbox .shg-lightbox-nav{cursor:pointer;position:absolute;top:50%;width:35px;height:100px;background-size:contain;background-repeat:no-repeat;background-position:center;transform:translate(0,-50%);z-index:1}.shg-lightbox .shg-lightbox-nav.hidden{display:none!important}.shg-lightbox .shg-lightbox-nav.shg-nav-left{left:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==)}.shg-lightbox .shg-lightbox-nav.shg-nav-right{right:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+)}@media screen and (min-width:769px){.shg-lightbox .shg-lightbox-image-container{padding:50px}}.shogun-lazyload:not([src]),.shogun-lazyloading:not([src]){opacity:0}.shogun-lazyloaded{opacity:1;transition:opacity .3s}.shogun-lazyload-bg-image{display:none}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{display:inline-block}[data-animations*=enterviewport][data-animations*=fadeIn],[data-animations*=enterviewport][data-animations*=zoomIn]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}