.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-c4432634-836d-46b2-b721-7c52c3e58190 {
  padding-bottom: 6%;
min-height: 50px;
}








#s-c4432634-836d-46b2-b721-7c52c3e58190 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c4432634-836d-46b2-b721-7c52c3e58190.shg-box.shg-c {
  justify-content: center;
}

#s-1f348b52-7bfd-459f-944d-576dc6264392 {
  min-height: 50px;
}








#s-1f348b52-7bfd-459f-944d-576dc6264392 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1f348b52-7bfd-459f-944d-576dc6264392.shg-box.shg-c {
  justify-content: center;
}

#s-e5e92926-0af7-4dc6-bf55-ba5fbe9bafcf {
  margin-top: 0%;
margin-bottom: 0%;
min-height: 50px;
}








#s-e5e92926-0af7-4dc6-bf55-ba5fbe9bafcf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e5e92926-0af7-4dc6-bf55-ba5fbe9bafcf.shg-box.shg-c {
  justify-content: flex-start;
}

.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-3e9860e0-6f98-4a5d-97d7-b8725fcec53c {
  margin-left: auto;
margin-right: auto;
max-width: 1500px;
}

@media (min-width: 0px) {
[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-3e9860e0-6f98-4a5d-97d7-b8725fcec53c"] > .shg-row {
    flex-flow: column-reverse;
  }
}








#s-4af1826d-2b69-4926-9272-5f41f31058f1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4af1826d-2b69-4926-9272-5f41f31058f1.shg-box.shg-c {
  justify-content: flex-start;
}

#s-1ef35440-2b95-42be-ac3c-788dc11a3ed7 {
  margin-top: 1%;
margin-bottom: 1%;
padding-top: 2%;
padding-bottom: 2%;
min-height: 50px;
background-color: rgba(33, 34, 38, 1);
}








#s-1ef35440-2b95-42be-ac3c-788dc11a3ed7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1ef35440-2b95-42be-ac3c-788dc11a3ed7.shg-box.shg-c {
  justify-content: center;
}

#s-d6635dea-e925-49ab-9b9c-c864bf6ed951 {
  padding-left: 2%;
padding-right: 2%;
}

@media (min-width: 0px) {
[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-d6635dea-e925-49ab-9b9c-c864bf6ed951"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 22.5px);
}

}

#s-77ebb3e2-74e6-45e6-87c8-74aacc827969 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 1px;
border-color: rgba(97, 202, 218, 1);
border-style: solid;
min-height: 50px;
}
@media (max-width: 767px){#s-77ebb3e2-74e6-45e6-87c8-74aacc827969 {
  border-style: solid;
border-color: #000;
border-right-width: 0px;
}
}







#s-77ebb3e2-74e6-45e6-87c8-74aacc827969 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-77ebb3e2-74e6-45e6-87c8-74aacc827969.shg-box.shg-c {
  justify-content: center;
}

#s-4387fef1-ea98-494e-80ff-d224ac6bca68 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 1px;
border-color: rgba(97, 202, 218, 1);
border-style: solid;
min-height: 50px;
}
@media (max-width: 767px){#s-4387fef1-ea98-494e-80ff-d224ac6bca68 {
  border-style: solid;
border-color: #000;
border-right-width: 0px;
}
}







#s-4387fef1-ea98-494e-80ff-d224ac6bca68 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4387fef1-ea98-494e-80ff-d224ac6bca68.shg-box.shg-c {
  justify-content: center;
}

#s-17723f73-31ce-4dc6-b9a9-2e4634caacf6 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 1px;
border-color: rgba(97, 202, 218, 1);
border-style: solid;
min-height: 50px;
}
@media (max-width: 767px){#s-17723f73-31ce-4dc6-b9a9-2e4634caacf6 {
  border-style: solid;
border-color: #000;
border-right-width: 0px;
}
}







#s-17723f73-31ce-4dc6-b9a9-2e4634caacf6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-17723f73-31ce-4dc6-b9a9-2e4634caacf6.shg-box.shg-c {
  justify-content: center;
}

#s-51fa069d-8116-4330-a6eb-1dc354bd80e3 {
  margin-top: 2%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
background-attachment: scroll;
}
@media (min-width: 1200px){#s-51fa069d-8116-4330-a6eb-1dc354bd80e3 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-51fa069d-8116-4330-a6eb-1dc354bd80e3 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-51fa069d-8116-4330-a6eb-1dc354bd80e3 {
  
}
}@media (max-width: 767px){#s-51fa069d-8116-4330-a6eb-1dc354bd80e3 {
  
}
}







#s-51fa069d-8116-4330-a6eb-1dc354bd80e3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-51fa069d-8116-4330-a6eb-1dc354bd80e3.shg-box.shg-c {
  justify-content: flex-start;
}

.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-9e2a7f4d-f23b-4b8d-80be-b9e53a91a78d {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 2%;
padding-bottom: 2%;
text-align: center;
}
@media (max-width: 767px){#s-9e2a7f4d-f23b-4b8d-80be-b9e53a91a78d {
  margin-top: 4%;
margin-bottom: 4%;
padding-top: 4%;
padding-bottom: 4%;
}
}
#s-9e2a7f4d-f23b-4b8d-80be-b9e53a91a78d .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-cc3ed341-5efc-452f-92aa-170e0cc8501c {
  border-style: solid;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(236, 236, 236, 1);
border-radius: 0px;
min-height: 0px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-cc3ed341-5efc-452f-92aa-170e0cc8501c {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-cc3ed341-5efc-452f-92aa-170e0cc8501c {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-cc3ed341-5efc-452f-92aa-170e0cc8501c {
  
}
}@media (max-width: 767px){#s-cc3ed341-5efc-452f-92aa-170e0cc8501c {
  
}
}







#s-cc3ed341-5efc-452f-92aa-170e0cc8501c > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
}#s-cc3ed341-5efc-452f-92aa-170e0cc8501c.shg-box.shg-c {
  justify-content: center;
}

#s-93280e11-dece-4bc0-88b5-792da9dd0db6 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-93280e11-dece-4bc0-88b5-792da9dd0db6"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-c6642882-d906-4432-9b57-2dfa84a43f5e {
  border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 10%;
padding-bottom: 10%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 450px;
background-color: rgba(33, 34, 38, 1);
}
@media (max-width: 767px){#s-c6642882-d906-4432-9b57-2dfa84a43f5e {
  padding-top: 10%;
padding-bottom: 10%;
}
}







#s-c6642882-d906-4432-9b57-2dfa84a43f5e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c6642882-d906-4432-9b57-2dfa84a43f5e.shg-box.shg-c {
  justify-content: center;
}

#s-3d8130b0-2892-4d10-ae10-fb64b8199ebf {
  margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-3d8130b0-2892-4d10-ae10-fb64b8199ebf {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-3d8130b0-2892-4d10-ae10-fb64b8199ebf .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-920a7a11-aa26-44c3-a55a-33611bb89d43 {
  margin-top: 4%;
margin-left: 50px;
margin-bottom: 4%;
margin-right: 50px;
}

#s-872632bf-34e1-425b-b341-65620cdd1220 {
  background-repeat: no-repeat;
background-size: contain;
border-style: solid;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0.57);
min-height: 450px;
background-position: center center;
background-attachment: scroll;
}








