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

@media (min-width: 768px) and (max-width: 991px){#s-e26a5093-9a16-407c-ae25-c8125dd742b3 {
  display: none;
}
#s-e26a5093-9a16-407c-ae25-c8125dd742b3, #wrap-s-e26a5093-9a16-407c-ae25-c8125dd742b3 { display:none !important; }}@media (max-width: 767px){#s-e26a5093-9a16-407c-ae25-c8125dd742b3 {
  display: none;
}
#s-e26a5093-9a16-407c-ae25-c8125dd742b3, #wrap-s-e26a5093-9a16-407c-ae25-c8125dd742b3 { display:none !important; }}







#s-e26a5093-9a16-407c-ae25-c8125dd742b3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e26a5093-9a16-407c-ae25-c8125dd742b3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.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-283a6a40-22b1-4fd5-92fe-c8194a952006 {
  margin-bottom: 50px;
text-align: center;
}







  #s-283a6a40-22b1-4fd5-92fe-c8194a952006 img.shogun-image {
    

    
    
    
  }


#s-283a6a40-22b1-4fd5-92fe-c8194a952006 .shogun-image-content {
  
    align-items: center;
  
}

#s-79de2c15-9aa9-46fc-bfec-0c8702e043ac {
  margin-left: auto;
margin-right: auto;
padding-left: 0px;
padding-right: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-79de2c15-9aa9-46fc-bfec-0c8702e043ac {
  
}
}@media (max-width: 767px){#s-79de2c15-9aa9-46fc-bfec-0c8702e043ac {
  display: none;
}
#s-79de2c15-9aa9-46fc-bfec-0c8702e043ac, #wrap-s-79de2c15-9aa9-46fc-bfec-0c8702e043ac { display:none !important; }}







#s-79de2c15-9aa9-46fc-bfec-0c8702e043ac > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-79de2c15-9aa9-46fc-bfec-0c8702e043ac.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: 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-d7e81be5-e8d4-400b-8875-3764952dfced {
  margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 670px;
text-align: center;
}

#s-d7e81be5-e8d4-400b-8875-3764952dfced .shogun-heading-component h1 {
  color: rgba(80, 80, 80, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



.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-af47bedc-efcd-44a9-a433-843ea1c20220 {
  margin-left: auto;
margin-bottom: 40px;
margin-right: auto;
max-width: 900px;
}

#s-4e9eff9e-3346-4959-978f-0ab1847ddd2b {
  margin-left: auto;
margin-bottom: 80px;
margin-right: auto;
max-width: 900px;
text-align: center;
}







  #s-4e9eff9e-3346-4959-978f-0ab1847ddd2b img.shogun-image {
    

    
    
    
  }


#s-4e9eff9e-3346-4959-978f-0ab1847ddd2b .shogun-image-content {
  
    align-items: center;
  
}

#s-baf2747d-cb13-4dfd-a359-6628cf5c4295 {
  min-height: 50px;
}








#s-baf2747d-cb13-4dfd-a359-6628cf5c4295 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-baf2747d-cb13-4dfd-a359-6628cf5c4295.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d20358e4-da27-4c81-84a5-5824773a358f {
  margin-bottom: 50px;
text-align: center;
}
@media (min-width: 1200px){#s-d20358e4-da27-4c81-84a5-5824773a358f {
  display: none;
}
#s-d20358e4-da27-4c81-84a5-5824773a358f, #wrap-s-d20358e4-da27-4c81-84a5-5824773a358f { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d20358e4-da27-4c81-84a5-5824773a358f {
  display: none;
}
#s-d20358e4-da27-4c81-84a5-5824773a358f, #wrap-s-d20358e4-da27-4c81-84a5-5824773a358f { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d20358e4-da27-4c81-84a5-5824773a358f {
  display: none;
}
#s-d20358e4-da27-4c81-84a5-5824773a358f, #wrap-s-d20358e4-da27-4c81-84a5-5824773a358f { display:none !important; }}






  #s-d20358e4-da27-4c81-84a5-5824773a358f img.shogun-image {
    

    
    
    
  }


#s-d20358e4-da27-4c81-84a5-5824773a358f .shogun-image-content {
  
    align-items: center;
  
}

#s-90f45f20-7242-4ccd-b949-6b12c90eb927 {
  margin-left: auto;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
}
@media (min-width: 1200px){#s-90f45f20-7242-4ccd-b949-6b12c90eb927 {
  display: none;
}
#s-90f45f20-7242-4ccd-b949-6b12c90eb927, #wrap-s-90f45f20-7242-4ccd-b949-6b12c90eb927 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-90f45f20-7242-4ccd-b949-6b12c90eb927 {
  display: none;
}
#s-90f45f20-7242-4ccd-b949-6b12c90eb927, #wrap-s-90f45f20-7242-4ccd-b949-6b12c90eb927 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-90f45f20-7242-4ccd-b949-6b12c90eb927 {
  display: none;
}
#s-90f45f20-7242-4ccd-b949-6b12c90eb927, #wrap-s-90f45f20-7242-4ccd-b949-6b12c90eb927 { display:none !important; }}







#s-90f45f20-7242-4ccd-b949-6b12c90eb927 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-90f45f20-7242-4ccd-b949-6b12c90eb927.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-331c6b5f-4f42-42f4-8ee9-85174d4bf4f8 {
  margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-331c6b5f-4f42-42f4-8ee9-85174d4bf4f8 .shogun-heading-component h1 {
  color: rgba(80, 80, 80, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-d21aad7c-1312-4f9a-8fca-8a474a3b7045 {
  margin-bottom: 50px;
}

#s-821c9139-d571-4852-ad7b-e3d190ee87b6 {
  margin-left: auto;
margin-bottom: 80px;
margin-right: auto;
max-width: 1200px;
text-align: center;
}







  #s-821c9139-d571-4852-ad7b-e3d190ee87b6 img.shogun-image {
    

    
    
    
  }


#s-821c9139-d571-4852-ad7b-e3d190ee87b6 .shogun-image-content {
  
    align-items: center;
  
}

#s-63a9c780-21a6-4561-8425-2700b9e8aae6 {
  min-height: 50px;
}








#s-63a9c780-21a6-4561-8425-2700b9e8aae6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-63a9c780-21a6-4561-8425-2700b9e8aae6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-03e74f02-6627-4555-a288-898f35a4b36b {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 80px;
margin-right: auto;
padding-top: 60px;
padding-left: 30px;
padding-bottom: 60px;
padding-right: 30px;
min-height: 50px;
background-color: rgba(252, 246, 248, 1);
}








#s-03e74f02-6627-4555-a288-898f35a4b36b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-03e74f02-6627-4555-a288-898f35a4b36b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3b0b5d8c-7715-44a3-8cea-ccbf9e4d3d2d {
  margin-bottom: 10px;
}

#s-f9e8064d-1989-4fa6-b7b3-17a23b003e91 {
  margin-bottom: 60px;
}
@media (max-width: 767px){#s-f9e8064d-1989-4fa6-b7b3-17a23b003e91 {
  margin-bottom: 40px;
}
}
.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-d024ba9c-9f6e-43bb-9273-4e6579d5fbf2 {
  margin-left: auto;
margin-right: auto;
max-width: 1200px;
}

@media (min-width: 0px) {
[id="s-d024ba9c-9f6e-43bb-9273-4e6579d5fbf2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d024ba9c-9f6e-43bb-9273-4e6579d5fbf2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d024ba9c-9f6e-43bb-9273-4e6579d5fbf2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d024ba9c-9f6e-43bb-9273-4e6579d5fbf2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-5f774555-ec32-4a9f-9668-516bc3dc3f36 {
  margin-left: auto;
margin-right: auto;
}

.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-11d7f5a5-73fb-4353-828d-109f2ee5a7ef {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 420px;
}

#s-11d7f5a5-73fb-4353-828d-109f2ee5a7ef .shg-sld-dot {
  background-color: rgba(80, 80, 80, 1);
}

