.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-d46a40b0-1a4a-42fc-aaa0-47698b3bd475 {
  min-height: 50px;
}








#s-d46a40b0-1a4a-42fc-aaa0-47698b3bd475 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d46a40b0-1a4a-42fc-aaa0-47698b3bd475.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-sld-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.shg-sld-slides {
  word-break: break-word;
  position: relative;
}

.shg-sld-slides-padded {
  padding: 0 35px;
}

.shg-sld-nav-button {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 0;
  width: 35px;
  min-height: 35px;
  height: 100%;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.shg-sld-nav-button > svg {
  height: 100%;
  width: 100%;
}

.shg-sld-nav-button.shg-sld-left {
  left: 0;
}

.shg-sld-nav-button.shg-sld-left-over-content {
  left: 2%;
}

.shg-sld-nav-button.shg-sld-right {
  right: 0;
}

.shg-sld-nav-button.shg-sld-right-over-content {
  right: 2%;
}

.shg-sld-nav-button.shg-sld-disabled {
  cursor: default;
  opacity: 0.2;
}

.shg-sld-item {
  display: none;
}

.shg-sld-item.shg-sld-active {
  display: block;
}

.shg-sld-dots {
  margin-top: 10px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.shg-sld-dots-on-top {
  margin-top: -30px !important;
}

.shg-sld-dot {
  cursor: pointer;
  display: inline-block !important;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  margin-left: 5px;
  opacity: 0.5;
}

.shg-sld-dot:first-child {
  margin-left: 0px;
}

.shg-sld-dot.shg-sld-active {
  opacity: 1;
}

@keyframes shg-sld-fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

#s-8b8fe35f-4591-4430-a28d-d3214e86be45 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-8b8fe35f-4591-4430-a28d-d3214e86be45 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-8b8fe35f-4591-4430-a28d-d3214e86be45 .shg-sld-nav-button.shg-sld-left,
#s-8b8fe35f-4591-4430-a28d-d3214e86be45 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

.shg-align-container {
  box-sizing: border-box;
}

.shg-image-content-wrapper {
  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;
  height: inherit;
  position: relative;
}

img.shogun-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.shg-imageV2-content {
  text-align: initial;
}

.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;
}

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}
#s-ed85ece0-c978-420b-b737-3efe4d0dd7d6 {
  text-align: center;
}







  img.s-ed85ece0-c978-420b-b737-3efe4d0dd7d6.shogun-image {
    
    
  }


.s-ed85ece0-c978-420b-b737-3efe4d0dd7d6 .shogun-image-content {
  
    align-items: center;
  
}

.s-ed85ece0-c978-420b-b737-3efe4d0dd7d6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed85ece0-c978-420b-b737-3efe4d0dd7d6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed85ece0-c978-420b-b737-3efe4d0dd7d6.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-ed85ece0-c978-420b-b737-3efe4d0dd7d6.shogun-image {
    
    
  }


.s-ed85ece0-c978-420b-b737-3efe4d0dd7d6 .shogun-image-content {
  
    align-items: center;
  
}

.s-ed85ece0-c978-420b-b737-3efe4d0dd7d6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed85ece0-c978-420b-b737-3efe4d0dd7d6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed85ece0-c978-420b-b737-3efe4d0dd7d6.shogun-image {
  box-sizing: border-box;
}



}@media (min-width: 992px) and (max-width: 1199px){





  img.s-ed85ece0-c978-420b-b737-3efe4d0dd7d6.shogun-image {
    
    
  }


.s-ed85ece0-c978-420b-b737-3efe4d0dd7d6 .shogun-image-content {
  
    align-items: center;
  
}

.s-ed85ece0-c978-420b-b737-3efe4d0dd7d6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed85ece0-c978-420b-b737-3efe4d0dd7d6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed85ece0-c978-420b-b737-3efe4d0dd7d6.shogun-image {
  box-sizing: border-box;
}



}@media (min-width: 768px) and (max-width: 991px){





  img.s-ed85ece0-c978-420b-b737-3efe4d0dd7d6.shogun-image {
    
    
  }


.s-ed85ece0-c978-420b-b737-3efe4d0dd7d6 .shogun-image-content {
  
    align-items: center;
  
}

.s-ed85ece0-c978-420b-b737-3efe4d0dd7d6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed85ece0-c978-420b-b737-3efe4d0dd7d6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed85ece0-c978-420b-b737-3efe4d0dd7d6.shogun-image {
  box-sizing: border-box;
}



}@media (max-width: 767px){





  img.s-ed85ece0-c978-420b-b737-3efe4d0dd7d6.shogun-image {
    
    
  }


.s-ed85ece0-c978-420b-b737-3efe4d0dd7d6 .shogun-image-content {
  
    align-items: center;
  
}

.s-ed85ece0-c978-420b-b737-3efe4d0dd7d6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-ed85ece0-c978-420b-b737-3efe4d0dd7d6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-ed85ece0-c978-420b-b737-3efe4d0dd7d6.shogun-image {
  box-sizing: border-box;
}



}
.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-5309f27a-4c19-4dbc-9a14-8e7e162b9601 {
  text-align: center;
}







  #s-5309f27a-4c19-4dbc-9a14-8e7e162b9601 img.shogun-image {
    

    
    
    
  }


#s-5309f27a-4c19-4dbc-9a14-8e7e162b9601 .shogun-image-content {
  
    align-items: center;
  
}

#s-bb54983d-7e39-4bd9-b55d-a084adfeb3ac {
  text-align: center;
}







  #s-bb54983d-7e39-4bd9-b55d-a084adfeb3ac img.shogun-image {
    

    
    
    
  }


#s-bb54983d-7e39-4bd9-b55d-a084adfeb3ac .shogun-image-content {
  
    align-items: center;
  
}

#s-4f4f931a-3205-4475-865f-8d584f296d7f {
  text-align: center;
}
@media (min-width: 1200px){#s-4f4f931a-3205-4475-865f-8d584f296d7f {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4f4f931a-3205-4475-865f-8d584f296d7f {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-4f4f931a-3205-4475-865f-8d584f296d7f {
  
}
}@media (max-width: 767px){#s-4f4f931a-3205-4475-865f-8d584f296d7f {
  
}
}






  #s-4f4f931a-3205-4475-865f-8d584f296d7f img.shogun-image {
    

    
    
    
  }


#s-4f4f931a-3205-4475-865f-8d584f296d7f .shogun-image-content {
  
    align-items: center;
  
}

