.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-d0478322-4af9-4e3e-b2a4-22a61824b01b {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: center center;
background-attachment: scroll;
}
@media (min-width: 768px) and (max-width: 991px){#s-d0478322-4af9-4e3e-b2a4-22a61824b01b {
  min-height: 50px;
}
}
#s-d0478322-4af9-4e3e-b2a4-22a61824b01b {
  background-image: url(https://i.shgcdn.com/7aed6001-2824-48a6-8122-e545c6bce4e8/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-d0478322-4af9-4e3e-b2a4-22a61824b01b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d0478322-4af9-4e3e-b2a4-22a61824b01b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

@media (min-width: 0px) {
[id="s-f631a601-1ea9-498c-aa92-06cfd5ac6f86"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f631a601-1ea9-498c-aa92-06cfd5ac6f86"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-f631a601-1ea9-498c-aa92-06cfd5ac6f86"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f631a601-1ea9-498c-aa92-06cfd5ac6f86"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-f631a601-1ea9-498c-aa92-06cfd5ac6f86"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f631a601-1ea9-498c-aa92-06cfd5ac6f86"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-f631a601-1ea9-498c-aa92-06cfd5ac6f86"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

.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-8f90ea04-7ce2-43de-bc0f-057d91d3664f {
  padding-top: 180px;
padding-left: 80px;
}
@media (min-width: 768px) and (max-width: 991px){#s-8f90ea04-7ce2-43de-bc0f-057d91d3664f {
  padding-top: 60px;
}
}@media (max-width: 767px){#s-8f90ea04-7ce2-43de-bc0f-057d91d3664f {
  padding-top: 40px;
padding-left: 20px;
display: none;
}
#s-8f90ea04-7ce2-43de-bc0f-057d91d3664f, #wrap-s-8f90ea04-7ce2-43de-bc0f-057d91d3664f { display:none !important; }}
#s-96fed68f-db88-4bbe-85fe-6aaf70b0d2a3 {
  padding-top: 180px;
padding-left: 80px;
}
@media (min-width: 1200px){#s-96fed68f-db88-4bbe-85fe-6aaf70b0d2a3 {
  display: none;
}
#s-96fed68f-db88-4bbe-85fe-6aaf70b0d2a3, #wrap-s-96fed68f-db88-4bbe-85fe-6aaf70b0d2a3 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-96fed68f-db88-4bbe-85fe-6aaf70b0d2a3 {
  display: none;
}
#s-96fed68f-db88-4bbe-85fe-6aaf70b0d2a3, #wrap-s-96fed68f-db88-4bbe-85fe-6aaf70b0d2a3 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-96fed68f-db88-4bbe-85fe-6aaf70b0d2a3 {
  padding-top: 60px;
display: none;
}
#s-96fed68f-db88-4bbe-85fe-6aaf70b0d2a3, #wrap-s-96fed68f-db88-4bbe-85fe-6aaf70b0d2a3 { display:none !important; }}@media (max-width: 767px){#s-96fed68f-db88-4bbe-85fe-6aaf70b0d2a3 {
  padding-top: 40px;
padding-left: 20px;
}
}
#s-22480178-485d-456a-8539-bbb9f27a9c0b {
  padding-left: 80px;
padding-bottom: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-22480178-485d-456a-8539-bbb9f27a9c0b {
  padding-bottom: 20px;
}
}@media (max-width: 767px){#s-22480178-485d-456a-8539-bbb9f27a9c0b {
  padding-left: 20px;
padding-bottom: 0px;
display: none;
}
#s-22480178-485d-456a-8539-bbb9f27a9c0b, #wrap-s-22480178-485d-456a-8539-bbb9f27a9c0b { display:none !important; }}
#s-7c354a5a-3d78-4b6a-9704-ddc507f2c2f1 {
  padding-left: 80px;
padding-bottom: 50px;
}
@media (min-width: 1200px){#s-7c354a5a-3d78-4b6a-9704-ddc507f2c2f1 {
  display: none;
}
#s-7c354a5a-3d78-4b6a-9704-ddc507f2c2f1, #wrap-s-7c354a5a-3d78-4b6a-9704-ddc507f2c2f1 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7c354a5a-3d78-4b6a-9704-ddc507f2c2f1 {
  display: none;
}
#s-7c354a5a-3d78-4b6a-9704-ddc507f2c2f1, #wrap-s-7c354a5a-3d78-4b6a-9704-ddc507f2c2f1 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7c354a5a-3d78-4b6a-9704-ddc507f2c2f1 {
  padding-bottom: 20px;
display: none;
}
#s-7c354a5a-3d78-4b6a-9704-ddc507f2c2f1, #wrap-s-7c354a5a-3d78-4b6a-9704-ddc507f2c2f1 { display:none !important; }}@media (max-width: 767px){#s-7c354a5a-3d78-4b6a-9704-ddc507f2c2f1 {
  padding-left: 20px;
