.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-0e880a15-888b-48a8-935d-b75658e36f26 {
  min-height: 50px;
background-color: rgba(243, 237, 249, 1);
}








#s-0e880a15-888b-48a8-935d-b75658e36f26 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0e880a15-888b-48a8-935d-b75658e36f26.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;
}
#s-cb218602-7d10-4879-ba5e-07621811b342 {
  margin-bottom: 13px;
padding-left: 0%;
padding-right: 0%;
text-align: center;
}
@media (min-width: 1200px){#s-cb218602-7d10-4879-ba5e-07621811b342 {
  display: none;
}
#s-cb218602-7d10-4879-ba5e-07621811b342, #wrap-s-cb218602-7d10-4879-ba5e-07621811b342 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-cb218602-7d10-4879-ba5e-07621811b342 {
  display: none;
}
#s-cb218602-7d10-4879-ba5e-07621811b342, #wrap-s-cb218602-7d10-4879-ba5e-07621811b342 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-cb218602-7d10-4879-ba5e-07621811b342 {
  display: none;
}
#s-cb218602-7d10-4879-ba5e-07621811b342, #wrap-s-cb218602-7d10-4879-ba5e-07621811b342 { display:none !important; }}






  #s-cb218602-7d10-4879-ba5e-07621811b342 img.shogun-image {
    

    
    
    
  }


#s-cb218602-7d10-4879-ba5e-07621811b342 .shogun-image-content {
  
    align-items:  flex-start;
  
}

.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-83ddc8cc-880c-4c5b-971e-b95ec8cf0890 {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 50px;
margin-right: 0%;
padding-top: 0px;
padding-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-83ddc8cc-880c-4c5b-971e-b95ec8cf0890"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-83ddc8cc-880c-4c5b-971e-b95ec8cf0890"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-83ddc8cc-880c-4c5b-971e-b95ec8cf0890"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-83ddc8cc-880c-4c5b-971e-b95ec8cf0890"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-83ddc8cc-880c-4c5b-971e-b95ec8cf0890"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-83ddc8cc-880c-4c5b-971e-b95ec8cf0890"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-83ddc8cc-880c-4c5b-971e-b95ec8cf0890"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

.shg-rich-text {
  overflow-wrap: break-word;
}

.shg-rich-text img {
  margin: 0 20px;
}

@media (max-width: 768px) {
  .shg-rich-text img {
    display: block;
    float: none !important;
    margin: 0 auto;
  }
}

.shg-default-text-content *:first-child {
  margin-top: 0;
}

.shg-default-text-content {
  text-align: left;
}

.shg-default-text-content p,
.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6,
.shg-default-text-content address,
.shg-default-text-content pre,
.shg-default-text-content div,
.shg-default-text-content ol,
.shg-default-text-content ul {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  color: #000000;
  font-family: inherit;
  font-style: normal;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-transform: none;
}

.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6 {
  color: ;
  font-family: ;
  font-weight: ;
}

.shg-default-text-content a {
  background-color: inherit;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-style: inherit;
  text-decoration: underline;
  text-transform: inherit;
}

.shg-default-text-content strong,
.shg-default-text-content em {
  background-color: inherit;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: inherit;
  text-transform: inherit;
}

.shg-default-text-content em {
  font-weight: inherit;
}

.shg-default-text-content strong {
  font-style: inherit;
  font-weight: 700;
}

/* https://stackoverflow.com/a/16094931/3696652 */
.shg-default-text-content ::selection,
.shg-default-text-content *::selection {
  background: #accef7;
}

.shg-default-text-content p {
  font-size: 1em;
  font-weight: ;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  color: ;
  font-family: ;
}

.shg-default-text-content h1 {
  font-size: 1.714em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.166;
  margin-top: 0.67em;
}

.shg-default-text-content h2 {
  font-size: 1.43em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-top: 0.83em;
}

.shg-default-text-content h3 {
  font-size: 1.142em;
  font-weight: 500;
  letter-spacing: -0.008em;
  line-height: 1.5;
  margin-top: 1em;
}

.shg-default-text-content h4 {
  font-size: 1em;
  font-weight: 600;
  letter-spacing: -0.006em;
  line-height: 1.428;
  margin-top: 1.33em;
}

.shg-default-text-content h5 {
  font-size: 0.857em;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.333;
  margin-top: 1.43em;
}

.shg-default-text-content h6 {
  font-size: 0.785em;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.454;
  margin-top: 1.42em;
  text-transform: uppercase;
}

.shg-default-text-content ul {
  list-style: disc;
}

.shg-default-text-content ol {
  list-style: decimal;
}

.shg-default-text-content ul,
.shg-default-text-content ol {
  margin-block-end: 1em;
  margin-block-start: 1em;
  margin-bottom: 0;
  margin-inline-end: 0;
  margin-inline-start: 0;
  margin-top: 0;
  padding-inline-start: 40px;
}

.shg-default-text-content li {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1;
  list-style: inherit;
  margin-top: 0.67em;
}

.shg-default-text-content pre {
  font-family: monospace;
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 1em;
  white-space: pre-wrap;
  word-break: normal;
}

.shg-default-text-content address {
  font-size: 1em;
  font-style: italic;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0;
}

.shg-default-text-content div {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-bottom: 0;
  margin-top: 0.67em;
}

.shg-theme-text-content h1,
.shg-theme-text-content h2,
.shg-theme-text-content h3,
.shg-theme-text-content h4,
.shg-theme-text-content h5,
.shg-theme-text-content h6 {
  color: ;
  font-family: ;
  font-weight: ;
}

.shg-theme-text-content p {
  color: ;
  font-family: ;
  font-weight: ;
}

#s-555c502e-c79c-44fd-b2c8-8210a3194e92 {
  margin-top: 90px;
margin-left: 10%;
margin-bottom: -16px;
margin-right: 10%;
}
@media (min-width: 768px) and (max-width: 991px){#s-555c502e-c79c-44fd-b2c8-8210a3194e92 {
  margin-top: 20px;
}
}@media (max-width: 767px){#s-555c502e-c79c-44fd-b2c8-8210a3194e92 {
  margin-top: 10px;
}
}
#s-fbf964ac-66a6-44b7-9e3c-c3828e7829df {
  margin-top: 0px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
}

#s-e2f7689b-acdc-4b2a-ba3d-6f7c98f960c6 {
  display: none;
}
.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-ce98b84f-a983-4e47-ac36-542048a5cdf3 {
  margin-top: 10px;
margin-left: 10%;
margin-bottom: 20px;
margin-right: 0%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 20px;
background-color: rgba(233, 182, 72, 1);
text-align: left;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(51, 51, 51, 1);
}
#s-ce98b84f-a983-4e47-ac36-542048a5cdf3:hover {background-color: rgba(195, 143, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-ce98b84f-a983-4e47-ac36-542048a5cdf3:active {border-style: solid !important;
border-top-width: 0px !important;
border-left-width: 0px !important;
border-bottom-width: 0px !important;
border-right-width: 0px !important;
border-color: #2C2A34 !important;
border-radius: 20px !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-ce98b84f-a983-4e47-ac36-542048a5cdf3-atc-btn-wrapper {
    text-align: left;
  }