#s-f89bfbc6-f424-4148-87db-54ce8c6dbb12 {
  padding-top: 30px;
padding-bottom: 30px;
min-height: 50px;
background-color: rgba(243, 245, 249, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-f89bfbc6-f424-4148-87db-54ce8c6dbb12 {
  padding-top: 15px;
padding-bottom: 15px;
}
}@media (max-width: 767px){#s-f89bfbc6-f424-4148-87db-54ce8c6dbb12 {
  padding-top: 15px;
padding-bottom: 15px;
}
}







#s-f89bfbc6-f424-4148-87db-54ce8c6dbb12 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f89bfbc6-f424-4148-87db-54ce8c6dbb12.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-14de5769-848e-44b2-8353-b48fbfbaca20 {
  background-color: rgba(243, 245, 249, 1);
}

@media (min-width: 0px) {
[id="s-14de5769-848e-44b2-8353-b48fbfbaca20"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-14de5769-848e-44b2-8353-b48fbfbaca20"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-14de5769-848e-44b2-8353-b48fbfbaca20"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-14de5769-848e-44b2-8353-b48fbfbaca20"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

.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-741fba62-80f1-468a-ba92-cc5f6c768831 {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
}
@media (min-width: 768px) and (max-width: 991px){#s-741fba62-80f1-468a-ba92-cc5f6c768831 {
  padding-top: 0px;
padding-left: 15px;
padding-bottom: 0px;
padding-right: 15px;
}
}@media (max-width: 767px){#s-741fba62-80f1-468a-ba92-cc5f6c768831 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-06481114-1172-4274-9010-aa5f7d08c6f9 {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
}
@media (min-width: 768px) and (max-width: 991px){#s-06481114-1172-4274-9010-aa5f7d08c6f9 {
  padding-top: 0px;
padding-bottom: 0px;
}
}@media (max-width: 767px){#s-06481114-1172-4274-9010-aa5f7d08c6f9 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-823c316c-0fb5-4d18-a057-0f7cadb099a9 {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
}
@media (min-width: 768px) and (max-width: 991px){#s-823c316c-0fb5-4d18-a057-0f7cadb099a9 {
  padding-top: 0px;
padding-bottom: 0px;
}
}@media (max-width: 767px){#s-823c316c-0fb5-4d18-a057-0f7cadb099a9 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-41825c7c-7a47-44fe-ab0e-92e2d440c135 {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
}
@media (min-width: 768px) and (max-width: 991px){#s-41825c7c-7a47-44fe-ab0e-92e2d440c135 {
  padding-top: 0px;
padding-bottom: 0px;
}
}@media (max-width: 767px){#s-41825c7c-7a47-44fe-ab0e-92e2d440c135 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-3cd80cd2-2803-4bdc-ad18-b7dfc52fd236 {
  text-align: left;
}

#s-eae0323a-7a42-4bd2-b3a9-3c36131a1622 {
  padding-top: 50px;
padding-bottom: 50px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-eae0323a-7a42-4bd2-b3a9-3c36131a1622 {
  padding-top: 15px;
padding-bottom: 15px;
}
}@media (max-width: 767px){#s-eae0323a-7a42-4bd2-b3a9-3c36131a1622 {
  padding-top: 15px;
padding-bottom: 15px;
}
}







#s-eae0323a-7a42-4bd2-b3a9-3c36131a1622 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eae0323a-7a42-4bd2-b3a9-3c36131a1622.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-edc236bb-4f22-4bd6-94e8-824e980df713 {
  padding-top: 15px;
padding-left: 50px;
padding-bottom: 15px;
padding-right: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-edc236bb-4f22-4bd6-94e8-824e980df713 {
  padding-left: 15px;
padding-right: 15px;
}
}@media (max-width: 767px){#s-edc236bb-4f22-4bd6-94e8-824e980df713 {
  padding-left: 15px;
padding-right: 15px;
}
}
@media (min-width: 0px) {
[id="s-edc236bb-4f22-4bd6-94e8-824e980df713"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-edc236bb-4f22-4bd6-94e8-824e980df713"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-edc236bb-4f22-4bd6-94e8-824e980df713"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-edc236bb-4f22-4bd6-94e8-824e980df713"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-edc236bb-4f22-4bd6-94e8-824e980df713"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-edc236bb-4f22-4bd6-94e8-824e980df713"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-edc236bb-4f22-4bd6-94e8-824e980df713"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-edc236bb-4f22-4bd6-94e8-824e980df713"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-edc236bb-4f22-4bd6-94e8-824e980df713"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-edc236bb-4f22-4bd6-94e8-824e980df713"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

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

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

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

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

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

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

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

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

#s-0c8a7df2-8e04-45f4-8bcd-14cfc27fd5c6 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 8px;
background-color: rgba(87, 173, 215, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-0c8a7df2-8e04-45f4-8bcd-14cfc27fd5c6:hover {background-color: rgba(115, 182, 78, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-0c8a7df2-8e04-45f4-8bcd-14cfc27fd5c6:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-0c8a7df2-8e04-45f4-8bcd-14cfc27fd5c6-root {
    text-align: left;
  }


#s-0c8a7df2-8e04-45f4-8bcd-14cfc27fd5c6.shg-btn {
  color: #ffffff;
  font-size: 26px;
  
  
  font-family: MYRIADPRO-BOLD;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-0c8a7df2-8e04-45f4-8bcd-14cfc27fd5c6-root {
    text-align: left;
  }


#s-0c8a7df2-8e04-45f4-8bcd-14cfc27fd5c6.shg-btn {
  color: #ffffff;
  font-size: 26px;
  
  
  font-family: MYRIADPRO-BOLD;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0c8a7df2-8e04-45f4-8bcd-14cfc27fd5c6-root {
    text-align: left;
  }


#s-0c8a7df2-8e04-45f4-8bcd-14cfc27fd5c6.shg-btn {
  color: #ffffff;
  font-size: 26px;
  
  
  font-family: MYRIADPRO-BOLD;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0c8a7df2-8e04-45f4-8bcd-14cfc27fd5c6-root {
    text-align: left;
  }


#s-0c8a7df2-8e04-45f4-8bcd-14cfc27fd5c6.shg-btn {
  color: #ffffff;
  font-size: 26px;
  
  
  font-family: MYRIADPRO-BOLD;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-0c8a7df2-8e04-45f4-8bcd-14cfc27fd5c6-root {
    text-align: left;
  }


#s-0c8a7df2-8e04-45f4-8bcd-14cfc27fd5c6.shg-btn {
  color: #ffffff;
  font-size: 26px;
  
  
  font-family: MYRIADPRO-BOLD;
  display:  inline-block ;
}
}
#s-cf2f4fd7-ca5b-40d1-a946-6ae0290c10da {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
}

#s-35bc8d9d-666a-4e83-a79a-393a6492d46c {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-35bc8d9d-666a-4e83-a79a-393a6492d46c .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-35bc8d9d-666a-4e83-a79a-393a6492d46c .shg-sld-nav-button.shg-sld-left,
#s-35bc8d9d-666a-4e83-a79a-393a6492d46c .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-ddf0066c-2066-4a29-8c5e-89d9a8e8901b {
  text-align: center;
}







  #s-ddf0066c-2066-4a29-8c5e-89d9a8e8901b img.shogun-image {
    

    
    
    
  }


