.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 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 ::-moz-selection, .shg-default-text-content *::-moz-selection {
  background: #accef7;
}
.shg-default-text-content ::selection,
.shg-default-text-content *::selection {
  background: #accef7;
}

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

.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 {
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  margin-bottom: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  margin-top: 0;
  -webkit-padding-start: 40px;
          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-box {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  /**
   * 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: flex;
  width: 100%;
}

.shg-box-vertical-align-top {
  justify-content: flex-start;
}

.shg-box-vertical-align-center, .shg-box-vertical-center {
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  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 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: -1;
}

#s-f378b75c-1145-47fc-a582-c89c2659ce06 {
  margin-top: 2%;
margin-bottom: 2%;
padding-top: 2%;
padding-left: 3%;
padding-bottom: 2%;
padding-right: 3%;
min-height: 50px;
background-color: rgba(141, 198, 63, 1);
}








#s-f378b75c-1145-47fc-a582-c89c2659ce06 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 0);
  opacity: 0;
}#s-f378b75c-1145-47fc-a582-c89c2659ce06 {
  cursor: pointer;
}#s-f378b75c-1145-47fc-a582-c89c2659ce06.shg-box.shg-c {
  justify-content: center;
}

.shogun-tabs {
  margin: 0 !important;
  list-style: none !important;
  padding: 0 0 0 0;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
}

.shogun-tabs.shogun-modern {
  padding-left: 10px;
  padding-right: 5px;
  overflow: hidden;
  transform: translate(0px, 0px);
}

.shogun-tabs li {
  text-decoration: none;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}

.shogun-tabs.shogun-modern li {
  width: 200px;
  height: 45px;
  margin: 0 5px 0 0;
}

.shogun-tabs.shogun-rounded li {
  margin-bottom: 0;
  float: left;
  box-sizing: border-box;
  margin-right: 2px;
  line-height: 1.42857143;
  position: relative;
  display: block;
  overflow: visible;
}

.shogun-tabs.shogun-rounded li .shogun-tab-box {
  padding: 10px 15px !important;
  border-radius: 4px 4px 0 0;
}

.shogun-tabs.shogun-modern li .shogun-tab-box {
  padding: 12px 5px !important;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .shogun-tabs.shogun-rounded li .shogun-tab-box {
    padding: 10px 5px !important;
    text-align: center;
  }

  .shogun-tabs.shogun-modern li .shogun-tab-box {
    padding: 12px 15px !important;
  }
}

.shogun-tabs.shogun-rounded .shogun-tab-box {
  border-bottom: none !important;
}

.shogun-tabs.shogun-modern li.active {
  z-index: 40;
}

.shogun-tabs.shogun-modern li .shogun-tab-box::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: -1;
  outline: 1px solid transparent;
  border-radius: 4px 4px 0 0;
  content: "";
  transform: perspective(100px) rotateX(30deg);
  -webkit-transform: perspective(100px) rotateX(30deg);
}

.shogun-tabs.shogun-modern li.shogun-tab-active .shogun-tab-box::after {
  border-bottom: none !important;
  height: 46px;
}

.shogun-tabs-body {
  padding-top: 10px;
}

.shogun-tabs-body.shogun-rounded {
  margin-top: 0px !important;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.shogun-tabs-body>.shogun-tab-content {
  display: none;
}

.shogun-tabs-body>.shogun-tab-content.shogun-tab-active {
  -webkit-animation: fadeIn 0.5s;
  animation: fadeIn 0.5s;
  display: block;
}

.shogun-tab-border {
  position: absolute;
}

.shogun-tab-title {
  white-space: nowrap;
  text-align: center;

  display: inline-block;
  width: 100%;
}

.shogun-tabs.shogun-modern .shogun-tab-title {
  /** Hack for Safari weird bug */
  /* https://stackoverflow.com/questions/18146511/bug-in-css3-rotatey-transition-on-safari */
  transform: translateZ(1000px);
}

#s-05f9223e-2827-4af7-b3ae-8f8b68424ec6 {
  margin-left: 25px;
margin-right: 25px;
}

#s-05f9223e-2827-4af7-b3ae-8f8b68424ec6 .shogun-tabs {
  justify-content: flex-start;
}


  #s-05f9223e-2827-4af7-b3ae-8f8b68424ec6 .shogun-tabs > li > .shogun-tab-box {
    background: #fff;
    border: 1px solid #DDDDDD;
  }
  #s-05f9223e-2827-4af7-b3ae-8f8b68424ec6 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: #F4F4F4;
    border: 1px solid #ddd;
  }
#s-05f9223e-2827-4af7-b3ae-8f8b68424ec6 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(141, 198, 63, 1);
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-05f9223e-2827-4af7-b3ae-8f8b68424ec6 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: #555;
}

#s-05f9223e-2827-4af7-b3ae-8f8b68424ec6 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: #F4F4F4;
}

#s-05f9223e-2827-4af7-b3ae-8f8b68424ec6 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid #ddd;
}

.shg-row {
  display: flex;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
justify-content: space-between;
}

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

.shg-c-xs-1,
.shg-c-xs-2,
.shg-c-xs-3,
.shg-c-xs-4,
.shg-c-xs-5,
.shg-c-xs-6,
.shg-c-xs-7,
.shg-c-xs-8,
.shg-c-xs-9,
.shg-c-xs-10,
.shg-c-xs-11,
.shg-c-xs-12,
.shg-c-sm-1,
.shg-c-sm-2,
.shg-c-sm-3,
.shg-c-sm-4,
.shg-c-sm-5,
.shg-c-sm-6,
.shg-c-sm-7,
.shg-c-sm-8,
.shg-c-sm-9,
.shg-c-sm-10,
.shg-c-sm-11,
.shg-c-sm-12,
.shg-c-md-1,
.shg-c-md-2,
.shg-c-md-3,
.shg-c-md-4,
.shg-c-md-5,
.shg-c-md-6,
.shg-c-md-7,
.shg-c-md-8,
.shg-c-md-9,
.shg-c-md-10,
.shg-c-md-11,
.shg-c-md-12,
.shg-c-lg-1,
.shg-c-lg-2,
.shg-c-lg-3,
.shg-c-lg-4,
.shg-c-lg-5,
.shg-c-lg-6,
.shg-c-lg-7,
.shg-c-lg-8,
.shg-c-lg-9,
.shg-c-lg-10,
.shg-c-lg-11,
.shg-c-lg-12 {
  position: relative;
}

#s-1b81cf62-46b4-4796-9ecb-73884c3adf38 {
  margin-top: 0%;
margin-bottom: 0%;
}

@media (min-width: 0px) {
[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 8.0px);
}

}

@media (min-width: 992px) {
[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 8.0px);
}

}

@media (min-width: 1200px) {
[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 8.0px);
}

[id="s-1b81cf62-46b4-4796-9ecb-73884c3adf38"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 8.0px);
}

}