#s-11d7f5a5-73fb-4353-828d-109f2ee5a7ef .shg-sld-nav-button.shg-sld-left,
#s-11d7f5a5-73fb-4353-828d-109f2ee5a7ef .shg-sld-nav-button.shg-sld-right {
  fill: rgba(80, 80, 80, 1);
}

#s-e04f9a3c-6b97-442f-b53d-e73c1595b599 {
  margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
max-width: 100%;
text-align: center;
}







  #s-e04f9a3c-6b97-442f-b53d-e73c1595b599 img.shogun-image {
    

    
    
    
  }


#s-e04f9a3c-6b97-442f-b53d-e73c1595b599 .shogun-image-content {
  
    align-items: center;
  
}

#s-a2345c8b-f172-45b3-a6f0-1b902e63b553 {
  text-align: center;
}







  #s-a2345c8b-f172-45b3-a6f0-1b902e63b553 img.shogun-image {
    

    
    
    
  }


#s-a2345c8b-f172-45b3-a6f0-1b902e63b553 .shogun-image-content {
  
    align-items: center;
  
}

#s-8726a415-37ae-470f-9633-5c3ead0d4cf6 {
  margin-left: auto;
margin-bottom: 40px;
margin-right: auto;
max-width: 350px;
}
@media (max-width: 767px){#s-8726a415-37ae-470f-9633-5c3ead0d4cf6 {
  padding-left: 0px;
padding-right: 0px;
}
}
#s-d66d112f-7075-4067-8f48-b8bdfedc576f {
  margin-left: auto;
margin-right: auto;
}

#s-47147308-190e-41ac-8f0b-bb52225181a6 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 420px;
}

#s-47147308-190e-41ac-8f0b-bb52225181a6 .shg-sld-dot {
  background-color: rgba(80, 80, 80, 1);
}

#s-47147308-190e-41ac-8f0b-bb52225181a6 .shg-sld-nav-button.shg-sld-left,
#s-47147308-190e-41ac-8f0b-bb52225181a6 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(80, 80, 80, 1);
}

#s-8653cdcb-2a1f-445a-b42e-ff019e5b6bb5 {
  max-width: 100%;
text-align: center;
}







  #s-8653cdcb-2a1f-445a-b42e-ff019e5b6bb5 img.shogun-image {
    

    
    
    
  }


#s-8653cdcb-2a1f-445a-b42e-ff019e5b6bb5 .shogun-image-content {
  
    align-items: center;
  
}

#s-333ccfe9-bdf7-4d97-b910-b6256c7414d9 {
  margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
max-width: 390px;
text-align: center;
}







  #s-333ccfe9-bdf7-4d97-b910-b6256c7414d9 img.shogun-image {
    

    
    
    
  }


#s-333ccfe9-bdf7-4d97-b910-b6256c7414d9 .shogun-image-content {
  
    align-items: center;
  
}

#s-1458872e-b726-490a-9f2d-f8a2bd547bdc {
  margin-left: auto;
margin-bottom: 40px;
margin-right: auto;
max-width: 350px;
}
@media (max-width: 767px){#s-1458872e-b726-490a-9f2d-f8a2bd547bdc {
  padding-left: 0px;
padding-right: 0px;
}
}
#s-081d9805-8962-4ec1-b6a9-778d053b3678 {
  margin-left: auto;
margin-right: auto;
max-width: 1200px;
}

@media (min-width: 0px) {
[id="s-081d9805-8962-4ec1-b6a9-778d053b3678"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-081d9805-8962-4ec1-b6a9-778d053b3678"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-081d9805-8962-4ec1-b6a9-778d053b3678"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-081d9805-8962-4ec1-b6a9-778d053b3678"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-c6561ea0-54ac-4f6c-be7a-448e0da27c66 {
  margin-left: auto;
margin-right: auto;
}

#s-d273d1df-8ed5-48c6-a93b-91f7c34d2fa0 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 420px;
}

#s-d273d1df-8ed5-48c6-a93b-91f7c34d2fa0 .shg-sld-dot {
  background-color: rgba(80, 80, 80, 1);
}

#s-d273d1df-8ed5-48c6-a93b-91f7c34d2fa0 .shg-sld-nav-button.shg-sld-left,
#s-d273d1df-8ed5-48c6-a93b-91f7c34d2fa0 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(80, 80, 80, 1);
}

#s-93f7cb89-9285-42f3-97f8-c7d70f8b0618 {
  margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
max-width: 100%;
}







  #s-93f7cb89-9285-42f3-97f8-c7d70f8b0618 img.shogun-image {
    

    
    
    
  }


#s-93f7cb89-9285-42f3-97f8-c7d70f8b0618 .shogun-image-content {
  
    align-items: center;
  
}

#s-b84a349c-cc83-49c0-ab26-eeb76c670684 {
  margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
max-width: 100%;
}







  #s-b84a349c-cc83-49c0-ab26-eeb76c670684 img.shogun-image {
    

    
    
    
  }


#s-b84a349c-cc83-49c0-ab26-eeb76c670684 .shogun-image-content {
  
    align-items: center;
  
}

#s-65465ab8-a947-4035-89ee-8c55caad639e {
  text-align: center;
}







  #s-65465ab8-a947-4035-89ee-8c55caad639e img.shogun-image {
    

    
    
    
  }


#s-65465ab8-a947-4035-89ee-8c55caad639e .shogun-image-content {
  
    align-items: center;
  
}

#s-188f7aa0-b092-4f87-9e80-7e4ac7ad6067 {
  margin-left: auto;
margin-bottom: 40px;
margin-right: auto;
max-width: 350px;
}
@media (max-width: 767px){#s-188f7aa0-b092-4f87-9e80-7e4ac7ad6067 {
  padding-left: 0px;
padding-right: 0px;
}
}
#s-8a135836-56f0-439b-a140-0843d740b4d0 {
  margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
}

#s-f78322df-0033-48de-89d0-1e02a81a4743 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 420px;
}

#s-f78322df-0033-48de-89d0-1e02a81a4743 .shg-sld-dot {
  background-color: rgba(80, 80, 80, 1);
}

#s-f78322df-0033-48de-89d0-1e02a81a4743 .shg-sld-nav-button.shg-sld-left,
#s-f78322df-0033-48de-89d0-1e02a81a4743 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(80, 80, 80, 1);
}

#s-ee7294f7-5c3b-4ca4-bc12-dd18ba7e7696 {
  max-width: 100%;
text-align: center;
}







  #s-ee7294f7-5c3b-4ca4-bc12-dd18ba7e7696 img.shogun-image {
    

    
    
    
  }


#s-ee7294f7-5c3b-4ca4-bc12-dd18ba7e7696 .shogun-image-content {
  
    align-items: center;
  
}

#s-9e3e0408-f509-4b2c-9706-bfafb5b5efc3 {
  margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
max-width: 390px;
text-align: center;
}







  #s-9e3e0408-f509-4b2c-9706-bfafb5b5efc3 img.shogun-image {
    

    
    
    
  }


#s-9e3e0408-f509-4b2c-9706-bfafb5b5efc3 .shogun-image-content {
  
    align-items: center;
  
}

#s-d476719a-cc5a-4c8b-9470-73406153ed18 {
  margin-left: auto;
