.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-36297a99-f0f0-4e03-a9b9-dbd83a34640e > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-36297a99-f0f0-4e03-a9b9-dbd83a34640e > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 10px;
}

#s-36297a99-f0f0-4e03-a9b9-dbd83a34640e > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(35, 31, 32, 1);
}

#s-36297a99-f0f0-4e03-a9b9-dbd83a34640e > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-36297a99-f0f0-4e03-a9b9-dbd83a34640e > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(35, 31, 32, 1);
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-36297a99-f0f0-4e03-a9b9-dbd83a34640e > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
.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-d5a406f9-2d5d-466e-87c3-d9cfeacddbd8 {
  padding-top: 16px;
padding-left: 16px;
padding-bottom: 16px;
padding-right: 16px;
min-height: 50px;
}








#s-d5a406f9-2d5d-466e-87c3-d9cfeacddbd8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d5a406f9-2d5d-466e-87c3-d9cfeacddbd8.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-93458376-c0a3-4701-a000-d853804cd28b .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



.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-5ec96c90-2bce-47cf-b9f6-16dc131ef781 {
  min-height: 50px;
}








#s-5ec96c90-2bce-47cf-b9f6-16dc131ef781 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5ec96c90-2bce-47cf-b9f6-16dc131ef781.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9b442b4d-a0cc-454b-be15-895500b48f06 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-5ee331de-654d-40e2-b56f-be7c490fe11a {
  min-height: 50px;
}








#s-5ee331de-654d-40e2-b56f-be7c490fe11a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5ee331de-654d-40e2-b56f-be7c490fe11a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6baf1bc8-c7ca-4e65-8e5d-2f578fcca193 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-1daef213-262a-4284-b6fd-beca2cd87ca3 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-1daef213-262a-4284-b6fd-beca2cd87ca3 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 10px;
}

#s-1daef213-262a-4284-b6fd-beca2cd87ca3 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(35, 31, 32, 1);
}

#s-1daef213-262a-4284-b6fd-beca2cd87ca3 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-1daef213-262a-4284-b6fd-beca2cd87ca3 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(35, 31, 32, 1);
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-1daef213-262a-4284-b6fd-beca2cd87ca3 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-38632ce6-f397-4620-b50a-6a2c38c14785 {
  padding-top: 16px;
padding-left: 16px;
padding-bottom: 16px;
padding-right: 16px;
}

#s-055ed78a-d17c-4d08-88c7-8f7512b938f7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-055ed78a-d17c-4d08-88c7-8f7512b938f7 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



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

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

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

@media (min-width: 0px) {
[id="s-bde556d7-6e24-4542-8c1c-a60df9c8999a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bde556d7-6e24-4542-8c1c-a60df9c8999a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-bde556d7-6e24-4542-8c1c-a60df9c8999a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-bde556d7-6e24-4542-8c1c-a60df9c8999a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-2b3b22ef-abb8-4d3b-a243-595b00bb6b8a {
  margin-top: 18px;
margin-bottom: 18px;
padding-left: 32px;
padding-right: 32px;
min-height: 50px;
}








#s-2b3b22ef-abb8-4d3b-a243-595b00bb6b8a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2b3b22ef-abb8-4d3b-a243-595b00bb6b8a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ba08f016-3e7e-45b4-a67b-1bd832abbcb5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ba08f016-3e7e-45b4-a67b-1bd832abbcb5 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



.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-1378fe15-cff9-4ab9-9f16-36a2aa4312a5 {
  text-align: center;
}








#s-1378fe15-cff9-4ab9-9f16-36a2aa4312a5 .shogun-image-content {
  
    align-items: center;
  
}

#s-b7f4de28-9c08-40dc-a88b-5b85b78ed2a0 {
  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-d8697870-9e78-4217-ac5e-bc00978f091f {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
background-color: rgba(37, 37, 37, 0);
text-align: center;
cursor: pointer;
}
#s-d8697870-9e78-4217-ac5e-bc00978f091f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d8697870-9e78-4217-ac5e-bc00978f091f:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-d8697870-9e78-4217-ac5e-bc00978f091f {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-d8697870-9e78-4217-ac5e-bc00978f091f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d8697870-9e78-4217-ac5e-bc00978f091f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-d8697870-9e78-4217-ac5e-bc00978f091f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-07c90654-8ff7-494b-9ab4-e2ad44edba6c {
  margin-top: 18px;
