.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-9f37e454-1aa3-48e9-8bff-a655156d9cd0 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 0px;
padding-bottom: 10px;
padding-right: 0px;
min-height: 50px;
max-width: 1200px;
background-color: rgba(255, 255, 255, 1);
}








#s-9f37e454-1aa3-48e9-8bff-a655156d9cd0 > .shg-box-overlay {
  background-color: rgba(222, 222, 222, 1);
  opacity: 0;
}#s-9f37e454-1aa3-48e9-8bff-a655156d9cd0.shg-box.shg-c {
  justify-content: center;
}

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

.shogun-heading-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-d12e3636-ca05-433b-a7cd-c4de6b652252 {
  margin-top: 30px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(245, 245, 245, 1);
}

#s-d12e3636-ca05-433b-a7cd-c4de6b652252 .shogun-heading-component h1 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 32px;
  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-4f80ca2c-a3c3-41cc-ba86-1f23754f0389 {
  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-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
background-position: center center;
}

@media (min-width: 0px) {
[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-4f80ca2c-a3c3-41cc-ba86-1f23754f0389"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-b8f9d2c0-d674-4bf2-b21b-1077e6ef27cd {
  margin-top: auto;
margin-left: auto;
margin-bottom: auto;
margin-right: auto;
min-height: 400px;
}








#s-b8f9d2c0-d674-4bf2-b21b-1077e6ef27cd > .shg-box-overlay {
  background-color: rgba(122, 121, 121, 1);
  opacity: 0;
}#s-b8f9d2c0-d674-4bf2-b21b-1077e6ef27cd.shg-box.shg-c {
  justify-content: center;
}

#s-14535cdb-d610-457f-bf22-0a18e5a436a3 {
  margin-top: 0px;
margin-left: 10px;
margin-bottom: 0px;
margin-right: 10px;
min-height: 50px;
}








#s-14535cdb-d610-457f-bf22-0a18e5a436a3 > .shg-box-overlay {
  background-color: rgba(56, 56, 56, 1);
  opacity: 0.5;
}#s-14535cdb-d610-457f-bf22-0a18e5a436a3.shg-box.shg-c {
  justify-content: flex-start;
}

#s-56242c17-9196-4f72-a224-c05f3fd86e55 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-56242c17-9196-4f72-a224-c05f3fd86e55 .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-60c5329f-38d3-48ad-a4dc-b61b0895de44 {
  margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-60c5329f-38d3-48ad-a4dc-b61b0895de44 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-60c5329f-38d3-48ad-a4dc-b61b0895de44 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-60c5329f-38d3-48ad-a4dc-b61b0895de44 {
  
}
}@media (max-width: 767px){#s-60c5329f-38d3-48ad-a4dc-b61b0895de44 {
  
}
}
#s-f5357a18-e9aa-465c-8f0f-f9e7f55b7a5b {
  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-f5357a18-e9aa-465c-8f0f-f9e7f55b7a5b > .shg-box-overlay {
  background-color: rgba(222, 222, 222, 1);
  opacity: 0;
}#s-f5357a18-e9aa-465c-8f0f-f9e7f55b7a5b.shg-box.shg-c {
  justify-content: center;
}

#s-742e4ebf-91bf-411c-85fb-3f469c097090 {
  min-height: 50px;
background-color: rgba(221, 248, 247, 1);
}








#s-742e4ebf-91bf-411c-85fb-3f469c097090 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-742e4ebf-91bf-411c-85fb-3f469c097090.shg-box.shg-c {
  justify-content: center;
}

#s-5f1ad623-ba31-498e-a6b0-615e654b30c4 {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-5f1ad623-ba31-498e-a6b0-615e654b30c4"] > .shg-row {
    flex-flow: column-reverse;
  }
}

.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-64a30a05-0453-4805-b4ea-b27c304784f7 {
  text-align: center;
}




  #s-64a30a05-0453-4805-b4ea-b27c304784f7 img.shogun-image {
    
    width: px;
  }


#s-64a30a05-0453-4805-b4ea-b27c304784f7 .shogun-image-content {
  
    align-items: center;
  
}

#s-37ddfeeb-ae36-472c-9a0f-08f0eb0150d2 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-37ddfeeb-ae36-472c-9a0f-08f0eb0150d2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-37ddfeeb-ae36-472c-9a0f-08f0eb0150d2.shg-box.shg-c {
  justify-content: center;
}

#s-1ff660b7-12e5-4162-b7bc-9eb193ca869d {
  margin-top: 20%;
margin-left: auto;
margin-bottom: 20%;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-1ff660b7-12e5-4162-b7bc-9eb193ca869d {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-1ff660b7-12e5-4162-b7bc-9eb193ca869d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-1ff660b7-12e5-4162-b7bc-9eb193ca869d {
  
}
}@media (max-width: 767px){#s-1ff660b7-12e5-4162-b7bc-9eb193ca869d {
  
}
}







