.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-21daaf42-aa97-43bb-a748-f6735d974952 {
  min-height: 50px;
}








#s-21daaf42-aa97-43bb-a748-f6735d974952 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-21daaf42-aa97-43bb-a748-f6735d974952.shg-box.shg-c {
  justify-content: center;
}

#s-603b7595-9bd5-4cd2-8568-317b919df3a0 {
  padding-top: 5px;
padding-left: 5px;
padding-right: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-603b7595-9bd5-4cd2-8568-317b919df3a0 {
  display: none;
}
#s-603b7595-9bd5-4cd2-8568-317b919df3a0, #wrap-s-603b7595-9bd5-4cd2-8568-317b919df3a0 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-603b7595-9bd5-4cd2-8568-317b919df3a0 {
  display: none;
}
#s-603b7595-9bd5-4cd2-8568-317b919df3a0, #wrap-s-603b7595-9bd5-4cd2-8568-317b919df3a0 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-603b7595-9bd5-4cd2-8568-317b919df3a0 {
  display: none;
}
#s-603b7595-9bd5-4cd2-8568-317b919df3a0, #wrap-s-603b7595-9bd5-4cd2-8568-317b919df3a0 { display:none !important; }}







#s-603b7595-9bd5-4cd2-8568-317b919df3a0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-603b7595-9bd5-4cd2-8568-317b919df3a0.shg-box.shg-c {
  justify-content: 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;
}

@media (min-width: 0px) {
[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-ec51b2df-cfcd-42d3-b802-e0e3e1ff38f9"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-3e8dca05-3c4b-4f94-b68c-c39c2f736119 {
  background-repeat: no-repeat;
background-size: contain;
min-height: 50px;
background-position: center center;
}








#s-3e8dca05-3c4b-4f94-b68c-c39c2f736119 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3e8dca05-3c4b-4f94-b68c-c39c2f736119 {
  cursor: pointer;
}#s-3e8dca05-3c4b-4f94-b68c-c39c2f736119.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-e269112f-3070-4cea-9483-caca9e0e19f8 {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e269112f-3070-4cea-9483-caca9e0e19f8 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: Exo 2;
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-f6783f87-afd5-45b4-96bb-e1d16e99ed31 {
  background-repeat: no-repeat;
background-size: contain;
min-height: 50px;
background-position: center center;
}








#s-f6783f87-afd5-45b4-96bb-e1d16e99ed31 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f6783f87-afd5-45b4-96bb-e1d16e99ed31.shg-box.shg-c {
  justify-content: center;
}

#s-318ad716-2183-47a1-acde-c6bdbc19a84c {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-318ad716-2183-47a1-acde-c6bdbc19a84c .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: Exo 2;
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-bd4c93a9-fd3e-4179-b96d-ce846a6d6553 {
  background-repeat: no-repeat;
background-size: contain;
min-height: 50px;
background-position: center center;
}








#s-bd4c93a9-fd3e-4179-b96d-ce846a6d6553 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bd4c93a9-fd3e-4179-b96d-ce846a6d6553 {
  cursor: pointer;
}#s-bd4c93a9-fd3e-4179-b96d-ce846a6d6553.shg-box.shg-c {
  justify-content: center;
}

#s-37fcf3cd-68bb-43fc-81e4-895ffee2a4ee {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-37fcf3cd-68bb-43fc-81e4-895ffee2a4ee .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: Exo 2;
  font-style:   ;
  font-size: 12px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-2ef1b1f2-99ca-438e-81e2-821eafde242a {
  padding-top: 5px;
padding-left: 5px;
padding-right: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-2ef1b1f2-99ca-438e-81e2-821eafde242a {
  display: none;
}
#s-2ef1b1f2-99ca-438e-81e2-821eafde242a, #wrap-s-2ef1b1f2-99ca-438e-81e2-821eafde242a { display:none !important; }}







#s-2ef1b1f2-99ca-438e-81e2-821eafde242a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2ef1b1f2-99ca-438e-81e2-821eafde242a.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-cd8cc406-9d02-4115-924f-52daf9d02ced"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-3c849adb-2cd4-4cd1-bfbc-ea6d5091ae0e {
  background-repeat: no-repeat;
background-size: contain;
min-height: 50px;
background-position: center center;
}








#s-3c849adb-2cd4-4cd1-bfbc-ea6d5091ae0e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3c849adb-2cd4-4cd1-bfbc-ea6d5091ae0e {
  cursor: pointer;
}#s-3c849adb-2cd4-4cd1-bfbc-ea6d5091ae0e.shg-box.shg-c {
  justify-content: center;
}

#s-86ff4f6c-6941-45a1-9390-7cb0f3c4f7d9 {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-86ff4f6c-6941-45a1-9390-7cb0f3c4f7d9 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: Exo 2;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-2da5dd77-fa44-47f7-b7cc-85ac37b2be0f {
  background-repeat: no-repeat;
background-size: contain;
min-height: 50px;
background-position: center center;
}








#s-2da5dd77-fa44-47f7-b7cc-85ac37b2be0f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2da5dd77-fa44-47f7-b7cc-85ac37b2be0f.shg-box.shg-c {
  justify-content: center;
}

#s-69c96803-0ab2-42a9-9fcf-3527858c209b {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-69c96803-0ab2-42a9-9fcf-3527858c209b .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: Exo 2;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-b8ac7e0d-d325-4c0d-a561-e035f4f28d27 {
  background-repeat: no-repeat;
background-size: contain;
min-height: 50px;
background-position: center center;
}








#s-b8ac7e0d-d325-4c0d-a561-e035f4f28d27 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b8ac7e0d-d325-4c0d-a561-e035f4f28d27 {
  cursor: pointer;
}#s-b8ac7e0d-d325-4c0d-a561-e035f4f28d27.shg-box.shg-c {
  justify-content: center;
}

#s-39ac1341-0a92-4161-921f-f608824b1fbb {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-39ac1341-0a92-4161-921f-f608824b1fbb .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: Exo 2;
  font-style:   ;
  font-size: 16px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-158691b7-6bd5-4506-a130-f4f3a8e46d55 {
  margin-top: 0px;
min-height: 100px;
}








#s-158691b7-6bd5-4506-a130-f4f3a8e46d55 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-158691b7-6bd5-4506-a130-f4f3a8e46d55.shg-box.shg-c {
  justify-content: center;
}

#s-014f6a2b-c955-4b51-96bc-3bdc202c4808 {
  background-color: rgba(0, 0, 0, 1);
}

@media (min-width: 0px) {
[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-014f6a2b-c955-4b51-96bc-3bdc202c4808"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-1f908760-6cd5-4933-95ad-a28b5373d92d {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
min-height: 100px;
}








#s-1f908760-6cd5-4933-95ad-a28b5373d92d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1f908760-6cd5-4933-95ad-a28b5373d92d.shg-box.shg-c {
  justify-content: center;
}

