.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-912d491b-8fb2-4e1f-ba0c-7a52c5c8eefe {
  min-height: 50px;
}








#s-912d491b-8fb2-4e1f-ba0c-7a52c5c8eefe > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-912d491b-8fb2-4e1f-ba0c-7a52c5c8eefe.shg-box.shg-c {
  justify-content: center;
}

#s-3f2fe78a-63ad-403d-8864-ab81a227ce3e {
  box-shadow:0px 0px 0px 0px rgba(131, 128, 128, 1);
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYTMyMTIyMGItYmNkYy00MGU2LTg0ZmMtOWQxMzIxZjEzZTZlIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwLjA1IiBzdHlsZT0ic3RvcC1jb2xvcjojZGZlY2YxO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmZmZmZmO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNhMzIxMjIwYi1iY2RjLTQwZTYtODRmYy05ZDEzMjFmMTNlNmUpIi8+PC9zdmc+);
background-repeat: no-repeat;
border-style: solid;
margin-bottom: 50px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
min-height: 50px;
}








#s-3f2fe78a-63ad-403d-8864-ab81a227ce3e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3f2fe78a-63ad-403d-8864-ab81a227ce3e.shg-box.shg-c {
  justify-content: center;
}

#s-3d2323d7-2f1b-4542-a176-36f803e4e0c5 {
  min-height: 50px;
}








#s-3d2323d7-2f1b-4542-a176-36f803e4e0c5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3d2323d7-2f1b-4542-a176-36f803e4e0c5.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-adeea36e-9201-43e5-ab36-43fa2683366e {
  margin-top: 50px;
margin-bottom: 30px;
text-align: center;
}

#s-adeea36e-9201-43e5-ab36-43fa2683366e .shogun-heading-component h2 {
  color: rgba(25, 25, 25, 1);
  font-weight:   ;
  font-family: Open Sans;
  font-style:   ;
  font-size: 42px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



.shg-row {
  display: flex;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
justify-content: space-between;
}

.shg-row > * {
  min-height: inherit;
  max-height: inherit;
}

.shg-c-xs-1,
.shg-c-xs-2,
.shg-c-xs-3,
.shg-c-xs-4,
.shg-c-xs-5,
.shg-c-xs-6,
.shg-c-xs-7,
.shg-c-xs-8,
.shg-c-xs-9,
.shg-c-xs-10,
.shg-c-xs-11,
.shg-c-xs-12,
.shg-c-sm-1,
.shg-c-sm-2,
.shg-c-sm-3,
.shg-c-sm-4,
.shg-c-sm-5,
.shg-c-sm-6,
.shg-c-sm-7,
.shg-c-sm-8,
.shg-c-sm-9,
.shg-c-sm-10,
.shg-c-sm-11,
.shg-c-sm-12,
.shg-c-md-1,
.shg-c-md-2,
.shg-c-md-3,
.shg-c-md-4,
.shg-c-md-5,
.shg-c-md-6,
.shg-c-md-7,
.shg-c-md-8,
.shg-c-md-9,
.shg-c-md-10,
.shg-c-md-11,
.shg-c-md-12,
.shg-c-lg-1,
.shg-c-lg-2,
.shg-c-lg-3,
.shg-c-lg-4,
.shg-c-lg-5,
.shg-c-lg-6,
.shg-c-lg-7,
.shg-c-lg-8,
.shg-c-lg-9,
.shg-c-lg-10,
.shg-c-lg-11,
.shg-c-lg-12 {
  position: relative;
}

#s-fed8e642-119d-4ae8-8ec2-4379a35c45e5 {
  margin-top: 25px;
margin-left: 25px;
margin-right: 25px;
}
@media (min-width: 768px) and (max-width: 991px){#s-fed8e642-119d-4ae8-8ec2-4379a35c45e5 {
  display: none;
}
#s-fed8e642-119d-4ae8-8ec2-4379a35c45e5, #wrap-s-fed8e642-119d-4ae8-8ec2-4379a35c45e5 { display:none !important; }}
@media (min-width: 0px) {
[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 16.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 16.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 16.666666666666668px);
}

[id="s-fed8e642-119d-4ae8-8ec2-4379a35c45e5"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 16.666666666666668px);
}

}

#s-c0a533f4-4e34-4410-aa1f-34d6ad874afd {
  box-shadow:0px 0px 15px 4px rgba(222, 222, 222, 1);
border-style: solid;
margin-bottom: 12.5px;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(139, 137, 137, 1);
border-style: solid;
border-radius: 20px;
max-width: 450px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-c0a533f4-4e34-4410-aa1f-34d6ad874afd {
  padding-left: 20px;
padding-right: 20px;
}
}







#s-c0a533f4-4e34-4410-aa1f-34d6ad874afd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c0a533f4-4e34-4410-aa1f-34d6ad874afd.shg-box.shg-c {
  justify-content: flex-start;
}

#s-5d896803-debd-4234-bad2-ffa3979740d1 {
  padding-top: 0px;
padding-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.5px);
}

}

@media (min-width: 768px) {
[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.5px);
}

}

@media (min-width: 992px) {
[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.5px);
}

}

@media (min-width: 1200px) {
[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.5px);
}

[id="s-5d896803-debd-4234-bad2-ffa3979740d1"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.5px);
}

}

#s-c001c1f6-3620-4b7e-b0c6-b7bc3d83c01c {
  padding-top: 15px;
}

.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-1c72e12c-3be2-45cb-8895-dd774a76c46a {
  text-align: center;
}




  #s-1c72e12c-3be2-45cb-8895-dd774a76c46a img.shogun-image {
    
    width: px;
  }


#s-1c72e12c-3be2-45cb-8895-dd774a76c46a .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-e94db50f-13c6-4343-aee1-6e3eae400bfa {
  margin-top: 23px;
}

#s-e94db50f-13c6-4343-aee1-6e3eae400bfa hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(238, 238, 238, 1);
}

#s-49b1971a-d475-49ad-a992-bf8852153043 {
  box-shadow:0px 0px 15px 4px rgba(222, 222, 222, 1);
border-style: solid;
margin-bottom: 12.5px;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(139, 137, 137, 1);
border-style: solid;
border-radius: 20px;
max-width: 450px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-49b1971a-d475-49ad-a992-bf8852153043 {
  margin-left: auto;
margin-right: auto;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-49b1971a-d475-49ad-a992-bf8852153043 {
  margin-left: auto;
margin-right: auto;
}
}@media (min-width: 768px) and (max-width: 991px){#s-49b1971a-d475-49ad-a992-bf8852153043 {
  margin-left: auto;
margin-right: auto;
}
}@media (max-width: 767px){#s-49b1971a-d475-49ad-a992-bf8852153043 {
  margin-left: auto;
margin-right: auto;
}
}







#s-49b1971a-d475-49ad-a992-bf8852153043 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-49b1971a-d475-49ad-a992-bf8852153043.shg-box.shg-c {
  justify-content: flex-start;
}

#s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0 {
  padding-top: 0px;
padding-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.5px);
}

}

@media (min-width: 768px) {
[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.5px);
}

}

@media (min-width: 992px) {
[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.5px);
}

}

@media (min-width: 1200px) {
[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.5px);
}

[id="s-f5d58f5d-97e5-4164-9aab-be7f4fce8af0"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.5px);
}

}

#s-df204b6b-52fa-449d-8f8b-25b5b217df75 {
  padding-top: 15px;
}