#s-1ff660b7-12e5-4162-b7bc-9eb193ca869d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1ff660b7-12e5-4162-b7bc-9eb193ca869d.shg-box.shg-c {
  justify-content: center;
}

#s-d63d4d17-dc2f-47c9-8cb2-ad367a129550 {
  border-style: solid;
margin-top: 10%;
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-0508e08c-e374-49fb-ad9c-f8a943a17771 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
max-width: 400px;
}

#s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-0e1e4ba8-e15e-4629-8770-4bc0c593ff4e"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-fa090b5d-061b-4cd3-bf38-1d28186d90f7 {
  margin-top: 20%;
margin-left: auto;
margin-bottom: 20%;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-fa090b5d-061b-4cd3-bf38-1d28186d90f7 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-fa090b5d-061b-4cd3-bf38-1d28186d90f7 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-fa090b5d-061b-4cd3-bf38-1d28186d90f7 {
  
}
}@media (max-width: 767px){#s-fa090b5d-061b-4cd3-bf38-1d28186d90f7 {
  
}
}







#s-fa090b5d-061b-4cd3-bf38-1d28186d90f7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fa090b5d-061b-4cd3-bf38-1d28186d90f7.shg-box.shg-c {
  justify-content: center;
}

#s-c83e7525-b9c9-40fc-a065-9d5586828b5f {
  border-style: solid;
margin-top: 10%;
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-90ad1b99-81db-46fc-b3a2-c2dc95624386 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
max-width: 400px;
}

#s-10ef4016-d124-4438-922a-aa8bfece593c {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-10ef4016-d124-4438-922a-aa8bfece593c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-10ef4016-d124-4438-922a-aa8bfece593c.shg-box.shg-c {
  justify-content: center;
}

#s-e3241267-7890-45f5-a3c5-d63372de4dbb {
  text-align: center;
}




  #s-e3241267-7890-45f5-a3c5-d63372de4dbb img.shogun-image {
    
    width: px;
  }


#s-e3241267-7890-45f5-a3c5-d63372de4dbb .shogun-image-content {
  
    align-items: center;
  
}

#s-fd6e74bc-024a-4824-b0a8-06a7f75470d5 {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-fd6e74bc-024a-4824-b0a8-06a7f75470d5"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-efc56cf0-ce0f-41e5-b1bf-2e4d5a5b96bc {
  text-align: center;
}




  #s-efc56cf0-ce0f-41e5-b1bf-2e4d5a5b96bc img.shogun-image {
    
    width: px;
  }


#s-efc56cf0-ce0f-41e5-b1bf-2e4d5a5b96bc .shogun-image-content {
  
    align-items: center;
  
}

#s-237fbd20-37e8-4dd1-b0aa-bd28df638cb5 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-237fbd20-37e8-4dd1-b0aa-bd28df638cb5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-237fbd20-37e8-4dd1-b0aa-bd28df638cb5.shg-box.shg-c {
  justify-content: center;
}

#s-b00b42c0-2565-4ed9-811e-23ddc0d6171e {
  margin-top: 20%;
margin-left: auto;
margin-bottom: 20%;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-b00b42c0-2565-4ed9-811e-23ddc0d6171e {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b00b42c0-2565-4ed9-811e-23ddc0d6171e {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-b00b42c0-2565-4ed9-811e-23ddc0d6171e {
  
}
}@media (max-width: 767px){#s-b00b42c0-2565-4ed9-811e-23ddc0d6171e {
  
}
}







#s-b00b42c0-2565-4ed9-811e-23ddc0d6171e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b00b42c0-2565-4ed9-811e-23ddc0d6171e.shg-box.shg-c {
  justify-content: center;
}

#s-2ed9bd33-9f71-465a-85db-6679c4333829 {
  border-style: solid;
margin-top: 10%;
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-7a458eba-2262-4612-b269-418dc9dfbfc1 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
max-width: 400px;
}

#s-69779c7b-94ba-4bb2-81e2-63813aa39179 {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-69779c7b-94ba-4bb2-81e2-63813aa39179"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-c7694b89-0ce9-4e43-8a0a-1509831fdaf3 {
  margin-top: 20%;
margin-left: auto;
margin-bottom: 20%;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-c7694b89-0ce9-4e43-8a0a-1509831fdaf3 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c7694b89-0ce9-4e43-8a0a-1509831fdaf3 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-c7694b89-0ce9-4e43-8a0a-1509831fdaf3 {
  
}
}@media (max-width: 767px){#s-c7694b89-0ce9-4e43-8a0a-1509831fdaf3 {
  
}
}







