.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-eb875942-07ff-44a5-a44f-e896f2423c82 {
  min-height: 50px;
}








#s-eb875942-07ff-44a5-a44f-e896f2423c82 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eb875942-07ff-44a5-a44f-e896f2423c82.shg-box.shg-c {
  justify-content: center;
}

#s-4e353606-d3a0-4baa-8745-3bed870aa853 {
  padding-top: 5px;
padding-left: 5px;
padding-right: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-4e353606-d3a0-4baa-8745-3bed870aa853 {
  display: none;
}
#s-4e353606-d3a0-4baa-8745-3bed870aa853, #wrap-s-4e353606-d3a0-4baa-8745-3bed870aa853 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4e353606-d3a0-4baa-8745-3bed870aa853 {
  display: none;
}
#s-4e353606-d3a0-4baa-8745-3bed870aa853, #wrap-s-4e353606-d3a0-4baa-8745-3bed870aa853 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4e353606-d3a0-4baa-8745-3bed870aa853 {
  display: none;
}
#s-4e353606-d3a0-4baa-8745-3bed870aa853, #wrap-s-4e353606-d3a0-4baa-8745-3bed870aa853 { display:none !important; }}







#s-4e353606-d3a0-4baa-8745-3bed870aa853 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4e353606-d3a0-4baa-8745-3bed870aa853.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-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-a13ed0c9-6129-42cb-9ec0-17453b35b8d4"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-8fcd3d21-1f91-4bee-83ba-a26553656643 {
  background-repeat: no-repeat;
background-size: contain;
min-height: 50px;
background-position: center center;
}








#s-8fcd3d21-1f91-4bee-83ba-a26553656643 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8fcd3d21-1f91-4bee-83ba-a26553656643 {
  cursor: pointer;
}#s-8fcd3d21-1f91-4bee-83ba-a26553656643.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-1a38ebfc-b958-40f8-817e-a98a201d2635 {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1a38ebfc-b958-40f8-817e-a98a201d2635 .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-85026172-c84d-4aa3-83af-77b2196e8fa1 {
  background-repeat: no-repeat;
background-size: contain;
min-height: 50px;
background-position: center center;
}








#s-85026172-c84d-4aa3-83af-77b2196e8fa1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-85026172-c84d-4aa3-83af-77b2196e8fa1.shg-box.shg-c {
  justify-content: center;
}

#s-848437a0-43de-4843-b208-f597c84fc469 {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-848437a0-43de-4843-b208-f597c84fc469 .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-1bff4302-0103-480a-9609-9c9a5a51d022 {
  background-repeat: no-repeat;
background-size: contain;
min-height: 50px;
background-position: center center;
}








#s-1bff4302-0103-480a-9609-9c9a5a51d022 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1bff4302-0103-480a-9609-9c9a5a51d022 {
  cursor: pointer;
}#s-1bff4302-0103-480a-9609-9c9a5a51d022.shg-box.shg-c {
  justify-content: center;
}

#s-3618cfd4-9de2-4e73-8193-e9a2f7f0c7d1 {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3618cfd4-9de2-4e73-8193-e9a2f7f0c7d1 .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-90cdb32a-6a5e-4464-a81e-8b2282a72016 {
  padding-top: 5px;
padding-left: 5px;
padding-right: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-90cdb32a-6a5e-4464-a81e-8b2282a72016 {
  display: none;
}
#s-90cdb32a-6a5e-4464-a81e-8b2282a72016, #wrap-s-90cdb32a-6a5e-4464-a81e-8b2282a72016 { display:none !important; }}







#s-90cdb32a-6a5e-4464-a81e-8b2282a72016 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-90cdb32a-6a5e-4464-a81e-8b2282a72016.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-b3668b82-b2c6-4ab3-add0-a3daaff67ad3"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-abab2e18-3cca-4315-8d12-ae207a4e13e0 {
  background-repeat: no-repeat;
background-size: contain;
min-height: 50px;
background-position: center center;
}








#s-abab2e18-3cca-4315-8d12-ae207a4e13e0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-abab2e18-3cca-4315-8d12-ae207a4e13e0 {
  cursor: pointer;
}#s-abab2e18-3cca-4315-8d12-ae207a4e13e0.shg-box.shg-c {
  justify-content: center;
}

#s-b1d01788-abc1-41ee-9b07-b818231b0054 {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b1d01788-abc1-41ee-9b07-b818231b0054 .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-2ace58dd-f3cd-4c7f-8fd5-ea9c8788ead6 {
  background-repeat: no-repeat;
background-size: contain;
min-height: 50px;
background-position: center center;
}








#s-2ace58dd-f3cd-4c7f-8fd5-ea9c8788ead6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2ace58dd-f3cd-4c7f-8fd5-ea9c8788ead6.shg-box.shg-c {
  justify-content: center;
}

#s-c80dca4b-3ed0-4b99-9545-4217bacfca41 {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c80dca4b-3ed0-4b99-9545-4217bacfca41 .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-c80dca4b-3ed0-4b99-9545-4217bacfca41 .shogun-heading-component h3 a {
  color: rgba(0, 0, 0, 1);
}


#s-a5c18a01-2e05-4a0f-977d-d94637ea8ac3 {
  background-repeat: no-repeat;
background-size: contain;
min-height: 50px;
background-position: center center;
}








#s-a5c18a01-2e05-4a0f-977d-d94637ea8ac3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a5c18a01-2e05-4a0f-977d-d94637ea8ac3 {
  cursor: pointer;
}#s-a5c18a01-2e05-4a0f-977d-d94637ea8ac3.shg-box.shg-c {
  justify-content: center;
}

#s-7707b38b-f872-42db-ac78-81967267eb79 {
  margin-left: 20px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-7707b38b-f872-42db-ac78-81967267eb79 .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-7707b38b-f872-42db-ac78-81967267eb79 .shogun-heading-component h3 a {
  color: rgba(0, 0, 0, 1);
}


#s-d9ef9cf2-ee38-4de3-b326-0f89017dec59 {
  margin-top: 0px;
min-height: 100px;
}








#s-d9ef9cf2-ee38-4de3-b326-0f89017dec59 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d9ef9cf2-ee38-4de3-b326-0f89017dec59.shg-box.shg-c {
  justify-content: center;
}

