.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-3d5effea-ecf8-4f39-9d68-710bc408db49 {
  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-3d5effea-ecf8-4f39-9d68-710bc408db49 > .shg-box-overlay {
  background-color: rgba(222, 222, 222, 1);
  opacity: 0;
}#s-3d5effea-ecf8-4f39-9d68-710bc408db49.shg-box.shg-c {
  justify-content: center;
}

#s-bf39e0e7-0b7f-4c9f-a90a-e891417c6e86 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-5e604b71-50f1-406c-80e0-02e5658ec61b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(245, 245, 245, 1);
}

#s-5e604b71-50f1-406c-80e0-02e5658ec61b .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-fc63f899-6d3c-4407-90ed-7214f4bf955c {
  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-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-fc63f899-6d3c-4407-90ed-7214f4bf955c"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-f89b7c46-cad3-4223-8a15-bdfb154091c8 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
min-height: 400px;
}








#s-f89b7c46-cad3-4223-8a15-bdfb154091c8 > .shg-box-overlay {
  background-color: rgba(122, 121, 121, 1);
  opacity: 0;
}#s-f89b7c46-cad3-4223-8a15-bdfb154091c8.shg-box.shg-c {
  justify-content: center;
}

#s-35f27580-e751-4ed5-88f8-8f45e03bed85 {
  margin-top: 0px;
margin-left: 10px;
margin-bottom: 0px;
margin-right: 10px;
min-height: 50px;
}








#s-35f27580-e751-4ed5-88f8-8f45e03bed85 > .shg-box-overlay {
  background-color: rgba(56, 56, 56, 1);
  opacity: 0.5;
}#s-35f27580-e751-4ed5-88f8-8f45e03bed85.shg-box.shg-c {
  justify-content: flex-start;
}

#s-73663466-39b3-419e-952d-830b1e48535a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-73663466-39b3-419e-952d-830b1e48535a .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-37783bf7-3285-4f42-829a-9f5b1ee15856 {
  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-a2797235-a115-4d20-84c0-92d42e9025ed {
  min-height: 50px;
}








#s-a2797235-a115-4d20-84c0-92d42e9025ed > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a2797235-a115-4d20-84c0-92d42e9025ed.shg-box.shg-c {
  justify-content: center;
}

#s-5dc80427-b87c-4732-9a28-3251cdebdfe2 {
  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-5dc80427-b87c-4732-9a28-3251cdebdfe2 > .shg-box-overlay {
  background-color: rgba(222, 222, 222, 1);
  opacity: 0;
}#s-5dc80427-b87c-4732-9a28-3251cdebdfe2.shg-box.shg-c {
  justify-content: center;
}

#s-093fb2b1-4c42-4381-9693-012faabaea2e {
  margin-top: 10px;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 1600px;
background-color: rgba(245, 245, 245, 1);
}








#s-093fb2b1-4c42-4381-9693-012faabaea2e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-093fb2b1-4c42-4381-9693-012faabaea2e.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-fdc5c9ad-57da-416b-9b75-01f52fb1f800"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-dafd6d52-0f06-4ca6-b851-8738dc584d14 {
  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-dafd6d52-0f06-4ca6-b851-8738dc584d14 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-dafd6d52-0f06-4ca6-b851-8738dc584d14 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-dafd6d52-0f06-4ca6-b851-8738dc584d14 {
  
}
}@media (max-width: 767px){#s-dafd6d52-0f06-4ca6-b851-8738dc584d14 {
  
}
}







#s-dafd6d52-0f06-4ca6-b851-8738dc584d14 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dafd6d52-0f06-4ca6-b851-8738dc584d14.shg-box.shg-c {
  justify-content: center;
}

#s-11a3e21c-44a5-4da4-bef0-1fea92e813a0 {
  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-49ba43ab-4cca-4657-8cbe-a5af5a5ce19b {
  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-2041b15d-134d-4ecd-8bec-c462b61fb5da {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-2041b15d-134d-4ecd-8bec-c462b61fb5da > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2041b15d-134d-4ecd-8bec-c462b61fb5da.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-2ef3ec0a-0958-44b8-ae64-067b5cdf59cb {
  text-align: center;
}




  #s-2ef3ec0a-0958-44b8-ae64-067b5cdf59cb img.shogun-image {
    
    width: px;
  }


#s-2ef3ec0a-0958-44b8-ae64-067b5cdf59cb .shogun-image-content {
  
    align-items: center;
  
}

#s-28a971f1-8213-4e6a-a52b-5cd8b247b2cf {
  min-height: 50px;
background-color: rgba(221, 248, 247, 1);
}