#s-ef44d0f0-5083-4fb9-9cec-aa3b94859a8d {
  text-align: center;
}

#s-ef44d0f0-5083-4fb9-9cec-aa3b94859a8d .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  500 ;
  font-family: Exo 2;
  font-style:   ;
  font-size: 26px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-5c0d892b-ee07-4e03-8d60-ccff2796fcce {
  min-height: 100px;
}








#s-5c0d892b-ee07-4e03-8d60-ccff2796fcce > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5c0d892b-ee07-4e03-8d60-ccff2796fcce.shg-box.shg-c {
  justify-content: center;
}

.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-48078587-d87f-4aca-becc-72453673f8f9 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 25px;
background-color: rgba(236, 232, 26, 1);
text-align: center;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-48078587-d87f-4aca-becc-72453673f8f9:hover {background-color: #424242 !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;}#s-48078587-d87f-4aca-becc-72453673f8f9:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-48078587-d87f-4aca-becc-72453673f8f9-btn-wrapper {
    text-align: center;
  }


#s-48078587-d87f-4aca-becc-72453673f8f9.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-ffbed14b-d8a0-4469-9b42-22ac0a602209 {
  min-height: 50px;
}








#s-ffbed14b-d8a0-4469-9b42-22ac0a602209 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ffbed14b-d8a0-4469-9b42-22ac0a602209.shg-box.shg-c {
  justify-content: center;
}

#s-fdede4ef-a55f-40dc-90ae-9adb69b0b370 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-fdede4ef-a55f-40dc-90ae-9adb69b0b370 {
  display: none;
}
#s-fdede4ef-a55f-40dc-90ae-9adb69b0b370, #wrap-s-fdede4ef-a55f-40dc-90ae-9adb69b0b370 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fdede4ef-a55f-40dc-90ae-9adb69b0b370 {
  display: none;
}
#s-fdede4ef-a55f-40dc-90ae-9adb69b0b370, #wrap-s-fdede4ef-a55f-40dc-90ae-9adb69b0b370 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-fdede4ef-a55f-40dc-90ae-9adb69b0b370 {
  display: none;
}
#s-fdede4ef-a55f-40dc-90ae-9adb69b0b370, #wrap-s-fdede4ef-a55f-40dc-90ae-9adb69b0b370 { display:none !important; }}







#s-fdede4ef-a55f-40dc-90ae-9adb69b0b370 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fdede4ef-a55f-40dc-90ae-9adb69b0b370.shg-box.shg-c {
  justify-content: center;
}

#s-41a91aa4-e7c9-4208-a877-1f93cf97c9cf {
  min-height: 300px;
background-attachment: scroll;
}
@media (min-width: 1200px){#s-41a91aa4-e7c9-4208-a877-1f93cf97c9cf {
  background-attachment: fixed;
}
}@media (max-width: 767px){#s-41a91aa4-e7c9-4208-a877-1f93cf97c9cf {
  background-attachment: fixed;
}
}







#s-41a91aa4-e7c9-4208-a877-1f93cf97c9cf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-41a91aa4-e7c9-4208-a877-1f93cf97c9cf.shg-box.shg-c {
  justify-content: center;
}
@media (max-width: 767px){






#s-41a91aa4-e7c9-4208-a877-1f93cf97c9cf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-41a91aa4-e7c9-4208-a877-1f93cf97c9cf.shg-box.shg-c {
  justify-content: flex-start;
}
}
#s-a969a118-db98-4304-a4f4-7d5e11b4cfd9 {
  border-style: solid;
padding-top: 40px;
padding-left: 30px;
padding-bottom: 40px;
padding-right: 30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
min-height: 300px;
background-color: rgba(255, 255, 255, 1);
background-attachment: scroll;
}
@media (max-width: 767px){#s-a969a118-db98-4304-a4f4-7d5e11b4cfd9 {
  padding-left: 10px;
padding-right: 10px;
background-attachment: scroll;
opacity: 1;
}
}







#s-a969a118-db98-4304-a4f4-7d5e11b4cfd9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a969a118-db98-4304-a4f4-7d5e11b4cfd9.shg-box.shg-c {
  justify-content: center;
}
@media (max-width: 767px){






#s-a969a118-db98-4304-a4f4-7d5e11b4cfd9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a969a118-db98-4304-a4f4-7d5e11b4cfd9.shg-box.shg-c {
  justify-content: flex-start;
}
}
#s-b6e05d89-addd-4a89-b1c7-b829ac1a85c2 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b6e05d89-addd-4a89-b1c7-b829ac1a85c2 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  500 ;
  font-family: Exo 2;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-c5c11936-47d3-4964-b280-a7f97cdb905b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c5c11936-47d3-4964-b280-a7f97cdb905b .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: Exo 2;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-867e4214-6d9b-4341-bc61-dbfdfb1f3837 {
  min-height: 50px;
}
@media (max-width: 767px){#s-867e4214-6d9b-4341-bc61-dbfdfb1f3837 {
  display: none;
}
#s-867e4214-6d9b-4341-bc61-dbfdfb1f3837, #wrap-s-867e4214-6d9b-4341-bc61-dbfdfb1f3837 { display:none !important; }}







#s-867e4214-6d9b-4341-bc61-dbfdfb1f3837 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-867e4214-6d9b-4341-bc61-dbfdfb1f3837.shg-box.shg-c {
  justify-content: center;
}

#s-67058ba5-976e-43f4-b116-33db54f622ac {
  background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
min-height: 600px;
background-position: center center;
}
@media (max-width: 767px){#s-67058ba5-976e-43f4-b116-33db54f622ac {
  min-height: 500px;
}
}







#s-67058ba5-976e-43f4-b116-33db54f622ac > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-67058ba5-976e-43f4-b116-33db54f622ac.shg-box.shg-c {
  justify-content: center;
}
@media (max-width: 767px){






#s-67058ba5-976e-43f4-b116-33db54f622ac > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-67058ba5-976e-43f4-b116-33db54f622ac.shg-box.shg-c {
  justify-content: flex-start;
}
}
#s-21a8ee9d-8fc9-4194-95e7-ecb87653076b {
  margin-top: 0px;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-21a8ee9d-8fc9-4194-95e7-ecb87653076b"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-79d83b6f-b371-43a7-9dcc-a05d2ecc24e6 {
  border-style: solid;
padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: solid;
min-height: 200px;
background-color: rgba(0, 0, 0, 0.85);
background-attachment: scroll;
}
@media (max-width: 767px){#s-79d83b6f-b371-43a7-9dcc-a05d2ecc24e6 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
background-attachment: scroll;
opacity: 1;
}
}







