.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-63db6c98-a50c-48c3-87e7-2bec79bd14bd {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
min-height: 60px;
max-width: 1900px;
background-color: rgba(255, 255, 255, 1);
}








#s-63db6c98-a50c-48c3-87e7-2bec79bd14bd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-63db6c98-a50c-48c3-87e7-2bec79bd14bd {
  cursor: pointer;
}#s-63db6c98-a50c-48c3-87e7-2bec79bd14bd.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.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-ab1d782f-ac28-4410-84ff-67e48b823f9b {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
max-width: 1900px;
}

#s-ab1d782f-ac28-4410-84ff-67e48b823f9b .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-ab1d782f-ac28-4410-84ff-67e48b823f9b .shg-sld-nav-button.shg-sld-left,
#s-ab1d782f-ac28-4410-84ff-67e48b823f9b .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-27f122f7-cb40-4e59-83d9-3ed6be48ce17 {
  margin-top: auto;
margin-left: auto;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
max-width: 1900px;
background-color: rgba(135, 198, 90, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-27f122f7-cb40-4e59-83d9-3ed6be48ce17 {
  display: none;
}
#s-27f122f7-cb40-4e59-83d9-3ed6be48ce17, #wrap-s-27f122f7-cb40-4e59-83d9-3ed6be48ce17 { display: none !important; }}@media (max-width: 767px){#s-27f122f7-cb40-4e59-83d9-3ed6be48ce17 {
  display: none;
}
#s-27f122f7-cb40-4e59-83d9-3ed6be48ce17, #wrap-s-27f122f7-cb40-4e59-83d9-3ed6be48ce17 { display: none !important; }}







#s-27f122f7-cb40-4e59-83d9-3ed6be48ce17 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-27f122f7-cb40-4e59-83d9-3ed6be48ce17 {
  cursor: pointer;
}#s-27f122f7-cb40-4e59-83d9-3ed6be48ce17.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.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-cd419fc6-603f-4e16-9362-098718ccf0b6 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 10px;
}

.shogun-countdown {
  display: flex;
  text-align: center;
  justify-content: center;
}

.shg-align-left > .shogun-countdown {
  justify-content: flex-start;
}

.shg-align-right > .shogun-countdown {
  justify-content: flex-end;
}

.shogun-countdown > div {
  padding: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.shogun-countdown > div > label {
  font-size: 12px;
}

.shogun-countdown > span {
  padding: 5px;
  font-size: 32px;
  line-height: 32px;
}

.shogun-countdown > div > span {
  font-size: 32px;
  line-height: 32px;
  font-weight: 600;
}

.shogun-countdown-small > div > label {
  font-size: 8px;
}

.shogun-countdown-small > span,
.shogun-countdown-small > div > span  {
  font-size: 21px;
  line-height: 21px;
}

.shogun-countdown-large > div > label {
  font-size: 18px;
}

.shogun-countdown-large > span,
.shogun-countdown-large > div > span {
  font-size: 48px;
  line-height: 48px;
}

@media (min-width: 768px) {
  .shogun-countdown > span,
  .shogun-countdown > div > span {
    font-size: 45px;
    line-height: 45px;
  }

  .shogun-countdown-small > span,
  .shogun-countdown-small > div > span {
    font-size: 30px;
    line-height: 30px;
  }

  .shogun-countdown-large > span,
  .shogun-countdown-large > div > span {
    font-size: 68px;
    line-height: 68px;
  }
}

#s-05dd212f-9740-4c0a-bf30-9e2a2cf90331 {
  margin-top: -15px;
margin-bottom: 0px;
}

#s-05dd212f-9740-4c0a-bf30-9e2a2cf90331 .shogun-countdown span, #s-05dd212f-9740-4c0a-bf30-9e2a2cf90331 .shogun-countdown label {
  color: rgba(255, 255, 255, 1);
}
#s-a2ad36f4-9e42-4db1-ae10-c3a10e41a6c5 {
  margin-top: -5px;
margin-bottom: -5px;
background-color: rgba(0, 96, 170, 1);
}








#s-a2ad36f4-9e42-4db1-ae10-c3a10e41a6c5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a2ad36f4-9e42-4db1-ae10-c3a10e41a6c5 {
  cursor: pointer;
}#s-a2ad36f4-9e42-4db1-ae10-c3a10e41a6c5.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-e4fa3c60-d830-4755-8ec8-02fde8594940 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 20px;
padding-bottom: 0px;
}

#s-cee79668-a46a-4d71-aae3-07459504c6a4 {
  margin-top: 0px;
margin-bottom: 15px;
padding-top: 0px;
padding-bottom: 0px;
background-color: rgba(135, 198, 90, 1);
}
@media (min-width: 1200px){#s-cee79668-a46a-4d71-aae3-07459504c6a4 {
  display: none;
}
#s-cee79668-a46a-4d71-aae3-07459504c6a4, #wrap-s-cee79668-a46a-4d71-aae3-07459504c6a4 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-cee79668-a46a-4d71-aae3-07459504c6a4 {
  display: none;
}
#s-cee79668-a46a-4d71-aae3-07459504c6a4, #wrap-s-cee79668-a46a-4d71-aae3-07459504c6a4 { display: none !important; }}







#s-cee79668-a46a-4d71-aae3-07459504c6a4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cee79668-a46a-4d71-aae3-07459504c6a4 {
  cursor: pointer;
}#s-cee79668-a46a-4d71-aae3-07459504c6a4.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-86f048c0-4686-42e8-a034-95d4b1f27f68 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 20px;
}