#s-28a971f1-8213-4e6a-a52b-5cd8b247b2cf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-28a971f1-8213-4e6a-a52b-5cd8b247b2cf.shg-box.shg-c {
  justify-content: center;
}

#s-d371ec14-410a-4d50-92b2-92b9928f6e38 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 1600px;
background-color: rgba(245, 245, 245, 1);
}








#s-d371ec14-410a-4d50-92b2-92b9928f6e38 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d371ec14-410a-4d50-92b2-92b9928f6e38.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-b6514550-ff16-4878-9a7d-694b9ee7d82d"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-ab1a3a70-0038-4eac-a775-77581c1483f9 {
  text-align: center;
}




  #s-ab1a3a70-0038-4eac-a775-77581c1483f9 img.shogun-image {
    
    width: px;
  }


#s-ab1a3a70-0038-4eac-a775-77581c1483f9 .shogun-image-content {
  
    align-items: center;
  
}

#s-4e153a9b-a3e9-4438-acbe-6a34c2bb2e1d {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-4e153a9b-a3e9-4438-acbe-6a34c2bb2e1d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4e153a9b-a3e9-4438-acbe-6a34c2bb2e1d.shg-box.shg-c {
  justify-content: center;
}

#s-e81c43ea-cf1d-4e09-b1de-96eb0e739c4a {
  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-e81c43ea-cf1d-4e09-b1de-96eb0e739c4a {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e81c43ea-cf1d-4e09-b1de-96eb0e739c4a {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-e81c43ea-cf1d-4e09-b1de-96eb0e739c4a {
  
}
}@media (max-width: 767px){#s-e81c43ea-cf1d-4e09-b1de-96eb0e739c4a {
  
}
}







#s-e81c43ea-cf1d-4e09-b1de-96eb0e739c4a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e81c43ea-cf1d-4e09-b1de-96eb0e739c4a.shg-box.shg-c {
  justify-content: center;
}

#s-bcf709a1-f009-4ebb-96a5-ea9279dfb319 {
  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-1f980c57-035e-4438-8f78-eab0693e4701 {
  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-6b0844e0-54ac-4b60-b561-eaabd612124e {
  min-height: 50px;
background-color: rgba(228, 228, 228, 1);
}








#s-6b0844e0-54ac-4b60-b561-eaabd612124e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6b0844e0-54ac-4b60-b561-eaabd612124e.shg-box.shg-c {
  justify-content: center;
}

#s-43e422d9-6100-4dfb-8143-b900a30bc8c2 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 1600px;
background-color: rgba(245, 245, 245, 1);
}








#s-43e422d9-6100-4dfb-8143-b900a30bc8c2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-43e422d9-6100-4dfb-8143-b900a30bc8c2.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-83b56f4c-29c8-4f6b-a5ea-1ffca9adab9c"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-9fbe31f5-81ed-4205-b382-923b2b9c3dc5 {
  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-9fbe31f5-81ed-4205-b382-923b2b9c3dc5 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9fbe31f5-81ed-4205-b382-923b2b9c3dc5 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-9fbe31f5-81ed-4205-b382-923b2b9c3dc5 {
  
}
}@media (max-width: 767px){#s-9fbe31f5-81ed-4205-b382-923b2b9c3dc5 {
  
}
}







#s-9fbe31f5-81ed-4205-b382-923b2b9c3dc5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9fbe31f5-81ed-4205-b382-923b2b9c3dc5.shg-box.shg-c {
  justify-content: center;
}

#s-b6dfdceb-2a68-4470-92ac-984e927f3af8 {
  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-4ca6a73f-5abe-43cc-9152-a93ad172c9ab {
  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-49d921b0-9a4d-4474-b521-26d611a24da9 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-49d921b0-9a4d-4474-b521-26d611a24da9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-49d921b0-9a4d-4474-b521-26d611a24da9.shg-box.shg-c {
  justify-content: center;
}

#s-020c13bb-ae39-410c-ba9c-77a85e8e9ac1 {
  text-align: center;
}




  #s-020c13bb-ae39-410c-ba9c-77a85e8e9ac1 img.shogun-image {
    
    width: px;
  }


#s-020c13bb-ae39-410c-ba9c-77a85e8e9ac1 .shogun-image-content {
  
    align-items: center;
  
}

#s-5b5a4d3b-5ea5-4ad7-98f5-b6454730da36 {
  min-height: 50px;
background-color: rgba(174, 233, 232, 1);
}








#s-5b5a4d3b-5ea5-4ad7-98f5-b6454730da36 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5b5a4d3b-5ea5-4ad7-98f5-b6454730da36.shg-box.shg-c {
  justify-content: center;
}