#s-872632bf-34e1-425b-b341-65620cdd1220 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-872632bf-34e1-425b-b341-65620cdd1220.shg-box.shg-c {
  justify-content: center;
}

#s-3c5f037d-e516-4ab5-9899-6c0fa0982d14 {
  border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 10%;
padding-bottom: 10%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 450px;
background-color: rgba(33, 34, 38, 1);
}
@media (max-width: 767px){#s-3c5f037d-e516-4ab5-9899-6c0fa0982d14 {
  padding-top: 10%;
padding-bottom: 10%;
}
}







#s-3c5f037d-e516-4ab5-9899-6c0fa0982d14 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3c5f037d-e516-4ab5-9899-6c0fa0982d14.shg-box.shg-c {
  justify-content: center;
}

#s-0b5e05c2-7e3c-49c5-9fb6-b1d2f9c69861 {
  margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-0b5e05c2-7e3c-49c5-9fb6-b1d2f9c69861 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-0b5e05c2-7e3c-49c5-9fb6-b1d2f9c69861 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-960bac7d-763c-45b2-80f8-442bb25bdc7d {
  margin-top: 4%;
margin-left: 50px;
margin-bottom: 4%;
margin-right: 50px;
}

#s-d6bb5688-7383-44e6-8e7b-334660616e9b {
  border-style: solid;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0.57);
min-height: 450px;
background-color: rgba(0, 0, 0, 1);
}








#s-d6bb5688-7383-44e6-8e7b-334660616e9b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d6bb5688-7383-44e6-8e7b-334660616e9b.shg-box.shg-c {
  justify-content: flex-start;
}

.shogun-video {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.shogun-video-16x9 {
  padding-bottom: 56.25%;
}

.shogun-video-4x3 {
  padding-bottom: 75%;
}

.shogun-video-embed {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#s-055eb68c-1251-482a-800b-69c6a98d9da4 {
  margin-top: 50px;
margin-bottom: 50px;
}

#s-0f2ab0fc-3dbd-4bd5-90e9-523b37b9e6f8 {
  border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 10%;
padding-bottom: 10%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 450px;
background-color: rgba(33, 34, 38, 1);
}








#s-0f2ab0fc-3dbd-4bd5-90e9-523b37b9e6f8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0f2ab0fc-3dbd-4bd5-90e9-523b37b9e6f8.shg-box.shg-c {
  justify-content: center;
}

#s-67956f65-b075-445a-b661-9731efdb3c97 {
  margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-67956f65-b075-445a-b661-9731efdb3c97 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-f552b8ec-78d3-4ee4-b369-341622fb23eb {
  margin-top: 4%;
margin-left: 50px;
margin-bottom: 4%;
margin-right: 50px;
}

#s-d9e35f65-0420-4c05-bbba-397ae2083321 {
  background-repeat: no-repeat;
background-size: cover;
border-style: solid;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0.57);
min-height: 450px;
background-position: center center;
}








#s-d9e35f65-0420-4c05-bbba-397ae2083321 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d9e35f65-0420-4c05-bbba-397ae2083321.shg-box.shg-c {
  justify-content: flex-start;
}

#s-a51e4ba7-c2b3-46e6-a704-51d8223a11ab {
  min-height: 50px;
}








#s-a51e4ba7-c2b3-46e6-a704-51d8223a11ab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a51e4ba7-c2b3-46e6-a704-51d8223a11ab.shg-box.shg-c {
  justify-content: center;
}

#s-887f7a06-85f5-42e4-8a68-08e3128b1b4a {
  min-height: 50px;
}








#s-887f7a06-85f5-42e4-8a68-08e3128b1b4a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-887f7a06-85f5-42e4-8a68-08e3128b1b4a.shg-box.shg-c {
  justify-content: center;
}

#s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
background-color: rgba(33, 34, 38, 1);
}
@media (min-width: 1200px){#s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b {
  display: none;
}
#s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b, #wrap-s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b {
  display: none;
}
#s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b, #wrap-s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b {
  display: none;
}
#s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b, #wrap-s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b { display:none !important; }}@media (max-width: 767px){#s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b {
  
}
}
@media (min-width: 0px) {
[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-d2d11402-586a-4c08-8f9c-d9ed0ea80e3b"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-b2d3eaa6-386e-4605-9929-13bd51fd61e9 {
  margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b2d3eaa6-386e-4605-9929-13bd51fd61e9 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: 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-5d293424-0a4a-40c2-9bdb-ad6b75884262 {
  padding-top: 10px;
padding-left: 75px;
padding-bottom: 10px;
padding-right: 75px;
text-align: center;
}
@media (min-width: 1200px){#s-5d293424-0a4a-40c2-9bdb-ad6b75884262 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5d293424-0a4a-40c2-9bdb-ad6b75884262 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-5d293424-0a4a-40c2-9bdb-ad6b75884262 {
  
}
}



  #s-5d293424-0a4a-40c2-9bdb-ad6b75884262 img.shogun-image {
    
    width: px;
  }


#s-5d293424-0a4a-40c2-9bdb-ad6b75884262 .shogun-image-content {
  
    align-items: center;
  
}

#s-299dfef8-f343-4e3d-91ee-1037d852a05e {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
background-color: rgba(33, 34, 38, 1);
}
@media (max-width: 767px){#s-299dfef8-f343-4e3d-91ee-1037d852a05e {
  display: none;
}
#s-299dfef8-f343-4e3d-91ee-1037d852a05e, #wrap-s-299dfef8-f343-4e3d-91ee-1037d852a05e { display:none !important; }}
@media (min-width: 0px) {
[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-299dfef8-f343-4e3d-91ee-1037d852a05e"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-1c39f6f5-2c2b-407f-9f5d-494d41704db3 {
  margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-1c39f6f5-2c2b-407f-9f5d-494d41704db3 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 22px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-14ec20f2-a16f-4119-a0d8-eb2cf4b84ea1 {
  margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
padding-left: 100px;
padding-right: 100px;
text-align: center;
}





#s-14ec20f2-a16f-4119-a0d8-eb2cf4b84ea1 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-e5b2c218-aae7-429c-a008-7d35489212a5"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-6980168c-a1ba-44ca-b3c6-cc1244ae88f5 {
  text-align: center;
}
@media (max-width: 767px){#s-6980168c-a1ba-44ca-b3c6-cc1244ae88f5 {
  margin-top: 0%;
margin-bottom: 4%;
}
}



  #s-6980168c-a1ba-44ca-b3c6-cc1244ae88f5 img.shogun-image {
    
    width: px;
  }


#s-6980168c-a1ba-44ca-b3c6-cc1244ae88f5 .shogun-image-content {
  
    align-items: center;
  
}

#s-ae9c4eed-e0ab-4de8-81b1-125be7fbc13e {
  text-align: center;
}
@media (max-width: 767px){#s-ae9c4eed-e0ab-4de8-81b1-125be7fbc13e {
  margin-top: 0%;
margin-bottom: 4%;
}
}



  #s-ae9c4eed-e0ab-4de8-81b1-125be7fbc13e img.shogun-image {
    
    width: px;
  }


#s-ae9c4eed-e0ab-4de8-81b1-125be7fbc13e .shogun-image-content {
  
    align-items: center;
  
}