#s-6ea596c3-8b6b-462e-a984-87e70bf1c8ca {
  border-style: solid;
margin-top: 2%;
margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
padding-top: 10%;
padding-left: 2%;
padding-bottom: 10%;
padding-right: 2%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0.35);
max-width: 400px;
text-align: center;
}

#s-6ea596c3-8b6b-462e-a984-87e70bf1c8ca {
  display: none;
}
.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

.shg-product-image-wrapper img.shogun-image {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

#s-58dcada8-faf9-4b6c-b1f8-d115dc9f8a6b {
  text-align: center;
}


.shg-c#s-58dcada8-faf9-4b6c-b1f8-d115dc9f8a6b {
  max-width: 100%;
}

.shg-c#s-58dcada8-faf9-4b6c-b1f8-d115dc9f8a6b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-58dcada8-faf9-4b6c-b1f8-d115dc9f8a6b .shg-image-zoom,
.shg-c#s-58dcada8-faf9-4b6c-b1f8-d115dc9f8a6b img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-58dcada8-faf9-4b6c-b1f8-d115dc9f8a6b .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-58dcada8-faf9-4b6c-b1f8-d115dc9f8a6b {
  max-width: 100%;
}

.shg-c#s-58dcada8-faf9-4b6c-b1f8-d115dc9f8a6b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-58dcada8-faf9-4b6c-b1f8-d115dc9f8a6b .shg-image-zoom,
.shg-c#s-58dcada8-faf9-4b6c-b1f8-d115dc9f8a6b img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-58dcada8-faf9-4b6c-b1f8-d115dc9f8a6b .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-58dcada8-faf9-4b6c-b1f8-d115dc9f8a6b {
  max-width: 100%;
}

.shg-c#s-58dcada8-faf9-4b6c-b1f8-d115dc9f8a6b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-58dcada8-faf9-4b6c-b1f8-d115dc9f8a6b .shg-image-zoom,
.shg-c#s-58dcada8-faf9-4b6c-b1f8-d115dc9f8a6b img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-58dcada8-faf9-4b6c-b1f8-d115dc9f8a6b .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-58dcada8-faf9-4b6c-b1f8-d115dc9f8a6b {
  max-width: 100%;
}

.shg-c#s-58dcada8-faf9-4b6c-b1f8-d115dc9f8a6b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-58dcada8-faf9-4b6c-b1f8-d115dc9f8a6b .shg-image-zoom,
.shg-c#s-58dcada8-faf9-4b6c-b1f8-d115dc9f8a6b img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-58dcada8-faf9-4b6c-b1f8-d115dc9f8a6b .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-58dcada8-faf9-4b6c-b1f8-d115dc9f8a6b {
  max-width: 100%;
}

.shg-c#s-58dcada8-faf9-4b6c-b1f8-d115dc9f8a6b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-58dcada8-faf9-4b6c-b1f8-d115dc9f8a6b .shg-image-zoom,
.shg-c#s-58dcada8-faf9-4b6c-b1f8-d115dc9f8a6b img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-58dcada8-faf9-4b6c-b1f8-d115dc9f8a6b .shg-image-zoom {
  
    margin: 0 auto;
  
}

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

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

#s-94a87feb-315b-471a-bcd1-144492b7900a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-94a87feb-315b-471a-bcd1-144492b7900a .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
}

#s-65c5553b-5556-4078-80ac-3a3266b820a6 {
  text-align: center;
}

#s-65c5553b-5556-4078-80ac-3a3266b820a6 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
}

#s-65c5553b-5556-4078-80ac-3a3266b820a6 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
}

#s-65c5553b-5556-4078-80ac-3a3266b820a6 .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
.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-12dadf5d-b5bf-4c0e-8647-71bbfce8eb13 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: rgba(37, 37, 37, 0.44);
}
#s-12dadf5d-b5bf-4c0e-8647-71bbfce8eb13:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-12dadf5d-b5bf-4c0e-8647-71bbfce8eb13:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-12dadf5d-b5bf-4c0e-8647-71bbfce8eb13 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-12dadf5d-b5bf-4c0e-8647-71bbfce8eb13.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-12dadf5d-b5bf-4c0e-8647-71bbfce8eb13.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-12dadf5d-b5bf-4c0e-8647-71bbfce8eb13.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-12dadf5d-b5bf-4c0e-8647-71bbfce8eb13.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-955c46ba-dfc8-4749-9cb1-28bf0039defb {
  border-style: solid;
margin-top: 2%;
margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
padding-top: 10%;
padding-left: 2%;
padding-bottom: 10%;
padding-right: 2%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0.35);
max-width: 400px;
text-align: center;
}

#s-955c46ba-dfc8-4749-9cb1-28bf0039defb {
  display: none;
}
#s-9a8a2edb-a12f-41d3-882e-a3c738306012 {
  text-align: center;
}


.shg-c#s-9a8a2edb-a12f-41d3-882e-a3c738306012 {
  max-width: 100%;
}

.shg-c#s-9a8a2edb-a12f-41d3-882e-a3c738306012 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9a8a2edb-a12f-41d3-882e-a3c738306012 .shg-image-zoom,
.shg-c#s-9a8a2edb-a12f-41d3-882e-a3c738306012 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-9a8a2edb-a12f-41d3-882e-a3c738306012 .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-9a8a2edb-a12f-41d3-882e-a3c738306012 {
  max-width: 100%;
}

.shg-c#s-9a8a2edb-a12f-41d3-882e-a3c738306012 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9a8a2edb-a12f-41d3-882e-a3c738306012 .shg-image-zoom,
.shg-c#s-9a8a2edb-a12f-41d3-882e-a3c738306012 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-9a8a2edb-a12f-41d3-882e-a3c738306012 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-9a8a2edb-a12f-41d3-882e-a3c738306012 {
  max-width: 100%;
}

.shg-c#s-9a8a2edb-a12f-41d3-882e-a3c738306012 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9a8a2edb-a12f-41d3-882e-a3c738306012 .shg-image-zoom,
.shg-c#s-9a8a2edb-a12f-41d3-882e-a3c738306012 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-9a8a2edb-a12f-41d3-882e-a3c738306012 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-9a8a2edb-a12f-41d3-882e-a3c738306012 {
  max-width: 100%;
}

.shg-c#s-9a8a2edb-a12f-41d3-882e-a3c738306012 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9a8a2edb-a12f-41d3-882e-a3c738306012 .shg-image-zoom,
.shg-c#s-9a8a2edb-a12f-41d3-882e-a3c738306012 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-9a8a2edb-a12f-41d3-882e-a3c738306012 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-9a8a2edb-a12f-41d3-882e-a3c738306012 {
  max-width: 100%;
}