margin-bottom: 18px;
padding-left: 32px;
padding-right: 32px;
min-height: 50px;
}








#s-07c90654-8ff7-494b-9ab4-e2ad44edba6c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-07c90654-8ff7-494b-9ab4-e2ad44edba6c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6585ad55-6bfe-4fe8-8d0d-4c102d4cb6ac {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6585ad55-6bfe-4fe8-8d0d-4c102d4cb6ac .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-fc9bb8aa-00e2-48fb-8292-dd757140cce4 {
  text-align: center;
}








#s-fc9bb8aa-00e2-48fb-8292-dd757140cce4 .shogun-image-content {
  
    align-items: center;
  
}

#s-02c864d8-3fc4-4a46-831a-395ccc8e9486 {
  display: none;
}
#s-858bf184-d31d-4277-966e-aaab86696232 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
background-color: rgba(37, 37, 37, 0);
text-align: center;
cursor: pointer;
}
#s-858bf184-d31d-4277-966e-aaab86696232:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-858bf184-d31d-4277-966e-aaab86696232:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-858bf184-d31d-4277-966e-aaab86696232 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-858bf184-d31d-4277-966e-aaab86696232.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-858bf184-d31d-4277-966e-aaab86696232.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-858bf184-d31d-4277-966e-aaab86696232.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-c4301269-6e8c-4cf1-b452-ca8b092bd4ac {
  margin-top: 18px;
margin-bottom: 18px;
padding-left: 32px;
padding-right: 32px;
min-height: 50px;
}








#s-c4301269-6e8c-4cf1-b452-ca8b092bd4ac > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c4301269-6e8c-4cf1-b452-ca8b092bd4ac.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-569ad457-c777-4cb7-8ec6-1b794cd898ea {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-569ad457-c777-4cb7-8ec6-1b794cd898ea .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-bdfccf00-a6e7-4c73-a643-b39de93ffa08 {
  text-align: center;
}








#s-bdfccf00-a6e7-4c73-a643-b39de93ffa08 .shogun-image-content {
  
    align-items: center;
  
}

#s-f47657d5-18bd-4104-9461-0ca77aff104f {
  display: none;
}
#s-cbab2be5-00a6-483b-888b-2d9e793eb037 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
background-color: rgba(37, 37, 37, 0);
text-align: center;
cursor: pointer;
}
#s-cbab2be5-00a6-483b-888b-2d9e793eb037:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-cbab2be5-00a6-483b-888b-2d9e793eb037:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-cbab2be5-00a6-483b-888b-2d9e793eb037 {
  cursor: pointer;
  user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-cbab2be5-00a6-483b-888b-2d9e793eb037.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-cbab2be5-00a6-483b-888b-2d9e793eb037.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-cbab2be5-00a6-483b-888b-2d9e793eb037.shg-btn.shg-product-atc-error {
  
  
  
  
  
}



#s-d06d0344-ede6-4286-a9d2-e8acb463347e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d06d0344-ede6-4286-a9d2-e8acb463347e .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-17cafc84-3a12-4e7b-bb85-8d6efb24b27d {
  min-height: 50px;
background-color: rgba(234, 234, 234, 1);
}
@media (min-width: 1200px){#s-17cafc84-3a12-4e7b-bb85-8d6efb24b27d {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-17cafc84-3a12-4e7b-bb85-8d6efb24b27d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-17cafc84-3a12-4e7b-bb85-8d6efb24b27d {
  
}
}@media (max-width: 767px){#s-17cafc84-3a12-4e7b-bb85-8d6efb24b27d {
  
}
}







#s-17cafc84-3a12-4e7b-bb85-8d6efb24b27d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-17cafc84-3a12-4e7b-bb85-8d6efb24b27d.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-0088e8c5-d5e8-4321-9b50-3092ef301d7b {
  border-style: solid;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(236, 236, 236, 1);