#s-c7694b89-0ce9-4e43-8a0a-1509831fdaf3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c7694b89-0ce9-4e43-8a0a-1509831fdaf3.shg-box.shg-c {
  justify-content: center;
}

#s-7969498d-13ff-4dae-8969-8f0b6d2caf8e {
  border-style: solid;
margin-top: 10%;
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-6269dca2-8d94-4901-8c25-ce3e8bf7785d {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
max-width: 400px;
}

#s-50ce3fd1-9bb8-4af9-9667-83f4242ea5c2 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-50ce3fd1-9bb8-4af9-9667-83f4242ea5c2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-50ce3fd1-9bb8-4af9-9667-83f4242ea5c2.shg-box.shg-c {
  justify-content: center;
}

#s-53d30848-4236-400a-a3ad-7f3c87c9383b {
  text-align: center;
}




  #s-53d30848-4236-400a-a3ad-7f3c87c9383b img.shogun-image {
    
    width: px;
  }


#s-53d30848-4236-400a-a3ad-7f3c87c9383b .shogun-image-content {
  
    align-items: center;
  
}

#s-3612f0a2-92be-47cc-8768-79a99c8a214e {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-3612f0a2-92be-47cc-8768-79a99c8a214e"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-c4332f2a-36b8-4538-9423-ff3d57c96e70 {
  text-align: center;
}




  #s-c4332f2a-36b8-4538-9423-ff3d57c96e70 img.shogun-image {
    
    width: px;
  }


#s-c4332f2a-36b8-4538-9423-ff3d57c96e70 .shogun-image-content {
  
    align-items: center;
  
}

#s-affd9a30-5cba-4ac1-b590-7b3978ee2afe {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-affd9a30-5cba-4ac1-b590-7b3978ee2afe > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-affd9a30-5cba-4ac1-b590-7b3978ee2afe.shg-box.shg-c {
  justify-content: center;
}

#s-a1718d2a-32ec-4553-95ea-9ca10684871a {
  margin-top: 20%;
margin-left: auto;
margin-bottom: 20%;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-a1718d2a-32ec-4553-95ea-9ca10684871a {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-a1718d2a-32ec-4553-95ea-9ca10684871a {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-a1718d2a-32ec-4553-95ea-9ca10684871a {
  
}
}@media (max-width: 767px){#s-a1718d2a-32ec-4553-95ea-9ca10684871a {
  
}
}







#s-a1718d2a-32ec-4553-95ea-9ca10684871a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a1718d2a-32ec-4553-95ea-9ca10684871a.shg-box.shg-c {
  justify-content: center;
}

#s-74cead2c-6491-4fcd-bfaa-b1e0debe44c0 {
  border-style: solid;
margin-top: 10%;
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-84e0ad86-7d8f-47a8-a0d9-f805fb0a23fd {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
max-width: 400px;
}

#s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-1ebae9ba-64ab-4120-8fc0-4e5ee4594a2d"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-0da96f88-30bf-446c-b842-2dbe66619578 {
  margin-top: 20%;
margin-left: auto;
margin-bottom: 20%;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-0da96f88-30bf-446c-b842-2dbe66619578 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0da96f88-30bf-446c-b842-2dbe66619578 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-0da96f88-30bf-446c-b842-2dbe66619578 {
  
}
}@media (max-width: 767px){#s-0da96f88-30bf-446c-b842-2dbe66619578 {
  
}
}







#s-0da96f88-30bf-446c-b842-2dbe66619578 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0da96f88-30bf-446c-b842-2dbe66619578.shg-box.shg-c {
  justify-content: center;
}

#s-f26de27a-e948-43bf-a96a-f0b60bfcf7ae {
  border-style: solid;
margin-top: 10%;
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-94a2fe0a-7e27-4f41-89a7-858e20ec60d4 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
max-width: 400px;
}

#s-0cfb0cec-f9e8-464f-8d3a-741aa6ecce26 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-0cfb0cec-f9e8-464f-8d3a-741aa6ecce26 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0cfb0cec-f9e8-464f-8d3a-741aa6ecce26.shg-box.shg-c {
  justify-content: center;
}

#s-981998e5-0803-4b11-8be8-3429c1ce35a7 {
  text-align: center;
}




  #s-981998e5-0803-4b11-8be8-3429c1ce35a7 img.shogun-image {
    
    width: px;
  }


#s-981998e5-0803-4b11-8be8-3429c1ce35a7 .shogun-image-content {
  
    align-items: center;
  
}

#s-79883284-c2e9-48b7-90f4-99bd518e257e {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-79883284-c2e9-48b7-90f4-99bd518e257e"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-7512c623-b521-48a1-9b4f-4143fb0aa937 {
  text-align: center;
}




  #s-7512c623-b521-48a1-9b4f-4143fb0aa937 img.shogun-image {
    
    width: px;
  }