#s-388b6e36-74e3-4e1f-9ae4-301de8158076 {
  text-align: center;
}




  #s-388b6e36-74e3-4e1f-9ae4-301de8158076 img.shogun-image {
    
    width: px;
  }


#s-388b6e36-74e3-4e1f-9ae4-301de8158076 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-8cfe3ecc-9dab-452f-955f-cf3a655accdc {
  margin-top: 23px;
}

#s-8cfe3ecc-9dab-452f-955f-cf3a655accdc hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(238, 238, 238, 1);
}

#s-d2b950cc-5b91-40d6-a81e-4fc68d2f8c87 {
  box-shadow:0px 0px 15px 4px rgba(222, 222, 222, 1);
border-style: solid;
margin-bottom: 12.5px;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(139, 137, 137, 1);
border-style: solid;
border-radius: 20px;
max-width: 450px;
background-color: rgba(255, 255, 255, 1);
}








#s-d2b950cc-5b91-40d6-a81e-4fc68d2f8c87 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d2b950cc-5b91-40d6-a81e-4fc68d2f8c87.shg-box.shg-c {
  justify-content: flex-start;
}

#s-16449b12-d6b0-4df7-869e-1291ddcd8689 {
  padding-top: 0px;
padding-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.5px);
}

}

@media (min-width: 768px) {
[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.5px);
}

}

@media (min-width: 992px) {
[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.5px);
}

}

@media (min-width: 1200px) {
[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.5px);
}

[id="s-16449b12-d6b0-4df7-869e-1291ddcd8689"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.5px);
}

}

#s-c84f6ee9-908b-4a99-a700-912541c44e25 {
  padding-top: 15px;
}

#s-3fd7dc06-c7fd-469d-a4b5-a3453fec47d1 {
  text-align: center;
}




  #s-3fd7dc06-c7fd-469d-a4b5-a3453fec47d1 img.shogun-image {
    
    width: px;
  }


#s-3fd7dc06-c7fd-469d-a4b5-a3453fec47d1 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-d52043b4-798f-4297-a415-dd4d5ab4f97e {
  margin-top: 23px;
}

#s-d52043b4-798f-4297-a415-dd4d5ab4f97e hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(238, 238, 238, 1);
}

#s-7bc9ea0b-136a-4a60-ae11-1022cbe92254 {
  margin-left: 20px;
margin-right: 20px;
padding-top: 25px;
padding-bottom: 25px;
}
@media (min-width: 1200px){#s-7bc9ea0b-136a-4a60-ae11-1022cbe92254 {
  display: none;
}
#s-7bc9ea0b-136a-4a60-ae11-1022cbe92254, #wrap-s-7bc9ea0b-136a-4a60-ae11-1022cbe92254 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7bc9ea0b-136a-4a60-ae11-1022cbe92254 {
  display: none;
}
#s-7bc9ea0b-136a-4a60-ae11-1022cbe92254, #wrap-s-7bc9ea0b-136a-4a60-ae11-1022cbe92254 { display:none !important; }}@media (max-width: 767px){#s-7bc9ea0b-136a-4a60-ae11-1022cbe92254 {
  display: none;
}
#s-7bc9ea0b-136a-4a60-ae11-1022cbe92254, #wrap-s-7bc9ea0b-136a-4a60-ae11-1022cbe92254 { display:none !important; }}
@media (min-width: 0px) {
[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 5.0px);
}

[id="s-7bc9ea0b-136a-4a60-ae11-1022cbe92254"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 5.0px);
}

}

#s-53522af2-337d-4814-9f05-7355a4f3c1f7 {
  box-shadow:0px 0px 15px 4px rgba(222, 222, 222, 1);
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(139, 137, 137, 1);
border-style: solid;
border-radius: 20px;
min-height: 450px;
max-width: 100%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-53522af2-337d-4814-9f05-7355a4f3c1f7 {
  margin-top: 20px;
margin-bottom: 20px;
}
}@media (max-width: 767px){#s-53522af2-337d-4814-9f05-7355a4f3c1f7 {
  padding-left: 20px;
padding-right: 20px;
}
}







#s-53522af2-337d-4814-9f05-7355a4f3c1f7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-53522af2-337d-4814-9f05-7355a4f3c1f7.shg-box.shg-c {
  justify-content: flex-start;
}

#s-7b808370-9eb7-4ad0-b03c-3acdb014c3be {
  padding-top: 0px;
padding-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.5px);
}

}

@media (min-width: 768px) {
[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.5px);
}

}

@media (min-width: 992px) {
[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.5px);
}

}

@media (min-width: 1200px) {
[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.5px);
}

[id="s-7b808370-9eb7-4ad0-b03c-3acdb014c3be"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.5px);
}

}

#s-ddc4db9c-7430-4b58-88fb-054b4cac090b {
  text-align: left;
}

#s-ddc4db9c-7430-4b58-88fb-054b4cac090b .shogun-icon-wrapper {
  text-align: left;
}


#s-ddc4db9c-7430-4b58-88fb-054b4cac090b .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(255, 179, 26, 1);
}

#s-f0d15743-6e79-4725-8c9a-2fe4cd682afe {
  padding-top: 15px;
}

#s-3347b1fc-1986-4d64-ab6e-6808bb476581 {
  text-align: center;
}




  #s-3347b1fc-1986-4d64-ab6e-6808bb476581 img.shogun-image {
    
    width: px;
  }


#s-3347b1fc-1986-4d64-ab6e-6808bb476581 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-f46d73b5-2277-4379-a3c8-968c8528946d hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(221, 221, 221, 0);
}

#s-f4afc74f-6436-4d95-b9b8-007571fa2f71 {
  margin-top: 23px;
}

#s-f4afc74f-6436-4d95-b9b8-007571fa2f71 hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(238, 238, 238, 1);
}

#s-16e39d3a-a2bd-451d-8cfd-036ab36374c6 {
  box-shadow:0px 0px 15px 4px rgba(222, 222, 222, 1);
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(139, 137, 137, 1);
border-style: solid;
border-radius: 20px;
min-height: 450px;
max-width: 100%;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-16e39d3a-a2bd-451d-8cfd-036ab36374c6 {
  margin-left: auto;
margin-right: auto;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-16e39d3a-a2bd-451d-8cfd-036ab36374c6 {
  margin-left: auto;
margin-right: auto;
}
}@media (min-width: 768px) and (max-width: 991px){#s-16e39d3a-a2bd-451d-8cfd-036ab36374c6 {
  margin-left: auto;
margin-right: auto;
}
}@media (max-width: 767px){#s-16e39d3a-a2bd-451d-8cfd-036ab36374c6 {
  margin-left: auto;
margin-right: auto;
}
}







#s-16e39d3a-a2bd-451d-8cfd-036ab36374c6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-16e39d3a-a2bd-451d-8cfd-036ab36374c6.shg-box.shg-c {
  justify-content: flex-start;
}

#s-5f056870-2982-42f0-b748-f0223992af20 {
  padding-top: 0px;
padding-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.5px);
}

}

@media (min-width: 768px) {
[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.5px);
}

}

@media (min-width: 992px) {
[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.5px);
}

}

@media (min-width: 1200px) {
[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.5px);
}

[id="s-5f056870-2982-42f0-b748-f0223992af20"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.5px);
}

}

#s-8247e840-9580-48a6-beda-dcda53a41419 {
  text-align: left;
}

#s-8247e840-9580-48a6-beda-dcda53a41419 .shogun-icon-wrapper {
  text-align: left;
}


#s-8247e840-9580-48a6-beda-dcda53a41419 .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(188, 46, 137, 1);
}