#s-79d83b6f-b371-43a7-9dcc-a05d2ecc24e6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-79d83b6f-b371-43a7-9dcc-a05d2ecc24e6.shg-box.shg-c {
  justify-content: center;
}
@media (max-width: 767px){






#s-79d83b6f-b371-43a7-9dcc-a05d2ecc24e6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-79d83b6f-b371-43a7-9dcc-a05d2ecc24e6.shg-box.shg-c {
  justify-content: flex-start;
}
}
#s-deed9b8e-d2cf-4e9d-83f6-eb43d7cbe3a6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-deed9b8e-d2cf-4e9d-83f6-eb43d7cbe3a6 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  500 ;
  font-family: Exo 2;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-332758fa-ec07-4814-a516-88205b54a591 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-332758fa-ec07-4814-a516-88205b54a591 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:   ;
  font-family: Exo 2;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-159baad4-06ec-4272-9e02-99774e6cffa2 {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 400px;
}








#s-159baad4-06ec-4272-9e02-99774e6cffa2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-159baad4-06ec-4272-9e02-99774e6cffa2.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-3b7cc380-b5ad-4398-82d2-fdf8a21352a4"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-e0c694c7-4def-463c-bd69-daf33e6b2883 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 400px;
}








#s-e0c694c7-4def-463c-bd69-daf33e6b2883 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e0c694c7-4def-463c-bd69-daf33e6b2883.shg-box.shg-c {
  justify-content: center;
}

#s-88eaff1c-ca36-4e05-8afc-d1c6d314570a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-88eaff1c-ca36-4e05-8afc-d1c6d314570a .shogun-heading-component h1 {
  color: #000;
  font-weight:  500 ;
  font-family: Exo 2;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-ab14e617-ae5e-426f-8c59-6de7e882ee40 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ab14e617-ae5e-426f-8c59-6de7e882ee40 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-65230804-d44e-4b00-bf9e-30fa67c9db96 {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 25px;
background-color: rgba(236, 232, 26, 1);
text-align: center;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-65230804-d44e-4b00-bf9e-30fa67c9db96:hover {background-color: #424242 !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;}#s-65230804-d44e-4b00-bf9e-30fa67c9db96:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-65230804-d44e-4b00-bf9e-30fa67c9db96-btn-wrapper {
    text-align: center;
  }


#s-65230804-d44e-4b00-bf9e-30fa67c9db96.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-64cad421-72e7-4a10-9e2a-0ef348c0df10 {
  background-size: cover;
min-height: 300px;
background-position: center center;
background-attachment: scroll;
}
@media (min-width: 992px) and (max-width: 1199px){#s-64cad421-72e7-4a10-9e2a-0ef348c0df10 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-64cad421-72e7-4a10-9e2a-0ef348c0df10 {
  
}
}@media (max-width: 767px){#s-64cad421-72e7-4a10-9e2a-0ef348c0df10 {
  
}
}







#s-64cad421-72e7-4a10-9e2a-0ef348c0df10 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-64cad421-72e7-4a10-9e2a-0ef348c0df10.shg-box.shg-c {
  justify-content: center;
}

#s-9d1cc0c3-85a9-42a8-8197-4488fb499734 {
  padding-top: 30px;
padding-bottom: 30px;
min-height: 400px;
}








#s-9d1cc0c3-85a9-42a8-8197-4488fb499734 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9d1cc0c3-85a9-42a8-8197-4488fb499734.shg-box.shg-c {
  justify-content: center;
}

#s-31764c4f-cb22-4cdc-976a-5484e7185c63 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-31764c4f-cb22-4cdc-976a-5484e7185c63 .shogun-heading-component h1 {
  color: #000;
  font-weight:  500 ;
  font-family: Exo 2;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-4f21702e-17b0-403d-bb09-104fe6e4be98 {
  margin-top: 30px;
margin-bottom: 30px;
min-height: 400px;
}








#s-4f21702e-17b0-403d-bb09-104fe6e4be98 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4f21702e-17b0-403d-bb09-104fe6e4be98.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-2debe4fb-badf-4bee-9fe2-9af7395625b5"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-e2f9d2be-d71d-45e0-b631-e08fe4a95baf {
  background-size: cover;
min-height: 500px;
background-position: center center;
background-attachment: scroll;
}
@media (min-width: 992px) and (max-width: 1199px){#s-e2f9d2be-d71d-45e0-b631-e08fe4a95baf {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-e2f9d2be-d71d-45e0-b631-e08fe4a95baf {
  
}
}@media (max-width: 767px){#s-e2f9d2be-d71d-45e0-b631-e08fe4a95baf {
  
}
}







#s-e2f9d2be-d71d-45e0-b631-e08fe4a95baf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e2f9d2be-d71d-45e0-b631-e08fe4a95baf.shg-box.shg-c {
  justify-content: center;
}

#s-0f9c6c30-d42d-4595-9dfe-89df1fee1be8 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 0px;
}








#s-0f9c6c30-d42d-4595-9dfe-89df1fee1be8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0f9c6c30-d42d-4595-9dfe-89df1fee1be8.shg-box.shg-c {
  justify-content: center;
}

#s-dbe53d72-6549-4e29-ad7d-e1a42b3c88d4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-dbe53d72-6549-4e29-ad7d-e1a42b3c88d4 .shogun-heading-component h1 {
  color: #000;
  font-weight:  500 ;
  font-family: Exo 2;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-8e36842e-49cc-4413-997a-7dc73f139fca {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8e36842e-49cc-4413-997a-7dc73f139fca .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



@media (max-width: 767px){#s-96ebae91-91a8-4612-ac8e-6bd71fe06203 {
  display: none;
}
#s-96ebae91-91a8-4612-ac8e-6bd71fe06203, #wrap-s-96ebae91-91a8-4612-ac8e-6bd71fe06203 { display:none !important; }}
@media (min-width: 0px) {
[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-96ebae91-91a8-4612-ac8e-6bd71fe06203"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 0px) {
[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-be6ee332-79fc-4407-b275-6c75f569589b"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-5515efd3-f091-4b5f-886c-71a63095f8de {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5515efd3-f091-4b5f-886c-71a63095f8de .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: Exo 2;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-773eec06-0a3f-4fef-8c44-9d86eccb23de {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-773eec06-0a3f-4fef-8c44-9d86eccb23de .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: Exo 2;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-0813078c-4a6b-429b-adbe-8b9cec61524c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0813078c-4a6b-429b-adbe-8b9cec61524c .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  font-family: Exo 2;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-bd8241ed-cb09-4094-9c0d-1ed87023cee6 {
  min-height: 50px;
}








#s-bd8241ed-cb09-4094-9c0d-1ed87023cee6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bd8241ed-cb09-4094-9c0d-1ed87023cee6.shg-box.shg-c {
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content-bottom {
  align-items: flex-end;
}
#s-26de7cd0-ce87-45c4-b429-cffbb6a4fe96 {
  text-align: center;
}




  #s-26de7cd0-ce87-45c4-b429-cffbb6a4fe96 img.shogun-image {
    
    width: px;
  }


#s-26de7cd0-ce87-45c4-b429-cffbb6a4fe96 .shogun-image-content {
  
    align-items: center;
  
}