margin-bottom: 40px;
margin-right: auto;
max-width: 350px;
}
@media (max-width: 767px){#s-d476719a-cc5a-4c8b-9470-73406153ed18 {
  padding-left: 0px;
padding-right: 0px;
}
}
#s-3ed74761-cd81-4b47-b841-0ca08bbc367c {
  margin-left: 30px;
margin-bottom: 60px;
margin-right: 30px;
padding-left: 30px;
padding-right: 30px;
}
@media (min-width: 768px) and (max-width: 991px){#s-3ed74761-cd81-4b47-b841-0ca08bbc367c {
  display: none;
}
#s-3ed74761-cd81-4b47-b841-0ca08bbc367c, #wrap-s-3ed74761-cd81-4b47-b841-0ca08bbc367c { display:none !important; }}@media (max-width: 767px){#s-3ed74761-cd81-4b47-b841-0ca08bbc367c {
  display: none;
}
#s-3ed74761-cd81-4b47-b841-0ca08bbc367c, #wrap-s-3ed74761-cd81-4b47-b841-0ca08bbc367c { display:none !important; }}







#s-3ed74761-cd81-4b47-b841-0ca08bbc367c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3ed74761-cd81-4b47-b841-0ca08bbc367c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-32c7ca3f-3d73-4b07-9c5a-e6305e8ffa70 {
  margin-bottom: 10px;
}

#s-b38eb6af-1606-4499-bc87-d6e49fffb0b1 {
  margin-bottom: 60px;
padding-left: 20px;
padding-right: 20px;
}
@media (max-width: 767px){#s-b38eb6af-1606-4499-bc87-d6e49fffb0b1 {
  margin-bottom: 0px;
}
}
#s-493f689f-954e-4fb6-b937-2343edc141f8 {
  margin-left: auto;
margin-right: auto;
max-width: 1160px;
}

@media (min-width: 0px) {
[id="s-493f689f-954e-4fb6-b937-2343edc141f8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-493f689f-954e-4fb6-b937-2343edc141f8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-493f689f-954e-4fb6-b937-2343edc141f8"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-493f689f-954e-4fb6-b937-2343edc141f8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-493f689f-954e-4fb6-b937-2343edc141f8"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-493f689f-954e-4fb6-b937-2343edc141f8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-493f689f-954e-4fb6-b937-2343edc141f8"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

}

#s-0299c0cb-b6db-4e36-8eb7-b8754c9d3aaf {
  border-style: solid;
border-color: rgba(252, 247, 249, 0);
text-align: center;
}
#s-0299c0cb-b6db-4e36-8eb7-b8754c9d3aaf:hover {border-style: solid !important;
border-color: rgba(40, 13, 148, 0) !important;
opacity: 0.75 !important;}






  #s-0299c0cb-b6db-4e36-8eb7-b8754c9d3aaf img.shogun-image {
    

    
    
    
  }


#s-0299c0cb-b6db-4e36-8eb7-b8754c9d3aaf .shogun-image-content {
  
    align-items: center;
  
}

#s-2d752816-7391-4b7e-8e51-ea209d836409 {
  margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
max-width: 1200px;
}

@media (min-width: 0px) {
[id="s-2d752816-7391-4b7e-8e51-ea209d836409"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-2d752816-7391-4b7e-8e51-ea209d836409"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2d752816-7391-4b7e-8e51-ea209d836409"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2d752816-7391-4b7e-8e51-ea209d836409"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

#s-b965ec9b-6e98-4efc-8f6a-6d28c27fd816 {
  margin-bottom: 10px;
text-align: center;
opacity: 1;
}
#s-b965ec9b-6e98-4efc-8f6a-6d28c27fd816:hover {border-style: solid !important;
border-color: rgba(44, 42, 52, 0) !important;
opacity: 0.75 !important;}






  #s-b965ec9b-6e98-4efc-8f6a-6d28c27fd816 img.shogun-image {
    

    
    
    
  }


#s-b965ec9b-6e98-4efc-8f6a-6d28c27fd816 .shogun-image-content {
  
    align-items: center;
  
}

#s-dbe3140c-45c2-4793-a86a-c04c70eeb509 {
  margin-bottom: 10px;
text-align: center;
}
#s-dbe3140c-45c2-4793-a86a-c04c70eeb509:hover {opacity: 0.75 !important;}






  #s-dbe3140c-45c2-4793-a86a-c04c70eeb509 img.shogun-image {
    

    
    
    
  }


#s-dbe3140c-45c2-4793-a86a-c04c70eeb509 .shogun-image-content {
  
    align-items: center;
  
}

#s-903b7f12-f0bd-4ad2-97c2-41b13a240f37 {
  margin-bottom: 10px;
text-align: center;
opacity: 1;
}
#s-903b7f12-f0bd-4ad2-97c2-41b13a240f37:hover {opacity: 0.75 !important;}






  #s-903b7f12-f0bd-4ad2-97c2-41b13a240f37 img.shogun-image {
    

    
    
    
  }


#s-903b7f12-f0bd-4ad2-97c2-41b13a240f37 .shogun-image-content {
  
    align-items: center;
  
}

#s-ad329cc5-134b-4fb8-a3db-0f494360045b {
  margin-bottom: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
text-align: center;
}
#s-ad329cc5-134b-4fb8-a3db-0f494360045b:hover {opacity: 0.75 !important;}






  #s-ad329cc5-134b-4fb8-a3db-0f494360045b img.shogun-image {
    

    
    
    
  }


#s-ad329cc5-134b-4fb8-a3db-0f494360045b .shogun-image-content {
  
    align-items: center;
  
}

#s-f3c7aa9c-9b6b-4528-8747-b3329d062b8b {
  margin-bottom: 10px;
text-align: center;
}
#s-f3c7aa9c-9b6b-4528-8747-b3329d062b8b:hover {opacity: 0.75 !important;}






  #s-f3c7aa9c-9b6b-4528-8747-b3329d062b8b img.shogun-image {
    

    
    
    
  }


#s-f3c7aa9c-9b6b-4528-8747-b3329d062b8b .shogun-image-content {
  
    align-items: center;
  
}

#s-b9609c5e-c78f-4e03-a308-266fe18427e5 {
  margin-bottom: 10px;
text-align: center;
opacity: 1;
}
#s-b9609c5e-c78f-4e03-a308-266fe18427e5:hover {opacity: 0.75 !important;}






  #s-b9609c5e-c78f-4e03-a308-266fe18427e5 img.shogun-image {
    

    
    
    
  }


#s-b9609c5e-c78f-4e03-a308-266fe18427e5 .shogun-image-content {
  
    align-items: center;
  
}

#s-f1b7db91-7dd2-4c87-a15c-ab5383d40a64 {
  margin-bottom: 10px;
text-align: center;
}
#s-f1b7db91-7dd2-4c87-a15c-ab5383d40a64:hover {opacity: 0.75 !important;}






  #s-f1b7db91-7dd2-4c87-a15c-ab5383d40a64 img.shogun-image {
    

    
    
    
  }


#s-f1b7db91-7dd2-4c87-a15c-ab5383d40a64 .shogun-image-content {
  
    align-items: center;
  
}

#s-c2a1dadf-9d0f-458e-addc-4e0cf61ce8d4 {
  margin-bottom: 20px;
text-align: center;
}
#s-c2a1dadf-9d0f-458e-addc-4e0cf61ce8d4:hover {opacity: 0.75 !important;}






  #s-c2a1dadf-9d0f-458e-addc-4e0cf61ce8d4 img.shogun-image {
    

    
    
    
  }


#s-c2a1dadf-9d0f-458e-addc-4e0cf61ce8d4 .shogun-image-content {
  
    align-items: center;
  
}