#s-227ec04c-ddc4-457b-aaf1-c37c41fbc402 {
  padding-top: 15px;
}

#s-1829c078-6f74-43d0-8472-65129dd6ea2e {
  text-align: center;
}




  #s-1829c078-6f74-43d0-8472-65129dd6ea2e img.shogun-image {
    
    width: px;
  }


#s-1829c078-6f74-43d0-8472-65129dd6ea2e .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-b988b543-3298-4036-aeef-d3904d3f0bb9 hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(221, 221, 221, 0);
}

#s-ba7c4951-0152-4a35-9af7-61e5a8606b75 {
  margin-top: 23px;
}

#s-ba7c4951-0152-4a35-9af7-61e5a8606b75 hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(238, 238, 238, 1);
}

#s-93e2e1da-08cc-4623-960c-f55abf0664e3 {
  margin-left: 20px;
margin-right: 20px;
padding-top: 25px;
padding-bottom: 25px;
}
@media (min-width: 1200px){#s-93e2e1da-08cc-4623-960c-f55abf0664e3 {
  display: none;
}
#s-93e2e1da-08cc-4623-960c-f55abf0664e3, #wrap-s-93e2e1da-08cc-4623-960c-f55abf0664e3 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-93e2e1da-08cc-4623-960c-f55abf0664e3 {
  display: none;
}
#s-93e2e1da-08cc-4623-960c-f55abf0664e3, #wrap-s-93e2e1da-08cc-4623-960c-f55abf0664e3 { display:none !important; }}@media (max-width: 767px){#s-93e2e1da-08cc-4623-960c-f55abf0664e3 {
  display: none;
}
#s-93e2e1da-08cc-4623-960c-f55abf0664e3, #wrap-s-93e2e1da-08cc-4623-960c-f55abf0664e3 { display:none !important; }}
@media (min-width: 0px) {
[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 5.0px);
}

[id="s-93e2e1da-08cc-4623-960c-f55abf0664e3"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 5.0px);
}

}

#s-40d5f059-edad-43f1-86bf-e43f37689102 {
  box-shadow:0px 0px 15px 4px rgba(222, 222, 222, 1);
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(139, 137, 137, 1);
border-style: solid;
border-radius: 20px;
min-height: 450px;
max-width: 100%;
background-color: rgba(255, 255, 255, 1);
}








#s-40d5f059-edad-43f1-86bf-e43f37689102 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-40d5f059-edad-43f1-86bf-e43f37689102.shg-box.shg-c {
  justify-content: flex-start;
}

#s-33b9834f-079a-4a2a-bbfa-3b5c563ab010 {
  padding-top: 0px;
padding-bottom: 0px;
}

@media (min-width: 0px) {
[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.5px);
}

}

@media (min-width: 768px) {
[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.5px);
}

}

@media (min-width: 992px) {
[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.5px);
}

}

@media (min-width: 1200px) {
[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.5px);
}

[id="s-33b9834f-079a-4a2a-bbfa-3b5c563ab010"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.5px);
}

}

#s-8bde8f8b-a62b-4d93-b0c5-4042b10563e8 {
  text-align: left;
}

#s-8bde8f8b-a62b-4d93-b0c5-4042b10563e8 .shogun-icon-wrapper {
  text-align: left;
}


#s-8bde8f8b-a62b-4d93-b0c5-4042b10563e8 .shogun-icon-wrapper > .shogun-icon {

  font-size: 48px !important;
  color: rgba(4, 183, 178, 1);
}

#s-d7407ba8-7c25-47ad-8bdd-9154a450826a {
  padding-top: 15px;
}

#s-f3f5e455-915c-46f2-aafd-e45f8d35f984 {
  text-align: center;
}




  #s-f3f5e455-915c-46f2-aafd-e45f8d35f984 img.shogun-image {
    
    width: px;
  }


#s-f3f5e455-915c-46f2-aafd-e45f8d35f984 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-146768ac-ddb9-4c9f-92a7-d99cfd887509 hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(221, 221, 221, 0);
}

#s-868b1395-e803-4eb1-8d8e-fde4703571ac {
  margin-top: 23px;
}

#s-868b1395-e803-4eb1-8d8e-fde4703571ac hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(238, 238, 238, 1);
}

#s-152baee5-a604-451d-8f0f-2b2186be2aaa {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 30px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
}
@media (max-width: 767px){#s-152baee5-a604-451d-8f0f-2b2186be2aaa {
  margin-left: 100px;
margin-right: 100px;
}
}
#s-d0ee5b83-9816-49e9-884f-d092b687c1ea {
  border-style: solid;
padding-left: 25px;
padding-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: rgba(255, 255, 255, 0);
}
@media (min-width: 768px) and (max-width: 991px){#s-d0ee5b83-9816-49e9-884f-d092b687c1ea {
  padding-left: 25px;
padding-right: 25px;
display: none;
}
#s-d0ee5b83-9816-49e9-884f-d092b687c1ea, #wrap-s-d0ee5b83-9816-49e9-884f-d092b687c1ea { display:none !important; }}
@media (min-width: 0px) {
[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 12.5px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.833333333333332px);
}

}

@media (min-width: 992px) {
[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.833333333333332px);
}

}

@media (min-width: 1200px) {
[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.833333333333332px);
}

[id="s-d0ee5b83-9816-49e9-884f-d092b687c1ea"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.833333333333332px);
}

}

#s-6940d186-28b3-4346-8beb-1cfb532b2850 {
  box-shadow:0px 0px 10px 3px rgba(216, 216, 216, 1);
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(255, 179, 26, 1);
border-style: solid;
border-radius: 20px;
min-height: 220px;
background-color: rgba(255, 255, 255, 1);
}








#s-6940d186-28b3-4346-8beb-1cfb532b2850 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6940d186-28b3-4346-8beb-1cfb532b2850.shg-box.shg-c {
  justify-content: center;
}

#s-e6baa554-ecd5-41c6-8cf3-ede2f24c39ea .shogun-icon-wrapper {
  text-align: center;
}


#s-e6baa554-ecd5-41c6-8cf3-ede2f24c39ea .shogun-icon-wrapper > .shogun-icon {

  font-size: 31px !important;
  color: rgba(255, 185, 56, 1);
}

#s-050ab73e-d460-4d4d-9e4a-281665ed6603 {
  margin-top: 10px;
padding-left: 15px;
padding-right: 15px;
min-height: 100px;
}

#s-db073fca-34ab-49d7-9480-6523497ea361 {
  box-shadow:0px 0px 10px 3px rgba(216, 216, 216, 1);
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(188, 46, 137, 1);
border-style: solid;
border-radius: 20px;
min-height: 220px;
background-color: rgba(255, 255, 255, 1);
}








#s-db073fca-34ab-49d7-9480-6523497ea361 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-db073fca-34ab-49d7-9480-6523497ea361.shg-box.shg-c {
  justify-content: center;
}

#s-2d8a3553-ff3d-4d5e-a8eb-332d659512db .shogun-icon-wrapper {
  text-align: center;
}


#s-2d8a3553-ff3d-4d5e-a8eb-332d659512db .shogun-icon-wrapper > .shogun-icon {

  font-size: 31px !important;
  color: rgba(188, 46, 137, 1);
}

#s-e987ea1c-e648-4bad-b9d8-5319ab40f99a {
  margin-top: 10px;
padding-left: 15px;
padding-right: 15px;
min-height: 100px;
}

