.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-a566ca33-2716-452d-82e0-368b0341bd80 {
  margin-left: 22px;
margin-right: 22px;
min-height: 50px;
}








#s-a566ca33-2716-452d-82e0-368b0341bd80 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a566ca33-2716-452d-82e0-368b0341bd80.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-28742157-a45a-47b4-86ca-d47f01634b65 {
  margin-top: -25px;
margin-left: auto;
margin-right: auto;
max-width: 1060px;
}

@media (min-width: 0px) {
[id="s-28742157-a45a-47b4-86ca-d47f01634b65"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-28742157-a45a-47b4-86ca-d47f01634b65"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 992px) {
[id="s-28742157-a45a-47b4-86ca-d47f01634b65"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 1200px) {
[id="s-28742157-a45a-47b4-86ca-d47f01634b65"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 11.25px);
}

}

.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-6f1b658f-1879-45dc-a113-f5c79c3265cc {
  margin-top: 25px;
text-align: center;
}







  #s-6f1b658f-1879-45dc-a113-f5c79c3265cc img.shogun-image {
    

    
    
    
  }


#s-6f1b658f-1879-45dc-a113-f5c79c3265cc .shogun-image-content {
  
    align-items: center;
  
}

.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-db5939aa-82ea-4a37-8bd2-1f3111d0bda6 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-91bf0ce3-0963-4da1-a429-4eb36949556d {
  margin-top: 25px;
}







  #s-91bf0ce3-0963-4da1-a429-4eb36949556d img.shogun-image {
    

    
    
    
  }


#s-91bf0ce3-0963-4da1-a429-4eb36949556d .shogun-image-content {
  
    align-items: center;
  
}

#s-37121fb8-d6d0-4e8d-aec5-0da93c8a60e5 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-5a0bb36a-5cf6-4f45-b493-679c73944532 {
  margin-top: 25px;
text-align: center;
}







  #s-5a0bb36a-5cf6-4f45-b493-679c73944532 img.shogun-image {
    

    
    
    
  }


#s-5a0bb36a-5cf6-4f45-b493-679c73944532 .shogun-image-content {
  
    align-items: center;
  
}

#s-ea5ddb92-0886-43bc-86fb-b5ba90eb2572 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-995e64a6-cccd-4d55-afed-b6948bf8ea64 {
  margin-top: 25px;
text-align: center;
}







  #s-995e64a6-cccd-4d55-afed-b6948bf8ea64 img.shogun-image {
    

    
    
    
  }


#s-995e64a6-cccd-4d55-afed-b6948bf8ea64 .shogun-image-content {
  
    align-items: center;
  
}

#s-ab99941a-940d-4da3-aac9-241424e8379a {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-fccf9c59-76d8-43c2-9bce-5f46d3ea3c51 {
  margin-left: 22px;
margin-right: 22px;
min-height: 50px;
}








#s-fccf9c59-76d8-43c2-9bce-5f46d3ea3c51 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fccf9c59-76d8-43c2-9bce-5f46d3ea3c51.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-dfa162e3-052f-41f0-840a-2dfdce860383 {
  margin-left: auto;
margin-right: auto;
max-width: 1060px;
}

@media (min-width: 0px) {
[id="s-dfa162e3-052f-41f0-840a-2dfdce860383"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-dfa162e3-052f-41f0-840a-2dfdce860383"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 992px) {
[id="s-dfa162e3-052f-41f0-840a-2dfdce860383"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 1200px) {
[id="s-dfa162e3-052f-41f0-840a-2dfdce860383"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 11.25px);
}

}

#s-a041fb73-3d28-4a8e-a508-bb5ab1417f79 {
  margin-top: 25px;
text-align: center;
}







  #s-a041fb73-3d28-4a8e-a508-bb5ab1417f79 img.shogun-image {
    

    
    
    
  }


#s-a041fb73-3d28-4a8e-a508-bb5ab1417f79 .shogun-image-content {
  
    align-items: center;
  
}