#s-750377f2-1d83-48a8-9a38-2bb09fee5d2d {
  min-height: 50px;
background-color: rgba(221, 248, 247, 1);
}








#s-750377f2-1d83-48a8-9a38-2bb09fee5d2d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-750377f2-1d83-48a8-9a38-2bb09fee5d2d.shg-box.shg-c {
  justify-content: center;
}

#s-317a98a4-47ff-4202-b4c3-e8908d5d579b {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 1600px;
background-color: rgba(245, 245, 245, 1);
}








#s-317a98a4-47ff-4202-b4c3-e8908d5d579b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-317a98a4-47ff-4202-b4c3-e8908d5d579b.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-ded14328-5cd8-4ed1-a934-fe48f54b3ad3"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-8c1220ec-4e2d-4a96-9c4f-b34e6a07d6db {
  text-align: center;
}




  #s-8c1220ec-4e2d-4a96-9c4f-b34e6a07d6db img.shogun-image {
    
    width: px;
  }


#s-8c1220ec-4e2d-4a96-9c4f-b34e6a07d6db .shogun-image-content {
  
    align-items: center;
  
}

#s-aa4ed6f1-3661-4ad7-80b1-d6eb063d4411 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-aa4ed6f1-3661-4ad7-80b1-d6eb063d4411 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-aa4ed6f1-3661-4ad7-80b1-d6eb063d4411.shg-box.shg-c {
  justify-content: center;
}

#s-68a91984-a77f-459d-b768-27cad593fd0e {
  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-68a91984-a77f-459d-b768-27cad593fd0e {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-68a91984-a77f-459d-b768-27cad593fd0e {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-68a91984-a77f-459d-b768-27cad593fd0e {
  
}
}@media (max-width: 767px){#s-68a91984-a77f-459d-b768-27cad593fd0e {
  
}
}







#s-68a91984-a77f-459d-b768-27cad593fd0e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-68a91984-a77f-459d-b768-27cad593fd0e.shg-box.shg-c {
  justify-content: center;
}

#s-5e8f25fd-5142-4bb4-9e3b-1b3227dca096 {
  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-d38b7db4-4251-4ae5-bd6a-ee0861f83a0e {
  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-dba90104-98ba-49c5-9a21-4a2170c09f7f {
  min-height: 50px;
background-color: rgba(228, 228, 228, 1);
}








#s-dba90104-98ba-49c5-9a21-4a2170c09f7f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dba90104-98ba-49c5-9a21-4a2170c09f7f.shg-box.shg-c {
  justify-content: center;
}

#s-61221d15-7cdc-4696-80df-5a3555ad1b81 {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 1600px;
background-color: rgba(245, 245, 245, 1);
}








#s-61221d15-7cdc-4696-80df-5a3555ad1b81 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-61221d15-7cdc-4696-80df-5a3555ad1b81.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-a1f60c05-7136-46f5-8f99-e532744b3974"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-1cb2f326-3961-4dd2-9662-a9cdbb0bf750 {
  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-1cb2f326-3961-4dd2-9662-a9cdbb0bf750 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-1cb2f326-3961-4dd2-9662-a9cdbb0bf750 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-1cb2f326-3961-4dd2-9662-a9cdbb0bf750 {
  
}
}@media (max-width: 767px){#s-1cb2f326-3961-4dd2-9662-a9cdbb0bf750 {
  
}
}







#s-1cb2f326-3961-4dd2-9662-a9cdbb0bf750 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1cb2f326-3961-4dd2-9662-a9cdbb0bf750.shg-box.shg-c {
  justify-content: center;
}

#s-f6dd1262-cca5-446c-bf6e-0c1157dbf516 {
  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-5ff10ffd-bf62-41b9-99c4-043e917a95b7 {
  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-4938a4f3-0639-40f3-8df8-d6f0ea3f339f {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-4938a4f3-0639-40f3-8df8-d6f0ea3f339f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4938a4f3-0639-40f3-8df8-d6f0ea3f339f.shg-box.shg-c {
  justify-content: center;
}

#s-e5391730-f4c3-4d12-9531-ac66e63e510c {
  text-align: center;
}




  #s-e5391730-f4c3-4d12-9531-ac66e63e510c img.shogun-image {
    
    width: px;
  }


#s-e5391730-f4c3-4d12-9531-ac66e63e510c .shogun-image-content {
  
    align-items: center;
  
}

#s-31678b2e-5b30-4dfc-9133-903227433d64 {
  min-height: 50px;
background-color: rgba(221, 248, 247, 1);
}








#s-31678b2e-5b30-4dfc-9133-903227433d64 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-31678b2e-5b30-4dfc-9133-903227433d64.shg-box.shg-c {
  justify-content: center;
}