#s-cc08bc13-a8a3-4b88-9671-4485b0f44dad {
  box-shadow:0px 0px 10px 3px rgba(216, 216, 216, 1);
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(4, 183, 178, 1);
border-style: solid;
border-radius: 20px;
min-height: 220px;
background-color: rgba(255, 255, 255, 1);
}








#s-cc08bc13-a8a3-4b88-9671-4485b0f44dad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cc08bc13-a8a3-4b88-9671-4485b0f44dad.shg-box.shg-c {
  justify-content: center;
}

#s-3a71f70f-1d61-4402-ab04-0a6bd6d7fd99 .shogun-icon-wrapper {
  text-align: center;
}


#s-3a71f70f-1d61-4402-ab04-0a6bd6d7fd99 .shogun-icon-wrapper > .shogun-icon {

  font-size: 31px !important;
  color: rgba(4, 183, 178, 1);
}

#s-c07f630e-10bc-43b5-8835-74db04ed653d {
  margin-top: 10px;
padding-left: 5px;
padding-right: 5px;
min-height: 100px;
}

#s-d73e6533-f3a5-4f0f-84c0-410de756d3dd {
  box-shadow:0px 0px 10px 3px rgba(216, 216, 216, 1);
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(30, 64, 151, 1);
border-style: solid;
border-radius: 20px;
min-height: 220px;
background-color: rgba(255, 255, 255, 1);
}








#s-d73e6533-f3a5-4f0f-84c0-410de756d3dd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d73e6533-f3a5-4f0f-84c0-410de756d3dd.shg-box.shg-c {
  justify-content: center;
}

#s-0f2a0696-ed15-4054-962a-dcc2ec5bab62 .shogun-icon-wrapper {
  text-align: center;
}


#s-0f2a0696-ed15-4054-962a-dcc2ec5bab62 .shogun-icon-wrapper > .shogun-icon {

  font-size: 31px !important;
  color: rgba(30, 64, 151, 1);
}

#s-3f3ca4db-5ad4-45f4-b88e-80253b24e2cd {
  margin-top: 10px;
padding-left: 10px;
padding-right: 10px;
min-height: 100px;
}

#s-1f8c2e1c-899f-43c2-87c2-677c3e8a0bb2 {
  box-shadow:0px 0px 10px 3px rgba(216, 216, 216, 1);
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(249, 124, 40, 1);
border-style: solid;
border-radius: 20px;
min-height: 220px;
background-color: rgba(255, 255, 255, 1);
}








#s-1f8c2e1c-899f-43c2-87c2-677c3e8a0bb2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1f8c2e1c-899f-43c2-87c2-677c3e8a0bb2.shg-box.shg-c {
  justify-content: center;
}

#s-a8e86b44-3873-424b-baea-512af1234953 .shogun-icon-wrapper {
  text-align: center;
}


#s-a8e86b44-3873-424b-baea-512af1234953 .shogun-icon-wrapper > .shogun-icon {

  font-size: 31px !important;
  color: rgba(249, 124, 40, 1);
}

#s-95d71e22-2c08-4e71-b271-30ceaed0af4f {
  margin-top: 10px;
padding-left: 15px;
padding-right: 15px;
min-height: 100px;
}

#s-5f79a047-a4c5-4c3f-82c4-e775593baed5 {
  box-shadow:0px 0px 10px 3px rgba(216, 216, 216, 1);
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(150, 204, 66, 1);
border-style: solid;
border-radius: 20px;
min-height: 220px;
background-color: rgba(255, 255, 255, 1);
}








#s-5f79a047-a4c5-4c3f-82c4-e775593baed5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5f79a047-a4c5-4c3f-82c4-e775593baed5.shg-box.shg-c {
  justify-content: center;
}

#s-9c6bde5d-07a8-4ee9-a6a3-e30924857e29 .shogun-icon-wrapper {
  text-align: center;
}


#s-9c6bde5d-07a8-4ee9-a6a3-e30924857e29 .shogun-icon-wrapper > .shogun-icon {

  font-size: 31px !important;
  color: rgba(150, 204, 66, 1);
}

#s-297caa46-e821-4df3-b108-c0a593d1d457 {
  margin-top: 10px;
padding-left: 15px;
padding-right: 15px;
min-height: 100px;
}

#s-13d60e45-8237-4f37-8288-3b0c3d34fd47 {
  border-style: solid;
margin-left: auto;
margin-right: auto;
padding-left: 50px;
padding-right: 50px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: rgba(255, 255, 255, 0);
}
@media (min-width: 1200px){#s-13d60e45-8237-4f37-8288-3b0c3d34fd47 {
  display: none;
}
#s-13d60e45-8237-4f37-8288-3b0c3d34fd47, #wrap-s-13d60e45-8237-4f37-8288-3b0c3d34fd47 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-13d60e45-8237-4f37-8288-3b0c3d34fd47 {
  display: none;
}
#s-13d60e45-8237-4f37-8288-3b0c3d34fd47, #wrap-s-13d60e45-8237-4f37-8288-3b0c3d34fd47 { display:none !important; }}@media (max-width: 767px){#s-13d60e45-8237-4f37-8288-3b0c3d34fd47 {
  display: none;
}
#s-13d60e45-8237-4f37-8288-3b0c3d34fd47, #wrap-s-13d60e45-8237-4f37-8288-3b0c3d34fd47 { display:none !important; }}
@media (min-width: 0px) {
[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 16.666666666666668px);
}

}

@media (min-width: 768px) {
[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 16.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 16.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 16.666666666666668px);
}

[id="s-13d60e45-8237-4f37-8288-3b0c3d34fd47"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 16.666666666666668px);
}

}

#s-ea8cea8b-a94c-4904-8865-ea8bf4e77eae {
  box-shadow:0px 0px 10px 3px rgba(216, 216, 216, 1);
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(255, 179, 26, 1);
border-style: solid;
border-radius: 20px;
min-height: 220px;
max-width: 100%;
background-color: rgba(255, 255, 255, 1);
}








#s-ea8cea8b-a94c-4904-8865-ea8bf4e77eae > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ea8cea8b-a94c-4904-8865-ea8bf4e77eae.shg-box.shg-c {
  justify-content: center;
}

#s-89e14086-daf9-4401-a5b9-55dff58c6a12 .shogun-icon-wrapper {
  text-align: center;
}


#s-89e14086-daf9-4401-a5b9-55dff58c6a12 .shogun-icon-wrapper > .shogun-icon {

  font-size: 31px !important;
  color: rgba(255, 185, 56, 1);
}

#s-90521843-24b7-4285-ae2a-3ae756548a3b {
  margin-top: 10px;
padding-left: 15px;
padding-right: 15px;
min-height: 100px;
}

#s-bf448a76-813a-4ca5-ba2c-a54a1a8f602a {
  box-shadow:0px 0px 10px 3px rgba(216, 216, 216, 1);
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(188, 46, 137, 1);
border-style: solid;
border-radius: 20px;
min-height: 220px;
max-width: 100%;
background-color: rgba(255, 255, 255, 1);
}








#s-bf448a76-813a-4ca5-ba2c-a54a1a8f602a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bf448a76-813a-4ca5-ba2c-a54a1a8f602a.shg-box.shg-c {
  justify-content: center;
}

#s-4f9604aa-6f3a-4d40-92ef-742da6a1c784 .shogun-icon-wrapper {
  text-align: center;
}


#s-4f9604aa-6f3a-4d40-92ef-742da6a1c784 .shogun-icon-wrapper > .shogun-icon {

  font-size: 31px !important;
  color: rgba(188, 46, 137, 1);
}

#s-26802b9e-4bab-45c4-bb64-797bc0310644 {
  margin-top: 10px;
