.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-a7e48901-67c4-4bc4-ba69-f1db9a957f29 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-left: 0px;
padding-right: 0px;
max-width: 1200px;
background-color: rgba(255, 255, 255, 1);
}








#s-a7e48901-67c4-4bc4-ba69-f1db9a957f29 > .shg-box-overlay {
  background-color: rgba(222, 222, 222, 1);
  opacity: 0;
}#s-a7e48901-67c4-4bc4-ba69-f1db9a957f29.shg-box.shg-c {
  justify-content: center;
}

#s-7a565527-b7ae-4bed-aa08-4edf71947cca hr {
  border: 0;
  width: 100%;
  border-top: 4px solid rgba(7, 3, 3, 1);
}

.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-88e71227-a963-413c-a690-f8c987ee8d33 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(245, 245, 245, 1);
}

#s-88e71227-a963-413c-a690-f8c987ee8d33 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



.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-4f7c3e47-e81f-4d41-b9fc-96069a4573aa {
  background-image: url(https://i.shgcdn.com/bc90021e-e8d6-425f-982a-969060bb0866/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
background-position: center center;
}

@media (min-width: 0px) {
[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-4f7c3e47-e81f-4d41-b9fc-96069a4573aa"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-d630dbc5-db8b-4d04-9535-64952699499d {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
min-height: 400px;
}








#s-d630dbc5-db8b-4d04-9535-64952699499d > .shg-box-overlay {
  background-color: rgba(122, 121, 121, 1);
  opacity: 0;
}#s-d630dbc5-db8b-4d04-9535-64952699499d.shg-box.shg-c {
  justify-content: center;
}

#s-93a34768-e002-4921-abc4-ddbf1f570484 {
  margin-top: 0px;
margin-left: 10px;
margin-bottom: 0px;
margin-right: 10px;
min-height: 50px;
}








#s-93a34768-e002-4921-abc4-ddbf1f570484 > .shg-box-overlay {
  background-color: rgba(56, 56, 56, 1);
  opacity: 0.5;
}#s-93a34768-e002-4921-abc4-ddbf1f570484.shg-box.shg-c {
  justify-content: flex-start;
}

#s-e1b38d61-6329-4a53-b18c-34256670dde9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e1b38d61-6329-4a53-b18c-34256670dde9 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-b4f58f1a-0ab3-4d29-aa7a-a924c9ce98c1 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}

#s-1da2c610-aa8b-45d1-a779-5e1b458e4bfc {
  min-height: 50px;
}








#s-1da2c610-aa8b-45d1-a779-5e1b458e4bfc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1da2c610-aa8b-45d1-a779-5e1b458e4bfc.shg-box.shg-c {
  justify-content: center;
}

#s-fab4a211-50e8-4749-a932-c711fc2ac0cf {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-left: 0px;
padding-right: 0px;
min-height: 200px;
max-width: 1200px;
background-color: rgba(255, 255, 255, 1);
}








#s-fab4a211-50e8-4749-a932-c711fc2ac0cf > .shg-box-overlay {
  background-color: rgba(222, 222, 222, 1);
  opacity: 0;
}#s-fab4a211-50e8-4749-a932-c711fc2ac0cf.shg-box.shg-c {
  justify-content: center;
}

#s-8388a280-6da4-4c20-886b-9945f4384f28 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 1600px;
background-color: rgba(245, 245, 245, 1);
}








#s-8388a280-6da4-4c20-886b-9945f4384f28 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8388a280-6da4-4c20-886b-9945f4384f28.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-f9f0d8dd-52c4-4131-a7b6-d13deb0e3958"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-e66a79aa-5b21-4202-9297-8fba9b99d2c3 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 20%;
padding-left: 10px;
padding-bottom: 20%;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-e66a79aa-5b21-4202-9297-8fba9b99d2c3 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e66a79aa-5b21-4202-9297-8fba9b99d2c3 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-e66a79aa-5b21-4202-9297-8fba9b99d2c3 {
  
}
}@media (max-width: 767px){#s-e66a79aa-5b21-4202-9297-8fba9b99d2c3 {
  
}
}







#s-e66a79aa-5b21-4202-9297-8fba9b99d2c3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e66a79aa-5b21-4202-9297-8fba9b99d2c3.shg-box.shg-c {
  justify-content: center;
}

#s-317f166a-b5ae-424b-9071-7aaf7e8edd09 {
  border-style: solid;
margin-top: 0%;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 02px;
border-right-width: 0px;
border-color: rgba(164, 164, 164, 1);
max-width: 400px;
}

#s-c0c4db72-65f1-4bb1-91ce-d113ab0834fe {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 15%;
padding-bottom: 5%;
padding-right: 15%;
}