#s-7217fdd7-cb24-4661-b84c-bad365120885 {
  background-color: rgba(0, 0, 0, 1);
}

@media (min-width: 0px) {
[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-7217fdd7-cb24-4661-b84c-bad365120885"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-6504fc07-6e93-41b3-90d9-d8cf00c0c7f6 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
min-height: 100px;
}








#s-6504fc07-6e93-41b3-90d9-d8cf00c0c7f6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6504fc07-6e93-41b3-90d9-d8cf00c0c7f6.shg-box.shg-c {
  justify-content: center;
}

#s-f3fae6a5-b74c-43bb-b26a-807f26eaa401 {
  text-align: center;
}

#s-f3fae6a5-b74c-43bb-b26a-807f26eaa401 .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-2b1de768-3bcb-473e-8aad-7d0b0a191cd2 {
  min-height: 100px;
}








#s-2b1de768-3bcb-473e-8aad-7d0b0a191cd2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2b1de768-3bcb-473e-8aad-7d0b0a191cd2.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-435a4658-d2d0-4703-a919-9e30d70ca856 {
  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-435a4658-d2d0-4703-a919-9e30d70ca856:hover {background-color: #424242 !important;
text-decoration: none !important;
color: rgba(255, 255, 255, 1) !important;}#s-435a4658-d2d0-4703-a919-9e30d70ca856:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-435a4658-d2d0-4703-a919-9e30d70ca856-btn-wrapper {
    text-align: center;
  }


#s-435a4658-d2d0-4703-a919-9e30d70ca856.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-f0fb355d-c5ed-4a06-a2bf-8846c6f13e4d {
  min-height: 50px;
}








#s-f0fb355d-c5ed-4a06-a2bf-8846c6f13e4d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f0fb355d-c5ed-4a06-a2bf-8846c6f13e4d.shg-box.shg-c {
  justify-content: center;
}

#s-3db606fe-1c85-4fd8-87e5-71c3d0dd7123 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-3db606fe-1c85-4fd8-87e5-71c3d0dd7123 {
  display: none;
}
#s-3db606fe-1c85-4fd8-87e5-71c3d0dd7123, #wrap-s-3db606fe-1c85-4fd8-87e5-71c3d0dd7123 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3db606fe-1c85-4fd8-87e5-71c3d0dd7123 {
  display: none;
}
#s-3db606fe-1c85-4fd8-87e5-71c3d0dd7123, #wrap-s-3db606fe-1c85-4fd8-87e5-71c3d0dd7123 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3db606fe-1c85-4fd8-87e5-71c3d0dd7123 {
  display: none;
}
#s-3db606fe-1c85-4fd8-87e5-71c3d0dd7123, #wrap-s-3db606fe-1c85-4fd8-87e5-71c3d0dd7123 { display:none !important; }}







#s-3db606fe-1c85-4fd8-87e5-71c3d0dd7123 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3db606fe-1c85-4fd8-87e5-71c3d0dd7123.shg-box.shg-c {
  justify-content: center;
}

#s-eadbe61e-9531-465a-a500-71fb96717d61 {
  min-height: 600px;
background-attachment: scroll;
}
@media (min-width: 1200px){#s-eadbe61e-9531-465a-a500-71fb96717d61 {
  background-attachment: fixed;
}
}@media (max-width: 767px){#s-eadbe61e-9531-465a-a500-71fb96717d61 {
  background-attachment: fixed;
min-height: 500px;
}
}







#s-eadbe61e-9531-465a-a500-71fb96717d61 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eadbe61e-9531-465a-a500-71fb96717d61.shg-box.shg-c {
  justify-content: center;
}
@media (max-width: 767px){






#s-eadbe61e-9531-465a-a500-71fb96717d61 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eadbe61e-9531-465a-a500-71fb96717d61.shg-box.shg-c {
  justify-content: flex-start;
}
}
#s-63d7425f-eb79-4c9b-ab26-d05382b8437b {
  margin-top: 0px;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-63d7425f-eb79-4c9b-ab26-d05382b8437b"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-5eceb817-06db-47e9-92ce-5992482cfacc {
  border-style: solid;
padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
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: 200px;
background-color: rgba(255, 255, 255, 1);
background-attachment: scroll;
}
@media (max-width: 767px){#s-5eceb817-06db-47e9-92ce-5992482cfacc {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
background-attachment: scroll;
opacity: 1;
}
}







#s-5eceb817-06db-47e9-92ce-5992482cfacc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5eceb817-06db-47e9-92ce-5992482cfacc.shg-box.shg-c {
  justify-content: center;
}
@media (max-width: 767px){






#s-5eceb817-06db-47e9-92ce-5992482cfacc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5eceb817-06db-47e9-92ce-5992482cfacc.shg-box.shg-c {
  justify-content: flex-start;
}
}
#s-8ab07030-af5e-4f52-bce7-6118d3120531 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8ab07030-af5e-4f52-bce7-6118d3120531 .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-10b5d21c-0269-40a2-a221-7e93ccc1eb12 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-10b5d21c-0269-40a2-a221-7e93ccc1eb12 .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-15534438-e427-4293-a6dc-2f782e11165d {
  min-height: 50px;
}








#s-15534438-e427-4293-a6dc-2f782e11165d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-15534438-e427-4293-a6dc-2f782e11165d.shg-box.shg-c {
  justify-content: center;
}

#s-72ca18d5-4abb-4761-a839-f916d60ce05a {
  background-repeat: no-repeat;
background-size: cover;
min-height: 400px;
background-position: center center;
}








#s-72ca18d5-4abb-4761-a839-f916d60ce05a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-72ca18d5-4abb-4761-a839-f916d60ce05a.shg-box.shg-c {
  justify-content: center;
}

#s-fbec654b-1a79-44e3-8e5b-104e7f2e5bd5 {
  min-height: 50px;
}
@media (max-width: 767px){#s-fbec654b-1a79-44e3-8e5b-104e7f2e5bd5 {
  display: none;
}
#s-fbec654b-1a79-44e3-8e5b-104e7f2e5bd5, #wrap-s-fbec654b-1a79-44e3-8e5b-104e7f2e5bd5 { display:none !important; }}