#s-ce98b84f-a983-4e47-ac36-542048a5cdf3 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-ce98b84f-a983-4e47-ac36-542048a5cdf3.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-ce98b84f-a983-4e47-ac36-542048a5cdf3.shg-btn {
  color: rgba(51, 51, 51, 1);
  font-size: 15px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-ce98b84f-a983-4e47-ac36-542048a5cdf3.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-20567cc7-6438-4949-ba31-5c61f18d19eb {
  margin-top: 20px;
margin-left: 10%;
margin-bottom: 10px;
margin-right: 10%;
}

.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-8c6e3267-3045-40ad-a0d2-dda6cb25253d {
  margin-top: 20px;
margin-left: 10%;
margin-bottom: 20px;
margin-right: 10%;
}

#s-0ac67052-541d-4d19-ae49-70772850bf3b {
  margin-bottom: 13px;
padding-left: 0%;
padding-right: 0%;
text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-0ac67052-541d-4d19-ae49-70772850bf3b {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-0ac67052-541d-4d19-ae49-70772850bf3b {
  
}
}@media (max-width: 767px){#s-0ac67052-541d-4d19-ae49-70772850bf3b {
  display: none;
}
#s-0ac67052-541d-4d19-ae49-70772850bf3b, #wrap-s-0ac67052-541d-4d19-ae49-70772850bf3b { display:none !important; }}






  #s-0ac67052-541d-4d19-ae49-70772850bf3b img.shogun-image {
    

    
    
    
  }


#s-0ac67052-541d-4d19-ae49-70772850bf3b .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-84bf5f5a-97f9-4dc1-8a98-cb06f6668653 {
  margin-top: 60px;
margin-bottom: 0px;
}

#s-a25234f9-a5e9-4da2-827a-a1d43f4d2698 {
  margin-bottom: 15px;
}

#s-a25234f9-a5e9-4da2-827a-a1d43f4d2698 {
  display: none;
}
#s-88e57f6d-fc20-472f-802f-e28986738d43 {
  text-align: center;
}

#s-88e57f6d-fc20-472f-802f-e28986738d43 .shg-product-sold-out {
  display: none;
  color: rgba(51, 51, 51, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-88e57f6d-fc20-472f-802f-e28986738d43 .shg-product-price {
  color: rgba(51, 51, 51, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-88e57f6d-fc20-472f-802f-e28986738d43 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}

#s-ec4c06b4-addb-44b5-a983-4dc137294cbf {
  margin-left: 10%;
margin-right: 10%;
min-height: 50px;
}








#s-ec4c06b4-addb-44b5-a983-4dc137294cbf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ec4c06b4-addb-44b5-a983-4dc137294cbf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-311ca06c-d883-4bf6-b0e6-a820d9599e37 {
  text-align: left;
}







  #s-311ca06c-d883-4bf6-b0e6-a820d9599e37 img.shogun-image {
    

    
    
    
  }


#s-311ca06c-d883-4bf6-b0e6-a820d9599e37 .shogun-image-content {
  
    align-items: center;
  
}

#s-8920a804-9f74-4652-adc6-8988167c2f31 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-6bc76f04-0610-45db-8838-e95f4501fcf9 {
  margin-left: 10%;
margin-right: 10%;
min-height: 50px;
}








#s-6bc76f04-0610-45db-8838-e95f4501fcf9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6bc76f04-0610-45db-8838-e95f4501fcf9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-930a1571-f4a6-4a57-8d07-1b1b3414930a {
  text-align: left;
}







  #s-930a1571-f4a6-4a57-8d07-1b1b3414930a img.shogun-image {
    

    
    
    
  }


#s-930a1571-f4a6-4a57-8d07-1b1b3414930a .shogun-image-content {
  
    align-items: center;
  
}

#s-76b364e4-7490-4d41-b36b-7729b99acf25 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-c31e95d8-96fc-4e3c-bb5a-b05e2d1141f2 {
  margin-left: 10%;
margin-right: 10%;
min-height: 50px;
}








#s-c31e95d8-96fc-4e3c-bb5a-b05e2d1141f2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c31e95d8-96fc-4e3c-bb5a-b05e2d1141f2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0a88be7b-6bfb-45bd-92f0-172854815fea {
  text-align: left;
}







  #s-0a88be7b-6bfb-45bd-92f0-172854815fea img.shogun-image {
    

    
    
    
  }


#s-0a88be7b-6bfb-45bd-92f0-172854815fea .shogun-image-content {
  
    align-items: center;
  
}

#s-222e8aff-8cb2-44c7-9478-5a24ebf7070a {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-7751b856-58a8-44fe-926c-42b4926c4e88 {
  margin-left: 10%;
margin-right: 10%;
min-height: 50px;
}








#s-7751b856-58a8-44fe-926c-42b4926c4e88 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7751b856-58a8-44fe-926c-42b4926c4e88.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-872f4d33-e2c2-40a4-bb78-4e42499a4017 {
  text-align: left;
}







  #s-872f4d33-e2c2-40a4-bb78-4e42499a4017 img.shogun-image {
    

    
    
    
  }


#s-872f4d33-e2c2-40a4-bb78-4e42499a4017 .shogun-image-content {
  
    align-items: center;
  
}

#s-55114b0a-8dc8-41d3-b140-de50fb715458 {
  margin-top: 10px;
margin-bottom: 50px;
}

#s-2c70c46a-baff-4b78-9ebf-ce0576808703 {
  border-style: solid;
margin-bottom: 60px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-2c70c46a-baff-4b78-9ebf-ce0576808703 {
  margin-left: 15%;
margin-right: 15%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2c70c46a-baff-4b78-9ebf-ce0576808703 {
  margin-left: 10%;
margin-right: 10%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-2c70c46a-baff-4b78-9ebf-ce0576808703 {
  margin-left: 6%;
margin-right: 6%;
}
}@media (max-width: 767px){#s-2c70c46a-baff-4b78-9ebf-ce0576808703 {
  margin-left: 6%;
margin-right: 6%;
}
}







#s-2c70c46a-baff-4b78-9ebf-ce0576808703 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2c70c46a-baff-4b78-9ebf-ce0576808703.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-65b8f491-0dd5-495c-a8e8-9c5f4e8fb7d6 {
  margin-top: 40px;
margin-left: 4%;
margin-bottom: 20px;
margin-right: 4%;
}

#s-92609969-b2a1-4e9f-8c42-6bf0ccf62544 {
  margin-left: 4%;
margin-right: 4%;
}

@media (min-width: 0px) {
[id="s-92609969-b2a1-4e9f-8c42-6bf0ccf62544"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-92609969-b2a1-4e9f-8c42-6bf0ccf62544"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-92609969-b2a1-4e9f-8c42-6bf0ccf62544"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-92609969-b2a1-4e9f-8c42-6bf0ccf62544"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-23340b1b-2ea4-44f6-a46e-ccbc4960c667 {
  margin-left: 4%;
margin-right: 4%;
}

#s-24e0a031-efd2-4adf-8997-2b24c5f133f1 {
  margin-top: 0px;
margin-left: 4%;
margin-bottom: 0px;
margin-right: 4%;
}
@media (max-width: 767px){#s-24e0a031-efd2-4adf-8997-2b24c5f133f1 {
  margin-top: -13px;
margin-bottom: -13px;
}
}
#s-2343e599-81cc-4410-a33e-3b3cf83f2bfa {
  display: none;
}
#s-0ce3186c-5951-4db1-9e86-5e16b0ea8709 {
  margin-top: 10px;