#s-ddf0066c-2066-4a29-8c5e-89d9a8e8901b .shogun-image-content {
  
    align-items: center;
  
}

#s-62d5e940-7461-4942-885a-f240c62fb127 {
  text-align: center;
}







  #s-62d5e940-7461-4942-885a-f240c62fb127 img.shogun-image {
    

    
    
    
  }


#s-62d5e940-7461-4942-885a-f240c62fb127 .shogun-image-content {
  
    align-items: center;
  
}

#s-171480c6-0333-4bfb-97e7-af284bd52781 {
  text-align: center;
}







  #s-171480c6-0333-4bfb-97e7-af284bd52781 img.shogun-image {
    

    
    
    
  }


#s-171480c6-0333-4bfb-97e7-af284bd52781 .shogun-image-content {
  
    align-items: center;
  
}

#s-4dbb7054-06e6-483b-a966-b490f4702848 {
  padding-top: 70px;
padding-left: 15px;
padding-bottom: 70px;
padding-right: 15px;
min-height: 50px;
background-color: rgba(243, 245, 249, 1);
}








#s-4dbb7054-06e6-483b-a966-b490f4702848 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4dbb7054-06e6-483b-a966-b490f4702848.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e8ee765d-cbed-4cea-a676-9d00f85a0f0f {
  padding-left: 50px;
padding-right: 50px;
}

@media (min-width: 0px) {
[id="s-e8ee765d-cbed-4cea-a676-9d00f85a0f0f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e8ee765d-cbed-4cea-a676-9d00f85a0f0f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e8ee765d-cbed-4cea-a676-9d00f85a0f0f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e8ee765d-cbed-4cea-a676-9d00f85a0f0f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-748bc6a4-6f1c-45e2-ba4e-50db269b6b21 {
  text-align: center;
}







  #s-748bc6a4-6f1c-45e2-ba4e-50db269b6b21 img.shogun-image {
    

    
    
    
  }


#s-748bc6a4-6f1c-45e2-ba4e-50db269b6b21 .shogun-image-content {
  
    align-items: center;
  
}

#s-13faef5d-8ce1-434e-8cd4-1fefc2208fc2 {
  padding-top: 70px;
padding-left: 15px;
padding-bottom: 70px;
padding-right: 15px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-13faef5d-8ce1-434e-8cd4-1fefc2208fc2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-13faef5d-8ce1-434e-8cd4-1fefc2208fc2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7a9d29f4-8c7d-4055-a8a1-cd5c8458108e {
  padding-bottom: 20px;
}

#s-228fdbec-cf8c-4e32-9ae5-160d1facbdd7 {
  margin-bottom: 30px;
padding-left: 5%;
padding-right: 5%;
}

@media (min-width: 0px) {
[id="s-228fdbec-cf8c-4e32-9ae5-160d1facbdd7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-228fdbec-cf8c-4e32-9ae5-160d1facbdd7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-228fdbec-cf8c-4e32-9ae5-160d1facbdd7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-228fdbec-cf8c-4e32-9ae5-160d1facbdd7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-1f8c7cb5-51f9-469f-8382-57a413696728 {
  min-height: 400px;
}








#s-1f8c7cb5-51f9-469f-8382-57a413696728 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1f8c7cb5-51f9-469f-8382-57a413696728.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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-d8a88867-7562-4cbc-a95c-62b9af41ae8e {
  min-height: 400px;
}








#s-d8a88867-7562-4cbc-a95c-62b9af41ae8e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d8a88867-7562-4cbc-a95c-62b9af41ae8e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-26bde43c-4dd4-442c-a7e0-8382da90c903 {
  margin-top: 30px;
padding-left: 5%;
padding-right: 5%;
}

@media (min-width: 0px) {
[id="s-26bde43c-4dd4-442c-a7e0-8382da90c903"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-26bde43c-4dd4-442c-a7e0-8382da90c903"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-26bde43c-4dd4-442c-a7e0-8382da90c903"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-26bde43c-4dd4-442c-a7e0-8382da90c903"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-9a0537f2-2b0b-424b-8b75-edd548cf3e2a {
  min-height: 400px;
}








#s-9a0537f2-2b0b-424b-8b75-edd548cf3e2a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9a0537f2-2b0b-424b-8b75-edd548cf3e2a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b4d1bb18-6ebc-44c4-9086-9e67ecae2ca9 {
  min-height: 400px;
}








#s-b4d1bb18-6ebc-44c4-9086-9e67ecae2ca9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b4d1bb18-6ebc-44c4-9086-9e67ecae2ca9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1f18e2c3-b4a2-4ec4-8eb2-651a72a21b69 {
  padding-top: 50px;
padding-left: 100px;
padding-bottom: 50px;
padding-right: 100px;
min-height: 50px;
background-color: rgba(243, 245, 249, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-1f18e2c3-b4a2-4ec4-8eb2-651a72a21b69 {
  padding-top: 15px;
padding-left: 0px;
padding-bottom: 15px;
padding-right: 0px;
}
}@media (max-width: 767px){#s-1f18e2c3-b4a2-4ec4-8eb2-651a72a21b69 {
  padding-top: 15px;
padding-left: 0px;
padding-bottom: 15px;
padding-right: 0px;
}
}







#s-1f18e2c3-b4a2-4ec4-8eb2-651a72a21b69 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1f18e2c3-b4a2-4ec4-8eb2-651a72a21b69.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7f92dd9f-7537-43ce-8086-c7666d141d84 {
  padding-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-6d6c3fb4-aa1e-47f1-8b94-4de1528ade1e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6d6c3fb4-aa1e-47f1-8b94-4de1528ade1e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-6d6c3fb4-aa1e-47f1-8b94-4de1528ade1e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-6d6c3fb4-aa1e-47f1-8b94-4de1528ade1e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-8a919bcd-20d1-4e9e-99f7-1d0fcae49510 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(225, 233, 242, 1);