#s-fbec654b-1a79-44e3-8e5b-104e7f2e5bd5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fbec654b-1a79-44e3-8e5b-104e7f2e5bd5.shg-box.shg-c {
  justify-content: center;
}

#s-0cef93dd-9466-4100-b701-284cde32fd9e {
  background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
min-height: 600px;
background-position: center center;
}
@media (max-width: 767px){#s-0cef93dd-9466-4100-b701-284cde32fd9e {
  min-height: 500px;
}
}







#s-0cef93dd-9466-4100-b701-284cde32fd9e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0cef93dd-9466-4100-b701-284cde32fd9e.shg-box.shg-c {
  justify-content: center;
}
@media (max-width: 767px){






#s-0cef93dd-9466-4100-b701-284cde32fd9e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0cef93dd-9466-4100-b701-284cde32fd9e.shg-box.shg-c {
  justify-content: flex-start;
}
}
#s-584ef832-d15b-45db-bbfb-231f2f478d2a {
  margin-top: 0px;
margin-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-584ef832-d15b-45db-bbfb-231f2f478d2a"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-3a626892-593f-42f4-8efc-d9923c839b00 {
  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.8);
background-attachment: scroll;
}
@media (max-width: 767px){#s-3a626892-593f-42f4-8efc-d9923c839b00 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
background-attachment: scroll;
opacity: 1;
}
}







#s-3a626892-593f-42f4-8efc-d9923c839b00 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3a626892-593f-42f4-8efc-d9923c839b00.shg-box.shg-c {
  justify-content: center;
}
@media (max-width: 767px){






#s-3a626892-593f-42f4-8efc-d9923c839b00 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3a626892-593f-42f4-8efc-d9923c839b00.shg-box.shg-c {
  justify-content: flex-start;
}
}
#s-3d51d2f1-baca-4ec2-a207-95121a4b9ed9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3d51d2f1-baca-4ec2-a207-95121a4b9ed9 .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-2f429296-932a-4700-b144-f1cef7fd6d2a {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2f429296-932a-4700-b144-f1cef7fd6d2a .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-bea8068e-9cea-4a57-9cc8-6bd598d4d353 {
  padding-top: 30px;
padding-bottom: 30px;
min-height: 400px;
}








#s-bea8068e-9cea-4a57-9cc8-6bd598d4d353 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bea8068e-9cea-4a57-9cc8-6bd598d4d353.shg-box.shg-c {
  justify-content: center;
}

#s-213bc406-a3ca-4b47-986b-e6b19c120071 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-213bc406-a3ca-4b47-986b-e6b19c120071 .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-5a70ad96-bdf0-44f3-ae74-0b24048c6293 {
  margin-top: 30px;
margin-bottom: 30px;
min-height: 400px;
}








#s-5a70ad96-bdf0-44f3-ae74-0b24048c6293 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5a70ad96-bdf0-44f3-ae74-0b24048c6293.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-80113316-4999-41b9-a9f3-d40702d8f9a9"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-f749d3ce-adb6-4086-af93-7e3fe7d73e46 {
  background-size: cover;
min-height: 500px;
background-position: center center;
background-attachment: scroll;
}
@media (min-width: 992px) and (max-width: 1199px){#s-f749d3ce-adb6-4086-af93-7e3fe7d73e46 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-f749d3ce-adb6-4086-af93-7e3fe7d73e46 {
  
}
}@media (max-width: 767px){#s-f749d3ce-adb6-4086-af93-7e3fe7d73e46 {
  
}
}







#s-f749d3ce-adb6-4086-af93-7e3fe7d73e46 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f749d3ce-adb6-4086-af93-7e3fe7d73e46.shg-box.shg-c {
  justify-content: center;
}

#s-e84b02f4-b83c-48ca-8544-5e601412166b {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 0px;
}








#s-e84b02f4-b83c-48ca-8544-5e601412166b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e84b02f4-b83c-48ca-8544-5e601412166b.shg-box.shg-c {
  justify-content: center;
}

#s-e0dd227e-ae04-4937-a725-b6f1eb7f9cc3 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e0dd227e-ae04-4937-a725-b6f1eb7f9cc3 .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-f6be3452-b82f-4146-a84d-dc38913f796f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f6be3452-b82f-4146-a84d-dc38913f796f .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-27f3669d-8781-4555-9d86-dc782f443c2f {
  display: none;
}
#s-27f3669d-8781-4555-9d86-dc782f443c2f, #wrap-s-27f3669d-8781-4555-9d86-dc782f443c2f { display:none !important; }}
@media (min-width: 0px) {
[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-27f3669d-8781-4555-9d86-dc782f443c2f"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 0px) {
[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-fb9b65c1-0d12-40f1-b124-95ebe30c38fd"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-ed85e235-dd68-4caf-98cb-8efe45d082d1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ed85e235-dd68-4caf-98cb-8efe45d082d1 .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-b05fc36c-dcf5-41e5-95a6-b1b1378f6f6f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b05fc36c-dcf5-41e5-95a6-b1b1378f6f6f .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-db87b675-db75-4add-8182-55169d8d7029 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-db87b675-db75-4add-8182-55169d8d7029 .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-75d2c46c-b054-4e92-8483-570d6823b397 {
  min-height: 50px;
}








#s-75d2c46c-b054-4e92-8483-570d6823b397 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-75d2c46c-b054-4e92-8483-570d6823b397.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-ea482af9-b9db-4333-b095-db6d4882fdd0 {
  text-align: center;
}




  #s-ea482af9-b9db-4333-b095-db6d4882fdd0 img.shogun-image {
    
    width: px;
  }


#s-ea482af9-b9db-4333-b095-db6d4882fdd0 .shogun-image-content {
  
    align-items: center;
  
}

#s-72be4ac1-90da-45e3-aaa0-b27c2e998443 {
  min-height: 50px;
}








#s-72be4ac1-90da-45e3-aaa0-b27c2e998443 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-72be4ac1-90da-45e3-aaa0-b27c2e998443.shg-box.shg-c {
  justify-content: center;
}