.shg-c#s-9a8a2edb-a12f-41d3-882e-a3c738306012 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9a8a2edb-a12f-41d3-882e-a3c738306012 .shg-image-zoom,
.shg-c#s-9a8a2edb-a12f-41d3-882e-a3c738306012 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-9a8a2edb-a12f-41d3-882e-a3c738306012 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}
#s-0bb0601d-6093-4044-8023-e80f8cd8be88 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0bb0601d-6093-4044-8023-e80f8cd8be88 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
}

#s-12e28f8b-f2d5-4825-9fd2-0cdf4b4af43b {
  text-align: center;
}

#s-12e28f8b-f2d5-4825-9fd2-0cdf4b4af43b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
}

#s-12e28f8b-f2d5-4825-9fd2-0cdf4b4af43b .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
}

#s-12e28f8b-f2d5-4825-9fd2-0cdf4b4af43b .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
#s-3f19cd90-5294-4ed0-a8f6-35fc8a6855e8 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: rgba(37, 37, 37, 0.44);
}
#s-3f19cd90-5294-4ed0-a8f6-35fc8a6855e8:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-3f19cd90-5294-4ed0-a8f6-35fc8a6855e8:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-3f19cd90-5294-4ed0-a8f6-35fc8a6855e8 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-3f19cd90-5294-4ed0-a8f6-35fc8a6855e8.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3f19cd90-5294-4ed0-a8f6-35fc8a6855e8.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-3f19cd90-5294-4ed0-a8f6-35fc8a6855e8.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-3f19cd90-5294-4ed0-a8f6-35fc8a6855e8.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-4a6d261a-dfba-4ce7-ba3e-00c028db5d45 {
  border-style: solid;
margin-top: 2%;
margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
padding-top: 10%;
padding-left: 2%;
padding-bottom: 10%;
padding-right: 2%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0.35);
max-width: 400px;
text-align: center;
}

#s-4a6d261a-dfba-4ce7-ba3e-00c028db5d45 {
  display: none;
}
#s-e8ec8916-11ba-48ed-b6a3-5ffe731e221d {
  text-align: center;
}


.shg-c#s-e8ec8916-11ba-48ed-b6a3-5ffe731e221d {
  max-width: 100%;
}

.shg-c#s-e8ec8916-11ba-48ed-b6a3-5ffe731e221d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e8ec8916-11ba-48ed-b6a3-5ffe731e221d .shg-image-zoom,
.shg-c#s-e8ec8916-11ba-48ed-b6a3-5ffe731e221d img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-e8ec8916-11ba-48ed-b6a3-5ffe731e221d .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-e8ec8916-11ba-48ed-b6a3-5ffe731e221d {
  max-width: 100%;
}

.shg-c#s-e8ec8916-11ba-48ed-b6a3-5ffe731e221d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e8ec8916-11ba-48ed-b6a3-5ffe731e221d .shg-image-zoom,
.shg-c#s-e8ec8916-11ba-48ed-b6a3-5ffe731e221d img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-e8ec8916-11ba-48ed-b6a3-5ffe731e221d .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-e8ec8916-11ba-48ed-b6a3-5ffe731e221d {
  max-width: 100%;
}

.shg-c#s-e8ec8916-11ba-48ed-b6a3-5ffe731e221d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e8ec8916-11ba-48ed-b6a3-5ffe731e221d .shg-image-zoom,
.shg-c#s-e8ec8916-11ba-48ed-b6a3-5ffe731e221d img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-e8ec8916-11ba-48ed-b6a3-5ffe731e221d .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-e8ec8916-11ba-48ed-b6a3-5ffe731e221d {
  max-width: 100%;
}

.shg-c#s-e8ec8916-11ba-48ed-b6a3-5ffe731e221d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e8ec8916-11ba-48ed-b6a3-5ffe731e221d .shg-image-zoom,
.shg-c#s-e8ec8916-11ba-48ed-b6a3-5ffe731e221d img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-e8ec8916-11ba-48ed-b6a3-5ffe731e221d .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-e8ec8916-11ba-48ed-b6a3-5ffe731e221d {
  max-width: 100%;
}

.shg-c#s-e8ec8916-11ba-48ed-b6a3-5ffe731e221d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e8ec8916-11ba-48ed-b6a3-5ffe731e221d .shg-image-zoom,
.shg-c#s-e8ec8916-11ba-48ed-b6a3-5ffe731e221d img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-e8ec8916-11ba-48ed-b6a3-5ffe731e221d .shg-image-zoom {
  
    margin: 0 auto;
  
}

}
#s-055dd4bd-65ec-4bea-88eb-b866e6f84cfa {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-055dd4bd-65ec-4bea-88eb-b866e6f84cfa .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
}

#s-772fb290-a46c-464f-9387-37312092b2fb {
  text-align: center;
}

#s-772fb290-a46c-464f-9387-37312092b2fb .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
}

#s-772fb290-a46c-464f-9387-37312092b2fb .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
}

#s-772fb290-a46c-464f-9387-37312092b2fb .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
#s-db793ba3-fb61-44bc-9818-250f40aca52a {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: rgba(37, 37, 37, 0.44);
}
#s-db793ba3-fb61-44bc-9818-250f40aca52a:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-db793ba3-fb61-44bc-9818-250f40aca52a:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-db793ba3-fb61-44bc-9818-250f40aca52a {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-db793ba3-fb61-44bc-9818-250f40aca52a.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-db793ba3-fb61-44bc-9818-250f40aca52a.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-db793ba3-fb61-44bc-9818-250f40aca52a.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-db793ba3-fb61-44bc-9818-250f40aca52a.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-69573a17-26e4-4a75-b78c-770eac7884a3 {
  min-height: 50px;
}








#s-69573a17-26e4-4a75-b78c-770eac7884a3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-69573a17-26e4-4a75-b78c-770eac7884a3.shg-box.shg-c {
  justify-content: center;
}

#s-12bc6385-6462-4de8-83b2-727591e4f0f4 {
  margin-top: 0px;
margin-bottom: 0px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-12bc6385-6462-4de8-83b2-727591e4f0f4"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

.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 {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

.shogun-image-contain {
  font-family: "object-fit: contain;";
  -o-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-e946c182-c9bd-4c7c-af34-c4acfd00f159 {
  text-align: center;
}




  #s-e946c182-c9bd-4c7c-af34-c4acfd00f159 img.shogun-image {
    
    width: px;
  }


#s-e946c182-c9bd-4c7c-af34-c4acfd00f159 .shogun-image-content {
  
    align-items: center;
  
}

#s-17b611b6-d585-4e04-bc6c-716cf041d286 {
  padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
min-height: 750px;
}








#s-17b611b6-d585-4e04-bc6c-716cf041d286 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-17b611b6-d585-4e04-bc6c-716cf041d286.shg-box.shg-c {
  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: #000;
  text-transform: none;
  font-weight: normal;
  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-d54a2cc9-4a2e-411c-b41f-3f35d6c0516e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d54a2cc9-4a2e-411c-b41f-3f35d6c0516e .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 25px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-d048306a-07cd-41a6-9fa0-0e1d891cdfa9 {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
}