#s-90b3f7d5-14a0-4a47-a96a-b5f29820a695 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-90b3f7d5-14a0-4a47-a96a-b5f29820a695 {
  display: none;
}
#s-90b3f7d5-14a0-4a47-a96a-b5f29820a695, #wrap-s-90b3f7d5-14a0-4a47-a96a-b5f29820a695 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-90b3f7d5-14a0-4a47-a96a-b5f29820a695 {
  display: none;
}
#s-90b3f7d5-14a0-4a47-a96a-b5f29820a695, #wrap-s-90b3f7d5-14a0-4a47-a96a-b5f29820a695 { display:none !important; }}







#s-90b3f7d5-14a0-4a47-a96a-b5f29820a695 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-90b3f7d5-14a0-4a47-a96a-b5f29820a695.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b086350d-07dd-466b-a02c-05978c2ed1f5 {
  margin-bottom: 10px;
}

#s-23ec5895-1cb7-441e-b591-1baf37554c6e {
  margin-bottom: 60px;
padding-left: 20px;
padding-right: 20px;
}
@media (max-width: 767px){#s-23ec5895-1cb7-441e-b591-1baf37554c6e {
  margin-bottom: 0px;
}
}
#s-59e75bc2-b0e7-49f1-95bf-dbf09fb0e363 {
  margin-bottom: 40px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
}
@media (min-width: 1200px){#s-59e75bc2-b0e7-49f1-95bf-dbf09fb0e363 {
  display: none;
}
#s-59e75bc2-b0e7-49f1-95bf-dbf09fb0e363, #wrap-s-59e75bc2-b0e7-49f1-95bf-dbf09fb0e363 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-59e75bc2-b0e7-49f1-95bf-dbf09fb0e363 {
  display: none;
}
#s-59e75bc2-b0e7-49f1-95bf-dbf09fb0e363, #wrap-s-59e75bc2-b0e7-49f1-95bf-dbf09fb0e363 { display:none !important; }}@media (max-width: 767px){#s-59e75bc2-b0e7-49f1-95bf-dbf09fb0e363 {
  margin-bottom: 70px;
}
}
#s-59e75bc2-b0e7-49f1-95bf-dbf09fb0e363 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-59e75bc2-b0e7-49f1-95bf-dbf09fb0e363 .shg-sld-nav-button.shg-sld-left,
#s-59e75bc2-b0e7-49f1-95bf-dbf09fb0e363 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-ff3b0c77-224d-4864-ab1f-2aaecbbd13b2 {
  text-align: center;
}







  #s-ff3b0c77-224d-4864-ab1f-2aaecbbd13b2 img.shogun-image {
    

    
    
    
  }


#s-ff3b0c77-224d-4864-ab1f-2aaecbbd13b2 .shogun-image-content {
  
    align-items: center;
  
}

#s-bca72ced-2f9d-4205-984b-ec34997c7621 {
  text-align: center;
}
@media (min-width: 1200px){#s-bca72ced-2f9d-4205-984b-ec34997c7621 {
  display: none;
}
#s-bca72ced-2f9d-4205-984b-ec34997c7621, #wrap-s-bca72ced-2f9d-4205-984b-ec34997c7621 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-bca72ced-2f9d-4205-984b-ec34997c7621 {
  display: none;
}
#s-bca72ced-2f9d-4205-984b-ec34997c7621, #wrap-s-bca72ced-2f9d-4205-984b-ec34997c7621 { display:none !important; }}






  #s-bca72ced-2f9d-4205-984b-ec34997c7621 img.shogun-image {
    

    
    
    
  }


#s-bca72ced-2f9d-4205-984b-ec34997c7621 .shogun-image-content {
  
    align-items: center;
  
}

#s-01a9eb15-6857-4dbf-ba58-1ddd4d4afa0e {
  text-align: center;
}







  #s-01a9eb15-6857-4dbf-ba58-1ddd4d4afa0e img.shogun-image {
    

    
    
    
  }


#s-01a9eb15-6857-4dbf-ba58-1ddd4d4afa0e .shogun-image-content {
  
    align-items: center;
  
}

#s-9a772ed5-e3f1-4c68-b9d1-eddfa27895ea {
  text-align: center;
}







  #s-9a772ed5-e3f1-4c68-b9d1-eddfa27895ea img.shogun-image {
    

    
    
    
  }


#s-9a772ed5-e3f1-4c68-b9d1-eddfa27895ea .shogun-image-content {
  
    align-items: center;
  
}

#s-979bd040-698b-4525-a266-9dba233c0bd2 {
  text-align: center;
}







  #s-979bd040-698b-4525-a266-9dba233c0bd2 img.shogun-image {
    

    
    
    
  }


#s-979bd040-698b-4525-a266-9dba233c0bd2 .shogun-image-content {
  
    align-items: center;
  
}

#s-05b0acff-f31d-4b7f-b51e-48d0351787eb {
  text-align: center;
}







  #s-05b0acff-f31d-4b7f-b51e-48d0351787eb img.shogun-image {
    

    
    
    
  }


#s-05b0acff-f31d-4b7f-b51e-48d0351787eb .shogun-image-content {
  
    align-items: center;
  
}

#s-c9783913-c0b7-401f-a775-8166fd45146b {
  text-align: center;
}







  #s-c9783913-c0b7-401f-a775-8166fd45146b img.shogun-image {
    

    
    
    
  }


#s-c9783913-c0b7-401f-a775-8166fd45146b .shogun-image-content {
  
    align-items: center;
  
}

#s-0ef4a785-9836-4753-998a-a6c14d9c007a {
  text-align: center;
}







  #s-0ef4a785-9836-4753-998a-a6c14d9c007a img.shogun-image {
    

    
    
    
  }


#s-0ef4a785-9836-4753-998a-a6c14d9c007a .shogun-image-content {
  
    align-items: center;
  
}

#s-66e343f0-b94e-4c33-8c24-e67c0658c4a5 {
  text-align: center;
}







  #s-66e343f0-b94e-4c33-8c24-e67c0658c4a5 img.shogun-image {
    

    
    
    
  }


#s-66e343f0-b94e-4c33-8c24-e67c0658c4a5 .shogun-image-content {
  
    align-items: center;
  
}

#s-ae87d27d-c91b-4084-8514-319dd77584a3 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 60px;
margin-right: auto;
padding-top: 60px;
padding-left: 20px;
padding-bottom: 40px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(252, 246, 248, 1);
}
@media (max-width: 767px){#s-ae87d27d-c91b-4084-8514-319dd77584a3 {
  padding-top: 70px;
}
}







#s-ae87d27d-c91b-4084-8514-319dd77584a3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ae87d27d-c91b-4084-8514-319dd77584a3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d5085976-5bff-413d-9ef1-b23d5229046c {
  margin-bottom: 10px;
}

#s-6c35d7f0-0c89-403b-9112-efd3069a5b05 {
  margin-bottom: 60px;
}

#s-11907dc1-7539-4cab-9ca5-dc38c4363ee9 {
  margin-left: auto;
margin-right: auto;
max-width: 1200px;
}

@media (min-width: 0px) {
[id="s-11907dc1-7539-4cab-9ca5-dc38c4363ee9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-11907dc1-7539-4cab-9ca5-dc38c4363ee9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 992px) {
[id="s-11907dc1-7539-4cab-9ca5-dc38c4363ee9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 1200px) {
[id="s-11907dc1-7539-4cab-9ca5-dc38c4363ee9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 30.0px);
}

}

#s-e847e72b-c0bd-4089-93af-82f7e24296a9 {
  min-height: 50px;
}








#s-e847e72b-c0bd-4089-93af-82f7e24296a9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e847e72b-c0bd-4089-93af-82f7e24296a9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-999ed414-5914-458a-9a9b-5d04857756f7 {
  text-align: center;
}







  #s-999ed414-5914-458a-9a9b-5d04857756f7 img.shogun-image {
    

    
    
    
  }