#s-1d79b9ab-df01-476a-a78c-d91299ac9049 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-1d79b9ab-df01-476a-a78c-d91299ac9049 {
  display: none;
}
#s-1d79b9ab-df01-476a-a78c-d91299ac9049, #wrap-s-1d79b9ab-df01-476a-a78c-d91299ac9049 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1d79b9ab-df01-476a-a78c-d91299ac9049 {
  display: none;
}
#s-1d79b9ab-df01-476a-a78c-d91299ac9049, #wrap-s-1d79b9ab-df01-476a-a78c-d91299ac9049 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1d79b9ab-df01-476a-a78c-d91299ac9049 {
  display: none;
}
#s-1d79b9ab-df01-476a-a78c-d91299ac9049, #wrap-s-1d79b9ab-df01-476a-a78c-d91299ac9049 { display:none !important; }}
#s-1d79b9ab-df01-476a-a78c-d91299ac9049 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-e8725246-fb28-41fd-a46a-8f0714a7107c {
  margin-top: 30px;
margin-bottom: 30px;
min-height: 500px;
background-color: rgba(245, 245, 245, 1);
}








#s-e8725246-fb28-41fd-a46a-8f0714a7107c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e8725246-fb28-41fd-a46a-8f0714a7107c.shg-box.shg-c {
  justify-content: center;
}

#s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a {
  min-height: 400px;
}

@media (min-width: 0px) {
[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-8527f1e4-75f4-43a5-914c-49ccc7f0f77a"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-9c5de964-e6bf-4264-b707-798799fb168c {
  min-height: 400px;
}








#s-9c5de964-e6bf-4264-b707-798799fb168c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9c5de964-e6bf-4264-b707-798799fb168c.shg-box.shg-c {
  justify-content: center;
}

#s-7f79fc25-4eac-4226-8c4e-64ce58962502 {
  text-align: center;
}




  #s-7f79fc25-4eac-4226-8c4e-64ce58962502 img.shogun-image {
    
    width: px;
  }


#s-7f79fc25-4eac-4226-8c4e-64ce58962502 .shogun-image-content {
  
    align-items: center;
  
}

#s-a5898968-e0fc-4cfd-81ce-5027c7bc2a69 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 550px;
}








#s-a5898968-e0fc-4cfd-81ce-5027c7bc2a69 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a5898968-e0fc-4cfd-81ce-5027c7bc2a69.shg-box.shg-c {
  justify-content: center;
}

#s-7ed0ecfb-c548-4ed9-a422-b73dc9271fef {
  padding-top: 20px;
padding-bottom: 20px;
text-align: center;
}

#s-7ed0ecfb-c548-4ed9-a422-b73dc9271fef .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-f908e532-bdc4-45a5-a265-84549eedba79 {
  padding-top: 20px;
padding-bottom: 30px;
}

@media (min-width: 0px) {
[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-52232bb4-821a-4e12-bfc3-e9f96badea17"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-d40e08ed-59ae-4165-b337-9cb0773195cc {
  margin-top: 30px;
margin-bottom: 30px;
min-height: 600px;
}
@media (max-width: 767px){#s-d40e08ed-59ae-4165-b337-9cb0773195cc {
  display: none;
}
#s-d40e08ed-59ae-4165-b337-9cb0773195cc, #wrap-s-d40e08ed-59ae-4165-b337-9cb0773195cc { display:none !important; }}







#s-d40e08ed-59ae-4165-b337-9cb0773195cc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d40e08ed-59ae-4165-b337-9cb0773195cc.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-2d9f98d1-f648-44d6-8593-4cfb5a2aae26"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-97bc08a1-b10f-4440-baa4-41af8eff8c53 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 600px;
}








#s-97bc08a1-b10f-4440-baa4-41af8eff8c53 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-97bc08a1-b10f-4440-baa4-41af8eff8c53.shg-box.shg-c {
  justify-content: center;
}

#s-599eca9f-a407-4df2-b038-0968aec46892 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-599eca9f-a407-4df2-b038-0968aec46892 .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-8a7e0ff6-176c-4ee7-a170-5824d5394722 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8a7e0ff6-176c-4ee7-a170-5824d5394722 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-a9ccabad-2446-4a44-852f-3fe8063c6405 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 600px;
background-position: center center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-a9ccabad-2446-4a44-852f-3fe8063c6405 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-a9ccabad-2446-4a44-852f-3fe8063c6405 {
  
}
}@media (max-width: 767px){#s-a9ccabad-2446-4a44-852f-3fe8063c6405 {
  
}
}







#s-a9ccabad-2446-4a44-852f-3fe8063c6405 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a9ccabad-2446-4a44-852f-3fe8063c6405.shg-box.shg-c {
  justify-content: center;
}

#s-95327701-a254-44a7-a89b-3533605e5547 {
  margin-top: 30px;
margin-bottom: 30px;
min-height: 600px;
}
@media (min-width: 1200px){#s-95327701-a254-44a7-a89b-3533605e5547 {
  display: none;
}
#s-95327701-a254-44a7-a89b-3533605e5547, #wrap-s-95327701-a254-44a7-a89b-3533605e5547 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-95327701-a254-44a7-a89b-3533605e5547 {
  display: none;
}
#s-95327701-a254-44a7-a89b-3533605e5547, #wrap-s-95327701-a254-44a7-a89b-3533605e5547 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-95327701-a254-44a7-a89b-3533605e5547 {
  display: none;
}
#s-95327701-a254-44a7-a89b-3533605e5547, #wrap-s-95327701-a254-44a7-a89b-3533605e5547 { display:none !important; }}







#s-95327701-a254-44a7-a89b-3533605e5547 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-95327701-a254-44a7-a89b-3533605e5547.shg-box.shg-c {
  justify-content: center;
}

#s-29e78889-12e6-433d-82e6-dc49e4aa634b {
  padding-top: 30px;
padding-bottom: 30px;
text-align: center;
}

#s-29e78889-12e6-433d-82e6-dc49e4aa634b .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-7f0f5186-f4f1-49ff-82c7-64b35d4ce330 {
  padding-top: 30px;
padding-bottom: 30px;
text-align: center;
}




  #s-7f0f5186-f4f1-49ff-82c7-64b35d4ce330 img.shogun-image {
    
    width: px;
  }


#s-7f0f5186-f4f1-49ff-82c7-64b35d4ce330 .shogun-image-content {
  
    align-items: center;
  
}

#s-76f509ea-cec4-4057-96a0-7b3f5cb96a53 {
  padding-top: 0px;