border-style: solid;
min-height: 300px;
}








#s-8a919bcd-20d1-4e9e-99f7-1d0fcae49510 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8a919bcd-20d1-4e9e-99f7-1d0fcae49510.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ee30d4c4-f77e-47cf-8747-3c9a81d9582d {
  max-width: 1280px;
aspect-ratio: 16/9;
text-align: center;
}





  #s-ee30d4c4-f77e-47cf-8747-3c9a81d9582d img.shogun-image,
  #s-ee30d4c4-f77e-47cf-8747-3c9a81d9582d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-ee30d4c4-f77e-47cf-8747-3c9a81d9582d {
    width: 100%;
    height: auto;
  }



  #s-ee30d4c4-f77e-47cf-8747-3c9a81d9582d img.shogun-image {
    

    
    
    
  }


#s-ee30d4c4-f77e-47cf-8747-3c9a81d9582d .shogun-image-content {
  
    align-items: center;
  
}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: ;
  font-family: ;
  text-transform: none;
  font-weight: ;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

.shogun-heading-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-0e64b408-f12f-45c7-b338-585d9ba146df {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0e64b408-f12f-45c7-b338-585d9ba146df .shogun-heading-component h2 {
  color: rgba(41, 46, 50, 1);
  font-weight:  normal ;
  font-family: "MYRIADPRO-REGULAR";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-f816ca39-eacc-4f71-ad7d-6d30c0cfa2a3 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 4px;
background-color: rgba(87, 173, 215, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-f816ca39-eacc-4f71-ad7d-6d30c0cfa2a3:hover {background-color: rgba(115, 182, 78, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-f816ca39-eacc-4f71-ad7d-6d30c0cfa2a3:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-f816ca39-eacc-4f71-ad7d-6d30c0cfa2a3-root {
    text-align: center;
  }


#s-f816ca39-eacc-4f71-ad7d-6d30c0cfa2a3.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: MYRIADPRO-BOLD;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-f816ca39-eacc-4f71-ad7d-6d30c0cfa2a3-root {
    text-align: center;
  }


#s-f816ca39-eacc-4f71-ad7d-6d30c0cfa2a3.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: MYRIADPRO-BOLD;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f816ca39-eacc-4f71-ad7d-6d30c0cfa2a3-root {
    text-align: center;
  }


#s-f816ca39-eacc-4f71-ad7d-6d30c0cfa2a3.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: MYRIADPRO-BOLD;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f816ca39-eacc-4f71-ad7d-6d30c0cfa2a3-root {
    text-align: center;
  }


#s-f816ca39-eacc-4f71-ad7d-6d30c0cfa2a3.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: MYRIADPRO-BOLD;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-f816ca39-eacc-4f71-ad7d-6d30c0cfa2a3-root {
    text-align: center;
  }


#s-f816ca39-eacc-4f71-ad7d-6d30c0cfa2a3.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: MYRIADPRO-BOLD;
  display:  inline-block ;
}
}
#s-b95c79dc-9998-4133-b0b8-225dc9653979 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(225, 233, 242, 1);
border-style: solid;
min-height: 300px;
}








#s-b95c79dc-9998-4133-b0b8-225dc9653979 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b95c79dc-9998-4133-b0b8-225dc9653979.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2642434b-ef16-498d-9934-a29c61d330e5 {
  text-align: center;
}







  #s-2642434b-ef16-498d-9934-a29c61d330e5 img.shogun-image {
    

    
    
    
  }


#s-2642434b-ef16-498d-9934-a29c61d330e5 .shogun-image-content {
  
    align-items: center;
  
}

#s-fe13bc3a-96af-49e1-a246-1b4754014849 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-fe13bc3a-96af-49e1-a246-1b4754014849 .shogun-heading-component h2 {
  color: rgba(41, 46, 50, 1);
  font-weight:  normal ;
  font-family: "MYRIADPRO-REGULAR";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-d332a352-6488-49fd-a21a-f05dd3914927 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 4px;
background-color: rgba(87, 173, 215, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-d332a352-6488-49fd-a21a-f05dd3914927:hover {background-color: rgba(115, 182, 78, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-d332a352-6488-49fd-a21a-f05dd3914927:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-d332a352-6488-49fd-a21a-f05dd3914927-root {
    text-align: center;
  }


#s-d332a352-6488-49fd-a21a-f05dd3914927.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: MYRIADPRO-BOLD;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d332a352-6488-49fd-a21a-f05dd3914927-root {
    text-align: center;
  }


#s-d332a352-6488-49fd-a21a-f05dd3914927.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: MYRIADPRO-BOLD;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d332a352-6488-49fd-a21a-f05dd3914927-root {
    text-align: center;
  }


#s-d332a352-6488-49fd-a21a-f05dd3914927.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: MYRIADPRO-BOLD;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d332a352-6488-49fd-a21a-f05dd3914927-root {
    text-align: center;
  }


#s-d332a352-6488-49fd-a21a-f05dd3914927.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: MYRIADPRO-BOLD;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d332a352-6488-49fd-a21a-f05dd3914927-root {
    text-align: center;
  }


#s-d332a352-6488-49fd-a21a-f05dd3914927.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: MYRIADPRO-BOLD;
  display:  inline-block ;
}
}
#s-2244df84-0cdd-4a32-acc7-4107a46b2935 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(225, 233, 242, 1);
border-style: solid;
min-height: 300px;
}








#s-2244df84-0cdd-4a32-acc7-4107a46b2935 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2244df84-0cdd-4a32-acc7-4107a46b2935.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-15ae3c63-db83-4270-abed-1d59e650450e {
  text-align: center;
}







  #s-15ae3c63-db83-4270-abed-1d59e650450e img.shogun-image {
    

    
    
    
  }


#s-15ae3c63-db83-4270-abed-1d59e650450e .shogun-image-content {
  
    align-items: center;
  
}

#s-60fb4801-0e2f-4d36-b046-495e8d1aec88 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-60fb4801-0e2f-4d36-b046-495e8d1aec88 .shogun-heading-component h2 {
  color: rgba(41, 46, 50, 1);
  font-weight:  normal ;
  font-family: "MYRIADPRO-REGULAR";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-2a3473f5-fb47-4e66-bdb8-4b3026821976 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 4px;