#s-6e4ff45b-7295-40b0-9e2a-d9d70c3c5fbb {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-6e4ff45b-7295-40b0-9e2a-d9d70c3c5fbb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6e4ff45b-7295-40b0-9e2a-d9d70c3c5fbb.shg-box.shg-c {
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-cover {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

.shogun-image-contain {
  font-family: "object-fit: contain;";
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.shogun-image-link {
  display: block;
  min-height: inherit;
  max-height: inherit;
}

img.shogun-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.shogun-image-content {
  display: flex;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.shogun-image-content-linked, .shogun-image-content-not-linked {
  pointer-events: none;
}

.shogun-image-content-not-linked > div {
  pointer-events: auto;
}

.shogun-image-content-linked a,
.shogun-image-content-linked button,
.shogun-image-content-linked iframe,
.shogun-image-content-linked .shg-box-linked {
  pointer-events: auto;
}

.shogun-image-content > div {
  width: 100%;
}

.shogun-image-content-top {
  align-items: flex-start;
}

.shogun-image-content-center {
  align-items: center;
}

.shogun-image-content-bottom {
  align-items: flex-end;
}
#s-c5ad162e-e05f-48f4-859f-01e983260262 {
  text-align: center;
}




  #s-c5ad162e-e05f-48f4-859f-01e983260262 img.shogun-image {
    
    width: px;
  }


#s-c5ad162e-e05f-48f4-859f-01e983260262 .shogun-image-content {
  
    align-items: center;
  
}

#s-d10201b9-9971-41c8-8d8b-5df66416c35d {
  min-height: 50px;
background-color: rgba(221, 248, 247, 1);
}








#s-d10201b9-9971-41c8-8d8b-5df66416c35d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d10201b9-9971-41c8-8d8b-5df66416c35d.shg-box.shg-c {
  justify-content: center;
}

#s-9e2c3156-0ea7-4667-8e86-00f5a1bafe4d {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 1600px;
background-color: rgba(245, 245, 245, 1);
}








#s-9e2c3156-0ea7-4667-8e86-00f5a1bafe4d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9e2c3156-0ea7-4667-8e86-00f5a1bafe4d.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-9b8bad0a-988b-4484-97ac-8f7c2377c8db"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-c3642201-f5c7-49d2-87a7-27af506d41bb {
  text-align: center;
}




  #s-c3642201-f5c7-49d2-87a7-27af506d41bb img.shogun-image {
    
    width: px;
  }


#s-c3642201-f5c7-49d2-87a7-27af506d41bb .shogun-image-content {
  
    align-items: center;
  
}

#s-eb06f987-1449-4b51-b6fe-b02acaeab8a6 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-eb06f987-1449-4b51-b6fe-b02acaeab8a6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eb06f987-1449-4b51-b6fe-b02acaeab8a6.shg-box.shg-c {
  justify-content: center;
}

#s-b6aba986-c48d-4439-80e8-ba02ffdc8d7e {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 20%;
padding-left: 10px;
padding-bottom: 20%;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-b6aba986-c48d-4439-80e8-ba02ffdc8d7e {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b6aba986-c48d-4439-80e8-ba02ffdc8d7e {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-b6aba986-c48d-4439-80e8-ba02ffdc8d7e {
  
}
}@media (max-width: 767px){#s-b6aba986-c48d-4439-80e8-ba02ffdc8d7e {
  
}
}







#s-b6aba986-c48d-4439-80e8-ba02ffdc8d7e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b6aba986-c48d-4439-80e8-ba02ffdc8d7e.shg-box.shg-c {
  justify-content: center;
}

#s-5308d2b8-25b6-499a-af9c-953ad9c7a0e6 {
  border-style: solid;
margin-top: 0%;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 02px;
border-right-width: 0px;
border-color: rgba(164, 164, 164, 1);
max-width: 400px;
}

#s-f4a7a16b-76aa-4e88-92d2-b1ae50e09be9 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 15%;
padding-bottom: 5%;
padding-right: 15%;
}

#s-aaf7bb69-3c45-479c-a39b-88220c9f6bf2 {
  min-height: 50px;
background-color: rgba(228, 228, 228, 1);
}








#s-aaf7bb69-3c45-479c-a39b-88220c9f6bf2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-aaf7bb69-3c45-479c-a39b-88220c9f6bf2.shg-box.shg-c {
  justify-content: center;
}

#s-7b57f1bb-bfb5-4625-add2-bf30183b8816 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 1600px;
background-color: rgba(245, 245, 245, 1);
}








#s-7b57f1bb-bfb5-4625-add2-bf30183b8816 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7b57f1bb-bfb5-4625-add2-bf30183b8816.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-a2523e2c-2c2c-4360-8dfc-e436544d1a44"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-307aa8d0-fb1f-46b3-b804-ae4d583bdca3 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 20%;
padding-left: 10px;
padding-bottom: 20%;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-307aa8d0-fb1f-46b3-b804-ae4d583bdca3 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-307aa8d0-fb1f-46b3-b804-ae4d583bdca3 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-307aa8d0-fb1f-46b3-b804-ae4d583bdca3 {
  
}
}@media (max-width: 767px){#s-307aa8d0-fb1f-46b3-b804-ae4d583bdca3 {
  
}
}







#s-307aa8d0-fb1f-46b3-b804-ae4d583bdca3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-307aa8d0-fb1f-46b3-b804-ae4d583bdca3.shg-box.shg-c {
  justify-content: center;
}

#s-34d2b11c-5d01-4a24-b19b-4e5268d061b0 {
  border-style: solid;
margin-top: 0%;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 02px;
border-right-width: 0px;
border-color: rgba(164, 164, 164, 1);
max-width: 400px;
}

#s-2edb818e-1b80-4c9c-b794-22be19cb13c2 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 15%;
padding-bottom: 5%;
padding-right: 15%;
}

#s-3cae3eba-b922-4b9e-ab52-291198c0bb43 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-3cae3eba-b922-4b9e-ab52-291198c0bb43 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3cae3eba-b922-4b9e-ab52-291198c0bb43.shg-box.shg-c {
  justify-content: center;
}