#s-999ed414-5914-458a-9a9b-5d04857756f7 .shogun-image-content {
  
    align-items: center;
  
}

#s-9710a137-0626-4c9d-8f97-5e8e57705b3e {
  margin-bottom: -5px;
}

#s-d157be24-2eeb-4e03-83a2-f1042198d8c1 {
  margin-bottom: -8px;
}

#s-a45c8cf1-1a4e-4a46-a704-80a338f41ae8 {
  margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
}

.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-6a2529f8-fdcc-4110-a985-271c0402dd98 {
  margin-bottom: 45px;
padding-top: 4px;
padding-left: 30px;
padding-bottom: 4px;
padding-right: 30px;
border-radius: 40px;
background-color: rgba(206, 88, 124, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
letter-spacing: 1px;
}
#s-6a2529f8-fdcc-4110-a985-271c0402dd98:hover {background-color: rgba(222, 151, 177, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-6a2529f8-fdcc-4110-a985-271c0402dd98:active {background-color: rgba(194, 85, 125, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-6a2529f8-fdcc-4110-a985-271c0402dd98-root {
    text-align: center;
  }


#s-6a2529f8-fdcc-4110-a985-271c0402dd98.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6a2529f8-fdcc-4110-a985-271c0402dd98-root {
    text-align: center;
  }


#s-6a2529f8-fdcc-4110-a985-271c0402dd98.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6a2529f8-fdcc-4110-a985-271c0402dd98-root {
    text-align: center;
  }


#s-6a2529f8-fdcc-4110-a985-271c0402dd98.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6a2529f8-fdcc-4110-a985-271c0402dd98-root {
    text-align: center;
  }


#s-6a2529f8-fdcc-4110-a985-271c0402dd98.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6a2529f8-fdcc-4110-a985-271c0402dd98-root {
    text-align: center;
  }


#s-6a2529f8-fdcc-4110-a985-271c0402dd98.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}
#s-13e44fe7-863d-4ec5-9867-78c4dc6744c6 {
  min-height: 50px;
}








#s-13e44fe7-863d-4ec5-9867-78c4dc6744c6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-13e44fe7-863d-4ec5-9867-78c4dc6744c6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-97846901-631d-453e-98e2-3f9281c28fe6 {
  text-align: center;
}







  #s-97846901-631d-453e-98e2-3f9281c28fe6 img.shogun-image {
    

    
    
    
  }


#s-97846901-631d-453e-98e2-3f9281c28fe6 .shogun-image-content {
  
    align-items: center;
  
}

#s-1e7c1050-3d4c-4c02-80e4-ec4028563e9a {
  margin-bottom: -5px;
}

#s-1b82e33b-9f15-4ef8-a880-00ce40d6b952 {
  margin-bottom: -8px;
}

#s-fb755673-b6e4-4f1e-aeda-aca7b9d994dd {
  margin-bottom: 0px;
}

#s-6251bc4e-c09f-449f-b861-73031aef04f8 {
  margin-bottom: 45px;
padding-top: 4px;
padding-left: 30px;
padding-bottom: 4px;
padding-right: 30px;
border-radius: 40px;
background-color: rgba(206, 88, 124, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
letter-spacing: 1px;
}
#s-6251bc4e-c09f-449f-b861-73031aef04f8:hover {background-color: rgba(222, 151, 177, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-6251bc4e-c09f-449f-b861-73031aef04f8:active {background-color: rgba(194, 85, 125, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-6251bc4e-c09f-449f-b861-73031aef04f8-root {
    text-align: center;
  }


#s-6251bc4e-c09f-449f-b861-73031aef04f8.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6251bc4e-c09f-449f-b861-73031aef04f8-root {
    text-align: center;
  }


#s-6251bc4e-c09f-449f-b861-73031aef04f8.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6251bc4e-c09f-449f-b861-73031aef04f8-root {
    text-align: center;
  }


#s-6251bc4e-c09f-449f-b861-73031aef04f8.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6251bc4e-c09f-449f-b861-73031aef04f8-root {
    text-align: center;
  }


#s-6251bc4e-c09f-449f-b861-73031aef04f8.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6251bc4e-c09f-449f-b861-73031aef04f8-root {
    text-align: center;
  }


#s-6251bc4e-c09f-449f-b861-73031aef04f8.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}
#s-ab99205f-30e1-4780-87be-ff03c6a45bae {
  margin-left: auto;
margin-right: auto;
max-width: 1200px;
}

@media (min-width: 0px) {
[id="s-ab99205f-30e1-4780-87be-ff03c6a45bae"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ab99205f-30e1-4780-87be-ff03c6a45bae"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 992px) {
[id="s-ab99205f-30e1-4780-87be-ff03c6a45bae"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 1200px) {
[id="s-ab99205f-30e1-4780-87be-ff03c6a45bae"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 30.0px);
}

}

#s-03894741-fc95-4e00-bad9-a1bbb651c425 {
  min-height: 50px;
}








#s-03894741-fc95-4e00-bad9-a1bbb651c425 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-03894741-fc95-4e00-bad9-a1bbb651c425.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4b5ebfe1-f466-49b2-8d51-b6efa7950e6f {
  text-align: center;
}







  #s-4b5ebfe1-f466-49b2-8d51-b6efa7950e6f img.shogun-image {
    

    
    
    
  }


#s-4b5ebfe1-f466-49b2-8d51-b6efa7950e6f .shogun-image-content {
  
    align-items: center;
  
}

#s-5ac17082-1c53-4dd2-8318-8ef5a59f1e37 {
  margin-bottom: -5px;
}

#s-3edfe6d8-7d74-4a01-ab99-9cd2d423cd28 {
  margin-bottom: -8px;
}

#s-de88363d-616a-4959-a97d-3820cd29dcb3 {
  margin-bottom: 0px;
}

#s-f33a40fb-8bb5-48a9-8684-7310ec8d8cea {
  margin-bottom: 45px;
padding-top: 4px;
padding-left: 30px;
padding-bottom: 4px;
padding-right: 30px;
border-radius: 40px;
background-color: rgba(206, 88, 124, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
letter-spacing: 1px;
}
#s-f33a40fb-8bb5-48a9-8684-7310ec8d8cea:hover {background-color: rgba(222, 151, 177, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-f33a40fb-8bb5-48a9-8684-7310ec8d8cea:active {background-color: rgba(194, 85, 125, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-f33a40fb-8bb5-48a9-8684-7310ec8d8cea-root {
    text-align: center;
  }


#s-f33a40fb-8bb5-48a9-8684-7310ec8d8cea.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-f33a40fb-8bb5-48a9-8684-7310ec8d8cea-root {
    text-align: center;
  }


#s-f33a40fb-8bb5-48a9-8684-7310ec8d8cea.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f33a40fb-8bb5-48a9-8684-7310ec8d8cea-root {
    text-align: center;
  }


#s-f33a40fb-8bb5-48a9-8684-7310ec8d8cea.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f33a40fb-8bb5-48a9-8684-7310ec8d8cea-root {
    text-align: center;
  }


#s-f33a40fb-8bb5-48a9-8684-7310ec8d8cea.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-f33a40fb-8bb5-48a9-8684-7310ec8d8cea-root {
    text-align: center;
  }


#s-f33a40fb-8bb5-48a9-8684-7310ec8d8cea.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}
#s-23788ad5-c679-4cb9-9620-76496a411f6f {
  min-height: 50px;
}








#s-23788ad5-c679-4cb9-9620-76496a411f6f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-23788ad5-c679-4cb9-9620-76496a411f6f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-813db5da-3d8f-4738-93e8-f0aa4cdecd03 {
  text-align: center;
}







  #s-813db5da-3d8f-4738-93e8-f0aa4cdecd03 img.shogun-image {
    

    
    
    
  }