#s-304d53aa-0f2c-445f-8538-5b17d4710db5 {
  text-align: center;
}
@media (max-width: 767px){#s-304d53aa-0f2c-445f-8538-5b17d4710db5 {
  margin-top: 0%;
margin-bottom: 4%;
}
}



  #s-304d53aa-0f2c-445f-8538-5b17d4710db5 img.shogun-image {
    
    width: px;
  }


#s-304d53aa-0f2c-445f-8538-5b17d4710db5 .shogun-image-content {
  
    align-items: center;
  
}

#s-4349559a-960e-47ac-a1bc-7695cc36e132 {
  text-align: center;
}
@media (max-width: 767px){#s-4349559a-960e-47ac-a1bc-7695cc36e132 {
  margin-top: 0%;
margin-bottom: 4%;
}
}



  #s-4349559a-960e-47ac-a1bc-7695cc36e132 img.shogun-image {
    
    width: px;
  }


#s-4349559a-960e-47ac-a1bc-7695cc36e132 .shogun-image-content {
  
    align-items: center;
  
}

#s-7a0c67f2-f735-4d50-b059-d6922df5c0b0 {
  text-align: center;
}
@media (max-width: 767px){#s-7a0c67f2-f735-4d50-b059-d6922df5c0b0 {
  margin-bottom: 4%;
}
}



  #s-7a0c67f2-f735-4d50-b059-d6922df5c0b0 img.shogun-image {
    
    width: px;
  }


#s-7a0c67f2-f735-4d50-b059-d6922df5c0b0 .shogun-image-content {
  
    align-items: center;
  
}

#s-c67ae407-68b1-4ad7-860e-b7c9c2e89339 {
  text-align: center;
}
@media (max-width: 767px){#s-c67ae407-68b1-4ad7-860e-b7c9c2e89339 {
  margin-bottom: 4%;
}
}



  #s-c67ae407-68b1-4ad7-860e-b7c9c2e89339 img.shogun-image {
    
    width: px;
  }


#s-c67ae407-68b1-4ad7-860e-b7c9c2e89339 .shogun-image-content {
  
    align-items: center;
  
}

#s-2f29b7ba-7698-4182-8f1b-2904f732ac93 {
  min-height: 50px;
}








#s-2f29b7ba-7698-4182-8f1b-2904f732ac93 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2f29b7ba-7698-4182-8f1b-2904f732ac93.shg-box.shg-c {
  justify-content: center;
}

#s-56170025-ada9-4d5e-bd38-971a6a950a15 {
  margin-top: 0%;
margin-bottom: 0%;
padding-top: 4%;
padding-bottom: 4%;
text-align: center;
}
@media (max-width: 767px){#s-56170025-ada9-4d5e-bd38-971a6a950a15 {
  padding-top: 6%;
padding-bottom: 6%;
}
}
#s-56170025-ada9-4d5e-bd38-971a6a950a15 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-8bbe79db-c018-4de7-bbfd-d2918b5bbaed {
  min-height: 50px;
}








#s-8bbe79db-c018-4de7-bbfd-d2918b5bbaed > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8bbe79db-c018-4de7-bbfd-d2918b5bbaed.shg-box.shg-c {
  justify-content: center;
}

#s-f4f59f18-2e67-4b11-b5f0-578d9ca276d2 {
  padding-top: 0%;
padding-bottom: 2%;
min-height: 50px;
}








#s-f4f59f18-2e67-4b11-b5f0-578d9ca276d2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f4f59f18-2e67-4b11-b5f0-578d9ca276d2.shg-box.shg-c {
  justify-content: center;
}

.shg-sld-content {
  width: 100%;
  position: relative;
}

.shg-sld-slides {
  word-break: break-word;
  position: relative;
}

.shg-sld-slides-padded {
  padding: 0 35px;
}

.shg-sld-nav-button {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 0;
  width: 35px;
  height: 100%;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.shg-sld-nav-button > svg {
  height: 100%;
  width: 100%;
}

.shg-sld-nav-button.shg-sld-left {
  left: 0;
}

.shg-sld-nav-button.shg-sld-left-over-content {
  left: 2%;
}

.shg-sld-nav-button.shg-sld-right {
  right: 0;
}

.shg-sld-nav-button.shg-sld-right-over-content {
  right: 2%;
}

.shg-sld-nav-button.shg-sld-disabled {
  cursor: default;
  opacity: 0.2;
}

.shg-sld-item {
  display: none;
}

.shg-sld-item.shg-sld-active {
  display: block;
}

.shg-sld-dots {
  margin-top: 10px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.shg-sld-dots-on-top {
  margin-top: -30px !important;
}

.shg-sld-dot {
  cursor: pointer;
  display: inline-block;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  margin-left: 5px;
  opacity: 0.5;
}

.shg-sld-dot:first-child {
  margin-left: 0px;
}

.shg-sld-dot.shg-sld-active {
  opacity: 1;
}

.shg-sld-fade {
  -webkit-animation-name: shg-sld-fade;
          animation-name: shg-sld-fade;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  image-rendering: -webkit-optimize-contrast;
}

@-webkit-keyframes shg-sld-fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

@keyframes shg-sld-fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

#s-370fd69c-44c8-4e4c-96e3-58b0e5e0e19e {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 1500px;
}

#s-370fd69c-44c8-4e4c-96e3-58b0e5e0e19e .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-370fd69c-44c8-4e4c-96e3-58b0e5e0e19e .shg-sld-nav-button.shg-sld-left,
#s-370fd69c-44c8-4e4c-96e3-58b0e5e0e19e .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

@media (min-width: 0px) {
[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-c920c20c-7fa1-4adb-9265-71a2c9e5ab9a"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-db8eff52-e49e-4832-89f0-056aa053d5b6 {
  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-b42087a9-9f43-4c1e-bd5e-2d944f01dd72 {
  text-align: center;
}


.shg-c#s-b42087a9-9f43-4c1e-bd5e-2d944f01dd72 {
  max-width: 100%;
}

.shg-c#s-b42087a9-9f43-4c1e-bd5e-2d944f01dd72 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b42087a9-9f43-4c1e-bd5e-2d944f01dd72 .shg-image-zoom,
.shg-c#s-b42087a9-9f43-4c1e-bd5e-2d944f01dd72 img.shogun-image {
  max-width: 60% !important;
  min-height:  !important;
}

.shg-c#s-b42087a9-9f43-4c1e-bd5e-2d944f01dd72 .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-b42087a9-9f43-4c1e-bd5e-2d944f01dd72 {
  max-width: 100%;
}

.shg-c#s-b42087a9-9f43-4c1e-bd5e-2d944f01dd72 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b42087a9-9f43-4c1e-bd5e-2d944f01dd72 .shg-image-zoom,
.shg-c#s-b42087a9-9f43-4c1e-bd5e-2d944f01dd72 img.shogun-image {
  max-width: 60% !important;
  min-height:  !important;
}

.shg-c#s-b42087a9-9f43-4c1e-bd5e-2d944f01dd72 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-b42087a9-9f43-4c1e-bd5e-2d944f01dd72 {
  max-width: 100%;
}