padding-left: 10px;
padding-bottom: 30px;
padding-right: 10px;
text-align: center;
}

#s-76f509ea-cec4-4057-96a0-7b3f5cb96a53 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-ef95ef0b-607f-42bf-835b-0791303f4cdc {
  margin-top: 30px;
margin-bottom: 30px;
min-height: 400px;
background-color: rgba(245, 245, 245, 1);
}
@media (max-width: 767px){#s-ef95ef0b-607f-42bf-835b-0791303f4cdc {
  display: none;
}
#s-ef95ef0b-607f-42bf-835b-0791303f4cdc, #wrap-s-ef95ef0b-607f-42bf-835b-0791303f4cdc { display:none !important; }}







#s-ef95ef0b-607f-42bf-835b-0791303f4cdc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ef95ef0b-607f-42bf-835b-0791303f4cdc.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-2f03c720-6fb1-4194-9951-51bc6f1692db"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-9c75fefc-0bb8-4815-b668-2c7b1986373f {
  background-repeat: no-repeat;
background-size: cover;
min-height: 400px;
background-position: center center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-9c75fefc-0bb8-4815-b668-2c7b1986373f {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-9c75fefc-0bb8-4815-b668-2c7b1986373f {
  
}
}@media (max-width: 767px){#s-9c75fefc-0bb8-4815-b668-2c7b1986373f {
  
}
}







#s-9c75fefc-0bb8-4815-b668-2c7b1986373f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9c75fefc-0bb8-4815-b668-2c7b1986373f.shg-box.shg-c {
  justify-content: center;
}

#s-c772635f-f2da-4663-a4de-11c0fed42188 {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 400px;
}








#s-c772635f-f2da-4663-a4de-11c0fed42188 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c772635f-f2da-4663-a4de-11c0fed42188.shg-box.shg-c {
  justify-content: center;
}

#s-0476ddde-6d55-4742-813e-27a2778a5c09 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0476ddde-6d55-4742-813e-27a2778a5c09 .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-2f209b7c-901d-43d8-9313-6e48be54b298 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-2f209b7c-901d-43d8-9313-6e48be54b298 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-bbdfd980-458a-487e-8cd0-755d95f8b58a {
  background-repeat: no-repeat;
background-size: cover;
min-height: 400px;
background-position: center center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-bbdfd980-458a-487e-8cd0-755d95f8b58a {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-bbdfd980-458a-487e-8cd0-755d95f8b58a {
  
}
}@media (max-width: 767px){#s-bbdfd980-458a-487e-8cd0-755d95f8b58a {
  
}
}







#s-bbdfd980-458a-487e-8cd0-755d95f8b58a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bbdfd980-458a-487e-8cd0-755d95f8b58a.shg-box.shg-c {
  justify-content: center;
}

#s-ae62d958-6eac-4352-a8dc-b7f36b339c2b {
  margin-top: 30px;
margin-bottom: 30px;
min-height: 400px;
background-color: rgba(245, 245, 245, 1);
}
@media (min-width: 1200px){#s-ae62d958-6eac-4352-a8dc-b7f36b339c2b {
  display: none;
}
#s-ae62d958-6eac-4352-a8dc-b7f36b339c2b, #wrap-s-ae62d958-6eac-4352-a8dc-b7f36b339c2b { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ae62d958-6eac-4352-a8dc-b7f36b339c2b {
  display: none;
}
#s-ae62d958-6eac-4352-a8dc-b7f36b339c2b, #wrap-s-ae62d958-6eac-4352-a8dc-b7f36b339c2b { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ae62d958-6eac-4352-a8dc-b7f36b339c2b {
  display: none;
}
#s-ae62d958-6eac-4352-a8dc-b7f36b339c2b, #wrap-s-ae62d958-6eac-4352-a8dc-b7f36b339c2b { display:none !important; }}







#s-ae62d958-6eac-4352-a8dc-b7f36b339c2b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ae62d958-6eac-4352-a8dc-b7f36b339c2b.shg-box.shg-c {
  justify-content: center;
}

#s-60d8a9d2-ca3d-4664-b866-aaef9bda4fee {
  padding-top: 30px;
padding-left: 10px;
padding-bottom: 30px;
padding-right: 10px;
text-align: center;
}

#s-60d8a9d2-ca3d-4664-b866-aaef9bda4fee .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-bb52b688-9c5e-4287-a163-d7c9e4bb32af {
  background-repeat: no-repeat;
background-size: cover;
min-height: 400px;
background-position: center center;
}








#s-bb52b688-9c5e-4287-a163-d7c9e4bb32af > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bb52b688-9c5e-4287-a163-d7c9e4bb32af.shg-box.shg-c {
  justify-content: center;
}

#s-5111578a-537a-4e4a-927b-34307b661209 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 30px;
padding-right: 10px;
text-align: center;
}

#s-5111578a-537a-4e4a-927b-34307b661209 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-52007a63-2452-4302-a78e-8ed6b7b32166 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 400px;
background-position: center center;
}








#s-52007a63-2452-4302-a78e-8ed6b7b32166 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-52007a63-2452-4302-a78e-8ed6b7b32166.shg-box.shg-c {
  justify-content: center;
}

#s-aac13582-6a35-4de6-825b-3d1e10689948 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
text-align: center;
}

#s-aac13582-6a35-4de6-825b-3d1e10689948 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-99bef9cb-ec10-4e9d-a938-fa47e85eab93 {
  margin-top: 30px;
margin-bottom: 30px;
min-height: 400px;
}








#s-99bef9cb-ec10-4e9d-a938-fa47e85eab93 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-99bef9cb-ec10-4e9d-a938-fa47e85eab93.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-f13c465f-902d-4aa9-81bd-9bed9186e063"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-13052b47-7712-4dd0-9812-a63b2c833b8f {
  background-size: cover;
min-height: 400px;
background-position: center center;
}
@media (min-width: 992px) and (max-width: 1199px){#s-13052b47-7712-4dd0-9812-a63b2c833b8f {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-13052b47-7712-4dd0-9812-a63b2c833b8f {
  
}
}@media (max-width: 767px){#s-13052b47-7712-4dd0-9812-a63b2c833b8f {
  
}
}