#s-813db5da-3d8f-4738-93e8-f0aa4cdecd03 .shogun-image-content {
  
    align-items: center;
  
}

#s-0ce1acc0-6895-4e3d-9ef7-71c22ae1d834 {
  margin-bottom: -5px;
}

#s-41d1eff5-66a2-4e67-9c7e-6182b836b1f2 {
  margin-bottom: -8px;
}

#s-cd39b683-5a44-4522-9534-64810b06f66f {
  margin-bottom: 0px;
}

#s-9becc75e-a307-4008-b1b0-09fda0e57612 {
  margin-bottom: 45px;
padding-top: 4px;
padding-left: 30px;
padding-bottom: 4px;
padding-right: 30px;
border-radius: 40px;
background-color: rgba(206, 88, 124, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
letter-spacing: 1px;
}
#s-9becc75e-a307-4008-b1b0-09fda0e57612:hover {background-color: rgba(222, 151, 177, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-9becc75e-a307-4008-b1b0-09fda0e57612:active {background-color: rgba(194, 85, 125, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-9becc75e-a307-4008-b1b0-09fda0e57612-root {
    text-align: center;
  }


#s-9becc75e-a307-4008-b1b0-09fda0e57612.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-9becc75e-a307-4008-b1b0-09fda0e57612-root {
    text-align: center;
  }


#s-9becc75e-a307-4008-b1b0-09fda0e57612.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9becc75e-a307-4008-b1b0-09fda0e57612-root {
    text-align: center;
  }


#s-9becc75e-a307-4008-b1b0-09fda0e57612.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9becc75e-a307-4008-b1b0-09fda0e57612-root {
    text-align: center;
  }


#s-9becc75e-a307-4008-b1b0-09fda0e57612.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-9becc75e-a307-4008-b1b0-09fda0e57612-root {
    text-align: center;
  }


#s-9becc75e-a307-4008-b1b0-09fda0e57612.shg-btn {
  color: #ffffff;
  font-size: 12px;
  
  
  
  display:  inline-block ;
}
}
#s-40c4f0d1-fe1a-4989-9322-7faddb1a7403 {
  min-height: 50px;
}








#s-40c4f0d1-fe1a-4989-9322-7faddb1a7403 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-40c4f0d1-fe1a-4989-9322-7faddb1a7403.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-59af4d27-b3eb-466c-838d-048c7ba35970 {
  margin-bottom: 10px;
}

#s-2c4f7941-0265-4f47-b1e7-ce5050daec07 {
  margin-bottom: 60px;
}
@media (max-width: 767px){#s-2c4f7941-0265-4f47-b1e7-ce5050daec07 {
  margin-bottom: 40px;
}
}
    .gr_series_spec_section_title{
        margin: 0 auto 65px;
        max-width:670px;
        text-align:center;
    }
    .gr_series_spec_section_title h3{
        font-size:24px;
    }
    .gr_series_spec_table_box {
        width: 100%;
        max-width: 670px;
        margin: 0 auto 60px !important;
        font-size: 14px;
        color: #505050;
    }
    .gr_series_spec_table_box h4{
        text-align:center;
        margin-bottom: 34px;
    }
    .gr_series_spec_table_item {
        display: table;
        width: 100%;
        margin: 0;
        border-bottom: 1px solid #C7C7C7;
    }
    .gr_series_spec_table_item:first-child {
        border-top: 1px solid #C7C7C7;
    }
    .gr_series_spec_table_item:last-child{
        margin-bottom:20px;
    }
    .gr_series_spec_table_item dt {
        display: table-cell;
        width: 30%;
        padding: 17px 20px 17px 40px;
        line-height: 1.7;
        vertical-align: middle;
        word-break: break-all;
    }
    .gr_series_spec_table_item dd {
        display: table-cell;
        padding: 17px 20px 17px 40px;
        line-height: 1.7;
        vertical-align: middle;
    }
    .gr_series_spec_table_link {
        margin-top:30px;
    }
    .gr_series_spec_table_link a {
        width: 90%;
        display: block;
        color: #505050;
        text-decoration: none;
        padding: 10px;
        border: solid 1px #C7C7C7;
        border-radius: 30px;
        font-size: 14px;
        text-align: center;
        margin: 0 auto;
    }
    .gr_series_spec_table_link.gr_02 a.btn {
        width:618px !important;
    }
    .gr_series_spec_table_box p{
        margin:20px 0 0 40px;
    }
    .gr_series_spec_table_box p>a{
        text-decoration:underline;
    }
@media screen and (max-width: 767px) {
    .gr_series_spec_table_box{
        margin-bottom: 50px!important;
    }
    .gr_series_spec_table_item dt {
        width: 50%;
        padding: 15px 10px 15px 10px;
    }
    .gr_series_spec_table_item span{
        font-size:12px;
    }
    .gr_series_spec_table_item dd {
        padding: 15px 10px 15px 0;
    }
    .gr_series_spec_table_link {
        margin-top:20px;
    }
    .gr_series_spec_table_link.gr_01 a .btn {
        width:90% !important;
    }
    #s-c29d56d2-5c2f-4bd8-b39c-30c6d330b275,.shg-c {
        margin-top: 0!important;
    }
        .gr_series_spec_table_box p{
        margin:20px 0 0 10px;
    }
}
#s-b13352d5-4e0f-4172-90d5-8303b1cc3bf0 {
  margin-left: 20px;
margin-right: 20px;
}
@media (max-width: 767px){#s-b13352d5-4e0f-4172-90d5-8303b1cc3bf0 {
  margin-bottom: 80px;
}
}
#s-29e9dda0-c253-4dc1-8c8a-58a5a3be858f {
  margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
min-height: 50px;
}
@media (min-width: 1200px){#s-29e9dda0-c253-4dc1-8c8a-58a5a3be858f {
  display: none;
}
#s-29e9dda0-c253-4dc1-8c8a-58a5a3be858f, #wrap-s-29e9dda0-c253-4dc1-8c8a-58a5a3be858f { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-29e9dda0-c253-4dc1-8c8a-58a5a3be858f {
  display: none;
}
#s-29e9dda0-c253-4dc1-8c8a-58a5a3be858f, #wrap-s-29e9dda0-c253-4dc1-8c8a-58a5a3be858f { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-29e9dda0-c253-4dc1-8c8a-58a5a3be858f {
  display: none;
}
#s-29e9dda0-c253-4dc1-8c8a-58a5a3be858f, #wrap-s-29e9dda0-c253-4dc1-8c8a-58a5a3be858f { display:none !important; }}







#s-29e9dda0-c253-4dc1-8c8a-58a5a3be858f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-29e9dda0-c253-4dc1-8c8a-58a5a3be858f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-14d6ca4f-692e-4e10-9955-eb05d2220ccc {
  margin-left: auto;
margin-right: auto;
max-width: 670px;
}








#s-14d6ca4f-692e-4e10-9955-eb05d2220ccc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-14d6ca4f-692e-4e10-9955-eb05d2220ccc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b5889ffb-55ad-4378-a060-942cf12a090e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b5889ffb-55ad-4378-a060-942cf12a090e .shogun-heading-component h4 {
  color: rgba(80, 80, 80, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



@media (max-width: 767px){#s-b5175ff5-e09a-4238-8097-f0fb1cfa8de5 {
  margin-bottom: -20px;
}
}
.shg-hr-wrapper {
  padding: 30px 0;
}

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