.shg-c#s-b42087a9-9f43-4c1e-bd5e-2d944f01dd72 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b42087a9-9f43-4c1e-bd5e-2d944f01dd72 .shg-image-zoom,
.shg-c#s-b42087a9-9f43-4c1e-bd5e-2d944f01dd72 img.shogun-image {
  max-width: 60% !important;
  min-height:  !important;
}

.shg-c#s-b42087a9-9f43-4c1e-bd5e-2d944f01dd72 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-b42087a9-9f43-4c1e-bd5e-2d944f01dd72 {
  max-width: 100%;
}

.shg-c#s-b42087a9-9f43-4c1e-bd5e-2d944f01dd72 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b42087a9-9f43-4c1e-bd5e-2d944f01dd72 .shg-image-zoom,
.shg-c#s-b42087a9-9f43-4c1e-bd5e-2d944f01dd72 img.shogun-image {
  max-width: 60% !important;
  min-height:  !important;
}

.shg-c#s-b42087a9-9f43-4c1e-bd5e-2d944f01dd72 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-b42087a9-9f43-4c1e-bd5e-2d944f01dd72 {
  max-width: 100%;
}

.shg-c#s-b42087a9-9f43-4c1e-bd5e-2d944f01dd72 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b42087a9-9f43-4c1e-bd5e-2d944f01dd72 .shg-image-zoom,
.shg-c#s-b42087a9-9f43-4c1e-bd5e-2d944f01dd72 img.shogun-image {
  max-width: 60% !important;
  min-height:  !important;
}

.shg-c#s-b42087a9-9f43-4c1e-bd5e-2d944f01dd72 .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-58149c27-29f4-48f8-b449-632836ff7be0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-58149c27-29f4-48f8-b449-632836ff7be0 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-4d1da64f-502f-4245-b257-618a3c8972e6 {
  text-align: center;
}

#s-4d1da64f-502f-4245-b257-618a3c8972e6 .shg-product-sold-out {
  display: none;
  color: rgba(252, 83, 9, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-4d1da64f-502f-4245-b257-618a3c8972e6 .shg-product-price {
  color: rgba(252, 83, 9, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-4d1da64f-502f-4245-b257-618a3c8972e6 .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-317df35c-3592-41d6-b001-fcd6c600688a {
  display: none;
}
#s-b3af7f04-9018-460a-879a-3302e02aff2f {
  text-align: center;
}


.shg-c#s-b3af7f04-9018-460a-879a-3302e02aff2f {
  max-width: 100%;
}

.shg-c#s-b3af7f04-9018-460a-879a-3302e02aff2f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b3af7f04-9018-460a-879a-3302e02aff2f .shg-image-zoom,
.shg-c#s-b3af7f04-9018-460a-879a-3302e02aff2f img.shogun-image {
  max-width: 60% !important;
  min-height:  !important;
}

.shg-c#s-b3af7f04-9018-460a-879a-3302e02aff2f .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-b3af7f04-9018-460a-879a-3302e02aff2f {
  max-width: 100%;
}

.shg-c#s-b3af7f04-9018-460a-879a-3302e02aff2f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b3af7f04-9018-460a-879a-3302e02aff2f .shg-image-zoom,
.shg-c#s-b3af7f04-9018-460a-879a-3302e02aff2f img.shogun-image {
  max-width: 60% !important;
  min-height:  !important;
}

.shg-c#s-b3af7f04-9018-460a-879a-3302e02aff2f .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-b3af7f04-9018-460a-879a-3302e02aff2f {
  max-width: 100%;
}

.shg-c#s-b3af7f04-9018-460a-879a-3302e02aff2f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b3af7f04-9018-460a-879a-3302e02aff2f .shg-image-zoom,
.shg-c#s-b3af7f04-9018-460a-879a-3302e02aff2f img.shogun-image {
  max-width: 60% !important;
  min-height:  !important;
}

.shg-c#s-b3af7f04-9018-460a-879a-3302e02aff2f .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-b3af7f04-9018-460a-879a-3302e02aff2f {
  max-width: 100%;
}

.shg-c#s-b3af7f04-9018-460a-879a-3302e02aff2f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b3af7f04-9018-460a-879a-3302e02aff2f .shg-image-zoom,
.shg-c#s-b3af7f04-9018-460a-879a-3302e02aff2f img.shogun-image {
  max-width: 60% !important;
  min-height:  !important;
}

.shg-c#s-b3af7f04-9018-460a-879a-3302e02aff2f .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-b3af7f04-9018-460a-879a-3302e02aff2f {
  max-width: 100%;
}

.shg-c#s-b3af7f04-9018-460a-879a-3302e02aff2f img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-b3af7f04-9018-460a-879a-3302e02aff2f .shg-image-zoom,
.shg-c#s-b3af7f04-9018-460a-879a-3302e02aff2f img.shogun-image {
  max-width: 60% !important;
  min-height:  !important;
}

.shg-c#s-b3af7f04-9018-460a-879a-3302e02aff2f .shg-image-zoom {
  
    margin: 0 auto;
  
}

}
#s-2b674e8b-b183-49c5-9fa6-549d1f8e4782 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2b674e8b-b183-49c5-9fa6-549d1f8e4782 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-0bc489ab-8b6c-485b-84d9-15dc9a4f0a03 {
  text-align: center;
}

#s-0bc489ab-8b6c-485b-84d9-15dc9a4f0a03 .shg-product-sold-out {
  display: none;
  color: rgba(252, 83, 9, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-0bc489ab-8b6c-485b-84d9-15dc9a4f0a03 .shg-product-price {
  color: rgba(252, 83, 9, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-0bc489ab-8b6c-485b-84d9-15dc9a4f0a03 .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-d37c6f76-d680-4e6b-838c-041d4f5b4b53 {
  display: none;
}
#s-8349fcd6-57bd-4310-b6ce-6b0120d525e3 {
  text-align: center;
}


.shg-c#s-8349fcd6-57bd-4310-b6ce-6b0120d525e3 {
  max-width: 100%;
}

.shg-c#s-8349fcd6-57bd-4310-b6ce-6b0120d525e3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8349fcd6-57bd-4310-b6ce-6b0120d525e3 .shg-image-zoom,
.shg-c#s-8349fcd6-57bd-4310-b6ce-6b0120d525e3 img.shogun-image {
  max-width: 60% !important;
  min-height:  !important;
}

.shg-c#s-8349fcd6-57bd-4310-b6ce-6b0120d525e3 .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-8349fcd6-57bd-4310-b6ce-6b0120d525e3 {
  max-width: 100%;
}

.shg-c#s-8349fcd6-57bd-4310-b6ce-6b0120d525e3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8349fcd6-57bd-4310-b6ce-6b0120d525e3 .shg-image-zoom,
.shg-c#s-8349fcd6-57bd-4310-b6ce-6b0120d525e3 img.shogun-image {
  max-width: 60% !important;
  min-height:  !important;
}

.shg-c#s-8349fcd6-57bd-4310-b6ce-6b0120d525e3 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-8349fcd6-57bd-4310-b6ce-6b0120d525e3 {
  max-width: 100%;
}

.shg-c#s-8349fcd6-57bd-4310-b6ce-6b0120d525e3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8349fcd6-57bd-4310-b6ce-6b0120d525e3 .shg-image-zoom,
.shg-c#s-8349fcd6-57bd-4310-b6ce-6b0120d525e3 img.shogun-image {
  max-width: 60% !important;
  min-height:  !important;
}