#s-86ba0e5d-d605-43da-8c39-ee9a2fc23d2e {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 1600px;
background-color: rgba(245, 245, 245, 1);
}








#s-86ba0e5d-d605-43da-8c39-ee9a2fc23d2e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-86ba0e5d-d605-43da-8c39-ee9a2fc23d2e.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-7197b6f9-6cc2-42a5-aee3-2f7788c169ed"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-a2e5ed15-d751-4ee9-a82a-f533039f80a6 {
  text-align: center;
}




  #s-a2e5ed15-d751-4ee9-a82a-f533039f80a6 img.shogun-image {
    
    width: px;
  }


#s-a2e5ed15-d751-4ee9-a82a-f533039f80a6 .shogun-image-content {
  
    align-items: center;
  
}

#s-1e4491e8-6d61-441c-82a6-4c40de070ee1 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-1e4491e8-6d61-441c-82a6-4c40de070ee1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1e4491e8-6d61-441c-82a6-4c40de070ee1.shg-box.shg-c {
  justify-content: center;
}

#s-07e6c7c5-38dc-4fe0-8e37-7d9026dc95a5 {
  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-07e6c7c5-38dc-4fe0-8e37-7d9026dc95a5 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-07e6c7c5-38dc-4fe0-8e37-7d9026dc95a5 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-07e6c7c5-38dc-4fe0-8e37-7d9026dc95a5 {
  
}
}@media (max-width: 767px){#s-07e6c7c5-38dc-4fe0-8e37-7d9026dc95a5 {
  
}
}







#s-07e6c7c5-38dc-4fe0-8e37-7d9026dc95a5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-07e6c7c5-38dc-4fe0-8e37-7d9026dc95a5.shg-box.shg-c {
  justify-content: center;
}

#s-e0551c92-3907-4416-a72e-85fd214620ec {
  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-fbd66c20-cd20-4853-afbe-1b0166c35789 {
  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-0b3a1153-387f-4f4e-bed6-c6cd57b33b3b {
  min-height: 50px;
background-color: rgba(228, 228, 228, 1);
}








#s-0b3a1153-387f-4f4e-bed6-c6cd57b33b3b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0b3a1153-387f-4f4e-bed6-c6cd57b33b3b.shg-box.shg-c {
  justify-content: center;
}

#s-5ab24d51-2b09-4a21-8c08-1b93045c9d5b {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
max-width: 1600px;
background-color: rgba(245, 245, 245, 1);
}








#s-5ab24d51-2b09-4a21-8c08-1b93045c9d5b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5ab24d51-2b09-4a21-8c08-1b93045c9d5b.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-c5728680-3d90-4053-9bd6-11c94b87162a"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-c76822f5-fe61-4711-b061-26af9596a805 {
  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-c76822f5-fe61-4711-b061-26af9596a805 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c76822f5-fe61-4711-b061-26af9596a805 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-c76822f5-fe61-4711-b061-26af9596a805 {
  
}
}@media (max-width: 767px){#s-c76822f5-fe61-4711-b061-26af9596a805 {
  
}
}







#s-c76822f5-fe61-4711-b061-26af9596a805 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c76822f5-fe61-4711-b061-26af9596a805.shg-box.shg-c {
  justify-content: center;
}

#s-4d6fd4f8-f33c-4823-8f0a-e2389fc9002f {
  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-73775002-53d0-45a9-8c1a-a89ddedcec8a {
  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-c2564a5c-2c33-4973-aec7-7f3f9227e83b {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-c2564a5c-2c33-4973-aec7-7f3f9227e83b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c2564a5c-2c33-4973-aec7-7f3f9227e83b.shg-box.shg-c {
  justify-content: center;
}

#s-18d99c51-57c0-484d-b9c6-3ed6f42f760e {
  text-align: center;
}




  #s-18d99c51-57c0-484d-b9c6-3ed6f42f760e img.shogun-image {
    
    width: px;
  }


#s-18d99c51-57c0-484d-b9c6-3ed6f42f760e .shogun-image-content {
  
    align-items: center;
  
}

#s-3917ac7a-2ee6-410a-852e-a3896a882b6c {
  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-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-3917ac7a-2ee6-410a-852e-a3896a882b6c"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-459b5a42-1f34-4934-b1fd-dd06d2c273e3 {
  margin-top: auto;
margin-bottom: auto;
min-height: 800px;
}








#s-459b5a42-1f34-4934-b1fd-dd06d2c273e3 > .shg-box-overlay {
  background-color: rgba(122, 121, 121, 1);
  opacity: 0;
}#s-459b5a42-1f34-4934-b1fd-dd06d2c273e3 {
  cursor: pointer;
}#s-459b5a42-1f34-4934-b1fd-dd06d2c273e3.shg-box.shg-c {
  justify-content: center;
}