padding-left: 15px;
padding-right: 15px;
min-height: 100px;
}

#s-478ba589-a77e-4191-b8bc-c2c008f497fb {
  box-shadow:0px 0px 10px 3px rgba(216, 216, 216, 1);
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(4, 183, 178, 1);
border-style: solid;
border-radius: 20px;
min-height: 220px;
max-width: 100%;
background-color: rgba(255, 255, 255, 1);
}








#s-478ba589-a77e-4191-b8bc-c2c008f497fb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-478ba589-a77e-4191-b8bc-c2c008f497fb.shg-box.shg-c {
  justify-content: center;
}

#s-17c1ad72-e5ab-48a2-85b7-97e0f0cc8e91 .shogun-icon-wrapper {
  text-align: center;
}


#s-17c1ad72-e5ab-48a2-85b7-97e0f0cc8e91 .shogun-icon-wrapper > .shogun-icon {

  font-size: 31px !important;
  color: rgba(4, 183, 178, 1);
}

#s-4ad1a8fb-6a92-4088-96bd-e5f45c9b8902 {
  margin-top: 10px;
padding-left: 10px;
padding-right: 10px;
min-height: 100px;
}

#s-e905002e-71a2-4420-a47e-5250bfee4f7d {
  border-style: solid;
padding-left: 50px;
padding-right: 50px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
background-color: rgba(255, 255, 255, 0);
}
@media (min-width: 1200px){#s-e905002e-71a2-4420-a47e-5250bfee4f7d {
  display: none;
}
#s-e905002e-71a2-4420-a47e-5250bfee4f7d, #wrap-s-e905002e-71a2-4420-a47e-5250bfee4f7d { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e905002e-71a2-4420-a47e-5250bfee4f7d {
  display: none;
}
#s-e905002e-71a2-4420-a47e-5250bfee4f7d, #wrap-s-e905002e-71a2-4420-a47e-5250bfee4f7d { display:none !important; }}@media (max-width: 767px){#s-e905002e-71a2-4420-a47e-5250bfee4f7d {
  display: none;
}
#s-e905002e-71a2-4420-a47e-5250bfee4f7d, #wrap-s-e905002e-71a2-4420-a47e-5250bfee4f7d { display:none !important; }}
@media (min-width: 0px) {
[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 16.666666666666668px);
}

}

@media (min-width: 768px) {
[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 16.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 16.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 16.666666666666668px);
}

[id="s-e905002e-71a2-4420-a47e-5250bfee4f7d"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 16.666666666666668px);
}

}

#s-ade4ae72-7bde-406d-abc3-c60d3048b29c {
  box-shadow:0px 0px 10px 3px rgba(216, 216, 216, 1);
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(30, 64, 151, 1);
border-style: solid;
border-radius: 20px;
min-height: 220px;
max-width: 100%;
background-color: rgba(255, 255, 255, 1);
}








#s-ade4ae72-7bde-406d-abc3-c60d3048b29c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ade4ae72-7bde-406d-abc3-c60d3048b29c.shg-box.shg-c {
  justify-content: center;
}

#s-02982849-f6d9-4aed-9659-4c0a67856f3b .shogun-icon-wrapper {
  text-align: center;
}


#s-02982849-f6d9-4aed-9659-4c0a67856f3b .shogun-icon-wrapper > .shogun-icon {

  font-size: 31px !important;
  color: rgba(30, 64, 151, 1);
}

#s-446be12b-d95e-412d-9451-db9b0ad4c0ce {
  margin-top: 10px;
padding-left: 10px;
padding-right: 10px;
min-height: 100px;
}

#s-2f990bb9-6c5f-4116-9f14-f4ff75295b44 {
  box-shadow:0px 0px 10px 3px rgba(216, 216, 216, 1);
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(249, 124, 40, 1);
border-style: solid;
border-radius: 20px;
min-height: 220px;
max-width: 100%;
background-color: rgba(255, 255, 255, 1);
}








#s-2f990bb9-6c5f-4116-9f14-f4ff75295b44 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2f990bb9-6c5f-4116-9f14-f4ff75295b44.shg-box.shg-c {
  justify-content: center;
}

#s-5ed16d74-d51d-4097-bcc4-07f1197f77f1 .shogun-icon-wrapper {
  text-align: center;
}


#s-5ed16d74-d51d-4097-bcc4-07f1197f77f1 .shogun-icon-wrapper > .shogun-icon {

  font-size: 31px !important;
  color: rgba(249, 124, 40, 1);
}

#s-1cb403a8-e7e7-4d73-a4ea-766ea1e24326 {
  margin-top: 10px;
padding-left: 15px;
padding-right: 15px;
min-height: 100px;
}

#s-993e2d94-6d17-4004-8023-d5fbe051854c {
  box-shadow:0px 0px 10px 3px rgba(216, 216, 216, 1);
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(150, 204, 66, 1);
border-style: solid;
border-radius: 20px;
min-height: 220px;
max-width: 100%;
background-color: rgba(255, 255, 255, 1);
}








#s-993e2d94-6d17-4004-8023-d5fbe051854c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-993e2d94-6d17-4004-8023-d5fbe051854c.shg-box.shg-c {
  justify-content: center;
}

#s-f5288f0d-2547-4384-ab82-064116d400e8 .shogun-icon-wrapper {
  text-align: center;
}


#s-f5288f0d-2547-4384-ab82-064116d400e8 .shogun-icon-wrapper > .shogun-icon {

  font-size: 31px !important;
  color: rgba(150, 204, 66, 1);
}

#s-293c3407-eda3-4eb8-80ee-587c7267117b {
  margin-top: 10px;
padding-left: 10px;
padding-right: 10px;
min-height: 100px;
}

#s-b60b0778-4a0d-4ed3-8cb8-997fc47fa370 {
  background-repeat: no-repeat;
background-size: contain;
padding-top: 20px;
padding-bottom: 20px;
background-position: left center;
background-attachment: scroll;
}
@media (min-width: 1200px){#s-b60b0778-4a0d-4ed3-8cb8-997fc47fa370 {
  display: none;
}
#s-b60b0778-4a0d-4ed3-8cb8-997fc47fa370, #wrap-s-b60b0778-4a0d-4ed3-8cb8-997fc47fa370 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b60b0778-4a0d-4ed3-8cb8-997fc47fa370 {
  display: none;
}
#s-b60b0778-4a0d-4ed3-8cb8-997fc47fa370, #wrap-s-b60b0778-4a0d-4ed3-8cb8-997fc47fa370 { display:none !important; }}@media (max-width: 767px){#s-b60b0778-4a0d-4ed3-8cb8-997fc47fa370 {
  display: none;
}
#s-b60b0778-4a0d-4ed3-8cb8-997fc47fa370, #wrap-s-b60b0778-4a0d-4ed3-8cb8-997fc47fa370 { display:none !important; }}







#s-b60b0778-4a0d-4ed3-8cb8-997fc47fa370 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b60b0778-4a0d-4ed3-8cb8-997fc47fa370.shg-box.shg-c {
  justify-content: center;
}

#s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf {
  margin-left: 25px;
margin-right: 25px;
padding-left: 25px;
padding-right: 25px;
}
@media (min-width: 1200px){#s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf {
  display: none;
}
#s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf, #wrap-s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf {
  display: none;
}
#s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf, #wrap-s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf { display:none !important; }}@media (max-width: 767px){#s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf {
  display: none;
}
#s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf, #wrap-s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf { display:none !important; }}
@media (min-width: 0px) {
[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 5.0px);
}