.shg-c#s-8349fcd6-57bd-4310-b6ce-6b0120d525e3 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-8349fcd6-57bd-4310-b6ce-6b0120d525e3 {
  max-width: 100%;
}

.shg-c#s-8349fcd6-57bd-4310-b6ce-6b0120d525e3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8349fcd6-57bd-4310-b6ce-6b0120d525e3 .shg-image-zoom,
.shg-c#s-8349fcd6-57bd-4310-b6ce-6b0120d525e3 img.shogun-image {
  max-width: 60% !important;
  min-height:  !important;
}

.shg-c#s-8349fcd6-57bd-4310-b6ce-6b0120d525e3 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-8349fcd6-57bd-4310-b6ce-6b0120d525e3 {
  max-width: 100%;
}

.shg-c#s-8349fcd6-57bd-4310-b6ce-6b0120d525e3 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8349fcd6-57bd-4310-b6ce-6b0120d525e3 .shg-image-zoom,
.shg-c#s-8349fcd6-57bd-4310-b6ce-6b0120d525e3 img.shogun-image {
  max-width: 60% !important;
  min-height:  !important;
}

.shg-c#s-8349fcd6-57bd-4310-b6ce-6b0120d525e3 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}
#s-2eff20af-3503-490f-985c-265d18f6bc52 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2eff20af-3503-490f-985c-265d18f6bc52 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-04cdde67-7317-4015-b9b8-87a076d39881 {
  text-align: center;
}

#s-04cdde67-7317-4015-b9b8-87a076d39881 .shg-product-sold-out {
  display: none;
  color: rgba(252, 83, 9, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-04cdde67-7317-4015-b9b8-87a076d39881 .shg-product-price {
  color: rgba(252, 83, 9, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-04cdde67-7317-4015-b9b8-87a076d39881 .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;
}

@media (min-width: 0px) {
[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-4b70d116-ad37-490f-96a8-c230a321889a"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-ffd3209a-fefa-4f7d-87d9-8fa3c659b08b {
  display: none;
}
#s-8790854a-092b-4a81-b5fd-c4aa9896e61b {
  margin-left: auto;
margin-right: auto;
text-align: center;
}


.shg-c#s-8790854a-092b-4a81-b5fd-c4aa9896e61b {
  max-width: 100%;
}

.shg-c#s-8790854a-092b-4a81-b5fd-c4aa9896e61b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8790854a-092b-4a81-b5fd-c4aa9896e61b .shg-image-zoom,
.shg-c#s-8790854a-092b-4a81-b5fd-c4aa9896e61b img.shogun-image {
  max-width: 60% !important;
  min-height:  !important;
}

.shg-c#s-8790854a-092b-4a81-b5fd-c4aa9896e61b .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-8790854a-092b-4a81-b5fd-c4aa9896e61b {
  max-width: 100%;
}

.shg-c#s-8790854a-092b-4a81-b5fd-c4aa9896e61b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8790854a-092b-4a81-b5fd-c4aa9896e61b .shg-image-zoom,
.shg-c#s-8790854a-092b-4a81-b5fd-c4aa9896e61b img.shogun-image {
  max-width: 60% !important;
  min-height:  !important;
}

.shg-c#s-8790854a-092b-4a81-b5fd-c4aa9896e61b .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-8790854a-092b-4a81-b5fd-c4aa9896e61b {
  max-width: 100%;
}

.shg-c#s-8790854a-092b-4a81-b5fd-c4aa9896e61b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8790854a-092b-4a81-b5fd-c4aa9896e61b .shg-image-zoom,
.shg-c#s-8790854a-092b-4a81-b5fd-c4aa9896e61b img.shogun-image {
  max-width: 60% !important;
  min-height:  !important;
}

.shg-c#s-8790854a-092b-4a81-b5fd-c4aa9896e61b .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-8790854a-092b-4a81-b5fd-c4aa9896e61b {
  max-width: 100%;
}

.shg-c#s-8790854a-092b-4a81-b5fd-c4aa9896e61b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8790854a-092b-4a81-b5fd-c4aa9896e61b .shg-image-zoom,
.shg-c#s-8790854a-092b-4a81-b5fd-c4aa9896e61b img.shogun-image {
  max-width: 60% !important;
  min-height:  !important;
}

.shg-c#s-8790854a-092b-4a81-b5fd-c4aa9896e61b .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-8790854a-092b-4a81-b5fd-c4aa9896e61b {
  max-width: 100%;
}

.shg-c#s-8790854a-092b-4a81-b5fd-c4aa9896e61b img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8790854a-092b-4a81-b5fd-c4aa9896e61b .shg-image-zoom,
.shg-c#s-8790854a-092b-4a81-b5fd-c4aa9896e61b img.shogun-image {
  max-width: 80% !important;
  min-height:  !important;
}

.shg-c#s-8790854a-092b-4a81-b5fd-c4aa9896e61b .shg-image-zoom {
  
    margin: 0 auto;
  
}

}
#s-c6e6c4ed-f625-4192-a683-27306efd9504 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c6e6c4ed-f625-4192-a683-27306efd9504 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}
@media (max-width: 767px){#s-c6e6c4ed-f625-4192-a683-27306efd9504 .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}
}
#s-07227240-9510-404f-8920-98dc1961b2a2 {
  text-align: center;
}

#s-07227240-9510-404f-8920-98dc1961b2a2 .shg-product-sold-out {
  display: none;
  color: rgba(252, 83, 9, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-07227240-9510-404f-8920-98dc1961b2a2 .shg-product-price {
  color: rgba(252, 83, 9, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-07227240-9510-404f-8920-98dc1961b2a2 .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-c9f0f05f-0623-4114-bdf7-199667bb7fec {
  display: none;
}
#s-8a7e72fa-65a2-4af3-b3ce-26878bef55a4 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}


.shg-c#s-8a7e72fa-65a2-4af3-b3ce-26878bef55a4 {
  max-width: 100%;
}

.shg-c#s-8a7e72fa-65a2-4af3-b3ce-26878bef55a4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8a7e72fa-65a2-4af3-b3ce-26878bef55a4 .shg-image-zoom,
.shg-c#s-8a7e72fa-65a2-4af3-b3ce-26878bef55a4 img.shogun-image {
  max-width: 60% !important;
  min-height:  !important;
}

.shg-c#s-8a7e72fa-65a2-4af3-b3ce-26878bef55a4 .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-8a7e72fa-65a2-4af3-b3ce-26878bef55a4 {
  max-width: 100%;
}

.shg-c#s-8a7e72fa-65a2-4af3-b3ce-26878bef55a4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8a7e72fa-65a2-4af3-b3ce-26878bef55a4 .shg-image-zoom,
.shg-c#s-8a7e72fa-65a2-4af3-b3ce-26878bef55a4 img.shogun-image {
  max-width: 60% !important;
  min-height:  !important;
}

.shg-c#s-8a7e72fa-65a2-4af3-b3ce-26878bef55a4 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-8a7e72fa-65a2-4af3-b3ce-26878bef55a4 {
  max-width: 100%;
}