border-radius: 0px;
min-height: 0px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-0088e8c5-d5e8-4321-9b50-3092ef301d7b {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0088e8c5-d5e8-4321-9b50-3092ef301d7b {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-0088e8c5-d5e8-4321-9b50-3092ef301d7b {
  
}
}@media (max-width: 767px){#s-0088e8c5-d5e8-4321-9b50-3092ef301d7b {
  
}
}







#s-0088e8c5-d5e8-4321-9b50-3092ef301d7b > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
}#s-0088e8c5-d5e8-4321-9b50-3092ef301d7b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-269bab0d-aafa-4e84-8ec0-e781b4e45daa {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-269bab0d-aafa-4e84-8ec0-e781b4e45daa"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-269bab0d-aafa-4e84-8ec0-e781b4e45daa"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-269bab0d-aafa-4e84-8ec0-e781b4e45daa"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-269bab0d-aafa-4e84-8ec0-e781b4e45daa"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-269bab0d-aafa-4e84-8ec0-e781b4e45daa"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-269bab0d-aafa-4e84-8ec0-e781b4e45daa"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-269bab0d-aafa-4e84-8ec0-e781b4e45daa"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-269bab0d-aafa-4e84-8ec0-e781b4e45daa"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-c0fc0484-a381-4351-a002-1fcc7fa12217 {
  border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 400px;
}








#s-c0fc0484-a381-4351-a002-1fcc7fa12217 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c0fc0484-a381-4351-a002-1fcc7fa12217.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0dfc4932-a220-4aab-8c58-1aaeaaa39971 {
  margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0dfc4932-a220-4aab-8c58-1aaeaaa39971 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-9208eaf9-c6a7-4300-8da9-4d7e80b29c9e {
  margin-left: 50px;
margin-right: 50px;
}

#s-aff77bf5-72ad-4035-adbe-95dd443a336d {
  text-align: center;
}







  #s-aff77bf5-72ad-4035-adbe-95dd443a336d img.shogun-image {
    

    
    
    
  }


#s-aff77bf5-72ad-4035-adbe-95dd443a336d .shogun-image-content {
  
    align-items: center;
  
}

#s-3f403005-8334-45e7-965b-5578907ba4db {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-3f403005-8334-45e7-965b-5578907ba4db"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3f403005-8334-45e7-965b-5578907ba4db"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3f403005-8334-45e7-965b-5578907ba4db"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-3f403005-8334-45e7-965b-5578907ba4db"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3f403005-8334-45e7-965b-5578907ba4db"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-3f403005-8334-45e7-965b-5578907ba4db"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3f403005-8334-45e7-965b-5578907ba4db"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

#s-29cf67c7-897e-4fcd-99f4-9a0d3ab8cb26 {
  text-align: center;
}







  #s-29cf67c7-897e-4fcd-99f4-9a0d3ab8cb26 img.shogun-image {
    

    
    
    
  }


#s-29cf67c7-897e-4fcd-99f4-9a0d3ab8cb26 .shogun-image-content {
  
    align-items: center;
  
}

#s-a3131d8c-d777-4490-acf3-e0e9e5c33ae7 {
  border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 400px;
}








#s-a3131d8c-d777-4490-acf3-e0e9e5c33ae7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a3131d8c-d777-4490-acf3-e0e9e5c33ae7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c81d9af5-141a-47ea-93f1-32165a0aa3de {
  margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c81d9af5-141a-47ea-93f1-32165a0aa3de .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-b3251042-7dc0-458d-9699-d4b83ea0179b {
  margin-left: 50px;
margin-right: 50px;
}

#s-c30215a1-dab8-4407-8108-c5c3be124b6b {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-c30215a1-dab8-4407-8108-c5c3be124b6b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c30215a1-dab8-4407-8108-c5c3be124b6b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-c30215a1-dab8-4407-8108-c5c3be124b6b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-c30215a1-dab8-4407-8108-c5c3be124b6b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-c30215a1-dab8-4407-8108-c5c3be124b6b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-c30215a1-dab8-4407-8108-c5c3be124b6b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-c30215a1-dab8-4407-8108-c5c3be124b6b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-c30215a1-dab8-4407-8108-c5c3be124b6b"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-d0220b2f-e08e-4cbe-8970-9fbd8bbb020c {
  border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 400px;
}