padding-bottom: 0px;
}
}
#s-32b2b611-e903-469e-a3c9-7ffa9b6710c0 {
  border-style: solid;
padding-left: 3%;
padding-right: 3%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-32b2b611-e903-469e-a3c9-7ffa9b6710c0 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-32b2b611-e903-469e-a3c9-7ffa9b6710c0 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-32b2b611-e903-469e-a3c9-7ffa9b6710c0 {
  
}
}@media (max-width: 767px){#s-32b2b611-e903-469e-a3c9-7ffa9b6710c0 {
  display: none;
}
#s-32b2b611-e903-469e-a3c9-7ffa9b6710c0, #wrap-s-32b2b611-e903-469e-a3c9-7ffa9b6710c0 { display:none !important; }}







#s-32b2b611-e903-469e-a3c9-7ffa9b6710c0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-32b2b611-e903-469e-a3c9-7ffa9b6710c0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d5ad8ddb-8655-4cab-a71d-8be25db73796 {
  min-height: 50px;
}








#s-d5ad8ddb-8655-4cab-a71d-8be25db73796 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d5ad8ddb-8655-4cab-a71d-8be25db73796.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-53eb5632-483f-4fc0-8779-dddbaa4121ec {
  margin-top: -37px;
}

#s-53eb5632-483f-4fc0-8779-dddbaa4121ec hr {
  border-top: 1px solid rgba(48, 48, 48, 1);
}

@media (min-width: 0px) {
[id="s-a4385523-cb6d-48d1-a075-782a19940be7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a4385523-cb6d-48d1-a075-782a19940be7"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-a4385523-cb6d-48d1-a075-782a19940be7"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a4385523-cb6d-48d1-a075-782a19940be7"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-a4385523-cb6d-48d1-a075-782a19940be7"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a4385523-cb6d-48d1-a075-782a19940be7"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-a4385523-cb6d-48d1-a075-782a19940be7"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

.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;
}
#s-67b3aa75-08af-48b1-adea-98fd28df3671 {
  padding-right: 20px;
text-align: center;
}
@media (max-width: 767px){#s-67b3aa75-08af-48b1-adea-98fd28df3671 {
  display: none;
}
#s-67b3aa75-08af-48b1-adea-98fd28df3671, #wrap-s-67b3aa75-08af-48b1-adea-98fd28df3671 { display:none !important; }}






  #s-67b3aa75-08af-48b1-adea-98fd28df3671 img.shogun-image {
    

    
    
    
  }


#s-67b3aa75-08af-48b1-adea-98fd28df3671 .shogun-image-content {
  
    align-items: flex-end;
  
}

@media (min-width: 1200px){#s-088fc26e-a91b-4385-9c9f-5828ed77a918 {
  display: none;
}
#s-088fc26e-a91b-4385-9c9f-5828ed77a918, #wrap-s-088fc26e-a91b-4385-9c9f-5828ed77a918 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-088fc26e-a91b-4385-9c9f-5828ed77a918 {
  display: none;
}
#s-088fc26e-a91b-4385-9c9f-5828ed77a918, #wrap-s-088fc26e-a91b-4385-9c9f-5828ed77a918 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-088fc26e-a91b-4385-9c9f-5828ed77a918 {
  display: none;
}
#s-088fc26e-a91b-4385-9c9f-5828ed77a918, #wrap-s-088fc26e-a91b-4385-9c9f-5828ed77a918 { display:none !important; }}
@media (min-width: 0px) {
[id="s-088fc26e-a91b-4385-9c9f-5828ed77a918"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-088fc26e-a91b-4385-9c9f-5828ed77a918"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-088fc26e-a91b-4385-9c9f-5828ed77a918"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-088fc26e-a91b-4385-9c9f-5828ed77a918"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-fea9fea6-6a9c-41ae-9c5f-ee5ceb20d467 {
  text-align: center;
}







  #s-fea9fea6-6a9c-41ae-9c5f-ee5ceb20d467 img.shogun-image {
    

    
    
    
  }


#s-fea9fea6-6a9c-41ae-9c5f-ee5ceb20d467 .shogun-image-content {
  
    align-items: center;
  
}

#s-f9a2a528-d2b7-4129-9855-d99860e0827a {
  margin-top: 0px;
padding-top: 60px;
}
@media (min-width: 768px) and (max-width: 991px){#s-f9a2a528-d2b7-4129-9855-d99860e0827a {
  padding-top: 0px;
}
}@media (max-width: 767px){#s-f9a2a528-d2b7-4129-9855-d99860e0827a {
  padding-top: 0px;
}
}
#s-cc35e090-9b97-455e-8cc0-abc3ef50e498 {
  margin-top: 0px;