.shg-c#s-8a7e72fa-65a2-4af3-b3ce-26878bef55a4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8a7e72fa-65a2-4af3-b3ce-26878bef55a4 .shg-image-zoom,
.shg-c#s-8a7e72fa-65a2-4af3-b3ce-26878bef55a4 img.shogun-image {
  max-width: 60% !important;
  min-height:  !important;
}

.shg-c#s-8a7e72fa-65a2-4af3-b3ce-26878bef55a4 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-8a7e72fa-65a2-4af3-b3ce-26878bef55a4 {
  max-width: 100%;
}

.shg-c#s-8a7e72fa-65a2-4af3-b3ce-26878bef55a4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8a7e72fa-65a2-4af3-b3ce-26878bef55a4 .shg-image-zoom,
.shg-c#s-8a7e72fa-65a2-4af3-b3ce-26878bef55a4 img.shogun-image {
  max-width: 60% !important;
  min-height:  !important;
}

.shg-c#s-8a7e72fa-65a2-4af3-b3ce-26878bef55a4 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-8a7e72fa-65a2-4af3-b3ce-26878bef55a4 {
  max-width: 100%;
}

.shg-c#s-8a7e72fa-65a2-4af3-b3ce-26878bef55a4 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-8a7e72fa-65a2-4af3-b3ce-26878bef55a4 .shg-image-zoom,
.shg-c#s-8a7e72fa-65a2-4af3-b3ce-26878bef55a4 img.shogun-image {
  max-width: 80% !important;
  min-height:  !important;
}

.shg-c#s-8a7e72fa-65a2-4af3-b3ce-26878bef55a4 .shg-image-zoom {
  
    margin: 0 auto;
  
}

}
#s-94cf2acf-fc9b-40f3-9813-797fb9111bda {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-94cf2acf-fc9b-40f3-9813-797fb9111bda .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}

#s-08cfdfec-6b71-4e0b-91c0-24e50aec7ec2 {
  text-align: center;
}

#s-08cfdfec-6b71-4e0b-91c0-24e50aec7ec2 .shg-product-sold-out {
  display: none;
  color: rgba(252, 83, 9, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-08cfdfec-6b71-4e0b-91c0-24e50aec7ec2 .shg-product-price {
  color: rgba(252, 83, 9, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-08cfdfec-6b71-4e0b-91c0-24e50aec7ec2 .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;
}
@media (max-width: 767px){#s-08cfdfec-6b71-4e0b-91c0-24e50aec7ec2 .shg-product-sold-out {
  display: none;
  color: rgba(252, 83, 9, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-08cfdfec-6b71-4e0b-91c0-24e50aec7ec2 .shg-product-price {
  color: rgba(252, 83, 9, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
}

#s-08cfdfec-6b71-4e0b-91c0-24e50aec7ec2 .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-97999daa-9f24-4aec-9cb4-48c0c1b29c56 {
  display: none;
}
#s-dd633f8c-e433-4b43-83cc-a82987b0cf7d {
  margin-left: auto;
margin-right: auto;
text-align: center;
}


.shg-c#s-dd633f8c-e433-4b43-83cc-a82987b0cf7d {
  max-width: 100%;
}

.shg-c#s-dd633f8c-e433-4b43-83cc-a82987b0cf7d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-dd633f8c-e433-4b43-83cc-a82987b0cf7d .shg-image-zoom,
.shg-c#s-dd633f8c-e433-4b43-83cc-a82987b0cf7d img.shogun-image {
  max-width: 60% !important;
  min-height:  !important;
}

.shg-c#s-dd633f8c-e433-4b43-83cc-a82987b0cf7d .shg-image-zoom {
  
    margin: 0 auto;
  
}

@media (min-width: 1200px){
.shg-c#s-dd633f8c-e433-4b43-83cc-a82987b0cf7d {
  max-width: 100%;
}

.shg-c#s-dd633f8c-e433-4b43-83cc-a82987b0cf7d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-dd633f8c-e433-4b43-83cc-a82987b0cf7d .shg-image-zoom,
.shg-c#s-dd633f8c-e433-4b43-83cc-a82987b0cf7d img.shogun-image {
  max-width: 60% !important;
  min-height:  !important;
}

.shg-c#s-dd633f8c-e433-4b43-83cc-a82987b0cf7d .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-dd633f8c-e433-4b43-83cc-a82987b0cf7d {
  max-width: 100%;
}

.shg-c#s-dd633f8c-e433-4b43-83cc-a82987b0cf7d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-dd633f8c-e433-4b43-83cc-a82987b0cf7d .shg-image-zoom,
.shg-c#s-dd633f8c-e433-4b43-83cc-a82987b0cf7d img.shogun-image {
  max-width: 60% !important;
  min-height:  !important;
}

.shg-c#s-dd633f8c-e433-4b43-83cc-a82987b0cf7d .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-dd633f8c-e433-4b43-83cc-a82987b0cf7d {
  max-width: 100%;
}

.shg-c#s-dd633f8c-e433-4b43-83cc-a82987b0cf7d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-dd633f8c-e433-4b43-83cc-a82987b0cf7d .shg-image-zoom,
.shg-c#s-dd633f8c-e433-4b43-83cc-a82987b0cf7d img.shogun-image {
  max-width: 60% !important;
  min-height:  !important;
}

.shg-c#s-dd633f8c-e433-4b43-83cc-a82987b0cf7d .shg-image-zoom {
  
    margin: 0 auto;
  
}

}@media (max-width: 767px){
.shg-c#s-dd633f8c-e433-4b43-83cc-a82987b0cf7d {
  max-width: 100%;
}

.shg-c#s-dd633f8c-e433-4b43-83cc-a82987b0cf7d img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-dd633f8c-e433-4b43-83cc-a82987b0cf7d .shg-image-zoom,
.shg-c#s-dd633f8c-e433-4b43-83cc-a82987b0cf7d img.shogun-image {
  max-width: 80% !important;
  min-height:  !important;
}

.shg-c#s-dd633f8c-e433-4b43-83cc-a82987b0cf7d .shg-image-zoom {
  
    margin: 0 auto;
  
}

}
#s-9d5ae9c5-db49-4237-9ea9-e58e852cd2aa {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9d5ae9c5-db49-4237-9ea9-e58e852cd2aa .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
}
@media (max-width: 767px){#s-9d5ae9c5-db49-4237-9ea9-e58e852cd2aa .shg-product-title-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 14px;
  line-height: ;
  letter-spacing: ;
}
}
#s-a2b0c778-1dea-4ab4-8f21-0d05fe774f44 {
  text-align: center;
}

