.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-4b283b69-b9c5-4ced-a05f-c464c42cf86d {
  margin-top: 2%;
margin-bottom: 2%;
min-height: 50px;
}








#s-4b283b69-b9c5-4ced-a05f-c464c42cf86d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4b283b69-b9c5-4ced-a05f-c464c42cf86d.shg-box.shg-c {
  justify-content: flex-start;
}

.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-a73d79d2-06d6-476f-8af4-73997c18b46e {
  margin-left: 2%;
margin-right: 2%;
}

#s-a73d79d2-06d6-476f-8af4-73997c18b46e .shogun-tabs {
  justify-content: flex-start;
}


  #s-a73d79d2-06d6-476f-8af4-73997c18b46e .shogun-tabs > li > .shogun-tab-box {
    background: #fff;
    border: 1px solid #DDDDDD;
  }
  #s-a73d79d2-06d6-476f-8af4-73997c18b46e .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(141, 198, 63, 1);
    border: 1px solid #ddd;
  }
#s-a73d79d2-06d6-476f-8af4-73997c18b46e .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(112, 112, 112, 1);
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-a73d79d2-06d6-476f-8af4-73997c18b46e .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 255, 255, 1);
}

#s-a73d79d2-06d6-476f-8af4-73997c18b46e .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(141, 198, 63, 1);
}

#s-a73d79d2-06d6-476f-8af4-73997c18b46e .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-6d9e8681-3a20-4e62-9030-5a97d01cff62 {
  margin-top: 0%;
margin-bottom: 0%;
}

@media (min-width: 0px) {
[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 8.0px);
}

}

@media (min-width: 992px) {
[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 8.0px);
}

}

@media (min-width: 1200px) {
[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 8.0px);
}

[id="s-6d9e8681-3a20-4e62-9030-5a97d01cff62"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 8.0px);
}

}

#s-da7a69e8-308e-4138-89a2-d2a444311c4d {
  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-da7a69e8-308e-4138-89a2-d2a444311c4d {
  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-3537152c-9d67-4bbe-84f1-9f1fd34fe8c4 {
  text-align: center;
}


.shg-c#s-3537152c-9d67-4bbe-84f1-9f1fd34fe8c4 {
  max-width: 100%;
}

.shg-c#s-3537152c-9d67-4bbe-84f1-9f1fd34fe8c4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3537152c-9d67-4bbe-84f1-9f1fd34fe8c4 .shg-image-zoom,
.shg-c#s-3537152c-9d67-4bbe-84f1-9f1fd34fe8c4 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-3537152c-9d67-4bbe-84f1-9f1fd34fe8c4 .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-3537152c-9d67-4bbe-84f1-9f1fd34fe8c4 {
  max-width: 100%;
}

.shg-c#s-3537152c-9d67-4bbe-84f1-9f1fd34fe8c4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3537152c-9d67-4bbe-84f1-9f1fd34fe8c4 .shg-image-zoom,
.shg-c#s-3537152c-9d67-4bbe-84f1-9f1fd34fe8c4 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-3537152c-9d67-4bbe-84f1-9f1fd34fe8c4 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-3537152c-9d67-4bbe-84f1-9f1fd34fe8c4 {
  max-width: 100%;
}

.shg-c#s-3537152c-9d67-4bbe-84f1-9f1fd34fe8c4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3537152c-9d67-4bbe-84f1-9f1fd34fe8c4 .shg-image-zoom,
.shg-c#s-3537152c-9d67-4bbe-84f1-9f1fd34fe8c4 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-3537152c-9d67-4bbe-84f1-9f1fd34fe8c4 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-3537152c-9d67-4bbe-84f1-9f1fd34fe8c4 {
  max-width: 100%;
}

.shg-c#s-3537152c-9d67-4bbe-84f1-9f1fd34fe8c4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3537152c-9d67-4bbe-84f1-9f1fd34fe8c4 .shg-image-zoom,
.shg-c#s-3537152c-9d67-4bbe-84f1-9f1fd34fe8c4 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-3537152c-9d67-4bbe-84f1-9f1fd34fe8c4 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-3537152c-9d67-4bbe-84f1-9f1fd34fe8c4 {
  max-width: 100%;
}

.shg-c#s-3537152c-9d67-4bbe-84f1-9f1fd34fe8c4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-3537152c-9d67-4bbe-84f1-9f1fd34fe8c4 .shg-image-zoom,
.shg-c#s-3537152c-9d67-4bbe-84f1-9f1fd34fe8c4 img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-3537152c-9d67-4bbe-84f1-9f1fd34fe8c4 .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-b6a75e0b-605d-49a7-97a8-0efb9c14687e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b6a75e0b-605d-49a7-97a8-0efb9c14687e .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
}