#s-6ddc6e6e-8bdb-4474-9582-ad9a39e0a749 {
  text-align: center;
}




  #s-6ddc6e6e-8bdb-4474-9582-ad9a39e0a749 img.shogun-image {
    
    width: px;
  }


#s-6ddc6e6e-8bdb-4474-9582-ad9a39e0a749 .shogun-image-content {
  
    align-items: center;
  
}

#s-590e9610-9019-46c2-9bbe-90f736a608fc {
  min-height: 50px;
background-color: rgba(174, 233, 232, 1);
}








#s-590e9610-9019-46c2-9bbe-90f736a608fc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-590e9610-9019-46c2-9bbe-90f736a608fc.shg-box.shg-c {
  justify-content: center;
}

#s-e20e6c64-0c1b-4a81-a8f5-82855545d90d {
  min-height: 50px;
background-color: rgba(221, 248, 247, 1);
}








#s-e20e6c64-0c1b-4a81-a8f5-82855545d90d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e20e6c64-0c1b-4a81-a8f5-82855545d90d.shg-box.shg-c {
  justify-content: center;
}

#s-bf5f2755-53be-4921-b347-4efb73ba5c2c {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 1600px;
background-color: rgba(245, 245, 245, 1);
}








#s-bf5f2755-53be-4921-b347-4efb73ba5c2c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bf5f2755-53be-4921-b347-4efb73ba5c2c.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-66b3695d-cd17-4579-b121-508db8d8d39b"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-85da167e-4a57-46ac-9045-7b5e4e4dc2a2 {
  text-align: center;
}




  #s-85da167e-4a57-46ac-9045-7b5e4e4dc2a2 img.shogun-image {
    
    width: px;
  }


#s-85da167e-4a57-46ac-9045-7b5e4e4dc2a2 .shogun-image-content {
  
    align-items: center;
  
}

#s-62e5a409-3272-4971-bb9e-d657726b9de7 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-62e5a409-3272-4971-bb9e-d657726b9de7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-62e5a409-3272-4971-bb9e-d657726b9de7.shg-box.shg-c {
  justify-content: center;
}

#s-256d8d1b-fe9a-479d-9c60-4de996d3fa2a {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 20%;
padding-left: 10px;
padding-bottom: 20%;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-256d8d1b-fe9a-479d-9c60-4de996d3fa2a {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-256d8d1b-fe9a-479d-9c60-4de996d3fa2a {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-256d8d1b-fe9a-479d-9c60-4de996d3fa2a {
  
}
}@media (max-width: 767px){#s-256d8d1b-fe9a-479d-9c60-4de996d3fa2a {
  
}
}







#s-256d8d1b-fe9a-479d-9c60-4de996d3fa2a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-256d8d1b-fe9a-479d-9c60-4de996d3fa2a.shg-box.shg-c {
  justify-content: center;
}

#s-2617df43-6700-4f29-975a-4d9b8f0b96e6 {
  border-style: solid;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 02px;
border-right-width: 0px;
border-color: rgba(164, 164, 164, 1);
max-width: 400px;
}

#s-0f7225a4-aabc-4b7a-8910-be6bb9537829 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 15%;
padding-bottom: 5%;
padding-right: 15%;
}

#s-b1d53fff-54d3-49e0-b29e-50fe2a1cc595 {
  min-height: 50px;
background-color: rgba(228, 228, 228, 1);
}








#s-b1d53fff-54d3-49e0-b29e-50fe2a1cc595 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b1d53fff-54d3-49e0-b29e-50fe2a1cc595.shg-box.shg-c {
  justify-content: center;
}

#s-085e4605-3433-439f-a9a0-5c69265b177b {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 1600px;
background-color: rgba(245, 245, 245, 1);
}








#s-085e4605-3433-439f-a9a0-5c69265b177b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-085e4605-3433-439f-a9a0-5c69265b177b.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-da855756-d496-42c5-adf4-844c97377e97"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-f100f5b5-c6ac-4eb7-bd20-68a6732fd0a8 {
  margin-left: auto;
margin-right: auto;
padding-top: 20%;
padding-left: 10px;
padding-bottom: 20%;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-f100f5b5-c6ac-4eb7-bd20-68a6732fd0a8 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f100f5b5-c6ac-4eb7-bd20-68a6732fd0a8 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-f100f5b5-c6ac-4eb7-bd20-68a6732fd0a8 {
  
}
}@media (max-width: 767px){#s-f100f5b5-c6ac-4eb7-bd20-68a6732fd0a8 {
  
}
}







#s-f100f5b5-c6ac-4eb7-bd20-68a6732fd0a8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f100f5b5-c6ac-4eb7-bd20-68a6732fd0a8.shg-box.shg-c {
  justify-content: center;
}

#s-7b458256-8aa1-45bb-a771-039ca424f889 {
  border-style: solid;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 02px;
border-right-width: 0px;
border-color: rgba(164, 164, 164, 1);
max-width: 400px;
}

#s-0072aa8c-e167-44ea-b60b-53391f0bf0a0 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 15%;
padding-bottom: 5%;
padding-right: 15%;
}

#s-354aa181-5979-447e-8ada-1131b9474282 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-354aa181-5979-447e-8ada-1131b9474282 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-354aa181-5979-447e-8ada-1131b9474282.shg-box.shg-c {
  justify-content: center;
}