#s-a2b0c778-1dea-4ab4-8f21-0d05fe774f44 .shg-product-sold-out {
  display: none;
  color: rgba(252, 83, 9, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-a2b0c778-1dea-4ab4-8f21-0d05fe774f44 .shg-product-price {
  color: rgba(252, 83, 9, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-a2b0c778-1dea-4ab4-8f21-0d05fe774f44 .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;
}
@media (max-width: 767px){#s-a2b0c778-1dea-4ab4-8f21-0d05fe774f44 .shg-product-sold-out {
  display: none;
  color: rgba(252, 83, 9, 1);
  font-size: 16px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-a2b0c778-1dea-4ab4-8f21-0d05fe774f44 .shg-product-price {
  color: rgba(252, 83, 9, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
}

#s-a2b0c778-1dea-4ab4-8f21-0d05fe774f44 .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-2fe7ee8c-eaee-4f53-a283-916f685f52ec {
  margin-left: auto;
margin-right: auto;
padding-left: 12%;
padding-right: 12%;
min-height: 50px;
max-width: 1500px;
}
@media (max-width: 767px){#s-2fe7ee8c-eaee-4f53-a283-916f685f52ec {
  padding-left: 4%;
padding-right: 4%;
}
}







#s-2fe7ee8c-eaee-4f53-a283-916f685f52ec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2fe7ee8c-eaee-4f53-a283-916f685f52ec.shg-box.shg-c {
  justify-content: center;
}

#s-cd69d592-35eb-4827-8e44-8f891fbda81f {
  padding-top: 2%;
padding-bottom: 4%;
text-align: center;
}
@media (max-width: 767px){#s-cd69d592-35eb-4827-8e44-8f891fbda81f {
  padding-bottom: 8%;
}
}
#s-cd69d592-35eb-4827-8e44-8f891fbda81f .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-f7950727-6481-4f8d-b184-b9af9eac4b42 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 255, 255, 1);
}

#s-f7950727-6481-4f8d-b184-b9af9eac4b42 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 2%;
}

#s-f7950727-6481-4f8d-b184-b9af9eac4b42 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(33, 33, 33, 1);
}

#s-f7950727-6481-4f8d-b184-b9af9eac4b42 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-f7950727-6481-4f8d-b184-b9af9eac4b42 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(33, 33, 33, 1);
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 1.8em;
}

#s-f7950727-6481-4f8d-b184-b9af9eac4b42 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 1.8em;
}
@media (min-width: 0px) {
[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 5.0px);
}

[id="s-89d252a0-a6a7-489c-8be8-475ae72242cc"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 5.0px);
}

}

#s-7a3ccb94-a1fe-4d03-8e6c-614b41c9ce93 {
  text-align: center;
}




  #s-7a3ccb94-a1fe-4d03-8e6c-614b41c9ce93 img.shogun-image {
    
    width: px;
  }


#s-7a3ccb94-a1fe-4d03-8e6c-614b41c9ce93 .shogun-image-content {
  
    align-items: center;
  
}

#s-5df93deb-678f-4931-8065-e56546bfc298 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-5df93deb-678f-4931-8065-e56546bfc298 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



@media (min-width: 0px) {
[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 5.0px);
}

[id="s-f41ea9fe-6e42-4021-b0fe-1739ce35d7e6"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 5.0px);
}

}

#s-0289a0fa-9f7c-4bee-90ac-fba367175905 {
  text-align: center;
}




  #s-0289a0fa-9f7c-4bee-90ac-fba367175905 img.shogun-image {
    
    width: px;
  }


#s-0289a0fa-9f7c-4bee-90ac-fba367175905 .shogun-image-content {
  
    align-items: center;
  
}

.shogun-table-wrapper {
  overflow: auto;
}

table.shogun-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  border-style: hidden;
}

thead.shogun-table-column-container {
  font-weight: bold;
}

td.shogun-table-column {
  padding: 10px;
}

td.shogun-table-row {
  padding: 10px;
  min-height: 45px;
}

td.shogun-table-column:only-child, td.shogun-table-row:only-child {
  width: 100%;
}

#s-f4273317-2df2-42e8-a1ad-9034d5c34434 {
  padding-top: 2%;
padding-bottom: 2%;
}

#s-f4273317-2df2-42e8-a1ad-9034d5c34434 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-f4273317-2df2-42e8-a1ad-9034d5c34434 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-f4273317-2df2-42e8-a1ad-9034d5c34434 td.shogun-table-column {
  background-color: #fff;
  padding: 0px;
  text-align: inherit;
}

#s-f4273317-2df2-42e8-a1ad-9034d5c34434 td.shogun-table-row {
  background-color: #fff;
  padding: 0px;
}

#s-f4273317-2df2-42e8-a1ad-9034d5c34434 td.shogun-table-column, #s-f4273317-2df2-42e8-a1ad-9034d5c34434 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-e09e60ff-4887-4469-a2eb-b07524223918 {
  border-style: solid;
padding-top: 2%;
padding-bottom: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(97, 202, 218, 1);
border-style: solid;
}

#s-ef8b28f7-d562-46b9-b96d-5768756a4750 {
  border-style: solid;
padding-top: 2%;
padding-bottom: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(97, 202, 218, 1);
border-style: solid;
}

#s-4bae4ab5-1311-4154-adf3-15f467403afc {
  border-style: solid;
padding-top: 2%;
padding-bottom: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(97, 202, 218, 1);
border-style: solid;
}

#s-e57fbe79-f7ad-47eb-8721-0b1c81778a5c {
  border-style: solid;
padding-top: 2%;
padding-bottom: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(97, 202, 218, 1);
border-style: solid;
}

#s-e5353d98-3b2c-4eee-b5e6-136d9bec4956 {
  border-style: solid;
padding-top: 2%;
padding-bottom: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(97, 202, 218, 1);
border-style: solid;
}

#s-a930d7b3-c791-45c1-ab5a-1d4f0640d2e6 {
  border-style: solid;
padding-top: 2%;
padding-bottom: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(97, 202, 218, 1);
border-style: solid;
}

#s-709d4e51-c057-4953-925d-fc3ac9f1fb9c {
  border-style: solid;
padding-top: 2%;
padding-bottom: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(97, 202, 218, 1);
border-style: solid;
}

#s-507e03b1-b103-4d87-a40e-47b6764ea403 {
  border-style: solid;
padding-top: 2%;
padding-bottom: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(97, 202, 218, 1);
border-style: solid;
}

#s-7ba3ccc2-4827-4a3d-8c60-7939e9f5d424 {
  border-style: solid;
padding-top: 2%;
padding-bottom: 2%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 1px;
border-right-width: 0px;
border-color: rgba(97, 202, 218, 1);
border-style: solid;
}

#s-d284d30a-ff74-43cd-af93-b57244529005 {
  border-style: solid;
padding-left: 2%;
padding-right: 2%;
border-top-width: 1px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(244, 244, 244, 1);
border-style: solid;
}

@media (min-width: 0px) {
[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-d284d30a-ff74-43cd-af93-b57244529005"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-6b31bf85-ca0c-4d38-93d8-5ab8b65105f0 .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-6b31bf85-ca0c-4d38-93d8-5ab8b65105f0 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-6b31bf85-ca0c-4d38-93d8-5ab8b65105f0 td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
}

#s-6b31bf85-ca0c-4d38-93d8-5ab8b65105f0 td.shogun-table-row {
  background-color: #fff;
  padding: 5px;
}

#s-6b31bf85-ca0c-4d38-93d8-5ab8b65105f0 td.shogun-table-column, #s-6b31bf85-ca0c-4d38-93d8-5ab8b65105f0 td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-26447da7-ecbd-4f62-9eae-a0c1e3a86a7f .shogun-table-wrapper {
  overflow: auto;
  border: 0px solid #D5D6D7;
  border-radius: 0px;
}

#s-26447da7-ecbd-4f62-9eae-a0c1e3a86a7f table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-26447da7-ecbd-4f62-9eae-a0c1e3a86a7f td.shogun-table-column {
  background-color: #fff;
  padding: 10px;
  text-align: inherit;
}