#s-df727791-4116-4cfe-a69d-8d72ef92d132 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 25px;
padding-bottom: 10px;
min-height: 575px;
background-position: center center;
}
@media (min-width: 1200px){#s-df727791-4116-4cfe-a69d-8d72ef92d132 {
  display: none;
}
#s-df727791-4116-4cfe-a69d-8d72ef92d132, #wrap-s-df727791-4116-4cfe-a69d-8d72ef92d132 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-df727791-4116-4cfe-a69d-8d72ef92d132 {
  display: none;
}
#s-df727791-4116-4cfe-a69d-8d72ef92d132, #wrap-s-df727791-4116-4cfe-a69d-8d72ef92d132 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-df727791-4116-4cfe-a69d-8d72ef92d132 {
  display: unset;
}
#s-df727791-4116-4cfe-a69d-8d72ef92d132, #wrap-s-df727791-4116-4cfe-a69d-8d72ef92d132 { display: unset !important; }}@media (max-width: 767px){#s-df727791-4116-4cfe-a69d-8d72ef92d132 {
  min-height: 450px;
}
}
#s-df727791-4116-4cfe-a69d-8d72ef92d132 {
  background-image: url(https://i.shgcdn.com/8378bae4-772a-45da-b7a4-68e0b49de487/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}

@media (max-width: 480px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-df727791-4116-4cfe-a69d-8d72ef92d132 {
  background-image: url(https://i.shgcdn.com/8378bae4-772a-45da-b7a4-68e0b49de487/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/480x/);
}

}
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
#s-df727791-4116-4cfe-a69d-8d72ef92d132 {
  background-image: url(https://i.shgcdn.com/8378bae4-772a-45da-b7a4-68e0b49de487/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/960x/);
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-df727791-4116-4cfe-a69d-8d72ef92d132 {
  background-image: url(https://i.shgcdn.com/8378bae4-772a-45da-b7a4-68e0b49de487/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/768x/);
}

}
@media (min-width: 481px) and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
#s-df727791-4116-4cfe-a69d-8d72ef92d132 {
  background-image: url(https://i.shgcdn.com/8378bae4-772a-45da-b7a4-68e0b49de487/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1536x/);
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-df727791-4116-4cfe-a69d-8d72ef92d132 {
  background-image: url(https://i.shgcdn.com/8378bae4-772a-45da-b7a4-68e0b49de487/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1024x/);
}

}
@media (min-width: 769px) and (max-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
#s-df727791-4116-4cfe-a69d-8d72ef92d132 {
  background-image: url(https://i.shgcdn.com/8378bae4-772a-45da-b7a4-68e0b49de487/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}

}
@media (min-width: 1025px) and (-webkit-max-device-pixel-ratio: 1.9) {
#s-df727791-4116-4cfe-a69d-8d72ef92d132 {
  background-image: url(https://i.shgcdn.com/8378bae4-772a-45da-b7a4-68e0b49de487/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/1200x/);
}

}
@media (min-width: 1025px) and (-webkit-min-device-pixel-ratio: 2) {
#s-df727791-4116-4cfe-a69d-8d72ef92d132 {
  background-image: url(https://i.shgcdn.com/8378bae4-772a-45da-b7a4-68e0b49de487/-/format/auto/-/preview/3000x3000/-/quality/lighter/-/resize/2048x/);
}

}







#s-df727791-4116-4cfe-a69d-8d72ef92d132 > .shg-box-overlay {
  background-color: #000;
  opacity: 2.775557561562891e-17;
}#s-df727791-4116-4cfe-a69d-8d72ef92d132 {
  cursor: pointer;
}#s-df727791-4116-4cfe-a69d-8d72ef92d132.shg-box.shg-c {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#s-c8166132-c64e-435a-9636-a2507058939a {
  margin-top: 0px;
padding-top: 5px;
padding-bottom: 10px;
min-height: 50px;
}








#s-c8166132-c64e-435a-9636-a2507058939a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c8166132-c64e-435a-9636-a2507058939a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

.shg-btn {
  cursor: pointer;
  box-sizing: border-box;
}

.shg-btn-text {
  font-weight: ;
  font-family: ;
}

.shg-btn.shg-btn-stretch {
  display: block;
}

.shg-btn:not(.shg-btn-stretch) {
  display: inline-block;
}

.shg-btn-wrapper.shg-align-left {
  text-align: left;
}

.shg-btn-wrapper.shg-align-center {
  text-align: center;
}

.shg-btn-wrapper.shg-align-right {
  text-align: right;
}

#s-b35a068e-379a-4032-88e8-666df14c0fc6 {
  border-style: solid;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(135, 198, 90, 1);
border-radius: 2px;
background-color: rgba(135, 198, 90, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-b35a068e-379a-4032-88e8-666df14c0fc6:hover {border-style: solid !important;
border-top-width: 4px !important;
border-left-width: 4px !important;
border-bottom-width: 4px !important;
border-right-width: 4px !important;
border-color: rgba(194, 194, 194, 1) !important;
border-radius: 4px !important;
background-color: rgba(194, 194, 194, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-b35a068e-379a-4032-88e8-666df14c0fc6:active {border-style: solid !important;
border-top-width: 4px !important;
border-left-width: 4px !important;
border-bottom-width: 4px !important;
border-right-width: 4px !important;
border-color: #2C2A34 !important;
border-radius: 4px !important;
background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-b35a068e-379a-4032-88e8-666df14c0fc6 {
  display: none;
}
#s-b35a068e-379a-4032-88e8-666df14c0fc6, #wrap-s-b35a068e-379a-4032-88e8-666df14c0fc6 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b35a068e-379a-4032-88e8-666df14c0fc6 {
  display: none;
}
#s-b35a068e-379a-4032-88e8-666df14c0fc6, #wrap-s-b35a068e-379a-4032-88e8-666df14c0fc6 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b35a068e-379a-4032-88e8-666df14c0fc6 {
  display: none;
}
#s-b35a068e-379a-4032-88e8-666df14c0fc6, #wrap-s-b35a068e-379a-4032-88e8-666df14c0fc6 { display: none !important; }}

  #s-b35a068e-379a-4032-88e8-666df14c0fc6-root {
    text-align: center;
  }


#s-b35a068e-379a-4032-88e8-666df14c0fc6.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b35a068e-379a-4032-88e8-666df14c0fc6-root {
    text-align: center;
  }


#s-b35a068e-379a-4032-88e8-666df14c0fc6.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b35a068e-379a-4032-88e8-666df14c0fc6-root {
    text-align: center;
  }


#s-b35a068e-379a-4032-88e8-666df14c0fc6.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b35a068e-379a-4032-88e8-666df14c0fc6-root {
    text-align: center;
  }


#s-b35a068e-379a-4032-88e8-666df14c0fc6.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b35a068e-379a-4032-88e8-666df14c0fc6-root {
    text-align: center;
  }