#s-8201f9a4-d126-41ec-8034-2f2344fb1f2c {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-69fce441-3bab-4eb0-9895-806865ace19d {
  margin-top: 25px;
text-align: center;
}







  #s-69fce441-3bab-4eb0-9895-806865ace19d img.shogun-image {
    

    
    
    
  }


#s-69fce441-3bab-4eb0-9895-806865ace19d .shogun-image-content {
  
    align-items: center;
  
}

#s-d7659f84-934f-4d21-91e6-7d627c6bb3bf {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-adb66a76-b2dc-4ddb-b7fe-ec3d056b1356 {
  margin-top: 25px;
text-align: center;
}







  #s-adb66a76-b2dc-4ddb-b7fe-ec3d056b1356 img.shogun-image {
    

    
    
    
  }


#s-adb66a76-b2dc-4ddb-b7fe-ec3d056b1356 .shogun-image-content {
  
    align-items: center;
  
}

#s-a4af9498-ae56-4b91-b628-95eaedf5bb0d {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-1edd8e71-838d-4da2-bd2b-c79ee3476f60 {
  margin-top: 25px;
text-align: center;
}







  #s-1edd8e71-838d-4da2-bd2b-c79ee3476f60 img.shogun-image {
    

    
    
    
  }


#s-1edd8e71-838d-4da2-bd2b-c79ee3476f60 .shogun-image-content {
  
    align-items: center;
  
}

#s-19b2090b-21e2-4485-b0bc-cea4bb794863 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-6251db5e-513f-4407-8849-da3bbbc98896 {
  margin-left: 22px;
margin-right: 22px;
}








#s-6251db5e-513f-4407-8849-da3bbbc98896 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6251db5e-513f-4407-8849-da3bbbc98896.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cf897356-e3b7-4442-8919-f44a60baa237 {
  margin-left: auto;
margin-right: auto;
max-width: 1060px;
}








#s-cf897356-e3b7-4442-8919-f44a60baa237 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cf897356-e3b7-4442-8919-f44a60baa237.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e76158e0-fd46-4bb9-99d1-47399d6c2548 {
  margin-top: 25px;
margin-bottom: -10px;
text-align: left;
}

#s-c34f6580-f498-4f16-97d6-aeef761a679d {
  margin-left: 22px;
margin-right: 22px;
min-height: 50px;
}








#s-c34f6580-f498-4f16-97d6-aeef761a679d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c34f6580-f498-4f16-97d6-aeef761a679d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f1a08db2-bcee-4412-95a7-e96f2e974f3a {
  margin-left: auto;
margin-right: auto;
max-width: 1060px;
}

@media (min-width: 0px) {
[id="s-f1a08db2-bcee-4412-95a7-e96f2e974f3a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-f1a08db2-bcee-4412-95a7-e96f2e974f3a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 992px) {
[id="s-f1a08db2-bcee-4412-95a7-e96f2e974f3a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 1200px) {
[id="s-f1a08db2-bcee-4412-95a7-e96f2e974f3a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 11.25px);
}

}

#s-5b0a3470-387b-4c79-91a2-c41656b26734 {
  margin-top: 25px;
text-align: center;
}







  #s-5b0a3470-387b-4c79-91a2-c41656b26734 img.shogun-image {
    

    
    
    
  }


#s-5b0a3470-387b-4c79-91a2-c41656b26734 .shogun-image-content {
  
    align-items: center;
  
}

#s-d5f49c01-41c1-46ab-b4e0-88ef1e82c425 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-e1756829-3d61-48fa-9a0a-f36534d4423c {
  margin-top: 25px;
text-align: center;
}







  #s-e1756829-3d61-48fa-9a0a-f36534d4423c img.shogun-image {
    

    
    
    
  }


#s-e1756829-3d61-48fa-9a0a-f36534d4423c .shogun-image-content {
  
    align-items: center;
  
}