@media (max-width: 767px){#s-ba434db2-9dd5-4183-be76-3720e759d05c {
  margin-top: 0px;
}
}
#s-ba434db2-9dd5-4183-be76-3720e759d05c hr {
  border-top: 1px solid #ddd;
}

#s-72d83912-6e18-4123-8cf1-bdf8187d0264 {
  margin-bottom: 20px;
}

#s-695e2410-6346-4d2f-ad40-8c971ec82e26 {
  margin-left: auto;
margin-right: auto;
max-width: 670px;
}








#s-695e2410-6346-4d2f-ad40-8c971ec82e26 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-695e2410-6346-4d2f-ad40-8c971ec82e26.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (max-width: 767px){#s-fef228bd-0b8f-45d5-8ef1-47f00f5a7eec {
  margin-top: -20px;
margin-bottom: -20px;
}
}
@media (max-width: 767px){#s-cbfb4bb7-04d6-490e-8306-0f9332f41160 {
  margin-top: 0px;
}
}
#s-cbfb4bb7-04d6-490e-8306-0f9332f41160 hr {
  border-top: 1px solid #ddd;
}

#s-f1b82eb1-9299-4181-913a-779d98308769 {
  margin-bottom: 20px;
}

#s-9dea5c4b-eddc-49c1-a7b4-5fa6f5e90204 {
  margin-left: auto;
margin-right: auto;
max-width: 670px;
}








#s-9dea5c4b-eddc-49c1-a7b4-5fa6f5e90204 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9dea5c4b-eddc-49c1-a7b4-5fa6f5e90204.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (max-width: 767px){#s-5f02ebc9-45fb-4e36-bf6e-ce96aabc2c3a {
  margin-top: -20px;
margin-bottom: -20px;
}
}
@media (max-width: 767px){#s-f9241336-e1be-4d2d-89ab-60c5d4bd7758 {
  margin-top: 0px;
}
}
#s-f9241336-e1be-4d2d-89ab-60c5d4bd7758 hr {
  border-top: 1px solid #ddd;
}

#s-98568cf7-200e-45d9-82a8-3399302faf5d {
  margin-bottom: 20px;
}

#s-0cb750f1-01c7-40a2-a3cd-b890c5c7bdad {
  margin-left: auto;
margin-right: auto;
max-width: 670px;
}








#s-0cb750f1-01c7-40a2-a3cd-b890c5c7bdad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0cb750f1-01c7-40a2-a3cd-b890c5c7bdad.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (max-width: 767px){#s-588a7021-543d-4504-89c0-d1419a81644f {
  margin-top: -20px;
margin-bottom: -20px;
}
}
@media (max-width: 767px){#s-d59b86a9-dc88-4ba4-9c26-13bb879c8eff {
  margin-top: 0px;
}
}
#s-d59b86a9-dc88-4ba4-9c26-13bb879c8eff hr {
  border-top: 1px solid #ddd;
}

#s-850eda1e-f133-4b2d-b941-8f386f153c37 {
  margin-bottom: 20px;
}

#s-629e2cd7-ed42-4cbc-8890-87746d704af1 {
  margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 10px;
max-width: 670px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-629e2cd7-ed42-4cbc-8890-87746d704af1 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-629e2cd7-ed42-4cbc-8890-87746d704af1 {
  display: none;
}
#s-629e2cd7-ed42-4cbc-8890-87746d704af1, #wrap-s-629e2cd7-ed42-4cbc-8890-87746d704af1 { display:none !important; }}@media (max-width: 767px){#s-629e2cd7-ed42-4cbc-8890-87746d704af1 {
  display: none;
}
#s-629e2cd7-ed42-4cbc-8890-87746d704af1, #wrap-s-629e2cd7-ed42-4cbc-8890-87746d704af1 { display:none !important; }}







#s-629e2cd7-ed42-4cbc-8890-87746d704af1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-629e2cd7-ed42-4cbc-8890-87746d704af1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-792c5385-a180-4ba2-b68e-78f6797e7265 {
  margin-left: auto;
margin-right: auto;
max-width: 670px;
}

#s-89f07baa-2f72-4c2b-9251-c34c0abe0f0f {
  margin-left: auto;
margin-right: auto;
max-width: 670px;
}








#s-89f07baa-2f72-4c2b-9251-c34c0abe0f0f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-89f07baa-2f72-4c2b-9251-c34c0abe0f0f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b845a5da-0a99-4778-84a3-d6c9e537bb71 {
  margin-top: -25px;
margin-bottom: -10px;
}

#s-b845a5da-0a99-4778-84a3-d6c9e537bb71 hr {
  border-top: 1px solid #ddd;
}

#s-72da35c3-41e2-4926-b872-f99a5c5c44a4 {
  margin-bottom: 20px;
}

#s-d6f5ba3c-666d-4b51-a3a3-65a95baef610 {
  margin-left: auto;
margin-right: auto;
max-width: 670px;
}








#s-d6f5ba3c-666d-4b51-a3a3-65a95baef610 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d6f5ba3c-666d-4b51-a3a3-65a95baef610.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-70f0e1b0-017b-44d7-9b99-2c1cbcdc771e {
  margin-top: -25px;
margin-bottom: -10px;
}

#s-70f0e1b0-017b-44d7-9b99-2c1cbcdc771e hr {
  border-top: 1px solid #ddd;
}

#s-38333c1a-13d8-475b-9156-e90180b426d6 {
  margin-bottom: 20px;
}

#s-c3a0ee7c-deeb-48f7-ac32-e20223ce2c52 {
  margin-left: auto;
margin-right: auto;
max-width: 670px;
}








#s-c3a0ee7c-deeb-48f7-ac32-e20223ce2c52 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c3a0ee7c-deeb-48f7-ac32-e20223ce2c52.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cb1e0045-9a5b-4a53-81e0-0d6c5733c24c {
  margin-top: -25px;
margin-bottom: -10px;
}

#s-cb1e0045-9a5b-4a53-81e0-0d6c5733c24c hr {
  border-top: 1px solid #ddd;
}

#s-764eedf3-91e3-42fb-8d2c-f08283d6af1a {
  margin-bottom: 20px;
}

#s-d01665a2-c415-475e-b749-5a93d2c0cf9c {
  margin-left: auto;
margin-right: auto;
max-width: 670px;
}








#s-d01665a2-c415-475e-b749-5a93d2c0cf9c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d01665a2-c415-475e-b749-5a93d2c0cf9c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fc71adcb-9e30-4548-8ac6-800635c2cb67 {
  margin-top: -25px;
margin-bottom: -10px;
}

#s-fc71adcb-9e30-4548-8ac6-800635c2cb67 hr {
  border-top: 1px solid #ddd;
}

#s-89e7896e-c42d-41c9-9a22-030bcb33611c {
  margin-bottom: 20px;
}

#s-7b04738b-601b-43df-b4f3-d6f2d5ecd59f {
  margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
min-height: 50px;
}
@media (min-width: 1200px){#s-7b04738b-601b-43df-b4f3-d6f2d5ecd59f {
  display: none;
}
#s-7b04738b-601b-43df-b4f3-d6f2d5ecd59f, #wrap-s-7b04738b-601b-43df-b4f3-d6f2d5ecd59f { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7b04738b-601b-43df-b4f3-d6f2d5ecd59f {
  display: none;
}
#s-7b04738b-601b-43df-b4f3-d6f2d5ecd59f, #wrap-s-7b04738b-601b-43df-b4f3-d6f2d5ecd59f { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7b04738b-601b-43df-b4f3-d6f2d5ecd59f {
  display: none;
}
#s-7b04738b-601b-43df-b4f3-d6f2d5ecd59f, #wrap-s-7b04738b-601b-43df-b4f3-d6f2d5ecd59f { display:none !important; }}