#s-fcca7f66-0671-4f6e-9d4b-c39757592601 {
  margin-top: 10%;
margin-left: 10px;
margin-bottom: 10%;
margin-right: 10px;
min-height: 50px;
}








#s-fcca7f66-0671-4f6e-9d4b-c39757592601 > .shg-box-overlay {
  background-color: rgba(56, 56, 56, 1);
  opacity: 0.46;
}#s-fcca7f66-0671-4f6e-9d4b-c39757592601.shg-box.shg-c {
  justify-content: center;
}

#s-26f2a8e9-cb07-494a-8ce1-456d18cfa3d4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-26f2a8e9-cb07-494a-8ce1-456d18cfa3d4 .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-f766e66b-d89b-4e9c-b653-ee212f74796f {
  margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-f766e66b-d89b-4e9c-b653-ee212f74796f {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f766e66b-d89b-4e9c-b653-ee212f74796f {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-f766e66b-d89b-4e9c-b653-ee212f74796f {
  
}
}@media (max-width: 767px){#s-f766e66b-d89b-4e9c-b653-ee212f74796f {
  
}
}
#s-ccbae43b-3456-4f94-b8d4-ec4ca4fbff38 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 0.1);
}

#s-ccbae43b-3456-4f94-b8d4-ec4ca4fbff38 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-f469c19d-a134-4a74-8d26-adfc5fe52d97 {
  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-f469c19d-a134-4a74-8d26-adfc5fe52d97 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f469c19d-a134-4a74-8d26-adfc5fe52d97 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-f469c19d-a134-4a74-8d26-adfc5fe52d97 {
  
}
}@media (max-width: 767px){#s-f469c19d-a134-4a74-8d26-adfc5fe52d97 {
  
}
}







#s-f469c19d-a134-4a74-8d26-adfc5fe52d97 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f469c19d-a134-4a74-8d26-adfc5fe52d97.shg-box.shg-c {
  justify-content: center;
}

#s-157c4677-ac0f-481f-a7bb-3bbccf9996ee {
  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-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-157c4677-ac0f-481f-a7bb-3bbccf9996ee"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-c8cf6727-a758-40de-9fe4-3f0ff2133aa8 {
  margin-top: 20px;
margin-bottom: 20px;
}

#s-d7bf46b4-ffe4-412a-a3ac-e5d7ffce417f {
  margin-top: 20px;
margin-bottom: 20px;
background-color: rgba(255, 255, 255, 0);
}

#s-3ef67352-5c77-4c51-a619-27ede1440068 {
  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-93fd67db-f313-4b36-a8ee-ce3cda4abcd2 {
  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-93fd67db-f313-4b36-a8ee-ce3cda4abcd2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-93fd67db-f313-4b36-a8ee-ce3cda4abcd2.shg-box.shg-c {
  justify-content: flex-start;
}

#s-333e9696-6b8a-4603-b6ec-7c1c2a507674 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 0.1);
}

#s-333e9696-6b8a-4603-b6ec-7c1c2a507674 .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-d3bc1f73-e17a-4789-bf11-8c6412128e90 {
  padding-top: 0px;
padding-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-2f4a778f-3b42-4389-a75c-f9da825ad226"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-386567de-ba1f-453e-87fe-3f907e7c949f {
  text-align: center;
}




  #s-386567de-ba1f-453e-87fe-3f907e7c949f img.shogun-image {
    
    width: px;
  }


#s-386567de-ba1f-453e-87fe-3f907e7c949f .shogun-image-content {
  
    align-items: center;
  
}

#s-bbe5b84c-78a2-453b-946d-7d0b5836e814 {
  text-align: center;
}




  #s-bbe5b84c-78a2-453b-946d-7d0b5836e814 img.shogun-image {
    
    width: px;
  }


#s-bbe5b84c-78a2-453b-946d-7d0b5836e814 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-2cefe7f3-4136-40f6-a699-71734e74887c"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-b8083e60-5233-4ea2-868b-fa64acb1db2a {
  text-align: center;
}




  #s-b8083e60-5233-4ea2-868b-fa64acb1db2a img.shogun-image {
    
    width: px;
  }


#s-b8083e60-5233-4ea2-868b-fa64acb1db2a .shogun-image-content {
  
    align-items: center;
  
}

#s-496f2a2f-1f13-400c-a55e-b97ab7f26c6f {
  text-align: center;
}




  #s-496f2a2f-1f13-400c-a55e-b97ab7f26c6f img.shogun-image {
    
    width: px;
  }