margin-bottom: 40px;
margin-right: 0%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 20px;
background-color: rgba(233, 182, 72, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(51, 51, 51, 1);
}
#s-0ce3186c-5951-4db1-9e86-5e16b0ea8709:hover {background-color: rgba(195, 143, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-0ce3186c-5951-4db1-9e86-5e16b0ea8709:active {border-style: solid !important;
border-top-width: 0px !important;
border-left-width: 0px !important;
border-bottom-width: 0px !important;
border-right-width: 0px !important;
border-color: #2C2A34 !important;
border-radius: 20px !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-0ce3186c-5951-4db1-9e86-5e16b0ea8709-atc-btn-wrapper {
    text-align: center;
  }


#s-0ce3186c-5951-4db1-9e86-5e16b0ea8709 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-0ce3186c-5951-4db1-9e86-5e16b0ea8709.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0ce3186c-5951-4db1-9e86-5e16b0ea8709.shg-btn {
  color: rgba(51, 51, 51, 1);
  font-size: 15px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-0ce3186c-5951-4db1-9e86-5e16b0ea8709.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-2de5fe11-66dc-4217-a2f9-e0cfca1aadbc {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: center center;
}
@media (min-width: 768px) and (max-width: 991px){#s-2de5fe11-66dc-4217-a2f9-e0cfca1aadbc {
  display: none;
}
#s-2de5fe11-66dc-4217-a2f9-e0cfca1aadbc, #wrap-s-2de5fe11-66dc-4217-a2f9-e0cfca1aadbc { display:none !important; }}@media (max-width: 767px){#s-2de5fe11-66dc-4217-a2f9-e0cfca1aadbc {
  display: none;
}
#s-2de5fe11-66dc-4217-a2f9-e0cfca1aadbc, #wrap-s-2de5fe11-66dc-4217-a2f9-e0cfca1aadbc { display:none !important; }}







#s-2de5fe11-66dc-4217-a2f9-e0cfca1aadbc > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0.4;
}#s-2de5fe11-66dc-4217-a2f9-e0cfca1aadbc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9e9303b5-7fd3-48d5-a769-0cf2d74fd157 {
  margin-top: 70px;
margin-left: 10%;
margin-bottom: 70px;
margin-right: 10%;
}

@media (min-width: 768px) and (max-width: 991px){#s-25d06666-2afb-4911-aba9-5f31b9d92ef9 {
  display: none;
}
#s-25d06666-2afb-4911-aba9-5f31b9d92ef9, #wrap-s-25d06666-2afb-4911-aba9-5f31b9d92ef9 { display:none !important; }}
@media (min-width: 0px) {
[id="s-25d06666-2afb-4911-aba9-5f31b9d92ef9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-25d06666-2afb-4911-aba9-5f31b9d92ef9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-25d06666-2afb-4911-aba9-5f31b9d92ef9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-25d06666-2afb-4911-aba9-5f31b9d92ef9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-df760a89-8276-4e68-9dec-e6ab68bb093d {
  margin-top: 50px;
margin-left: 15%;
margin-bottom: 50px;
margin-right: 15%;
text-align: center;
}







  #s-df760a89-8276-4e68-9dec-e6ab68bb093d img.shogun-image {
    

    
    
    
  }


#s-df760a89-8276-4e68-9dec-e6ab68bb093d .shogun-image-content {
  
    align-items: center;
  
}

#s-b0a151a3-be12-433a-ae1b-7acc27ff3cb9 {
  margin-top: 60px;
margin-left: 2%;
margin-bottom: 10px;
margin-right: 2%;
}
@media (max-width: 767px){#s-b0a151a3-be12-433a-ae1b-7acc27ff3cb9 {
  margin-top: 10px;
}
}
#s-9e8b1fd2-4c4e-4344-99e7-754bc20ac053 {
  margin-bottom: 50px;
}
@media (max-width: 767px){#s-9e8b1fd2-4c4e-4344-99e7-754bc20ac053 {
  text-align: center;
}
}
#s-9e8b1fd2-4c4e-4344-99e7-754bc20ac053 {
  display: none;
}
#s-ac01d51a-40be-4307-869d-95bb2ff23d7f {
  margin-top: 10px;
margin-bottom: 20px;
margin-right: 0%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 20px;
background-color: rgba(233, 182, 72, 1);
text-align: left;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(51, 51, 51, 1);
}
#s-ac01d51a-40be-4307-869d-95bb2ff23d7f:hover {background-color: rgba(195, 143, 29, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-ac01d51a-40be-4307-869d-95bb2ff23d7f:active {border-style: solid !important;
border-top-width: 0px !important;
border-left-width: 0px !important;
border-bottom-width: 0px !important;
border-right-width: 0px !important;
border-color: #2C2A34 !important;
border-radius: 20px !important;
background-color: #000000 !important;
text-decoration: none !important;}

  #s-ac01d51a-40be-4307-869d-95bb2ff23d7f-atc-btn-wrapper {
    text-align: left;
  }


#s-ac01d51a-40be-4307-869d-95bb2ff23d7f {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-ac01d51a-40be-4307-869d-95bb2ff23d7f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-ac01d51a-40be-4307-869d-95bb2ff23d7f.shg-btn {
  color: rgba(51, 51, 51, 1);
  font-size: 15px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}

#s-ac01d51a-40be-4307-869d-95bb2ff23d7f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-dc0ced00-6df3-40a0-bb1d-ba9e718bae2a {
  background-repeat: no-repeat;
background-size: cover;
min-height: 50px;
background-position: right center;
}
@media (min-width: 1200px){#s-dc0ced00-6df3-40a0-bb1d-ba9e718bae2a {
  display: none;
}
#s-dc0ced00-6df3-40a0-bb1d-ba9e718bae2a, #wrap-s-dc0ced00-6df3-40a0-bb1d-ba9e718bae2a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-dc0ced00-6df3-40a0-bb1d-ba9e718bae2a {
  display: none;
}
#s-dc0ced00-6df3-40a0-bb1d-ba9e718bae2a, #wrap-s-dc0ced00-6df3-40a0-bb1d-ba9e718bae2a { display:none !important; }}







#s-dc0ced00-6df3-40a0-bb1d-ba9e718bae2a > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0.3;
}#s-dc0ced00-6df3-40a0-bb1d-ba9e718bae2a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-475a0e91-c68b-4abb-8179-66a398118dea {
  margin-top: 26px;
margin-left: 11%;
margin-bottom: 26px;
margin-right: 11%;
}