#s-b35a068e-379a-4032-88e8-666df14c0fc6.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
#s-62bb6a19-8cd6-4dc1-89c9-a3a3a1dcf5f7 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: -10px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 25px;
padding-bottom: 10px;
min-height: 600px;
max-width: 1900px;
background-position: center center;
}
@media (min-width: 768px) and (max-width: 991px){#s-62bb6a19-8cd6-4dc1-89c9-a3a3a1dcf5f7 {
  display: none;
}
#s-62bb6a19-8cd6-4dc1-89c9-a3a3a1dcf5f7, #wrap-s-62bb6a19-8cd6-4dc1-89c9-a3a3a1dcf5f7 { display: none !important; }}@media (max-width: 767px){#s-62bb6a19-8cd6-4dc1-89c9-a3a3a1dcf5f7 {
  display: none;
}
#s-62bb6a19-8cd6-4dc1-89c9-a3a3a1dcf5f7, #wrap-s-62bb6a19-8cd6-4dc1-89c9-a3a3a1dcf5f7 { display: none !important; }}
#s-62bb6a19-8cd6-4dc1-89c9-a3a3a1dcf5f7 {
  background-image: url(https://i.shgcdn.com/e327670c-0413-4a5b-8404-2d40189c3ac0/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-62bb6a19-8cd6-4dc1-89c9-a3a3a1dcf5f7 > .shg-box-overlay {
  background-color: #000;
  opacity: 0.5;
}#s-62bb6a19-8cd6-4dc1-89c9-a3a3a1dcf5f7 {
  cursor: pointer;
}#s-62bb6a19-8cd6-4dc1-89c9-a3a3a1dcf5f7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d7dcf0b8-365a-4fd9-b201-9b1a4685e809 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
min-height: 400px;
}

#s-d7dcf0b8-365a-4fd9-b201-9b1a4685e809 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-d7dcf0b8-365a-4fd9-b201-9b1a4685e809 .shg-sld-nav-button.shg-sld-left,
#s-d7dcf0b8-365a-4fd9-b201-9b1a4685e809 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-0d3f5770-5182-4bef-b858-658297cfcbff {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
min-height: 300px;
}








#s-0d3f5770-5182-4bef-b858-658297cfcbff > .shg-box-overlay {
  background-color: rgba(51, 51, 51, 1);
  opacity: 0;
}#s-0d3f5770-5182-4bef-b858-658297cfcbff.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-ebd626e9-dceb-41e9-a7d6-3b1edf3ab048 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-left: 85px;
padding-right: 85px;
}

@media (min-width: 0px) {
[id="s-ebd626e9-dceb-41e9-a7d6-3b1edf3ab048"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ebd626e9-dceb-41e9-a7d6-3b1edf3ab048"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-ebd626e9-dceb-41e9-a7d6-3b1edf3ab048"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-ebd626e9-dceb-41e9-a7d6-3b1edf3ab048"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 7.5px);
}

}

#s-3a90e055-6f02-4012-ba9f-6a7a82ddbb6f {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-left: 0%;
min-height: 500px;
}
@media (max-width: 767px){#s-3a90e055-6f02-4012-ba9f-6a7a82ddbb6f {
  min-height: 400px;
}
}







#s-3a90e055-6f02-4012-ba9f-6a7a82ddbb6f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3a90e055-6f02-4012-ba9f-6a7a82ddbb6f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3fecf90f-2a1b-4f1d-96d9-a3296264bfb6 {
  margin-left: auto;
margin-bottom: -15px;
margin-right: auto;
padding-left: 3%;
}
@media (max-width: 767px){#s-3fecf90f-2a1b-4f1d-96d9-a3296264bfb6 {
  display: none;
}
#s-3fecf90f-2a1b-4f1d-96d9-a3296264bfb6, #wrap-s-3fecf90f-2a1b-4f1d-96d9-a3296264bfb6 { display: none !important; }}
#s-44003a31-906b-4658-bfc2-24dec900fd3e {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-left: 3%;
}
@media (max-width: 767px){#s-44003a31-906b-4658-bfc2-24dec900fd3e {
  display: none;
}
#s-44003a31-906b-4658-bfc2-24dec900fd3e, #wrap-s-44003a31-906b-4658-bfc2-24dec900fd3e { display: none !important; }}
#s-624370d6-7868-45da-825f-83561af3f491 {
  margin-top: -30px;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 3%;
padding-bottom: 10px;
}
@media (max-width: 767px){#s-624370d6-7868-45da-825f-83561af3f491 {
  display: none;
}
#s-624370d6-7868-45da-825f-83561af3f491, #wrap-s-624370d6-7868-45da-825f-83561af3f491 { display: none !important; }}
#s-7df92bb5-6e83-44cf-b55e-5e0429e6eb96 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
}
@media (min-width: 1200px){#s-7df92bb5-6e83-44cf-b55e-5e0429e6eb96 {
  display: none;
}
#s-7df92bb5-6e83-44cf-b55e-5e0429e6eb96, #wrap-s-7df92bb5-6e83-44cf-b55e-5e0429e6eb96 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7df92bb5-6e83-44cf-b55e-5e0429e6eb96 {
  display: none;
}
#s-7df92bb5-6e83-44cf-b55e-5e0429e6eb96, #wrap-s-7df92bb5-6e83-44cf-b55e-5e0429e6eb96 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7df92bb5-6e83-44cf-b55e-5e0429e6eb96 {
  display: none;
}
#s-7df92bb5-6e83-44cf-b55e-5e0429e6eb96, #wrap-s-7df92bb5-6e83-44cf-b55e-5e0429e6eb96 { display: none !important; }}
#s-d541b694-ad05-4ece-9b78-81aed967c433 {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
min-height: 50px;
}
@media (max-width: 767px){#s-d541b694-ad05-4ece-9b78-81aed967c433 {
  display: none;
}
#s-d541b694-ad05-4ece-9b78-81aed967c433, #wrap-s-d541b694-ad05-4ece-9b78-81aed967c433 { display: none !important; }}







#s-d541b694-ad05-4ece-9b78-81aed967c433 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d541b694-ad05-4ece-9b78-81aed967c433.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d9ee825a-abeb-4ac4-adf4-bbae83106278 {
  border-style: solid;
margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(66, 66, 66, 1);
border-radius: 2px;
background-color: rgba(66, 66, 66, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-d9ee825a-abeb-4ac4-adf4-bbae83106278:hover {border-style: solid !important;
border-top-width: 4px !important;
border-left-width: 4px !important;
border-bottom-width: 4px !important;
border-right-width: 4px !important;
border-color: rgba(194, 194, 194, 1) !important;
border-radius: 4px !important;
background-color: rgba(194, 194, 194, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-d9ee825a-abeb-4ac4-adf4-bbae83106278:active {border-style: solid !important;
border-top-width: 4px !important;
border-left-width: 4px !important;
border-bottom-width: 4px !important;
border-right-width: 4px !important;
border-color: #2C2A34 !important;
border-radius: 4px !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-d9ee825a-abeb-4ac4-adf4-bbae83106278-root {
    text-align: left;
  }


#s-d9ee825a-abeb-4ac4-adf4-bbae83106278.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d9ee825a-abeb-4ac4-adf4-bbae83106278-root {
    text-align: left;
  }


#s-d9ee825a-abeb-4ac4-adf4-bbae83106278.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d9ee825a-abeb-4ac4-adf4-bbae83106278-root {
    text-align: left;
  }


#s-d9ee825a-abeb-4ac4-adf4-bbae83106278.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d9ee825a-abeb-4ac4-adf4-bbae83106278-root {
    text-align: left;
  }


#s-d9ee825a-abeb-4ac4-adf4-bbae83106278.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d9ee825a-abeb-4ac4-adf4-bbae83106278-root {
    text-align: left;
  }


#s-d9ee825a-abeb-4ac4-adf4-bbae83106278.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
#s-b707e6b9-1c0e-4f3e-ba62-247421ccdd23 {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
min-height: 50px;
}
@media (max-width: 767px){#s-b707e6b9-1c0e-4f3e-ba62-247421ccdd23 {
  display: none;
}
#s-b707e6b9-1c0e-4f3e-ba62-247421ccdd23, #wrap-s-b707e6b9-1c0e-4f3e-ba62-247421ccdd23 { display: none !important; }}







#s-b707e6b9-1c0e-4f3e-ba62-247421ccdd23 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b707e6b9-1c0e-4f3e-ba62-247421ccdd23.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2a801877-4620-4e62-ae99-9c9bfeef1dab {
  border-style: solid;
margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(66, 66, 66, 1);
border-radius: 2px;
background-color: rgba(66, 66, 66, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-2a801877-4620-4e62-ae99-9c9bfeef1dab:hover {border-style: solid !important;
border-top-width: 4px !important;
border-left-width: 4px !important;
border-bottom-width: 4px !important;
border-right-width: 4px !important;
border-color: rgba(194, 194, 194, 1) !important;
border-radius: 4px !important;
background-color: rgba(194, 194, 194, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-2a801877-4620-4e62-ae99-9c9bfeef1dab:active {border-style: solid !important;
border-top-width: 4px !important;
border-left-width: 4px !important;
border-bottom-width: 4px !important;
border-right-width: 4px !important;
border-color: #2C2A34 !important;
border-radius: 4px !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-2a801877-4620-4e62-ae99-9c9bfeef1dab-root {
    text-align: left;
  }


#s-2a801877-4620-4e62-ae99-9c9bfeef1dab.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-2a801877-4620-4e62-ae99-9c9bfeef1dab-root {
    text-align: left;
  }


#s-2a801877-4620-4e62-ae99-9c9bfeef1dab.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2a801877-4620-4e62-ae99-9c9bfeef1dab-root {
    text-align: left;
  }


#s-2a801877-4620-4e62-ae99-9c9bfeef1dab.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2a801877-4620-4e62-ae99-9c9bfeef1dab-root {
    text-align: left;
  }


#s-2a801877-4620-4e62-ae99-9c9bfeef1dab.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-2a801877-4620-4e62-ae99-9c9bfeef1dab-root {
    text-align: left;
  }


#s-2a801877-4620-4e62-ae99-9c9bfeef1dab.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
#s-76980b42-fda8-45cd-ba78-0589695723df {
  padding-top: 5px;
padding-left: 3%;
padding-bottom: 5px;
min-height: 50px;
}
@media (max-width: 767px){#s-76980b42-fda8-45cd-ba78-0589695723df {
  display: none;
}
#s-76980b42-fda8-45cd-ba78-0589695723df, #wrap-s-76980b42-fda8-45cd-ba78-0589695723df { display: none !important; }}







#s-76980b42-fda8-45cd-ba78-0589695723df > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-76980b42-fda8-45cd-ba78-0589695723df.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f19a6ec9-b5fb-4054-833a-08e36f78a053 {
  border-style: solid;
margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(66, 66, 66, 1);
border-radius: 2px;
background-color: rgba(66, 66, 66, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-f19a6ec9-b5fb-4054-833a-08e36f78a053:hover {border-style: solid !important;
border-top-width: 4px !important;
border-left-width: 4px !important;
border-bottom-width: 4px !important;
border-right-width: 4px !important;
border-color: rgba(194, 194, 194, 1) !important;
border-radius: 4px !important;
background-color: rgba(194, 194, 194, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-f19a6ec9-b5fb-4054-833a-08e36f78a053:active {border-style: solid !important;
border-top-width: 4px !important;
border-left-width: 4px !important;
border-bottom-width: 4px !important;
border-right-width: 4px !important;
border-color: #2C2A34 !important;
border-radius: 4px !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-f19a6ec9-b5fb-4054-833a-08e36f78a053-root {
    text-align: left;
  }


#s-f19a6ec9-b5fb-4054-833a-08e36f78a053.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-f19a6ec9-b5fb-4054-833a-08e36f78a053-root {
    text-align: left;
  }


#s-f19a6ec9-b5fb-4054-833a-08e36f78a053.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f19a6ec9-b5fb-4054-833a-08e36f78a053-root {
    text-align: left;
  }


#s-f19a6ec9-b5fb-4054-833a-08e36f78a053.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f19a6ec9-b5fb-4054-833a-08e36f78a053-root {
    text-align: left;
  }


#s-f19a6ec9-b5fb-4054-833a-08e36f78a053.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-f19a6ec9-b5fb-4054-833a-08e36f78a053-root {
    text-align: left;
  }


#s-f19a6ec9-b5fb-4054-833a-08e36f78a053.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Montserrat;
  display:  inline-block ;
}
}
#s-bf06940f-67a5-4ef8-8d01-9a67aef55366 {
  margin-top: 0px;