#s-d0470db4-42f9-468e-94ad-b4727682d98f hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(219, 219, 219, 1);
}

#s-02b93cc4-4938-48a8-9580-8d287b6215dd {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 350px;
text-align: center;
}

#s-02b93cc4-4938-48a8-9580-8d287b6215dd .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-d574adb8-d543-4856-b50d-1610ce964642 {
  min-height: 50px;
}








#s-d574adb8-d543-4856-b50d-1610ce964642 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d574adb8-d543-4856-b50d-1610ce964642.shg-box.shg-c {
  justify-content: center;
}

#s-b5133eda-67d1-4ea5-9e9a-8027ad8b3fba {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
}

#s-a0454e32-9692-4a74-8fb4-da5ad5b06f37 {
  margin-top: 0px;
margin-bottom: 0px;
background-color: rgba(240, 240, 240, 1);
}

@media (min-width: 0px) {
[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-a0454e32-9692-4a74-8fb4-da5ad5b06f37"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-879ea393-4782-401b-a1c0-8c78ba6f1ce3 {
  padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
min-height: 500px;
}








#s-879ea393-4782-401b-a1c0-8c78ba6f1ce3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-879ea393-4782-401b-a1c0-8c78ba6f1ce3.shg-box.shg-c {
  justify-content: center;
}

#s-5825fc51-55b0-4807-b387-7de8d56668e7 .shogun-icon-wrapper {
  text-align: center;
}


#s-5825fc51-55b0-4807-b387-7de8d56668e7 .shogun-icon-wrapper > .shogun-icon {

  font-size: 64px !important;
  color: rgba(141, 198, 63, 1);
}

#s-a3c8bc8c-62b1-44fb-997b-6331381d7204 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a3c8bc8c-62b1-44fb-997b-6331381d7204 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-64571b03-a55e-4189-a466-f886f08db958 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-64571b03-a55e-4189-a466-f886f08db958 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-e2d8fe23-311a-474e-b2c2-b04ccc56056e {
  min-height: 50px;
}








#s-e2d8fe23-311a-474e-b2c2-b04ccc56056e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e2d8fe23-311a-474e-b2c2-b04ccc56056e.shg-box.shg-c {
  justify-content: center;
}

#s-7b881f7a-bd8a-435f-bbeb-598e8b4a5a6b {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
}

#s-b9d77d27-cdf7-49a0-bf25-bd961c0c70c3 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 550px;
background-position: left top;
}








#s-b9d77d27-cdf7-49a0-bf25-bd961c0c70c3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b9d77d27-cdf7-49a0-bf25-bd961c0c70c3.shg-box.shg-c {
  justify-content: center;
}

#s-2121a85f-8e0c-485e-a473-9b0544eb4c2f {
  min-height: 50px;
}








#s-2121a85f-8e0c-485e-a473-9b0544eb4c2f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2121a85f-8e0c-485e-a473-9b0544eb4c2f.shg-box.shg-c {
  justify-content: center;
}

#s-4be37953-be54-4af4-8728-f587a1ea16cf {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-4be37953-be54-4af4-8728-f587a1ea16cf"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-a8034f3f-7274-4fba-9846-9e07eb601bf6 {
  min-height: 500px;
}








#s-a8034f3f-7274-4fba-9846-9e07eb601bf6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a8034f3f-7274-4fba-9846-9e07eb601bf6.shg-box.shg-c {
  justify-content: center;
}

#s-b98e98b6-a745-4de6-8566-c1e5c817dd33 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
text-align: center;
}




  #s-b98e98b6-a745-4de6-8566-c1e5c817dd33 img.shogun-image {
    
    width: px;
  }


#s-b98e98b6-a745-4de6-8566-c1e5c817dd33 .shogun-image-content {
  
    align-items: center;
  
}

#s-eae3ac25-c3a1-4586-b2ce-4310605c4903 {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
}

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

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

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

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

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

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

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

#s-6cebdc2c-b6e7-4ea5-9943-6ff5af271c56 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: #252525;
text-decoration: none;
}
#s-6cebdc2c-b6e7-4ea5-9943-6ff5af271c56:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6cebdc2c-b6e7-4ea5-9943-6ff5af271c56:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-6cebdc2c-b6e7-4ea5-9943-6ff5af271c56.shg-btn {
  color: #ffffff;
  font-size: 22px;
  
  
  
  display:  inline-block ;
}

#s-fba94440-ffe7-47f4-9e1e-aacc296b9692 {
  padding-top: 2%;
padding-left: 4%;
padding-bottom: 2%;
padding-right: 4%;
min-height: 500px;
background-color: rgba(231, 231, 231, 1);
}








#s-fba94440-ffe7-47f4-9e1e-aacc296b9692 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fba94440-ffe7-47f4-9e1e-aacc296b9692.shg-box.shg-c {
  justify-content: center;
}

#s-f6ba16df-34ee-4387-8a6f-72231ff940a1 {
  margin-top: 2%;
margin-bottom: 2%;
}

@media (min-width: 0px) {
[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-f6ba16df-34ee-4387-8a6f-72231ff940a1"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-bf0b8c30-3609-4594-8915-fbacce5a6f79 .shogun-icon-wrapper {
  text-align: left;
}


#s-bf0b8c30-3609-4594-8915-fbacce5a6f79 .shogun-icon-wrapper > .shogun-icon {

  font-size: 40px !important;
  color: rgba(141, 220, 99, 1);
}

#s-c2f76036-c82b-44c9-9512-acabee2fa115 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-c2f76036-c82b-44c9-9512-acabee2fa115 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-0c0fc5c2-d044-4429-a414-4d703f6f01aa {
  margin-top: 2%;
margin-bottom: 2%;
}

@media (min-width: 0px) {
[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-0c0fc5c2-d044-4429-a414-4d703f6f01aa"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-5f710b5d-0a23-4f7c-9be8-a630465f900f .shogun-icon-wrapper {
  text-align: left;
}


#s-5f710b5d-0a23-4f7c-9be8-a630465f900f .shogun-icon-wrapper > .shogun-icon {

  font-size: 40px !important;
  color: rgba(141, 220, 99, 1);
}

#s-62090e4b-24f6-41b9-b3dd-d27184c37648 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-62090e4b-24f6-41b9-b3dd-d27184c37648 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-0e461cf0-5236-4865-867c-008f726a831e {
  margin-top: 2%;
margin-bottom: 2%;
}

@media (min-width: 0px) {
[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-0e461cf0-5236-4865-867c-008f726a831e"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-4fcead2f-bf7e-4f70-a81c-afda0769bf0d .shogun-icon-wrapper {
  text-align: left;
}


#s-4fcead2f-bf7e-4f70-a81c-afda0769bf0d .shogun-icon-wrapper > .shogun-icon {

  font-size: 40px !important;
  color: rgba(141, 220, 99, 1);
}