#s-d2f9c937-a14e-4796-b513-7bb57859231a {
  min-height: 50px;
}








#s-d2f9c937-a14e-4796-b513-7bb57859231a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d2f9c937-a14e-4796-b513-7bb57859231a.shg-box.shg-c {
  justify-content: center;
}

#s-c4f47930-57c1-480c-a884-04fbd4d27014 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-c4f47930-57c1-480c-a884-04fbd4d27014 {
  display: none;
}
#s-c4f47930-57c1-480c-a884-04fbd4d27014, #wrap-s-c4f47930-57c1-480c-a884-04fbd4d27014 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c4f47930-57c1-480c-a884-04fbd4d27014 {
  display: none;
}
#s-c4f47930-57c1-480c-a884-04fbd4d27014, #wrap-s-c4f47930-57c1-480c-a884-04fbd4d27014 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c4f47930-57c1-480c-a884-04fbd4d27014 {
  display: none;
}
#s-c4f47930-57c1-480c-a884-04fbd4d27014, #wrap-s-c4f47930-57c1-480c-a884-04fbd4d27014 { display:none !important; }}
#s-c4f47930-57c1-480c-a884-04fbd4d27014 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-2dccb06f-880e-426c-b9d4-de59166d51e2 {
  margin-top: 30px;
margin-bottom: 30px;
min-height: 500px;
background-color: rgba(245, 245, 245, 1);
}








#s-2dccb06f-880e-426c-b9d4-de59166d51e2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2dccb06f-880e-426c-b9d4-de59166d51e2.shg-box.shg-c {
  justify-content: center;
}

#s-bbafc04e-d842-4d78-b24b-22206dc26165 {
  min-height: 400px;
}

@media (min-width: 0px) {
[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-bbafc04e-d842-4d78-b24b-22206dc26165"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-061306b1-6b3d-4e5e-9ec8-701684cf91be {
  min-height: 400px;
}








#s-061306b1-6b3d-4e5e-9ec8-701684cf91be > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-061306b1-6b3d-4e5e-9ec8-701684cf91be.shg-box.shg-c {
  justify-content: center;
}

#s-134c68e2-4b5e-4d88-b7c6-bbb7268b72c2 {
  text-align: center;
}




  #s-134c68e2-4b5e-4d88-b7c6-bbb7268b72c2 img.shogun-image {
    
    width: px;
  }


#s-134c68e2-4b5e-4d88-b7c6-bbb7268b72c2 .shogun-image-content {
  
    align-items: center;
  
}

#s-de85192a-90af-4854-901f-358d3adc19c6 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 550px;
}








#s-de85192a-90af-4854-901f-358d3adc19c6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-de85192a-90af-4854-901f-358d3adc19c6.shg-box.shg-c {
  justify-content: center;
}

#s-1588d009-4246-4d8a-a9dc-09420eab5804 {
  padding-top: 20px;
padding-bottom: 20px;
text-align: center;
}

#s-1588d009-4246-4d8a-a9dc-09420eab5804 .shogun-heading-component h1 {
  color: #000;
  font-weight:  500 ;
  font-family: Exo 2;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-8d598c06-127d-4259-8721-356d829abf8d {
  padding-top: 20px;
padding-bottom: 30px;
}

@media (min-width: 0px) {
[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-8b1edeca-0c4c-480f-a66c-4147529eabef"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-11bcf339-4338-49db-9ad3-77f0b0cc63ff {
  margin-top: 30px;
margin-bottom: 30px;
min-height: 600px;
}
@media (max-width: 767px){#s-11bcf339-4338-49db-9ad3-77f0b0cc63ff {
  display: none;
}
#s-11bcf339-4338-49db-9ad3-77f0b0cc63ff, #wrap-s-11bcf339-4338-49db-9ad3-77f0b0cc63ff { display:none !important; }}







#s-11bcf339-4338-49db-9ad3-77f0b0cc63ff > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-11bcf339-4338-49db-9ad3-77f0b0cc63ff.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-ac6d4f5d-fee6-420c-815a-8c422e39b579"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-3f527236-8cb3-4419-830c-703a7d6fd2fd {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 600px;
}








#s-3f527236-8cb3-4419-830c-703a7d6fd2fd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3f527236-8cb3-4419-830c-703a7d6fd2fd.shg-box.shg-c {
  justify-content: center;
}

#s-a3f61d1d-d8b6-49fb-a5d6-dbb0fcc47aa4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a3f61d1d-d8b6-49fb-a5d6-dbb0fcc47aa4 .shogun-heading-component h1 {
  color: #000;
  font-weight:  500 ;
  font-family: Exo 2;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-fe0f9d07-1c73-4212-87db-2ceaa6f155ff {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-fe0f9d07-1c73-4212-87db-2ceaa6f155ff .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-9899a82a-8a7d-4ac0-8081-b39aea251101 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 600px;
background-position: center center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-9899a82a-8a7d-4ac0-8081-b39aea251101 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-9899a82a-8a7d-4ac0-8081-b39aea251101 {
  
}
}@media (max-width: 767px){#s-9899a82a-8a7d-4ac0-8081-b39aea251101 {
  
}
}







#s-9899a82a-8a7d-4ac0-8081-b39aea251101 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9899a82a-8a7d-4ac0-8081-b39aea251101.shg-box.shg-c {
  justify-content: center;
}

#s-3141616b-05c5-4323-85f2-2dc9cdaf76ad {
  margin-top: 30px;
margin-bottom: 30px;
min-height: 600px;
}
@media (min-width: 1200px){#s-3141616b-05c5-4323-85f2-2dc9cdaf76ad {
  display: none;
}
#s-3141616b-05c5-4323-85f2-2dc9cdaf76ad, #wrap-s-3141616b-05c5-4323-85f2-2dc9cdaf76ad { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3141616b-05c5-4323-85f2-2dc9cdaf76ad {
  display: none;
}
#s-3141616b-05c5-4323-85f2-2dc9cdaf76ad, #wrap-s-3141616b-05c5-4323-85f2-2dc9cdaf76ad { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3141616b-05c5-4323-85f2-2dc9cdaf76ad {
  display: none;
}
#s-3141616b-05c5-4323-85f2-2dc9cdaf76ad, #wrap-s-3141616b-05c5-4323-85f2-2dc9cdaf76ad { display:none !important; }}