#s-7512c623-b521-48a1-9b4f-4143fb0aa937 .shogun-image-content {
  
    align-items: center;
  
}

#s-3256d240-c206-41f9-ad53-227f4c4452a4 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-3256d240-c206-41f9-ad53-227f4c4452a4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3256d240-c206-41f9-ad53-227f4c4452a4.shg-box.shg-c {
  justify-content: center;
}

#s-95c96ebc-ada9-436f-8cfa-4d9e742e90d6 {
  margin-top: 20%;
margin-left: auto;
margin-bottom: 20%;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-95c96ebc-ada9-436f-8cfa-4d9e742e90d6 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-95c96ebc-ada9-436f-8cfa-4d9e742e90d6 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-95c96ebc-ada9-436f-8cfa-4d9e742e90d6 {
  
}
}@media (max-width: 767px){#s-95c96ebc-ada9-436f-8cfa-4d9e742e90d6 {
  
}
}







#s-95c96ebc-ada9-436f-8cfa-4d9e742e90d6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-95c96ebc-ada9-436f-8cfa-4d9e742e90d6.shg-box.shg-c {
  justify-content: center;
}

#s-01e93fc7-59b1-4731-ae1f-4d4b9e6a880d {
  border-style: solid;
margin-top: 10%;
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-303d54ae-23f0-4a88-81d4-40454f589281 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
max-width: 400px;
}

#s-aef3c073-4ebd-4605-a9f4-01647198d628 {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-aef3c073-4ebd-4605-a9f4-01647198d628"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-d63fd480-27ac-479f-ac2a-1c64774b9469 {
  margin-top: 20%;
margin-left: auto;
margin-bottom: 20%;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-d63fd480-27ac-479f-ac2a-1c64774b9469 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d63fd480-27ac-479f-ac2a-1c64774b9469 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-d63fd480-27ac-479f-ac2a-1c64774b9469 {
  
}
}@media (max-width: 767px){#s-d63fd480-27ac-479f-ac2a-1c64774b9469 {
  
}
}







#s-d63fd480-27ac-479f-ac2a-1c64774b9469 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d63fd480-27ac-479f-ac2a-1c64774b9469.shg-box.shg-c {
  justify-content: center;
}

#s-952544a8-1fc7-497a-93ea-1bbfb32a2dad {
  border-style: solid;
margin-top: 10%;
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-47fa6622-9652-428a-81a6-3abd4d162d18 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
max-width: 400px;
}

#s-19f2d294-267d-4160-aa24-e0b0e1419073 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-19f2d294-267d-4160-aa24-e0b0e1419073 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-19f2d294-267d-4160-aa24-e0b0e1419073.shg-box.shg-c {
  justify-content: center;
}

#s-c1896f1e-2d86-41b1-bb28-014a690f1f5b {
  text-align: center;
}




  #s-c1896f1e-2d86-41b1-bb28-014a690f1f5b img.shogun-image {
    
    width: px;
  }


#s-c1896f1e-2d86-41b1-bb28-014a690f1f5b .shogun-image-content {
  
    align-items: center;
  
}

#s-74073834-c3cd-404f-87e4-053fa2e2fc85 {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-74073834-c3cd-404f-87e4-053fa2e2fc85"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-50e059d2-0be3-48e8-9596-3341166bcf61 {
  text-align: center;
}




  #s-50e059d2-0be3-48e8-9596-3341166bcf61 img.shogun-image {
    
    width: px;
  }


#s-50e059d2-0be3-48e8-9596-3341166bcf61 .shogun-image-content {
  
    align-items: center;
  
}

#s-6675d058-bd3d-4598-9ab0-740b426293f8 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 800px;
}








#s-6675d058-bd3d-4598-9ab0-740b426293f8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6675d058-bd3d-4598-9ab0-740b426293f8.shg-box.shg-c {
  justify-content: center;
}

#s-f35a7bc5-432f-410c-9cdf-8b6da295ff48 {
  margin-top: 20%;
margin-left: auto;
margin-bottom: 20%;
margin-right: auto;
padding-left: 10px;
padding-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-f35a7bc5-432f-410c-9cdf-8b6da295ff48 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f35a7bc5-432f-410c-9cdf-8b6da295ff48 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-f35a7bc5-432f-410c-9cdf-8b6da295ff48 {
  
}
}@media (max-width: 767px){#s-f35a7bc5-432f-410c-9cdf-8b6da295ff48 {
  
}
}







#s-f35a7bc5-432f-410c-9cdf-8b6da295ff48 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f35a7bc5-432f-410c-9cdf-8b6da295ff48.shg-box.shg-c {
  justify-content: center;
}

#s-40dbede5-3f60-4418-a662-9a21661fe38e {
  border-style: solid;