#s-d0220b2f-e08e-4cbe-8970-9fbd8bbb020c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d0220b2f-e08e-4cbe-8970-9fbd8bbb020c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-05bc71e4-82b9-4b43-a6ce-9fe7322f7e0c {
  margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-05bc71e4-82b9-4b43-a6ce-9fe7322f7e0c .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-3a6b1cb0-8c20-4835-9f33-c4fa9df89678 {
  margin-left: 50px;
margin-right: 50px;
}

#s-6972845d-e47f-4b57-a946-08ea793c674c {
  text-align: center;
}







  #s-6972845d-e47f-4b57-a946-08ea793c674c img.shogun-image {
    

    
    
    
  }


#s-6972845d-e47f-4b57-a946-08ea793c674c .shogun-image-content {
  
    align-items: center;
  
}

#s-f7138e7a-e119-4bfe-a6f5-30df65551eef {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-f7138e7a-e119-4bfe-a6f5-30df65551eef"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f7138e7a-e119-4bfe-a6f5-30df65551eef"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-f7138e7a-e119-4bfe-a6f5-30df65551eef"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f7138e7a-e119-4bfe-a6f5-30df65551eef"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-f7138e7a-e119-4bfe-a6f5-30df65551eef"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f7138e7a-e119-4bfe-a6f5-30df65551eef"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-f7138e7a-e119-4bfe-a6f5-30df65551eef"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

#s-994bff4c-42e3-40a2-b1ee-3ea1e6fcdadd {
  text-align: center;
}







  #s-994bff4c-42e3-40a2-b1ee-3ea1e6fcdadd img.shogun-image {
    

    
    
    
  }


#s-994bff4c-42e3-40a2-b1ee-3ea1e6fcdadd .shogun-image-content {
  
    align-items: center;
  
}

#s-7acdf676-c8fd-40c5-a95c-7a10279d7753 {
  border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 400px;
}








#s-7acdf676-c8fd-40c5-a95c-7a10279d7753 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7acdf676-c8fd-40c5-a95c-7a10279d7753.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-95288b25-7314-4e34-87b7-efdd17d40223 {
  margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-95288b25-7314-4e34-87b7-efdd17d40223 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-ec157f6c-eb17-42c3-a17b-4212f5d48a83 {
  margin-left: 50px;
margin-right: 50px;
}

#s-420c7a3b-f652-4f5b-be0e-d630d582e977 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-420c7a3b-f652-4f5b-be0e-d630d582e977"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-420c7a3b-f652-4f5b-be0e-d630d582e977"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-420c7a3b-f652-4f5b-be0e-d630d582e977"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-420c7a3b-f652-4f5b-be0e-d630d582e977"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-420c7a3b-f652-4f5b-be0e-d630d582e977"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-420c7a3b-f652-4f5b-be0e-d630d582e977"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-420c7a3b-f652-4f5b-be0e-d630d582e977"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-420c7a3b-f652-4f5b-be0e-d630d582e977"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-d6d348e6-7e38-47e6-9aed-39e98732fccd {
  border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 400px;
}








#s-d6d348e6-7e38-47e6-9aed-39e98732fccd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d6d348e6-7e38-47e6-9aed-39e98732fccd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2c5f2ae9-33ed-4941-91fc-1280e0224dda {
  margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2c5f2ae9-33ed-4941-91fc-1280e0224dda .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-31141a4a-9390-43d8-8b06-5831df0c2fea {
  margin-left: 50px;
margin-right: 50px;
}

#s-f335c655-c8c3-4254-a571-8809e1c1e329 {
  text-align: center;
}







  #s-f335c655-c8c3-4254-a571-8809e1c1e329 img.shogun-image {
    

    
    
    
  }


#s-f335c655-c8c3-4254-a571-8809e1c1e329 .shogun-image-content {
  
    align-items: center;
  
}