#s-f6ddead1-9942-495d-b769-3421396013e0 {
  text-align: center;
}

#s-f6ddead1-9942-495d-b769-3421396013e0 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
}

#s-f6ddead1-9942-495d-b769-3421396013e0 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
}

#s-f6ddead1-9942-495d-b769-3421396013e0 .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-b0b6cc7a-508b-4b9d-a04b-b10f1cd2cd7f {
  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-b0b6cc7a-508b-4b9d-a04b-b10f1cd2cd7f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b0b6cc7a-508b-4b9d-a04b-b10f1cd2cd7f:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-b0b6cc7a-508b-4b9d-a04b-b10f1cd2cd7f {
  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-b0b6cc7a-508b-4b9d-a04b-b10f1cd2cd7f.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-b0b6cc7a-508b-4b9d-a04b-b10f1cd2cd7f.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-b0b6cc7a-508b-4b9d-a04b-b10f1cd2cd7f.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-b0b6cc7a-508b-4b9d-a04b-b10f1cd2cd7f.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-497a3bdc-9c07-4135-aea1-c56739fe3720 {
  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-497a3bdc-9c07-4135-aea1-c56739fe3720 {
  display: none;
}
#s-5e373901-cca8-4b5b-af2b-aaab9f50d80a {
  text-align: center;
}


.shg-c#s-5e373901-cca8-4b5b-af2b-aaab9f50d80a {
  max-width: 100%;
}

.shg-c#s-5e373901-cca8-4b5b-af2b-aaab9f50d80a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5e373901-cca8-4b5b-af2b-aaab9f50d80a .shg-image-zoom,
.shg-c#s-5e373901-cca8-4b5b-af2b-aaab9f50d80a img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-5e373901-cca8-4b5b-af2b-aaab9f50d80a .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-5e373901-cca8-4b5b-af2b-aaab9f50d80a {
  max-width: 100%;
}

.shg-c#s-5e373901-cca8-4b5b-af2b-aaab9f50d80a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5e373901-cca8-4b5b-af2b-aaab9f50d80a .shg-image-zoom,
.shg-c#s-5e373901-cca8-4b5b-af2b-aaab9f50d80a img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-5e373901-cca8-4b5b-af2b-aaab9f50d80a .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-5e373901-cca8-4b5b-af2b-aaab9f50d80a {
  max-width: 100%;
}

.shg-c#s-5e373901-cca8-4b5b-af2b-aaab9f50d80a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5e373901-cca8-4b5b-af2b-aaab9f50d80a .shg-image-zoom,
.shg-c#s-5e373901-cca8-4b5b-af2b-aaab9f50d80a img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-5e373901-cca8-4b5b-af2b-aaab9f50d80a .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-5e373901-cca8-4b5b-af2b-aaab9f50d80a {
  max-width: 100%;
}

.shg-c#s-5e373901-cca8-4b5b-af2b-aaab9f50d80a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5e373901-cca8-4b5b-af2b-aaab9f50d80a .shg-image-zoom,
.shg-c#s-5e373901-cca8-4b5b-af2b-aaab9f50d80a img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-5e373901-cca8-4b5b-af2b-aaab9f50d80a .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-5e373901-cca8-4b5b-af2b-aaab9f50d80a {
  max-width: 100%;
}

.shg-c#s-5e373901-cca8-4b5b-af2b-aaab9f50d80a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-5e373901-cca8-4b5b-af2b-aaab9f50d80a .shg-image-zoom,
.shg-c#s-5e373901-cca8-4b5b-af2b-aaab9f50d80a img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-5e373901-cca8-4b5b-af2b-aaab9f50d80a .shg-image-zoom {
  
    margin: 0 auto;
  
}

}
#s-2b697b98-6e5b-450b-886d-0ac4207c1b01 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2b697b98-6e5b-450b-886d-0ac4207c1b01 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
}

#s-8c921ad9-012a-40bd-b4c4-cb0256d2e555 {
  text-align: center;
}

#s-8c921ad9-012a-40bd-b4c4-cb0256d2e555 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
}

#s-8c921ad9-012a-40bd-b4c4-cb0256d2e555 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
}