#s-ca7aeea8-816e-4627-aaa9-f046624b8c09 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-86949a05-c1f2-44b6-bd1f-9043bb8c89d4 {
  margin-top: 25px;
text-align: center;
}







  #s-86949a05-c1f2-44b6-bd1f-9043bb8c89d4 img.shogun-image {
    

    
    
    
  }


#s-86949a05-c1f2-44b6-bd1f-9043bb8c89d4 .shogun-image-content {
  
    align-items: center;
  
}

#s-3144e31f-61fd-48fa-8bdd-5d440acc6ee0 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-da9fb596-67ec-485f-ad95-36f45cbf86a2 {
  margin-top: 25px;
text-align: center;
}







  #s-da9fb596-67ec-485f-ad95-36f45cbf86a2 img.shogun-image {
    

    
    
    
  }


#s-da9fb596-67ec-485f-ad95-36f45cbf86a2 .shogun-image-content {
  
    align-items: center;
  
}

#s-fc441dc1-1f01-4af9-9eaa-bac4199ffad6 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-56b67133-cbc8-4b9c-b320-8d9e48007156 {
  margin-left: 22px;
margin-right: 22px;
min-height: 50px;
}








#s-56b67133-cbc8-4b9c-b320-8d9e48007156 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-56b67133-cbc8-4b9c-b320-8d9e48007156.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-34112e36-c863-419c-a6ed-c58eef4a7764 {
  margin-left: auto;
margin-right: auto;
max-width: 1060px;
}

@media (min-width: 0px) {
[id="s-34112e36-c863-419c-a6ed-c58eef4a7764"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-34112e36-c863-419c-a6ed-c58eef4a7764"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 992px) {
[id="s-34112e36-c863-419c-a6ed-c58eef4a7764"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 1200px) {
[id="s-34112e36-c863-419c-a6ed-c58eef4a7764"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 11.25px);
}

}

#s-a02ae719-8147-4d09-93d0-0e0082ee8881 {
  margin-top: 5px;
text-align: center;
}







  #s-a02ae719-8147-4d09-93d0-0e0082ee8881 img.shogun-image {
    

    
    
    
  }


#s-a02ae719-8147-4d09-93d0-0e0082ee8881 .shogun-image-content {
  
    align-items: center;
  
}

#s-a5ea6781-5d17-4408-b269-1b143981b747 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-2b5f70fd-d23c-4f5b-a4d6-c062f92cebdc {
  margin-left: 22px;
margin-right: 22px;
min-height: 50px;
}








#s-2b5f70fd-d23c-4f5b-a4d6-c062f92cebdc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2b5f70fd-d23c-4f5b-a4d6-c062f92cebdc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2e3e6a97-b09d-4868-88ed-b2b4e3e64458 {
  margin-left: auto;
margin-right: auto;
max-width: 1060px;
}








#s-2e3e6a97-b09d-4868-88ed-b2b4e3e64458 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2e3e6a97-b09d-4868-88ed-b2b4e3e64458.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-72d29c7b-1b01-4286-96bc-cfcd69ab19f1 {
  margin-top: 25px;
margin-bottom: -10px;
text-align: left;
}

#s-1a9e9b51-b5c7-4c2d-abe0-21e0f6b98c61 {
  margin-left: 22px;
margin-right: 22px;
min-height: 50px;
}








#s-1a9e9b51-b5c7-4c2d-abe0-21e0f6b98c61 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1a9e9b51-b5c7-4c2d-abe0-21e0f6b98c61.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3fb8ccca-40fa-4102-8a11-11efa5af68f1 {
  margin-left: auto;
margin-right: auto;
max-width: 1060px;
}