#s-94624afb-2c10-442f-a783-598873ac773a {
  min-height: 50px;
}
@media (min-width: 1200px){#s-94624afb-2c10-442f-a783-598873ac773a {
  display: none;
}
#s-94624afb-2c10-442f-a783-598873ac773a, #wrap-s-94624afb-2c10-442f-a783-598873ac773a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-94624afb-2c10-442f-a783-598873ac773a {
  display: none;
}
#s-94624afb-2c10-442f-a783-598873ac773a, #wrap-s-94624afb-2c10-442f-a783-598873ac773a { display:none !important; }}@media (max-width: 767px){#s-94624afb-2c10-442f-a783-598873ac773a {
  display: none;
}
#s-94624afb-2c10-442f-a783-598873ac773a, #wrap-s-94624afb-2c10-442f-a783-598873ac773a { display:none !important; }}







#s-94624afb-2c10-442f-a783-598873ac773a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-94624afb-2c10-442f-a783-598873ac773a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a960d09b-6dd4-4f16-906f-bbfe98288ffd {
  margin-top: 29px;
margin-left: 30%;
margin-bottom: 29px;
margin-right: 30%;
text-align: center;
}







  #s-a960d09b-6dd4-4f16-906f-bbfe98288ffd img.shogun-image {
    

    
    
    
  }


#s-a960d09b-6dd4-4f16-906f-bbfe98288ffd .shogun-image-content {
  
    align-items: center;
  
}

#s-56ed5d0c-43ea-4980-9720-ba596007cbde {
  margin-left: 5%;
margin-bottom: 40px;
margin-right: 5%;
}

#s-b56102ed-7f25-4350-a901-563535825ed4 {
  display: none;
}
#s-2f976159-48da-47c7-8fec-1eec162fd400 {
  margin-top: 5px;
margin-left: 10%;
margin-bottom: 50px;
margin-right: 10%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(233, 182, 72, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
color: rgba(49, 49, 49, 1);
}
#s-2f976159-48da-47c7-8fec-1eec162fd400:hover {background-color: rgba(210, 158, 48, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-2f976159-48da-47c7-8fec-1eec162fd400:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-2f976159-48da-47c7-8fec-1eec162fd400-atc-btn-wrapper {
    text-align: center;
  }


#s-2f976159-48da-47c7-8fec-1eec162fd400 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-2f976159-48da-47c7-8fec-1eec162fd400.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-2f976159-48da-47c7-8fec-1eec162fd400.shg-btn {
  color: rgba(49, 49, 49, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-2f976159-48da-47c7-8fec-1eec162fd400.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-5d64c9a6-05f0-49ca-bb59-a57620953165 {
  min-height: 50px;
background-color: rgba(250, 247, 253, 1);
}








#s-5d64c9a6-05f0-49ca-bb59-a57620953165 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5d64c9a6-05f0-49ca-bb59-a57620953165.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-56d01758-69ca-4080-8690-7b0f0a5dacfa {
  margin-top: 80px;
margin-bottom: 10px;
}

#s-ef3e227e-569c-4232-bc2e-031164ecd50b {
  margin-left: 18%;
margin-bottom: 80px;
margin-right: 18%;
}
@media (min-width: 768px) and (max-width: 991px){#s-ef3e227e-569c-4232-bc2e-031164ecd50b {
  margin-left: 3%;
margin-right: 3%;
}
}
@media (min-width: 0px) {
[id="s-ef3e227e-569c-4232-bc2e-031164ecd50b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ef3e227e-569c-4232-bc2e-031164ecd50b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-ef3e227e-569c-4232-bc2e-031164ecd50b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-ef3e227e-569c-4232-bc2e-031164ecd50b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-91c72c06-c50a-4cf9-8eec-bbfe46e730d6 {
  text-align: center;
}







  #s-91c72c06-c50a-4cf9-8eec-bbfe46e730d6 img.shogun-image {
    

    
    
    
  }


#s-91c72c06-c50a-4cf9-8eec-bbfe46e730d6 .shogun-image-content {
  
    align-items: center;
  
}

#s-f135c5ae-fdf0-4fa4-8bbf-05719b998391 {
  margin-top: 10px;
margin-left: 3%;
margin-bottom: 10px;
margin-right: 3%;
}

#s-83d1f1cb-726d-4f80-bf41-809d2a30f0c3 {
  text-align: center;
}







  #s-83d1f1cb-726d-4f80-bf41-809d2a30f0c3 img.shogun-image {
    

    
    
    
  }


#s-83d1f1cb-726d-4f80-bf41-809d2a30f0c3 .shogun-image-content {
  
    align-items: center;
  
}

#s-72a174ba-06bb-4f4b-8b58-0ecbc6a106b1 {
  margin-top: 10px;
margin-left: 3%;
margin-bottom: 10px;
margin-right: 3%;
}

#s-2544b761-c4ba-44c9-ad59-4b6bcbe6bb79 {
  text-align: center;
}







  #s-2544b761-c4ba-44c9-ad59-4b6bcbe6bb79 img.shogun-image {
    

    
    
    
  }


#s-2544b761-c4ba-44c9-ad59-4b6bcbe6bb79 .shogun-image-content {
  
    align-items: center;
  
}

#s-33edab80-d4e2-47c6-b909-0ab5db195d83 {
  margin-top: 10px;
margin-left: 3%;
margin-bottom: 10px;
margin-right: 3%;
}

#s-3e92cb7d-06ed-4fa4-b01c-01df096503f5 {
  margin-top: 65px;
margin-bottom: 25px;
min-height: 50px;
}








#s-3e92cb7d-06ed-4fa4-b01c-01df096503f5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3e92cb7d-06ed-4fa4-b01c-01df096503f5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4d29e694-7bfa-4c31-9e68-63782a4ed1b0 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
max-width: 1000px;
}

#s-6ef369ae-4db3-434d-9b44-04d1b0f8f450 {
  margin-top: 15px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
max-width: 1000px;
}

@media (min-width: 0px) {
[id="s-6ef369ae-4db3-434d-9b44-04d1b0f8f450"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6ef369ae-4db3-434d-9b44-04d1b0f8f450"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-6ef369ae-4db3-434d-9b44-04d1b0f8f450"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6ef369ae-4db3-434d-9b44-04d1b0f8f450"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-6ef369ae-4db3-434d-9b44-04d1b0f8f450"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6ef369ae-4db3-434d-9b44-04d1b0f8f450"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-6ef369ae-4db3-434d-9b44-04d1b0f8f450"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-6ef369ae-4db3-434d-9b44-04d1b0f8f450"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-dce901c5-825b-4845-8f17-3ddff612b9fa {
  min-height: 50px;
}








#s-dce901c5-825b-4845-8f17-3ddff612b9fa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dce901c5-825b-4845-8f17-3ddff612b9fa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8e33a930-e9ba-47c1-bbe7-a36a1db057a3 {
  margin-top: 0px;
margin-left: 8px;
margin-bottom: 0px;
margin-right: 8px;
}
@media (min-width: 768px) and (max-width: 991px){#s-8e33a930-e9ba-47c1-bbe7-a36a1db057a3 {
  margin-top: 0px;
margin-left: 4%;
margin-bottom: 0px;
}
}@media (max-width: 767px){#s-8e33a930-e9ba-47c1-bbe7-a36a1db057a3 {
  margin-top: 10px;
margin-left: 6%;
margin-bottom: 10px;
margin-right: 6%;
}
}
#s-5b6fe49b-0297-4856-b557-651e0b6e339e {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 15px;
min-height: 475px;
background-position: center top;
}
@media (max-width: 767px){#s-5b6fe49b-0297-4856-b557-651e0b6e339e {
  min-height: 475px;
}
}