#s-8c921ad9-012a-40bd-b4c4-cb0256d2e555 .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-d5df7400-b2b0-4516-8df1-d0d7a16baa74 {
  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-d5df7400-b2b0-4516-8df1-d0d7a16baa74:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d5df7400-b2b0-4516-8df1-d0d7a16baa74:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-d5df7400-b2b0-4516-8df1-d0d7a16baa74 {
  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-d5df7400-b2b0-4516-8df1-d0d7a16baa74.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-d5df7400-b2b0-4516-8df1-d0d7a16baa74.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-d5df7400-b2b0-4516-8df1-d0d7a16baa74.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-d5df7400-b2b0-4516-8df1-d0d7a16baa74.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-73f7127c-b102-4f3b-9794-f00df02ec811 {
  border-style: solid;
margin-top: 2%;
margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
padding-top: 17%;
padding-left: 2%;
padding-bottom: 17%;
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-73f7127c-b102-4f3b-9794-f00df02ec811 {
  display: none;
}
#s-878d444e-2134-489d-af2b-f5d957c991df {
  text-align: center;
}


.shg-c#s-878d444e-2134-489d-af2b-f5d957c991df {
  max-width: 100%;
}

.shg-c#s-878d444e-2134-489d-af2b-f5d957c991df img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-878d444e-2134-489d-af2b-f5d957c991df .shg-image-zoom,
.shg-c#s-878d444e-2134-489d-af2b-f5d957c991df img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-878d444e-2134-489d-af2b-f5d957c991df .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-878d444e-2134-489d-af2b-f5d957c991df {
  max-width: 100%;
}

.shg-c#s-878d444e-2134-489d-af2b-f5d957c991df img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-878d444e-2134-489d-af2b-f5d957c991df .shg-image-zoom,
.shg-c#s-878d444e-2134-489d-af2b-f5d957c991df img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-878d444e-2134-489d-af2b-f5d957c991df .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-878d444e-2134-489d-af2b-f5d957c991df {
  max-width: 100%;
}

.shg-c#s-878d444e-2134-489d-af2b-f5d957c991df img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-878d444e-2134-489d-af2b-f5d957c991df .shg-image-zoom,
.shg-c#s-878d444e-2134-489d-af2b-f5d957c991df img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-878d444e-2134-489d-af2b-f5d957c991df .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-878d444e-2134-489d-af2b-f5d957c991df {
  max-width: 100%;
}

.shg-c#s-878d444e-2134-489d-af2b-f5d957c991df img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-878d444e-2134-489d-af2b-f5d957c991df .shg-image-zoom,
.shg-c#s-878d444e-2134-489d-af2b-f5d957c991df img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-878d444e-2134-489d-af2b-f5d957c991df .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-878d444e-2134-489d-af2b-f5d957c991df {
  max-width: 100%;
}

.shg-c#s-878d444e-2134-489d-af2b-f5d957c991df img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-878d444e-2134-489d-af2b-f5d957c991df .shg-image-zoom,
.shg-c#s-878d444e-2134-489d-af2b-f5d957c991df img.shogun-image {
  max-width: 250px !important;
  min-height:  !important;
}

.shg-c#s-878d444e-2134-489d-af2b-f5d957c991df .shg-image-zoom {
  
    margin: 0 auto;
  
}

}
#s-ae0c1a3e-dc9c-40a3-b964-bf0d2429b379 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ae0c1a3e-dc9c-40a3-b964-bf0d2429b379 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
}

#s-900a4038-227b-4aba-9873-35bc2c6a995b {
  text-align: center;
}

#s-900a4038-227b-4aba-9873-35bc2c6a995b .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 16px;
}

#s-900a4038-227b-4aba-9873-35bc2c6a995b .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
}

#s-900a4038-227b-4aba-9873-35bc2c6a995b .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-c3d0abf4-e941-48a8-873a-27324fe80513 {
  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-c3d0abf4-e941-48a8-873a-27324fe80513:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c3d0abf4-e941-48a8-873a-27324fe80513:active {background-color: #000000 !important;
text-decoration: none !important;}


#s-c3d0abf4-e941-48a8-873a-27324fe80513 {
  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-c3d0abf4-e941-48a8-873a-27324fe80513.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-c3d0abf4-e941-48a8-873a-27324fe80513.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  
  display:  inline-block ;
}

#s-c3d0abf4-e941-48a8-873a-27324fe80513.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


  #s-c3d0abf4-e941-48a8-873a-27324fe80513.shg-btn.shg-product-atc-success {
    
    
    
    
    
  }


#s-89174e77-b377-4c46-b67a-0cb3174f8a16 {
  min-height: 50px;
}








#s-89174e77-b377-4c46-b67a-0cb3174f8a16 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-89174e77-b377-4c46-b67a-0cb3174f8a16.shg-box.shg-c {
  justify-content: center;
}

#s-d4ad95e7-ad98-4d14-bf2e-8c91b1f9ac39 {
  min-height: 50px;
}