background-color: rgba(87, 173, 215, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-2a3473f5-fb47-4e66-bdb8-4b3026821976:hover {background-color: rgba(115, 182, 78, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-2a3473f5-fb47-4e66-bdb8-4b3026821976:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-2a3473f5-fb47-4e66-bdb8-4b3026821976-root {
    text-align: center;
  }


#s-2a3473f5-fb47-4e66-bdb8-4b3026821976.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: MYRIADPRO-BOLD;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-2a3473f5-fb47-4e66-bdb8-4b3026821976-root {
    text-align: center;
  }


#s-2a3473f5-fb47-4e66-bdb8-4b3026821976.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: MYRIADPRO-BOLD;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-2a3473f5-fb47-4e66-bdb8-4b3026821976-root {
    text-align: center;
  }


#s-2a3473f5-fb47-4e66-bdb8-4b3026821976.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: MYRIADPRO-BOLD;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-2a3473f5-fb47-4e66-bdb8-4b3026821976-root {
    text-align: center;
  }


#s-2a3473f5-fb47-4e66-bdb8-4b3026821976.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: MYRIADPRO-BOLD;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-2a3473f5-fb47-4e66-bdb8-4b3026821976-root {
    text-align: center;
  }


#s-2a3473f5-fb47-4e66-bdb8-4b3026821976.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: MYRIADPRO-BOLD;
  display:  inline-block ;
}
}
#s-65499cb9-e1de-424b-8b51-6f21f2d6fe84 {
  padding-top: 50px;
padding-left: 100px;
padding-bottom: 50px;
padding-right: 100px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-65499cb9-e1de-424b-8b51-6f21f2d6fe84 {
  padding-top: 15px;
padding-left: 0px;
padding-bottom: 15px;
padding-right: 0px;
}
}@media (max-width: 767px){#s-65499cb9-e1de-424b-8b51-6f21f2d6fe84 {
  padding-top: 15px;
padding-left: 0px;
padding-bottom: 15px;
padding-right: 0px;
}
}







#s-65499cb9-e1de-424b-8b51-6f21f2d6fe84 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-65499cb9-e1de-424b-8b51-6f21f2d6fe84.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a643a3c0-d5b4-480f-9b09-e27e49cccd61 {
  padding-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-19ece46c-2cac-4ff3-ad33-1923e5a42389"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-19ece46c-2cac-4ff3-ad33-1923e5a42389"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-19ece46c-2cac-4ff3-ad33-1923e5a42389"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-19ece46c-2cac-4ff3-ad33-1923e5a42389"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-5f445000-e01b-4a50-9f23-e5b6cc12c62f {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(225, 233, 242, 1);
border-style: solid;
min-height: 300px;
}








#s-5f445000-e01b-4a50-9f23-e5b6cc12c62f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5f445000-e01b-4a50-9f23-e5b6cc12c62f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-85ab0ac6-ec4e-4731-8981-262194d49c3b {
  text-align: center;
}







  #s-85ab0ac6-ec4e-4731-8981-262194d49c3b img.shogun-image {
    

    
    
    
  }


#s-85ab0ac6-ec4e-4731-8981-262194d49c3b .shogun-image-content {
  
    align-items: center;
  
}

#s-c6c17814-73be-41f2-963b-6e4c32de62f1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c6c17814-73be-41f2-963b-6e4c32de62f1 .shogun-heading-component h2 {
  color: rgba(41, 46, 50, 1);
  font-weight:  normal ;
  font-family: "MYRIADPRO-REGULAR";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


#s-c6c17814-73be-41f2-963b-6e4c32de62f1 .shogun-heading-component h2 a {
  color: rgba(41, 46, 50, 1);
}


#s-433c4b86-0766-4ea4-94a2-c2edafb01891 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(225, 233, 242, 1);
border-style: solid;
min-height: 300px;
}








#s-433c4b86-0766-4ea4-94a2-c2edafb01891 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-433c4b86-0766-4ea4-94a2-c2edafb01891.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b058ea59-a6f7-4f1b-8085-acdc47fa2d29 {
  text-align: center;
}







  #s-b058ea59-a6f7-4f1b-8085-acdc47fa2d29 img.shogun-image {
    

    
    
    
  }


#s-b058ea59-a6f7-4f1b-8085-acdc47fa2d29 .shogun-image-content {
  
    align-items: center;
  
}

#s-165de134-cb22-4c27-9879-ef91fbb8dbbc {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-165de134-cb22-4c27-9879-ef91fbb8dbbc .shogun-heading-component h2 {
  color: rgba(41, 46, 50, 1);
  font-weight:  normal ;
  font-family: "MYRIADPRO-REGULAR";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


#s-165de134-cb22-4c27-9879-ef91fbb8dbbc .shogun-heading-component h2 a {
  color: rgba(41, 46, 50, 1);
}


#s-feb7ae81-d758-4b35-af21-4d86b3b7f9f7 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(225, 233, 242, 1);
border-style: solid;
min-height: 300px;
}








#s-feb7ae81-d758-4b35-af21-4d86b3b7f9f7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-feb7ae81-d758-4b35-af21-4d86b3b7f9f7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-be9c106e-d1bf-4738-8a71-5185bbf4cce2 {
  text-align: center;
}







  #s-be9c106e-d1bf-4738-8a71-5185bbf4cce2 img.shogun-image {
    

    
    
    
  }


#s-be9c106e-d1bf-4738-8a71-5185bbf4cce2 .shogun-image-content {
  
    align-items: center;
  
}

#s-1c5b4bbf-a7dd-4075-a93f-4212d9aba207 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1c5b4bbf-a7dd-4075-a93f-4212d9aba207 .shogun-heading-component h2 {
  color: rgba(41, 46, 50, 1);
  font-weight:  normal ;
  font-family: "MYRIADPRO-REGULAR";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


#s-1c5b4bbf-a7dd-4075-a93f-4212d9aba207 .shogun-heading-component h2 a {
  color: rgba(41, 46, 50, 1);
}


#s-1087ad11-5604-4f2b-8d2e-c7777898a392 {
  padding-top: 50px;
padding-left: 5%;
padding-bottom: 50px;
padding-right: 5%;
min-height: 50px;
background-color: rgba(243, 245, 249, 1);
}