margin-top: 10%;
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-ff05b25d-fdb4-4a8f-88c6-8dba95645a9c {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 5px;
max-width: 400px;
}

#s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6 {
  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: 0px;
padding-top: 0px;
padding-bottom: 0px;
background-position: center center;
}

@media (min-width: 0px) {
[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-41c1b24c-b3c8-4b95-98a2-4bdf883162c6"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-a5e02321-4cd2-4e6a-9b20-05250926db20 {
  margin-top: auto;
margin-bottom: auto;
min-height: 800px;
}








#s-a5e02321-4cd2-4e6a-9b20-05250926db20 > .shg-box-overlay {
  background-color: rgba(122, 121, 121, 1);
  opacity: 0;
}#s-a5e02321-4cd2-4e6a-9b20-05250926db20 {
  cursor: pointer;
}#s-a5e02321-4cd2-4e6a-9b20-05250926db20.shg-box.shg-c {
  justify-content: center;
}

#s-443d649c-3714-462c-8239-0980887e57b5 {
  margin-top: 10%;
margin-left: 10px;
margin-bottom: 10%;
margin-right: 10px;
min-height: 50px;
}








#s-443d649c-3714-462c-8239-0980887e57b5 > .shg-box-overlay {
  background-color: rgba(56, 56, 56, 1);
  opacity: 0.46;
}#s-443d649c-3714-462c-8239-0980887e57b5.shg-box.shg-c {
  justify-content: center;
}

#s-d2cbb9f5-c028-4c89-a5d4-1f3f19476273 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d2cbb9f5-c028-4c89-a5d4-1f3f19476273 .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-1025647a-ecd5-4848-a32c-6332814702e1 {
  margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-1025647a-ecd5-4848-a32c-6332814702e1 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-1025647a-ecd5-4848-a32c-6332814702e1 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-1025647a-ecd5-4848-a32c-6332814702e1 {
  
}
}@media (max-width: 767px){#s-1025647a-ecd5-4848-a32c-6332814702e1 {
  
}
}
#s-3872f9e9-2c8b-4ce8-a17c-1412e001ec3a {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 0.1);
}

#s-3872f9e9-2c8b-4ce8-a17c-1412e001ec3a .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-5154e24e-b2ed-4814-9f01-6a2818e20e58 {
  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-5154e24e-b2ed-4814-9f01-6a2818e20e58 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5154e24e-b2ed-4814-9f01-6a2818e20e58 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-5154e24e-b2ed-4814-9f01-6a2818e20e58 {
  
}
}@media (max-width: 767px){#s-5154e24e-b2ed-4814-9f01-6a2818e20e58 {
  
}
}







#s-5154e24e-b2ed-4814-9f01-6a2818e20e58 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5154e24e-b2ed-4814-9f01-6a2818e20e58.shg-box.shg-c {
  justify-content: center;
}

#s-ed76bad3-b287-45d2-98c2-85d7fdedbb47 {
  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-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-ed76bad3-b287-45d2-98c2-85d7fdedbb47"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-5f994bfc-ca12-4542-901e-b623892df4f3 {
  margin-top: 20px;
margin-bottom: 20px;
}

#s-d69b82e0-1178-446b-a96f-8a2cce227e41 {
  margin-top: 20px;
margin-bottom: 20px;
background-color: rgba(255, 255, 255, 0);
}

#s-059514db-8976-42ec-b55d-cc70109a552e {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
}

#s-06d49e9d-1b99-4e11-b935-8065523af991 {
  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-06d49e9d-1b99-4e11-b935-8065523af991 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-06d49e9d-1b99-4e11-b935-8065523af991.shg-box.shg-c {
  justify-content: flex-start;
}

#s-10c650ce-f81c-4e24-97da-ff7b908b07f4 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 0.1);
}

#s-10c650ce-f81c-4e24-97da-ff7b908b07f4 .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-5f883730-6dba-40c4-8173-aadd99e399bf {
  padding-top: 10px;
padding-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-64049586-7a3e-4537-9581-3a0cb4cca83c"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-a3659129-f760-4f1f-b59e-324c0fe5bcbe {
  text-align: center;
}




  #s-a3659129-f760-4f1f-b59e-324c0fe5bcbe img.shogun-image {
    
    width: px;
  }


#s-a3659129-f760-4f1f-b59e-324c0fe5bcbe .shogun-image-content {
  
    align-items: center;
  
}

#s-7603c22c-ffb5-4389-9762-8149712c505a {
  text-align: center;
}




  #s-7603c22c-ffb5-4389-9762-8149712c505a img.shogun-image {
    
    width: px;
  }