#s-d4ad95e7-ad98-4d14-bf2e-8c91b1f9ac39 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d4ad95e7-ad98-4d14-bf2e-8c91b1f9ac39.shg-box.shg-c {
  justify-content: flex-start;
}

@media (min-width: 0px) {
[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-f258b8fd-775d-4c79-931e-78eb2ed80bae"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-1995a593-d7d3-411b-925c-0659895e0065 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 600px;
background-position: center center;
background-attachment: scroll;
}








#s-1995a593-d7d3-411b-925c-0659895e0065 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1995a593-d7d3-411b-925c-0659895e0065.shg-box.shg-c {
  justify-content: flex-start;
}

#s-12bea84d-1fec-4f0e-99ad-311dde20779e {
  margin-top: 3%;
margin-left: 3%;
margin-bottom: 3%;
margin-right: 3%;
text-align: right;
}

#s-eb12c083-0772-4644-8ff4-2b3b1873a140 {
  padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
min-height: 500px;
}








#s-eb12c083-0772-4644-8ff4-2b3b1873a140 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eb12c083-0772-4644-8ff4-2b3b1873a140.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-27739bf3-ece8-44c1-a2f4-7566b2628845 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-27739bf3-ece8-44c1-a2f4-7566b2628845 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-4e091529-0526-4896-bdd4-d22b2ea0ffe0 {
  min-height: 50px;
}








#s-4e091529-0526-4896-bdd4-d22b2ea0ffe0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4e091529-0526-4896-bdd4-d22b2ea0ffe0.shg-box.shg-c {
  justify-content: center;
}

.shogun-image-container {
  position: relative;
}

.shogun-image-container.shg-align-left {
  text-align: left;
}

.shogun-image-container.shg-align-center {
  text-align: center;
}

.shogun-image-container.shg-align-right {
  text-align: right;
}

.shogun-image-linked {
  cursor: pointer;
}

.shogun-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.shogun-image-overlay.shg-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-top-center {
  align-items: flex-start;
  justify-content: center;
}

.shogun-image-overlay.shg-top-right {
  align-items: flex-start;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-middle-left {
  align-items: center;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-middle-center {
  align-items: center;
  justify-content: center;
}

.shogun-image-overlay.shg-middle-right {
  align-items: center;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-bottom-center {
  align-items: flex-end;
  justify-content: center;
}

.shogun-image-overlay.shg-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}

.shogun-image-overlay p {
  margin: 0;
  padding: 0;
  line-height: normal;
}

.shogun-image-cover {
  -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-cd1eabb7-57dd-425c-8ace-3c906f0662e2 {
  margin-left: auto;
margin-right: auto;
max-width: 80px;
text-align: center;
}




  #s-cd1eabb7-57dd-425c-8ace-3c906f0662e2 img.shogun-image {
    
    width: px;
  }


#s-cd1eabb7-57dd-425c-8ace-3c906f0662e2 .shogun-image-content {
  
    align-items: center;
  
}

#s-b0b1c350-50e6-410a-a4e8-f0dcd6524165 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b0b1c350-50e6-410a-a4e8-f0dcd6524165 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-c76803de-7364-4d45-8e98-0b5e035a69b2 {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
}

#s-840050d5-a7cf-4f96-bc46-d30f84a2df96 {
  margin-left: auto;
margin-right: auto;
max-width: 80px;
text-align: center;
}




  #s-840050d5-a7cf-4f96-bc46-d30f84a2df96 img.shogun-image {
    
    width: px;
  }


#s-840050d5-a7cf-4f96-bc46-d30f84a2df96 .shogun-image-content {
  
    align-items: center;
  
}

#s-55c26b08-e76b-411c-a9ed-8f4f52838415 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-55c26b08-e76b-411c-a9ed-8f4f52838415 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-b1aea066-d525-4a78-adbc-70339a0ea0e7 {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
}

@media (min-width: 0px) {
[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-9a41753f-8ce3-43a5-a925-e42318587499"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-d858f8cb-8299-4449-af77-f964f9db5eb4 {
  padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
min-height: 500px;
}








#s-d858f8cb-8299-4449-af77-f964f9db5eb4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d858f8cb-8299-4449-af77-f964f9db5eb4.shg-box.shg-c {
  justify-content: center;
}

#s-71c5b4c3-246d-4e89-a6e3-bf13f222ddcd {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-71c5b4c3-246d-4e89-a6e3-bf13f222ddcd .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7 {
  margin-top: 1%;
margin-left: 5%;
margin-bottom: 1%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-796ffeaa-91cb-4361-bf0c-9c2b80d410a7"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-158c8810-cd6c-45da-afcf-b4e7620733af {
  max-width: 80px;