#s-f8aeb860-c21f-419b-9090-f98ffe642d9e {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-f8aeb860-c21f-419b-9090-f98ffe642d9e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f8aeb860-c21f-419b-9090-f98ffe642d9e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-f8aeb860-c21f-419b-9090-f98ffe642d9e"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f8aeb860-c21f-419b-9090-f98ffe642d9e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-f8aeb860-c21f-419b-9090-f98ffe642d9e"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f8aeb860-c21f-419b-9090-f98ffe642d9e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-f8aeb860-c21f-419b-9090-f98ffe642d9e"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

#s-951cce8b-19c2-4989-91a8-cc77e9197f4b {
  text-align: center;
}







  #s-951cce8b-19c2-4989-91a8-cc77e9197f4b img.shogun-image {
    

    
    
    
  }


#s-951cce8b-19c2-4989-91a8-cc77e9197f4b .shogun-image-content {
  
    align-items: center;
  
}

#s-423b8933-1591-4ca8-8194-d12dd3d66338 {
  border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 400px;
}








#s-423b8933-1591-4ca8-8194-d12dd3d66338 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-423b8933-1591-4ca8-8194-d12dd3d66338.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1b591ba1-173e-425a-8038-b01d4ead6e43 {
  margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1b591ba1-173e-425a-8038-b01d4ead6e43 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-d5ac3e05-12c1-47e7-abaa-d4b091e4233b {
  margin-left: 50px;
margin-right: 50px;
}

#s-dd75cf23-226f-4e4f-a8f5-a729f6e7d30f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-dd75cf23-226f-4e4f-a8f5-a729f6e7d30f .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-e4187bd2-98c6-46a8-b4b8-3c369c3343d8 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-e4187bd2-98c6-46a8-b4b8-3c369c3343d8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e4187bd2-98c6-46a8-b4b8-3c369c3343d8"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-e4187bd2-98c6-46a8-b4b8-3c369c3343d8"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-e4187bd2-98c6-46a8-b4b8-3c369c3343d8"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-e4187bd2-98c6-46a8-b4b8-3c369c3343d8"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-e4187bd2-98c6-46a8-b4b8-3c369c3343d8"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-e4187bd2-98c6-46a8-b4b8-3c369c3343d8"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

#s-6796752d-3dbf-46da-a59d-4106db22357e {
  text-align: center;
}







  #s-6796752d-3dbf-46da-a59d-4106db22357e img.shogun-image {
    

    
    
    
  }


#s-6796752d-3dbf-46da-a59d-4106db22357e .shogun-image-content {
  
    align-items: center;
  
}

#s-4025db3f-c85c-40ce-a165-cb700d5758de {
  border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 400px;
}








#s-4025db3f-c85c-40ce-a165-cb700d5758de > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4025db3f-c85c-40ce-a165-cb700d5758de.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-59934faf-2ea2-41c4-90bd-94508c4f60f7 {
  margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-59934faf-2ea2-41c4-90bd-94508c4f60f7 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-8f3f5a50-fc52-4025-b02d-c2839efc2b50 {
  margin-left: 50px;
margin-right: 50px;
}

#s-03fb95a8-bd93-40db-a540-49631ef9e962 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-03fb95a8-bd93-40db-a540-49631ef9e962"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-03fb95a8-bd93-40db-a540-49631ef9e962"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-03fb95a8-bd93-40db-a540-49631ef9e962"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-03fb95a8-bd93-40db-a540-49631ef9e962"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-03fb95a8-bd93-40db-a540-49631ef9e962"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-03fb95a8-bd93-40db-a540-49631ef9e962"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-03fb95a8-bd93-40db-a540-49631ef9e962"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-03fb95a8-bd93-40db-a540-49631ef9e962"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-5eadb536-3207-47fa-897e-4de756517f0b {
  border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 400px;
}








#s-5eadb536-3207-47fa-897e-4de756517f0b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5eadb536-3207-47fa-897e-4de756517f0b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-42c2bbca-e00b-46ad-aa8f-61221f525e42 {
  margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-42c2bbca-e00b-46ad-aa8f-61221f525e42 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-99f1557b-f29a-46e7-828a-b76689b245c0 {
  margin-left: 50px;
margin-right: 50px;
}