padding-top: 60px;
}
@media (min-width: 1200px){#s-cc35e090-9b97-455e-8cc0-abc3ef50e498 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-cc35e090-9b97-455e-8cc0-abc3ef50e498 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-cc35e090-9b97-455e-8cc0-abc3ef50e498 {
  padding-top: 0px;
}
}@media (max-width: 767px){#s-cc35e090-9b97-455e-8cc0-abc3ef50e498 {
  padding-top: 0px;
display: none;
}
#s-cc35e090-9b97-455e-8cc0-abc3ef50e498, #wrap-s-cc35e090-9b97-455e-8cc0-abc3ef50e498 { display:none !important; }}
#s-f9aeadb2-9ebf-46f8-8d7e-29fbe23e0a24 {
  margin-top: 0px;
}
@media (min-width: 1200px){#s-f9aeadb2-9ebf-46f8-8d7e-29fbe23e0a24 {
  display: none;
}
#s-f9aeadb2-9ebf-46f8-8d7e-29fbe23e0a24, #wrap-s-f9aeadb2-9ebf-46f8-8d7e-29fbe23e0a24 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f9aeadb2-9ebf-46f8-8d7e-29fbe23e0a24 {
  display: none;
}
#s-f9aeadb2-9ebf-46f8-8d7e-29fbe23e0a24, #wrap-s-f9aeadb2-9ebf-46f8-8d7e-29fbe23e0a24 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f9aeadb2-9ebf-46f8-8d7e-29fbe23e0a24 {
  display: none;
}
#s-f9aeadb2-9ebf-46f8-8d7e-29fbe23e0a24, #wrap-s-f9aeadb2-9ebf-46f8-8d7e-29fbe23e0a24 { display:none !important; }}
#s-c94d4169-9437-4112-8129-9d4bdc955750 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-c94d4169-9437-4112-8129-9d4bdc955750 {
  display: none;
}
#s-c94d4169-9437-4112-8129-9d4bdc955750, #wrap-s-c94d4169-9437-4112-8129-9d4bdc955750 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c94d4169-9437-4112-8129-9d4bdc955750 {
  display: none;
}
#s-c94d4169-9437-4112-8129-9d4bdc955750, #wrap-s-c94d4169-9437-4112-8129-9d4bdc955750 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c94d4169-9437-4112-8129-9d4bdc955750 {
  display: none;
}
#s-c94d4169-9437-4112-8129-9d4bdc955750, #wrap-s-c94d4169-9437-4112-8129-9d4bdc955750 { display:none !important; }}







#s-c94d4169-9437-4112-8129-9d4bdc955750 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c94d4169-9437-4112-8129-9d4bdc955750.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c80e793f-c683-4989-b1c7-9b4ef1d7f0c4 {
  min-height: 50px;
}








#s-c80e793f-c683-4989-b1c7-9b4ef1d7f0c4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c80e793f-c683-4989-b1c7-9b4ef1d7f0c4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ad613fbd-e734-4b5f-8f5e-02da39f829ba {
  margin-top: -37px;
}

#s-ad613fbd-e734-4b5f-8f5e-02da39f829ba hr {
  border-top: 1px solid rgba(48, 48, 48, 1);
}

@media (min-width: 0px) {
[id="s-09457d0d-b06f-468b-a2ac-14b083415c23"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-09457d0d-b06f-468b-a2ac-14b083415c23"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-09457d0d-b06f-468b-a2ac-14b083415c23"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-09457d0d-b06f-468b-a2ac-14b083415c23"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-09457d0d-b06f-468b-a2ac-14b083415c23"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-09457d0d-b06f-468b-a2ac-14b083415c23"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-09457d0d-b06f-468b-a2ac-14b083415c23"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

#s-1111371f-3844-4a19-8260-f096bcf356e5 {
  padding-right: 20px;
text-align: center;
}
@media (max-width: 767px){#s-1111371f-3844-4a19-8260-f096bcf356e5 {
  display: none;
}
#s-1111371f-3844-4a19-8260-f096bcf356e5, #wrap-s-1111371f-3844-4a19-8260-f096bcf356e5 { display:none !important; }}






  #s-1111371f-3844-4a19-8260-f096bcf356e5 img.shogun-image {
    

    
    
    
  }


#s-1111371f-3844-4a19-8260-f096bcf356e5 .shogun-image-content {
  
    align-items: flex-end;
  
}

@media (min-width: 1200px){#s-6b9f5d62-f2b1-4911-bffc-58cbb828dc62 {
  display: none;
}
#s-6b9f5d62-f2b1-4911-bffc-58cbb828dc62, #wrap-s-6b9f5d62-f2b1-4911-bffc-58cbb828dc62 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6b9f5d62-f2b1-4911-bffc-58cbb828dc62 {
  display: none;
}
#s-6b9f5d62-f2b1-4911-bffc-58cbb828dc62, #wrap-s-6b9f5d62-f2b1-4911-bffc-58cbb828dc62 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6b9f5d62-f2b1-4911-bffc-58cbb828dc62 {
  display: none;
}
#s-6b9f5d62-f2b1-4911-bffc-58cbb828dc62, #wrap-s-6b9f5d62-f2b1-4911-bffc-58cbb828dc62 { display:none !important; }}
@media (min-width: 0px) {
[id="s-6b9f5d62-f2b1-4911-bffc-58cbb828dc62"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-6b9f5d62-f2b1-4911-bffc-58cbb828dc62"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-6b9f5d62-f2b1-4911-bffc-58cbb828dc62"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-6b9f5d62-f2b1-4911-bffc-58cbb828dc62"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-43de68ff-81d6-45de-afeb-d10997ddb402 {
  text-align: center;
}







  #s-43de68ff-81d6-45de-afeb-d10997ddb402 img.shogun-image {
    

    
    
    
  }