margin-left: 6%;
margin-bottom: 0px;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
min-height: 500px;
max-width: 500px;
}
@media (max-width: 767px){#s-bf06940f-67a5-4ef8-8d01-9a67aef55366 {
  min-height: 400px;
}
}







#s-bf06940f-67a5-4ef8-8d01-9a67aef55366 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bf06940f-67a5-4ef8-8d01-9a67aef55366.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6e92dd36-8e1f-450f-a83c-5649bb819171 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
}
@media (max-width: 767px){#s-6e92dd36-8e1f-450f-a83c-5649bb819171 {
  display: none;
}
#s-6e92dd36-8e1f-450f-a83c-5649bb819171, #wrap-s-6e92dd36-8e1f-450f-a83c-5649bb819171 { display: none !important; }}
@media (max-width: 767px){#s-0e79859d-cd15-4487-ba73-cf331d456c5a {
  display: none;
}
#s-0e79859d-cd15-4487-ba73-cf331d456c5a, #wrap-s-0e79859d-cd15-4487-ba73-cf331d456c5a { display: none !important; }}
@media (min-width: 1200px){#s-da291cdf-c592-4ce8-bdb5-41a64f1bbd8b {
  display: none;
}
#s-da291cdf-c592-4ce8-bdb5-41a64f1bbd8b, #wrap-s-da291cdf-c592-4ce8-bdb5-41a64f1bbd8b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-da291cdf-c592-4ce8-bdb5-41a64f1bbd8b {
  display: none;
}
#s-da291cdf-c592-4ce8-bdb5-41a64f1bbd8b, #wrap-s-da291cdf-c592-4ce8-bdb5-41a64f1bbd8b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-da291cdf-c592-4ce8-bdb5-41a64f1bbd8b {
  display: none;
}
#s-da291cdf-c592-4ce8-bdb5-41a64f1bbd8b, #wrap-s-da291cdf-c592-4ce8-bdb5-41a64f1bbd8b { display: none !important; }}
#s-530b1a08-db4c-4a0c-9a89-d2e74ffecef1 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-530b1a08-db4c-4a0c-9a89-d2e74ffecef1 {
  
}
}@media (max-width: 767px){#s-530b1a08-db4c-4a0c-9a89-d2e74ffecef1 {
  display: none;
}
#s-530b1a08-db4c-4a0c-9a89-d2e74ffecef1, #wrap-s-530b1a08-db4c-4a0c-9a89-d2e74ffecef1 { display: none !important; }}







#s-530b1a08-db4c-4a0c-9a89-d2e74ffecef1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-530b1a08-db4c-4a0c-9a89-d2e74ffecef1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4ad1ad05-20f5-474a-9141-9c1f32b1e788 {
  padding-top: 20px;
padding-bottom: 0px;
}

#s-0ebc5850-267e-4273-b30c-6d168c671291 {
  padding-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-0ebc5850-267e-4273-b30c-6d168c671291"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-0ebc5850-267e-4273-b30c-6d168c671291"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-0ebc5850-267e-4273-b30c-6d168c671291"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-0ebc5850-267e-4273-b30c-6d168c671291"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 7.5px);
}

}

.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-0748c674-b8e5-452b-976f-6a5717e9f4ad {
  max-width: 2667px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-0748c674-b8e5-452b-976f-6a5717e9f4ad img.shogun-image,
  #s-0748c674-b8e5-452b-976f-6a5717e9f4ad .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-0748c674-b8e5-452b-976f-6a5717e9f4ad {
    width: 100%;
    height: auto;
  }



  #s-0748c674-b8e5-452b-976f-6a5717e9f4ad img.shogun-image {
    

    
    
    
  }


#s-0748c674-b8e5-452b-976f-6a5717e9f4ad .shogun-image-content {
  
    align-items: center;
  
}

#s-de947b9a-4a5d-4dad-9143-c1bc366b243c {
  max-width: 2667px;
aspect-ratio: 1/1;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-de947b9a-4a5d-4dad-9143-c1bc366b243c {
  margin-bottom: 10px;
}
}




  #s-de947b9a-4a5d-4dad-9143-c1bc366b243c img.shogun-image,
  #s-de947b9a-4a5d-4dad-9143-c1bc366b243c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-de947b9a-4a5d-4dad-9143-c1bc366b243c {
    width: 100%;
    height: auto;
  }



  #s-de947b9a-4a5d-4dad-9143-c1bc366b243c img.shogun-image {
    

    
    
    
  }


#s-de947b9a-4a5d-4dad-9143-c1bc366b243c .shogun-image-content {
  
    align-items: center;
  
}

#s-03dd3234-38d8-4f6b-87bc-7b3d26ded3d8 {
  max-width: 2667px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-03dd3234-38d8-4f6b-87bc-7b3d26ded3d8 img.shogun-image,
  #s-03dd3234-38d8-4f6b-87bc-7b3d26ded3d8 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-03dd3234-38d8-4f6b-87bc-7b3d26ded3d8 {
    width: 100%;
    height: auto;
  }



  #s-03dd3234-38d8-4f6b-87bc-7b3d26ded3d8 img.shogun-image {
    

    
    
    
  }


#s-03dd3234-38d8-4f6b-87bc-7b3d26ded3d8 .shogun-image-content {
  
    align-items: center;
  
}

#s-9798844f-7b93-4fd7-bf1e-099144eacb16 {
  max-width: 2667px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-9798844f-7b93-4fd7-bf1e-099144eacb16 img.shogun-image,
  #s-9798844f-7b93-4fd7-bf1e-099144eacb16 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-9798844f-7b93-4fd7-bf1e-099144eacb16 {
    width: 100%;
    height: auto;
  }



  #s-9798844f-7b93-4fd7-bf1e-099144eacb16 img.shogun-image {
    

    
    
    
  }


#s-9798844f-7b93-4fd7-bf1e-099144eacb16 .shogun-image-content {
  
    align-items: center;
  
}

#s-d26b14df-39bc-49cd-8c7f-bdf1744c7184 {
  padding-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-d26b14df-39bc-49cd-8c7f-bdf1744c7184"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-d26b14df-39bc-49cd-8c7f-bdf1744c7184"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-d26b14df-39bc-49cd-8c7f-bdf1744c7184"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-d26b14df-39bc-49cd-8c7f-bdf1744c7184"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 7.5px);
}

}