#s-8c8d0712-1c87-490e-903c-54ed9e2bff4a {
  text-align: center;
}







  #s-8c8d0712-1c87-490e-903c-54ed9e2bff4a img.shogun-image {
    

    
    
    
  }


#s-8c8d0712-1c87-490e-903c-54ed9e2bff4a .shogun-image-content {
  
    align-items: center;
  
}

#s-90831345-3877-48a8-ad2b-45144941d044 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-90831345-3877-48a8-ad2b-45144941d044"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-90831345-3877-48a8-ad2b-45144941d044"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-90831345-3877-48a8-ad2b-45144941d044"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-90831345-3877-48a8-ad2b-45144941d044"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-90831345-3877-48a8-ad2b-45144941d044"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-90831345-3877-48a8-ad2b-45144941d044"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-90831345-3877-48a8-ad2b-45144941d044"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

#s-cb33e9c3-324c-48c3-aa07-5653b16f4bce {
  text-align: center;
}







  #s-cb33e9c3-324c-48c3-aa07-5653b16f4bce img.shogun-image {
    

    
    
    
  }


#s-cb33e9c3-324c-48c3-aa07-5653b16f4bce .shogun-image-content {
  
    align-items: center;
  
}

#s-3aa99f45-9463-49d2-849f-827fe0654978 {
  border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 400px;
}








#s-3aa99f45-9463-49d2-849f-827fe0654978 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3aa99f45-9463-49d2-849f-827fe0654978.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-76369220-c81b-4050-8733-a3306a0deda3 {
  margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-76369220-c81b-4050-8733-a3306a0deda3 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-9056a0e7-bce0-4349-81e6-3b734b0e3c9f {
  margin-left: 50px;
margin-right: 50px;
}

#s-e5c1880c-1e0c-45ea-8500-f644c81caea2 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-e5c1880c-1e0c-45ea-8500-f644c81caea2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e5c1880c-1e0c-45ea-8500-f644c81caea2"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-e5c1880c-1e0c-45ea-8500-f644c81caea2"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-e5c1880c-1e0c-45ea-8500-f644c81caea2"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-e5c1880c-1e0c-45ea-8500-f644c81caea2"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-e5c1880c-1e0c-45ea-8500-f644c81caea2"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-e5c1880c-1e0c-45ea-8500-f644c81caea2"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-e5c1880c-1e0c-45ea-8500-f644c81caea2"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-1e4f8a1a-198f-4fa5-8eca-37133c0ecab5 {
  border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 400px;
}








#s-1e4f8a1a-198f-4fa5-8eca-37133c0ecab5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1e4f8a1a-198f-4fa5-8eca-37133c0ecab5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ebb4b2b6-de4b-4637-aa37-c2cdf9b06436 {
  margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ebb4b2b6-de4b-4637-aa37-c2cdf9b06436 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-0c7b7807-53c2-44c0-a10a-818b8438d9e6 {
  margin-left: 50px;
margin-right: 50px;
}

#s-fc6918dd-5de5-470f-ac3b-6cf343759932 {
  text-align: center;
}







  #s-fc6918dd-5de5-470f-ac3b-6cf343759932 img.shogun-image {
    

    
    
    
  }


#s-fc6918dd-5de5-470f-ac3b-6cf343759932 .shogun-image-content {
  
    align-items: center;
  
}

#s-c3cc1d1d-45f0-4b5c-ba35-ba91424413da {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-c3cc1d1d-45f0-4b5c-ba35-ba91424413da"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c3cc1d1d-45f0-4b5c-ba35-ba91424413da"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-c3cc1d1d-45f0-4b5c-ba35-ba91424413da"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-c3cc1d1d-45f0-4b5c-ba35-ba91424413da"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-c3cc1d1d-45f0-4b5c-ba35-ba91424413da"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-c3cc1d1d-45f0-4b5c-ba35-ba91424413da"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-c3cc1d1d-45f0-4b5c-ba35-ba91424413da"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

#s-7a283f32-c877-4f99-8c6a-3037feceb5ac {
  text-align: center;
}







  #s-7a283f32-c877-4f99-8c6a-3037feceb5ac img.shogun-image {
    

    
    
    
  }