#s-13052b47-7712-4dd0-9812-a63b2c833b8f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-13052b47-7712-4dd0-9812-a63b2c833b8f {
  cursor: pointer;
}#s-13052b47-7712-4dd0-9812-a63b2c833b8f.shg-box.shg-c {
  justify-content: center;
}

#s-6278bef7-6baf-4214-8d6c-8bece8fbb87d {
  padding-top: 30px;
padding-left: 30px;
padding-bottom: 30px;
padding-right: 30px;
min-height: 400px;
}








#s-6278bef7-6baf-4214-8d6c-8bece8fbb87d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6278bef7-6baf-4214-8d6c-8bece8fbb87d.shg-box.shg-c {
  justify-content: center;
}

#s-5c136b2c-e9a7-4622-8ee7-736f492727c7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5c136b2c-e9a7-4622-8ee7-736f492727c7 .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-fee803f9-9641-4b82-b76f-8516881cf7ba {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-fee803f9-9641-4b82-b76f-8516881cf7ba .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-005f18ba-c9fe-4f56-a95b-f9803078e275 {
  padding-top: 30px;
padding-bottom: 30px;
min-height: 50px;
}








#s-005f18ba-c9fe-4f56-a95b-f9803078e275 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-005f18ba-c9fe-4f56-a95b-f9803078e275.shg-box.shg-c {
  justify-content: center;
}

#s-94297f6d-9366-44c0-ae38-473aec73e908 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-94297f6d-9366-44c0-ae38-473aec73e908 .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-b381a185-697e-4186-935f-4470673bf463 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
}

#s-b381a185-697e-4186-935f-4470673bf463 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(221, 221, 221, 1);
}

#s-b381a185-697e-4186-935f-4470673bf463 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(245, 245, 245, 1);
  padding: 10px;
}

#s-b381a185-697e-4186-935f-4470673bf463 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(0, 0, 0, 1);
}

#s-b381a185-697e-4186-935f-4470673bf463 > .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-b381a185-697e-4186-935f-4470673bf463 > .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-b381a185-697e-4186-935f-4470673bf463 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 20px;
}
#s-7e5344ef-0686-4c10-a82b-c9e40d214342 {
  min-height: 50px;
background-color: rgba(234, 234, 234, 1);
}
@media (min-width: 1200px){#s-7e5344ef-0686-4c10-a82b-c9e40d214342 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7e5344ef-0686-4c10-a82b-c9e40d214342 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-7e5344ef-0686-4c10-a82b-c9e40d214342 {
  
}
}@media (max-width: 767px){#s-7e5344ef-0686-4c10-a82b-c9e40d214342 {
  
}
}







#s-7e5344ef-0686-4c10-a82b-c9e40d214342 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7e5344ef-0686-4c10-a82b-c9e40d214342.shg-box.shg-c {
  justify-content: flex-start;
}

#s-c5b35391-db5c-46ef-923b-05aeb81c803c {
  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-c5b35391-db5c-46ef-923b-05aeb81c803c {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c5b35391-db5c-46ef-923b-05aeb81c803c {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-c5b35391-db5c-46ef-923b-05aeb81c803c {
  
}
}@media (max-width: 767px){#s-c5b35391-db5c-46ef-923b-05aeb81c803c {
  
}
}







#s-c5b35391-db5c-46ef-923b-05aeb81c803c > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
}#s-c5b35391-db5c-46ef-923b-05aeb81c803c.shg-box.shg-c {
  justify-content: center;
}

#s-1c3613e7-8e81-4925-a049-c77a38806294 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

@media (min-width: 0px) {
[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-1c3613e7-8e81-4925-a049-c77a38806294"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-da637049-1fee-4a8f-9e78-1c61288c88e5 {
  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-da637049-1fee-4a8f-9e78-1c61288c88e5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-da637049-1fee-4a8f-9e78-1c61288c88e5.shg-box.shg-c {
  justify-content: flex-start;
}

#s-cfee7475-0656-463e-bf8e-c9b64b7e77aa {
  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-cfee7475-0656-463e-bf8e-c9b64b7e77aa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cfee7475-0656-463e-bf8e-c9b64b7e77aa.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-c7db6e1b-b683-4e7d-80f8-ba5ab4a7c1e1 .shogun-table-wrapper {
  overflow: auto;
  border: 1px solid #D5D6D7;
  border-radius: 0px;
}

#s-c7db6e1b-b683-4e7d-80f8-ba5ab4a7c1e1 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-c7db6e1b-b683-4e7d-80f8-ba5ab4a7c1e1 td.shogun-table-column {
  background-color: #fff;
  padding: 30px;
  text-align: center;
}

#s-c7db6e1b-b683-4e7d-80f8-ba5ab4a7c1e1 td.shogun-table-row {
  background-color: rgba(255, 255, 255, 1);
  padding: 10px;
}

#s-c7db6e1b-b683-4e7d-80f8-ba5ab4a7c1e1 td.shogun-table-column, #s-c7db6e1b-b683-4e7d-80f8-ba5ab4a7c1e1 td.shogun-table-row {
  border: 1px solid #D5D6D7;
}

#s-61a95982-9da7-4606-9f69-10adc4b5b1ac {
  min-height: 50px;
}








#s-61a95982-9da7-4606-9f69-10adc4b5b1ac > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-61a95982-9da7-4606-9f69-10adc4b5b1ac.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-b93af7a6-2aad-4b05-b989-fbc7e249a934"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-37570c9b-af79-452d-80ca-a0d60c4ea6a3 {
  padding-top: 5px;
padding-left: 5px;
padding-bottom: 5px;
padding-right: 5px;
}

#s-182ead0f-3c13-4c49-9a83-39851b6ee4e4 {
  padding-top: 5px;
padding-left: 5px;
padding-bottom: 5px;
padding-right: 5px;
}

#s-dcb988f2-7424-4f5a-acde-26662a616e3b {
  padding-top: 5px;
padding-left: 5px;
padding-bottom: 5px;
padding-right: 5px;
}

#s-684a741d-1f69-497a-a350-a32ec52a76ff {
  min-height: 50px;
}