#s-5b6fe49b-0297-4856-b557-651e0b6e339e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5b6fe49b-0297-4856-b557-651e0b6e339e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f7b3b7dd-2011-410e-a143-c92a15822e6d {
  margin-top: 0px;
min-height: 50px;
background-color: rgba(44, 141, 155, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-f7b3b7dd-2011-410e-a143-c92a15822e6d {
  display: none;
}
#s-f7b3b7dd-2011-410e-a143-c92a15822e6d, #wrap-s-f7b3b7dd-2011-410e-a143-c92a15822e6d { display:none !important; }}@media (max-width: 767px){#s-f7b3b7dd-2011-410e-a143-c92a15822e6d {
  display: none;
}
#s-f7b3b7dd-2011-410e-a143-c92a15822e6d, #wrap-s-f7b3b7dd-2011-410e-a143-c92a15822e6d { display:none !important; }}







#s-f7b3b7dd-2011-410e-a143-c92a15822e6d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f7b3b7dd-2011-410e-a143-c92a15822e6d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-73be1344-770b-4bea-b1aa-c6265d8ed2b3 {
  min-height: 50px;
background-color: rgba(244, 248, 250, 1);
}








#s-73be1344-770b-4bea-b1aa-c6265d8ed2b3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-73be1344-770b-4bea-b1aa-c6265d8ed2b3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6785f9e3-8977-4199-a725-4e71371cc1b5 {
  margin-top: 65px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
max-width: 1000px;
}

.shogun-accordion-wrapper .shogun-accordion {
  margin-bottom: 0;
  border-radius: 4px;
}

.shogun-accordion {
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.shogun-accordion-wrapper .shogun-accordion + .shogun-accordion {
  margin-top: 5px;
}

.shogun-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.shogun-accordion-heading {
  color: #333;
  border-bottom: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  cursor: pointer;
}

.shogun-accordion-title {
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
  text-decoration: none;
  flex: 1;
  user-select: none;
}

.shogun-accordion-body {
  display: none;
  opacity: 0;
  transition: opacity 0.5s linear;
}

.shogun-accordion-body.shogun-accordion-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.shogun-accordion-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1.2em;
}

.shogun-accordion-icon > span {
  transition: 0.3s transform;
  position: absolute;
  right: 0;
  font-size: 1.2em;
}

.shogun-accordion-icon.shogun-icon-chevron > span::after {
  content: "▸";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-chevron
  > span {
  transform: rotate(90deg);
}

.shogun-accordion-icon.shogun-icon-plus > span::after {
  content: "＋";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-plus
  > span {
  transform: rotate(-225deg);
}

#s-b9adfa5c-b3fd-41bc-94f0-6ad5ff4241df {
  margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
padding-left: 3%;
padding-right: 3%;
max-width: 1000px;
}
@media (min-width: 1200px){#s-b9adfa5c-b3fd-41bc-94f0-6ad5ff4241df {
  margin-bottom: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b9adfa5c-b3fd-41bc-94f0-6ad5ff4241df {
  margin-bottom: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-b9adfa5c-b3fd-41bc-94f0-6ad5ff4241df {
  margin-bottom: 25px;
padding-left: 2%;
padding-right: 2%;
}
}@media (max-width: 767px){#s-b9adfa5c-b3fd-41bc-94f0-6ad5ff4241df {
  margin-bottom: 20px;
padding-left: 3%;
padding-right: 3%;
}
}
#s-b9adfa5c-b3fd-41bc-94f0-6ad5ff4241df > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-b9adfa5c-b3fd-41bc-94f0-6ad5ff4241df > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 20px;
}

#s-b9adfa5c-b3fd-41bc-94f0-6ad5ff4241df > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(51, 51, 51, 1);
}

#s-b9adfa5c-b3fd-41bc-94f0-6ad5ff4241df > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-b9adfa5c-b3fd-41bc-94f0-6ad5ff4241df > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(51, 51, 51, 1);
  text-align: left;
  font-family: Poppins;
  font-weight: ;
  font-style: ;
  font-size: ;
}

#s-b9adfa5c-b3fd-41bc-94f0-6ad5ff4241df > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: ;
}
#s-0f69d3f8-5d62-441d-83a0-75db80dc31f4 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 15px;
margin-right: 2%;
}
@media (min-width: 768px) and (max-width: 991px){#s-0f69d3f8-5d62-441d-83a0-75db80dc31f4 {
  margin-left: 3%;
margin-right: 3%;
}
}@media (max-width: 767px){#s-0f69d3f8-5d62-441d-83a0-75db80dc31f4 {
  margin-left: 4%;
margin-right: 4%;
}
}
#s-fcd50040-fcc2-4728-a9ad-aa9ada800190 {
  margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
padding-left: 3%;
padding-right: 3%;
max-width: 1000px;
}
@media (min-width: 1200px){#s-fcd50040-fcc2-4728-a9ad-aa9ada800190 {
  margin-bottom: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-fcd50040-fcc2-4728-a9ad-aa9ada800190 {
  margin-bottom: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-fcd50040-fcc2-4728-a9ad-aa9ada800190 {
  margin-bottom: 25px;
padding-left: 2%;
padding-right: 2%;
}
}@media (max-width: 767px){#s-fcd50040-fcc2-4728-a9ad-aa9ada800190 {
  margin-bottom: 20px;
padding-left: 3%;
padding-right: 3%;
}
}
#s-fcd50040-fcc2-4728-a9ad-aa9ada800190 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-fcd50040-fcc2-4728-a9ad-aa9ada800190 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 20px;
}

#s-fcd50040-fcc2-4728-a9ad-aa9ada800190 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(51, 51, 51, 1);
}

#s-fcd50040-fcc2-4728-a9ad-aa9ada800190 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-fcd50040-fcc2-4728-a9ad-aa9ada800190 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(51, 51, 51, 1);
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: ;
}

#s-fcd50040-fcc2-4728-a9ad-aa9ada800190 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: ;
}
#s-5ade3432-576f-4d73-8d62-38bb49c18201 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 15px;
margin-right: 2%;
}
@media (min-width: 768px) and (max-width: 991px){#s-5ade3432-576f-4d73-8d62-38bb49c18201 {
  margin-left: 3%;
margin-right: 3%;
}
}@media (max-width: 767px){#s-5ade3432-576f-4d73-8d62-38bb49c18201 {
  margin-left: 4%;
margin-right: 4%;
}
}
#s-36854ada-4032-4bc4-b63f-c0490bbd8514 {
  margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