#s-7603c22c-ffb5-4389-9762-8149712c505a .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-87855d13-e968-4240-a0cf-fc18dd5c9734"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-72c2f219-d0bc-4b80-a750-5230140c36da {
  text-align: center;
}




  #s-72c2f219-d0bc-4b80-a750-5230140c36da img.shogun-image {
    
    width: px;
  }


#s-72c2f219-d0bc-4b80-a750-5230140c36da .shogun-image-content {
  
    align-items: center;
  
}

#s-1e18075a-ebf8-4840-8d3e-a98c687ef59d {
  text-align: center;
}




  #s-1e18075a-ebf8-4840-8d3e-a98c687ef59d img.shogun-image {
    
    width: px;
  }


#s-1e18075a-ebf8-4840-8d3e-a98c687ef59d .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-538606a9-d6c0-4309-9a08-4eb9410c797e"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-8f0c28d1-b3c4-486c-bbfd-a60278912edc {
  text-align: center;
}




  #s-8f0c28d1-b3c4-486c-bbfd-a60278912edc img.shogun-image {
    
    width: px;
  }


#s-8f0c28d1-b3c4-486c-bbfd-a60278912edc .shogun-image-content {
  
    align-items: center;
  
}

#s-831723de-8730-4f90-ae3b-bb6577b369d5 {
  text-align: center;
}




  #s-831723de-8730-4f90-ae3b-bb6577b369d5 img.shogun-image {
    
    width: px;
  }


#s-831723de-8730-4f90-ae3b-bb6577b369d5 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-a9c228a9-1280-47ba-9e08-0403ec229215"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-4dacf5c9-db24-499a-bba1-6b62b95b1706 {
  text-align: center;
}




  #s-4dacf5c9-db24-499a-bba1-6b62b95b1706 img.shogun-image {
    
    width: px;
  }


#s-4dacf5c9-db24-499a-bba1-6b62b95b1706 .shogun-image-content {
  
    align-items: center;
  
}

#s-2a295f15-f71e-4fca-8e15-1cbe35d00b3a {
  text-align: center;
}




  #s-2a295f15-f71e-4fca-8e15-1cbe35d00b3a img.shogun-image {
    
    width: px;
  }


#s-2a295f15-f71e-4fca-8e15-1cbe35d00b3a .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-149c06dd-6b46-468f-9bb9-61cc5bd24335"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-8fabaabc-ae56-4edf-9869-4bfa8a6f8380 {
  text-align: center;
}




  #s-8fabaabc-ae56-4edf-9869-4bfa8a6f8380 img.shogun-image {
    
    width: px;
  }


#s-8fabaabc-ae56-4edf-9869-4bfa8a6f8380 .shogun-image-content {
  
    align-items: center;
  
}

#s-bb564bce-a3d6-40ed-a360-b4fb063ca743 {
  text-align: center;
}




  #s-bb564bce-a3d6-40ed-a360-b4fb063ca743 img.shogun-image {
    
    width: px;
  }


#s-bb564bce-a3d6-40ed-a360-b4fb063ca743 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-87ea6f5d-3ee8-46eb-84c0-619cd3c29849"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-a8a6b529-0ef3-442b-a3de-0d24e30b8d3e {
  text-align: center;
}




  #s-a8a6b529-0ef3-442b-a3de-0d24e30b8d3e img.shogun-image {
    
    width: px;
  }


#s-a8a6b529-0ef3-442b-a3de-0d24e30b8d3e .shogun-image-content {
  
    align-items: center;
  
}

#s-a4651c00-6f35-4e26-bfd7-b5089d478546 {
  text-align: center;
}




  #s-a4651c00-6f35-4e26-bfd7-b5089d478546 img.shogun-image {
    
    width: px;
  }


#s-a4651c00-6f35-4e26-bfd7-b5089d478546 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-2a6f3268-cc73-41d1-bc19-ba065e91977b"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-af49a0b6-340e-4548-9417-f1780adeb9a5 {
  text-align: center;
}




  #s-af49a0b6-340e-4548-9417-f1780adeb9a5 img.shogun-image {
    
    width: px;
  }


#s-af49a0b6-340e-4548-9417-f1780adeb9a5 .shogun-image-content {
  
    align-items: center;
  
}

#s-3ff6b499-d954-421f-87b4-efc22846489b {
  text-align: center;
}




  #s-3ff6b499-d954-421f-87b4-efc22846489b img.shogun-image {
    
    width: px;
  }


#s-3ff6b499-d954-421f-87b4-efc22846489b .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-410e0b9c-dffb-475c-af43-e132eca0b871"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-32786eba-7116-4b7b-aaef-13a21f1cf4c8 {
  text-align: center;
}




  #s-32786eba-7116-4b7b-aaef-13a21f1cf4c8 img.shogun-image {
    
    width: px;
  }