#s-684a741d-1f69-497a-a350-a32ec52a76ff > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-684a741d-1f69-497a-a350-a32ec52a76ff.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-cc94e54e-96d7-4764-aed9-1a71bf78c9f7"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-4c6f3869-ff7c-4ecc-964d-07fade680045 {
  padding-top: 5px;
padding-left: 5px;
padding-bottom: 5px;
padding-right: 5px;
}

#s-b17d8bf8-57b7-46d7-b377-a177098d6a2f {
  padding-top: 5px;
padding-left: 5px;
padding-bottom: 5px;
padding-right: 5px;
}

#s-112ecdd1-a363-49a2-bcf7-6e025866b1d6 {
  padding-top: 5px;
padding-left: 5px;
padding-bottom: 5px;
padding-right: 5px;
}

#s-8cd08a9e-7885-4772-9a99-81e6e6b6946a {
  min-height: 50px;
}








#s-8cd08a9e-7885-4772-9a99-81e6e6b6946a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8cd08a9e-7885-4772-9a99-81e6e6b6946a.shg-box.shg-c {
  justify-content: center;
}

#s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8 {
  background-color: rgba(245, 245, 245, 1);
}

@media (min-width: 0px) {
[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-8d9f8bc8-c0a4-4445-b74a-4b96a2f375d8"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-17d1a977-8934-4643-bfd4-10693fd01ab4 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(245, 245, 245, 1);
}








#s-17d1a977-8934-4643-bfd4-10693fd01ab4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-17d1a977-8934-4643-bfd4-10693fd01ab4.shg-box.shg-c {
  justify-content: center;
}

#s-3d3f0b86-14c1-4ea1-9926-739289be7992 {
  border-radius: 10px;
text-align: center;
}




  #s-3d3f0b86-14c1-4ea1-9926-739289be7992 img.shogun-image {
    
    width: px;
  }


#s-3d3f0b86-14c1-4ea1-9926-739289be7992 .shogun-image-content {
  
    align-items: center;
  
}

#s-e06e60fa-7f46-4f30-9578-60303cf1de6f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-e06e60fa-7f46-4f30-9578-60303cf1de6f .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-05cd62b0-77d7-4575-8cb8-e5ac1b6c441e {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(245, 245, 245, 1);
}








#s-05cd62b0-77d7-4575-8cb8-e5ac1b6c441e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-05cd62b0-77d7-4575-8cb8-e5ac1b6c441e.shg-box.shg-c {
  justify-content: center;
}

#s-75c3c7b9-99f8-428b-aaa1-750f7a7fe96b {
  border-radius: 10px;
text-align: center;
}




  #s-75c3c7b9-99f8-428b-aaa1-750f7a7fe96b img.shogun-image {
    
    width: px;
  }


#s-75c3c7b9-99f8-428b-aaa1-750f7a7fe96b .shogun-image-content {
  
    align-items: center;
  
}

#s-ee2eae2a-5e28-4f10-b1d8-75a67b4a2cf5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ee2eae2a-5e28-4f10-b1d8-75a67b4a2cf5 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-48c85a96-560d-4468-9dd4-ad71ecb0ddd9 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(245, 245, 245, 1);
}








#s-48c85a96-560d-4468-9dd4-ad71ecb0ddd9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-48c85a96-560d-4468-9dd4-ad71ecb0ddd9.shg-box.shg-c {
  justify-content: center;
}

#s-9189cf3f-968d-4147-b9e1-17d1c99df076 {
  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-9189cf3f-968d-4147-b9e1-17d1c99df076 img.shogun-image {
    
    width: px;
  }


#s-9189cf3f-968d-4147-b9e1-17d1c99df076 .shogun-image-content {
  
    align-items: center;
  
}

#s-b26e3184-2366-439b-9596-a618b7703442 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b26e3184-2366-439b-9596-a618b7703442 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-d31ffd34-2fc6-4915-afbe-24cd876df3a9 {
  background-color: rgba(245, 245, 245, 1);
}

@media (min-width: 0px) {
[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-d31ffd34-2fc6-4915-afbe-24cd876df3a9"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-897bd15d-fa0f-48c0-8813-77df4c30d98d {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(245, 245, 245, 1);
}








#s-897bd15d-fa0f-48c0-8813-77df4c30d98d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-897bd15d-fa0f-48c0-8813-77df4c30d98d.shg-box.shg-c {
  justify-content: center;
}

#s-1a7237db-7c19-44d4-8d3f-8396b61eaed0 {
  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-1a7237db-7c19-44d4-8d3f-8396b61eaed0 img.shogun-image {
    
    width: px;
  }


#s-1a7237db-7c19-44d4-8d3f-8396b61eaed0 .shogun-image-content {
  
    align-items: center;
  
}

#s-64d95a0d-91a6-42c9-b672-1bb50fe97dad {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-64d95a0d-91a6-42c9-b672-1bb50fe97dad .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-ead3c420-695a-4eca-bcd0-4004a2b1792a {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(245, 245, 245, 1);
}








#s-ead3c420-695a-4eca-bcd0-4004a2b1792a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ead3c420-695a-4eca-bcd0-4004a2b1792a.shg-box.shg-c {
  justify-content: center;
}

#s-f5956838-be01-4d7e-bef5-74323994450c {
  border-radius: 10px;
text-align: center;
}




  #s-f5956838-be01-4d7e-bef5-74323994450c img.shogun-image {
    
    width: px;
  }


#s-f5956838-be01-4d7e-bef5-74323994450c .shogun-image-content {
  
    align-items: center;
  
}

#s-4082a4a0-d351-4ffa-8e95-430b75cf4b48 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4082a4a0-d351-4ffa-8e95-430b75cf4b48 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-62c964dc-0738-40f2-b030-ae866dfad36a {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(245, 245, 245, 1);
}








#s-62c964dc-0738-40f2-b030-ae866dfad36a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-62c964dc-0738-40f2-b030-ae866dfad36a.shg-box.shg-c {
  justify-content: center;
}

#s-b4821a30-1ad8-4913-b685-f3350fda60aa {
  border-radius: 10px;
text-align: center;
}




  #s-b4821a30-1ad8-4913-b685-f3350fda60aa img.shogun-image {
    
    width: px;
  }


#s-b4821a30-1ad8-4913-b685-f3350fda60aa .shogun-image-content {
  
    align-items: center;
  
}