#s-3141616b-05c5-4323-85f2-2dc9cdaf76ad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3141616b-05c5-4323-85f2-2dc9cdaf76ad.shg-box.shg-c {
  justify-content: center;
}

#s-60ae8ddd-e97b-47d7-9456-3ce2bd3d947a {
  padding-top: 30px;
padding-bottom: 30px;
text-align: center;
}

#s-60ae8ddd-e97b-47d7-9456-3ce2bd3d947a .shogun-heading-component h1 {
  color: #000;
  font-weight:  500 ;
  font-family: Exo 2;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-9ceb0a09-841c-4f02-9198-618a8b517baa {
  padding-top: 30px;
padding-bottom: 30px;
text-align: center;
}




  #s-9ceb0a09-841c-4f02-9198-618a8b517baa img.shogun-image {
    
    width: px;
  }


#s-9ceb0a09-841c-4f02-9198-618a8b517baa .shogun-image-content {
  
    align-items: center;
  
}

#s-d6f9029a-0220-4a3a-8c3d-a3c7e42546a4 {
  padding-top: 0px;
padding-left: 10px;
padding-bottom: 30px;
padding-right: 10px;
text-align: center;
}

#s-d6f9029a-0220-4a3a-8c3d-a3c7e42546a4 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-bc659235-fdc6-43ca-bd95-5755ab476b6f {
  margin-top: 30px;
margin-bottom: 30px;
min-height: 400px;
background-color: rgba(245, 245, 245, 1);
}
@media (max-width: 767px){#s-bc659235-fdc6-43ca-bd95-5755ab476b6f {
  display: none;
}
#s-bc659235-fdc6-43ca-bd95-5755ab476b6f, #wrap-s-bc659235-fdc6-43ca-bd95-5755ab476b6f { display:none !important; }}







#s-bc659235-fdc6-43ca-bd95-5755ab476b6f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bc659235-fdc6-43ca-bd95-5755ab476b6f.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-cc0a4f3c-f56a-480b-9793-128fbb387631"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-95239029-24ff-4d62-b657-6baa1a474bea {
  background-repeat: no-repeat;
background-size: cover;
min-height: 400px;
background-position: center center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-95239029-24ff-4d62-b657-6baa1a474bea {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-95239029-24ff-4d62-b657-6baa1a474bea {
  
}
}@media (max-width: 767px){#s-95239029-24ff-4d62-b657-6baa1a474bea {
  
}
}







#s-95239029-24ff-4d62-b657-6baa1a474bea > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-95239029-24ff-4d62-b657-6baa1a474bea.shg-box.shg-c {
  justify-content: center;
}

#s-07709bb0-eee5-4a45-9867-e2a897eede77 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 400px;
}








#s-07709bb0-eee5-4a45-9867-e2a897eede77 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-07709bb0-eee5-4a45-9867-e2a897eede77.shg-box.shg-c {
  justify-content: center;
}

#s-b116c4e9-e222-48ff-932d-f9676eb62e7d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b116c4e9-e222-48ff-932d-f9676eb62e7d .shogun-heading-component h1 {
  color: #000;
  font-weight:  500 ;
  font-family: Exo 2;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-93820c4f-ae94-4e1f-935a-8f35bbb566c6 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-93820c4f-ae94-4e1f-935a-8f35bbb566c6 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-a7c08f2d-8430-4e56-90e9-9e3bfbc5a951 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 400px;
background-position: center center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-a7c08f2d-8430-4e56-90e9-9e3bfbc5a951 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-a7c08f2d-8430-4e56-90e9-9e3bfbc5a951 {
  
}
}@media (max-width: 767px){#s-a7c08f2d-8430-4e56-90e9-9e3bfbc5a951 {
  
}
}







#s-a7c08f2d-8430-4e56-90e9-9e3bfbc5a951 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a7c08f2d-8430-4e56-90e9-9e3bfbc5a951.shg-box.shg-c {
  justify-content: center;
}

#s-a65199ab-8c77-44a1-b715-71ae04520e9e {
  margin-top: 30px;
margin-bottom: 30px;
min-height: 400px;
background-color: rgba(245, 245, 245, 1);
}
@media (min-width: 1200px){#s-a65199ab-8c77-44a1-b715-71ae04520e9e {
  display: none;
}
#s-a65199ab-8c77-44a1-b715-71ae04520e9e, #wrap-s-a65199ab-8c77-44a1-b715-71ae04520e9e { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a65199ab-8c77-44a1-b715-71ae04520e9e {
  display: none;
}
#s-a65199ab-8c77-44a1-b715-71ae04520e9e, #wrap-s-a65199ab-8c77-44a1-b715-71ae04520e9e { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a65199ab-8c77-44a1-b715-71ae04520e9e {
  display: none;
}
#s-a65199ab-8c77-44a1-b715-71ae04520e9e, #wrap-s-a65199ab-8c77-44a1-b715-71ae04520e9e { display:none !important; }}







#s-a65199ab-8c77-44a1-b715-71ae04520e9e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a65199ab-8c77-44a1-b715-71ae04520e9e.shg-box.shg-c {
  justify-content: center;
}

#s-400af6a0-f6f7-42d2-abef-a8ec1030a734 {
  padding-top: 30px;
padding-left: 10px;
padding-bottom: 30px;
padding-right: 10px;
text-align: center;
}

#s-400af6a0-f6f7-42d2-abef-a8ec1030a734 .shogun-heading-component h1 {
  color: #000;
  font-weight:  500 ;
  font-family: Exo 2;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-f0c3da0a-8887-4eee-8da4-f25181db0b9c {
  background-repeat: no-repeat;
background-size: cover;
min-height: 400px;
background-position: center center;
}








#s-f0c3da0a-8887-4eee-8da4-f25181db0b9c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f0c3da0a-8887-4eee-8da4-f25181db0b9c.shg-box.shg-c {
  justify-content: center;
}

#s-7b7e4097-64f8-418e-9c93-c9b41036875c {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 30px;
padding-right: 10px;
text-align: center;
}

#s-7b7e4097-64f8-418e-9c93-c9b41036875c .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-b05d25a8-07fa-420a-a80a-1e343670a91a {
  background-repeat: no-repeat;
background-size: cover;
min-height: 400px;
background-position: center center;
}








#s-b05d25a8-07fa-420a-a80a-1e343670a91a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b05d25a8-07fa-420a-a80a-1e343670a91a.shg-box.shg-c {
  justify-content: center;
}

#s-64bb146f-2d8e-44ac-99fd-bf07b7137e72 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
text-align: center;
}