text-align: center;
}




  #s-158c8810-cd6c-45da-afcf-b4e7620733af img.shogun-image {
    
    width: px;
  }


#s-158c8810-cd6c-45da-afcf-b4e7620733af .shogun-image-content {
  
    align-items: center;
  
}

#s-9dd1fc8f-2470-48b9-bf97-5e62c02b8484 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-9dd1fc8f-2470-48b9-bf97-5e62c02b8484 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-5517b1ee-1c34-46b0-b954-23b41f240f8e {
  margin-top: 1%;
margin-left: 5%;
margin-bottom: 1%;
margin-right: 5%;
}

@media (min-width: 0px) {
[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-5517b1ee-1c34-46b0-b954-23b41f240f8e"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-b2603d16-ebf8-4013-bdc9-47fd4815d77b {
  max-width: 80px;
text-align: center;
}




  #s-b2603d16-ebf8-4013-bdc9-47fd4815d77b img.shogun-image {
    
    width: px;
  }


#s-b2603d16-ebf8-4013-bdc9-47fd4815d77b .shogun-image-content {
  
    align-items: center;
  
}

#s-a3faf938-4f55-4982-ba01-3a9a47df7ec3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-a3faf938-4f55-4982-ba01-3a9a47df7ec3 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-e6ab883f-8be1-479a-9ba1-c82a0a04db2f {
  background-repeat: no-repeat;
background-size: cover;
min-height: 600px;
background-position: center center;
}








#s-e6ab883f-8be1-479a-9ba1-c82a0a04db2f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e6ab883f-8be1-479a-9ba1-c82a0a04db2f.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-dedc7be8-d2db-4e9c-81d4-75945834289a"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 0px) {
[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-44252c70-476f-46c2-abe5-dba385835334"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-02e45b72-ceef-4bd8-a75a-fdfd82b9801b {
  background-repeat: no-repeat;
background-size: cover;
min-height: 400px;
background-position: center center;
}








#s-02e45b72-ceef-4bd8-a75a-fdfd82b9801b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-02e45b72-ceef-4bd8-a75a-fdfd82b9801b.shg-box.shg-c {
  justify-content: center;
}

#s-65cdb623-3357-4ea7-bba2-25c160a9c495 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 400px;
background-position: center center;
}








#s-65cdb623-3357-4ea7-bba2-25c160a9c495 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-65cdb623-3357-4ea7-bba2-25c160a9c495.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-5b8efa47-8da6-4a9e-86d2-06dccb63048c"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-1a125616-c449-4013-9fd1-f2c8fb1429d9 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 400px;
background-position: center center;
}








#s-1a125616-c449-4013-9fd1-f2c8fb1429d9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1a125616-c449-4013-9fd1-f2c8fb1429d9.shg-box.shg-c {
  justify-content: center;
}

#s-bef0ff36-0b52-4e4f-aaf0-02f91af11739 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 400px;
background-position: center center;
}








#s-bef0ff36-0b52-4e4f-aaf0-02f91af11739 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bef0ff36-0b52-4e4f-aaf0-02f91af11739.shg-box.shg-c {
  justify-content: center;
}

#s-0cc70d54-7a97-4d64-8692-58541342d9f3 {
  padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
min-height: 500px;
}








#s-0cc70d54-7a97-4d64-8692-58541342d9f3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0cc70d54-7a97-4d64-8692-58541342d9f3.shg-box.shg-c {
  justify-content: center;
}

#s-55137c1b-4fb9-4dcd-98a7-03312a2830a3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-55137c1b-4fb9-4dcd-98a7-03312a2830a3 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-352aa10e-cd75-466d-82d1-eed8d7c58b2f {
  min-height: 50px;
}








#s-352aa10e-cd75-466d-82d1-eed8d7c58b2f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-352aa10e-cd75-466d-82d1-eed8d7c58b2f.shg-box.shg-c {
  justify-content: center;
}

#s-bb55fd33-568c-47d3-b2e9-488a0ab73c64 {
  margin-left: auto;
margin-right: auto;
max-width: 80px;
text-align: center;
}




  #s-bb55fd33-568c-47d3-b2e9-488a0ab73c64 img.shogun-image {
    
    width: px;
  }


#s-bb55fd33-568c-47d3-b2e9-488a0ab73c64 .shogun-image-content {
  
    align-items: center;
  
}

#s-26254ca2-fa0c-44f7-b319-8e6dd071cdda {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-26254ca2-fa0c-44f7-b319-8e6dd071cdda .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-a34e5581-3748-46be-99dd-bdb6c8f112e9 {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
}

#s-0447dda9-160c-4f6e-b95b-3a474f5fdbd1 {
  min-height: 50px;
}