#s-709300cd-a871-415a-b397-ebda259d7dae {
  text-align: center;
}




  #s-709300cd-a871-415a-b397-ebda259d7dae img.shogun-image {
    
    width: px;
  }


#s-709300cd-a871-415a-b397-ebda259d7dae .shogun-image-content {
  
    align-items: center;
  
}

#s-84acc944-c2c7-41fe-ade0-f23e2be8552b {
  min-height: 50px;
background-color: rgba(221, 248, 247, 1);
}








#s-84acc944-c2c7-41fe-ade0-f23e2be8552b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-84acc944-c2c7-41fe-ade0-f23e2be8552b.shg-box.shg-c {
  justify-content: center;
}

#s-460264e0-3d34-4b74-b4a5-bda88a412cb9 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 1600px;
background-color: rgba(245, 245, 245, 1);
}








#s-460264e0-3d34-4b74-b4a5-bda88a412cb9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-460264e0-3d34-4b74-b4a5-bda88a412cb9.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-320cd81a-c102-4fb6-bb6a-5a9f1633db3b"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-cd2e517a-2afc-4a84-8142-aaa7a8cd4764 {
  text-align: center;
}




  #s-cd2e517a-2afc-4a84-8142-aaa7a8cd4764 img.shogun-image {
    
    width: px;
  }


#s-cd2e517a-2afc-4a84-8142-aaa7a8cd4764 .shogun-image-content {
  
    align-items: center;
  
}

#s-dd8eac9d-ab78-4b65-839d-2c2c608a5ac4 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-dd8eac9d-ab78-4b65-839d-2c2c608a5ac4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dd8eac9d-ab78-4b65-839d-2c2c608a5ac4.shg-box.shg-c {
  justify-content: center;
}

#s-a1d98e55-05a8-4e56-aa95-9b47f88ab697 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 20%;
padding-left: 10px;
padding-bottom: 20%;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-a1d98e55-05a8-4e56-aa95-9b47f88ab697 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a1d98e55-05a8-4e56-aa95-9b47f88ab697 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-a1d98e55-05a8-4e56-aa95-9b47f88ab697 {
  
}
}@media (max-width: 767px){#s-a1d98e55-05a8-4e56-aa95-9b47f88ab697 {
  
}
}







#s-a1d98e55-05a8-4e56-aa95-9b47f88ab697 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a1d98e55-05a8-4e56-aa95-9b47f88ab697.shg-box.shg-c {
  justify-content: center;
}

#s-2b54816c-d7de-44de-82c9-52454a2ee6dc {
  border-style: solid;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 02px;
border-right-width: 0px;
border-color: rgba(164, 164, 164, 1);
max-width: 400px;
}

#s-f8f446c9-aae2-477a-851b-cbe1c53ab380 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 15%;
padding-bottom: 5%;
padding-right: 15%;
}

#s-8673455e-2e9b-4cac-8dce-92dc10a4398a {
  min-height: 50px;
background-color: rgba(228, 228, 228, 1);
}








#s-8673455e-2e9b-4cac-8dce-92dc10a4398a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8673455e-2e9b-4cac-8dce-92dc10a4398a.shg-box.shg-c {
  justify-content: center;
}

#s-f7ab6679-d112-4acd-ac4e-ecd9c0611cfd {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 1600px;
background-color: rgba(245, 245, 245, 1);
}








#s-f7ab6679-d112-4acd-ac4e-ecd9c0611cfd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f7ab6679-d112-4acd-ac4e-ecd9c0611cfd.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-68d247ed-b821-4a05-9a0e-e307326d7d03"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-559d3458-cccc-4fdc-bb41-a8209fe55d04 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 20%;
padding-left: 10px;
padding-bottom: 20%;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-559d3458-cccc-4fdc-bb41-a8209fe55d04 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-559d3458-cccc-4fdc-bb41-a8209fe55d04 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-559d3458-cccc-4fdc-bb41-a8209fe55d04 {
  
}
}@media (max-width: 767px){#s-559d3458-cccc-4fdc-bb41-a8209fe55d04 {
  
}
}







#s-559d3458-cccc-4fdc-bb41-a8209fe55d04 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-559d3458-cccc-4fdc-bb41-a8209fe55d04.shg-box.shg-c {
  justify-content: center;
}

#s-57931c8b-57ce-4241-8e43-0dfd702d476c {
  border-style: solid;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 02px;
border-right-width: 0px;
border-color: rgba(164, 164, 164, 1);
max-width: 400px;
}

#s-eaf9bea4-ce31-4653-bf17-8c9429fa3895 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
padding-top: 5%;
padding-left: 15%;
padding-bottom: 5%;
padding-right: 15%;
}

#s-7a1fe2ac-fac1-4d2f-851d-71f67b14ec75 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-7a1fe2ac-fac1-4d2f-851d-71f67b14ec75 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7a1fe2ac-fac1-4d2f-851d-71f67b14ec75.shg-box.shg-c {
  justify-content: center;
}

#s-82bee402-98bd-4295-821b-c6502f02d561 {
  text-align: center;
}




  #s-82bee402-98bd-4295-821b-c6502f02d561 img.shogun-image {
    
    width: px;
  }


#s-82bee402-98bd-4295-821b-c6502f02d561 .shogun-image-content {
  
    align-items: center;
  
}