#s-64bb146f-2d8e-44ac-99fd-bf07b7137e72 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-672529ac-3c96-472d-bf86-0280ea3b757f {
  margin-top: 30px;
margin-bottom: 30px;
min-height: 400px;
}








#s-672529ac-3c96-472d-bf86-0280ea3b757f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-672529ac-3c96-472d-bf86-0280ea3b757f.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-c37cd836-9b17-4212-88f5-dbc2c6cade8f"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-35512d5f-7e2f-4b14-916a-24cc1a20f6e9 {
  background-size: cover;
min-height: 400px;
background-position: center center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-35512d5f-7e2f-4b14-916a-24cc1a20f6e9 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-35512d5f-7e2f-4b14-916a-24cc1a20f6e9 {
  
}
}@media (max-width: 767px){#s-35512d5f-7e2f-4b14-916a-24cc1a20f6e9 {
  
}
}







#s-35512d5f-7e2f-4b14-916a-24cc1a20f6e9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-35512d5f-7e2f-4b14-916a-24cc1a20f6e9 {
  cursor: pointer;
}#s-35512d5f-7e2f-4b14-916a-24cc1a20f6e9.shg-box.shg-c {
  justify-content: center;
}

#s-0b46db5a-c283-4912-bb55-555919e94133 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 400px;
}








#s-0b46db5a-c283-4912-bb55-555919e94133 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0b46db5a-c283-4912-bb55-555919e94133.shg-box.shg-c {
  justify-content: center;
}

#s-673f5e25-2587-40fb-a751-93aa229c2e76 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-673f5e25-2587-40fb-a751-93aa229c2e76 .shogun-heading-component h1 {
  color: #000;
  font-weight:  500 ;
  font-family: Exo 2;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-a385579a-d6e5-498b-ad28-280a070a2533 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a385579a-d6e5-498b-ad28-280a070a2533 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-27f7785e-59df-48be-ae79-d546609e68e6 {
  padding-top: 30px;
padding-bottom: 30px;
min-height: 50px;
}








#s-27f7785e-59df-48be-ae79-d546609e68e6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-27f7785e-59df-48be-ae79-d546609e68e6.shg-box.shg-c {
  justify-content: center;
}

#s-cf7c1c41-a987-450d-8617-69abcae7de41 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cf7c1c41-a987-450d-8617-69abcae7de41 .shogun-heading-component h1 {
  color: #000;
  font-weight:  500 ;
  font-family: Exo 2;
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-53e00675-5fd5-40da-a718-44169d8a6e38 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
}

#s-53e00675-5fd5-40da-a718-44169d8a6e38 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(221, 221, 221, 1);
}

#s-53e00675-5fd5-40da-a718-44169d8a6e38 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 1);
  padding: 10px;
}

#s-53e00675-5fd5-40da-a718-44169d8a6e38 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 1);
}

#s-53e00675-5fd5-40da-a718-44169d8a6e38 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 1);
  border-top: 1px solid rgba(221, 221, 221, 1);
}

#s-53e00675-5fd5-40da-a718-44169d8a6e38 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(0, 0, 0, 1);
  text-align: center;
  font-family: Exo 2;
  font-weight: 500;
  font-style: ;
  font-size: 20px;
}

#s-53e00675-5fd5-40da-a718-44169d8a6e38 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 20px;
}
#s-ba044ef5-1f8a-427e-8dbd-3d320aafd6ce {
  border-style: solid;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(236, 236, 236, 1);
border-radius: 0px;
min-height: 0px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-ba044ef5-1f8a-427e-8dbd-3d320aafd6ce {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ba044ef5-1f8a-427e-8dbd-3d320aafd6ce {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-ba044ef5-1f8a-427e-8dbd-3d320aafd6ce {
  
}
}@media (max-width: 767px){#s-ba044ef5-1f8a-427e-8dbd-3d320aafd6ce {
  
}
}







#s-ba044ef5-1f8a-427e-8dbd-3d320aafd6ce > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
}#s-ba044ef5-1f8a-427e-8dbd-3d320aafd6ce.shg-box.shg-c {
  justify-content: center;
}

#s-f434497f-a2ce-4222-aa2a-00fb849c21f3 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-f434497f-a2ce-4222-aa2a-00fb849c21f3"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-a9b7236c-585e-4096-a735-e2741ebaf93c {
  background-repeat: no-repeat;
background-size: contain;
border-style: solid;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0.57);
min-height: 500px;
background-position: center center;
}








#s-a9b7236c-585e-4096-a735-e2741ebaf93c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a9b7236c-585e-4096-a735-e2741ebaf93c.shg-box.shg-c {
  justify-content: flex-start;
}

#s-8d7fa604-0266-422a-99d1-b98a47cb4533 {
  border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 500px;
}








#s-8d7fa604-0266-422a-99d1-b98a47cb4533 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8d7fa604-0266-422a-99d1-b98a47cb4533.shg-box.shg-c {
  justify-content: center;
}

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

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

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

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

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

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

#s-215960af-58c9-40d7-8d3b-c4cfa32684df .shogun-table-wrapper {
  overflow: auto;
  border: 1px solid #D5D6D7;
  border-radius: 0px;
}

#s-215960af-58c9-40d7-8d3b-c4cfa32684df table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-215960af-58c9-40d7-8d3b-c4cfa32684df td.shogun-table-column {
  background-color: #fff;
  padding: 30px;
  text-align: center;
}

#s-215960af-58c9-40d7-8d3b-c4cfa32684df td.shogun-table-row {
  background-color: rgba(255, 255, 255, 1);
  padding: 10px;
}

#s-215960af-58c9-40d7-8d3b-c4cfa32684df td.shogun-table-column, #s-215960af-58c9-40d7-8d3b-c4cfa32684df td.shogun-table-row {
  border: 1px solid #D5D6D7;
}

#s-5d90d088-9459-43c7-a529-346ed770e299 {
  min-height: 50px;
}








#s-5d90d088-9459-43c7-a529-346ed770e299 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5d90d088-9459-43c7-a529-346ed770e299.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-77c29d42-61c9-4a83-9ce0-bbb11ddb6bbb"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-1388e715-8a10-47e6-863a-c8884543d723 {
  padding-top: 5px;
padding-left: 5px;
padding-bottom: 5px;
padding-right: 5px;
}

#s-25574556-b6f0-48f8-aed8-9aa128705fd9 {
  padding-top: 5px;
padding-left: 5px;
padding-bottom: 5px;
padding-right: 5px;
}

#s-5aded75b-37ee-4547-b1a9-3a3e43fecd12 {
  padding-top: 5px;
padding-left: 5px;
padding-bottom: 5px;
padding-right: 5px;
}