#s-0447dda9-160c-4f6e-b95b-3a474f5fdbd1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0447dda9-160c-4f6e-b95b-3a474f5fdbd1.shg-box.shg-c {
  justify-content: center;
}

#s-e8b8e396-8be2-49a6-b98b-97efb8ccb378 {
  margin-left: auto;
margin-right: auto;
max-width: 80px;
text-align: center;
}




  #s-e8b8e396-8be2-49a6-b98b-97efb8ccb378 img.shogun-image {
    
    width: px;
  }


#s-e8b8e396-8be2-49a6-b98b-97efb8ccb378 .shogun-image-content {
  
    align-items: center;
  
}

#s-b43963e1-8e9b-4914-b219-5ef6e6368e2e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b43963e1-8e9b-4914-b219-5ef6e6368e2e .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-690651d2-221f-4f2c-8b35-be9a5e034bfb {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
}

@media (min-width: 0px) {
[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-6cd8d95f-9caf-4b3a-8a46-3b305c114283"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-b8544364-0afd-462a-a1ee-cd66db5588f7 {
  padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
min-height: 500px;
}








#s-b8544364-0afd-462a-a1ee-cd66db5588f7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b8544364-0afd-462a-a1ee-cd66db5588f7.shg-box.shg-c {
  justify-content: center;
}

#s-6d0f4db1-e7d7-4dd1-8df5-2e2ec686b7d3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6d0f4db1-e7d7-4dd1-8df5-2e2ec686b7d3 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-156428ba-74b9-439d-8479-3b644a4d3c90 {
  min-height: 50px;
}








#s-156428ba-74b9-439d-8479-3b644a4d3c90 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-156428ba-74b9-439d-8479-3b644a4d3c90.shg-box.shg-c {
  justify-content: center;
}

#s-e6506578-7fa7-46a7-a523-c673875bc6da {
  margin-left: auto;
margin-right: auto;
max-width: 80px;
text-align: center;
}




  #s-e6506578-7fa7-46a7-a523-c673875bc6da img.shogun-image {
    
    width: px;
  }


#s-e6506578-7fa7-46a7-a523-c673875bc6da .shogun-image-content {
  
    align-items: center;
  
}

#s-c7b9e9c3-e7cd-41bf-b52b-e6bb20fc3e24 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c7b9e9c3-e7cd-41bf-b52b-e6bb20fc3e24 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-04d6baf0-b05d-4700-9638-e120c23a1e10 {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
}

#s-3c7b4b3b-6ba1-4629-91a6-f0a31ceb8416 {
  min-height: 50px;
}








#s-3c7b4b3b-6ba1-4629-91a6-f0a31ceb8416 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3c7b4b3b-6ba1-4629-91a6-f0a31ceb8416.shg-box.shg-c {
  justify-content: center;
}

#s-839df11c-e31b-4988-b8cc-1d11d373c4b8 {
  margin-left: auto;
margin-right: auto;
max-width: 80px;
text-align: center;
}




  #s-839df11c-e31b-4988-b8cc-1d11d373c4b8 img.shogun-image {
    
    width: px;
  }


#s-839df11c-e31b-4988-b8cc-1d11d373c4b8 .shogun-image-content {
  
    align-items: center;
  
}

#s-35989497-3d48-4de3-8201-5c8f598072b5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-35989497-3d48-4de3-8201-5c8f598072b5 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-dac1a656-cdf0-40e6-b861-860aa251243d {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
}

#s-8bea781f-37f9-4f4d-bd68-729831811c87 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 600px;
background-position: center center;
}








#s-8bea781f-37f9-4f4d-bd68-729831811c87 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8bea781f-37f9-4f4d-bd68-729831811c87.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-8f422bf0-3c10-4273-9a33-46e39cc7d2c0"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-642fc4dc-d3b8-4be2-ada6-a7bd1b7b09f7 {
  text-align: center;
}





#s-642fc4dc-d3b8-4be2-ada6-a7bd1b7b09f7 .shogun-image-content {
  
    align-items: center;
  
}

#s-f3ea79d0-28e2-495f-ba3e-22282d6ff509 {
  padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
min-height: 500px;
}








#s-f3ea79d0-28e2-495f-ba3e-22282d6ff509 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f3ea79d0-28e2-495f-ba3e-22282d6ff509.shg-box.shg-c {
  justify-content: center;
}

#s-5a9bc2ba-74ec-4597-a9be-a5e35ad3f0b5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5a9bc2ba-74ec-4597-a9be-a5e35ad3f0b5 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-755d8f70-dc38-44dc-99d1-c2097ddfe51c {
  min-height: 50px;
}