#s-32786eba-7116-4b7b-aaef-13a21f1cf4c8 .shogun-image-content {
  
    align-items: center;
  
}

#s-13daff7b-a570-47da-8e87-2a99419c199b {
  text-align: center;
}




  #s-13daff7b-a570-47da-8e87-2a99419c199b img.shogun-image {
    
    width: px;
  }


#s-13daff7b-a570-47da-8e87-2a99419c199b .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-c8a1e4c5-3e62-429e-b498-3162d9187ee6"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-c6ba9f33-6321-4333-91f2-545737b4d8b8 {
  text-align: center;
}




  #s-c6ba9f33-6321-4333-91f2-545737b4d8b8 img.shogun-image {
    
    width: px;
  }


#s-c6ba9f33-6321-4333-91f2-545737b4d8b8 .shogun-image-content {
  
    align-items: center;
  
}

#s-21c890a7-e3c1-427a-834d-755202aeb7f3 {
  text-align: center;
}




  #s-21c890a7-e3c1-427a-834d-755202aeb7f3 img.shogun-image {
    
    width: px;
  }


#s-21c890a7-e3c1-427a-834d-755202aeb7f3 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-cd1cbb0e-8a45-4d8f-beb5-b8c3a4d90553"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-8f674c59-d920-47ad-91fa-19a4e02b4092 {
  text-align: center;
}




  #s-8f674c59-d920-47ad-91fa-19a4e02b4092 img.shogun-image {
    
    width: px;
  }


#s-8f674c59-d920-47ad-91fa-19a4e02b4092 .shogun-image-content {
  
    align-items: center;
  
}

#s-f8d7f386-ae8e-4576-98c9-f3ae34f24ed2 {
  text-align: center;
}




  #s-f8d7f386-ae8e-4576-98c9-f3ae34f24ed2 img.shogun-image {
    
    width: px;
  }


#s-f8d7f386-ae8e-4576-98c9-f3ae34f24ed2 .shogun-image-content {
  
    align-items: center;
  
}

#s-b48da6ca-2d6e-4276-8bac-18c670ad2645 {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 0.1);
}

#s-b48da6ca-2d6e-4276-8bac-18c670ad2645 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-371f892d-9e41-4785-82b4-3b4b4c316e89 {
  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-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-6d180467-d544-48ab-8182-8dee7e1f74cf"] > .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-2eb48c84-9e61-45ad-9c16-bfa657daea61 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-2eb48c84-9e61-45ad-9c16-bfa657daea61 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-2eb48c84-9e61-45ad-9c16-bfa657daea61 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(106, 108, 109, 1);
}

#s-2eb48c84-9e61-45ad-9c16-bfa657daea61 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-2eb48c84-9e61-45ad-9c16-bfa657daea61 > .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-2eb48c84-9e61-45ad-9c16-bfa657daea61 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-61b71a1f-95e2-470f-97d6-133933ba35f2 {
  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-61b71a1f-95e2-470f-97d6-133933ba35f2 img.shogun-image {
    
    width: px;
  }


#s-61b71a1f-95e2-470f-97d6-133933ba35f2 .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-40bf5746-b975-4387-820d-777e2910851e {
  border-style: solid;
margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
padding-top: 5px;
padding-left: 5px;
padding-bottom: 5px;
padding-right: 5px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(98, 96, 96, 1);
border-radius: 4px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-40bf5746-b975-4387-820d-777e2910851e:hover {border-style: solid !important;
border-top-width: 2px !important;
border-left-width: 2px !important;
border-bottom-width: 2px !important;
border-right-width: 2px !important;
border-color: rgba(141, 216, 234, 1) !important;
border-radius: 4px !important;
background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-40bf5746-b975-4387-820d-777e2910851e:active {background-color: rgba(242, 242, 242, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}


#s-40bf5746-b975-4387-820d-777e2910851e.shg-btn {
  color: rgba(98, 96, 96, 1);
  font-size: 20px;
  font-weight: 500;
  
  font-family: Oswald;
  display:  inline-block ;
}

#s-9e498253-94c0-4576-8666-6bfa2427ca4f {
  min-height: 50px;
}








#s-9e498253-94c0-4576-8666-6bfa2427ca4f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9e498253-94c0-4576-8666-6bfa2427ca4f.shg-box.shg-c {
  justify-content: flex-start;
}

#s-1cf90a90-1f8c-4bb2-a2d5-d5ee22591046 {
  margin-top: 10px;
margin-bottom: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 0.1);
}

#s-1cf90a90-1f8c-4bb2-a2d5-d5ee22591046 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-0c333476-47e5-43a8-aba8-66b9f4f8648b {
  margin-top: 0px;
margin-left: 25px;
margin-bottom: 0px;
margin-right: 25px;
min-height: 50px;
}