#s-26447da7-ecbd-4f62-9eae-a0c1e3a86a7f td.shogun-table-row {
  background-color: #fff;
  padding: 5px;
}

#s-26447da7-ecbd-4f62-9eae-a0c1e3a86a7f td.shogun-table-column, #s-26447da7-ecbd-4f62-9eae-a0c1e3a86a7f td.shogun-table-row {
  border: 0px solid #D5D6D7;
}

#s-6ca1c3cb-ebd2-40fa-9d35-fd459ebd0afb {
  min-height: 50px;
}








#s-6ca1c3cb-ebd2-40fa-9d35-fd459ebd0afb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6ca1c3cb-ebd2-40fa-9d35-fd459ebd0afb.shg-box.shg-c {
  justify-content: center;
}

#s-ac59210c-0438-408c-8f49-6eec1d67bccc {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1500px;
}








#s-ac59210c-0438-408c-8f49-6eec1d67bccc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ac59210c-0438-408c-8f49-6eec1d67bccc.shg-box.shg-c {
  justify-content: center;
}

#s-98ccdcad-7135-43f6-b8fa-151b5aaab48f {
  margin-bottom: -10%;
padding-bottom: 8%;
min-height: 50px;
background-color: rgba(33, 34, 38, 1);
}
@media (max-width: 767px){#s-98ccdcad-7135-43f6-b8fa-151b5aaab48f {
  margin-bottom: -20%;
}
}







#s-98ccdcad-7135-43f6-b8fa-151b5aaab48f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-98ccdcad-7135-43f6-b8fa-151b5aaab48f.shg-box.shg-c {
  justify-content: center;
}

#s-e4745717-8aa8-4ecc-91b9-78de13371302 {
  margin-top: 4%;
margin-left: auto;
margin-bottom: 0%;
margin-right: auto;
padding-top: 2%;
padding-bottom: 2%;
min-height: 50px;
max-width: 80%;
background-color: rgba(255, 255, 255, 1);
}








#s-e4745717-8aa8-4ecc-91b9-78de13371302 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e4745717-8aa8-4ecc-91b9-78de13371302.shg-box.shg-c {
  justify-content: center;
}

#s-43218c72-5cd3-4f99-9d9d-dd2739fe66e3 {
  margin-top: 0%;
margin-bottom: 2%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-43218c72-5cd3-4f99-9d9d-dd2739fe66e3 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-5f60ba72-6a9c-4cc0-8edb-747c47c74480 {
  padding-top: 0%;
padding-left: 4%;
padding-bottom: 2%;
padding-right: 4%;
}

#s-5f60ba72-6a9c-4cc0-8edb-747c47c74480 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 255, 255, 1);
}

#s-5f60ba72-6a9c-4cc0-8edb-747c47c74480 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 1%;
}

#s-5f60ba72-6a9c-4cc0-8edb-747c47c74480 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(33, 33, 33, 1);
}

#s-5f60ba72-6a9c-4cc0-8edb-747c47c74480 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-5f60ba72-6a9c-4cc0-8edb-747c47c74480 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(33, 33, 33, 1);
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-5f60ba72-6a9c-4cc0-8edb-747c47c74480 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-0aa37c0e-2c3b-411f-bbd7-9c21e284e42a {
  padding-top: 2%;
padding-left: 4%;
padding-bottom: 2%;
padding-right: 4%;
}

#s-8639fbb5-38f1-4677-9be9-b77aacecb3ae {
  padding-top: 2%;
padding-left: 4%;
padding-bottom: 2%;
padding-right: 4%;
}

#s-d9049f61-9e4e-4f14-aeef-08228690b7ec {
  padding-top: 2%;
padding-left: 4%;
padding-bottom: 2%;
padding-right: 4%;
}

#s-0d405dfa-3d9d-428b-aeca-0a6853ce9b40 {
  padding-top: 2%;
padding-bottom: 2%;
}

#s-daf45e50-1086-4c57-a5fb-602ffc68f8fe {
  margin-left: auto;
margin-right: auto;
padding-top: 0%;
padding-bottom: 0%;
max-width: 60%;
}
@media (max-width: 767px){#s-daf45e50-1086-4c57-a5fb-602ffc68f8fe {
  max-width: 90%;
}
}
#s-daf45e50-1086-4c57-a5fb-602ffc68f8fe > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-daf45e50-1086-4c57-a5fb-602ffc68f8fe > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 2%;
}

#s-daf45e50-1086-4c57-a5fb-602ffc68f8fe > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(33, 33, 33, 1);
}

#s-daf45e50-1086-4c57-a5fb-602ffc68f8fe > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-daf45e50-1086-4c57-a5fb-602ffc68f8fe > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(33, 33, 33, 1);
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-daf45e50-1086-4c57-a5fb-602ffc68f8fe > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-4ef8c4f8-5ba0-4c7f-b820-e27b38d5ec75 {
  margin-top: 4%;
margin-bottom: 4%;
min-height: 50px;
}








#s-4ef8c4f8-5ba0-4c7f-b820-e27b38d5ec75 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4ef8c4f8-5ba0-4c7f-b820-e27b38d5ec75.shg-box.shg-c {
  justify-content: center;
}

#s-b31ffa73-b26d-46ff-91bb-1f97ac1ef58d {
  text-align: center;
}

#s-42e5f86d-282d-45e0-a001-bbaa901f79d8 {
  padding-top: 2%;
padding-bottom: 4%;
min-height: 50px;
}








#s-42e5f86d-282d-45e0-a001-bbaa901f79d8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-42e5f86d-282d-45e0-a001-bbaa901f79d8.shg-box.shg-c {
  justify-content: center;
}

#s-6a800457-3242-40e6-bde8-f68fb108136b {
  padding-top: 2%;
padding-bottom: 4%;
text-align: center;
}
@media (max-width: 767px){#s-6a800457-3242-40e6-bde8-f68fb108136b {
  padding-top: 6%;
padding-bottom: 8%;
}
}
#s-6a800457-3242-40e6-bde8-f68fb108136b .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-a186194a-bc1a-4309-acba-9d3f9031f281 {
  margin-left: auto;
margin-right: auto;
max-width: 1500px;
}

@media (min-width: 0px) {
[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-a186194a-bc1a-4309-acba-9d3f9031f281"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-9fe17a9c-8d2b-428f-a827-c878c7993f7d {
  padding-top: 2%;
}
@media (max-width: 767px){#s-9fe17a9c-8d2b-428f-a827-c878c7993f7d {
  padding-top: 4%;
padding-bottom: 4%;
}
}
#s-04b113c4-b93f-493a-b117-32c77981b0a9 {
  padding-top: 2%;
}
@media (max-width: 767px){#s-04b113c4-b93f-493a-b117-32c77981b0a9 {
  padding-top: 4%;
padding-bottom: 4%;
}
}
#s-8b0fa86b-484b-46fa-ba1e-0a2872943873 {
  padding-top: 2%;
}
@media (max-width: 767px){#s-8b0fa86b-484b-46fa-ba1e-0a2872943873 {
  padding-top: 4%;
padding-bottom: 4%;
}
}
/*
  $vgutter : 20px
  $hgutter : 10px;
*/

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  -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;
}