#s-6def33b8-d539-4a53-b2c6-a04bf6b70875 {
  background-image: url(https://i.shgcdn.com/f075859a-5755-4747-891f-28979ca7e498/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
margin-top: 10px;
margin-bottom: 10px;
padding-top: 0px;
padding-bottom: 0px;
background-position: center center;
}

@media (min-width: 0px) {
[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-6def33b8-d539-4a53-b2c6-a04bf6b70875"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-75b3f635-e62f-4719-8079-a10a1a07d15b {
  margin-top: auto;
margin-bottom: auto;
min-height: 800px;
}








#s-75b3f635-e62f-4719-8079-a10a1a07d15b > .shg-box-overlay {
  background-color: rgba(122, 121, 121, 1);
  opacity: 0;
}#s-75b3f635-e62f-4719-8079-a10a1a07d15b {
  cursor: pointer;
}#s-75b3f635-e62f-4719-8079-a10a1a07d15b.shg-box.shg-c {
  justify-content: center;
}

#s-7710a586-9edf-4af5-afa4-294270bea3a4 {
  margin-top: 10%;
margin-left: 10px;
margin-bottom: 10%;
margin-right: 10px;
min-height: 50px;
}








#s-7710a586-9edf-4af5-afa4-294270bea3a4 > .shg-box-overlay {
  background-color: rgba(56, 56, 56, 1);
  opacity: 0.46;
}#s-7710a586-9edf-4af5-afa4-294270bea3a4.shg-box.shg-c {
  justify-content: center;
}

#s-365a2fd3-2132-4c52-b59f-8348d676724d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-365a2fd3-2132-4c52-b59f-8348d676724d .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-016076de-0d63-4c51-b54f-a8fad46cb4fd {
  margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-016076de-0d63-4c51-b54f-a8fad46cb4fd {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-016076de-0d63-4c51-b54f-a8fad46cb4fd {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-016076de-0d63-4c51-b54f-a8fad46cb4fd {
  
}
}@media (max-width: 767px){#s-016076de-0d63-4c51-b54f-a8fad46cb4fd {
  
}
}
#s-cc7a9658-f8e7-4fac-9cba-46d2ba0aa212 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 0.1);
}

#s-cc7a9658-f8e7-4fac-9cba-46d2ba0aa212 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-348d6731-ea6b-4574-aaa3-a2336247eb23 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-348d6731-ea6b-4574-aaa3-a2336247eb23 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-348d6731-ea6b-4574-aaa3-a2336247eb23 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-348d6731-ea6b-4574-aaa3-a2336247eb23 {
  
}
}@media (max-width: 767px){#s-348d6731-ea6b-4574-aaa3-a2336247eb23 {
  
}
}







#s-348d6731-ea6b-4574-aaa3-a2336247eb23 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-348d6731-ea6b-4574-aaa3-a2336247eb23.shg-box.shg-c {
  justify-content: center;
}

#s-a5398773-94dd-490b-b785-57530f5f6100 {
  background-image: url(https://i.shgcdn.com/28e5c5c0-a1da-4188-8d08-91a9ee233b5b/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
}

@media (min-width: 0px) {
[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-a5398773-94dd-490b-b785-57530f5f6100"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-ba98ca33-1b54-4815-8e0c-6649b6a659d9 {
  margin-top: 20px;
margin-bottom: 20px;
}

#s-1bebf601-8e05-460f-9f11-1e5f675f20f5 {
  margin-top: 20px;
margin-bottom: 20px;
background-color: rgba(255, 255, 255, 0);
}

#s-9b934bf6-38c3-4ab0-861b-fff2e6ffad7a {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
padding-top: 15px;
padding-left: 30px;
padding-bottom: 15px;
padding-right: 30px;
}

#s-571abdef-f760-4e20-9818-3975a7a05aee {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
min-height: 50px;
}








#s-571abdef-f760-4e20-9818-3975a7a05aee > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-571abdef-f760-4e20-9818-3975a7a05aee.shg-box.shg-c {
  justify-content: flex-start;
}

#s-bc2a4fc8-4019-4018-8b18-53cb857f75d8 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 0.1);
}

#s-bc2a4fc8-4019-4018-8b18-53cb857f75d8 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



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

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

.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.shg-sld-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEyMDMgNTQ0cTAgMTMtMTAgMjNsLTM5MyAzOTMgMzkzIDM5M3ExMCAxMCAxMCAyM3QtMTAgMjNsLTUwIDUwcS0xMCAxMC0yMyAxMHQtMjMtMTBsLTQ2Ni00NjZxLTEwLTEwLTEwLTIzdDEwLTIzbDQ2Ni00NjZxMTAtMTAgMjMtMTB0MjMgMTBsNTAgNTBxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

.shg-sld-nav-button.shg-sld-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExNzEgOTYwcTAgMTMtMTAgMjNsLTQ2NiA0NjZxLTEwIDEwLTIzIDEwdC0yMy0xMGwtNTAtNTBxLTEwLTEwLTEwLTIzdDEwLTIzbDM5My0zOTMtMzkzLTM5M3EtMTAtMTAtMTAtMjN0MTAtMjNsNTAtNTBxMTAtMTAgMjMtMTB0MjMgMTBsNDY2IDQ2NnExMCAxMCAxMCAyM3oiLz48L3N2Zz4=);
}

.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;
}

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

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

.shg-sld-dot.shg-sld-active {
  background-color: #717171;
}