#s-1087ad11-5604-4f2b-8d2e-c7777898a392 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1087ad11-5604-4f2b-8d2e-c7777898a392.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7a607ef3-747a-412b-b91b-5022bc659810 {
  padding-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-358561ab-4ae1-412f-89e9-ef3740c7ff74"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-358561ab-4ae1-412f-89e9-ef3740c7ff74"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-358561ab-4ae1-412f-89e9-ef3740c7ff74"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-358561ab-4ae1-412f-89e9-ef3740c7ff74"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-2d9a04b5-ca4e-4357-a3ed-0649d41d58ad {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(225, 233, 242, 1);
border-style: solid;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-2d9a04b5-ca4e-4357-a3ed-0649d41d58ad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2d9a04b5-ca4e-4357-a3ed-0649d41d58ad.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

.shg-product-img-placeholder img {
  padding: 3rem;
  background: rgba(0, 0, 0, 0.1);
}

.shg-product-image-wrapper {
  display: none;
  position: relative;
  width: 100%;
}

.shg-product-image-wrapper.visible {
  display: inline-block;
}

.shg-product-image-wrapper .shg-product-image-wrapper a {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.shg-product-image-wrapper .shg-image-zoom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  max-width: 100%;
  min-height: 100%;
}

.shg-c.shg-align-center .shg-image-zoom {
  margin: 0 auto;
}

.shg-c.shg-align-right .shg-image-zoom {
  margin-left: auto;
}

.shg-image-zoom .shg-image-zoom-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.5s ease-out;
  transform: scale(1);
}

/**
  Fix for IE11, as min-width does not works there.
**/
@media screen\0 {
  .shg-product-image-wrapper > .shogun-image {
    width: 100%;
  }
}

#s-9a5b94e0-1b9a-4c96-895b-f94ade181d93 {
  text-align: left;
}



.shg-c#s-9a5b94e0-1b9a-4c96-895b-f94ade181d93 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9a5b94e0-1b9a-4c96-895b-f94ade181d93 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-9a5b94e0-1b9a-4c96-895b-f94ade181d93 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9a5b94e0-1b9a-4c96-895b-f94ade181d93 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-9a5b94e0-1b9a-4c96-895b-f94ade181d93 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9a5b94e0-1b9a-4c96-895b-f94ade181d93 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-9a5b94e0-1b9a-4c96-895b-f94ade181d93 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9a5b94e0-1b9a-4c96-895b-f94ade181d93 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-9a5b94e0-1b9a-4c96-895b-f94ade181d93 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-9a5b94e0-1b9a-4c96-895b-f94ade181d93 img.shogun-image {
  width: 100%;
}



}
.shg-product-title-component h1,
.shg-product-title-component h2,
.shg-product-title-component h3,
.shg-product-title-component h4,
.shg-product-title-component h5,
.shg-product-title-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: ;
  font-family: ;
  text-transform: none;
  font-weight: ;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

.shg-product-title-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-75c4b885-d601-4eb7-a822-75dd5a1ae3d3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-75c4b885-d601-4eb7-a822-75dd5a1ae3d3 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: MYRIADPRO-REGULAR;
  font-style:   ;
  font-size: 17px;
  line-height: ;
  letter-spacing: ;
}

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

.shg-product-atc-wrapper {
  position: relative;
}

.shg-product-atc-btn {
  position: relative;
  z-index: 2;
  display: block;
  border: none;
  align-items: normal;
  box-sizing: border-box;
  cursor: pointer;
  transition: opacity 200ms linear;
  opacity: 1;
}

.shg-product-atc-btn-opaque {
  opacity: 0;
}

.shg-product-atc-info-box {
  position: absolute;
  z-index: 1;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  text-align: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

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

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

#s-b4681e47-3acd-48ef-8aae-0c45cb2ee73b {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(87, 173, 215, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-b4681e47-3acd-48ef-8aae-0c45cb2ee73b:hover {border-style: solid !important;
border-color: rgba(34, 25, 77, 1) !important;
background-color: rgba(115, 182, 78, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-b4681e47-3acd-48ef-8aae-0c45cb2ee73b:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-b4681e47-3acd-48ef-8aae-0c45cb2ee73b {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-b4681e47-3acd-48ef-8aae-0c45cb2ee73b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b4681e47-3acd-48ef-8aae-0c45cb2ee73b.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: MYRIADPRO-BOLD;
  display:  block ;
}

#s-b4681e47-3acd-48ef-8aae-0c45cb2ee73b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-3f8d4538-55ff-47cb-9000-a4af811083fd {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(225, 233, 242, 1);
border-style: solid;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-3f8d4538-55ff-47cb-9000-a4af811083fd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3f8d4538-55ff-47cb-9000-a4af811083fd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ddd4e26e-15dc-42cf-b4da-e99bfb8dd3d7 {
  text-align: left;
}



.shg-c#s-ddd4e26e-15dc-42cf-b4da-e99bfb8dd3d7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ddd4e26e-15dc-42cf-b4da-e99bfb8dd3d7 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-ddd4e26e-15dc-42cf-b4da-e99bfb8dd3d7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ddd4e26e-15dc-42cf-b4da-e99bfb8dd3d7 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-ddd4e26e-15dc-42cf-b4da-e99bfb8dd3d7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ddd4e26e-15dc-42cf-b4da-e99bfb8dd3d7 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-ddd4e26e-15dc-42cf-b4da-e99bfb8dd3d7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ddd4e26e-15dc-42cf-b4da-e99bfb8dd3d7 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-ddd4e26e-15dc-42cf-b4da-e99bfb8dd3d7 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ddd4e26e-15dc-42cf-b4da-e99bfb8dd3d7 img.shogun-image {
  width: 100%;
}



}
#s-d2682b18-f59f-4046-9923-44ad0613838f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d2682b18-f59f-4046-9923-44ad0613838f .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: MYRIADPRO-REGULAR;
  font-style:   ;
  font-size: 17px;
  line-height: ;
  letter-spacing: ;
}

#s-126e3e45-1a33-49c7-b4f6-652af793cea9 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(87, 173, 215, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-126e3e45-1a33-49c7-b4f6-652af793cea9:hover {background-color: rgba(115, 182, 78, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-126e3e45-1a33-49c7-b4f6-652af793cea9:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-126e3e45-1a33-49c7-b4f6-652af793cea9 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-126e3e45-1a33-49c7-b4f6-652af793cea9.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-126e3e45-1a33-49c7-b4f6-652af793cea9.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: MYRIADPRO-BOLD;
  display:  block ;
}