#s-316778f2-6446-41ed-979f-eb71683884ad {
  min-height: 50px;
}








#s-316778f2-6446-41ed-979f-eb71683884ad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-316778f2-6446-41ed-979f-eb71683884ad.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-394c5b17-ee06-4586-9b51-256d58715d20"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-c1466b90-aff0-4463-9eb6-a6c03bc64891 {
  padding-top: 5px;
padding-left: 5px;
padding-bottom: 5px;
padding-right: 5px;
}

#s-1dafb9f1-877a-49eb-af77-e72dbc6eee4a {
  padding-top: 5px;
padding-left: 5px;
padding-bottom: 5px;
padding-right: 5px;
}

#s-57b78894-8d4f-4f7c-8be2-32a424c758ef {
  padding-top: 5px;
padding-left: 5px;
padding-bottom: 5px;
padding-right: 5px;
}

#s-e1e5f5c4-1b91-4c2c-8ba2-557deb2c4184 {
  min-height: 50px;
}








#s-e1e5f5c4-1b91-4c2c-8ba2-557deb2c4184 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e1e5f5c4-1b91-4c2c-8ba2-557deb2c4184.shg-box.shg-c {
  justify-content: center;
}

#s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9 {
  background-color: rgba(245, 245, 245, 1);
}

@media (min-width: 0px) {
[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-cbf2fa28-9d3c-43f2-85cd-8e1a56e4d5a9"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-eb8cd88f-6b30-4a02-8483-2927a3b1f0ac {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(245, 245, 245, 1);
}








#s-eb8cd88f-6b30-4a02-8483-2927a3b1f0ac > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eb8cd88f-6b30-4a02-8483-2927a3b1f0ac.shg-box.shg-c {
  justify-content: center;
}

#s-5e6fe663-b456-42b9-abb7-980fba743b95 {
  border-radius: 10px;
text-align: center;
}




  #s-5e6fe663-b456-42b9-abb7-980fba743b95 img.shogun-image {
    
    width: px;
  }


#s-5e6fe663-b456-42b9-abb7-980fba743b95 .shogun-image-content {
  
    align-items: center;
  
}

#s-3c79cf97-86a2-47e8-8243-7d65a26fdfd3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3c79cf97-86a2-47e8-8243-7d65a26fdfd3 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-91c258d1-3e85-4ccb-96d4-eae5bcf69f60 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(245, 245, 245, 1);
}








#s-91c258d1-3e85-4ccb-96d4-eae5bcf69f60 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-91c258d1-3e85-4ccb-96d4-eae5bcf69f60.shg-box.shg-c {
  justify-content: center;
}

#s-18c7a34a-1f11-4377-ab69-04acaca66be5 {
  border-radius: 10px;
text-align: center;
}




  #s-18c7a34a-1f11-4377-ab69-04acaca66be5 img.shogun-image {
    
    width: px;
  }


#s-18c7a34a-1f11-4377-ab69-04acaca66be5 .shogun-image-content {
  
    align-items: center;
  
}

#s-210b41dc-ac0d-4c82-900c-d5e7af2c1548 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-210b41dc-ac0d-4c82-900c-d5e7af2c1548 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-bc1a3175-a421-4d66-8c9a-f135283731f3 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(245, 245, 245, 1);
}








#s-bc1a3175-a421-4d66-8c9a-f135283731f3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bc1a3175-a421-4d66-8c9a-f135283731f3.shg-box.shg-c {
  justify-content: center;
}

#s-18e6f9a7-dbd5-4d2a-91a7-8442c383c05e {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-style: solid;
border-radius: 10px;
text-align: center;
}




  #s-18e6f9a7-dbd5-4d2a-91a7-8442c383c05e img.shogun-image {
    
    width: px;
  }


#s-18e6f9a7-dbd5-4d2a-91a7-8442c383c05e .shogun-image-content {
  
    align-items: center;
  
}

#s-75e411b8-216c-4ac8-af5a-d63ccd9a721c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-75e411b8-216c-4ac8-af5a-d63ccd9a721c .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-808281f9-5d8b-47b7-a096-302cd8d9dd8f {
  background-color: rgba(245, 245, 245, 1);
}

@media (min-width: 0px) {
[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-808281f9-5d8b-47b7-a096-302cd8d9dd8f"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-2743b8a8-7c37-49d9-9b80-5bbebcf9997e {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(245, 245, 245, 1);
}








#s-2743b8a8-7c37-49d9-9b80-5bbebcf9997e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2743b8a8-7c37-49d9-9b80-5bbebcf9997e.shg-box.shg-c {
  justify-content: center;
}

#s-b186bec4-f88c-4e7f-b9f2-a67a31562e49 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-style: solid;
border-radius: 10px;
text-align: center;
}




  #s-b186bec4-f88c-4e7f-b9f2-a67a31562e49 img.shogun-image {
    
    width: px;
  }


#s-b186bec4-f88c-4e7f-b9f2-a67a31562e49 .shogun-image-content {
  
    align-items: center;
  
}

#s-80aaac2f-3288-4e1e-b7b4-932167cbf978 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-80aaac2f-3288-4e1e-b7b4-932167cbf978 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-0a70f853-5080-4fd6-9294-4481d93268e3 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(245, 245, 245, 1);
}








#s-0a70f853-5080-4fd6-9294-4481d93268e3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0a70f853-5080-4fd6-9294-4481d93268e3.shg-box.shg-c {
  justify-content: center;
}

#s-e8dea037-e8b7-4c5e-bd54-1b380826aa03 {
  border-radius: 10px;
text-align: center;
}




  #s-e8dea037-e8b7-4c5e-bd54-1b380826aa03 img.shogun-image {
    
    width: px;
  }


#s-e8dea037-e8b7-4c5e-bd54-1b380826aa03 .shogun-image-content {
  
    align-items: center;
  
}

#s-20ba5ab6-dd34-45bb-a5b7-5a064eea5181 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-20ba5ab6-dd34-45bb-a5b7-5a064eea5181 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-dcac1c02-97c1-4e6f-97d4-be0a915cc930 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(245, 245, 245, 1);
}








#s-dcac1c02-97c1-4e6f-97d4-be0a915cc930 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dcac1c02-97c1-4e6f-97d4-be0a915cc930.shg-box.shg-c {
  justify-content: center;
}

#s-b4a40b7f-62eb-4f63-9f68-1cedf53754fe {
  border-radius: 10px;
text-align: center;
}




  #s-b4a40b7f-62eb-4f63-9f68-1cedf53754fe img.shogun-image {
    
    width: px;
  }


#s-b4a40b7f-62eb-4f63-9f68-1cedf53754fe .shogun-image-content {
  
    align-items: center;
  
}