#s-496f2a2f-1f13-400c-a55e-b97ab7f26c6f .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-5399dd9b-7441-4a58-a8c3-6cd29a21bec0"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-0d1057a4-1f22-45c4-b725-601599567bb3 {
  text-align: center;
}




  #s-0d1057a4-1f22-45c4-b725-601599567bb3 img.shogun-image {
    
    width: px;
  }


#s-0d1057a4-1f22-45c4-b725-601599567bb3 .shogun-image-content {
  
    align-items: center;
  
}

#s-a5f6567e-2458-467e-950c-917d1b390314 {
  text-align: center;
}




  #s-a5f6567e-2458-467e-950c-917d1b390314 img.shogun-image {
    
    width: px;
  }


#s-a5f6567e-2458-467e-950c-917d1b390314 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-8191e42c-9df5-4367-80eb-4344b5c29846"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-44c1df21-b066-4de3-9bc1-ae732362153a {
  text-align: center;
}




  #s-44c1df21-b066-4de3-9bc1-ae732362153a img.shogun-image {
    
    width: px;
  }


#s-44c1df21-b066-4de3-9bc1-ae732362153a .shogun-image-content {
  
    align-items: center;
  
}

#s-a67e60af-e2d8-48df-8b73-25a55a56cf96 {
  text-align: center;
}




  #s-a67e60af-e2d8-48df-8b73-25a55a56cf96 img.shogun-image {
    
    width: px;
  }


#s-a67e60af-e2d8-48df-8b73-25a55a56cf96 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-37616faa-2509-4321-b702-ab96f3038060"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-20cff9a5-1215-4861-8ff7-b1311d23519e {
  text-align: center;
}




  #s-20cff9a5-1215-4861-8ff7-b1311d23519e img.shogun-image {
    
    width: px;
  }


#s-20cff9a5-1215-4861-8ff7-b1311d23519e .shogun-image-content {
  
    align-items: center;
  
}

#s-40c925a2-1a09-4548-80db-06ee4bf5c4fb {
  text-align: center;
}




  #s-40c925a2-1a09-4548-80db-06ee4bf5c4fb img.shogun-image {
    
    width: px;
  }


#s-40c925a2-1a09-4548-80db-06ee4bf5c4fb .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-f2a9861b-9916-4a26-b4ab-d4c3356b1d81"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-b76b1f54-379a-4a6c-b0f4-bf77f3c31e86 {
  text-align: center;
}




  #s-b76b1f54-379a-4a6c-b0f4-bf77f3c31e86 img.shogun-image {
    
    width: px;
  }


#s-b76b1f54-379a-4a6c-b0f4-bf77f3c31e86 .shogun-image-content {
  
    align-items: center;
  
}

#s-22233b77-b9ac-4d7a-887f-f288f9380221 {
  text-align: center;
}




  #s-22233b77-b9ac-4d7a-887f-f288f9380221 img.shogun-image {
    
    width: px;
  }


#s-22233b77-b9ac-4d7a-887f-f288f9380221 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-b1424a74-b9ac-45b9-93dc-fe1359b8d4bc"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-543fd9d7-a374-42d3-9893-c7ab0444d4f3 {
  text-align: center;
}




  #s-543fd9d7-a374-42d3-9893-c7ab0444d4f3 img.shogun-image {
    
    width: px;
  }


#s-543fd9d7-a374-42d3-9893-c7ab0444d4f3 .shogun-image-content {
  
    align-items: center;
  
}

#s-32669ea6-9055-4b5b-b1fc-f20c0811ddae {
  text-align: center;
}




  #s-32669ea6-9055-4b5b-b1fc-f20c0811ddae img.shogun-image {
    
    width: px;
  }


#s-32669ea6-9055-4b5b-b1fc-f20c0811ddae .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-9a5bd458-bad0-4c7f-bdfd-4a569783bf1a"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-9914eba7-6257-4bf6-9830-553c88533775 {
  text-align: center;
}




  #s-9914eba7-6257-4bf6-9830-553c88533775 img.shogun-image {
    
    width: px;
  }


#s-9914eba7-6257-4bf6-9830-553c88533775 .shogun-image-content {
  
    align-items: center;
  
}

#s-feeaa5fe-0b91-4834-b505-e6ec472f17a4 {
  text-align: center;
}




  #s-feeaa5fe-0b91-4834-b505-e6ec472f17a4 img.shogun-image {
    
    width: px;
  }