#s-43de68ff-81d6-45de-afeb-d10997ddb402 .shogun-image-content {
  
    align-items: center;
  
}

#s-e25f43fc-eaca-447b-a748-a3dff5fb209b {
  margin-top: 0px;
}

#s-a6e8c5cb-3911-4b44-8a75-4bfba6308ebb {
  margin-top: 0px;
padding-top: 60px;
}
@media (min-width: 1200px){#s-a6e8c5cb-3911-4b44-8a75-4bfba6308ebb {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a6e8c5cb-3911-4b44-8a75-4bfba6308ebb {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-a6e8c5cb-3911-4b44-8a75-4bfba6308ebb {
  padding-top: 0px;
}
}@media (max-width: 767px){#s-a6e8c5cb-3911-4b44-8a75-4bfba6308ebb {
  padding-top: 0px;
display: none;
}
#s-a6e8c5cb-3911-4b44-8a75-4bfba6308ebb, #wrap-s-a6e8c5cb-3911-4b44-8a75-4bfba6308ebb { display:none !important; }}
#s-9598e533-d6be-4641-9f31-461b943be606 {
  margin-top: 0px;
padding-left: 5px;
padding-right: 5px;
}
@media (min-width: 1200px){#s-9598e533-d6be-4641-9f31-461b943be606 {
  display: none;
}
#s-9598e533-d6be-4641-9f31-461b943be606, #wrap-s-9598e533-d6be-4641-9f31-461b943be606 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9598e533-d6be-4641-9f31-461b943be606 {
  display: none;
}
#s-9598e533-d6be-4641-9f31-461b943be606, #wrap-s-9598e533-d6be-4641-9f31-461b943be606 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9598e533-d6be-4641-9f31-461b943be606 {
  display: none;
}
#s-9598e533-d6be-4641-9f31-461b943be606, #wrap-s-9598e533-d6be-4641-9f31-461b943be606 { display:none !important; }}@media (max-width: 767px){#s-9598e533-d6be-4641-9f31-461b943be606 {
  margin-top: -80px;
}
}
#s-4d7f72dd-8264-4c45-bed8-3e3583830cba {
  padding-left: 5px;
padding-right: 5px;
}
@media (max-width: 767px){#s-4d7f72dd-8264-4c45-bed8-3e3583830cba {
  padding-bottom: 0px;
}
}
@media (min-width: 768px) and (max-width: 991px){#s-403a04e5-dd26-4814-8afa-68e7a06f746b {
  padding-left: 20px;
padding-right: 20px;
}
}@media (max-width: 767px){#s-403a04e5-dd26-4814-8afa-68e7a06f746b {
  padding-left: 5px;
padding-right: 5px;
}
}
#s-51fa7e1b-0327-44c5-8d90-88f4b82ded03 {
  padding-left: 3%;
padding-right: 3%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-51fa7e1b-0327-44c5-8d90-88f4b82ded03 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-51fa7e1b-0327-44c5-8d90-88f4b82ded03.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-44a14040-648c-4ce8-b00f-1e298a30e75e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-44a14040-648c-4ce8-b00f-1e298a30e75e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-44a14040-648c-4ce8-b00f-1e298a30e75e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-44a14040-648c-4ce8-b00f-1e298a30e75e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-e8b629f7-51a6-4216-90f6-840c8f44d1f0 {
  padding-top: 40px;
}
@media (min-width: 768px) and (max-width: 991px){#s-e8b629f7-51a6-4216-90f6-840c8f44d1f0 {
  padding-top: 0px;
padding-left: 50px;
padding-right: 50px;
}
}@media (max-width: 767px){#s-e8b629f7-51a6-4216-90f6-840c8f44d1f0 {
  margin-left: -5px;
margin-right: -5px;
padding-top: 0px;
padding-bottom: 0px;
display: none;
}
#s-e8b629f7-51a6-4216-90f6-840c8f44d1f0, #wrap-s-e8b629f7-51a6-4216-90f6-840c8f44d1f0 { display:none !important; }}
@media (min-width: 768px) and (max-width: 991px){#s-cc68f3eb-b44c-4621-b42a-1a29d00513c3 {
  padding-left: 20px;
padding-right: 20px;
}
}@media (max-width: 767px){#s-cc68f3eb-b44c-4621-b42a-1a29d00513c3 {
  display: none;
}
#s-cc68f3eb-b44c-4621-b42a-1a29d00513c3, #wrap-s-cc68f3eb-b44c-4621-b42a-1a29d00513c3 { display:none !important; }}
.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-c202a851-5534-43b6-b73c-a71b42033c5d {
  background-size: cover;
padding-top: 40px;
padding-bottom: 40px;
min-height: 50px;
background-position: center center;
background-color: rgba(255, 255, 255, 1);
}