#s-a0228aef-7e15-4d31-aa84-71da61f17f78 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a0228aef-7e15-4d31-aa84-71da61f17f78 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc {
  background-color: rgba(245, 245, 245, 1);
}

@media (min-width: 0px) {
[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-1c44c4b7-d353-4fc6-9b09-95b0214ad5fc"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-c207c221-451d-4b9d-af20-79702f3c6215 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(245, 245, 245, 1);
}








#s-c207c221-451d-4b9d-af20-79702f3c6215 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c207c221-451d-4b9d-af20-79702f3c6215.shg-box.shg-c {
  justify-content: center;
}

#s-7ed5e21d-d6b5-4138-bf24-268b39f5a61a {
  border-radius: 10px;
text-align: center;
}




  #s-7ed5e21d-d6b5-4138-bf24-268b39f5a61a img.shogun-image {
    
    width: px;
  }


#s-7ed5e21d-d6b5-4138-bf24-268b39f5a61a .shogun-image-content {
  
    align-items: center;
  
}

#s-53ea7f50-404d-4c35-a84a-f7b2b5d1d570 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-53ea7f50-404d-4c35-a84a-f7b2b5d1d570 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-e2d0ad41-5153-497c-8ab1-0e264488a767 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(245, 245, 245, 1);
}








#s-e2d0ad41-5153-497c-8ab1-0e264488a767 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e2d0ad41-5153-497c-8ab1-0e264488a767.shg-box.shg-c {
  justify-content: center;
}

#s-ff0f0f71-6f85-4fc4-a871-6e93c08e5828 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-style: solid;
border-radius: 10px;
text-align: center;
}




  #s-ff0f0f71-6f85-4fc4-a871-6e93c08e5828 img.shogun-image {
    
    width: px;
  }


#s-ff0f0f71-6f85-4fc4-a871-6e93c08e5828 .shogun-image-content {
  
    align-items: center;
  
}

#s-5982d539-2f48-44ec-ac96-261e714a3e3e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5982d539-2f48-44ec-ac96-261e714a3e3e .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-6b2e8db2-72d0-4cf2-b92e-ef064fbf9912 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(245, 245, 245, 1);
}








#s-6b2e8db2-72d0-4cf2-b92e-ef064fbf9912 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6b2e8db2-72d0-4cf2-b92e-ef064fbf9912.shg-box.shg-c {
  justify-content: center;
}

#s-5cca8f8b-b797-41fe-afd0-e21e894bc3d5 {
  border-radius: 10px;
text-align: center;
}




  #s-5cca8f8b-b797-41fe-afd0-e21e894bc3d5 img.shogun-image {
    
    width: px;
  }


#s-5cca8f8b-b797-41fe-afd0-e21e894bc3d5 .shogun-image-content {
  
    align-items: center;
  
}

#s-f3bfc2c4-14dc-4903-b2d0-3d67d7bad768 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f3bfc2c4-14dc-4903-b2d0-3d67d7bad768 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-fc7d4be9-b95e-49b2-aa3c-828d7ddcbdb3 {
  padding-left: 20px;
padding-right: 20px;
min-height: 50px;
}








#s-fc7d4be9-b95e-49b2-aa3c-828d7ddcbdb3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fc7d4be9-b95e-49b2-aa3c-828d7ddcbdb3.shg-box.shg-c {
  justify-content: center;
}

#s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83 {
  min-height: 0px;
}

@media (min-width: 0px) {
[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-ff0d81a9-1b40-4b2a-b592-3eb7d4641a83"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-9f409416-d80b-4c74-9654-91b7b5033bc1 {
  min-height: 100px;
}








#s-9f409416-d80b-4c74-9654-91b7b5033bc1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9f409416-d80b-4c74-9654-91b7b5033bc1.shg-box.shg-c {
  justify-content: center;
}
@media (max-width: 767px){






#s-9f409416-d80b-4c74-9654-91b7b5033bc1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9f409416-d80b-4c74-9654-91b7b5033bc1.shg-box.shg-c {
  justify-content: flex-start;
}
}
#s-53001ff5-4e42-4063-99c8-19297830fa0d {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 25px;
background-color: rgba(236, 232, 26, 1);
text-align: right;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-53001ff5-4e42-4063-99c8-19297830fa0d:hover {background-color: #424242 !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;}#s-53001ff5-4e42-4063-99c8-19297830fa0d:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-53001ff5-4e42-4063-99c8-19297830fa0d {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 25px;
background-color: rgba(236, 232, 26, 1);
text-align: center;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-53001ff5-4e42-4063-99c8-19297830fa0d:active {background-color: #000000 !important;
text-decoration: none !important;}}

  #s-53001ff5-4e42-4063-99c8-19297830fa0d-btn-wrapper {
    text-align: right;
  }


#s-53001ff5-4e42-4063-99c8-19297830fa0d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
@media (max-width: 767px){
  #s-53001ff5-4e42-4063-99c8-19297830fa0d-btn-wrapper {
    text-align: center;
  }


#s-53001ff5-4e42-4063-99c8-19297830fa0d.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
}
#s-dbbfe2a7-e5f5-4800-8986-4d637270819c {
  min-height: 100px;
}








#s-dbbfe2a7-e5f5-4800-8986-4d637270819c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dbbfe2a7-e5f5-4800-8986-4d637270819c.shg-box.shg-c {
  justify-content: center;
}

#s-845dfe45-fbb3-4783-9892-508170b0ff96 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 25px;
background-color: rgba(236, 232, 26, 1);
text-align: left;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-845dfe45-fbb3-4783-9892-508170b0ff96:hover {background-color: #424242 !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;}#s-845dfe45-fbb3-4783-9892-508170b0ff96:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-845dfe45-fbb3-4783-9892-508170b0ff96 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 10px;
padding-left: 30px;
padding-bottom: 10px;
padding-right: 30px;
border-radius: 25px;
background-color: rgba(236, 232, 26, 1);
text-align: center;
text-decoration: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
}
#s-845dfe45-fbb3-4783-9892-508170b0ff96:active {background-color: #000000 !important;
text-decoration: none !important;}}

  #s-845dfe45-fbb3-4783-9892-508170b0ff96-btn-wrapper {
    text-align: left;
  }


#s-845dfe45-fbb3-4783-9892-508170b0ff96.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
@media (max-width: 767px){
  #s-845dfe45-fbb3-4783-9892-508170b0ff96-btn-wrapper {
    text-align: center;
  }


#s-845dfe45-fbb3-4783-9892-508170b0ff96.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
}
/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen
  and (min-width: 1024px) and (max-height: 1366px)
  and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none)
  and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
	opacity: 0;
}
.shogun-lazyloaded {
	opacity: 1;
	transition: opacity 300ms;
}