#s-cea20f4f-917a-44fb-a45c-a52fbf403134 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-cea20f4f-917a-44fb-a45c-a52fbf403134 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032 {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-fb10c0e4-e3b1-4d02-b4f7-24509f00a032"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-99c19262-6a95-4c9f-9f18-7b7332a0ecd9 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 550px;
background-position: center center;
}








#s-99c19262-6a95-4c9f-9f18-7b7332a0ecd9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-99c19262-6a95-4c9f-9f18-7b7332a0ecd9.shg-box.shg-c {
  justify-content: center;
}

#s-99ee2ebf-d263-4ebb-a245-608f9eb3822b {
  padding-left: 3%;
padding-right: 3%;
min-height: 500px;
}








#s-99ee2ebf-d263-4ebb-a245-608f9eb3822b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-99ee2ebf-d263-4ebb-a245-608f9eb3822b.shg-box.shg-c {
  justify-content: center;
}

#s-c2b006ce-700c-49cf-9c81-d6bef5d04049 {
  margin-top: 2%;
margin-bottom: 2%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c2b006ce-700c-49cf-9c81-d6bef5d04049 .shogun-heading-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f {
  max-width: 750px;
}

@media (min-width: 0px) {
[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-ed7261e4-dabd-4c3e-a0d4-f1d826e9d12f"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-7e408ab5-cf67-4465-a23d-af597b25f9a4 {
  margin-top: 35px;
margin-bottom: 35px;
text-align: center;
}




  #s-7e408ab5-cf67-4465-a23d-af597b25f9a4 img.shogun-image {
    
    width: px;
  }


#s-7e408ab5-cf67-4465-a23d-af597b25f9a4 .shogun-image-content {
  
    align-items: center;
  
}

#s-6fbf37f1-b971-4eec-83c0-e3790954ba7d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-6fbf37f1-b971-4eec-83c0-e3790954ba7d .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc {
  max-width: 750px;
}

@media (min-width: 0px) {
[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-33ea23f8-d9d2-49ec-bba8-29e1c5e6a9dc"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-a432ef00-fe84-498e-b06d-c38d6b005bd9 {
  margin-top: 35px;
margin-bottom: 35px;
text-align: center;
}




  #s-a432ef00-fe84-498e-b06d-c38d6b005bd9 img.shogun-image {
    
    width: px;
  }


#s-a432ef00-fe84-498e-b06d-c38d6b005bd9 .shogun-image-content {
  
    align-items: center;
  
}

#s-eac5f4da-1867-4545-8657-c9139dd26717 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-eac5f4da-1867-4545-8657-c9139dd26717 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



@media (min-width: 0px) {
[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-eb604e76-7a3e-469a-992e-4e7e31faf541"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-7d7dcf61-3d9b-4b68-8e75-2889a5612b18 {
  min-height: 650px;
}








#s-7d7dcf61-3d9b-4b68-8e75-2889a5612b18 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7d7dcf61-3d9b-4b68-8e75-2889a5612b18.shg-box.shg-c {
  justify-content: center;
}

#s-375b2798-109a-486d-9c17-2f0835e8a32a {
  margin-top: 2%;
margin-bottom: 2%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-375b2798-109a-486d-9c17-2f0835e8a32a .shogun-heading-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-347d4acf-855c-40d0-92ee-378dadf9b45a {
  max-width: 780px;
}

@media (min-width: 0px) {
[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-347d4acf-855c-40d0-92ee-378dadf9b45a"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-cdab99a8-ac3f-4ce3-963d-a821c42c86f0 {
  margin-top: 35px;
margin-bottom: 35px;
text-align: center;
}




  #s-cdab99a8-ac3f-4ce3-963d-a821c42c86f0 img.shogun-image {
    
    width: px;
  }


#s-cdab99a8-ac3f-4ce3-963d-a821c42c86f0 .shogun-image-content {
  
    align-items: center;
  
}

#s-14acbb82-281e-47f4-8e5b-9bad9a938bd8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-14acbb82-281e-47f4-8e5b-9bad9a938bd8 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e {
  margin-top: 10px;
margin-bottom: 10px;
max-width: 780px;
}

@media (min-width: 0px) {
[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-f5ffcf6d-8cb9-4ccf-ad54-58e89459d58e"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-c72fc867-531e-4ea5-8dab-540adad8e1ad {
  margin-top: 35px;
margin-bottom: 35px;
text-align: center;
}




  #s-c72fc867-531e-4ea5-8dab-540adad8e1ad img.shogun-image {
    
    width: px;
  }


#s-c72fc867-531e-4ea5-8dab-540adad8e1ad .shogun-image-content {
  
    align-items: center;
  
}

#s-d8f8bc05-783b-432b-96e4-e2493f38bea7 {
  margin-top: 3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-d8f8bc05-783b-432b-96e4-e2493f38bea7 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-e0227870-2028-4ea5-b4c0-1153e88c92ab {
  max-width: 780px;
}

@media (min-width: 0px) {
[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-e0227870-2028-4ea5-b4c0-1153e88c92ab"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-a015dbb4-d425-4e69-a2df-bffc47fe5f30 {
  margin-top: 35px;
margin-bottom: 35px;
text-align: center;
}




  #s-a015dbb4-d425-4e69-a2df-bffc47fe5f30 img.shogun-image {
    
    width: px;
  }


#s-a015dbb4-d425-4e69-a2df-bffc47fe5f30 .shogun-image-content {
  
    align-items: center;
  
}

#s-de35a9a4-4744-4274-aa1c-ed61e27f7663 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-de35a9a4-4744-4274-aa1c-ed61e27f7663 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-5ee83f6c-8bf3-41b6-ab37-7069008d92b6 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 650px;
background-position: center center;
}








#s-5ee83f6c-8bf3-41b6-ab37-7069008d92b6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5ee83f6c-8bf3-41b6-ab37-7069008d92b6.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-9af324e8-a701-427f-b593-454f7e0dff03"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-f3fd262e-29cc-4dbc-968a-23f4d3df1629 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f3fd262e-29cc-4dbc-968a-23f4d3df1629 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-f3d33290-7682-4863-92ce-514605826f65 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f3d33290-7682-4863-92ce-514605826f65 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-f204413a-479c-4a3c-9384-43371fb76a60 {
  margin-top: 0%;
margin-bottom: 0%;
}

@media (min-width: 0px) {
[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 8.0px);
}

}

@media (min-width: 992px) {
[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 8.0px);
}

}

@media (min-width: 1200px) {
[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 8.0px);
}

[id="s-f204413a-479c-4a3c-9384-43371fb76a60"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 8.0px);
}

}

#s-e0102344-e562-4afd-b9b2-0d3ba1b3a33e {
  border-style: solid;
margin-top: 2%;
margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
padding-top: 10%;
padding-left: 2%;
padding-bottom: 10%;
padding-right: 2%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0.35);
max-width: 400px;
text-align: center;
}