#s-c202a851-5534-43b6-b73c-a71b42033c5d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c202a851-5534-43b6-b73c-a71b42033c5d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-01b2d018-c570-4142-aef7-ae9e28acbf12 {
  margin-top: 15px;
margin-left: 200px;
margin-right: 200px;
}
@media (min-width: 768px) and (max-width: 991px){#s-01b2d018-c570-4142-aef7-ae9e28acbf12 {
  margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-01b2d018-c570-4142-aef7-ae9e28acbf12 {
  margin-left: 10px;
margin-right: 0px;
}
}
#s-465b3238-a9b0-4046-83f9-f9f8a2d4d962 {
  padding-left: 3%;
padding-right: 3%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-465b3238-a9b0-4046-83f9-f9f8a2d4d962 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-465b3238-a9b0-4046-83f9-f9f8a2d4d962.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 991px){#s-8ff9c666-76ee-4abb-b366-94bd519c052f {
  padding-left: 15px;
padding-right: 15px;
}
}
@media (min-width: 0px) {
[id="s-8ff9c666-76ee-4abb-b366-94bd519c052f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8ff9c666-76ee-4abb-b366-94bd519c052f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 100.0px);
}

}

@media (min-width: 992px) {
[id="s-8ff9c666-76ee-4abb-b366-94bd519c052f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 100.0px);
}

}

@media (min-width: 1200px) {
[id="s-8ff9c666-76ee-4abb-b366-94bd519c052f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 100.0px);
}

}

#s-3ca3af49-16a9-42b3-8b16-b83eb486d177 {
  text-align: center;
}







  #s-3ca3af49-16a9-42b3-8b16-b83eb486d177 img.shogun-image {
    

    
    
    
  }


#s-3ca3af49-16a9-42b3-8b16-b83eb486d177 .shogun-image-content {
  
    align-items: center;
  
}

#s-2f41713e-3205-48d4-8a29-175d9c307820 {
  text-align: center;
}







  #s-2f41713e-3205-48d4-8a29-175d9c307820 img.shogun-image {
    

    
    
    
  }


#s-2f41713e-3205-48d4-8a29-175d9c307820 .shogun-image-content {
  
    align-items: center;
  
}

#s-6cb210bf-3ca3-4977-8164-f3ce8ec4dfa2 {
  text-align: center;
}







  #s-6cb210bf-3ca3-4977-8164-f3ce8ec4dfa2 img.shogun-image {
    

    
    
    
  }


#s-6cb210bf-3ca3-4977-8164-f3ce8ec4dfa2 .shogun-image-content {
  
    align-items: center;
  
}

#s-a6623943-806b-4483-87fd-0e066185275b {
  padding-left: 3%;
padding-right: 3%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-a6623943-806b-4483-87fd-0e066185275b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a6623943-806b-4483-87fd-0e066185275b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3f08783c-0568-4e2f-b768-da44026269ca {
  margin-top: 50px;
}
@media (max-width: 767px){#s-3f08783c-0568-4e2f-b768-da44026269ca {
  margin-left: -25px;
margin-right: -25px;
}
}
#s-ef569255-8c8d-491d-ab2b-65e0ac2b84ce {
  padding-left: 3%;
padding-right: 3%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-ef569255-8c8d-491d-ab2b-65e0ac2b84ce > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ef569255-8c8d-491d-ab2b-65e0ac2b84ce.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-c2d5836c-efb4-4560-b977-1d85b9ac3a0c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c2d5836c-efb4-4560-b977-1d85b9ac3a0c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

@media (min-width: 992px) {
[id="s-c2d5836c-efb4-4560-b977-1d85b9ac3a0c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

@media (min-width: 1200px) {
[id="s-c2d5836c-efb4-4560-b977-1d85b9ac3a0c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

#s-e3612717-d43e-45b5-952b-c396d96868ab {
  padding-left: 50px;
padding-right: 50px;
text-align: center;
}







  #s-e3612717-d43e-45b5-952b-c396d96868ab img.shogun-image {
    

    
    
    
  }


#s-e3612717-d43e-45b5-952b-c396d96868ab .shogun-image-content {
  
    align-items: center;
  
}

#s-de26362b-6f35-40ca-99d9-3a1df904e8f1 {
  padding-top: 15px;
}

#s-aca5bd8b-942d-4287-b3c0-51f0c6b7865a {
  padding-left: 50px;
padding-right: 50px;
text-align: center;
}
@media (max-width: 767px){#s-aca5bd8b-942d-4287-b3c0-51f0c6b7865a {
  padding-top: 20px;
}
}






  #s-aca5bd8b-942d-4287-b3c0-51f0c6b7865a img.shogun-image {
    

    
    
    
  }