#s-0c333476-47e5-43a8-aba8-66b9f4f8648b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0c333476-47e5-43a8-aba8-66b9f4f8648b.shg-box.shg-c {
  justify-content: flex-start;
}

@media (min-width: 0px) {
[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-fe648700-112d-4014-94ec-78ac9f9203a6"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-5e51686d-f19c-4efa-950b-3dace2237536 {
  margin-top: 5px;
margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-5e51686d-f19c-4efa-950b-3dace2237536 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-1cebd863-4a46-41fb-8802-d4f22e2a3814 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-1cebd863-4a46-41fb-8802-d4f22e2a3814 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-1cebd863-4a46-41fb-8802-d4f22e2a3814 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-1cebd863-4a46-41fb-8802-d4f22e2a3814 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(106, 108, 109, 1);
}

#s-1cebd863-4a46-41fb-8802-d4f22e2a3814 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-1cebd863-4a46-41fb-8802-d4f22e2a3814 > .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-1cebd863-4a46-41fb-8802-d4f22e2a3814 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-373a6948-fa3c-4b53-972f-566e547efe32 {
  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-2f1aa704-acd8-4c08-ab05-4c423389dee2 {
  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-56db4f91-b727-413b-8906-3ab014289da3 {
  min-height: 50px;
}








#s-56db4f91-b727-413b-8906-3ab014289da3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-56db4f91-b727-413b-8906-3ab014289da3.shg-box.shg-c {
  justify-content: flex-start;
}

@media (min-width: 0px) {
[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-8278d3f0-befb-4959-86be-316c615fefed"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-f49f2953-e987-4045-9270-4b7e3da750e5 {
  margin-top: 5px;
margin-bottom: 5px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-f49f2953-e987-4045-9270-4b7e3da750e5 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-768ca225-359f-4be9-b565-ba3d7936052d {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-768ca225-359f-4be9-b565-ba3d7936052d > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-768ca225-359f-4be9-b565-ba3d7936052d > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: #f5f5f5;
  padding: 10px;
}

#s-768ca225-359f-4be9-b565-ba3d7936052d > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(106, 108, 109, 1);
}

#s-768ca225-359f-4be9-b565-ba3d7936052d > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-768ca225-359f-4be9-b565-ba3d7936052d > .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-768ca225-359f-4be9-b565-ba3d7936052d > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-d3e85ae3-aae9-4dde-aa6a-0ec880a06bbb {
  min-height: 50px;
}








#s-d3e85ae3-aae9-4dde-aa6a-0ec880a06bbb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d3e85ae3-aae9-4dde-aa6a-0ec880a06bbb.shg-box.shg-c {
  justify-content: center;
}

#s-df85de40-373a-46c7-9b46-5c58b6eb6362 {
  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-df85de40-373a-46c7-9b46-5c58b6eb6362 > .shg-box-overlay {
  background-color: rgba(252, 252, 252, 1);
  opacity: 0.4;
}#s-df85de40-373a-46c7-9b46-5c58b6eb6362.shg-box.shg-c {
  justify-content: flex-start;
}

#s-509f8eec-455f-4008-95a1-0dead8915713 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-509f8eec-455f-4008-95a1-0dead8915713 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-cf61d3af-aef5-4feb-9753-adbcf8078973 {
  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-46e01727-204f-4b12-a160-dac847f6f17b {
  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-46e01727-204f-4b12-a160-dac847f6f17b:hover {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-46e01727-204f-4b12-a160-dac847f6f17b:active {background-color: rgba(242, 242, 242, 1) !important;
text-decoration: none !important;
color: rgba(0, 0, 0, 1) !important;
background-image: none !important;
hover-type: color !important;}


#s-46e01727-204f-4b12-a160-dac847f6f17b.shg-btn {
  color: rgba(98, 96, 96, 1);
  font-size: 20px;
  
  
  font-family: Oswald;
  display:  inline-block ;
}

#s-5a28b9df-032f-469b-9c85-d114937e2a43 {
  min-height: 50px;
}








#s-5a28b9df-032f-469b-9c85-d114937e2a43 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5a28b9df-032f-469b-9c85-d114937e2a43.shg-box.shg-c {
  justify-content: flex-start;
}

#s-b21c2bae-f484-4c74-89fd-b3796752eded {
  text-align: center;
}




  #s-b21c2bae-f484-4c74-89fd-b3796752eded img.shogun-image {
    
    width: px;
  }


#s-b21c2bae-f484-4c74-89fd-b3796752eded .shogun-image-content {
  
    align-items: center;
  
}

/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen
  and (min-width: 1024px) and (max-height: 1366px)
  and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none)
  and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
	opacity: 0;
}
.shogun-lazyloaded {
	opacity: 1;
	transition: opacity 300ms;
}