#s-e0102344-e562-4afd-b9b2-0d3ba1b3a33e {
  display: none;
}
#s-c071e552-e020-4c7d-91ff-7f082b6edf3f {
  text-align: center;
}


.shg-c#s-c071e552-e020-4c7d-91ff-7f082b6edf3f {
  max-width: 100%;
}

.shg-c#s-c071e552-e020-4c7d-91ff-7f082b6edf3f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c071e552-e020-4c7d-91ff-7f082b6edf3f .shg-image-zoom,
.shg-c#s-c071e552-e020-4c7d-91ff-7f082b6edf3f img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-c071e552-e020-4c7d-91ff-7f082b6edf3f .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-c071e552-e020-4c7d-91ff-7f082b6edf3f {
  max-width: 100%;
}

.shg-c#s-c071e552-e020-4c7d-91ff-7f082b6edf3f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c071e552-e020-4c7d-91ff-7f082b6edf3f .shg-image-zoom,
.shg-c#s-c071e552-e020-4c7d-91ff-7f082b6edf3f img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-c071e552-e020-4c7d-91ff-7f082b6edf3f .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-c071e552-e020-4c7d-91ff-7f082b6edf3f {
  max-width: 100%;
}

.shg-c#s-c071e552-e020-4c7d-91ff-7f082b6edf3f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c071e552-e020-4c7d-91ff-7f082b6edf3f .shg-image-zoom,
.shg-c#s-c071e552-e020-4c7d-91ff-7f082b6edf3f img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-c071e552-e020-4c7d-91ff-7f082b6edf3f .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-c071e552-e020-4c7d-91ff-7f082b6edf3f {
  max-width: 100%;
}

.shg-c#s-c071e552-e020-4c7d-91ff-7f082b6edf3f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c071e552-e020-4c7d-91ff-7f082b6edf3f .shg-image-zoom,
.shg-c#s-c071e552-e020-4c7d-91ff-7f082b6edf3f img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-c071e552-e020-4c7d-91ff-7f082b6edf3f .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-c071e552-e020-4c7d-91ff-7f082b6edf3f {
  max-width: 100%;
}

.shg-c#s-c071e552-e020-4c7d-91ff-7f082b6edf3f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c071e552-e020-4c7d-91ff-7f082b6edf3f .shg-image-zoom,
.shg-c#s-c071e552-e020-4c7d-91ff-7f082b6edf3f img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-c071e552-e020-4c7d-91ff-7f082b6edf3f .shg-image-zoom {
  
    margin: 0 auto;
  
}

}
#s-bdbd609b-5ed3-46ca-9edf-958839ada191 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bdbd609b-5ed3-46ca-9edf-958839ada191 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
}

#s-08b0e356-c680-4f17-a750-7768f26e1ce8 {
  text-align: center;
}

#s-08b0e356-c680-4f17-a750-7768f26e1ce8 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
}

#s-08b0e356-c680-4f17-a750-7768f26e1ce8 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
}

#s-08b0e356-c680-4f17-a750-7768f26e1ce8 .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
#s-81562561-9848-44d2-bdc1-3dbe2c81fa16 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: rgba(37, 37, 37, 0.44);
}
#s-81562561-9848-44d2-bdc1-3dbe2c81fa16:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-81562561-9848-44d2-bdc1-3dbe2c81fa16:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-81562561-9848-44d2-bdc1-3dbe2c81fa16 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-81562561-9848-44d2-bdc1-3dbe2c81fa16.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-81562561-9848-44d2-bdc1-3dbe2c81fa16.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-81562561-9848-44d2-bdc1-3dbe2c81fa16.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-81562561-9848-44d2-bdc1-3dbe2c81fa16.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-3df4a84a-168a-4878-aabb-ecc774c7298c {
  border-style: solid;
margin-top: 2%;
margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
padding-top: 10%;
padding-left: 2%;
padding-bottom: 10%;
padding-right: 2%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0.35);
max-width: 400px;
text-align: center;
}

#s-3df4a84a-168a-4878-aabb-ecc774c7298c {
  display: none;
}
#s-5f199a86-da69-4c57-a9c5-45bdaa012996 {
  text-align: center;
}


.shg-c#s-5f199a86-da69-4c57-a9c5-45bdaa012996 {
  max-width: 100%;
}

.shg-c#s-5f199a86-da69-4c57-a9c5-45bdaa012996 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5f199a86-da69-4c57-a9c5-45bdaa012996 .shg-image-zoom,
.shg-c#s-5f199a86-da69-4c57-a9c5-45bdaa012996 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-5f199a86-da69-4c57-a9c5-45bdaa012996 .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-5f199a86-da69-4c57-a9c5-45bdaa012996 {
  max-width: 100%;
}

.shg-c#s-5f199a86-da69-4c57-a9c5-45bdaa012996 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5f199a86-da69-4c57-a9c5-45bdaa012996 .shg-image-zoom,
.shg-c#s-5f199a86-da69-4c57-a9c5-45bdaa012996 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-5f199a86-da69-4c57-a9c5-45bdaa012996 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-5f199a86-da69-4c57-a9c5-45bdaa012996 {
  max-width: 100%;
}

.shg-c#s-5f199a86-da69-4c57-a9c5-45bdaa012996 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5f199a86-da69-4c57-a9c5-45bdaa012996 .shg-image-zoom,
.shg-c#s-5f199a86-da69-4c57-a9c5-45bdaa012996 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-5f199a86-da69-4c57-a9c5-45bdaa012996 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-5f199a86-da69-4c57-a9c5-45bdaa012996 {
  max-width: 100%;
}

.shg-c#s-5f199a86-da69-4c57-a9c5-45bdaa012996 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5f199a86-da69-4c57-a9c5-45bdaa012996 .shg-image-zoom,
.shg-c#s-5f199a86-da69-4c57-a9c5-45bdaa012996 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-5f199a86-da69-4c57-a9c5-45bdaa012996 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-5f199a86-da69-4c57-a9c5-45bdaa012996 {
  max-width: 100%;
}

.shg-c#s-5f199a86-da69-4c57-a9c5-45bdaa012996 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5f199a86-da69-4c57-a9c5-45bdaa012996 .shg-image-zoom,
.shg-c#s-5f199a86-da69-4c57-a9c5-45bdaa012996 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-5f199a86-da69-4c57-a9c5-45bdaa012996 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}
#s-4cde41b4-a427-48ef-bf42-3cf58dcb9a84 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4cde41b4-a427-48ef-bf42-3cf58dcb9a84 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
}

#s-6a7d4272-d476-4d39-80f1-54d35975b2a9 {
  text-align: center;
}

#s-6a7d4272-d476-4d39-80f1-54d35975b2a9 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
}

#s-6a7d4272-d476-4d39-80f1-54d35975b2a9 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
}