#s-aca5bd8b-942d-4287-b3c0-51f0c6b7865a .shogun-image-content {
  
    align-items: center;
  
}

#s-5213e23d-8b8f-4286-be55-dd761bbe2251 {
  padding-top: 15px;
}

#s-7b39bc3b-a759-4922-9df9-9078b699ab72 {
  padding-left: 50px;
padding-right: 50px;
text-align: center;
}
@media (max-width: 767px){#s-7b39bc3b-a759-4922-9df9-9078b699ab72 {
  padding-top: 20px;
}
}






  #s-7b39bc3b-a759-4922-9df9-9078b699ab72 img.shogun-image {
    

    
    
    
  }


#s-7b39bc3b-a759-4922-9df9-9078b699ab72 .shogun-image-content {
  
    align-items: center;
  
}

#s-1d64919e-ad7c-4e2f-8557-0d17deafe666 {
  padding-top: 15px;
}

#s-ad81c428-e8e4-41a5-ae4c-81e813304613 {
  margin-top: 70px;
margin-bottom: 70px;
}
@media (max-width: 767px){#s-ad81c428-e8e4-41a5-ae4c-81e813304613 {
  margin-top: 20px;
margin-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-ad81c428-e8e4-41a5-ae4c-81e813304613"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ad81c428-e8e4-41a5-ae4c-81e813304613"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

@media (min-width: 992px) {
[id="s-ad81c428-e8e4-41a5-ae4c-81e813304613"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

@media (min-width: 1200px) {
[id="s-ad81c428-e8e4-41a5-ae4c-81e813304613"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

#s-6e08c2b3-ebf5-413a-9a6c-2b32d7e9ee79 {
  padding-left: 50px;
padding-right: 50px;
text-align: center;
}
@media (max-width: 767px){#s-6e08c2b3-ebf5-413a-9a6c-2b32d7e9ee79 {
  padding-top: 20px;
}
}






  #s-6e08c2b3-ebf5-413a-9a6c-2b32d7e9ee79 img.shogun-image {
    

    
    
    
  }


#s-6e08c2b3-ebf5-413a-9a6c-2b32d7e9ee79 .shogun-image-content {
  
    align-items: center;
  
}

#s-106bc7e7-5c7e-4eb9-8ce7-cba9d4009941 {
  padding-top: 15px;
}

#s-3ba51a72-2d89-45fa-ab60-b7e50fa94b3e {
  padding-left: 50px;
padding-right: 50px;
text-align: center;
}
@media (max-width: 767px){#s-3ba51a72-2d89-45fa-ab60-b7e50fa94b3e {
  padding-top: 15px;
}
}






  #s-3ba51a72-2d89-45fa-ab60-b7e50fa94b3e img.shogun-image {
    

    
    
    
  }


#s-3ba51a72-2d89-45fa-ab60-b7e50fa94b3e .shogun-image-content {
  
    align-items: center;
  
}

#s-d58e1607-5073-4357-9d1a-63b03e4db429 {
  padding-top: 15px;
}

#s-1598df24-19ab-4427-8b43-8ca81cfdbc57 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-1598df24-19ab-4427-8b43-8ca81cfdbc57 {
  display: none;
}
#s-1598df24-19ab-4427-8b43-8ca81cfdbc57, #wrap-s-1598df24-19ab-4427-8b43-8ca81cfdbc57 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1598df24-19ab-4427-8b43-8ca81cfdbc57 {
  display: none;
}
#s-1598df24-19ab-4427-8b43-8ca81cfdbc57, #wrap-s-1598df24-19ab-4427-8b43-8ca81cfdbc57 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1598df24-19ab-4427-8b43-8ca81cfdbc57 {
  display: none;
}
#s-1598df24-19ab-4427-8b43-8ca81cfdbc57, #wrap-s-1598df24-19ab-4427-8b43-8ca81cfdbc57 { display:none !important; }}







#s-1598df24-19ab-4427-8b43-8ca81cfdbc57 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1598df24-19ab-4427-8b43-8ca81cfdbc57.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (max-width: 767px){#s-c1797515-1c38-4236-82e3-4c87b5b7bb6d {
  padding-top: 50px;
}
}
#s-f6b457d1-4722-42fb-828a-e48929c90cee {
  min-height: 50px;
}
@media (max-width: 767px){#s-f6b457d1-4722-42fb-828a-e48929c90cee {
  display: none;
}
#s-f6b457d1-4722-42fb-828a-e48929c90cee, #wrap-s-f6b457d1-4722-42fb-828a-e48929c90cee { display:none !important; }}







#s-f6b457d1-4722-42fb-828a-e48929c90cee > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f6b457d1-4722-42fb-828a-e48929c90cee.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-03145c2a-3d90-42b9-aab0-1d5b661e9aee {
  margin-top: 50px;
}

#s-938282d5-330d-4293-834f-8673344dd5d8 {
  padding-left: 3%;