#s-feeaa5fe-0b91-4834-b505-e6ec472f17a4 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-a2c37fd0-7732-4529-b73a-4d15443c2673"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-a84b8b70-3fe9-40f6-8baf-9c076a579c6b {
  text-align: center;
}




  #s-a84b8b70-3fe9-40f6-8baf-9c076a579c6b img.shogun-image {
    
    width: px;
  }


#s-a84b8b70-3fe9-40f6-8baf-9c076a579c6b .shogun-image-content {
  
    align-items: center;
  
}

#s-61e3902c-60d4-42fe-b015-2b973a0ca111 {
  text-align: center;
}




  #s-61e3902c-60d4-42fe-b015-2b973a0ca111 img.shogun-image {
    
    width: px;
  }


#s-61e3902c-60d4-42fe-b015-2b973a0ca111 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-0b2ec85f-0cad-4cb5-adaa-850e6fcd21ec"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-af8c28b6-b647-4638-8622-ae98150da587 {
  text-align: center;
}




  #s-af8c28b6-b647-4638-8622-ae98150da587 img.shogun-image {
    
    width: px;
  }


#s-af8c28b6-b647-4638-8622-ae98150da587 .shogun-image-content {
  
    align-items: center;
  
}

#s-6e6f4022-dc60-478e-a645-216e43252314 {
  text-align: center;
}




  #s-6e6f4022-dc60-478e-a645-216e43252314 img.shogun-image {
    
    width: px;
  }


#s-6e6f4022-dc60-478e-a645-216e43252314 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-9998b1bb-5823-4969-9371-67353c1e9b40"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-07bc5133-73b6-4364-a2f0-6d43783a1982 {
  text-align: center;
}




  #s-07bc5133-73b6-4364-a2f0-6d43783a1982 img.shogun-image {
    
    width: px;
  }


#s-07bc5133-73b6-4364-a2f0-6d43783a1982 .shogun-image-content {
  
    align-items: center;
  
}

#s-e7efcb38-fd46-4b66-9669-2f3ee1632adc {
  text-align: center;
}




  #s-e7efcb38-fd46-4b66-9669-2f3ee1632adc img.shogun-image {
    
    width: px;
  }


#s-e7efcb38-fd46-4b66-9669-2f3ee1632adc .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-a69213ce-d3eb-44bb-b0bc-9452616d2c4f"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-4c311c56-8fba-4434-9484-07812f586577 {
  text-align: center;
}




  #s-4c311c56-8fba-4434-9484-07812f586577 img.shogun-image {
    
    width: px;
  }


#s-4c311c56-8fba-4434-9484-07812f586577 .shogun-image-content {
  
    align-items: center;
  
}

#s-56eef4b9-ff52-45dd-a1e2-4caf6c70f6d9 {
  text-align: center;
}




  #s-56eef4b9-ff52-45dd-a1e2-4caf6c70f6d9 img.shogun-image {
    
    width: px;
  }


#s-56eef4b9-ff52-45dd-a1e2-4caf6c70f6d9 .shogun-image-content {
  
    align-items: center;
  
}

#s-a208b2d8-5922-48da-b833-7a743c1d04e6 {
  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-a208b2d8-5922-48da-b833-7a743c1d04e6 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-e477d447-82fe-4a47-8daf-b5c34bb45356 {
  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-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-3eff4df2-ded6-44ee-bdc2-c8531c2e95e5"] > .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-115c6398-e746-44a0-aed4-f984ec0b25ba > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-115c6398-e746-44a0-aed4-f984ec0b25ba > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-115c6398-e746-44a0-aed4-f984ec0b25ba > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(106, 108, 109, 1);
}

#s-115c6398-e746-44a0-aed4-f984ec0b25ba > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-115c6398-e746-44a0-aed4-f984ec0b25ba > .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-115c6398-e746-44a0-aed4-f984ec0b25ba > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-c91a2900-3355-49cd-a826-5d117bc83eea {
  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-c91a2900-3355-49cd-a826-5d117bc83eea img.shogun-image {
    
    width: px;
  }


#s-c91a2900-3355-49cd-a826-5d117bc83eea .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-ba8b2dfc-990a-4699-b9cb-100ed0b0557f {
  background-image: url(none);
background-repeat: no-repeat;
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;
hover-type: color;
}
#s-ba8b2dfc-990a-4699-b9cb-100ed0b0557f:hover {background-image: url(none) !important;
background-repeat: no-repeat !important;
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;
hover-type: color !important;}#s-ba8b2dfc-990a-4699-b9cb-100ed0b0557f:active {background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(242, 242, 242, 1) !important;
text-decoration: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}


#s-ba8b2dfc-990a-4699-b9cb-100ed0b0557f.shg-btn {
  color: rgba(98, 96, 96, 1);
  font-size: 20px;
  font-weight: 500;
  
  font-family: Oswald;
  display:  inline-block ;
}