#s-6a7d4272-d476-4d39-80f1-54d35975b2a9 .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
#s-a9e8217c-6850-4cb1-aad5-584de0c99211 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: rgba(37, 37, 37, 0.44);
}
#s-a9e8217c-6850-4cb1-aad5-584de0c99211:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a9e8217c-6850-4cb1-aad5-584de0c99211:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-a9e8217c-6850-4cb1-aad5-584de0c99211 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a9e8217c-6850-4cb1-aad5-584de0c99211.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a9e8217c-6850-4cb1-aad5-584de0c99211.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-a9e8217c-6850-4cb1-aad5-584de0c99211.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-a9e8217c-6850-4cb1-aad5-584de0c99211.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-1d08168f-c534-4b5c-987d-ce1e13ca3378 {
  border-style: solid;
margin-top: 2%;
margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
padding-top: 10%;
padding-left: 2%;
padding-bottom: 10%;
padding-right: 2%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0.35);
max-width: 400px;
text-align: center;
}

#s-1d08168f-c534-4b5c-987d-ce1e13ca3378 {
  display: none;
}
#s-9783138e-a786-4a03-a1e6-8e2b783fa6c7 {
  text-align: center;
}


.shg-c#s-9783138e-a786-4a03-a1e6-8e2b783fa6c7 {
  max-width: 100%;
}

.shg-c#s-9783138e-a786-4a03-a1e6-8e2b783fa6c7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9783138e-a786-4a03-a1e6-8e2b783fa6c7 .shg-image-zoom,
.shg-c#s-9783138e-a786-4a03-a1e6-8e2b783fa6c7 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-9783138e-a786-4a03-a1e6-8e2b783fa6c7 .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-9783138e-a786-4a03-a1e6-8e2b783fa6c7 {
  max-width: 100%;
}

.shg-c#s-9783138e-a786-4a03-a1e6-8e2b783fa6c7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9783138e-a786-4a03-a1e6-8e2b783fa6c7 .shg-image-zoom,
.shg-c#s-9783138e-a786-4a03-a1e6-8e2b783fa6c7 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-9783138e-a786-4a03-a1e6-8e2b783fa6c7 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-9783138e-a786-4a03-a1e6-8e2b783fa6c7 {
  max-width: 100%;
}

.shg-c#s-9783138e-a786-4a03-a1e6-8e2b783fa6c7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9783138e-a786-4a03-a1e6-8e2b783fa6c7 .shg-image-zoom,
.shg-c#s-9783138e-a786-4a03-a1e6-8e2b783fa6c7 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-9783138e-a786-4a03-a1e6-8e2b783fa6c7 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-9783138e-a786-4a03-a1e6-8e2b783fa6c7 {
  max-width: 100%;
}

.shg-c#s-9783138e-a786-4a03-a1e6-8e2b783fa6c7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9783138e-a786-4a03-a1e6-8e2b783fa6c7 .shg-image-zoom,
.shg-c#s-9783138e-a786-4a03-a1e6-8e2b783fa6c7 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-9783138e-a786-4a03-a1e6-8e2b783fa6c7 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-9783138e-a786-4a03-a1e6-8e2b783fa6c7 {
  max-width: 100%;
}

.shg-c#s-9783138e-a786-4a03-a1e6-8e2b783fa6c7 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-9783138e-a786-4a03-a1e6-8e2b783fa6c7 .shg-image-zoom,
.shg-c#s-9783138e-a786-4a03-a1e6-8e2b783fa6c7 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-9783138e-a786-4a03-a1e6-8e2b783fa6c7 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}
#s-7c006d48-6bf9-46d7-8ac3-00c52ccfa11e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7c006d48-6bf9-46d7-8ac3-00c52ccfa11e .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
}

#s-4ff5cbb1-1026-4d1c-9f8b-4f5dbf79b675 {
  text-align: left;
}

#s-4ff5cbb1-1026-4d1c-9f8b-4f5dbf79b675 .shg-product-selector-wrapper {
  display: flex;
  flex-direction: row;
}

#s-4ff5cbb1-1026-4d1c-9f8b-4f5dbf79b675 .shg-product-selector-wrapper > * {
  flex-grow: 1;
}

#s-4ff5cbb1-1026-4d1c-9f8b-4f5dbf79b675 .shg-product-selector-wrapper select {
  width: 100% !important;
  margin: 0 !important;
}

#s-4ff5cbb1-1026-4d1c-9f8b-4f5dbf79b675 .shg-product-selector-inline-wrapper:not(:first-child) {
  margin-left: 10px;
}


#s-e1249af1-e5b5-423d-8933-0518a3b1193e {
  text-align: center;
}

#s-e1249af1-e5b5-423d-8933-0518a3b1193e .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
}

#s-e1249af1-e5b5-423d-8933-0518a3b1193e .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
}

#s-e1249af1-e5b5-423d-8933-0518a3b1193e .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
  padding-left: 10px;
}
#s-a128099e-fa20-4a93-bd8b-70b9f88636b5 {
  padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
text-align: center;
background-color: rgba(37, 37, 37, 0.44);
}
#s-a128099e-fa20-4a93-bd8b-70b9f88636b5:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-a128099e-fa20-4a93-bd8b-70b9f88636b5:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-a128099e-fa20-4a93-bd8b-70b9f88636b5 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-a128099e-fa20-4a93-bd8b-70b9f88636b5.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-a128099e-fa20-4a93-bd8b-70b9f88636b5.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-a128099e-fa20-4a93-bd8b-70b9f88636b5.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-a128099e-fa20-4a93-bd8b-70b9f88636b5.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


@media (min-width: 0px) {
[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-2b51729f-2ca6-4466-b240-71b7b0d06b48"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-704fbc78-9429-4174-b788-781cfeeefa73 {
  background-repeat: no-repeat;
background-size: cover;
padding-left: 3%;
padding-right: 3%;
min-height: 550px;
background-position: center center;
}








#s-704fbc78-9429-4174-b788-781cfeeefa73 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-704fbc78-9429-4174-b788-781cfeeefa73.shg-box.shg-c {
  justify-content: center;
}

#s-5d1ba736-e20e-4765-959c-4396d1a7f8fc {
  padding-left: 3%;
padding-right: 3%;
min-height: 550px;
}








#s-5d1ba736-e20e-4765-959c-4396d1a7f8fc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5d1ba736-e20e-4765-959c-4396d1a7f8fc.shg-box.shg-c {
  justify-content: center;
}

#s-902f9916-baff-461c-bf06-91cefbfa2e67 {
  margin-top: 2%;
margin-bottom: 2%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-902f9916-baff-461c-bf06-91cefbfa2e67 .shogun-heading-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13 {
  max-width: 780px;
}

@media (min-width: 0px) {
[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-d6b7d05a-a4d4-41f4-8229-bce121eb0e13"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-346f321b-8d52-44fd-b2ac-2b4bdf4aa4ea {
  margin-top: 35px;
margin-bottom: 35px;
text-align: center;
}




  #s-346f321b-8d52-44fd-b2ac-2b4bdf4aa4ea img.shogun-image {
    
    width: px;
  }