#s-755d8f70-dc38-44dc-99d1-c2097ddfe51c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-755d8f70-dc38-44dc-99d1-c2097ddfe51c.shg-box.shg-c {
  justify-content: center;
}

#s-233df1cf-a416-497e-a48c-01bb9bef6e88 {
  margin-left: auto;
margin-right: auto;
max-width: 80px;
text-align: center;
}




  #s-233df1cf-a416-497e-a48c-01bb9bef6e88 img.shogun-image {
    
    width: px;
  }


#s-233df1cf-a416-497e-a48c-01bb9bef6e88 .shogun-image-content {
  
    align-items: center;
  
}

#s-8c6bed1a-a21b-466b-b5da-4ccf97ef0c7c {
  margin-left: auto;
margin-right: auto;
max-width: 500px;
}

#s-0bb088e6-9335-4d27-bd52-afb4f83bdc08 {
  padding-top: 3%;
padding-bottom: 3%;
min-height: 50px;
background-color: rgba(243, 243, 243, 1);
}








#s-0bb088e6-9335-4d27-bd52-afb4f83bdc08 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0bb088e6-9335-4d27-bd52-afb4f83bdc08.shg-box.shg-c {
  justify-content: center;
}

#s-a8c75504-5742-4461-a926-2e687837605e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a8c75504-5742-4461-a926-2e687837605e .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



@media (min-width: 0px) {
[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-89d7b1a4-95aa-4d60-a2c6-0a476660b528"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-6374f7d7-2aca-492e-a745-8a5839a402ce {
  margin-top: 2%;
margin-bottom: 2%;
padding-top: 2%;
padding-left: 2%;
padding-bottom: 2%;
padding-right: 2%;
min-height: 50px;
}








#s-6374f7d7-2aca-492e-a745-8a5839a402ce > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6374f7d7-2aca-492e-a745-8a5839a402ce.shg-box.shg-c {
  justify-content: center;
}

#s-da80d1fa-bc59-42d3-a66a-15e2abfff68f {
  text-align: center;
}




  #s-da80d1fa-bc59-42d3-a66a-15e2abfff68f img.shogun-image {
    
    width: px;
  }


#s-da80d1fa-bc59-42d3-a66a-15e2abfff68f .shogun-image-content {
  
    align-items: center;
  
}

#s-d848d2c0-1005-4fcf-a28e-e3e8e76ff8ab {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d848d2c0-1005-4fcf-a28e-e3e8e76ff8ab .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-6dffb30c-bc83-4812-ac23-dac7da6bc4a3 {
  margin-top: 2%;
margin-bottom: 2%;
padding-top: 2%;
padding-left: 2%;
padding-bottom: 2%;
padding-right: 2%;
min-height: 50px;
}








#s-6dffb30c-bc83-4812-ac23-dac7da6bc4a3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6dffb30c-bc83-4812-ac23-dac7da6bc4a3.shg-box.shg-c {
  justify-content: center;
}

#s-c7c9bdda-5d4a-4ce3-bd85-5770c04de87d {
  text-align: center;
}




  #s-c7c9bdda-5d4a-4ce3-bd85-5770c04de87d img.shogun-image {
    
    width: px;
  }


#s-c7c9bdda-5d4a-4ce3-bd85-5770c04de87d .shogun-image-content {
  
    align-items: center;
  
}

#s-27eb916b-354b-40d3-9eea-2c13aa3bc6d2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-27eb916b-354b-40d3-9eea-2c13aa3bc6d2 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-b9e00bba-edde-4402-9677-f63b0fa18aba {
  margin-top: 2%;
margin-bottom: 2%;
padding-top: 2%;
padding-left: 2%;
padding-bottom: 2%;
padding-right: 2%;
min-height: 50px;
}








#s-b9e00bba-edde-4402-9677-f63b0fa18aba > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b9e00bba-edde-4402-9677-f63b0fa18aba.shg-box.shg-c {
  justify-content: center;
}

#s-6d66196c-9c68-4a74-900d-334aa1f3c07c {
  text-align: center;
}




  #s-6d66196c-9c68-4a74-900d-334aa1f3c07c img.shogun-image {
    
    width: px;
  }


#s-6d66196c-9c68-4a74-900d-334aa1f3c07c .shogun-image-content {
  
    align-items: center;
  
}