@media (min-width: 0px) {
[id="s-3fb8ccca-40fa-4102-8a11-11efa5af68f1"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-3fb8ccca-40fa-4102-8a11-11efa5af68f1"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 992px) {
[id="s-3fb8ccca-40fa-4102-8a11-11efa5af68f1"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 1200px) {
[id="s-3fb8ccca-40fa-4102-8a11-11efa5af68f1"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 11.25px);
}

}

#s-e00a8d6d-f392-4a62-9890-0b2a8ff7bde3 {
  margin-top: 25px;
text-align: center;
}







  #s-e00a8d6d-f392-4a62-9890-0b2a8ff7bde3 img.shogun-image {
    

    
    
    
  }


#s-e00a8d6d-f392-4a62-9890-0b2a8ff7bde3 .shogun-image-content {
  
    align-items: center;
  
}

#s-9b4f53b4-4399-4229-acbd-e3c7885c7899 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-3d9f335f-f16f-44ad-91b9-2710194a7280 {
  margin-top: 25px;
text-align: center;
}







  #s-3d9f335f-f16f-44ad-91b9-2710194a7280 img.shogun-image {
    

    
    
    
  }


#s-3d9f335f-f16f-44ad-91b9-2710194a7280 .shogun-image-content {
  
    align-items: center;
  
}

#s-e23c3c9e-6d64-45e1-b4a7-e9c7d622975e {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-f103f9bf-0862-4345-afcd-85d6b0b9b1e0 {
  margin-top: 25px;
text-align: center;
}







  #s-f103f9bf-0862-4345-afcd-85d6b0b9b1e0 img.shogun-image {
    

    
    
    
  }


#s-f103f9bf-0862-4345-afcd-85d6b0b9b1e0 .shogun-image-content {
  
    align-items: center;
  
}

#s-b01908b5-3fd0-4797-b8b2-2d84e1185dfb {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-e5677d4e-040c-48fc-9e4a-8ba6b8e7d8d7 {
  margin-top: 25px;
text-align: center;
}







  #s-e5677d4e-040c-48fc-9e4a-8ba6b8e7d8d7 img.shogun-image {
    

    
    
    
  }


#s-e5677d4e-040c-48fc-9e4a-8ba6b8e7d8d7 .shogun-image-content {
  
    align-items: center;
  
}

#s-95fc8d24-c053-46ad-a7e0-9b00390779f4 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-cc4883eb-11a0-4ffd-b488-0dc4fdef3ad3 {
  margin-left: 22px;
margin-right: 22px;
min-height: 50px;
}








#s-cc4883eb-11a0-4ffd-b488-0dc4fdef3ad3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cc4883eb-11a0-4ffd-b488-0dc4fdef3ad3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d2b0b75d-7ad3-49a0-8b95-832435dbf416 {
  margin-left: auto;
margin-right: auto;
max-width: 1060px;
}








#s-d2b0b75d-7ad3-49a0-8b95-832435dbf416 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d2b0b75d-7ad3-49a0-8b95-832435dbf416.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ee344cba-3c87-489f-a9e3-16579a34a119 {
  margin-top: 25px;
margin-bottom: -10px;
text-align: left;
}

#s-2770f507-9f1a-48e2-8ba6-a9239c5ae198 {
  margin-left: 22px;
margin-right: 22px;
min-height: 50px;
}








#s-2770f507-9f1a-48e2-8ba6-a9239c5ae198 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2770f507-9f1a-48e2-8ba6-a9239c5ae198.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bf7d4fc6-ea5f-4a69-a294-bc97e50fe4d3 {
  margin-left: auto;
margin-right: auto;
max-width: 1060px;
}

@media (min-width: 0px) {
[id="s-bf7d4fc6-ea5f-4a69-a294-bc97e50fe4d3"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-bf7d4fc6-ea5f-4a69-a294-bc97e50fe4d3"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 992px) {
[id="s-bf7d4fc6-ea5f-4a69-a294-bc97e50fe4d3"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 1200px) {
[id="s-bf7d4fc6-ea5f-4a69-a294-bc97e50fe4d3"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 11.25px);
}

}

#s-9d6120f5-4df5-4479-beb3-1a8b8ea50430 {
  margin-top: 25px;
text-align: center;
}







  #s-9d6120f5-4df5-4479-beb3-1a8b8ea50430 img.shogun-image {
    

    
    
    
  }