#s-6aa1841f-77f5-4ef7-9b2d-214b1acc2ecc {
  max-width: 2667px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-6aa1841f-77f5-4ef7-9b2d-214b1acc2ecc img.shogun-image,
  #s-6aa1841f-77f5-4ef7-9b2d-214b1acc2ecc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6aa1841f-77f5-4ef7-9b2d-214b1acc2ecc {
    width: 100%;
    height: auto;
  }



  #s-6aa1841f-77f5-4ef7-9b2d-214b1acc2ecc img.shogun-image {
    

    
    
    
  }


#s-6aa1841f-77f5-4ef7-9b2d-214b1acc2ecc .shogun-image-content {
  
    align-items: center;
  
}

#s-2abce394-9ef3-4db3-b682-46325ee5655b {
  max-width: 2667px;
aspect-ratio: 1/1;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-2abce394-9ef3-4db3-b682-46325ee5655b {
  margin-bottom: 10px;
}
}




  #s-2abce394-9ef3-4db3-b682-46325ee5655b img.shogun-image,
  #s-2abce394-9ef3-4db3-b682-46325ee5655b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2abce394-9ef3-4db3-b682-46325ee5655b {
    width: 100%;
    height: auto;
  }



  #s-2abce394-9ef3-4db3-b682-46325ee5655b img.shogun-image {
    

    
    
    
  }


#s-2abce394-9ef3-4db3-b682-46325ee5655b .shogun-image-content {
  
    align-items: center;
  
}

#s-1139782c-1366-417e-ace5-2e6ce6e56dc6 {
  max-width: 2667px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-1139782c-1366-417e-ace5-2e6ce6e56dc6 img.shogun-image,
  #s-1139782c-1366-417e-ace5-2e6ce6e56dc6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1139782c-1366-417e-ace5-2e6ce6e56dc6 {
    width: 100%;
    height: auto;
  }



  #s-1139782c-1366-417e-ace5-2e6ce6e56dc6 img.shogun-image {
    

    
    
    
  }


#s-1139782c-1366-417e-ace5-2e6ce6e56dc6 .shogun-image-content {
  
    align-items: center;
  
}

#s-4531d4b6-3c6b-44fa-9cac-beef0f52d8df {
  max-width: 2667px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-4531d4b6-3c6b-44fa-9cac-beef0f52d8df img.shogun-image,
  #s-4531d4b6-3c6b-44fa-9cac-beef0f52d8df .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-4531d4b6-3c6b-44fa-9cac-beef0f52d8df {
    width: 100%;
    height: auto;
  }



  #s-4531d4b6-3c6b-44fa-9cac-beef0f52d8df img.shogun-image {
    

    
    
    
  }


#s-4531d4b6-3c6b-44fa-9cac-beef0f52d8df .shogun-image-content {
  
    align-items: center;
  
}

#s-2c8be4eb-7b56-44dc-8703-399ba6c20098 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 5px;
padding-bottom: 0px;
}
@media (min-width: 1200px){#s-2c8be4eb-7b56-44dc-8703-399ba6c20098 {
  display: none;
}
#s-2c8be4eb-7b56-44dc-8703-399ba6c20098, #wrap-s-2c8be4eb-7b56-44dc-8703-399ba6c20098 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2c8be4eb-7b56-44dc-8703-399ba6c20098 {
  display: none;
}
#s-2c8be4eb-7b56-44dc-8703-399ba6c20098, #wrap-s-2c8be4eb-7b56-44dc-8703-399ba6c20098 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2c8be4eb-7b56-44dc-8703-399ba6c20098 {
  display: none;
}
#s-2c8be4eb-7b56-44dc-8703-399ba6c20098, #wrap-s-2c8be4eb-7b56-44dc-8703-399ba6c20098 { display: none !important; }}







#s-2c8be4eb-7b56-44dc-8703-399ba6c20098 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2c8be4eb-7b56-44dc-8703-399ba6c20098.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-acb9d17e-0af8-40ee-98e3-2d1c56ac6d76 {
  padding-top: 20px;
padding-bottom: 0px;
}

#s-5889b3b6-0d3e-4c8e-b5ea-8819887e4a37 {
  margin-top: 0px;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-5889b3b6-0d3e-4c8e-b5ea-8819887e4a37"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-5889b3b6-0d3e-4c8e-b5ea-8819887e4a37"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-5889b3b6-0d3e-4c8e-b5ea-8819887e4a37"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-5889b3b6-0d3e-4c8e-b5ea-8819887e4a37"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 8.333333333333334px);
}

}

#s-58d20fcd-a61d-40c9-bbd9-08266dcae6af {
  margin-top: 0px;
margin-bottom: 20px;
margin-right: 2%;
max-width: 2667px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-58d20fcd-a61d-40c9-bbd9-08266dcae6af img.shogun-image,
  #s-58d20fcd-a61d-40c9-bbd9-08266dcae6af .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-58d20fcd-a61d-40c9-bbd9-08266dcae6af {
    width: 100%;
    height: auto;
  }



  #s-58d20fcd-a61d-40c9-bbd9-08266dcae6af img.shogun-image {
    

    
    
    
  }


#s-58d20fcd-a61d-40c9-bbd9-08266dcae6af .shogun-image-content {
  
    align-items: center;
  
}

#s-dddf1258-5e0f-403d-9467-a15704400807 {
  margin-left: 2%;
margin-bottom: 10px;
max-width: 2667px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-dddf1258-5e0f-403d-9467-a15704400807 img.shogun-image,
  #s-dddf1258-5e0f-403d-9467-a15704400807 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-dddf1258-5e0f-403d-9467-a15704400807 {
    width: 100%;
    height: auto;
  }



  #s-dddf1258-5e0f-403d-9467-a15704400807 img.shogun-image {
    

    
    
    
  }


#s-dddf1258-5e0f-403d-9467-a15704400807 .shogun-image-content {
  
    align-items: center;
  
}

#s-d0b96c55-e9c5-4f80-9a89-36db6514cc5e {
  margin-bottom: 20px;