padding-right: 3%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-938282d5-330d-4293-834f-8673344dd5d8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-938282d5-330d-4293-834f-8673344dd5d8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (max-width: 767px){#s-b0ac4fd3-b580-4d17-a8c5-08c33190ec91 {
  margin-left: -10px;
margin-right: -10px;
}
}
@media (min-width: 0px) {
[id="s-b0ac4fd3-b580-4d17-a8c5-08c33190ec91"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b0ac4fd3-b580-4d17-a8c5-08c33190ec91"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-b0ac4fd3-b580-4d17-a8c5-08c33190ec91"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-b0ac4fd3-b580-4d17-a8c5-08c33190ec91"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-bd3a6016-5f30-4ef3-827f-a42fcac5d5af {
  padding-left: 50px;
padding-right: 50px;
text-align: center;
}







  #s-bd3a6016-5f30-4ef3-827f-a42fcac5d5af img.shogun-image {
    

    
    
    
  }


#s-bd3a6016-5f30-4ef3-827f-a42fcac5d5af .shogun-image-content {
  
    align-items: center;
  
}

#s-c38f289c-acc9-4a28-aae2-6c8196f6b73d {
  padding-top: 15px;
padding-bottom: 15px;
}

#s-777aaf17-00aa-4744-a9b6-1359048490eb {
  padding-left: 50px;
padding-right: 50px;
text-align: center;
}
@media (max-width: 767px){#s-777aaf17-00aa-4744-a9b6-1359048490eb {
  padding-top: 20px;
}
}






  #s-777aaf17-00aa-4744-a9b6-1359048490eb img.shogun-image {
    

    
    
    
  }


#s-777aaf17-00aa-4744-a9b6-1359048490eb .shogun-image-content {
  
    align-items: center;
  
}

#s-b27d32b3-3716-4a70-af7f-050c9a831258 {
  padding-top: 15px;
padding-bottom: 15px;
}

#s-4cb37e70-e5b3-46e6-9e16-b0f3b076ae35 {
  padding-left: 50px;
padding-right: 50px;
text-align: center;
}
@media (max-width: 767px){#s-4cb37e70-e5b3-46e6-9e16-b0f3b076ae35 {
  padding-top: 20px;
}
}






  #s-4cb37e70-e5b3-46e6-9e16-b0f3b076ae35 img.shogun-image {
    

    
    
    
  }


#s-4cb37e70-e5b3-46e6-9e16-b0f3b076ae35 .shogun-image-content {
  
    align-items: center;
  
}

#s-1e58c8e8-16a0-48d4-9a85-42a683145524 {
  padding-top: 15px;
padding-bottom: 15px;
}

#s-951ac8e9-493d-4596-95d1-55d4e0487930 {
  padding-left: 3%;
padding-right: 3%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-951ac8e9-493d-4596-95d1-55d4e0487930 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-951ac8e9-493d-4596-95d1-55d4e0487930.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cce36840-4e7a-405a-89fe-263435f61abb {
  padding-top: 20px;
padding-bottom: 20px;
}
@media (max-width: 767px){#s-cce36840-4e7a-405a-89fe-263435f61abb {
  margin-left: -10px;
margin-right: -10px;
}
}
#s-5e04604b-64b9-4a46-95aa-273b70586a29 {
  padding-left: 3%;
padding-bottom: 20px;
padding-right: 3%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-5e04604b-64b9-4a46-95aa-273b70586a29 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5e04604b-64b9-4a46-95aa-273b70586a29.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bab38330-97d8-42bb-87fe-573736cd7ecd hr {
  border-top: 1px solid rgba(48, 48, 48, 1);
}

#s-c9905749-5b1c-48e1-861c-19bbe9e8ff02 {
  padding-left: 3%;
padding-right: 3%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-c9905749-5b1c-48e1-861c-19bbe9e8ff02 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c9905749-5b1c-48e1-861c-19bbe9e8ff02.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-7bc86b55-5bb4-418c-ae9d-d4d51fb686f8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7bc86b55-5bb4-418c-ae9d-d4d51fb686f8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7bc86b55-5bb4-418c-ae9d-d4d51fb686f8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7bc86b55-5bb4-418c-ae9d-d4d51fb686f8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-5dd0a58c-d7b4-4ef5-8542-d545c1395f30 {
  padding-bottom: 20px;
}
@media (max-width: 767px){#s-5dd0a58c-d7b4-4ef5-8542-d545c1395f30 {
  padding-top: 15px;
}
}
#s-203d1adc-04ad-4c7f-a285-8d66585b0c16 {
  padding-top: 20px;
padding-left: 3%;
padding-bottom: 20px;
padding-right: 3%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-203d1adc-04ad-4c7f-a285-8d66585b0c16 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-203d1adc-04ad-4c7f-a285-8d66585b0c16.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e0b51349-0cee-4689-ae88-172becd5f7c3 hr {
  border-top: 1px solid rgba(48, 48, 48, 1);
}