[id="s-86a1bcdc-1940-4cb0-882e-6fa6b6c25acf"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 5.0px);
}

}

#s-2530fd84-d0a1-441e-a0ab-69360f352d31 {
  margin-top: 15%;
margin-bottom: 15%;
text-align: left;
}

#s-2530fd84-d0a1-441e-a0ab-69360f352d31 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: Open Sans;
  font-style:   ;
  font-size: 53px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-506f63e6-2cf5-4725-bec7-24db019721a8 {
  text-align: center;
}




  #s-506f63e6-2cf5-4725-bec7-24db019721a8 img.shogun-image {
    
    width: px;
  }


#s-506f63e6-2cf5-4725-bec7-24db019721a8 .shogun-image-content {
  
    align-items: center;
  
}

#s-fc67cafe-9230-4001-9729-c7d7f84bc0a9 {
  margin-left: 25px;
margin-right: 25px;
padding-left: 25px;
padding-right: 25px;
}

#s-d5ad3889-ca93-40b3-9963-e042877adbba {
  box-shadow:0px 0px 0px 0px rgba(131, 128, 128, 1);
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYTMyMTIyMGItYmNkYy00MGU2LTg0ZmMtOWQxMzIxZjEzZTZlIiB4MT0iMCIgeTE9IjAiIHgyPSIwIiB5Mj0iMSI+PHN0b3Agb2Zmc2V0PSIwLjA1IiBzdHlsZT0ic3RvcC1jb2xvcjojZGZlY2YxO3N0b3Atb3BhY2l0eToxIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdHlsZT0ic3RvcC1jb2xvcjojZmZmZmZmO3N0b3Atb3BhY2l0eToxIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNhMzIxMjIwYi1iY2RjLTQwZTYtODRmYy05ZDEzMjFmMTNlNmUpIi8+PC9zdmc+);
background-repeat: no-repeat;
border-style: solid;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
min-height: 50px;
}








#s-d5ad3889-ca93-40b3-9963-e042877adbba > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d5ad3889-ca93-40b3-9963-e042877adbba.shg-box.shg-c {
  justify-content: center;
}

#s-d272a5c0-9425-40bb-926a-bdc5302bf442 {
  min-height: 50px;
}








#s-d272a5c0-9425-40bb-926a-bdc5302bf442 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d272a5c0-9425-40bb-926a-bdc5302bf442.shg-box.shg-c {
  justify-content: center;
}

#s-7cc1b92d-51ec-4e11-9c4b-09234d83b143 {
  margin-top: 50px;
margin-bottom: 10px;
text-align: center;
}

#s-7cc1b92d-51ec-4e11-9c4b-09234d83b143 .shogun-heading-component h3 {
  color: rgba(25, 25, 25, 1);
  font-weight:  normal ;
  font-family: Open Sans;
  font-style:  normal ;
  font-size: 42px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



@media (min-width: 768px) and (max-width: 991px){#s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb {
  display: none;
}
#s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb, #wrap-s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb { display:none !important; }}@media (max-width: 767px){#s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb {
  display: none;
}
#s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb, #wrap-s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb { display:none !important; }}
@media (min-width: 0px) {
[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-c8d2dc98-d4a1-4407-af31-6f22b4ff4fbb"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-bfc65add-d68f-4bd8-ad1d-c091dd7291a8 {
  text-align: right;
}




  #s-bfc65add-d68f-4bd8-ad1d-c091dd7291a8 img.shogun-image {
    
    width: px;
  }


#s-bfc65add-d68f-4bd8-ad1d-c091dd7291a8 .shogun-image-content {
  
    align-items: center;
  
}

#s-e48aaf5c-2e25-4021-9e22-424103389d4e {
  text-align: center;
}




  #s-e48aaf5c-2e25-4021-9e22-424103389d4e img.shogun-image {
    
    width: px;
  }


#s-e48aaf5c-2e25-4021-9e22-424103389d4e .shogun-image-content {
  
    align-items: center;
  
}

#s-06d510bc-e42a-48db-a0c6-25a98fda60a7 {
  text-align: left;
}




  #s-06d510bc-e42a-48db-a0c6-25a98fda60a7 img.shogun-image {
    
    width: px;
  }


#s-06d510bc-e42a-48db-a0c6-25a98fda60a7 .shogun-image-content {
  
    align-items: center;
  
}

#s-8d26a819-1483-4c72-be6c-a217707921a6 {
  margin-left: 25px;
margin-right: 25px;
padding-top: 25px;
padding-bottom: 25px;
}

@media (min-width: 0px) {
[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 16.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 16.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 16.666666666666668px);
}

[id="s-8d26a819-1483-4c72-be6c-a217707921a6"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 16.666666666666668px);
}

}

#s-42ef9dd9-aeaf-4439-9ce1-db6a64f86b54 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-42ef9dd9-aeaf-4439-9ce1-db6a64f86b54 .shogun-heading-component h4 {
  color: rgba(255, 179, 26, 1);
  font-weight:  700 ;
  font-family: Open Sans;
  font-style:   ;
  font-size: 29px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-1628d1c1-b197-4a22-b6bc-f3302dfcb5d7 {
  box-shadow:0px 0px 15px 4px rgba(222, 222, 222, 1);
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 20px;
padding-left: 25px;
padding-bottom: 20px;
padding-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(139, 137, 137, 1);
border-style: solid;
border-radius: 20px;
min-height: 450px;
max-width: 450px;
background-color: rgba(255, 255, 255, 1);
}








#s-1628d1c1-b197-4a22-b6bc-f3302dfcb5d7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1628d1c1-b197-4a22-b6bc-f3302dfcb5d7.shg-box.shg-c {
  justify-content: flex-start;
}

#s-ef332bca-5bb9-4b9e-8f09-9dd8db50e06a {
  max-width: 450px;
text-align: center;
opacity: 1;
}




  #s-ef332bca-5bb9-4b9e-8f09-9dd8db50e06a img.shogun-image {
    
    width: px;
  }


#s-ef332bca-5bb9-4b9e-8f09-9dd8db50e06a .shogun-image-content {
  
    align-items: center;
  
}

#s-cb6ea588-9935-441e-9959-4d4b7e39b5c3 {
  border-style: solid;
margin-top: 5px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
}

#s-fee73d6b-83b1-4cc8-a101-ea991aee94c9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-fee73d6b-83b1-4cc8-a101-ea991aee94c9 .shogun-heading-component h4 {
  color: rgba(188, 46, 137, 1);
  font-weight:  700 ;
  font-family: Open Sans;
  font-style:   ;
  font-size: 29px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-eee2539e-8531-4ca2-982d-7e82c8e631e0 {
  box-shadow:0px 0px 15px 4px rgba(222, 222, 222, 1);
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 20px;
padding-left: 25px;
padding-bottom: 20px;
padding-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(139, 137, 137, 1);
border-style: solid;
border-radius: 20px;
min-height: 450px;
max-width: 450px;
background-color: rgba(255, 255, 255, 1);
}








#s-eee2539e-8531-4ca2-982d-7e82c8e631e0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eee2539e-8531-4ca2-982d-7e82c8e631e0.shg-box.shg-c {
  justify-content: flex-start;
}

#s-884dc477-bacd-4abe-98e2-0c10a018e77a {
  max-width: 450px;
text-align: center;
opacity: 1;
}




  #s-884dc477-bacd-4abe-98e2-0c10a018e77a img.shogun-image {
    
    width: px;
  }