margin-right: 2%;
max-width: 2667px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-d0b96c55-e9c5-4f80-9a89-36db6514cc5e img.shogun-image,
  #s-d0b96c55-e9c5-4f80-9a89-36db6514cc5e .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d0b96c55-e9c5-4f80-9a89-36db6514cc5e {
    width: 100%;
    height: auto;
  }



  #s-d0b96c55-e9c5-4f80-9a89-36db6514cc5e img.shogun-image {
    

    
    
    
  }


#s-d0b96c55-e9c5-4f80-9a89-36db6514cc5e .shogun-image-content {
  
    align-items: center;
  
}

#s-ba091e48-5e85-45ea-8285-024fb5e48fec {
  margin-left: 2%;
margin-right: 0%;
max-width: 2667px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-ba091e48-5e85-45ea-8285-024fb5e48fec img.shogun-image,
  #s-ba091e48-5e85-45ea-8285-024fb5e48fec .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ba091e48-5e85-45ea-8285-024fb5e48fec {
    width: 100%;
    height: auto;
  }



  #s-ba091e48-5e85-45ea-8285-024fb5e48fec img.shogun-image {
    

    
    
    
  }


#s-ba091e48-5e85-45ea-8285-024fb5e48fec .shogun-image-content {
  
    align-items: center;
  
}

#s-2666f308-2864-4ff2-a666-af3da6df95c6 {
  margin-left: 0%;
margin-right: 2%;
max-width: 2667px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-2666f308-2864-4ff2-a666-af3da6df95c6 img.shogun-image,
  #s-2666f308-2864-4ff2-a666-af3da6df95c6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-2666f308-2864-4ff2-a666-af3da6df95c6 {
    width: 100%;
    height: auto;
  }



  #s-2666f308-2864-4ff2-a666-af3da6df95c6 img.shogun-image {
    

    
    
    
  }


#s-2666f308-2864-4ff2-a666-af3da6df95c6 .shogun-image-content {
  
    align-items: center;
  
}

#s-f4bfd524-bb6c-47f1-80f8-10a0555d1118 {
  padding-left: 2%;
padding-right: 0%;
max-width: 2667px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-f4bfd524-bb6c-47f1-80f8-10a0555d1118 img.shogun-image,
  #s-f4bfd524-bb6c-47f1-80f8-10a0555d1118 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-f4bfd524-bb6c-47f1-80f8-10a0555d1118 {
    width: 100%;
    height: auto;
  }



  #s-f4bfd524-bb6c-47f1-80f8-10a0555d1118 img.shogun-image {
    

    
    
    
  }


#s-f4bfd524-bb6c-47f1-80f8-10a0555d1118 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 1200px){#s-2388454a-acba-49a5-b952-053cb09182f2 {
  display: none;
}
#s-2388454a-acba-49a5-b952-053cb09182f2, #wrap-s-2388454a-acba-49a5-b952-053cb09182f2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2388454a-acba-49a5-b952-053cb09182f2 {
  display: none;
}
#s-2388454a-acba-49a5-b952-053cb09182f2, #wrap-s-2388454a-acba-49a5-b952-053cb09182f2 { display: none !important; }}
@media (min-width: 0px) {
[id="s-2388454a-acba-49a5-b952-053cb09182f2"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-2388454a-acba-49a5-b952-053cb09182f2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-2388454a-acba-49a5-b952-053cb09182f2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-2388454a-acba-49a5-b952-053cb09182f2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-115b89f9-3688-4dfc-8fd4-db68c5882b74 {
  padding-bottom: 20px;
max-width: 2667px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-115b89f9-3688-4dfc-8fd4-db68c5882b74 img.shogun-image,
  #s-115b89f9-3688-4dfc-8fd4-db68c5882b74 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-115b89f9-3688-4dfc-8fd4-db68c5882b74 {
    width: 100%;
    height: auto;
  }



  #s-115b89f9-3688-4dfc-8fd4-db68c5882b74 img.shogun-image {
    

    
    
    
  }


#s-115b89f9-3688-4dfc-8fd4-db68c5882b74 .shogun-image-content {
  
    align-items: center;
  
}

#s-52358454-f6ba-4a35-8bf3-4f0fae6eb264 {
  max-width: 2667px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-52358454-f6ba-4a35-8bf3-4f0fae6eb264 img.shogun-image,
  #s-52358454-f6ba-4a35-8bf3-4f0fae6eb264 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-52358454-f6ba-4a35-8bf3-4f0fae6eb264 {
    width: 100%;
    height: auto;
  }



  #s-52358454-f6ba-4a35-8bf3-4f0fae6eb264 img.shogun-image {
    

    
    
    
  }


#s-52358454-f6ba-4a35-8bf3-4f0fae6eb264 .shogun-image-content {
  
    align-items: center;
  
}

#s-bfcaf3a5-75b1-4474-ace9-c617ae070d1f {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 95%;
}
@media (min-width: 1200px){#s-bfcaf3a5-75b1-4474-ace9-c617ae070d1f {
  display: none;
}
#s-bfcaf3a5-75b1-4474-ace9-c617ae070d1f, #wrap-s-bfcaf3a5-75b1-4474-ace9-c617ae070d1f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-bfcaf3a5-75b1-4474-ace9-c617ae070d1f {
  display: none;
}
#s-bfcaf3a5-75b1-4474-ace9-c617ae070d1f, #wrap-s-bfcaf3a5-75b1-4474-ace9-c617ae070d1f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-bfcaf3a5-75b1-4474-ace9-c617ae070d1f {
  display: none;
}
#s-bfcaf3a5-75b1-4474-ace9-c617ae070d1f, #wrap-s-bfcaf3a5-75b1-4474-ace9-c617ae070d1f { display: none !important; }}@media (max-width: 767px){#s-bfcaf3a5-75b1-4474-ace9-c617ae070d1f {
  display: none;
}
#s-bfcaf3a5-75b1-4474-ace9-c617ae070d1f, #wrap-s-bfcaf3a5-75b1-4474-ace9-c617ae070d1f { display: none !important; }}







#s-bfcaf3a5-75b1-4474-ace9-c617ae070d1f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bfcaf3a5-75b1-4474-ace9-c617ae070d1f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7371a4f6-162a-46da-9cb7-71aedb57f59e {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 14px;
padding-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-7371a4f6-162a-46da-9cb7-71aedb57f59e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7371a4f6-162a-46da-9cb7-71aedb57f59e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-7371a4f6-162a-46da-9cb7-71aedb57f59e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-7371a4f6-162a-46da-9cb7-71aedb57f59e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-7371a4f6-162a-46da-9cb7-71aedb57f59e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-7371a4f6-162a-46da-9cb7-71aedb57f59e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-7371a4f6-162a-46da-9cb7-71aedb57f59e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 10.0px);
}

}