#s-126e3e45-1a33-49c7-b4f6-652af793cea9.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-db1a43dd-772f-41d2-b796-096f477fc4ee {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(225, 233, 242, 1);
border-style: solid;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-db1a43dd-772f-41d2-b796-096f477fc4ee > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-db1a43dd-772f-41d2-b796-096f477fc4ee.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-26c7fcc1-12aa-49d5-a3ea-3831e42de567 {
  text-align: left;
}



.shg-c#s-26c7fcc1-12aa-49d5-a3ea-3831e42de567 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-26c7fcc1-12aa-49d5-a3ea-3831e42de567 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-26c7fcc1-12aa-49d5-a3ea-3831e42de567 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-26c7fcc1-12aa-49d5-a3ea-3831e42de567 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-26c7fcc1-12aa-49d5-a3ea-3831e42de567 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-26c7fcc1-12aa-49d5-a3ea-3831e42de567 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-26c7fcc1-12aa-49d5-a3ea-3831e42de567 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-26c7fcc1-12aa-49d5-a3ea-3831e42de567 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-26c7fcc1-12aa-49d5-a3ea-3831e42de567 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-26c7fcc1-12aa-49d5-a3ea-3831e42de567 img.shogun-image {
  width: 100%;
}



}
#s-4130a063-02c2-4c25-8ce7-de909d04942b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4130a063-02c2-4c25-8ce7-de909d04942b .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: MYRIADPRO-REGULAR;
  font-style:   ;
  font-size: 17px;
  line-height: ;
  letter-spacing: ;
}

#s-dbe0349e-05a0-4ef6-969e-8bc53fd2cd3e {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(87, 173, 215, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-dbe0349e-05a0-4ef6-969e-8bc53fd2cd3e:hover {background-color: rgba(115, 182, 78, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-dbe0349e-05a0-4ef6-969e-8bc53fd2cd3e:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-dbe0349e-05a0-4ef6-969e-8bc53fd2cd3e {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-dbe0349e-05a0-4ef6-969e-8bc53fd2cd3e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-dbe0349e-05a0-4ef6-969e-8bc53fd2cd3e.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: MYRIADPRO-BOLD;
  display:  block ;
}

#s-dbe0349e-05a0-4ef6-969e-8bc53fd2cd3e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-8aca3bdb-aede-4f96-a8d9-cbd4b74264cc {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(225, 233, 242, 1);
border-style: solid;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-8aca3bdb-aede-4f96-a8d9-cbd4b74264cc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8aca3bdb-aede-4f96-a8d9-cbd4b74264cc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bc3a844b-5fdd-4620-985b-534e25dbd2a9 {
  text-align: left;
}



.shg-c#s-bc3a844b-5fdd-4620-985b-534e25dbd2a9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bc3a844b-5fdd-4620-985b-534e25dbd2a9 img.shogun-image {
  width: 100%;
}



@media (min-width: 1200px){

.shg-c#s-bc3a844b-5fdd-4620-985b-534e25dbd2a9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bc3a844b-5fdd-4620-985b-534e25dbd2a9 img.shogun-image {
  width: 100%;
}



}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-bc3a844b-5fdd-4620-985b-534e25dbd2a9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bc3a844b-5fdd-4620-985b-534e25dbd2a9 img.shogun-image {
  width: 100%;
}



}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-bc3a844b-5fdd-4620-985b-534e25dbd2a9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bc3a844b-5fdd-4620-985b-534e25dbd2a9 img.shogun-image {
  width: 100%;
}



}@media (max-width: 767px){

.shg-c#s-bc3a844b-5fdd-4620-985b-534e25dbd2a9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bc3a844b-5fdd-4620-985b-534e25dbd2a9 img.shogun-image {
  width: 100%;
}



}

.shg-c#s-bc3a844b-5fdd-4620-985b-534e25dbd2a9 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-bc3a844b-5fdd-4620-985b-534e25dbd2a9 img.shogun-image {
  width: 100%;
}




#s-b4982dca-16e5-4cd0-a5fe-39b3e3f7f48d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b4982dca-16e5-4cd0-a5fe-39b3e3f7f48d .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: MYRIADPRO-REGULAR;
  font-style:   ;
  font-size: 17px;
  line-height: ;
  letter-spacing: ;
}

#s-2a33a9c8-364f-4461-bb0b-457245836727 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(87, 173, 215, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-2a33a9c8-364f-4461-bb0b-457245836727:hover {background-color: rgba(115, 182, 78, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-2a33a9c8-364f-4461-bb0b-457245836727:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-2a33a9c8-364f-4461-bb0b-457245836727 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2a33a9c8-364f-4461-bb0b-457245836727.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2a33a9c8-364f-4461-bb0b-457245836727.shg-btn {
  color: #ffffff;
  font-size: 20px;
  
  
  font-family: MYRIADPRO-BOLD;
  display:  block ;
}

#s-2a33a9c8-364f-4461-bb0b-457245836727.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-399d3ee6-bb83-487d-bf1f-80a5b39400ef {
  padding-top: 50px;
padding-left: 100px;
padding-bottom: 50px;
padding-right: 100px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-399d3ee6-bb83-487d-bf1f-80a5b39400ef {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-399d3ee6-bb83-487d-bf1f-80a5b39400ef {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-399d3ee6-bb83-487d-bf1f-80a5b39400ef {
  padding-top: 15px;
padding-left: 0px;
padding-bottom: 15px;
padding-right: 0px;
}
}@media (max-width: 767px){#s-399d3ee6-bb83-487d-bf1f-80a5b39400ef {
  padding-top: 15px;
padding-left: 0px;
padding-bottom: 15px;
padding-right: 0px;
}
}







#s-399d3ee6-bb83-487d-bf1f-80a5b39400ef > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-399d3ee6-bb83-487d-bf1f-80a5b39400ef.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b4f31533-9f14-48e7-8217-65b017e6d814 {
  padding-bottom: 20px;
}

#s-3049aea7-08fd-480c-ac57-460f1c486a1c {
  padding-top: 50px;
padding-left: 5%;
padding-bottom: 50px;
padding-right: 5%;
min-height: 50px;
background-color: rgba(243, 245, 249, 1);
}








#s-3049aea7-08fd-480c-ac57-460f1c486a1c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3049aea7-08fd-480c-ac57-460f1c486a1c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fb76713b-e4ce-461f-9983-3994b02b4688 {
  padding-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-260cce91-822f-4828-8574-7009d13aec18"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-260cce91-822f-4828-8574-7009d13aec18"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-260cce91-822f-4828-8574-7009d13aec18"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-260cce91-822f-4828-8574-7009d13aec18"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-63f8a650-9844-4db2-887b-55e1742ef7a0 {
  text-align: center;
}







  #s-63f8a650-9844-4db2-887b-55e1742ef7a0 img.shogun-image {
    

    
    
    
  }