#s-7a283f32-c877-4f99-8c6a-3037feceb5ac .shogun-image-content {
  
    align-items: center;
  
}

#s-ef6d5248-1858-4c8c-8cd6-8a6c06381a07 {
  border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 400px;
}








#s-ef6d5248-1858-4c8c-8cd6-8a6c06381a07 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ef6d5248-1858-4c8c-8cd6-8a6c06381a07.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e3fc4f6a-9c97-4fcf-bfd5-37995d1ce620 {
  margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e3fc4f6a-9c97-4fcf-bfd5-37995d1ce620 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-282777f7-80d3-4eb1-99be-58ae8cccb1b2 {
  margin-left: 50px;
margin-right: 50px;
}

#s-658c6dba-a137-42ab-9381-b9428285a034 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-658c6dba-a137-42ab-9381-b9428285a034"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-658c6dba-a137-42ab-9381-b9428285a034"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-658c6dba-a137-42ab-9381-b9428285a034"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-658c6dba-a137-42ab-9381-b9428285a034"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-658c6dba-a137-42ab-9381-b9428285a034"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-658c6dba-a137-42ab-9381-b9428285a034"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-658c6dba-a137-42ab-9381-b9428285a034"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-658c6dba-a137-42ab-9381-b9428285a034"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-974a17ca-187f-4ad7-be02-35669e3fb061 {
  border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 400px;
}








#s-974a17ca-187f-4ad7-be02-35669e3fb061 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-974a17ca-187f-4ad7-be02-35669e3fb061.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1cea8ba7-0820-49b2-ba17-4257dc71a067 {
  margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1cea8ba7-0820-49b2-ba17-4257dc71a067 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-e7de2a60-9795-462b-8b0c-99ba046626f0 {
  margin-left: 50px;
margin-right: 50px;
}

#s-287b33e8-5d99-4314-98b7-04a82c8d9edf {
  text-align: center;
}







  #s-287b33e8-5d99-4314-98b7-04a82c8d9edf img.shogun-image {
    

    
    
    
  }


#s-287b33e8-5d99-4314-98b7-04a82c8d9edf .shogun-image-content {
  
    align-items: center;
  
}

#s-50f76db6-52f2-4dff-86d8-07b8d7778462 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-50f76db6-52f2-4dff-86d8-07b8d7778462"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-50f76db6-52f2-4dff-86d8-07b8d7778462"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-50f76db6-52f2-4dff-86d8-07b8d7778462"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-50f76db6-52f2-4dff-86d8-07b8d7778462"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-50f76db6-52f2-4dff-86d8-07b8d7778462"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-50f76db6-52f2-4dff-86d8-07b8d7778462"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-50f76db6-52f2-4dff-86d8-07b8d7778462"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

#s-4ce3b3c7-2336-41cc-82ca-ca48236ccee3 {
  text-align: center;
}







  #s-4ce3b3c7-2336-41cc-82ca-ca48236ccee3 img.shogun-image {
    

    
    
    
  }


#s-4ce3b3c7-2336-41cc-82ca-ca48236ccee3 .shogun-image-content {
  
    align-items: center;
  
}

#s-056c3f05-3a70-4872-8362-75d88238d084 {
  border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 400px;
}








#s-056c3f05-3a70-4872-8362-75d88238d084 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-056c3f05-3a70-4872-8362-75d88238d084.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7633346c-3215-4ca8-9941-32a0abf9f580 {
  margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7633346c-3215-4ca8-9941-32a0abf9f580 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  line-height: 0.5em;
  
  
}



#s-92e50783-6d3f-400e-a881-dc5d17e19a03 {
  margin-left: 50px;
margin-right: 50px;
}