#s-344298d8-b8f3-4634-b543-5928236f5a38 {
  padding-left: 3%;
padding-right: 3%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-344298d8-b8f3-4634-b543-5928236f5a38 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-344298d8-b8f3-4634-b543-5928236f5a38.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (max-width: 767px){#s-8698ce64-c2c2-4d1d-823b-7c8515b586fb {
  display: none;
}
#s-8698ce64-c2c2-4d1d-823b-7c8515b586fb, #wrap-s-8698ce64-c2c2-4d1d-823b-7c8515b586fb { display:none !important; }}
@media (min-width: 1200px){#s-5d6b2001-24e7-4291-918c-70a4ac705b1c {
  display: none;
}
#s-5d6b2001-24e7-4291-918c-70a4ac705b1c, #wrap-s-5d6b2001-24e7-4291-918c-70a4ac705b1c { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5d6b2001-24e7-4291-918c-70a4ac705b1c {
  display: none;
}
#s-5d6b2001-24e7-4291-918c-70a4ac705b1c, #wrap-s-5d6b2001-24e7-4291-918c-70a4ac705b1c { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-5d6b2001-24e7-4291-918c-70a4ac705b1c {
  display: none;
}
#s-5d6b2001-24e7-4291-918c-70a4ac705b1c, #wrap-s-5d6b2001-24e7-4291-918c-70a4ac705b1c { display:none !important; }}
@media (min-width: 0px) {
[id="s-597acb6b-96f6-43b3-868b-65048c5401c3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-597acb6b-96f6-43b3-868b-65048c5401c3"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-597acb6b-96f6-43b3-868b-65048c5401c3"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-597acb6b-96f6-43b3-868b-65048c5401c3"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-48227a36-c5cb-4404-b2ac-052255d90d57 {
  text-align: center;
}







  #s-48227a36-c5cb-4404-b2ac-052255d90d57 img.shogun-image {
    

    
    
    
  }


#s-48227a36-c5cb-4404-b2ac-052255d90d57 .shogun-image-content {
  
    align-items: center;
  
}

#s-f4e64e98-2542-4f8f-9a40-6074c95b9cc1 {
  text-align: center;
}







  #s-f4e64e98-2542-4f8f-9a40-6074c95b9cc1 img.shogun-image {
    

    
    
    
  }


#s-f4e64e98-2542-4f8f-9a40-6074c95b9cc1 .shogun-image-content {
  
    align-items: center;
  
}

#s-f56ec952-6b3d-4c62-bad6-a4be8282fe11 {
  text-align: center;
}







  #s-f56ec952-6b3d-4c62-bad6-a4be8282fe11 img.shogun-image {
    

    
    
    
  }


#s-f56ec952-6b3d-4c62-bad6-a4be8282fe11 .shogun-image-content {
  
    align-items: center;
  
}

#s-d91e2043-2b08-4670-99d6-9f7b01e3dca3 {
  padding-top: 15px;
padding-bottom: 15px;
}
@media (max-width: 767px){#s-d91e2043-2b08-4670-99d6-9f7b01e3dca3 {
  display: none;
}
#s-d91e2043-2b08-4670-99d6-9f7b01e3dca3, #wrap-s-d91e2043-2b08-4670-99d6-9f7b01e3dca3 { display:none !important; }}
#s-e4d09e67-ca06-42de-9280-76ca68e0423c {
  padding-top: 15px;
padding-bottom: 15px;
}
@media (min-width: 1200px){#s-e4d09e67-ca06-42de-9280-76ca68e0423c {
  display: none;
}
#s-e4d09e67-ca06-42de-9280-76ca68e0423c, #wrap-s-e4d09e67-ca06-42de-9280-76ca68e0423c { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e4d09e67-ca06-42de-9280-76ca68e0423c {
  display: none;
}
#s-e4d09e67-ca06-42de-9280-76ca68e0423c, #wrap-s-e4d09e67-ca06-42de-9280-76ca68e0423c { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e4d09e67-ca06-42de-9280-76ca68e0423c {
  display: none;
}
#s-e4d09e67-ca06-42de-9280-76ca68e0423c, #wrap-s-e4d09e67-ca06-42de-9280-76ca68e0423c { display:none !important; }}
#s-b55b18d2-a2fe-4e3b-aaef-ee2e380341c1 {
  min-height: 50px;
}








#s-b55b18d2-a2fe-4e3b-aaef-ee2e380341c1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b55b18d2-a2fe-4e3b-aaef-ee2e380341c1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-12448f0b-15d3-47fa-8787-80ffca1ab014 {
  text-align: center;
}
@media (max-width: 767px){#s-12448f0b-15d3-47fa-8787-80ffca1ab014 {
  margin-left: -30px;
margin-right: -30px;
}
}






  #s-12448f0b-15d3-47fa-8787-80ffca1ab014 img.shogun-image {
    

    
    
    
  }


#s-12448f0b-15d3-47fa-8787-80ffca1ab014 .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: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}