#s-63f8a650-9844-4db2-887b-55e1742ef7a0 .shogun-image-content {
  
    align-items: center;
  
}

#s-d410458a-44ca-4b4c-b062-e37c53619ad6 {
  text-align: center;
}







  #s-d410458a-44ca-4b4c-b062-e37c53619ad6 img.shogun-image {
    

    
    
    
  }


#s-d410458a-44ca-4b4c-b062-e37c53619ad6 .shogun-image-content {
  
    align-items: center;
  
}

#s-0a1717f1-9280-410c-ac06-4c4475cd07b0 {
  text-align: center;
}







  #s-0a1717f1-9280-410c-ac06-4c4475cd07b0 img.shogun-image {
    

    
    
    
  }


#s-0a1717f1-9280-410c-ac06-4c4475cd07b0 .shogun-image-content {
  
    align-items: center;
  
}

#s-7b6a5537-cc80-47f4-8ab1-7fb9d5d8a478 {
  text-align: center;
}







  #s-7b6a5537-cc80-47f4-8ab1-7fb9d5d8a478 img.shogun-image {
    

    
    
    
  }


#s-7b6a5537-cc80-47f4-8ab1-7fb9d5d8a478 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-7749a4a3-a3d6-42e9-936e-0702ad3b5c4b"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-7749a4a3-a3d6-42e9-936e-0702ad3b5c4b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-7749a4a3-a3d6-42e9-936e-0702ad3b5c4b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-7749a4a3-a3d6-42e9-936e-0702ad3b5c4b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-0ad612bf-2db8-4c22-a601-0d8e3355b852 {
  text-align: center;
}







  #s-0ad612bf-2db8-4c22-a601-0d8e3355b852 img.shogun-image {
    

    
    
    
  }


#s-0ad612bf-2db8-4c22-a601-0d8e3355b852 .shogun-image-content {
  
    align-items: center;
  
}

#s-10b98ba5-07b6-42ce-a1d4-f212691adc43 {
  text-align: center;
}







  #s-10b98ba5-07b6-42ce-a1d4-f212691adc43 img.shogun-image {
    

    
    
    
  }


#s-10b98ba5-07b6-42ce-a1d4-f212691adc43 .shogun-image-content {
  
    align-items: center;
  
}

#s-df6a657b-08a1-44d1-813b-e7ed9c87002b {
  text-align: center;
}







  #s-df6a657b-08a1-44d1-813b-e7ed9c87002b img.shogun-image {
    

    
    
    
  }


#s-df6a657b-08a1-44d1-813b-e7ed9c87002b .shogun-image-content {
  
    align-items: center;
  
}

#s-bc6ec87d-001e-4d84-8694-95884e4bfc96 {
  text-align: center;
}







  #s-bc6ec87d-001e-4d84-8694-95884e4bfc96 img.shogun-image {
    

    
    
    
  }


#s-bc6ec87d-001e-4d84-8694-95884e4bfc96 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-319b506d-4f9c-4973-924e-8c47435c3afe"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-319b506d-4f9c-4973-924e-8c47435c3afe"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-319b506d-4f9c-4973-924e-8c47435c3afe"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-319b506d-4f9c-4973-924e-8c47435c3afe"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-da59685e-a59f-4e9a-83b2-a33b8879017b {
  text-align: center;
}







  #s-da59685e-a59f-4e9a-83b2-a33b8879017b img.shogun-image {
    

    
    
    
  }


#s-da59685e-a59f-4e9a-83b2-a33b8879017b .shogun-image-content {
  
    align-items: center;
  
}

#s-c3bef25e-8517-4342-a5cf-339a34188cb6 {
  text-align: center;
}







  #s-c3bef25e-8517-4342-a5cf-339a34188cb6 img.shogun-image {
    

    
    
    
  }


#s-c3bef25e-8517-4342-a5cf-339a34188cb6 .shogun-image-content {
  
    align-items: center;
  
}

#s-7ac6801a-6135-4731-ba3d-fd5c54516932 {
  text-align: center;
}







  #s-7ac6801a-6135-4731-ba3d-fd5c54516932 img.shogun-image {
    

    
    
    
  }


#s-7ac6801a-6135-4731-ba3d-fd5c54516932 .shogun-image-content {
  
    align-items: center;
  
}

#s-acff8cae-e92b-421a-aad4-4e3b7f0e6c5b {
  text-align: center;
}







  #s-acff8cae-e92b-421a-aad4-4e3b7f0e6c5b img.shogun-image {
    

    
    
    
  }


#s-acff8cae-e92b-421a-aad4-4e3b7f0e6c5b .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-fa2c3a9e-fad2-4b24-86c0-9e29a5222de2"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-fa2c3a9e-fad2-4b24-86c0-9e29a5222de2"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-fa2c3a9e-fad2-4b24-86c0-9e29a5222de2"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-fa2c3a9e-fad2-4b24-86c0-9e29a5222de2"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-dcf415ab-68b5-4089-82a0-1d313f8348d2 {
  text-align: center;
}







  #s-dcf415ab-68b5-4089-82a0-1d313f8348d2 img.shogun-image {
    

    
    
    
  }


#s-dcf415ab-68b5-4089-82a0-1d313f8348d2 .shogun-image-content {
  
    align-items: center;
  
}

#s-cb1fab1e-955b-4362-8f13-699053d706f2 {
  text-align: center;
}







  #s-cb1fab1e-955b-4362-8f13-699053d706f2 img.shogun-image {
    

    
    
    
  }


#s-cb1fab1e-955b-4362-8f13-699053d706f2 .shogun-image-content {
  
    align-items: center;
  
}

#s-11f00d19-eeeb-441a-adf5-1062b74ee990 {
  text-align: center;
}







  #s-11f00d19-eeeb-441a-adf5-1062b74ee990 img.shogun-image {
    

    
    
    
  }


#s-11f00d19-eeeb-441a-adf5-1062b74ee990 .shogun-image-content {
  
    align-items: center;
  
}

#s-6fd4bcdc-51a0-4e1c-b1c6-7daa7cef4a93 {
  text-align: center;
}







  #s-6fd4bcdc-51a0-4e1c-b1c6-7daa7cef4a93 img.shogun-image {
    

    
    
    
  }


#s-6fd4bcdc-51a0-4e1c-b1c6-7daa7cef4a93 .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}