#s-7b04738b-601b-43df-b4f3-d6f2d5ecd59f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7b04738b-601b-43df-b4f3-d6f2d5ecd59f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e6a125a9-f721-4d19-ac73-a5410c27f34b {
  margin-left: auto;
margin-right: auto;
max-width: 670px;
}








#s-e6a125a9-f721-4d19-ac73-a5410c27f34b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e6a125a9-f721-4d19-ac73-a5410c27f34b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c518a451-a694-4c9e-a6b6-c8a52a6a06ac {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c518a451-a694-4c9e-a6b6-c8a52a6a06ac .shogun-heading-component h4 {
  color: rgba(80, 80, 80, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



@media (max-width: 767px){#s-1d459f6b-6b26-4b51-8b22-8a6cdfce69a2 {
  margin-bottom: -20px;
}
}
@media (max-width: 767px){#s-20591c57-2f33-4e90-92e8-92cb7c8d47da {
  margin-top: 0px;
}
}
#s-20591c57-2f33-4e90-92e8-92cb7c8d47da hr {
  border-top: 1px solid #ddd;
}

#s-34207261-a8ef-43d0-992e-e87b202c89a6 {
  margin-bottom: 20px;
}

#s-bc30a375-b693-4287-9e9c-5ef1b2319d88 {
  margin-left: auto;
margin-right: auto;
max-width: 670px;
}








#s-bc30a375-b693-4287-9e9c-5ef1b2319d88 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bc30a375-b693-4287-9e9c-5ef1b2319d88.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (max-width: 767px){#s-f7570eda-34af-4432-8afc-ed3c87a303de {
  margin-top: -20px;
margin-bottom: -20px;
}
}
@media (max-width: 767px){#s-d6365670-8d13-4640-8284-bd54e9539748 {
  margin-top: 0px;
}
}
#s-d6365670-8d13-4640-8284-bd54e9539748 hr {
  border-top: 1px solid #ddd;
}

#s-04f349d7-f6d0-42a5-b145-f557ff14f0e4 {
  margin-bottom: 20px;
}

#s-d5797418-7026-491f-bfcc-55f08332fb7c {
  margin-left: auto;
margin-right: auto;
max-width: 670px;
}








#s-d5797418-7026-491f-bfcc-55f08332fb7c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d5797418-7026-491f-bfcc-55f08332fb7c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (max-width: 767px){#s-02fba728-a91f-457a-bfbd-67a74ac73391 {
  margin-top: -20px;
margin-bottom: -20px;
}
}
@media (max-width: 767px){#s-287a9f22-1538-44a3-af6d-ad5ae3413e5c {
  margin-top: 0px;
}
}
#s-287a9f22-1538-44a3-af6d-ad5ae3413e5c hr {
  border-top: 1px solid #ddd;
}

#s-8cf815d0-10f7-4bb0-ac06-08d59dd0aa11 {
  margin-bottom: 20px;
}

#s-04a0539d-d0b5-40b6-a9a7-45fb4943190a {
  margin-left: auto;
margin-right: auto;
max-width: 670px;
}








#s-04a0539d-d0b5-40b6-a9a7-45fb4943190a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-04a0539d-d0b5-40b6-a9a7-45fb4943190a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (max-width: 767px){#s-aac6cfb4-f651-4e60-b19b-41aee2076876 {
  margin-top: -20px;
margin-bottom: -20px;
}
}
@media (max-width: 767px){#s-448cf13f-1b87-40e2-8cf7-0bd4b679a567 {
  margin-top: 0px;
}
}
#s-448cf13f-1b87-40e2-8cf7-0bd4b679a567 hr {
  border-top: 1px solid #ddd;
}

#s-50365cbe-d6e3-4006-91c1-12f6dc05f3ff {
  margin-bottom: 20px;
}

#s-63111236-8bff-4d92-8e14-c1d393276708 {
  margin-bottom: 120px;
padding-left: 30px;
padding-right: 30px;
min-height: 50px;
}
@media (max-width: 767px){#s-63111236-8bff-4d92-8e14-c1d393276708 {
  padding-left: 0px;
padding-right: 0px;
}
}







#s-63111236-8bff-4d92-8e14-c1d393276708 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-63111236-8bff-4d92-8e14-c1d393276708.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0cbee250-cbf7-4064-a49f-e2c65336dc8d {
  margin-bottom: 10px;
}

#s-de6e73fc-cdfb-4bc2-b71c-af79ff2469a0 {
  margin-bottom: 40px;
}
@media (max-width: 767px){#s-de6e73fc-cdfb-4bc2-b71c-af79ff2469a0 {
  margin-bottom: 20px;
}
}
#s-20773c56-bbdd-4ccb-8366-a61dc0e6a5d7 {
  margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
max-width: 800px;
}
@media (max-width: 767px){#s-20773c56-bbdd-4ccb-8366-a61dc0e6a5d7 {
  margin-bottom: 20px;
}
}
@media (min-width: 0px) {
[id="s-20773c56-bbdd-4ccb-8366-a61dc0e6a5d7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-20773c56-bbdd-4ccb-8366-a61dc0e6a5d7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-20773c56-bbdd-4ccb-8366-a61dc0e6a5d7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-20773c56-bbdd-4ccb-8366-a61dc0e6a5d7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-29db8ac4-dbb3-4c5f-8beb-f82982f17bf6 {
  text-align: center;
}
@media (max-width: 767px){#s-29db8ac4-dbb3-4c5f-8beb-f82982f17bf6 {
  margin-top: 20px;
margin-bottom: 20px;
}
}






  #s-29db8ac4-dbb3-4c5f-8beb-f82982f17bf6 img.shogun-image {
    

    
    
    
  }


#s-29db8ac4-dbb3-4c5f-8beb-f82982f17bf6 .shogun-image-content {
  
    align-items: center;
  
}

#s-eb2e1f3a-a00c-444b-b0a7-02d9a0ed9b19 {
  text-align: center;
}







  #s-eb2e1f3a-a00c-444b-b0a7-02d9a0ed9b19 img.shogun-image {
    

    
    
    
  }


#s-eb2e1f3a-a00c-444b-b0a7-02d9a0ed9b19 .shogun-image-content {
  
    align-items: center;
  
}

#s-96d8ae90-5830-4576-9212-55285fbb6990 {
  margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
max-width: 800px;
}

@media (min-width: 0px) {
[id="s-96d8ae90-5830-4576-9212-55285fbb6990"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-96d8ae90-5830-4576-9212-55285fbb6990"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-96d8ae90-5830-4576-9212-55285fbb6990"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-96d8ae90-5830-4576-9212-55285fbb6990"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-00bed985-6d7e-4b7e-9ddd-14e43bb052be {
  text-align: center;
}
@media (max-width: 767px){#s-00bed985-6d7e-4b7e-9ddd-14e43bb052be {
  margin-top: 20px;
margin-bottom: 20px;
}
}






  #s-00bed985-6d7e-4b7e-9ddd-14e43bb052be img.shogun-image {
    

    
    
    
  }


#s-00bed985-6d7e-4b7e-9ddd-14e43bb052be .shogun-image-content {
  
    align-items: center;
  
}

#s-9c4863b8-6f46-4135-8085-ae1130a05d6d {
  text-align: center;
}







  #s-9c4863b8-6f46-4135-8085-ae1130a05d6d img.shogun-image {
    

    
    
    
  }


#s-9c4863b8-6f46-4135-8085-ae1130a05d6d .shogun-image-content {
  
    align-items: center;
  
}

#s-617812bf-681e-49d8-8011-76f1885b7c8f {
  text-align: left;
}

#s-87ff2714-f562-41d7-b2e6-98014d8f2997 {
  text-align: left;
}

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

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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