#s-884dc477-bacd-4abe-98e2-0c10a018e77a .shogun-image-content {
  
    align-items: center;
  
}

#s-231039d8-67e6-4121-8a20-f7c880fb92ef {
  border-style: solid;
margin-top: 5px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
}

#s-1ac9ebd5-d0c7-4d63-9ad7-5839b7070d30 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1ac9ebd5-d0c7-4d63-9ad7-5839b7070d30 .shogun-heading-component h4 {
  color: rgba(4, 183, 178, 1);
  font-weight:  700 ;
  font-family: Open Sans;
  font-style:   ;
  font-size: 29px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-180ef7ef-471c-4f3f-bd97-48905886e639 {
  box-shadow:0px 0px 15px 4px rgba(222, 222, 222, 1);
border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
padding-top: 20px;
padding-left: 25px;
padding-bottom: 20px;
padding-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(139, 137, 137, 1);
border-style: solid;
border-radius: 20px;
min-height: 450px;
max-width: 450px;
background-color: rgba(255, 255, 255, 1);
}








#s-180ef7ef-471c-4f3f-bd97-48905886e639 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-180ef7ef-471c-4f3f-bd97-48905886e639.shg-box.shg-c {
  justify-content: flex-start;
}

#s-4e08ed61-6c63-43c6-8811-c2b5355d841c {
  max-width: 450px;
text-align: center;
opacity: 1;
}




  #s-4e08ed61-6c63-43c6-8811-c2b5355d841c img.shogun-image {
    
    width: px;
  }


#s-4e08ed61-6c63-43c6-8811-c2b5355d841c .shogun-image-content {
  
    align-items: center;
  
}

#s-4986dbb9-4b15-4398-9c6e-0416feca3243 {
  border-style: solid;
margin-top: 5px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
}

#s-6f645aff-8129-43a7-b4a9-a556943e5692 {
  min-height: 50px;
background-color: rgba(249, 249, 249, 0);
}








#s-6f645aff-8129-43a7-b4a9-a556943e5692 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6f645aff-8129-43a7-b4a9-a556943e5692.shg-box.shg-c {
  justify-content: center;
}

#s-bc73e6e1-34f9-4677-8e79-bfc9d8a1c45b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-bc73e6e1-34f9-4677-8e79-bfc9d8a1c45b .shogun-heading-component h4 {
  color: rgba(30, 30, 30, 1);
  font-weight:  normal ;
  font-family: Open Sans;
  font-style:  normal ;
  font-size: 42px;
  line-height: ;
  letter-spacing: 1px;
  text-align: center;
}



#s-a0c1a899-7300-44b3-bf9c-af6b2de38da0 {
  margin-top: 25px;
margin-bottom: 25px;
padding-left: 25px;
padding-right: 25px;
}

@media (min-width: 0px) {
[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 12.5px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 18.75px);
}

}

@media (min-width: 992px) {
[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 18.75px);
}

}

@media (min-width: 1200px) {
[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 18.75px);
}

[id="s-a0c1a899-7300-44b3-bf9c-af6b2de38da0"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 18.75px);
}

}

#s-d787cd69-6c62-418a-ad9f-ca2c7d7e2245 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}




  #s-d787cd69-6c62-418a-ad9f-ca2c7d7e2245 img.shogun-image {
    
    width: px;
  }


#s-d787cd69-6c62-418a-ad9f-ca2c7d7e2245 .shogun-image-content {
  
    align-items: center;
  
}

#s-d7d56967-7b6c-41ee-9294-bba936699633 {
  margin-left: auto;
margin-right: auto;
max-width: 100%;
}

#s-975addd6-9fd4-4793-b926-b2e3548d9c0f {
  margin-left: auto;
margin-right: auto;
text-align: center;
}




  #s-975addd6-9fd4-4793-b926-b2e3548d9c0f img.shogun-image {
    
    width: px;
  }


#s-975addd6-9fd4-4793-b926-b2e3548d9c0f .shogun-image-content {
  
    align-items: center;
  
}

#s-ee5a1f73-b535-49f9-a29f-77f16f8aec38 {
  margin-left: auto;
margin-right: auto;
max-width: 100%;
}

#s-198cbafc-8ae2-4f24-a8fa-76f1e17d1f28 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}




  #s-198cbafc-8ae2-4f24-a8fa-76f1e17d1f28 img.shogun-image {
    
    width: px;
  }


#s-198cbafc-8ae2-4f24-a8fa-76f1e17d1f28 .shogun-image-content {
  
    align-items: center;
  
}

#s-ef841758-e534-4d33-b44f-5a1107c94416 {
  margin-left: auto;
margin-right: auto;
max-width: 100%;
}

#s-a251e800-2fe0-4f69-85b4-fee7e05dd41a {
  margin-left: auto;
margin-right: auto;
text-align: center;
}




  #s-a251e800-2fe0-4f69-85b4-fee7e05dd41a img.shogun-image {
    
    width: px;
  }


#s-a251e800-2fe0-4f69-85b4-fee7e05dd41a .shogun-image-content {
  
    align-items: center;
  
}

#s-23e6ffc9-9a5c-402b-854b-84f66a82e01e {
  margin-left: auto;
margin-right: auto;
max-width: 100%;
}

#s-005b674f-e8a3-4dbd-99f9-ed86f4faa8ab {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 50px;
margin-bottom: 50px;
min-height: 600px;
background-position: center center;
background-attachment: scroll;
}
@media (min-width: 768px) and (max-width: 991px){#s-005b674f-e8a3-4dbd-99f9-ed86f4faa8ab {
  display: none;
}
#s-005b674f-e8a3-4dbd-99f9-ed86f4faa8ab, #wrap-s-005b674f-e8a3-4dbd-99f9-ed86f4faa8ab { display:none !important; }}@media (max-width: 767px){#s-005b674f-e8a3-4dbd-99f9-ed86f4faa8ab {
  display: none;
}
#s-005b674f-e8a3-4dbd-99f9-ed86f4faa8ab, #wrap-s-005b674f-e8a3-4dbd-99f9-ed86f4faa8ab { display:none !important; }}







#s-005b674f-e8a3-4dbd-99f9-ed86f4faa8ab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-005b674f-e8a3-4dbd-99f9-ed86f4faa8ab.shg-box.shg-c {
  justify-content: center;
}

#s-5c6b8707-2948-4443-b315-2a6cc1cf01fc {
  margin-left: 10%;
margin-right: 10%;
padding-left: 25px;
}

@media (min-width: 0px) {
[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 10.0px);
}

}

@media (min-width: 768px) {
[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 10.0px);
}

[id="s-5c6b8707-2948-4443-b315-2a6cc1cf01fc"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 10.0px);
}

}

#s-6762a96b-0e4e-4d8a-8739-f8f209af9d9c {
  background-repeat: no-repeat;
background-size: cover;
padding-top: 20px;
background-position: center top;
background-attachment: scroll;
}
@media (min-width: 1200px){#s-6762a96b-0e4e-4d8a-8739-f8f209af9d9c {
  display: none;
}
#s-6762a96b-0e4e-4d8a-8739-f8f209af9d9c, #wrap-s-6762a96b-0e4e-4d8a-8739-f8f209af9d9c { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6762a96b-0e4e-4d8a-8739-f8f209af9d9c {
  display: none;
}
#s-6762a96b-0e4e-4d8a-8739-f8f209af9d9c, #wrap-s-6762a96b-0e4e-4d8a-8739-f8f209af9d9c { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6762a96b-0e4e-4d8a-8739-f8f209af9d9c {
  display: none;
}
#s-6762a96b-0e4e-4d8a-8739-f8f209af9d9c, #wrap-s-6762a96b-0e4e-4d8a-8739-f8f209af9d9c { display:none !important; }}