#s-282ee064-b81f-430c-be28-ac96f8d5eb59 {
  min-height: 50px;
}








#s-282ee064-b81f-430c-be28-ac96f8d5eb59 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-282ee064-b81f-430c-be28-ac96f8d5eb59.shg-box.shg-c {
  justify-content: flex-start;
}

#s-728ca401-7314-49d3-8a6a-594f44db90f1 {
  margin-top: 10px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 0.1);
}

#s-728ca401-7314-49d3-8a6a-594f44db90f1 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-474ce399-ff39-4779-8957-d16d6480e48e {
  margin-top: 0px;
margin-left: 25px;
margin-bottom: 0px;
margin-right: 25px;
min-height: 50px;
}








#s-474ce399-ff39-4779-8957-d16d6480e48e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-474ce399-ff39-4779-8957-d16d6480e48e.shg-box.shg-c {
  justify-content: flex-start;
}

@media (min-width: 0px) {
[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-a276493c-a3cf-40d8-902b-0c32f8e9bd64"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-45231fad-b69c-4e67-8bf9-0b0f9f19b4ee {
  margin-top: 5px;
margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-45231fad-b69c-4e67-8bf9-0b0f9f19b4ee .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-b970f708-7d83-47e0-8317-fca0e1e38871 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-b970f708-7d83-47e0-8317-fca0e1e38871 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-b970f708-7d83-47e0-8317-fca0e1e38871 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-b970f708-7d83-47e0-8317-fca0e1e38871 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(106, 108, 109, 1);
}

#s-b970f708-7d83-47e0-8317-fca0e1e38871 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-b970f708-7d83-47e0-8317-fca0e1e38871 > .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-b970f708-7d83-47e0-8317-fca0e1e38871 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-e6eaab42-08e9-4cbc-80e7-5bffa487ea97 {
  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-79f10a25-ad67-448e-a4a0-df80b5a55a12 {
  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-d7f4244b-8d42-4938-b15d-975229668f40 {
  margin-top: 10px;
margin-left: 25px;
margin-bottom: 10px;
margin-right: 25px;
min-height: 50px;
}








#s-d7f4244b-8d42-4938-b15d-975229668f40 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d7f4244b-8d42-4938-b15d-975229668f40.shg-box.shg-c {
  justify-content: flex-start;
}

@media (min-width: 0px) {
[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-542e3c4b-c6e8-4a0d-9e71-50398110e0cb"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-2961cfd3-636a-43de-9c5d-4ae5ffcf6e9e {
  margin-top: 5px;
margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-2961cfd3-636a-43de-9c5d-4ae5ffcf6e9e .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-4bcbeb39-4561-4493-b16d-caf35d8a14e6 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-4bcbeb39-4561-4493-b16d-caf35d8a14e6 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-4bcbeb39-4561-4493-b16d-caf35d8a14e6 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-4bcbeb39-4561-4493-b16d-caf35d8a14e6 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(106, 108, 109, 1);
}

#s-4bcbeb39-4561-4493-b16d-caf35d8a14e6 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-4bcbeb39-4561-4493-b16d-caf35d8a14e6 > .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-4bcbeb39-4561-4493-b16d-caf35d8a14e6 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-e20de994-98b5-4af5-a794-7347e7d37668 {
  min-height: 50px;
}








#s-e20de994-98b5-4af5-a794-7347e7d37668 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e20de994-98b5-4af5-a794-7347e7d37668.shg-box.shg-c {
  justify-content: center;
}

#s-29522526-8a05-4c8a-be9b-84487d68cfce {
  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-29522526-8a05-4c8a-be9b-84487d68cfce > .shg-box-overlay {
  background-color: rgba(252, 252, 252, 1);
  opacity: 0.4;
}#s-29522526-8a05-4c8a-be9b-84487d68cfce.shg-box.shg-c {
  justify-content: flex-start;
}

#s-b02c66ad-c1b7-40eb-954a-ace1a39e1cba {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b02c66ad-c1b7-40eb-954a-ace1a39e1cba .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-c85a92f4-c1ca-4814-b1ea-753f8153366d {
  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-e79e5f5b-af23-46b4-9a03-8c8092c8d45d {
  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-e79e5f5b-af23-46b4-9a03-8c8092c8d45d:hover {background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-e79e5f5b-af23-46b4-9a03-8c8092c8d45d:active {background-image: url(none) !important;
background-repeat: no-repeat !important;
background-color: rgba(242, 242, 242, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
hover-type: color !important;}


#s-e79e5f5b-af23-46b4-9a03-8c8092c8d45d.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;
  }
}

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