#s-b84c58f4-abf1-48ec-973e-9a4d042f1246 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-b84c58f4-abf1-48ec-973e-9a4d042f1246"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b84c58f4-abf1-48ec-973e-9a4d042f1246"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-b84c58f4-abf1-48ec-973e-9a4d042f1246"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-b84c58f4-abf1-48ec-973e-9a4d042f1246"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-b84c58f4-abf1-48ec-973e-9a4d042f1246"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-b84c58f4-abf1-48ec-973e-9a4d042f1246"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-b84c58f4-abf1-48ec-973e-9a4d042f1246"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-b84c58f4-abf1-48ec-973e-9a4d042f1246"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-c0a3f4d9-10a2-439a-81fc-a29f3ca83e39 {
  border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 400px;
}








#s-c0a3f4d9-10a2-439a-81fc-a29f3ca83e39 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c0a3f4d9-10a2-439a-81fc-a29f3ca83e39.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-00aa9013-835f-4750-a208-60fb6c9b136e {
  margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-00aa9013-835f-4750-a208-60fb6c9b136e .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-7ce67f15-93f0-4b78-9e53-f5a171074925 {
  margin-left: 50px;
margin-right: 50px;
}

#s-6fc44b4f-a0fa-4c86-8121-05a0fc5214e8 {
  text-align: center;
}







  #s-6fc44b4f-a0fa-4c86-8121-05a0fc5214e8 img.shogun-image {
    

    
    
    
  }


#s-6fc44b4f-a0fa-4c86-8121-05a0fc5214e8 .shogun-image-content {
  
    align-items: center;
  
}

#s-73d0a6fe-2257-4ecb-914e-8519ca4dc7e6 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-73d0a6fe-2257-4ecb-914e-8519ca4dc7e6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-73d0a6fe-2257-4ecb-914e-8519ca4dc7e6"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-73d0a6fe-2257-4ecb-914e-8519ca4dc7e6"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-73d0a6fe-2257-4ecb-914e-8519ca4dc7e6"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-73d0a6fe-2257-4ecb-914e-8519ca4dc7e6"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-73d0a6fe-2257-4ecb-914e-8519ca4dc7e6"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-73d0a6fe-2257-4ecb-914e-8519ca4dc7e6"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

#s-b10d4214-d6c4-4f06-81b8-c3b0508ec9a0 {
  text-align: center;
}







  #s-b10d4214-d6c4-4f06-81b8-c3b0508ec9a0 img.shogun-image {
    

    
    
    
  }


#s-b10d4214-d6c4-4f06-81b8-c3b0508ec9a0 .shogun-image-content {
  
    align-items: center;
  
}

#s-32438b01-1720-49fd-aeb6-82bea811a705 {
  border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 400px;
}








#s-32438b01-1720-49fd-aeb6-82bea811a705 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-32438b01-1720-49fd-aeb6-82bea811a705.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4b1d5257-34f2-4d39-91d4-ef9211a4c926 {
  margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4b1d5257-34f2-4d39-91d4-ef9211a4c926 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-0b803859-4576-48cd-aecd-014b2155157b {
  margin-left: 50px;
margin-right: 50px;
}

#s-59b826af-ab40-4e39-be2b-ea7e49dde762 {
  min-height: 50px;
}








#s-59b826af-ab40-4e39-be2b-ea7e49dde762 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-59b826af-ab40-4e39-be2b-ea7e49dde762.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e18346fa-8317-496b-836c-4af700c654af {
  min-height: 50px;
}








#s-e18346fa-8317-496b-836c-4af700c654af > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e18346fa-8317-496b-836c-4af700c654af.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a30b76bd-7e6f-46f3-9efe-af659839b598 {
  min-height: 50px;
}








#s-a30b76bd-7e6f-46f3-9efe-af659839b598 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a30b76bd-7e6f-46f3-9efe-af659839b598.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-987e06f1-2660-4da2-8e52-738e62176349 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-987e06f1-2660-4da2-8e52-738e62176349 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



#s-37a225b8-6c96-4b78-a370-2a69db95a6ac {
  background-color: rgba(242, 242, 242, 1);
}

@media (min-width: 0px) {
[id="s-37a225b8-6c96-4b78-a370-2a69db95a6ac"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-37a225b8-6c96-4b78-a370-2a69db95a6ac"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-37a225b8-6c96-4b78-a370-2a69db95a6ac"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-37a225b8-6c96-4b78-a370-2a69db95a6ac"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

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