#s-1f5598b9-670e-4dcf-8753-1cc6663b3abb {
  text-align: center;
}







  #s-1f5598b9-670e-4dcf-8753-1cc6663b3abb img.shogun-image {
    

    
    
    
  }


#s-1f5598b9-670e-4dcf-8753-1cc6663b3abb .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-871c9057-48b3-4bc6-a356-5488d812eaae {
  padding-left: 10px;
padding-right: 10px;
}

#s-54cf8e35-d52d-4d6c-809a-19b90bfe0e33 {
  padding-top: 17px;
text-align: center;
}







  #s-54cf8e35-d52d-4d6c-809a-19b90bfe0e33 img.shogun-image {
    

    
    
    
  }


#s-54cf8e35-d52d-4d6c-809a-19b90bfe0e33 .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-c6712ee3-e4f0-48c3-879d-c5db9ed3d163 {
  padding-left: 10px;
padding-right: 10px;
}

#s-68f817c7-cfeb-4d5e-9af7-bb840fc2f9ac {
  text-align: center;
}







  #s-68f817c7-cfeb-4d5e-9af7-bb840fc2f9ac img.shogun-image {
    

    
    
    
  }


#s-68f817c7-cfeb-4d5e-9af7-bb840fc2f9ac .shogun-image-content {
  
    align-items: flex-end;
  
}

#s-9f35a0bb-0b81-4754-9984-e8f359866c66 {
  padding-left: 10px;
padding-right: 10px;
}

#s-564c58da-bc12-4323-aba3-5efdaa1cda60 {
  min-height: 50px;
}








#s-564c58da-bc12-4323-aba3-5efdaa1cda60 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-564c58da-bc12-4323-aba3-5efdaa1cda60.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-hr-wrapper {
  padding: 30px 0;
}

.shg-hr-wrapper hr {
  margin: 0;
  border: 0;
  width: 100%;
}

#s-fcd42268-da69-4a8c-8bb8-d13ff4848779 hr {
  border-top: 2px solid #000;
}

#s-b1599215-9d94-4c3e-b453-26e428a3ceee {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 45px;
padding-left: 5%;
padding-bottom: 0px;
padding-right: 5%;
min-height: 50px;
}
@media (min-width: 1200px){#s-b1599215-9d94-4c3e-b453-26e428a3ceee {
  padding-bottom: 20px;
}
}







#s-b1599215-9d94-4c3e-b453-26e428a3ceee > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b1599215-9d94-4c3e-b453-26e428a3ceee.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-1f388969-dda1-497d-afc4-21f64e1d53d0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1f388969-dda1-497d-afc4-21f64e1d53d0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1f388969-dda1-497d-afc4-21f64e1d53d0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1f388969-dda1-497d-afc4-21f64e1d53d0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-713937de-c3c8-4368-ba32-1ea07bf1a09c {
  text-align: left;
}

#s-e9d2daeb-0203-4bb0-a27b-78dbee95acf7 {
  min-height: 50px;
}








#s-e9d2daeb-0203-4bb0-a27b-78dbee95acf7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e9d2daeb-0203-4bb0-a27b-78dbee95acf7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8a5bd02f-771b-447f-bb3e-0a8a07f703ac hr {
  border-top: 1.2px solid #ddd;
}

#s-562da094-c484-4ab2-a79b-b42f0858020f {
  margin-top: 7px;
min-height: 70px;
}








#s-562da094-c484-4ab2-a79b-b42f0858020f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-562da094-c484-4ab2-a79b-b42f0858020f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-88cecb06-c9cb-455f-a8d9-59d8c509e276 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-88cecb06-c9cb-455f-a8d9-59d8c509e276"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 768px) {
[id="s-88cecb06-c9cb-455f-a8d9-59d8c509e276"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 992px) {
[id="s-88cecb06-c9cb-455f-a8d9-59d8c509e276"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 1200px) {
[id="s-88cecb06-c9cb-455f-a8d9-59d8c509e276"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 11.25px);
}

}

#s-41e0eb3a-8a69-4ffe-87fa-432c09b12a0b {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 60px;
text-align: center;
}







  #s-41e0eb3a-8a69-4ffe-87fa-432c09b12a0b img.shogun-image {
    

    
    
    
  }


#s-41e0eb3a-8a69-4ffe-87fa-432c09b12a0b .shogun-image-content {
  
    align-items: center;
  
}

#s-2b4359cb-5a66-4e86-8e7e-097e82715724 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 60px;
text-align: center;
}







  #s-2b4359cb-5a66-4e86-8e7e-097e82715724 img.shogun-image {
    

    
    
    
  }


#s-2b4359cb-5a66-4e86-8e7e-097e82715724 .shogun-image-content {
  
    align-items: center;
  
}

#s-715e9e5a-5b33-4b76-9bab-80060a6beb31 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 60px;
text-align: center;
}







  #s-715e9e5a-5b33-4b76-9bab-80060a6beb31 img.shogun-image {
    

    
    
    
  }


#s-715e9e5a-5b33-4b76-9bab-80060a6beb31 .shogun-image-content {
  
    align-items: center;
  
}

#s-3b4284b8-7986-459c-a017-e6d75cf0fbf6 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 60px;
text-align: center;
}







  #s-3b4284b8-7986-459c-a017-e6d75cf0fbf6 img.shogun-image {
    

    
    
    
  }


#s-3b4284b8-7986-459c-a017-e6d75cf0fbf6 .shogun-image-content {
  
    align-items: center;
  
}

#s-f080d1a3-2c57-4f5c-89b9-b94a9243a575 {
  min-height: 50px;
}








#s-f080d1a3-2c57-4f5c-89b9-b94a9243a575 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f080d1a3-2c57-4f5c-89b9-b94a9243a575.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f2e70ee7-4e57-4450-94b7-0693ec2ecdea hr {
  border-top: 1.2px solid #ddd;
}

#s-4739a12c-1c87-4d8c-9056-74dd657b9a0f {
  text-align: left;
}

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

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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