.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-eb0f95ca-2cf7-4f7f-aa84-a1565832cb7b {
  padding-top: 0px;
padding-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-45fd50db-b460-4b17-8937-880439848808"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-02ea456a-81b4-4617-84f6-f7a9da3ed7e4 {
  text-align: center;
}




  #s-02ea456a-81b4-4617-84f6-f7a9da3ed7e4 img.shogun-image {
    
    width: px;
  }


#s-02ea456a-81b4-4617-84f6-f7a9da3ed7e4 .shogun-image-content {
  
    align-items: center;
  
}

#s-209e86fa-7fe5-4786-bec8-ca812c8e7733 {
  text-align: center;
}




  #s-209e86fa-7fe5-4786-bec8-ca812c8e7733 img.shogun-image {
    
    width: px;
  }


#s-209e86fa-7fe5-4786-bec8-ca812c8e7733 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-959c31c4-1e9f-49ea-9992-5647d3713ec8"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-712bd307-b9d7-40bf-818a-71239e663f3a {
  text-align: center;
}




  #s-712bd307-b9d7-40bf-818a-71239e663f3a img.shogun-image {
    
    width: px;
  }


#s-712bd307-b9d7-40bf-818a-71239e663f3a .shogun-image-content {
  
    align-items: center;
  
}

#s-64e668b8-1864-4ca5-9a62-fdb0b5e5e86a {
  text-align: center;
}




  #s-64e668b8-1864-4ca5-9a62-fdb0b5e5e86a img.shogun-image {
    
    width: px;
  }


#s-64e668b8-1864-4ca5-9a62-fdb0b5e5e86a .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-6857a67b-6c2d-4753-9af4-1cd601568b80"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-ac597b83-cde8-4123-9ca3-377d2f8a946c {
  text-align: center;
}




  #s-ac597b83-cde8-4123-9ca3-377d2f8a946c img.shogun-image {
    
    width: px;
  }


#s-ac597b83-cde8-4123-9ca3-377d2f8a946c .shogun-image-content {
  
    align-items: center;
  
}

#s-7e8cd932-3621-43ed-9a49-6259e0f66f99 {
  text-align: center;
}




  #s-7e8cd932-3621-43ed-9a49-6259e0f66f99 img.shogun-image {
    
    width: px;
  }


#s-7e8cd932-3621-43ed-9a49-6259e0f66f99 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-b587d8f2-502d-4d61-9130-2f5b258adb0b"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-e32fdc9b-5d7a-4741-9661-db615a2909bd {
  text-align: center;
}




  #s-e32fdc9b-5d7a-4741-9661-db615a2909bd img.shogun-image {
    
    width: px;
  }


#s-e32fdc9b-5d7a-4741-9661-db615a2909bd .shogun-image-content {
  
    align-items: center;
  
}

#s-fdcda687-f438-4023-b7ac-99e6c4f1ebd7 {
  text-align: center;
}




  #s-fdcda687-f438-4023-b7ac-99e6c4f1ebd7 img.shogun-image {
    
    width: px;
  }


#s-fdcda687-f438-4023-b7ac-99e6c4f1ebd7 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-16895957-0fe9-4315-80dd-5d4f9b93f8d3"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-7112cfcc-5c46-4118-a292-55bc9e7960f6 {
  text-align: center;
}




  #s-7112cfcc-5c46-4118-a292-55bc9e7960f6 img.shogun-image {
    
    width: px;
  }


#s-7112cfcc-5c46-4118-a292-55bc9e7960f6 .shogun-image-content {
  
    align-items: center;
  
}

#s-00463ec0-8a12-4b39-be3f-9d4dbe3a98d7 {
  text-align: center;
}




  #s-00463ec0-8a12-4b39-be3f-9d4dbe3a98d7 img.shogun-image {
    
    width: px;
  }


#s-00463ec0-8a12-4b39-be3f-9d4dbe3a98d7 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-6e7dceab-7f33-45c9-a495-aeeb69e0a55e"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-8530c409-7d34-47e6-9654-9fa73ea551a9 {
  text-align: center;
}




  #s-8530c409-7d34-47e6-9654-9fa73ea551a9 img.shogun-image {
    
    width: px;
  }


#s-8530c409-7d34-47e6-9654-9fa73ea551a9 .shogun-image-content {
  
    align-items: center;
  
}

#s-b2359f44-88ad-4d9c-b850-2261ae12c312 {
  text-align: center;
}




  #s-b2359f44-88ad-4d9c-b850-2261ae12c312 img.shogun-image {
    
    width: px;
  }


#s-b2359f44-88ad-4d9c-b850-2261ae12c312 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-3dde8ea3-17d4-4932-8d82-3d063d1f5bba"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-f395bc89-7d3c-441b-9efd-cea70553c158 {
  text-align: center;
}




  #s-f395bc89-7d3c-441b-9efd-cea70553c158 img.shogun-image {
    
    width: px;
  }


#s-f395bc89-7d3c-441b-9efd-cea70553c158 .shogun-image-content {
  
    align-items: center;
  
}

#s-21a58b3e-e458-416c-a61e-5a7b9a7e84fe {
  text-align: center;
}




  #s-21a58b3e-e458-416c-a61e-5a7b9a7e84fe img.shogun-image {
    
    width: px;
  }