#s-9d6120f5-4df5-4479-beb3-1a8b8ea50430 .shogun-image-content {
  
    align-items: center;
  
}

#s-dd6ed993-e056-4c3f-b356-8414b27d3012 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-0b2a4d28-d790-44d8-911b-2a2aa2d4cc29 {
  margin-top: 25px;
text-align: center;
}







  #s-0b2a4d28-d790-44d8-911b-2a2aa2d4cc29 img.shogun-image {
    

    
    
    
  }


#s-0b2a4d28-d790-44d8-911b-2a2aa2d4cc29 .shogun-image-content {
  
    align-items: center;
  
}

#s-d81c7e50-a1c7-4d8e-873c-2ab2b8f0d9c8 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-450e4dc6-635d-4506-8e88-cc012976c386 {
  margin-top: 25px;
text-align: center;
}







  #s-450e4dc6-635d-4506-8e88-cc012976c386 img.shogun-image {
    

    
    
    
  }


#s-450e4dc6-635d-4506-8e88-cc012976c386 .shogun-image-content {
  
    align-items: center;
  
}

#s-1dca5a19-9cf2-4526-ae3d-37d0704ba2c4 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-8bf1883a-5726-4123-840e-03b84cd6c070 {
  margin-top: 25px;
text-align: center;
}







  #s-8bf1883a-5726-4123-840e-03b84cd6c070 img.shogun-image {
    

    
    
    
  }


#s-8bf1883a-5726-4123-840e-03b84cd6c070 .shogun-image-content {
  
    align-items: center;
  
}

#s-4d220c1d-3eac-4cb1-9195-7e54589261d5 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-5e502919-4906-4d08-a387-b2fe04cbc887 {
  margin-left: 22px;
margin-right: 22px;
min-height: 50px;
}








#s-5e502919-4906-4d08-a387-b2fe04cbc887 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5e502919-4906-4d08-a387-b2fe04cbc887.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e4716b3a-5901-45e7-90d1-1f249ce1a097 {
  margin-left: auto;
margin-right: auto;
max-width: 1060px;
}








#s-e4716b3a-5901-45e7-90d1-1f249ce1a097 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e4716b3a-5901-45e7-90d1-1f249ce1a097.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5bf1fc07-fbd2-4ac2-9d3c-0dc0fd69aabf {
  margin-top: 25px;
margin-bottom: -10px;
text-align: left;
}

#s-97eccd29-f48d-4768-bbf4-63a9f3f4234a {
  margin-left: 22px;
margin-right: 22px;
min-height: 50px;
}








#s-97eccd29-f48d-4768-bbf4-63a9f3f4234a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-97eccd29-f48d-4768-bbf4-63a9f3f4234a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fa2dd28f-6b7b-451b-b6c6-38328d7a1e0c {
  margin-left: auto;
margin-right: auto;
max-width: 1060px;
}

@media (min-width: 0px) {
[id="s-fa2dd28f-6b7b-451b-b6c6-38328d7a1e0c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-fa2dd28f-6b7b-451b-b6c6-38328d7a1e0c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 992px) {
[id="s-fa2dd28f-6b7b-451b-b6c6-38328d7a1e0c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 1200px) {
[id="s-fa2dd28f-6b7b-451b-b6c6-38328d7a1e0c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 11.25px);
}

}

#s-7005d246-0aea-43f0-86e7-30aee666394d {
  margin-top: 25px;
text-align: center;
}







  #s-7005d246-0aea-43f0-86e7-30aee666394d img.shogun-image {
    

    
    
    
  }


#s-7005d246-0aea-43f0-86e7-30aee666394d .shogun-image-content {
  
    align-items: center;
  
}