#s-346f321b-8d52-44fd-b2ac-2b4bdf4aa4ea .shogun-image-content {
  
    align-items: center;
  
}

#s-4ed3113e-12cc-40c3-9dca-eaa6b8418c43 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-4ed3113e-12cc-40c3-9dca-eaa6b8418c43 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-e134b145-75ab-42d2-8ad3-94281d32897e {
  max-width: 780px;
}

@media (min-width: 0px) {
[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-e134b145-75ab-42d2-8ad3-94281d32897e"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-19569e5d-706e-498d-9ea3-22f6216878e8 {
  margin-top: 35px;
margin-bottom: 35px;
text-align: center;
}




  #s-19569e5d-706e-498d-9ea3-22f6216878e8 img.shogun-image {
    
    width: px;
  }


#s-19569e5d-706e-498d-9ea3-22f6216878e8 .shogun-image-content {
  
    align-items: center;
  
}

#s-898b8b28-d9af-4190-822c-b5369765419f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-898b8b28-d9af-4190-822c-b5369765419f .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-d8e68978-25d8-463d-991f-ab210bb2e74d {
  min-height: 50px;
}








#s-d8e68978-25d8-463d-991f-ab210bb2e74d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d8e68978-25d8-463d-991f-ab210bb2e74d.shg-box.shg-c {
  justify-content: center;
}

#s-3af54772-6b88-42a2-93c2-b43dd1f34c2f {
  padding-top: 15px;
padding-bottom: 15px;
min-height: 50px;
background-color: rgba(231, 231, 231, 1);
}








#s-3af54772-6b88-42a2-93c2-b43dd1f34c2f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3af54772-6b88-42a2-93c2-b43dd1f34c2f.shg-box.shg-c {
  justify-content: center;
}

#s-2274d0ec-82d0-4cc9-af3a-1cc3595971e8 {
  margin-top: 2%;
margin-bottom: 2%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2274d0ec-82d0-4cc9-af3a-1cc3595971e8 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 30px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-f933c812-abfe-4dc5-84b6-cb8af3077786 {
  margin-top: -1px;
margin-bottom: -1px;
padding-top: 65px;
padding-bottom: 65px;
background-color: rgba(231, 231, 231, 1);
}

@media (min-width: 0px) {
[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-f933c812-abfe-4dc5-84b6-cb8af3077786"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-7a9831b6-6487-4223-90eb-4295692e7425 {
  text-align: center;
}




  #s-7a9831b6-6487-4223-90eb-4295692e7425 img.shogun-image {
    
    width: px;
  }


#s-7a9831b6-6487-4223-90eb-4295692e7425 .shogun-image-content {
  
    align-items: center;
  
}

#s-437fc23c-2f48-4ac5-8d6f-5883beb5cb38 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-437fc23c-2f48-4ac5-8d6f-5883beb5cb38 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-3328258b-6440-4b83-988e-a973363914a7 {
  margin-left: 50px;
margin-right: 50px;
}

#s-f7863122-c068-4ed0-948b-4996dcf4329b {
  text-align: center;
}




  #s-f7863122-c068-4ed0-948b-4996dcf4329b img.shogun-image {
    
    width: px;
  }


#s-f7863122-c068-4ed0-948b-4996dcf4329b .shogun-image-content {
  
    align-items: center;
  
}

#s-a8d3fc32-fc25-4ee4-b437-36238c09e98f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a8d3fc32-fc25-4ee4-b437-36238c09e98f .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-d62086c3-acfc-42d1-b682-497c8d3f8add {
  margin-left: 50px;
margin-right: 50px;
}

#s-992b68e6-7c5b-4c44-b63b-bc499d79d4de {
  text-align: center;
}




  #s-992b68e6-7c5b-4c44-b63b-bc499d79d4de img.shogun-image {
    
    width: px;
  }


#s-992b68e6-7c5b-4c44-b63b-bc499d79d4de .shogun-image-content {
  
    align-items: center;
  
}

#s-ddc24078-18f0-4203-a6ab-676099e8fae2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ddc24078-18f0-4203-a6ab-676099e8fae2 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-6b1ebba1-39cf-44b9-88be-3515128183b3 {
  margin-left: 50px;
margin-right: 50px;
}

@media (min-width: 0px) {
[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-8f2205a5-8d69-4d6e-86d2-b6272228ed5d"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-9c22b1b6-16d6-4d48-950d-6f027f5b15e7 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 500px;
background-position: center center;
}








#s-9c22b1b6-16d6-4d48-950d-6f027f5b15e7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9c22b1b6-16d6-4d48-950d-6f027f5b15e7.shg-box.shg-c {
  justify-content: center;
}

#s-34dd39db-ed6b-4fbf-b3ff-364b909892fe {
  min-height: 500px;
}








#s-34dd39db-ed6b-4fbf-b3ff-364b909892fe > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-34dd39db-ed6b-4fbf-b3ff-364b909892fe.shg-box.shg-c {
  justify-content: center;
}

#s-0a99506f-d126-4d3c-874d-9f8e207e674d {
  margin-top: 2%;
margin-bottom: 2%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0a99506f-d126-4d3c-874d-9f8e207e674d .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-65c3aa8f-41d2-4d19-b267-2f887049b061 {
  margin-left: 30px;
margin-right: 30px;
}

@media (min-width: 0px) {
[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-63198782-96a4-4dd7-9e33-641daf462f6b"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-65ca4675-5dbe-4146-85f0-27f33a6f3aaa {
  min-height: 550px;
}








#s-65ca4675-5dbe-4146-85f0-27f33a6f3aaa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-65ca4675-5dbe-4146-85f0-27f33a6f3aaa.shg-box.shg-c {
  justify-content: center;
}

#s-70e30171-df25-40d4-884b-19dbb811cc32 {
  margin-top: 2%;
margin-bottom: 2%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-70e30171-df25-40d4-884b-19dbb811cc32 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-c06efda8-5a26-44cf-85e6-0c4f5fb134a6 {
  margin-left: 35px;
margin-right: 35px;
}

#s-cac9ee12-091d-4a95-9368-0a6a002fe880 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 550px;
background-position: center center;
}








#s-cac9ee12-091d-4a95-9368-0a6a002fe880 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cac9ee12-091d-4a95-9368-0a6a002fe880.shg-box.shg-c {
  justify-content: center;
}

#s-0ddb9ba2-705c-4aa2-8387-075a56d5ad2c {
  min-height: 50px;
}








#s-0ddb9ba2-705c-4aa2-8387-075a56d5ad2c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0ddb9ba2-705c-4aa2-8387-075a56d5ad2c.shg-box.shg-c {
  justify-content: center;
}

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

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

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

.shogun-root iframe {
  display: initial;
}

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

#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;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          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;
}