padding-left: 3%;
padding-right: 3%;
max-width: 1000px;
}
@media (min-width: 1200px){#s-36854ada-4032-4bc4-b63f-c0490bbd8514 {
  margin-bottom: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-36854ada-4032-4bc4-b63f-c0490bbd8514 {
  margin-bottom: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-36854ada-4032-4bc4-b63f-c0490bbd8514 {
  margin-bottom: 25px;
padding-left: 2%;
padding-right: 2%;
}
}@media (max-width: 767px){#s-36854ada-4032-4bc4-b63f-c0490bbd8514 {
  margin-bottom: 20px;
padding-left: 3%;
padding-right: 3%;
}
}
#s-36854ada-4032-4bc4-b63f-c0490bbd8514 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-36854ada-4032-4bc4-b63f-c0490bbd8514 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 20px;
}

#s-36854ada-4032-4bc4-b63f-c0490bbd8514 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(51, 51, 51, 1);
}

#s-36854ada-4032-4bc4-b63f-c0490bbd8514 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-36854ada-4032-4bc4-b63f-c0490bbd8514 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(51, 51, 51, 1);
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: ;
}

#s-36854ada-4032-4bc4-b63f-c0490bbd8514 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: ;
}
#s-d3c05f87-3cc5-4773-817e-0ac7211e2ef5 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 15px;
margin-right: 2%;
}
@media (min-width: 768px) and (max-width: 991px){#s-d3c05f87-3cc5-4773-817e-0ac7211e2ef5 {
  margin-left: 3%;
margin-right: 3%;
}
}@media (max-width: 767px){#s-d3c05f87-3cc5-4773-817e-0ac7211e2ef5 {
  margin-left: 4%;
margin-right: 4%;
}
}
#s-a11c5c2c-7ba6-492b-af4a-4e4b0b5ae6b2 {
  margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
padding-left: 3%;
padding-right: 3%;
max-width: 1000px;
}
@media (min-width: 1200px){#s-a11c5c2c-7ba6-492b-af4a-4e4b0b5ae6b2 {
  margin-bottom: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a11c5c2c-7ba6-492b-af4a-4e4b0b5ae6b2 {
  margin-bottom: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-a11c5c2c-7ba6-492b-af4a-4e4b0b5ae6b2 {
  margin-bottom: 25px;
padding-left: 2%;
padding-right: 2%;
}
}@media (max-width: 767px){#s-a11c5c2c-7ba6-492b-af4a-4e4b0b5ae6b2 {
  margin-bottom: 20px;
padding-left: 3%;
padding-right: 3%;
}
}
#s-a11c5c2c-7ba6-492b-af4a-4e4b0b5ae6b2 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-a11c5c2c-7ba6-492b-af4a-4e4b0b5ae6b2 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 20px;
}

#s-a11c5c2c-7ba6-492b-af4a-4e4b0b5ae6b2 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(51, 51, 51, 1);
}

#s-a11c5c2c-7ba6-492b-af4a-4e4b0b5ae6b2 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-a11c5c2c-7ba6-492b-af4a-4e4b0b5ae6b2 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(51, 51, 51, 1);
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: ;
}

#s-a11c5c2c-7ba6-492b-af4a-4e4b0b5ae6b2 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: ;
}
#s-6aadb6a6-0fea-468d-bf8d-addd4eb5b512 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 15px;
margin-right: 2%;
}
@media (min-width: 768px) and (max-width: 991px){#s-6aadb6a6-0fea-468d-bf8d-addd4eb5b512 {
  margin-left: 3%;
margin-right: 3%;
}
}@media (max-width: 767px){#s-6aadb6a6-0fea-468d-bf8d-addd4eb5b512 {
  margin-left: 4%;
margin-right: 4%;
}
}
#s-365fe6cb-8fc2-44b2-bd4f-e670d5086421 {
  margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
padding-left: 3%;
padding-right: 3%;
max-width: 1000px;
}
@media (min-width: 1200px){#s-365fe6cb-8fc2-44b2-bd4f-e670d5086421 {
  margin-bottom: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-365fe6cb-8fc2-44b2-bd4f-e670d5086421 {
  margin-bottom: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-365fe6cb-8fc2-44b2-bd4f-e670d5086421 {
  margin-bottom: 25px;
padding-left: 2%;
padding-right: 2%;
}
}@media (max-width: 767px){#s-365fe6cb-8fc2-44b2-bd4f-e670d5086421 {
  margin-bottom: 20px;
padding-left: 3%;
padding-right: 3%;
}
}
#s-365fe6cb-8fc2-44b2-bd4f-e670d5086421 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-365fe6cb-8fc2-44b2-bd4f-e670d5086421 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 20px;
}

#s-365fe6cb-8fc2-44b2-bd4f-e670d5086421 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(51, 51, 51, 1);
}

#s-365fe6cb-8fc2-44b2-bd4f-e670d5086421 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-365fe6cb-8fc2-44b2-bd4f-e670d5086421 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(51, 51, 51, 1);
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: ;
}

#s-365fe6cb-8fc2-44b2-bd4f-e670d5086421 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: ;
}
#s-21ce8df4-97f9-464c-bf60-2c0e433acc9c {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 15px;
margin-right: 2%;
}
@media (min-width: 768px) and (max-width: 991px){#s-21ce8df4-97f9-464c-bf60-2c0e433acc9c {
  margin-left: 3%;
margin-right: 3%;
}
}@media (max-width: 767px){#s-21ce8df4-97f9-464c-bf60-2c0e433acc9c {
  margin-left: 4%;
margin-right: 4%;
}
}
#s-57359f75-8658-4634-9c19-88f130049445 {
  margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
padding-left: 3%;
padding-right: 3%;
max-width: 1000px;
}
@media (min-width: 1200px){#s-57359f75-8658-4634-9c19-88f130049445 {
  margin-bottom: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-57359f75-8658-4634-9c19-88f130049445 {
  margin-bottom: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-57359f75-8658-4634-9c19-88f130049445 {
  margin-bottom: 25px;
padding-left: 2%;
padding-right: 2%;
}
}@media (max-width: 767px){#s-57359f75-8658-4634-9c19-88f130049445 {
  margin-bottom: 20px;
padding-left: 3%;
padding-right: 3%;
}
}
#s-57359f75-8658-4634-9c19-88f130049445 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-57359f75-8658-4634-9c19-88f130049445 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 20px;
}

#s-57359f75-8658-4634-9c19-88f130049445 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(51, 51, 51, 1);
}

#s-57359f75-8658-4634-9c19-88f130049445 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-57359f75-8658-4634-9c19-88f130049445 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(51, 51, 51, 1);
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: ;
}

#s-57359f75-8658-4634-9c19-88f130049445 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: ;
}
#s-c3aac7cc-7882-4904-908c-273d50dafe77 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 15px;
margin-right: 2%;
}
@media (min-width: 768px) and (max-width: 991px){#s-c3aac7cc-7882-4904-908c-273d50dafe77 {
  margin-left: 3%;
margin-right: 3%;
}
}@media (max-width: 767px){#s-c3aac7cc-7882-4904-908c-273d50dafe77 {
  margin-left: 4%;
margin-right: 4%;
}
}
#s-707f808a-3cc1-4cf5-9da3-bc15d4a2c2ac {
  margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