#s-21a58b3e-e458-416c-a61e-5a7b9a7e84fe .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-d5585ad6-57b6-457f-8de3-866d1ec609b1"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-56b69426-438d-4015-b1bb-b05a8fb787b8 {
  text-align: center;
}




  #s-56b69426-438d-4015-b1bb-b05a8fb787b8 img.shogun-image {
    
    width: px;
  }


#s-56b69426-438d-4015-b1bb-b05a8fb787b8 .shogun-image-content {
  
    align-items: center;
  
}

#s-4111e9d8-f84a-42ce-8871-3f5a71e28aaa {
  text-align: center;
}




  #s-4111e9d8-f84a-42ce-8871-3f5a71e28aaa img.shogun-image {
    
    width: px;
  }


#s-4111e9d8-f84a-42ce-8871-3f5a71e28aaa .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-f41e116a-84ec-4b06-8eb7-7d20aeaf9a94"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-519c1dd0-c90b-4b80-acb9-47f759333fcc {
  text-align: center;
}




  #s-519c1dd0-c90b-4b80-acb9-47f759333fcc img.shogun-image {
    
    width: px;
  }


#s-519c1dd0-c90b-4b80-acb9-47f759333fcc .shogun-image-content {
  
    align-items: center;
  
}

#s-66cb7fa7-b1f8-4a8f-8070-7e4026ad8d10 {
  text-align: center;
}




  #s-66cb7fa7-b1f8-4a8f-8070-7e4026ad8d10 img.shogun-image {
    
    width: px;
  }


#s-66cb7fa7-b1f8-4a8f-8070-7e4026ad8d10 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-d5c07e5b-f40e-439e-8d91-d36b914e61b8"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-882fd382-c235-43d8-b3ca-e8e0c8ae4087 {
  text-align: center;
}




  #s-882fd382-c235-43d8-b3ca-e8e0c8ae4087 img.shogun-image {
    
    width: px;
  }


#s-882fd382-c235-43d8-b3ca-e8e0c8ae4087 .shogun-image-content {
  
    align-items: center;
  
}

#s-10a9eeb6-74d8-4df3-9f68-20884ff92dba {
  text-align: center;
}




  #s-10a9eeb6-74d8-4df3-9f68-20884ff92dba img.shogun-image {
    
    width: px;
  }


#s-10a9eeb6-74d8-4df3-9f68-20884ff92dba .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-cb553faf-8cc7-4802-996d-03552ccb4b5e"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-a0d5c2b5-dd36-4b0b-bcd5-3a1c94914243 {
  text-align: center;
}




  #s-a0d5c2b5-dd36-4b0b-bcd5-3a1c94914243 img.shogun-image {
    
    width: px;
  }


#s-a0d5c2b5-dd36-4b0b-bcd5-3a1c94914243 .shogun-image-content {
  
    align-items: center;
  
}

#s-e507bc8f-8018-4f23-bc70-866c4a24a447 {
  text-align: center;
}




  #s-e507bc8f-8018-4f23-bc70-866c4a24a447 img.shogun-image {
    
    width: px;
  }


#s-e507bc8f-8018-4f23-bc70-866c4a24a447 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-60c06a55-7d7f-4923-88f0-7ae4ec02609f"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-c1945afa-67c5-4998-9bca-e075e2b3288f {
  text-align: center;
}




  #s-c1945afa-67c5-4998-9bca-e075e2b3288f img.shogun-image {
    
    width: px;
  }


#s-c1945afa-67c5-4998-9bca-e075e2b3288f .shogun-image-content {
  
    align-items: center;
  
}

#s-8ad6a8bf-d37f-4d6e-9448-e649eb413a56 {
  text-align: center;
}




  #s-8ad6a8bf-d37f-4d6e-9448-e649eb413a56 img.shogun-image {
    
    width: px;
  }


#s-8ad6a8bf-d37f-4d6e-9448-e649eb413a56 .shogun-image-content {
  
    align-items: center;
  
}

#s-58eacb8b-f5ee-419c-b058-471d9edb71bb {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 0.1);
}

#s-58eacb8b-f5ee-419c-b058-471d9edb71bb .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-fd6ba583-416f-4539-b528-0ad0fec55954 {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

@media (min-width: 0px) {
[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-c0646426-59c8-4649-9166-fe6aaf88cdab"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

.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-18624a7e-a871-438f-9c86-247d23e2bd67 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-18624a7e-a871-438f-9c86-247d23e2bd67 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-18624a7e-a871-438f-9c86-247d23e2bd67 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(106, 108, 109, 1);
}

#s-18624a7e-a871-438f-9c86-247d23e2bd67 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-18624a7e-a871-438f-9c86-247d23e2bd67 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(106, 108, 109, 1);
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-18624a7e-a871-438f-9c86-247d23e2bd67 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-393bf90e-2a7d-4c84-934d-fb4ad80731f3 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
text-align: center;
}




  #s-393bf90e-2a7d-4c84-934d-fb4ad80731f3 img.shogun-image {
    
    width: px;
  }


#s-393bf90e-2a7d-4c84-934d-fb4ad80731f3 .shogun-image-content {
  
    align-items:  flex-start;
  
}

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

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

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

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

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

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

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