#s-ad6ed5de-62ee-4c66-a361-9c53b853cd21 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-114e7fad-ed91-40d0-8fd0-2ea0f0091a9d {
  margin-top: 25px;
text-align: center;
}







  #s-114e7fad-ed91-40d0-8fd0-2ea0f0091a9d img.shogun-image {
    

    
    
    
  }


#s-114e7fad-ed91-40d0-8fd0-2ea0f0091a9d .shogun-image-content {
  
    align-items: center;
  
}

#s-06518f06-32a0-4759-adb8-77c3eaad06de {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-4474d2dc-4de2-4682-8677-c9d7dbc4109d {
  margin-top: 25px;
text-align: center;
}







  #s-4474d2dc-4de2-4682-8677-c9d7dbc4109d img.shogun-image {
    

    
    
    
  }


#s-4474d2dc-4de2-4682-8677-c9d7dbc4109d .shogun-image-content {
  
    align-items: center;
  
}

#s-3672cbfd-5b6d-4d7c-9ab9-bcdab02d239e {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-bbf6a4ea-220f-40f5-990e-59f853e2563f {
  margin-top: 25px;
text-align: center;
}







  #s-bbf6a4ea-220f-40f5-990e-59f853e2563f img.shogun-image {
    

    
    
    
  }


#s-bbf6a4ea-220f-40f5-990e-59f853e2563f .shogun-image-content {
  
    align-items: center;
  
}

#s-c98c70d1-3d7a-466a-b654-dd741820ffc5 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-0e2f622e-b4a0-4494-8346-871431474e2b {
  margin-left: 22px;
margin-right: 22px;
min-height: 50px;
}








#s-0e2f622e-b4a0-4494-8346-871431474e2b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0e2f622e-b4a0-4494-8346-871431474e2b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6f09bbac-746c-484d-a574-3271e9083e73 {
  margin-left: auto;
margin-right: auto;
max-width: 1060px;
}

@media (min-width: 0px) {
[id="s-6f09bbac-746c-484d-a574-3271e9083e73"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-6f09bbac-746c-484d-a574-3271e9083e73"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 992px) {
[id="s-6f09bbac-746c-484d-a574-3271e9083e73"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 1200px) {
[id="s-6f09bbac-746c-484d-a574-3271e9083e73"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 11.25px);
}

}

#s-796f5ca4-c54c-481c-978f-dee47f9d2dac {
  margin-top: 25px;
text-align: center;
}







  #s-796f5ca4-c54c-481c-978f-dee47f9d2dac img.shogun-image {
    

    
    
    
  }


#s-796f5ca4-c54c-481c-978f-dee47f9d2dac .shogun-image-content {
  
    align-items: center;
  
}

#s-c8765ae1-5d6c-4416-8c0a-70747c702255 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-ba702659-6d5a-4e53-9b05-98dd1ffbf83a {
  margin-top: 25px;
text-align: center;
}







  #s-ba702659-6d5a-4e53-9b05-98dd1ffbf83a img.shogun-image {
    

    
    
    
  }


#s-ba702659-6d5a-4e53-9b05-98dd1ffbf83a .shogun-image-content {
  
    align-items: center;
  
}

#s-5963ee3d-6be0-4275-8d00-ccb7a9ce60d9 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-f4581415-ab9e-419f-aa99-3f11dcb83ad6 {
  margin-top: 25px;
}







  #s-f4581415-ab9e-419f-aa99-3f11dcb83ad6 img.shogun-image {
    

    
    
    
  }


#s-f4581415-ab9e-419f-aa99-3f11dcb83ad6 .shogun-image-content {
  
    align-items: center;
  
}

#s-8586554d-fa37-426e-b7e8-23ae5cc9e806 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-ee8a7bf8-3595-42be-a22d-9276d0f0f0dc {
  margin-top: 25px;