padding-left: 3%;
padding-right: 3%;
max-width: 1000px;
}
@media (min-width: 1200px){#s-707f808a-3cc1-4cf5-9da3-bc15d4a2c2ac {
  margin-bottom: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-707f808a-3cc1-4cf5-9da3-bc15d4a2c2ac {
  margin-bottom: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-707f808a-3cc1-4cf5-9da3-bc15d4a2c2ac {
  margin-bottom: 25px;
padding-left: 2%;
padding-right: 2%;
}
}@media (max-width: 767px){#s-707f808a-3cc1-4cf5-9da3-bc15d4a2c2ac {
  margin-bottom: 20px;
padding-left: 3%;
padding-right: 3%;
}
}
#s-707f808a-3cc1-4cf5-9da3-bc15d4a2c2ac > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-707f808a-3cc1-4cf5-9da3-bc15d4a2c2ac > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 20px;
}

#s-707f808a-3cc1-4cf5-9da3-bc15d4a2c2ac > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(51, 51, 51, 1);
}

#s-707f808a-3cc1-4cf5-9da3-bc15d4a2c2ac > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-707f808a-3cc1-4cf5-9da3-bc15d4a2c2ac > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(51, 51, 51, 1);
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: ;
}

#s-707f808a-3cc1-4cf5-9da3-bc15d4a2c2ac > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: ;
}
#s-74aeda56-290f-4e14-a893-4ff8bf41b2ac {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 15px;
margin-right: 2%;
}
@media (min-width: 768px) and (max-width: 991px){#s-74aeda56-290f-4e14-a893-4ff8bf41b2ac {
  margin-left: 3%;
margin-right: 3%;
}
}@media (max-width: 767px){#s-74aeda56-290f-4e14-a893-4ff8bf41b2ac {
  margin-left: 4%;
margin-right: 4%;
}
}
#s-78b52f75-677b-4bdc-84c0-1ec7982dc9ac {
  margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
padding-left: 3%;
padding-right: 3%;
max-width: 1000px;
}
@media (min-width: 1200px){#s-78b52f75-677b-4bdc-84c0-1ec7982dc9ac {
  margin-bottom: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-78b52f75-677b-4bdc-84c0-1ec7982dc9ac {
  margin-bottom: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-78b52f75-677b-4bdc-84c0-1ec7982dc9ac {
  margin-bottom: 25px;
padding-left: 2%;
padding-right: 2%;
}
}@media (max-width: 767px){#s-78b52f75-677b-4bdc-84c0-1ec7982dc9ac {
  margin-bottom: 20px;
padding-left: 3%;
padding-right: 3%;
}
}
#s-78b52f75-677b-4bdc-84c0-1ec7982dc9ac > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-78b52f75-677b-4bdc-84c0-1ec7982dc9ac > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 20px;
}

#s-78b52f75-677b-4bdc-84c0-1ec7982dc9ac > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(51, 51, 51, 1);
}

#s-78b52f75-677b-4bdc-84c0-1ec7982dc9ac > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-78b52f75-677b-4bdc-84c0-1ec7982dc9ac > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(51, 51, 51, 1);
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: ;
}

#s-78b52f75-677b-4bdc-84c0-1ec7982dc9ac > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: ;
}
#s-69d5c099-ab16-4c78-9c6f-fc3f737be0d3 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 15px;
margin-right: 2%;
}
@media (min-width: 768px) and (max-width: 991px){#s-69d5c099-ab16-4c78-9c6f-fc3f737be0d3 {
  margin-left: 3%;
margin-right: 3%;
}
}@media (max-width: 767px){#s-69d5c099-ab16-4c78-9c6f-fc3f737be0d3 {
  margin-left: 4%;
margin-right: 4%;
}
}
#s-d7b0a3e4-f978-410f-985a-3a0c887d8b57 {
  margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
padding-left: 3%;
padding-right: 3%;
max-width: 1000px;
}
@media (min-width: 1200px){#s-d7b0a3e4-f978-410f-985a-3a0c887d8b57 {
  margin-bottom: 30px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d7b0a3e4-f978-410f-985a-3a0c887d8b57 {
  margin-bottom: 30px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-d7b0a3e4-f978-410f-985a-3a0c887d8b57 {
  margin-bottom: 25px;
padding-left: 2%;
padding-right: 2%;
}
}@media (max-width: 767px){#s-d7b0a3e4-f978-410f-985a-3a0c887d8b57 {
  margin-bottom: 20px;
padding-left: 3%;
padding-right: 3%;
}
}
#s-d7b0a3e4-f978-410f-985a-3a0c887d8b57 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-d7b0a3e4-f978-410f-985a-3a0c887d8b57 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 20px;
}

#s-d7b0a3e4-f978-410f-985a-3a0c887d8b57 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(51, 51, 51, 1);
}

#s-d7b0a3e4-f978-410f-985a-3a0c887d8b57 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-d7b0a3e4-f978-410f-985a-3a0c887d8b57 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(51, 51, 51, 1);
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: ;
}

#s-d7b0a3e4-f978-410f-985a-3a0c887d8b57 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: ;
}
#s-79f4789e-f385-4b1b-bb82-70e3d8e40800 {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 15px;
margin-right: 2%;
}
@media (min-width: 768px) and (max-width: 991px){#s-79f4789e-f385-4b1b-bb82-70e3d8e40800 {
  margin-left: 3%;
margin-right: 3%;
}
}@media (max-width: 767px){#s-79f4789e-f385-4b1b-bb82-70e3d8e40800 {
  margin-left: 4%;
margin-right: 4%;
}
}
#s-3d90bcc7-d3ff-461f-8041-f950ac6b0fb8 {
  margin-left: auto;
margin-bottom: 65px;
margin-right: auto;
padding-left: 3%;
padding-right: 3%;
max-width: 1000px;
}
@media (min-width: 768px) and (max-width: 991px){#s-3d90bcc7-d3ff-461f-8041-f950ac6b0fb8 {
  padding-left: 2%;
padding-right: 2%;
}
}@media (max-width: 767px){#s-3d90bcc7-d3ff-461f-8041-f950ac6b0fb8 {
  padding-left: 3%;
padding-right: 3%;
}
}
#s-3d90bcc7-d3ff-461f-8041-f950ac6b0fb8 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-3d90bcc7-d3ff-461f-8041-f950ac6b0fb8 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 20px;
}

#s-3d90bcc7-d3ff-461f-8041-f950ac6b0fb8 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(51, 51, 51, 1);
}

#s-3d90bcc7-d3ff-461f-8041-f950ac6b0fb8 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-3d90bcc7-d3ff-461f-8041-f950ac6b0fb8 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(51, 51, 51, 1);
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: ;
}

#s-3d90bcc7-d3ff-461f-8041-f950ac6b0fb8 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: ;
}
#s-9f468bf8-86e6-46e4-bc83-ae9962556e0e {
  margin-top: 15px;
margin-left: 2%;
margin-bottom: 15px;
margin-right: 2%;
}
@media (min-width: 768px) and (max-width: 991px){#s-9f468bf8-86e6-46e4-bc83-ae9962556e0e {
  margin-left: 3%;
margin-right: 3%;
}
}@media (max-width: 767px){#s-9f468bf8-86e6-46e4-bc83-ae9962556e0e {
  margin-left: 4%;
margin-right: 4%;
}
}
#s-d6627fe5-4b41-4e64-ac3b-accf44181f0c {
  margin-top: 60px;
}