#s-568ea61f-e220-43fe-9851-a2e63336d5b4 {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
padding-top: 5px;
padding-left: 5px;
padding-bottom: 5px;
padding-right: 5px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(98, 96, 96, 1);
border-radius: 4px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-568ea61f-e220-43fe-9851-a2e63336d5b4:hover {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(141, 216, 234, 1) !important;
border-radius: 4px !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-568ea61f-e220-43fe-9851-a2e63336d5b4:active {background-color: rgba(242, 242, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}


#s-568ea61f-e220-43fe-9851-a2e63336d5b4.shg-btn {
  color: rgba(98, 96, 96, 1);
  font-size: 20px;
  font-weight: 500;
  
  font-family: Oswald;
  display:  inline-block ;
}

#s-0245868c-0706-4bc7-8980-a10486ac703b {
  min-height: 50px;
}








#s-0245868c-0706-4bc7-8980-a10486ac703b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0245868c-0706-4bc7-8980-a10486ac703b.shg-box.shg-c {
  justify-content: flex-start;
}

#s-79cdde9c-2ceb-4e6f-afd5-0b1a38f17805 {
  margin-top: 10px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 0.1);
}

#s-79cdde9c-2ceb-4e6f-afd5-0b1a38f17805 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-927fa7a8-1e50-4596-9603-955900681e7f {
  margin-top: 0px;
margin-left: 25px;
margin-bottom: 0px;
margin-right: 25px;
min-height: 50px;
}








#s-927fa7a8-1e50-4596-9603-955900681e7f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-927fa7a8-1e50-4596-9603-955900681e7f.shg-box.shg-c {
  justify-content: flex-start;
}

@media (min-width: 0px) {
[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-8b3ce7d4-dfbe-4430-a808-a5a349a6f90f"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-f9905864-ab43-4db6-9d3c-2b3951b81aa8 {
  margin-top: 5px;
margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-f9905864-ab43-4db6-9d3c-2b3951b81aa8 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-05879d66-9291-4ff0-84ab-98fa8b6533fe {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-05879d66-9291-4ff0-84ab-98fa8b6533fe > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-05879d66-9291-4ff0-84ab-98fa8b6533fe > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-05879d66-9291-4ff0-84ab-98fa8b6533fe > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(106, 108, 109, 1);
}

#s-05879d66-9291-4ff0-84ab-98fa8b6533fe > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-05879d66-9291-4ff0-84ab-98fa8b6533fe > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(106, 108, 109, 1);
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-05879d66-9291-4ff0-84ab-98fa8b6533fe > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-757a7900-d015-4a5e-9ac3-37ec6a4b2ec9 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-6885d1f7-faea-4c1c-bc95-77558eabff07 {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-7153f223-9f63-44e2-a23f-955d04e06739 {
  margin-top: 10px;
margin-left: 25px;
margin-bottom: 10px;
margin-right: 25px;
min-height: 50px;
}








#s-7153f223-9f63-44e2-a23f-955d04e06739 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7153f223-9f63-44e2-a23f-955d04e06739.shg-box.shg-c {
  justify-content: flex-start;
}

@media (min-width: 0px) {
[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-2947ea77-3c1b-45d7-8dbe-2b83cd613f84"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-8a78208c-2c3f-4867-af07-77a9ffbbfea0 {
  margin-top: 5px;
margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-8a78208c-2c3f-4867-af07-77a9ffbbfea0 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-4f2d1a75-36a0-44f3-9d3c-ef6478138585 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-4f2d1a75-36a0-44f3-9d3c-ef6478138585 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-4f2d1a75-36a0-44f3-9d3c-ef6478138585 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-4f2d1a75-36a0-44f3-9d3c-ef6478138585 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(106, 108, 109, 1);
}

#s-4f2d1a75-36a0-44f3-9d3c-ef6478138585 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-4f2d1a75-36a0-44f3-9d3c-ef6478138585 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(106, 108, 109, 1);
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-4f2d1a75-36a0-44f3-9d3c-ef6478138585 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-463031a3-32ef-45f3-a336-a24c14204d29 {
  min-height: 50px;
}








#s-463031a3-32ef-45f3-a336-a24c14204d29 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-463031a3-32ef-45f3-a336-a24c14204d29.shg-box.shg-c {
  justify-content: center;
}

#s-8546f82d-3806-4342-bbcb-e7866427d687 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 10px;
margin-left: 15px;
margin-bottom: 10px;
margin-right: 15px;
min-height: 50px;
background-position: center center;
}








#s-8546f82d-3806-4342-bbcb-e7866427d687 > .shg-box-overlay {
  background-color: rgba(252, 252, 252, 1);
  opacity: 0.4;
}#s-8546f82d-3806-4342-bbcb-e7866427d687.shg-box.shg-c {
  justify-content: flex-start;
}

#s-94289026-10a9-4869-9930-0600a1ee606e {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-94289026-10a9-4869-9930-0600a1ee606e .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-998b73f0-6563-42b8-85de-0d1d64d83fbd {
  margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
padding-top: 15px;
padding-left: 15%;
padding-bottom: 15px;
padding-right: 15%;
}

#s-828dce06-b54e-4bf7-93b8-5820e555242e {
  border-style: solid;
margin-top: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-right: 5px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(98, 96, 96, 1);
border-radius: 4px;
text-align: center;
background-color: rgba(253, 253, 253, 1);
text-decoration: none;
}
#s-828dce06-b54e-4bf7-93b8-5820e555242e:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-828dce06-b54e-4bf7-93b8-5820e555242e:active {background-color: rgba(242, 242, 242, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}


#s-828dce06-b54e-4bf7-93b8-5820e555242e.shg-btn {
  color: rgba(98, 96, 96, 1);
  font-size: 20px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}

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