text-align: center;
}







  #s-ee8a7bf8-3595-42be-a22d-9276d0f0f0dc img.shogun-image {
    

    
    
    
  }


#s-ee8a7bf8-3595-42be-a22d-9276d0f0f0dc .shogun-image-content {
  
    align-items: center;
  
}

#s-e5e88b54-c394-4853-bfc2-c32ac561ba14 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-5ff50c1e-5759-4e8b-8b3f-9d4c684e8015 {
  margin-left: 22px;
margin-right: 22px;
min-height: 50px;
}








#s-5ff50c1e-5759-4e8b-8b3f-9d4c684e8015 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5ff50c1e-5759-4e8b-8b3f-9d4c684e8015.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-24b1cff7-90e5-485a-a522-5d5bc125ccd1 {
  margin-left: auto;
margin-right: auto;
max-width: 1060px;
}

@media (min-width: 0px) {
[id="s-24b1cff7-90e5-485a-a522-5d5bc125ccd1"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-24b1cff7-90e5-485a-a522-5d5bc125ccd1"] > .shg-row > .shg-c-sm-2_8 {
  width: calc(23.333333333333332% - 12.0px);
}

[id="s-24b1cff7-90e5-485a-a522-5d5bc125ccd1"] > .shg-row > .shg-c-sm-1_6 {
  width: calc(13.333333333333336% - 12.0px);
}

[id="s-24b1cff7-90e5-485a-a522-5d5bc125ccd1"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 12.0px);
}

}

@media (min-width: 992px) {
[id="s-24b1cff7-90e5-485a-a522-5d5bc125ccd1"] > .shg-row > .shg-c-md-2_8 {
  width: calc(23.333333333333332% - 12.0px);
}

[id="s-24b1cff7-90e5-485a-a522-5d5bc125ccd1"] > .shg-row > .shg-c-md-1_6 {
  width: calc(13.333333333333336% - 12.0px);
}

[id="s-24b1cff7-90e5-485a-a522-5d5bc125ccd1"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 12.0px);
}

}

@media (min-width: 1200px) {
[id="s-24b1cff7-90e5-485a-a522-5d5bc125ccd1"] > .shg-row > .shg-c-lg-2_8 {
  width: calc(23.333333333333332% - 12.0px);
}

[id="s-24b1cff7-90e5-485a-a522-5d5bc125ccd1"] > .shg-row > .shg-c-lg-1_6 {
  width: calc(13.333333333333336% - 12.0px);
}

[id="s-24b1cff7-90e5-485a-a522-5d5bc125ccd1"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 12.0px);
}

}

#s-c64c3c51-da1b-406e-a324-e724ab1ea65d {
  margin-top: 25px;
text-align: center;
}







  #s-c64c3c51-da1b-406e-a324-e724ab1ea65d img.shogun-image {
    

    
    
    
  }


#s-c64c3c51-da1b-406e-a324-e724ab1ea65d .shogun-image-content {
  
    align-items: center;
  
}

#s-978c4941-99b7-45ff-9c40-591e983a6741 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

#s-b3d9b174-7433-4ec9-a6c6-45d22fa7412b {
  margin-top: 25px;
max-width: 500px;
aspect-ratio: 500/284;
text-align: center;
}





  #s-b3d9b174-7433-4ec9-a6c6-45d22fa7412b img.shogun-image,
  #s-b3d9b174-7433-4ec9-a6c6-45d22fa7412b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-b3d9b174-7433-4ec9-a6c6-45d22fa7412b {
    width: 100%;
    height: auto;
  }



  #s-b3d9b174-7433-4ec9-a6c6-45d22fa7412b img.shogun-image {
    

    
    
    
  }


#s-b3d9b174-7433-4ec9-a6c6-45d22fa7412b .shogun-image-content {
  
    align-items: center;
  
}

#s-0921d612-e9d0-45e0-b49f-3047f746c725 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
}

/*
  $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}