#s-bd63aeab-8985-4246-b7d8-720048cdfa16 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bd63aeab-8985-4246-b7d8-720048cdfa16 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-906a1cbe-d413-4aee-bc25-21df0f26097d {
  background-color: rgba(245, 245, 245, 1);
}

@media (min-width: 0px) {
[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-906a1cbe-d413-4aee-bc25-21df0f26097d"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-59037f5a-4090-48b5-9671-319854edd226 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(245, 245, 245, 1);
}








#s-59037f5a-4090-48b5-9671-319854edd226 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-59037f5a-4090-48b5-9671-319854edd226.shg-box.shg-c {
  justify-content: center;
}

#s-adf9e99c-6567-4b95-a788-8ce52c2d126d {
  border-radius: 10px;
text-align: center;
}




  #s-adf9e99c-6567-4b95-a788-8ce52c2d126d img.shogun-image {
    
    width: px;
  }


#s-adf9e99c-6567-4b95-a788-8ce52c2d126d .shogun-image-content {
  
    align-items: center;
  
}

#s-05427364-ebf5-40f4-ada6-acfa7b8f0444 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-05427364-ebf5-40f4-ada6-acfa7b8f0444 .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-3f390cbf-96ee-4930-befd-e63d747b082d {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(245, 245, 245, 1);
}








#s-3f390cbf-96ee-4930-befd-e63d747b082d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3f390cbf-96ee-4930-befd-e63d747b082d.shg-box.shg-c {
  justify-content: center;
}

#s-365b543f-4dd6-42e7-8b57-c6dd73f32ea9 {
  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-365b543f-4dd6-42e7-8b57-c6dd73f32ea9 img.shogun-image {
    
    width: px;
  }


#s-365b543f-4dd6-42e7-8b57-c6dd73f32ea9 .shogun-image-content {
  
    align-items: center;
  
}

#s-61becd8c-435e-4392-a37a-0397a0e6e69d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-61becd8c-435e-4392-a37a-0397a0e6e69d .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-3c0be2e9-ad28-4303-860d-db2c71ad6289 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(245, 245, 245, 1);
}








#s-3c0be2e9-ad28-4303-860d-db2c71ad6289 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3c0be2e9-ad28-4303-860d-db2c71ad6289.shg-box.shg-c {
  justify-content: center;
}

#s-17e0ca77-48b7-46d0-9344-5e3d1ea5610e {
  border-radius: 10px;
text-align: center;
}




  #s-17e0ca77-48b7-46d0-9344-5e3d1ea5610e img.shogun-image {
    
    width: px;
  }


#s-17e0ca77-48b7-46d0-9344-5e3d1ea5610e .shogun-image-content {
  
    align-items: center;
  
}

#s-c7884aa3-2aae-457f-adbd-fd053cdfd2be {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c7884aa3-2aae-457f-adbd-fd053cdfd2be .shogun-heading-component h3 {
  color: #000;
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-34627de4-1fbb-438d-bdfe-f94b79e881b8 {
  padding-left: 20px;
padding-right: 20px;
min-height: 50px;
}








#s-34627de4-1fbb-438d-bdfe-f94b79e881b8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-34627de4-1fbb-438d-bdfe-f94b79e881b8.shg-box.shg-c {
  justify-content: center;
}

#s-1769718e-6c5f-4b83-9912-413439ddf0bd {
  min-height: 0px;
}

@media (min-width: 0px) {
[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-1769718e-6c5f-4b83-9912-413439ddf0bd"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-d1064484-9e10-43f4-813c-518979178eb9 {
  min-height: 100px;
}








#s-d1064484-9e10-43f4-813c-518979178eb9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d1064484-9e10-43f4-813c-518979178eb9.shg-box.shg-c {
  justify-content: center;
}
@media (max-width: 767px){






#s-d1064484-9e10-43f4-813c-518979178eb9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d1064484-9e10-43f4-813c-518979178eb9.shg-box.shg-c {
  justify-content: flex-start;
}
}
#s-91d1c52c-8695-47c3-a2f1-8d9e041d8696 {
  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-91d1c52c-8695-47c3-a2f1-8d9e041d8696:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-91d1c52c-8695-47c3-a2f1-8d9e041d8696:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-91d1c52c-8695-47c3-a2f1-8d9e041d8696 {
  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-91d1c52c-8695-47c3-a2f1-8d9e041d8696:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-91d1c52c-8695-47c3-a2f1-8d9e041d8696:active {background-color: #000000 !important;
text-decoration: none !important;}}

  #s-91d1c52c-8695-47c3-a2f1-8d9e041d8696-btn-wrapper {
    text-align: right;
  }


#s-91d1c52c-8695-47c3-a2f1-8d9e041d8696.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
@media (max-width: 767px){
  #s-91d1c52c-8695-47c3-a2f1-8d9e041d8696-btn-wrapper {
    text-align: center;
  }


#s-91d1c52c-8695-47c3-a2f1-8d9e041d8696.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  block ;
}
}
#s-dff1bae6-19ef-41da-b151-ef35573e2623 {
  min-height: 100px;
}








#s-dff1bae6-19ef-41da-b151-ef35573e2623 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dff1bae6-19ef-41da-b151-ef35573e2623.shg-box.shg-c {
  justify-content: center;
}

#s-8b8793b1-13ba-4a48-a9e7-c88dd8832fad {
  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-8b8793b1-13ba-4a48-a9e7-c88dd8832fad:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8b8793b1-13ba-4a48-a9e7-c88dd8832fad:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-8b8793b1-13ba-4a48-a9e7-c88dd8832fad {
  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-8b8793b1-13ba-4a48-a9e7-c88dd8832fad:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-8b8793b1-13ba-4a48-a9e7-c88dd8832fad:active {background-color: #000000 !important;
text-decoration: none !important;}}

  #s-8b8793b1-13ba-4a48-a9e7-c88dd8832fad-btn-wrapper {
    text-align: left;
  }


#s-8b8793b1-13ba-4a48-a9e7-c88dd8832fad.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
@media (max-width: 767px){
  #s-8b8793b1-13ba-4a48-a9e7-c88dd8832fad-btn-wrapper {
    text-align: center;
  }


#s-8b8793b1-13ba-4a48-a9e7-c88dd8832fad.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;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}