#s-41c1e566-d9e5-4105-b52f-6cd1288fe2d9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-41c1e566-d9e5-4105-b52f-6cd1288fe2d9 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-3d605483-1684-4c43-994e-ecd8011aa980 {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iMTk0MzA2ZGYtODcwYy00Mjg5LTk4ZjQtYWE3MjZjYTUyYjU1IiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwLjA1NTYiIHN0eWxlPSJzdG9wLWNvbG9yOiNiZWJlYmU7c3RvcC1vcGFjaXR5OjEiLz48c3RvcCBvZmZzZXQ9IjAuNTA1IiBzdHlsZT0ic3RvcC1jb2xvcjojZmRmZGZkO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxLjAwIiBzdHlsZT0ic3RvcC1jb2xvcjojYjNiM2IzO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCMxOTQzMDZkZi04NzBjLTQyODktOThmNC1hYTcyNmNhNTJiNTUpIi8+PC9zdmc+);
background-repeat: no-repeat;
padding-left: 3%;
padding-right: 3%;
min-height: 450px;
}








#s-3d605483-1684-4c43-994e-ecd8011aa980 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3d605483-1684-4c43-994e-ecd8011aa980.shg-box.shg-c {
  justify-content: center;
}

#s-58af42a6-34da-4429-be7f-09b1136ec3ec {
  margin-top: 2%;
margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-58af42a6-34da-4429-be7f-09b1136ec3ec"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-22ebaa2b-3346-4e33-83f9-0a015fe07b86 {
  margin-top: 2%;
margin-bottom: 2%;
min-height: 300px;
}








#s-22ebaa2b-3346-4e33-83f9-0a015fe07b86 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-22ebaa2b-3346-4e33-83f9-0a015fe07b86.shg-box.shg-c {
  justify-content: center;
}

#s-17a01e4a-a236-443f-a527-4251e64eb3ee {
  margin-left: auto;
margin-right: auto;
padding-left: 2%;
padding-right: 2%;
max-width: 400px;
text-align: center;
}

#s-4acbe1f5-30f2-498e-a8b7-3e5cc8f5b88c {
  margin-top: 2%;
margin-bottom: 2%;
min-height: 300px;
}








#s-4acbe1f5-30f2-498e-a8b7-3e5cc8f5b88c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4acbe1f5-30f2-498e-a8b7-3e5cc8f5b88c.shg-box.shg-c {
  justify-content: center;
}

#s-205370e3-497d-4c0d-b3d7-4b7abaeba421 {
  margin-top: 2%;
margin-bottom: 2%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-205370e3-497d-4c0d-b3d7-4b7abaeba421 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 27px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-f6f12edb-8746-473c-90aa-217cbb94e46c {
  min-height: 50px;
}








#s-f6f12edb-8746-473c-90aa-217cbb94e46c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f6f12edb-8746-473c-90aa-217cbb94e46c.shg-box.shg-c {
  justify-content: flex-start;
}

@media (min-width: 0px) {
[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-66ff9e93-d90b-4b09-beff-a7d40cc92549"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-639c6f09-576c-4045-9f8e-e0cfbb9960de {
  margin-top: 2%;
margin-bottom: 2%;
min-height: 50px;
}








#s-639c6f09-576c-4045-9f8e-e0cfbb9960de > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-639c6f09-576c-4045-9f8e-e0cfbb9960de.shg-box.shg-c {
  justify-content: flex-start;
}

#s-cb7566f0-da7a-4913-a798-220f6057c78a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cb7566f0-da7a-4913-a798-220f6057c78a .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-feab9342-68d7-44fb-bcab-bc67e8826400 {
  margin-top: 2%;
margin-bottom: 2%;
min-height: 50px;
}








#s-feab9342-68d7-44fb-bcab-bc67e8826400 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-feab9342-68d7-44fb-bcab-bc67e8826400.shg-box.shg-c {
  justify-content: flex-start;
}

#s-209e22aa-cbe3-467c-b9cc-0996cfbe472e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-209e22aa-cbe3-467c-b9cc-0996cfbe472e .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-23671a7e-8c50-44e4-a394-4d4ab0e4de73 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-23671a7e-8c50-44e4-a394-4d4ab0e4de73 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-18295eaf-6a2a-4286-aeb2-2a53e2884052 {
  margin-top: 2%;
margin-bottom: 2%;
}

#s-18295eaf-6a2a-4286-aeb2-2a53e2884052 .shogun-icon-wrapper {
  text-align: center;
}


#s-18295eaf-6a2a-4286-aeb2-2a53e2884052 .shogun-icon-wrapper > a > .shogun-icon {

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

#s-e4356ed2-a492-468d-9033-0a137ff1d02a {
  min-height: 50px;
}








#s-e4356ed2-a492-468d-9033-0a137ff1d02a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e4356ed2-a492-468d-9033-0a137ff1d02a.shg-box.shg-c {
  justify-content: flex-start;
}

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