#s-007bcce8-6c69-48f4-a5fd-0b21600e259c {
  margin-bottom: 30px;
}

#s-e482e548-82fe-457c-bf6b-dfc76846d51f {
  margin-left: 10%;
margin-bottom: 100px;
margin-right: 10%;
}

@media (min-width: 0px) {
[id="s-e482e548-82fe-457c-bf6b-dfc76846d51f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-e482e548-82fe-457c-bf6b-dfc76846d51f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-e482e548-82fe-457c-bf6b-dfc76846d51f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-e482e548-82fe-457c-bf6b-dfc76846d51f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-05f1bf7f-54aa-4462-8824-52f7118c484a {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
text-align: center;
}







  #s-05f1bf7f-54aa-4462-8824-52f7118c484a img.shogun-image {
    

    
    
    
  }


#s-05f1bf7f-54aa-4462-8824-52f7118c484a .shogun-image-content {
  
    align-items: center;
  
}

#s-7270fb17-8838-4e6a-94a6-30c3dc356eae {
  margin-top: 20px;
}

#s-55f8eb7b-950f-4c78-9bd9-0010ead49af7 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
text-align: center;
}







  #s-55f8eb7b-950f-4c78-9bd9-0010ead49af7 img.shogun-image {
    

    
    
    
  }


#s-55f8eb7b-950f-4c78-9bd9-0010ead49af7 .shogun-image-content {
  
    align-items: center;
  
}

#s-5a88f501-5acd-40b8-9fa5-2997d5978851 {
  margin-top: 20px;
}

#s-be46b858-a1cc-4629-8a80-dae447ecc24c {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
text-align: center;
}







  #s-be46b858-a1cc-4629-8a80-dae447ecc24c img.shogun-image {
    

    
    
    
  }


#s-be46b858-a1cc-4629-8a80-dae447ecc24c .shogun-image-content {
  
    align-items: center;
  
}

#s-a683e185-5efd-4252-bbca-758cf8c9bbfe {
  margin-top: 20px;
}

#s-a06bf233-395c-41f0-98cf-e9941c63610f {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
text-align: center;
}







  #s-a06bf233-395c-41f0-98cf-e9941c63610f img.shogun-image {
    

    
    
    
  }


#s-a06bf233-395c-41f0-98cf-e9941c63610f .shogun-image-content {
  
    align-items: center;
  
}

#s-aa9d17bd-8a00-4f4c-9d68-c7ec3c7093b6 {
  margin-top: 20px;
}

#s-84b064fb-b8d3-444d-849d-d14e5f68ad40 {
  min-height: 50px;
background-color: rgba(44, 141, 155, 1);
}
@media (min-width: 1200px){#s-84b064fb-b8d3-444d-849d-d14e5f68ad40 {
  display: none;
}
#s-84b064fb-b8d3-444d-849d-d14e5f68ad40, #wrap-s-84b064fb-b8d3-444d-849d-d14e5f68ad40 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-84b064fb-b8d3-444d-849d-d14e5f68ad40 {
  display: none;
}
#s-84b064fb-b8d3-444d-849d-d14e5f68ad40, #wrap-s-84b064fb-b8d3-444d-849d-d14e5f68ad40 { display:none !important; }}







#s-84b064fb-b8d3-444d-849d-d14e5f68ad40 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-84b064fb-b8d3-444d-849d-d14e5f68ad40.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bfa8e4c2-27f9-41d1-b160-1e0337db6cf7 {
  margin-top: 60px;
}

#s-5dc2b503-2abd-4c2d-95ef-e612ec3d9d75 {
  margin-left: 6%;
margin-bottom: 30px;
margin-right: 6%;
}

#s-08d5b735-d88e-459e-b2db-ec356bdcda31 {
  margin-left: 10%;
margin-bottom: 100px;
margin-right: 10%;
}

@media (min-width: 0px) {
[id="s-08d5b735-d88e-459e-b2db-ec356bdcda31"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-08d5b735-d88e-459e-b2db-ec356bdcda31"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-08d5b735-d88e-459e-b2db-ec356bdcda31"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-08d5b735-d88e-459e-b2db-ec356bdcda31"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-db9ab4c8-51b6-4405-a4f3-50301f6213d5 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
text-align: center;
}







  #s-db9ab4c8-51b6-4405-a4f3-50301f6213d5 img.shogun-image {
    

    
    
    
  }


#s-db9ab4c8-51b6-4405-a4f3-50301f6213d5 .shogun-image-content {
  
    align-items: center;
  
}

#s-41ee2d6e-eaec-427e-8398-76fcf4704c73 {
  margin-top: 20px;
}

#s-77c2cbb0-fada-448b-822f-975ffeb8d95c {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
text-align: center;
}
@media (max-width: 767px){#s-77c2cbb0-fada-448b-822f-975ffeb8d95c {
  margin-top: 20px;
margin-bottom: 20px;
}
}






  #s-77c2cbb0-fada-448b-822f-975ffeb8d95c img.shogun-image {
    

    
    
    
  }


#s-77c2cbb0-fada-448b-822f-975ffeb8d95c .shogun-image-content {
  
    align-items: center;
  
}

#s-18df23c5-14e7-4830-a4e9-3bdcfa3ed0ed {
  margin-top: 20px;
}

#s-5adc31b8-ddb0-42b5-8116-d23444572334 {
  margin-left: 10%;
margin-bottom: 100px;
margin-right: 10%;
}

@media (min-width: 0px) {
[id="s-5adc31b8-ddb0-42b5-8116-d23444572334"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5adc31b8-ddb0-42b5-8116-d23444572334"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5adc31b8-ddb0-42b5-8116-d23444572334"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5adc31b8-ddb0-42b5-8116-d23444572334"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-c02e78f9-9ef6-40e9-b5c5-2201161ae03d {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
text-align: center;
}
@media (max-width: 767px){#s-c02e78f9-9ef6-40e9-b5c5-2201161ae03d {
  margin-top: -48px;
}
}






  #s-c02e78f9-9ef6-40e9-b5c5-2201161ae03d img.shogun-image {
    

    
    
    
  }


#s-c02e78f9-9ef6-40e9-b5c5-2201161ae03d .shogun-image-content {
  
    align-items: center;
  
}

#s-74177080-a14b-43f2-a180-ca5eff318d91 {
  margin-top: 20px;
}

#s-8db23d3c-dc67-4026-8862-63ba477a84f0 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 10px;
text-align: center;
}
@media (max-width: 767px){#s-8db23d3c-dc67-4026-8862-63ba477a84f0 {
  margin-top: 20px;
}
}






  #s-8db23d3c-dc67-4026-8862-63ba477a84f0 img.shogun-image {
    

    
    
    
  }


#s-8db23d3c-dc67-4026-8862-63ba477a84f0 .shogun-image-content {
  
    align-items: center;
  
}

#s-141b0b32-6cfe-4165-89bd-a662c30fd88b {
  margin-top: 20px;
}

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