#s-6762a96b-0e4e-4d8a-8739-f8f209af9d9c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6762a96b-0e4e-4d8a-8739-f8f209af9d9c.shg-box.shg-c {
  justify-content: center;
}

#s-db3698aa-7d12-4efb-b041-e9280cd51ecc {
  padding-left: 25px;
}

@media (min-width: 0px) {
[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 7.5px);
}

[id="s-db3698aa-7d12-4efb-b041-e9280cd51ecc"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 7.5px);
}

}

#s-9c4370b6-724b-4e78-95b9-d5211d79aaf2 {
  padding-top: 40px;
padding-bottom: 40px;
text-align: left;
}

#s-9c4370b6-724b-4e78-95b9-d5211d79aaf2 .shogun-heading-component h6 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: Open Sans;
  font-style:   ;
  font-size: 38px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-6cc1a89e-5d2b-44f0-819d-ad623b26c74d {
  margin-top: 75px;
padding-left: 25px;
padding-right: 25px;
}

#s-43127ccc-38e3-44b9-8709-3b645fb02320 {
  margin-top: 50px;
margin-bottom: 50px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-43127ccc-38e3-44b9-8709-3b645fb02320 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-43127ccc-38e3-44b9-8709-3b645fb02320.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 768px) {
[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-34664b80-32ae-43b8-b488-93cebe839063"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-8850d31d-b00a-4071-861f-8354485509bc {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8850d31d-b00a-4071-861f-8354485509bc .shogun-heading-component h5 {
  color: rgba(30, 30, 30, 1);
  font-weight:  normal ;
  font-family: Open Sans;
  font-style:  normal ;
  font-size: 42px;
  line-height: ;
  letter-spacing: 1px;
  text-align: center;
}



#s-e8cae876-d714-4756-a9fc-50fffc599281 {
  padding-left: 8%;
padding-right: 8%;
}

.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-d922c4d6-463f-4f08-a5d5-682e930a78f9 {
  margin-left: 5%;
margin-right: 5%;
padding-top: 0px;
padding-left: 25px;
padding-bottom: 0px;
padding-right: 25px;
opacity: 1;
}

#s-d922c4d6-463f-4f08-a5d5-682e930a78f9 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(255, 255, 255, 1);
}

#s-d922c4d6-463f-4f08-a5d5-682e930a78f9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 10px;
}

#s-d922c4d6-463f-4f08-a5d5-682e930a78f9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(25, 25, 25, 1);
}

#s-d922c4d6-463f-4f08-a5d5-682e930a78f9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: rgba(255, 255, 255, 1);
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#s-d922c4d6-463f-4f08-a5d5-682e930a78f9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(25, 25, 25, 1);
  text-align: left;
  font-family: Open Sans;
  font-weight: 600;
  font-style: ;
  font-size: 18px;
}

#s-d922c4d6-463f-4f08-a5d5-682e930a78f9 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}
#s-14d3a3a4-3d2c-4945-ba0f-a022c9626c15 {
  margin-left: 10px;
margin-right: 10px;
}

#s-bb8e9162-454f-44a8-80de-38e8ed348deb {
  margin-left: 10px;
margin-right: 10px;
}

#s-aa46e423-a161-40e6-8842-34f7c5599a97 {
  margin-left: 10px;
margin-right: 10px;
}

#s-77240b99-7368-46ec-a059-b4b91cb40df1 {
  margin-left: 10px;
margin-right: 10px;
}

#s-ec753f88-a02b-4916-99c4-7134bea4c7f6 {
  box-shadow:0px 0px 0px 0px rgba(255, 255, 255, 0);
border-style: solid;
margin-left: 10px;
margin-right: 10px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
}

#s-9609dbcd-960a-4e98-b4ed-b99f5919f5de {
  border-style: solid;
margin-top: 10px;
margin-left: 10px;
margin-bottom: 10px;
margin-right: 10px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
}

#s-841456dc-66db-4e6b-8196-27ccefb4f716 {
  border-style: solid;
margin-bottom: 50px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
min-height: 50px;
}








#s-841456dc-66db-4e6b-8196-27ccefb4f716 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-841456dc-66db-4e6b-8196-27ccefb4f716.shg-box.shg-c {
  justify-content: center;
}

#s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf {
  border-style: solid;
margin-top: 25px;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
padding-top: 25px;
padding-left: 25px;
padding-bottom: 25px;
padding-right: 25px;
border-top-width: 5px;
border-left-width: 5px;
border-bottom-width: 5px;
border-right-width: 5px;
border-color: rgba(255, 179, 26, 1);
border-style: solid;
border-radius: 20px;
}

@media (min-width: 0px) {
[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 12.5px);
}

}

@media (min-width: 992px) {
[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 12.5px);
}

}

@media (min-width: 1200px) {
[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 12.5px);
}

[id="s-911a5ed0-f0a8-4508-a7fa-bf4f53ff3ebf"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 12.5px);
}

}

#s-a7a9c8e2-75f1-4bd4-ab41-1c72cc43762f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-a7a9c8e2-75f1-4bd4-ab41-1c72cc43762f .shogun-heading-component h6 {
  color: rgba(255, 179, 26, 1);
  font-weight:  700 ;
  font-family: Open Sans;
  font-style:   ;
  font-size: 56px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: left;
}



#s-c7f4dc9c-2d68-413d-b523-ef8342c4c634 {
  padding-top: 25px;
}

#s-06b27a9a-6910-447e-a429-ee3950442559 {
  max-width: 425px;
}

.shogun-form > div {
  padding: 0 0 1em;
}

.shogun-form small {
  color: red;
  display: none;
}

.shogun-form input,
textarea {
  margin: 0;
}

.required-field::after {
  color: red;
  content: "*";
  margin-right: 4px;
}

.shogun-success-alert {
  background-color: #dff0d8;
  color: #3c763d;
  border-color: #d6e9c6;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.5;
  min-height: 55px;
  display: none;
}

.shogun-form input,
.shogun-form textarea {
  width: 100%;
}

#s-76505153-7fff-43d3-a4bb-a2697ca00416 {
  padding-top: 20px;
padding-left: 25px;
padding-right: 25px;
background-color: rgba(255, 255, 255, 1);
}

#s-76505153-7fff-43d3-a4bb-a2697ca00416 .shogun-success-alert {
  background-color: #E2EFDA;
  color: #3c763d;
}

#s-76505153-7fff-43d3-a4bb-a2697ca00416 .shogun-form .shogun-form-label {
  color: rgba(85, 85, 85, 1);
  font-family: Open Sans;
  font-size: 16px;
  font-weight: ;
  font-style: ;
}

#s-76505153-7fff-43d3-a4bb-a2697ca00416 .shogun-form .shogun-form-field {
  color: #555;
  font-family: Open Sans;
  font-size: 14px;
  font-weight: ;
  font-style: ;
}

#s-76505153-7fff-43d3-a4bb-a2697ca00416 .shogun-form .shogun-form-submit {
  background-color:  !important;
}

#s-76505153-7fff-43d3-a4bb-a2697ca00416 .shogun-form .shogun-form-submit-container {
  text-align: left;
}

#s-76505153-7fff-43d3-a4bb-a2697ca00416 .shogun-form .shogun-form-submit-label {
  color: rgba(251, 251, 251, 1) !important;
}

/*
  $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;
}
