.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-97ee8cf9-e5b7-44ba-91ae-ebb8334e0774 {
  padding-top: 10px;
min-height: 50px;
background-color: rgba(244, 244, 244, 1);
}








#s-97ee8cf9-e5b7-44ba-91ae-ebb8334e0774 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-97ee8cf9-e5b7-44ba-91ae-ebb8334e0774.shg-box.shg-c {
  justify-content: center;
}

.shogun-tabs {
  margin: 0 !important;
  list-style: none !important;
  padding: 0 0 0 0;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
}

.shogun-tabs.shogun-modern {
  padding-left: 10px;
  padding-right: 5px;
  overflow: hidden;
  transform: translate(0px, 0px);
}

.shogun-tabs li {
  text-decoration: none;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
}

.shogun-tabs.shogun-modern li {
  width: 200px;
  height: 45px;
  margin: 0 5px 0 0;
}

.shogun-tabs.shogun-rounded li {
  margin-bottom: 0;
  float: left;
  box-sizing: border-box;
  margin-right: 2px;
  line-height: 1.42857143;
  position: relative;
  display: block;
  overflow: visible;
}

.shogun-tabs.shogun-rounded li .shogun-tab-box {
  padding: 10px 15px !important;
  border-radius: 4px 4px 0 0;
}

.shogun-tabs.shogun-modern li .shogun-tab-box {
  padding: 12px 5px !important;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .shogun-tabs.shogun-rounded li .shogun-tab-box {
    padding: 10px 5px !important;
    text-align: center;
  }

  .shogun-tabs.shogun-modern li .shogun-tab-box {
    padding: 12px 15px !important;
  }
}

.shogun-tabs.shogun-rounded .shogun-tab-box {
  border-bottom: none !important;
}

.shogun-tabs.shogun-modern li.active {
  z-index: 40;
}

.shogun-tabs.shogun-modern li .shogun-tab-box::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: -1;
  outline: 1px solid transparent;
  border-radius: 4px 4px 0 0;
  content: "";
  transform: perspective(100px) rotateX(30deg);
  -webkit-transform: perspective(100px) rotateX(30deg);
}

.shogun-tabs.shogun-modern li.shogun-tab-active .shogun-tab-box::after {
  border-bottom: none !important;
  height: 46px;
}

.shogun-tabs-body {
  padding-top: 10px;
}

.shogun-tabs-body.shogun-rounded {
  margin-top: 0px !important;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.shogun-tabs-body>.shogun-tab-content {
  display: none;
}

.shogun-tabs-body>.shogun-tab-content.shogun-tab-active {
  -webkit-animation: fadeIn 0.5s;
  animation: fadeIn 0.5s;
  display: block;
}

.shogun-tab-border {
  position: absolute;
}

.shogun-tab-title {
  white-space: nowrap;
  text-align: center;

  display: inline-block;
  width: 100%;
}

.shogun-tabs.shogun-modern .shogun-tab-title {
  /** Hack for Safari weird bug */
  /* https://stackoverflow.com/questions/18146511/bug-in-css3-rotatey-transition-on-safari */
  transform: translateZ(1000px);
}

#s-f6c68434-9814-41bb-a700-37956fe07f74 {
  margin-left: auto;
margin-right: auto;
max-width: 1200px;
opacity: 1;
background-color: rgba(255, 255, 255, 0);
}
@media (max-width: 767px){#s-f6c68434-9814-41bb-a700-37956fe07f74 {
  display: none;
}
#s-f6c68434-9814-41bb-a700-37956fe07f74, #wrap-s-f6c68434-9814-41bb-a700-37956fe07f74 { display:none !important; }}
#s-f6c68434-9814-41bb-a700-37956fe07f74 .shogun-tabs {
  justify-content: flex-start;
}


  #s-f6c68434-9814-41bb-a700-37956fe07f74 .shogun-tabs > li > .shogun-tab-box {
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(221, 221, 221, 0);
  }
  #s-f6c68434-9814-41bb-a700-37956fe07f74 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(221, 221, 221, 0);
  }
#s-f6c68434-9814-41bb-a700-37956fe07f74 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 0.75);
  font-family: IBM Plex Sans;
  font-weight: 500;
  font-style: ;
  font-size: 18px;
}

#s-f6c68434-9814-41bb-a700-37956fe07f74 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(30, 54, 101, 1);
}

#s-f6c68434-9814-41bb-a700-37956fe07f74 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(255, 255, 255, 1);
}

#s-f6c68434-9814-41bb-a700-37956fe07f74 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(221, 221, 221, 0);
}

#s-dcf6b319-131b-4a73-a430-8cb5a97b9831 {
  margin-top: -12px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-dcf6b319-131b-4a73-a430-8cb5a97b9831 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-dcf6b319-131b-4a73-a430-8cb5a97b9831 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-dcf6b319-131b-4a73-a430-8cb5a97b9831 {
  
}
}@media (max-width: 767px){#s-dcf6b319-131b-4a73-a430-8cb5a97b9831 {
  
}
}







#s-dcf6b319-131b-4a73-a430-8cb5a97b9831 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dcf6b319-131b-4a73-a430-8cb5a97b9831.shg-box.shg-c {
  justify-content: flex-start;
}

#s-76c24bb1-043a-4f22-8ff2-5ce094fe8886 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-76c24bb1-043a-4f22-8ff2-5ce094fe8886 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-76c24bb1-043a-4f22-8ff2-5ce094fe8886.shg-box.shg-c {
  justify-content: center;
}

#s-5b9e619d-8884-44b6-9195-b8d4413a46c8 {
  margin-left: auto;
margin-right: auto;
padding-left: 25px;
padding-right: 25px;
min-height: 50px;
max-width: 1200px;
}








#s-5b9e619d-8884-44b6-9195-b8d4413a46c8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5b9e619d-8884-44b6-9195-b8d4413a46c8.shg-box.shg-c {
  justify-content: center;
}

#s-e1fe759c-5f18-44ce-995b-cc15e13dbcfb {
  margin-top: 40px;
margin-left: 0px;
margin-bottom: 40px;
margin-right: 0px;
min-height: 50px;
}








#s-e1fe759c-5f18-44ce-995b-cc15e13dbcfb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e1fe759c-5f18-44ce-995b-cc15e13dbcfb.shg-box.shg-c {
  justify-content: flex-start;
}

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

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

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

@media (min-width: 0px) {
[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-daa2db13-d675-488a-998d-8346dc87c4c3"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-790657a1-07c2-4ed6-94ea-3b571bc115b9 {
  border-style: solid;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(236, 236, 236, 1);
border-radius: 0px;
min-height: 0px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-790657a1-07c2-4ed6-94ea-3b571bc115b9 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-790657a1-07c2-4ed6-94ea-3b571bc115b9 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-790657a1-07c2-4ed6-94ea-3b571bc115b9 {
  
}
}@media (max-width: 767px){#s-790657a1-07c2-4ed6-94ea-3b571bc115b9 {
  
}
}







#s-790657a1-07c2-4ed6-94ea-3b571bc115b9 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
}#s-790657a1-07c2-4ed6-94ea-3b571bc115b9.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 3.3333333333333335em);
}

}

@media (min-width: 992px) {
[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 3.3333333333333335em);
}

}

@media (min-width: 1200px) {
[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 3.3333333333333335em);
}

[id="s-f2f4e95c-c536-4b87-b814-1305d3db3f69"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 3.3333333333333335em);
}

}

#s-f6f89d96-0de0-4cbe-b13d-ee1ae5623f07 {
  margin-top: 40px;
margin-bottom: 40px;
min-height: 50px;
}








#s-f6f89d96-0de0-4cbe-b13d-ee1ae5623f07 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f6f89d96-0de0-4cbe-b13d-ee1ae5623f07.shg-box.shg-c {
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content-bottom {
  align-items: flex-end;
}
#s-24167202-fbeb-4c0f-a818-1e936273a726 {
  max-width: 33%;
text-align: left;
}




  #s-24167202-fbeb-4c0f-a818-1e936273a726 img.shogun-image {
    
    width: px;
  }


#s-24167202-fbeb-4c0f-a818-1e936273a726 .shogun-image-content {
  
    align-items: 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-6ad97156-80a0-4d65-a59e-5b63c47c5909 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-6ad97156-80a0-4d65-a59e-5b63c47c5909 .shogun-heading-component h2 {
  color: rgba(204, 70, 152, 1);
  font-weight:  700 ;
  font-family: "IBM Plex Sans";
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-fb3fd4a0-02f5-4e12-b179-9b26579054e8 {
  margin-top: 40px;
margin-bottom: 40px;
min-height: 50px;
}








#s-fb3fd4a0-02f5-4e12-b179-9b26579054e8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fb3fd4a0-02f5-4e12-b179-9b26579054e8.shg-box.shg-c {
  justify-content: center;
}

#s-bb63e679-89ef-4913-a77a-6db051542f5e {
  box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2);
border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
max-width: 33%;
opacity: 1;
}




  #s-bb63e679-89ef-4913-a77a-6db051542f5e img.shogun-image {
    
    width: px;
  }


#s-bb63e679-89ef-4913-a77a-6db051542f5e .shogun-image-content {
  
    align-items: center;
  
}

#s-787fe52f-5f68-42cd-8cac-9a780d8cfbec {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-787fe52f-5f68-42cd-8cac-9a780d8cfbec .shogun-heading-component h2 {
  color: rgba(70, 121, 189, 1);
  font-weight:  700 ;
  font-family: "IBM Plex Sans";
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-f0d30a92-2758-4813-bd63-749ece0c911a {
  margin-top: 40px;
margin-bottom: 40px;
min-height: 50px;
}








#s-f0d30a92-2758-4813-bd63-749ece0c911a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f0d30a92-2758-4813-bd63-749ece0c911a.shg-box.shg-c {
  justify-content: center;
}

#s-4b9b6693-fa78-4453-9874-cc028a186963 {
  max-width: 33%;
text-align: left;
}




  #s-4b9b6693-fa78-4453-9874-cc028a186963 img.shogun-image {
    
    width: px;
  }


#s-4b9b6693-fa78-4453-9874-cc028a186963 .shogun-image-content {
  
    align-items: center;
  
}

#s-eccce731-aff7-4d7f-8570-31a92195ee72 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-eccce731-aff7-4d7f-8570-31a92195ee72 .shogun-heading-component h2 {
  color: rgba(255, 155, 46, 1);
  font-weight:  700 ;
  font-family: "IBM Plex Sans";
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



@media (min-width: 0px) {
[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 3.3333333333333335em);
}

}

@media (min-width: 992px) {
[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 3.3333333333333335em);
}

}

@media (min-width: 1200px) {
[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 3.3333333333333335em);
}

[id="s-8e7249bf-5bd1-413d-96ad-a7601f1ecc46"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 3.3333333333333335em);
}

}

#s-b3146284-7fb2-46da-bdb0-994627fddab3 {
  margin-top: 40px;
margin-bottom: 40px;
min-height: 50px;
}








#s-b3146284-7fb2-46da-bdb0-994627fddab3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b3146284-7fb2-46da-bdb0-994627fddab3.shg-box.shg-c {
  justify-content: center;
}

#s-d376a211-b543-4d66-9479-e6651a0baf5e {
  max-width: 33%;
text-align: left;
}




  #s-d376a211-b543-4d66-9479-e6651a0baf5e img.shogun-image {
    
    width: px;
  }


#s-d376a211-b543-4d66-9479-e6651a0baf5e .shogun-image-content {
  
    align-items: center;
  
}

#s-a7ba8944-5ab3-4e5d-a577-47a9d7968e57 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-a7ba8944-5ab3-4e5d-a577-47a9d7968e57 .shogun-heading-component h2 {
  color: rgba(204, 138, 70, 1);
  font-weight:  700 ;
  font-family: "IBM Plex Sans";
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-2d1215e6-eeea-432d-8d10-61a00a0b4028 {
  margin-top: 40px;
margin-bottom: 40px;
min-height: 50px;
}








#s-2d1215e6-eeea-432d-8d10-61a00a0b4028 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2d1215e6-eeea-432d-8d10-61a00a0b4028.shg-box.shg-c {
  justify-content: center;
}

#s-a2477b9a-e711-47aa-b33f-17d7ae78ab5f {
  max-width: 33%;
text-align: left;
}




  #s-a2477b9a-e711-47aa-b33f-17d7ae78ab5f img.shogun-image {
    
    width: px;
  }


#s-a2477b9a-e711-47aa-b33f-17d7ae78ab5f .shogun-image-content {
  
    align-items: center;
  
}

#s-d3995bf4-4dbc-4fef-8708-7df8fe55eec1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-d3995bf4-4dbc-4fef-8708-7df8fe55eec1 .shogun-heading-component h2 {
  color: rgba(160, 55, 72, 1);
  font-weight:  700 ;
  font-family: "IBM Plex Sans";
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-246bf058-ea49-4b4b-8515-c7fee0e366bd {
  margin-top: 40px;
margin-bottom: 40px;
min-height: 50px;
}








#s-246bf058-ea49-4b4b-8515-c7fee0e366bd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-246bf058-ea49-4b4b-8515-c7fee0e366bd.shg-box.shg-c {
  justify-content: center;
}

#s-69817629-8323-4d63-84a8-4453152ee0d5 {
  max-width: 33%;
text-align: left;
}




  #s-69817629-8323-4d63-84a8-4453152ee0d5 img.shogun-image {
    
    width: px;
  }


#s-69817629-8323-4d63-84a8-4453152ee0d5 .shogun-image-content {
  
    align-items: center;
  
}

#s-adb80be0-bc89-4b49-8802-fd1fd5987e81 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-adb80be0-bc89-4b49-8802-fd1fd5987e81 .shogun-heading-component h2 {
  color: rgba(233, 101, 75, 1);
  font-weight:  700 ;
  font-family: "IBM Plex Sans";
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



@media (min-width: 0px) {
[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 3.3333333333333335em);
}

}

@media (min-width: 992px) {
[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 3.3333333333333335em);
}

}

@media (min-width: 1200px) {
[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 3.3333333333333335em);
}

[id="s-06c74e69-f3f8-4c5b-b32a-e19bdad8856d"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 3.3333333333333335em);
}

}

#s-0c592b05-9986-486a-85d7-81657dcaf69d {
  margin-top: 40px;
margin-bottom: 40px;
min-height: 50px;
}








#s-0c592b05-9986-486a-85d7-81657dcaf69d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0c592b05-9986-486a-85d7-81657dcaf69d.shg-box.shg-c {
  justify-content: center;
}

#s-5de162ab-dcae-4cb2-8e9c-e7409e777e81 {
  max-width: 33%;
text-align: left;
}




  #s-5de162ab-dcae-4cb2-8e9c-e7409e777e81 img.shogun-image {
    
    width: px;
  }


#s-5de162ab-dcae-4cb2-8e9c-e7409e777e81 .shogun-image-content {
  
    align-items: center;
  
}

#s-ad016ea4-9631-4675-b281-d062290f6e54 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-ad016ea4-9631-4675-b281-d062290f6e54 .shogun-heading-component h2 {
  color: rgba(95, 162, 152, 1);
  font-weight:  700 ;
  font-family: "IBM Plex Sans";
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-55bb6095-953e-438a-b8ed-0e07b93328f0 {
  margin-top: 40px;
margin-bottom: 40px;
min-height: 50px;
}








#s-55bb6095-953e-438a-b8ed-0e07b93328f0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-55bb6095-953e-438a-b8ed-0e07b93328f0.shg-box.shg-c {
  justify-content: center;
}

#s-726df04e-e53e-46f3-9c71-fa6167a2ea7f {
  max-width: 33%;
text-align: left;
}




  #s-726df04e-e53e-46f3-9c71-fa6167a2ea7f img.shogun-image {
    
    width: px;
  }


#s-726df04e-e53e-46f3-9c71-fa6167a2ea7f .shogun-image-content {
  
    align-items: center;
  
}

#s-70e889c0-28f7-4924-8afd-deacbf1590c8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-70e889c0-28f7-4924-8afd-deacbf1590c8 .shogun-heading-component h2 {
  color: rgba(0, 93, 204, 1);
  font-weight:  700 ;
  font-family: "IBM Plex Sans";
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-b5a006c7-4036-4482-b587-38c985492319 {
  margin-top: 40px;
margin-bottom: 40px;
min-height: 50px;
}








#s-b5a006c7-4036-4482-b587-38c985492319 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b5a006c7-4036-4482-b587-38c985492319.shg-box.shg-c {
  justify-content: center;
}

#s-5c53b34c-4114-4192-964e-f6c6f8a0245b {
  max-width: 33%;
text-align: left;
}




  #s-5c53b34c-4114-4192-964e-f6c6f8a0245b img.shogun-image {
    
    width: px;
  }


#s-5c53b34c-4114-4192-964e-f6c6f8a0245b .shogun-image-content {
  
    align-items: center;
  
}

#s-87736f52-2b94-46c2-9a5b-3486e441b58f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-87736f52-2b94-46c2-9a5b-3486e441b58f .shogun-heading-component h2 {
  color: rgba(187, 201, 107, 1);
  font-weight:  700 ;
  font-family: "IBM Plex Sans";
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-1eed3d15-170c-4bbb-9e85-929b66bb2951 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-1eed3d15-170c-4bbb-9e85-929b66bb2951 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-1eed3d15-170c-4bbb-9e85-929b66bb2951 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-1eed3d15-170c-4bbb-9e85-929b66bb2951 {
  
}
}@media (max-width: 767px){#s-1eed3d15-170c-4bbb-9e85-929b66bb2951 {
  
}
}







#s-1eed3d15-170c-4bbb-9e85-929b66bb2951 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1eed3d15-170c-4bbb-9e85-929b66bb2951.shg-box.shg-c {
  justify-content: flex-start;
}

#s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d {
  margin-top: 50px;
margin-bottom: 50px;
}
@media (min-width: 1200px){#s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d {
  display: none;
}
#s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d, #wrap-s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d { display:none !important; }}@media (max-width: 767px){#s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d {
  display: none;
}
#s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d, #wrap-s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d { display:none !important; }}
@media (min-width: 0px) {
[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 53.333333333333336px);
}

}

@media (min-width: 992px) {
[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 53.333333333333336px);
}

}

@media (min-width: 1200px) {
[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 53.333333333333336px);
}

[id="s-695a9f76-ab3e-40f5-a5f9-5d2f8c43cd7d"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 53.333333333333336px);
}

}

#s-40a25b9f-1dfe-4932-8a6e-493f9f45a8bd {
  background-repeat: no-repeat;
border-style: solid;
margin-bottom: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(19, 33, 60, 1);
border-radius: 8px;
min-height: 50px;
}








#s-40a25b9f-1dfe-4932-8a6e-493f9f45a8bd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-40a25b9f-1dfe-4932-8a6e-493f9f45a8bd.shg-box.shg-c {
  justify-content: flex-start;
}

#s-a4336974-3520-4f47-a3f0-7d2baf919c42 {
  border-style: solid;
margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(19, 33, 60, 1);
min-height: 50px;
max-width: 175px;
}








#s-a4336974-3520-4f47-a3f0-7d2baf919c42 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a4336974-3520-4f47-a3f0-7d2baf919c42.shg-box.shg-c {
  justify-content: center;
}

#s-d647bc92-e806-4ac1-a5fc-0b8593869cc1 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-aade5b48-bcf4-4f4a-9a5d-1dad4a5c9185 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}




  #s-aade5b48-bcf4-4f4a-9a5d-1dad4a5c9185 img.shogun-image {
    
    width: px;
  }


#s-aade5b48-bcf4-4f4a-9a5d-1dad4a5c9185 .shogun-image-content {
  
    align-items: center;
  
}

.shogun-video {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.shogun-video-16x9 {
  padding-bottom: 56.25%;
}

.shogun-video-4x3 {
  padding-bottom: 75%;
}

.shogun-video-embed {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#s-48bc0e88-0ded-4647-8225-04a3641a11fe {
  max-width: 700px;
}

#s-09654f2d-4d1b-4672-a4cc-3f7d2a019f3c {
  margin-top: 10px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
opacity: 1;
}
@media (min-width: 1200px){#s-09654f2d-4d1b-4672-a4cc-3f7d2a019f3c {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-09654f2d-4d1b-4672-a4cc-3f7d2a019f3c {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-09654f2d-4d1b-4672-a4cc-3f7d2a019f3c {
  
}
}@media (max-width: 767px){#s-09654f2d-4d1b-4672-a4cc-3f7d2a019f3c {
  
}
}
#s-09389162-ee4b-499b-8121-324a0b97aa39 {
  background-repeat: no-repeat;
border-style: solid;
margin-bottom: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(19, 33, 60, 1);
border-radius: 8px;
min-height: 50px;
}








#s-09389162-ee4b-499b-8121-324a0b97aa39 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-09389162-ee4b-499b-8121-324a0b97aa39.shg-box.shg-c {
  justify-content: flex-start;
}

#s-c03f55c4-f898-4337-b01e-c364ab88450a {
  border-style: solid;
margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(19, 33, 60, 1);
min-height: 50px;
max-width: 175px;
}








#s-c03f55c4-f898-4337-b01e-c364ab88450a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c03f55c4-f898-4337-b01e-c364ab88450a.shg-box.shg-c {
  justify-content: center;
}

#s-776ca5dc-0c04-41fa-9f0a-2927c5f97dd2 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-1b8fe154-d7ac-4d8c-9c6e-73359a4afa1e {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}




  #s-1b8fe154-d7ac-4d8c-9c6e-73359a4afa1e img.shogun-image {
    
    width: px;
  }


#s-1b8fe154-d7ac-4d8c-9c6e-73359a4afa1e .shogun-image-content {
  
    align-items: center;
  
}

#s-4a31d17a-961a-47ca-81c1-f4e49214d58c {
  margin-left: auto;
margin-right: auto;
max-width: 200px;
text-align: center;
}




  #s-4a31d17a-961a-47ca-81c1-f4e49214d58c img.shogun-image {
    
    width: px;
  }


#s-4a31d17a-961a-47ca-81c1-f4e49214d58c .shogun-image-content {
  
    align-items: center;
  
}

#s-187c0f73-d925-4b1f-a930-3fa5676252f6 {
  margin-top: 10px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
opacity: 1;
}
@media (min-width: 1200px){#s-187c0f73-d925-4b1f-a930-3fa5676252f6 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-187c0f73-d925-4b1f-a930-3fa5676252f6 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-187c0f73-d925-4b1f-a930-3fa5676252f6 {
  
}
}@media (max-width: 767px){#s-187c0f73-d925-4b1f-a930-3fa5676252f6 {
  
}
}
#s-32adef0c-4366-4221-809e-ca4940ee8fc1 {
  background-repeat: no-repeat;
border-style: solid;
margin-bottom: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(19, 33, 60, 1);
border-radius: 8px;
min-height: 50px;
}








#s-32adef0c-4366-4221-809e-ca4940ee8fc1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-32adef0c-4366-4221-809e-ca4940ee8fc1.shg-box.shg-c {
  justify-content: flex-start;
}

#s-f0e29ef1-b12e-48be-8b6a-5445c70a12e4 {
  border-style: solid;
margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(19, 33, 60, 1);
min-height: 50px;
max-width: 175px;
}








#s-f0e29ef1-b12e-48be-8b6a-5445c70a12e4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f0e29ef1-b12e-48be-8b6a-5445c70a12e4.shg-box.shg-c {
  justify-content: center;
}

#s-fb45b046-cfae-4189-88bf-b8c277ed2f73 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-10f4f42b-8e32-4435-a6cd-a5a497f4993c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}




  #s-10f4f42b-8e32-4435-a6cd-a5a497f4993c img.shogun-image {
    
    width: px;
  }


#s-10f4f42b-8e32-4435-a6cd-a5a497f4993c .shogun-image-content {
  
    align-items: center;
  
}

#s-c231135f-bcbe-4d6e-bc58-b3e6e309a0e4 {
  margin-top: 10px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
opacity: 1;
}
@media (min-width: 1200px){#s-c231135f-bcbe-4d6e-bc58-b3e6e309a0e4 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c231135f-bcbe-4d6e-bc58-b3e6e309a0e4 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-c231135f-bcbe-4d6e-bc58-b3e6e309a0e4 {
  
}
}@media (max-width: 767px){#s-c231135f-bcbe-4d6e-bc58-b3e6e309a0e4 {
  
}
}
.shg-sld-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.shg-sld-slides {
  word-break: break-word;
  position: relative;
}

.shg-sld-slides-padded {
  padding: 0 35px;
}

.shg-sld-nav-button {
  cursor: pointer;
  position: absolute;
  z-index: 10;
  top: 0;
  width: 35px;
  height: 100%;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.shg-sld-nav-button > svg {
  height: 100%;
  width: 100%;
}

.shg-sld-nav-button.shg-sld-left {
  left: 0;
}

.shg-sld-nav-button.shg-sld-left-over-content {
  left: 2%;
}

.shg-sld-nav-button.shg-sld-right {
  right: 0;
}

.shg-sld-nav-button.shg-sld-right-over-content {
  right: 2%;
}

.shg-sld-nav-button.shg-sld-disabled {
  cursor: default;
  opacity: 0.2;
}

.shg-sld-item {
  display: none;
}

.shg-sld-item.shg-sld-active {
  display: block;
}

.shg-sld-dots {
  margin-top: 10px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.shg-sld-dots-on-top {
  margin-top: -30px !important;
}

.shg-sld-dot {
  cursor: pointer;
  display: inline-block !important;
  height: 14px;
  width: 14px;
  border-radius: 100%;
  margin-left: 5px;
  opacity: 0.5;
}

.shg-sld-dot:first-child {
  margin-left: 0px;
}

.shg-sld-dot.shg-sld-active {
  opacity: 1;
}

.shg-sld-fade {
  -webkit-animation-name: shg-sld-fade;
          animation-name: shg-sld-fade;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  image-rendering: -webkit-optimize-contrast;
}

@-webkit-keyframes shg-sld-fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

@keyframes shg-sld-fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

#s-82a39fde-f8e5-4859-ae5f-d16a8987feff {
  margin-top: 40px;
padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-82a39fde-f8e5-4859-ae5f-d16a8987feff {
  display: none;
}
#s-82a39fde-f8e5-4859-ae5f-d16a8987feff, #wrap-s-82a39fde-f8e5-4859-ae5f-d16a8987feff { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-82a39fde-f8e5-4859-ae5f-d16a8987feff {
  display: none;
}
#s-82a39fde-f8e5-4859-ae5f-d16a8987feff, #wrap-s-82a39fde-f8e5-4859-ae5f-d16a8987feff { display:none !important; }}
#s-82a39fde-f8e5-4859-ae5f-d16a8987feff .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-82a39fde-f8e5-4859-ae5f-d16a8987feff .shg-sld-nav-button.shg-sld-left,
#s-82a39fde-f8e5-4859-ae5f-d16a8987feff .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-ff350904-e1ce-466a-977a-e277bd8515f7 {
  background-repeat: no-repeat;
border-style: solid;
margin-bottom: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(19, 33, 60, 1);
border-radius: 8px;
min-height: 50px;
}








#s-ff350904-e1ce-466a-977a-e277bd8515f7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ff350904-e1ce-466a-977a-e277bd8515f7.shg-box.shg-c {
  justify-content: flex-start;
}

#s-4234b133-7c6e-453d-8f7b-e026a9e9d0bd {
  border-style: solid;
margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(19, 33, 60, 1);
min-height: 50px;
max-width: 175px;
}








#s-4234b133-7c6e-453d-8f7b-e026a9e9d0bd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4234b133-7c6e-453d-8f7b-e026a9e9d0bd.shg-box.shg-c {
  justify-content: center;
}

#s-badf4972-bee5-49be-a5d0-af31f89ed92d {
  border-style: solid;
margin-top: -40%;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(38, 57, 95, 1);
opacity: 1;
}




  #s-badf4972-bee5-49be-a5d0-af31f89ed92d img.shogun-image {
    
    width: px;
  }


#s-badf4972-bee5-49be-a5d0-af31f89ed92d .shogun-image-content {
  
    align-items: center;
  
}

#s-af86f000-22fa-4478-bd27-1619d88bb62f {
  margin-top: 10px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
opacity: 1;
}
@media (min-width: 1200px){#s-af86f000-22fa-4478-bd27-1619d88bb62f {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-af86f000-22fa-4478-bd27-1619d88bb62f {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-af86f000-22fa-4478-bd27-1619d88bb62f {
  
}
}@media (max-width: 767px){#s-af86f000-22fa-4478-bd27-1619d88bb62f {
  
}
}
#s-b7bf8365-6e00-4f5e-b5cf-dc1f99f4f332 {
  background-repeat: no-repeat;
border-style: solid;
margin-bottom: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(19, 33, 60, 1);
border-radius: 8px;
min-height: 50px;
}








#s-b7bf8365-6e00-4f5e-b5cf-dc1f99f4f332 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b7bf8365-6e00-4f5e-b5cf-dc1f99f4f332.shg-box.shg-c {
  justify-content: flex-start;
}

#s-5b045751-5b74-4aef-9a52-22a9dd5c171b {
  border-style: solid;
margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(19, 33, 60, 1);
min-height: 50px;
max-width: 175px;
}








#s-5b045751-5b74-4aef-9a52-22a9dd5c171b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5b045751-5b74-4aef-9a52-22a9dd5c171b.shg-box.shg-c {
  justify-content: center;
}

#s-281a552e-9d38-4e1b-b854-bf62029113c0 {
  border-style: solid;
margin-top: -40%;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(38, 57, 95, 1);
opacity: 1;
}




  #s-281a552e-9d38-4e1b-b854-bf62029113c0 img.shogun-image {
    
    width: px;
  }


#s-281a552e-9d38-4e1b-b854-bf62029113c0 .shogun-image-content {
  
    align-items: center;
  
}

#s-6dc39f90-1ba7-4300-9a53-18618cc0bda4 {
  margin-top: 10px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
opacity: 1;
}
@media (min-width: 1200px){#s-6dc39f90-1ba7-4300-9a53-18618cc0bda4 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6dc39f90-1ba7-4300-9a53-18618cc0bda4 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-6dc39f90-1ba7-4300-9a53-18618cc0bda4 {
  
}
}@media (max-width: 767px){#s-6dc39f90-1ba7-4300-9a53-18618cc0bda4 {
  
}
}
#s-6dfb8765-3a7f-4b32-94f8-35fee7ca7bbc {
  background-repeat: no-repeat;
border-style: solid;
margin-bottom: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(19, 33, 60, 1);
border-radius: 8px;
min-height: 50px;
}








#s-6dfb8765-3a7f-4b32-94f8-35fee7ca7bbc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6dfb8765-3a7f-4b32-94f8-35fee7ca7bbc.shg-box.shg-c {
  justify-content: flex-start;
}

#s-c471737d-7d49-4f04-aa0f-f42841dc9984 {
  border-style: solid;
margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(19, 33, 60, 1);
min-height: 50px;
max-width: 175px;
}








#s-c471737d-7d49-4f04-aa0f-f42841dc9984 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c471737d-7d49-4f04-aa0f-f42841dc9984.shg-box.shg-c {
  justify-content: center;
}

#s-f91ddb51-c6f2-43ac-bcd5-18ebc19a2605 {
  border-style: solid;
margin-top: -40%;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(38, 57, 95, 1);
opacity: 1;
}




  #s-f91ddb51-c6f2-43ac-bcd5-18ebc19a2605 img.shogun-image {
    
    width: px;
  }


#s-f91ddb51-c6f2-43ac-bcd5-18ebc19a2605 .shogun-image-content {
  
    align-items: center;
  
}

#s-f0f26b47-0fe2-4995-b13a-735d17f8f755 {
  margin-top: 10px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
opacity: 1;
}
@media (min-width: 1200px){#s-f0f26b47-0fe2-4995-b13a-735d17f8f755 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f0f26b47-0fe2-4995-b13a-735d17f8f755 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-f0f26b47-0fe2-4995-b13a-735d17f8f755 {
  
}
}@media (max-width: 767px){#s-f0f26b47-0fe2-4995-b13a-735d17f8f755 {
  
}
}
#s-023260f3-3969-4b1d-9323-6a7a6408c6a3 {
  margin-top: -10px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-023260f3-3969-4b1d-9323-6a7a6408c6a3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-023260f3-3969-4b1d-9323-6a7a6408c6a3.shg-box.shg-c {
  justify-content: flex-start;
}

#s-358a85e8-2d1b-4e66-a51c-d05f6d231f47 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-358a85e8-2d1b-4e66-a51c-d05f6d231f47 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-358a85e8-2d1b-4e66-a51c-d05f6d231f47.shg-box.shg-c {
  justify-content: center;
}

#s-99ac163e-ddc7-4dd6-b7de-8663ad7fa587 {
  margin-left: auto;
margin-right: auto;
padding-left: 25px;
padding-right: 25px;
min-height: 50px;
max-width: 1200px;
}








#s-99ac163e-ddc7-4dd6-b7de-8663ad7fa587 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-99ac163e-ddc7-4dd6-b7de-8663ad7fa587.shg-box.shg-c {
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-4958af18-3521-4c06-99df-97b33f846640 {
  margin-top: 15px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
}

#s-4958af18-3521-4c06-99df-97b33f846640 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-4958af18-3521-4c06-99df-97b33f846640 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(236, 236, 236, 1);
  padding: 15px;
}

#s-4958af18-3521-4c06-99df-97b33f846640 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(66, 139, 202, 1);
}

#s-4958af18-3521-4c06-99df-97b33f846640 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-4958af18-3521-4c06-99df-97b33f846640 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(66, 139, 202, 1);
  text-align: left;
  font-family: IBM Plex Sans;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
}

#s-4958af18-3521-4c06-99df-97b33f846640 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}
#s-e0bb84c0-3f21-4962-8bbe-72844d10718d {
  text-align: center;
}




  #s-e0bb84c0-3f21-4962-8bbe-72844d10718d img.shogun-image {
    
    width: px;
  }


#s-e0bb84c0-3f21-4962-8bbe-72844d10718d .shogun-image-content {
  
    align-items: center;
  
}

#s-d45a99d3-a597-451c-ae5a-2419c9b3cab2 {
  min-height: 50px;
}








#s-d45a99d3-a597-451c-ae5a-2419c9b3cab2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d45a99d3-a597-451c-ae5a-2419c9b3cab2.shg-box.shg-c {
  justify-content: center;
}

#s-b363f0df-6a1d-4992-864f-e38f3fb2ac91 {
  margin-left: 10%;
margin-right: 10%;
}

#s-74d96536-987e-4254-b0f1-21312cac8569 {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
}

#s-cbfce815-f9da-4472-8844-cc3d48446f3a {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
}

#s-1de8ee89-1485-4fd5-b573-81d89c11a974 {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
}

#s-d57a7039-57f9-41d3-9f85-2dcd316f99e0 {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
}

#s-698de43b-1c22-4db7-909f-5705993c4795 {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
}

#s-0d60e1fa-e99e-43bc-9f7b-75b3008c29de {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
opacity: 1;
}

#s-e3233fab-731b-482e-ba3f-cbcf147bb370 {
  padding-top: 10px;
padding-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-e3233fab-731b-482e-ba3f-cbcf147bb370"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-4b4f65a4-b737-4961-8ba7-307674fc50a9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-4b4f65a4-b737-4961-8ba7-307674fc50a9 .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: "IBM Plex Sans";
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-17e9bdb9-97af-4244-8df5-cea5ea3f6a7f {
  max-width: 400px;
text-align: left;
}




  #s-17e9bdb9-97af-4244-8df5-cea5ea3f6a7f img.shogun-image {
    
    width: px;
  }


#s-17e9bdb9-97af-4244-8df5-cea5ea3f6a7f .shogun-image-content {
  
    align-items: center;
  
}

#s-ae6f5a78-93d8-407f-8bbd-ede1116c81b0 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-ae6f5a78-93d8-407f-8bbd-ede1116c81b0 .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: "IBM Plex Sans";
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-b96ccf83-787d-44ec-ad3a-4a16578bd508 {
  max-width: 400px;
text-align: left;
}




  #s-b96ccf83-787d-44ec-ad3a-4a16578bd508 img.shogun-image {
    
    width: px;
  }


#s-b96ccf83-787d-44ec-ad3a-4a16578bd508 .shogun-image-content {
  
    align-items: center;
  
}

#s-4d01db5c-d057-466f-9b34-e7a2f0baa728 {
  margin-top: -12px;
min-height: 50px;
}








#s-4d01db5c-d057-466f-9b34-e7a2f0baa728 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4d01db5c-d057-466f-9b34-e7a2f0baa728.shg-box.shg-c {
  justify-content: flex-start;
}

#s-2080935d-adf4-44ce-bc5c-77dbb7acbbce {
  min-height: 50px;
}








#s-2080935d-adf4-44ce-bc5c-77dbb7acbbce > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2080935d-adf4-44ce-bc5c-77dbb7acbbce.shg-box.shg-c {
  justify-content: center;
}

#s-9118c025-9596-4ec2-b6ae-131c13b070b1 {
  min-height: 50px;
background-color: rgba(70, 121, 189, 0.1);
}








#s-9118c025-9596-4ec2-b6ae-131c13b070b1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9118c025-9596-4ec2-b6ae-131c13b070b1.shg-box.shg-c {
  justify-content: center;
}

#s-22e2a0c8-f92b-4e91-aa10-9a45afa6beeb {
  margin-left: auto;
margin-right: auto;
padding-left: 25px;
padding-right: 25px;
min-height: 50px;
max-width: 1200px;
}








#s-22e2a0c8-f92b-4e91-aa10-9a45afa6beeb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-22e2a0c8-f92b-4e91-aa10-9a45afa6beeb.shg-box.shg-c {
  justify-content: center;
}

#s-0f44fc6e-52a0-42d1-a655-0bde90a50949 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 20px;
padding-bottom: 20px;
background-color: rgba(70, 121, 189, 0);
}

@media (min-width: 0px) {
[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-0f44fc6e-52a0-42d1-a655-0bde90a50949"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-c37d42cc-35a6-4b29-87fb-8982a8a33fc1 {
  border-style: solid;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0.57);
min-height: 300px;
background-repeat: no-repeat;
}








#s-c37d42cc-35a6-4b29-87fb-8982a8a33fc1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c37d42cc-35a6-4b29-87fb-8982a8a33fc1.shg-box.shg-c {
  justify-content: center;
}

#s-571f605e-687b-4571-a734-c7584dba065e {
  text-align: center;
}




  #s-571f605e-687b-4571-a734-c7584dba065e img.shogun-image {
    
    width: px;
  }


#s-571f605e-687b-4571-a734-c7584dba065e .shogun-image-content {
  
    align-items: center;
  
}

#s-449f4b55-5f01-4c8e-8a15-8eaef0445a5b {
  border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 200px;
}








#s-449f4b55-5f01-4c8e-8a15-8eaef0445a5b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-449f4b55-5f01-4c8e-8a15-8eaef0445a5b.shg-box.shg-c {
  justify-content: center;
}

#s-4fca6d56-5cc2-4e17-b6cf-d70e313cabc7 {
  margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4fca6d56-5cc2-4e17-b6cf-d70e313cabc7 .shogun-heading-component h1 {
  color: rgba(70, 121, 189, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-c2c8325c-a910-4b89-8e2d-6c1075df7191 {
  margin-left: 50px;
margin-right: 50px;
}

#s-c2c8325c-a910-4b89-8e2d-6c1075df7191 hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(70, 121, 189, 1);
}

#s-6b4f3c2c-24fb-4b30-809d-7a9ec3df0ba3 {
  margin-left: 50px;
margin-right: 50px;
}

#s-ecb4bc07-92f0-4b46-ae24-05dd75e52ca6 {
  min-height: 50px;
background-color: rgba(255, 155, 46, 0.1);
}








#s-ecb4bc07-92f0-4b46-ae24-05dd75e52ca6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ecb4bc07-92f0-4b46-ae24-05dd75e52ca6.shg-box.shg-c {
  justify-content: center;
}

#s-3e4ad7d5-3867-42dc-b63a-739a977c097d {
  margin-left: auto;
margin-right: auto;
padding-left: 25px;
padding-right: 25px;
min-height: 50px;
max-width: 1200px;
background-color: rgba(255, 155, 46, 0);
}








#s-3e4ad7d5-3867-42dc-b63a-739a977c097d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3e4ad7d5-3867-42dc-b63a-739a977c097d.shg-box.shg-c {
  justify-content: center;
}

#s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 20px;
padding-bottom: 20px;
background-color: rgba(255, 155, 46, 0);
}

@media (min-width: 0px) {
[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-2bf34f9a-f8f6-48a4-b5a7-1dc8058f94d0"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-8a488093-0705-4f0f-bd5e-3adb37702661 {
  border-style: solid;
margin-left: 0px;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0.57);
min-height: 200px;
}








#s-8a488093-0705-4f0f-bd5e-3adb37702661 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8a488093-0705-4f0f-bd5e-3adb37702661.shg-box.shg-c {
  justify-content: center;
}

#s-76f1a239-d853-4730-ad9a-68bb5c1808ca {
  text-align: center;
}




  #s-76f1a239-d853-4730-ad9a-68bb5c1808ca img.shogun-image {
    
    width: px;
  }


#s-76f1a239-d853-4730-ad9a-68bb5c1808ca .shogun-image-content {
  
    align-items: center;
  
}

#s-58b897f1-2668-4b47-bb2c-7374c5babc01 {
  border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 200px;
}








#s-58b897f1-2668-4b47-bb2c-7374c5babc01 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-58b897f1-2668-4b47-bb2c-7374c5babc01.shg-box.shg-c {
  justify-content: center;
}

#s-831945ad-eca7-4771-bed0-792593ffcb43 {
  margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-831945ad-eca7-4771-bed0-792593ffcb43 .shogun-heading-component h1 {
  color: rgba(255, 155, 46, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-d6dae81c-8eb1-49c2-a917-3044f8b5c2cb {
  margin-left: 50px;
margin-right: 50px;
}

#s-d6dae81c-8eb1-49c2-a917-3044f8b5c2cb hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 155, 46, 1);
}

#s-99fefc8c-d05a-42bb-b339-380385ada4d2 {
  margin-left: 50px;
margin-right: 50px;
}

#s-f7f20d39-fa6f-44d0-889c-2f721eae57f3 {
  margin-top: -12px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-f7f20d39-fa6f-44d0-889c-2f721eae57f3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f7f20d39-fa6f-44d0-889c-2f721eae57f3.shg-box.shg-c {
  justify-content: flex-start;
}

#s-eb429d04-4bf6-47e8-9d5d-e968910765e4 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-eb429d04-4bf6-47e8-9d5d-e968910765e4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eb429d04-4bf6-47e8-9d5d-e968910765e4.shg-box.shg-c {
  justify-content: center;
}

#s-3f2067a4-7e00-40b8-a522-9ecec8d15361 {
  margin-left: auto;
margin-right: auto;
padding-left: 25px;
padding-right: 25px;
min-height: 50px;
max-width: 1200px;
}








#s-3f2067a4-7e00-40b8-a522-9ecec8d15361 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3f2067a4-7e00-40b8-a522-9ecec8d15361.shg-box.shg-c {
  justify-content: center;
}

#s-601fd239-0582-4074-951f-28ab3357c936 {
  padding-top: 10px;
padding-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-601fd239-0582-4074-951f-28ab3357c936"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-9b590615-2c8d-4030-b281-ca9c37f57ec7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-9b590615-2c8d-4030-b281-ca9c37f57ec7 .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: "IBM Plex Sans";
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-752ce80c-93fd-4735-be93-a857c2c73b7a {
  max-width: 400px;
text-align: left;
}




  #s-752ce80c-93fd-4735-be93-a857c2c73b7a img.shogun-image {
    
    width: px;
  }


#s-752ce80c-93fd-4735-be93-a857c2c73b7a .shogun-image-content {
  
    align-items: center;
  
}

#s-6f296fbf-4100-480e-a9c6-9c94ac7d9fac {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-6f296fbf-4100-480e-a9c6-9c94ac7d9fac .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: "IBM Plex Sans";
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-faf35ffe-e085-4df9-94fe-1bfc4ca625d3 {
  max-width: 400px;
text-align: left;
}




  #s-faf35ffe-e085-4df9-94fe-1bfc4ca625d3 img.shogun-image {
    
    width: px;
  }


#s-faf35ffe-e085-4df9-94fe-1bfc4ca625d3 .shogun-image-content {
  
    align-items: center;
  
}

#s-a5ddc54a-3561-4e71-a2fe-b636fa84b80a {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
}
@media (min-width: 1200px){#s-a5ddc54a-3561-4e71-a2fe-b636fa84b80a {
  display: none;
}
#s-a5ddc54a-3561-4e71-a2fe-b636fa84b80a, #wrap-s-a5ddc54a-3561-4e71-a2fe-b636fa84b80a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a5ddc54a-3561-4e71-a2fe-b636fa84b80a {
  display: none;
}
#s-a5ddc54a-3561-4e71-a2fe-b636fa84b80a, #wrap-s-a5ddc54a-3561-4e71-a2fe-b636fa84b80a { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a5ddc54a-3561-4e71-a2fe-b636fa84b80a {
  display: none;
}
#s-a5ddc54a-3561-4e71-a2fe-b636fa84b80a, #wrap-s-a5ddc54a-3561-4e71-a2fe-b636fa84b80a { display:none !important; }}
#s-a5ddc54a-3561-4e71-a2fe-b636fa84b80a > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-a5ddc54a-3561-4e71-a2fe-b636fa84b80a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(246, 244, 243, 1);
  padding: 15px;
}

#s-a5ddc54a-3561-4e71-a2fe-b636fa84b80a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(163, 30, 35, 1);
}

#s-a5ddc54a-3561-4e71-a2fe-b636fa84b80a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-a5ddc54a-3561-4e71-a2fe-b636fa84b80a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(163, 30, 35, 1);
  text-align: left;
  font-family: IBM Plex Sans;
  font-weight: ;
  font-style: ;
  font-size: 20px;
}

#s-a5ddc54a-3561-4e71-a2fe-b636fa84b80a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 20px;
}
#s-4717716f-8d7d-411b-9818-cd45d7752c07 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-4717716f-8d7d-411b-9818-cd45d7752c07 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4717716f-8d7d-411b-9818-cd45d7752c07.shg-box.shg-c {
  justify-content: flex-start;
}

#s-9a1587b2-7988-48de-868f-015b90fe2488 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-9a1587b2-7988-48de-868f-015b90fe2488 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9a1587b2-7988-48de-868f-015b90fe2488.shg-box.shg-c {
  justify-content: center;
}

#s-cd3698f3-6c43-4564-bcb9-8c286508b41e {
  margin-left: auto;
margin-right: auto;
padding-left: 25px;
padding-right: 25px;
min-height: 50px;
}








#s-cd3698f3-6c43-4564-bcb9-8c286508b41e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cd3698f3-6c43-4564-bcb9-8c286508b41e.shg-box.shg-c {
  justify-content: center;
}

#s-6a87660f-28b3-4000-be91-df04c7cb0e60 {
  margin-top: 15px;
margin-left: auto;
margin-bottom: 15px;
margin-right: auto;
}

#s-6a87660f-28b3-4000-be91-df04c7cb0e60 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-6a87660f-28b3-4000-be91-df04c7cb0e60 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(236, 236, 236, 1);
  padding: 15px;
}

#s-6a87660f-28b3-4000-be91-df04c7cb0e60 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(66, 139, 202, 1);
}

#s-6a87660f-28b3-4000-be91-df04c7cb0e60 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-6a87660f-28b3-4000-be91-df04c7cb0e60 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(66, 139, 202, 1);
  text-align: left;
  font-family: IBM Plex Sans;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
}

#s-6a87660f-28b3-4000-be91-df04c7cb0e60 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}
#s-45dee9f6-d7f1-471b-8c70-48801a4ad576 {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
}

#s-a24a84e9-d5c0-4f9d-9370-bd3362924599 {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
}

#s-0169a60f-489b-4cd9-bbf8-5c55b307303b {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
}

#s-7133a592-99aa-4eb2-9214-0dfecf79dc0a {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
}

#s-756b0a3d-f843-415f-9dae-0dfd3bd6d744 {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
}

#s-e1151009-169e-41ad-a8c5-1158b70f6f6b {
  padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
opacity: 1;
}

#s-d0221261-5bbd-4b3f-b39a-e4b1043594ec {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d0221261-5bbd-4b3f-b39a-e4b1043594ec .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: "IBM Plex Sans";
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-89c00f84-2b32-40f3-9035-3f9fc24b8810 {
  padding-top: 10px;
padding-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-89c00f84-2b32-40f3-9035-3f9fc24b8810"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-c60c7c03-65c2-4a17-b226-53ea14e43692 {
  max-width: 400px;
text-align: left;
}




  #s-c60c7c03-65c2-4a17-b226-53ea14e43692 img.shogun-image {
    
    width: px;
  }


#s-c60c7c03-65c2-4a17-b226-53ea14e43692 .shogun-image-content {
  
    align-items: center;
  
}

#s-a4d57f7a-903a-4b4f-b755-72de4f704bdb {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a4d57f7a-903a-4b4f-b755-72de4f704bdb .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: "IBM Plex Sans";
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-ae976b08-5945-45ac-a56b-f318c00c5ae2 {
  max-width: 400px;
text-align: left;
}




  #s-ae976b08-5945-45ac-a56b-f318c00c5ae2 img.shogun-image {
    
    width: px;
  }


#s-ae976b08-5945-45ac-a56b-f318c00c5ae2 .shogun-image-content {
  
    align-items: center;
  
}

#s-f2d19451-4222-4234-9d5f-1461d4a647e3 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-f2d19451-4222-4234-9d5f-1461d4a647e3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f2d19451-4222-4234-9d5f-1461d4a647e3.shg-box.shg-c {
  justify-content: flex-start;
}

#s-ccd55df0-c604-4685-925a-4972219d78d1 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-ccd55df0-c604-4685-925a-4972219d78d1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ccd55df0-c604-4685-925a-4972219d78d1.shg-box.shg-c {
  justify-content: center;
}

#s-43fdc059-795f-4b49-95fb-e2bc147c051a {
  padding-top: 10px;
padding-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-43fdc059-795f-4b49-95fb-e2bc147c051a"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-033872ba-1b47-4273-870f-6ef1eacc35c7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-033872ba-1b47-4273-870f-6ef1eacc35c7 .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: "IBM Plex Sans";
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-cf5a327b-f106-43d8-9e6f-9c1243332047 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
text-align: center;
}




  #s-cf5a327b-f106-43d8-9e6f-9c1243332047 img.shogun-image {
    
    width: px;
  }


#s-cf5a327b-f106-43d8-9e6f-9c1243332047 .shogun-image-content {
  
    align-items: center;
  
}

#s-99a8a129-169b-41f5-a370-38c84f26c64c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-99a8a129-169b-41f5-a370-38c84f26c64c .shogun-heading-component h3 {
  color: #000;
  font-weight:  700 ;
  font-family: "IBM Plex Sans";
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-abde1b2d-3ed3-40e8-83d7-dbfd33083ed4 {
  margin-left: auto;
margin-right: auto;
max-width: 400px;
text-align: left;
}




  #s-abde1b2d-3ed3-40e8-83d7-dbfd33083ed4 img.shogun-image {
    
    width: px;
  }


#s-abde1b2d-3ed3-40e8-83d7-dbfd33083ed4 .shogun-image-content {
  
    align-items: center;
  
}

#s-4883cb25-a9bb-471d-8ccc-5eafb558cab1 {
  min-height: 50px;
}








#s-4883cb25-a9bb-471d-8ccc-5eafb558cab1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4883cb25-a9bb-471d-8ccc-5eafb558cab1.shg-box.shg-c {
  justify-content: flex-start;
}

#s-17d13239-f19d-4dbd-aa7b-a15e803a38a0 {
  min-height: 50px;
}








#s-17d13239-f19d-4dbd-aa7b-a15e803a38a0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-17d13239-f19d-4dbd-aa7b-a15e803a38a0.shg-box.shg-c {
  justify-content: center;
}

#s-27e8f609-937b-42ab-99c7-cfa0f5e75006 {
  min-height: 50px;
background-color: rgba(70, 121, 189, 0.1);
}








#s-27e8f609-937b-42ab-99c7-cfa0f5e75006 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-27e8f609-937b-42ab-99c7-cfa0f5e75006.shg-box.shg-c {
  justify-content: center;
}

#s-745b0ec1-eac2-42cc-a9be-67a591d7bbcf {
  margin-left: auto;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
min-height: 50px;
}








#s-745b0ec1-eac2-42cc-a9be-67a591d7bbcf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-745b0ec1-eac2-42cc-a9be-67a591d7bbcf.shg-box.shg-c {
  justify-content: center;
}

#s-abaec609-8125-4d22-80cb-6b4f4fa43ea8 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 20px;
padding-bottom: 20px;
background-color: rgba(70, 121, 189, 0);
}

@media (min-width: 0px) {
[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-abaec609-8125-4d22-80cb-6b4f4fa43ea8"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-4612c78d-4983-4d75-92aa-8abc180fe37a {
  border-style: solid;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0.57);
min-height: 300px;
background-repeat: no-repeat;
}








#s-4612c78d-4983-4d75-92aa-8abc180fe37a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4612c78d-4983-4d75-92aa-8abc180fe37a.shg-box.shg-c {
  justify-content: center;
}

#s-7d14d7b0-c3df-4ac7-81be-08fc284f554f {
  text-align: center;
}




  #s-7d14d7b0-c3df-4ac7-81be-08fc284f554f img.shogun-image {
    
    width: px;
  }


#s-7d14d7b0-c3df-4ac7-81be-08fc284f554f .shogun-image-content {
  
    align-items: center;
  
}

#s-0a0999d8-9994-4eef-85b4-90f4e53cdaa0 {
  border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 200px;
}








#s-0a0999d8-9994-4eef-85b4-90f4e53cdaa0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0a0999d8-9994-4eef-85b4-90f4e53cdaa0.shg-box.shg-c {
  justify-content: center;
}

#s-ffa4b639-1607-4c31-b81c-ba885b8faac3 {
  margin-left: 15px;
margin-right: 15px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ffa4b639-1607-4c31-b81c-ba885b8faac3 .shogun-heading-component h1 {
  color: rgba(70, 121, 189, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-b46af5fa-ddbd-46e7-9fc7-3b70bcd00ac8 {
  margin-left: 50px;
margin-right: 50px;
}

#s-b46af5fa-ddbd-46e7-9fc7-3b70bcd00ac8 hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(70, 121, 189, 1);
}

#s-487f1773-7c24-4ebf-85fd-411a0203089f {
  margin-left: 15px;
margin-right: 15px;
}

#s-cbf3c8c8-bb7c-4253-baf6-64dbd3893661 {
  min-height: 50px;
background-color: rgba(255, 155, 46, 0.1);
}








#s-cbf3c8c8-bb7c-4253-baf6-64dbd3893661 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cbf3c8c8-bb7c-4253-baf6-64dbd3893661.shg-box.shg-c {
  justify-content: center;
}

#s-c973f7f1-bae8-4b47-b9d6-0638dfa12ab7 {
  margin-left: auto;
margin-right: auto;
padding-left: 15px;
padding-right: 15px;
min-height: 50px;
max-width: px;
background-color: rgba(255, 155, 46, 0);
}








#s-c973f7f1-bae8-4b47-b9d6-0638dfa12ab7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c973f7f1-bae8-4b47-b9d6-0638dfa12ab7.shg-box.shg-c {
  justify-content: center;
}

#s-cbcfe276-89cd-46ed-88af-1fc715ea5d15 {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 20px;
padding-bottom: 20px;
background-color: rgba(255, 155, 46, 0);
}

@media (min-width: 0px) {
[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-cbcfe276-89cd-46ed-88af-1fc715ea5d15"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-6d36bf26-0048-4420-aace-58a6ef9042c3 {
  border-style: solid;
margin-left: 0px;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0.57);
min-height: 200px;
}








#s-6d36bf26-0048-4420-aace-58a6ef9042c3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6d36bf26-0048-4420-aace-58a6ef9042c3.shg-box.shg-c {
  justify-content: center;
}

#s-c8d83ed9-2a78-4feb-b650-7da38ae4eb78 {
  text-align: center;
}




  #s-c8d83ed9-2a78-4feb-b650-7da38ae4eb78 img.shogun-image {
    
    width: px;
  }


#s-c8d83ed9-2a78-4feb-b650-7da38ae4eb78 .shogun-image-content {
  
    align-items: center;
  
}

#s-e017e495-20db-4418-bd10-2a76146df543 {
  border-style: solid;
margin-top: 0px;
margin-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 200px;
}








#s-e017e495-20db-4418-bd10-2a76146df543 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e017e495-20db-4418-bd10-2a76146df543.shg-box.shg-c {
  justify-content: center;
}

#s-4337bc30-bf75-4a50-bfba-7831b3efa73c {
  margin-left: 15px;
margin-right: 15px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-4337bc30-bf75-4a50-bfba-7831b3efa73c .shogun-heading-component h1 {
  color: rgba(255, 155, 46, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-051e49ac-0435-43f3-b0b9-a784ffcf010a {
  margin-left: 50px;
margin-right: 50px;
}

#s-051e49ac-0435-43f3-b0b9-a784ffcf010a hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 155, 46, 1);
}

#s-4876e34e-167a-4d3e-93af-e775c535ab96 {
  margin-left: 15px;
margin-right: 15px;
}

#s-079f8aa6-f28a-45e0-a377-06c47783d081 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-079f8aa6-f28a-45e0-a377-06c47783d081 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-079f8aa6-f28a-45e0-a377-06c47783d081 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-079f8aa6-f28a-45e0-a377-06c47783d081 {
  
}
}@media (max-width: 767px){#s-079f8aa6-f28a-45e0-a377-06c47783d081 {
  
}
}







#s-079f8aa6-f28a-45e0-a377-06c47783d081 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-079f8aa6-f28a-45e0-a377-06c47783d081.shg-box.shg-c {
  justify-content: flex-start;
}

#s-5086f71c-b167-4dec-8f4b-755cb06df029 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-5086f71c-b167-4dec-8f4b-755cb06df029 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5086f71c-b167-4dec-8f4b-755cb06df029.shg-box.shg-c {
  justify-content: center;
}

#s-48227c7e-7cf5-4770-9621-ac04682c10a9 {
  margin-left: auto;
margin-right: auto;
padding-left: 25px;
padding-right: 25px;
min-height: 50px;
}








#s-48227c7e-7cf5-4770-9621-ac04682c10a9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-48227c7e-7cf5-4770-9621-ac04682c10a9.shg-box.shg-c {
  justify-content: center;
}

#s-ea9ed442-7040-48a4-ad7f-096d31e19177 {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
min-height: 50px;
}








#s-ea9ed442-7040-48a4-ad7f-096d31e19177 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ea9ed442-7040-48a4-ad7f-096d31e19177.shg-box.shg-c {
  justify-content: flex-start;
}

@media (min-width: 0px) {
[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 20.0px);
}

[id="s-7b5c6e8b-f682-4547-aaef-8d9589ff75c7"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 20.0px);
}

}

#s-2355d4be-8bf6-4eaf-8895-36c1d8e388a6 {
  border-style: solid;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(236, 236, 236, 1);
border-radius: 0px;
min-height: 0px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-2355d4be-8bf6-4eaf-8895-36c1d8e388a6 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2355d4be-8bf6-4eaf-8895-36c1d8e388a6 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-2355d4be-8bf6-4eaf-8895-36c1d8e388a6 {
  
}
}@media (max-width: 767px){#s-2355d4be-8bf6-4eaf-8895-36c1d8e388a6 {
  
}
}







#s-2355d4be-8bf6-4eaf-8895-36c1d8e388a6 > .shg-box-overlay {
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
}#s-2355d4be-8bf6-4eaf-8895-36c1d8e388a6.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 3.3333333333333335em);
}

}

@media (min-width: 992px) {
[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 3.3333333333333335em);
}

}

@media (min-width: 1200px) {
[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 3.3333333333333335em);
}

[id="s-1220c929-1d66-445e-aa53-48059d37b3f3"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 3.3333333333333335em);
}

}

#s-d3f366ac-8c5c-42a6-a465-72889fb672be {
  margin-top: 40px;
margin-bottom: 40px;
min-height: 50px;
}








#s-d3f366ac-8c5c-42a6-a465-72889fb672be > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d3f366ac-8c5c-42a6-a465-72889fb672be.shg-box.shg-c {
  justify-content: center;
}

#s-68aaf0dc-d80c-4665-9f2d-177876fd3b45 {
  max-width: 33%;
text-align: left;
}




  #s-68aaf0dc-d80c-4665-9f2d-177876fd3b45 img.shogun-image {
    
    width: px;
  }


#s-68aaf0dc-d80c-4665-9f2d-177876fd3b45 .shogun-image-content {
  
    align-items: center;
  
}

#s-07b4e27b-df74-48b0-b2d8-a59fa9a0fc7c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-07b4e27b-df74-48b0-b2d8-a59fa9a0fc7c .shogun-heading-component h2 {
  color: rgba(204, 70, 152, 1);
  font-weight:  700 ;
  font-family: "IBM Plex Sans";
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-314ac53d-7082-4d8c-bf68-4be1b69d237a {
  margin-top: 40px;
margin-bottom: 40px;
min-height: 50px;
}








#s-314ac53d-7082-4d8c-bf68-4be1b69d237a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-314ac53d-7082-4d8c-bf68-4be1b69d237a.shg-box.shg-c {
  justify-content: center;
}

#s-a2bc084b-f83d-400b-8336-0d1aecb19963 {
  box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2);
border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
max-width: 33%;
opacity: 1;
}




  #s-a2bc084b-f83d-400b-8336-0d1aecb19963 img.shogun-image {
    
    width: px;
  }


#s-a2bc084b-f83d-400b-8336-0d1aecb19963 .shogun-image-content {
  
    align-items: center;
  
}

#s-36360dad-ad39-4ec5-9962-d129ac95b9f8 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-36360dad-ad39-4ec5-9962-d129ac95b9f8 .shogun-heading-component h2 {
  color: rgba(70, 121, 189, 1);
  font-weight:  700 ;
  font-family: "IBM Plex Sans";
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-03e6f86e-f630-4ee7-827b-f84221779e81 {
  margin-top: 40px;
margin-bottom: 40px;
min-height: 50px;
}








#s-03e6f86e-f630-4ee7-827b-f84221779e81 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-03e6f86e-f630-4ee7-827b-f84221779e81.shg-box.shg-c {
  justify-content: center;
}

#s-8dbc986d-30ae-4ad0-af48-b5d3e3588978 {
  max-width: 33%;
text-align: left;
}




  #s-8dbc986d-30ae-4ad0-af48-b5d3e3588978 img.shogun-image {
    
    width: px;
  }


#s-8dbc986d-30ae-4ad0-af48-b5d3e3588978 .shogun-image-content {
  
    align-items: center;
  
}

#s-80f1e234-2963-4d8c-8e62-33e60e7391ae {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-80f1e234-2963-4d8c-8e62-33e60e7391ae .shogun-heading-component h2 {
  color: rgba(255, 155, 46, 1);
  font-weight:  700 ;
  font-family: "IBM Plex Sans";
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



@media (min-width: 0px) {
[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 3.3333333333333335em);
}

}

@media (min-width: 992px) {
[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 3.3333333333333335em);
}

}

@media (min-width: 1200px) {
[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 3.3333333333333335em);
}

[id="s-fb36a76b-3988-49dc-afd2-7ac6ab39bae1"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 3.3333333333333335em);
}

}

#s-783aa6c1-d16d-4892-88b6-e48a2178315b {
  margin-top: 40px;
margin-bottom: 40px;
min-height: 50px;
}








#s-783aa6c1-d16d-4892-88b6-e48a2178315b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-783aa6c1-d16d-4892-88b6-e48a2178315b.shg-box.shg-c {
  justify-content: center;
}

#s-b275746b-a76e-40c2-b9c9-f10c4feca49b {
  max-width: 33%;
text-align: left;
}




  #s-b275746b-a76e-40c2-b9c9-f10c4feca49b img.shogun-image {
    
    width: px;
  }


#s-b275746b-a76e-40c2-b9c9-f10c4feca49b .shogun-image-content {
  
    align-items: center;
  
}

#s-db76d7d2-f9fe-4794-9b57-f19ea401716d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-db76d7d2-f9fe-4794-9b57-f19ea401716d .shogun-heading-component h2 {
  color: rgba(204, 138, 70, 1);
  font-weight:  700 ;
  font-family: "IBM Plex Sans";
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-cfc40cd3-fd4e-4a08-9e13-7432bd99b2f2 {
  margin-top: 40px;
margin-bottom: 40px;
min-height: 50px;
}








#s-cfc40cd3-fd4e-4a08-9e13-7432bd99b2f2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cfc40cd3-fd4e-4a08-9e13-7432bd99b2f2.shg-box.shg-c {
  justify-content: center;
}

#s-0c3444b8-f967-4c1f-8e06-560f0d154217 {
  max-width: 33%;
text-align: left;
}




  #s-0c3444b8-f967-4c1f-8e06-560f0d154217 img.shogun-image {
    
    width: px;
  }


#s-0c3444b8-f967-4c1f-8e06-560f0d154217 .shogun-image-content {
  
    align-items: center;
  
}

#s-82e89573-295f-4dcb-af14-5997e96063c5 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-82e89573-295f-4dcb-af14-5997e96063c5 .shogun-heading-component h2 {
  color: rgba(160, 55, 72, 1);
  font-weight:  700 ;
  font-family: "IBM Plex Sans";
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-fefa524f-24a0-4188-a768-71c89fca1dc4 {
  margin-top: 40px;
margin-bottom: 40px;
min-height: 50px;
}








#s-fefa524f-24a0-4188-a768-71c89fca1dc4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fefa524f-24a0-4188-a768-71c89fca1dc4.shg-box.shg-c {
  justify-content: center;
}

#s-f1b93ef0-7055-4e98-9083-24a0d88c7cc0 {
  max-width: 33%;
text-align: left;
}




  #s-f1b93ef0-7055-4e98-9083-24a0d88c7cc0 img.shogun-image {
    
    width: px;
  }


#s-f1b93ef0-7055-4e98-9083-24a0d88c7cc0 .shogun-image-content {
  
    align-items: center;
  
}

#s-ca6ff902-6316-4fd5-b297-a40a420c83b7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-ca6ff902-6316-4fd5-b297-a40a420c83b7 .shogun-heading-component h2 {
  color: rgba(233, 101, 75, 1);
  font-weight:  700 ;
  font-family: "IBM Plex Sans";
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



@media (min-width: 0px) {
[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 3.3333333333333335em);
}

}

@media (min-width: 992px) {
[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 3.3333333333333335em);
}

}

@media (min-width: 1200px) {
[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 3.3333333333333335em);
}

[id="s-d4559093-4bb0-4130-a694-2440890a6d01"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 3.3333333333333335em);
}

}

#s-47cd8a08-b9a9-4551-aa88-1cc7ce6d0a56 {
  margin-top: 40px;
margin-bottom: 40px;
min-height: 50px;
}








#s-47cd8a08-b9a9-4551-aa88-1cc7ce6d0a56 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-47cd8a08-b9a9-4551-aa88-1cc7ce6d0a56.shg-box.shg-c {
  justify-content: center;
}

#s-c6aaafb6-a042-4811-9f16-32b2f6a288b3 {
  max-width: 33%;
text-align: left;
}




  #s-c6aaafb6-a042-4811-9f16-32b2f6a288b3 img.shogun-image {
    
    width: px;
  }


#s-c6aaafb6-a042-4811-9f16-32b2f6a288b3 .shogun-image-content {
  
    align-items: center;
  
}

#s-df7e8298-9305-4a20-b41f-6822d4ea3135 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-df7e8298-9305-4a20-b41f-6822d4ea3135 .shogun-heading-component h2 {
  color: rgba(95, 162, 152, 1);
  font-weight:  700 ;
  font-family: "IBM Plex Sans";
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-4e38d4fc-f118-40fd-b74c-d8238b450bc3 {
  margin-top: 40px;
margin-bottom: 40px;
min-height: 50px;
}








#s-4e38d4fc-f118-40fd-b74c-d8238b450bc3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4e38d4fc-f118-40fd-b74c-d8238b450bc3.shg-box.shg-c {
  justify-content: center;
}

#s-c6d8ed10-2269-4e48-9d97-cafd1963237c {
  max-width: 33%;
text-align: left;
}




  #s-c6d8ed10-2269-4e48-9d97-cafd1963237c img.shogun-image {
    
    width: px;
  }


#s-c6d8ed10-2269-4e48-9d97-cafd1963237c .shogun-image-content {
  
    align-items: center;
  
}

#s-979bca98-19dc-4662-a504-c7ad62d1828d {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-979bca98-19dc-4662-a504-c7ad62d1828d .shogun-heading-component h2 {
  color: rgba(0, 93, 204, 1);
  font-weight:  700 ;
  font-family: "IBM Plex Sans";
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-bbe307d8-8649-496f-9020-021638abcc6b {
  margin-top: 40px;
margin-bottom: 40px;
min-height: 50px;
}








#s-bbe307d8-8649-496f-9020-021638abcc6b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bbe307d8-8649-496f-9020-021638abcc6b.shg-box.shg-c {
  justify-content: center;
}

#s-1f23f054-0458-4dad-a473-b0bec304c697 {
  max-width: 33%;
text-align: left;
}




  #s-1f23f054-0458-4dad-a473-b0bec304c697 img.shogun-image {
    
    width: px;
  }


#s-1f23f054-0458-4dad-a473-b0bec304c697 .shogun-image-content {
  
    align-items: center;
  
}

#s-038e1db0-d664-4726-96c0-c4a046f5a1f1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-038e1db0-d664-4726-96c0-c4a046f5a1f1 .shogun-heading-component h2 {
  color: rgba(187, 201, 107, 1);
  font-weight:  700 ;
  font-family: "IBM Plex Sans";
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-afcc7d86-d4aa-49d6-9e4d-f9b421e51cd5 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-afcc7d86-d4aa-49d6-9e4d-f9b421e51cd5 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-afcc7d86-d4aa-49d6-9e4d-f9b421e51cd5 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-afcc7d86-d4aa-49d6-9e4d-f9b421e51cd5 {
  
}
}@media (max-width: 767px){#s-afcc7d86-d4aa-49d6-9e4d-f9b421e51cd5 {
  
}
}







#s-afcc7d86-d4aa-49d6-9e4d-f9b421e51cd5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-afcc7d86-d4aa-49d6-9e4d-f9b421e51cd5.shg-box.shg-c {
  justify-content: flex-start;
}

#s-14def166-00c8-4480-98dc-1603c8131894 {
  margin-top: 50px;
margin-bottom: 50px;
}
@media (min-width: 1200px){#s-14def166-00c8-4480-98dc-1603c8131894 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-14def166-00c8-4480-98dc-1603c8131894 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-14def166-00c8-4480-98dc-1603c8131894 {
  display: none;
}
#s-14def166-00c8-4480-98dc-1603c8131894, #wrap-s-14def166-00c8-4480-98dc-1603c8131894 { display:none !important; }}@media (max-width: 767px){#s-14def166-00c8-4480-98dc-1603c8131894 {
  display: none;
}
#s-14def166-00c8-4480-98dc-1603c8131894, #wrap-s-14def166-00c8-4480-98dc-1603c8131894 { display:none !important; }}
@media (min-width: 0px) {
[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 53.333333333333336px);
}

}

@media (min-width: 992px) {
[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 53.333333333333336px);
}

}

@media (min-width: 1200px) {
[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 53.333333333333336px);
}

[id="s-14def166-00c8-4480-98dc-1603c8131894"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 53.333333333333336px);
}

}

#s-a90d7afd-b93c-4f32-badc-0b591fe720e3 {
  background-repeat: no-repeat;
border-style: solid;
margin-bottom: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(19, 33, 60, 1);
border-radius: 8px;
min-height: 50px;
}








#s-a90d7afd-b93c-4f32-badc-0b591fe720e3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a90d7afd-b93c-4f32-badc-0b591fe720e3.shg-box.shg-c {
  justify-content: flex-start;
}

#s-64cbebf7-089e-4d3c-9de8-ac90fee14178 {
  border-style: solid;
margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(19, 33, 60, 1);
min-height: 50px;
max-width: 175px;
}








#s-64cbebf7-089e-4d3c-9de8-ac90fee14178 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-64cbebf7-089e-4d3c-9de8-ac90fee14178.shg-box.shg-c {
  justify-content: center;
}

#s-ffcc8ebd-b229-40bb-8638-831ecd00bbaf {
  border-style: solid;
margin-top: -40%;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(38, 57, 95, 1);
opacity: 1;
}




  #s-ffcc8ebd-b229-40bb-8638-831ecd00bbaf img.shogun-image {
    
    width: px;
  }


#s-ffcc8ebd-b229-40bb-8638-831ecd00bbaf .shogun-image-content {
  
    align-items: center;
  
}

#s-6588a752-a96a-4df1-b361-312b6cfa7ea6 {
  margin-top: 10px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
opacity: 1;
}
@media (min-width: 1200px){#s-6588a752-a96a-4df1-b361-312b6cfa7ea6 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6588a752-a96a-4df1-b361-312b6cfa7ea6 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-6588a752-a96a-4df1-b361-312b6cfa7ea6 {
  
}
}@media (max-width: 767px){#s-6588a752-a96a-4df1-b361-312b6cfa7ea6 {
  
}
}
#s-5bfd8eba-39b8-47d0-afac-5189aa581a33 {
  background-repeat: no-repeat;
border-style: solid;
margin-bottom: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(19, 33, 60, 1);
border-radius: 8px;
min-height: 50px;
}








#s-5bfd8eba-39b8-47d0-afac-5189aa581a33 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5bfd8eba-39b8-47d0-afac-5189aa581a33.shg-box.shg-c {
  justify-content: flex-start;
}

#s-1747a560-590d-4717-94e0-9b9f0bcdcd2a {
  border-style: solid;
margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(19, 33, 60, 1);
min-height: 50px;
max-width: 175px;
}








#s-1747a560-590d-4717-94e0-9b9f0bcdcd2a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1747a560-590d-4717-94e0-9b9f0bcdcd2a.shg-box.shg-c {
  justify-content: center;
}

#s-ada07fd4-34e2-4d24-a1be-18ba6e1de970 {
  border-style: solid;
margin-top: -40%;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(38, 57, 95, 1);
opacity: 1;
}




  #s-ada07fd4-34e2-4d24-a1be-18ba6e1de970 img.shogun-image {
    
    width: px;
  }


#s-ada07fd4-34e2-4d24-a1be-18ba6e1de970 .shogun-image-content {
  
    align-items: center;
  
}

#s-f903d8fb-f8ee-47b5-a6a7-73ce0ff0e218 {
  margin-top: 10px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
opacity: 1;
}
@media (min-width: 1200px){#s-f903d8fb-f8ee-47b5-a6a7-73ce0ff0e218 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f903d8fb-f8ee-47b5-a6a7-73ce0ff0e218 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-f903d8fb-f8ee-47b5-a6a7-73ce0ff0e218 {
  
}
}@media (max-width: 767px){#s-f903d8fb-f8ee-47b5-a6a7-73ce0ff0e218 {
  
}
}
#s-5c129692-f019-4bcb-a73d-e5d9cbf03350 {
  background-repeat: no-repeat;
border-style: solid;
margin-bottom: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(19, 33, 60, 1);
border-radius: 8px;
min-height: 50px;
}








#s-5c129692-f019-4bcb-a73d-e5d9cbf03350 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5c129692-f019-4bcb-a73d-e5d9cbf03350.shg-box.shg-c {
  justify-content: flex-start;
}

#s-3fa6be63-4c46-4c04-b305-a8d61a6abf26 {
  border-style: solid;
margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(19, 33, 60, 1);
min-height: 50px;
max-width: 175px;
}








#s-3fa6be63-4c46-4c04-b305-a8d61a6abf26 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3fa6be63-4c46-4c04-b305-a8d61a6abf26.shg-box.shg-c {
  justify-content: center;
}

#s-34737fb4-2f99-4d4d-8ddd-b65e5c48d989 {
  border-style: solid;
margin-top: -40%;
border-top-width: 3px;
border-left-width: 3px;
border-bottom-width: 3px;
border-right-width: 3px;
border-color: rgba(38, 57, 95, 1);
opacity: 1;
}




  #s-34737fb4-2f99-4d4d-8ddd-b65e5c48d989 img.shogun-image {
    
    width: px;
  }


#s-34737fb4-2f99-4d4d-8ddd-b65e5c48d989 .shogun-image-content {
  
    align-items: center;
  
}

#s-00a13567-4446-4da3-8046-610b2fcbfd57 {
  margin-top: 10px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
opacity: 1;
}
@media (min-width: 1200px){#s-00a13567-4446-4da3-8046-610b2fcbfd57 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-00a13567-4446-4da3-8046-610b2fcbfd57 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-00a13567-4446-4da3-8046-610b2fcbfd57 {
  
}
}@media (max-width: 767px){#s-00a13567-4446-4da3-8046-610b2fcbfd57 {
  
}
}
#s-95cc7b0e-a3c1-4191-a0d8-c6df5dc5e400 {
  margin-top: 40px;
padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-95cc7b0e-a3c1-4191-a0d8-c6df5dc5e400 {
  display: none;
}
#s-95cc7b0e-a3c1-4191-a0d8-c6df5dc5e400, #wrap-s-95cc7b0e-a3c1-4191-a0d8-c6df5dc5e400 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-95cc7b0e-a3c1-4191-a0d8-c6df5dc5e400 {
  display: none;
}
#s-95cc7b0e-a3c1-4191-a0d8-c6df5dc5e400, #wrap-s-95cc7b0e-a3c1-4191-a0d8-c6df5dc5e400 { display:none !important; }}
#s-95cc7b0e-a3c1-4191-a0d8-c6df5dc5e400 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-95cc7b0e-a3c1-4191-a0d8-c6df5dc5e400 .shg-sld-nav-button.shg-sld-left,
#s-95cc7b0e-a3c1-4191-a0d8-c6df5dc5e400 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-457134b0-3e9d-4408-8e90-3048d8e1d612 {
  background-repeat: no-repeat;
border-style: solid;
margin-bottom: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(19, 33, 60, 1);
border-radius: 8px;
min-height: 50px;
}








#s-457134b0-3e9d-4408-8e90-3048d8e1d612 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-457134b0-3e9d-4408-8e90-3048d8e1d612.shg-box.shg-c {
  justify-content: flex-start;
}

#s-899512ac-881f-44a7-9402-f52dd86e358c {
  border-style: solid;
margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(19, 33, 60, 1);
min-height: 50px;
max-width: 175px;
}








#s-899512ac-881f-44a7-9402-f52dd86e358c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-899512ac-881f-44a7-9402-f52dd86e358c.shg-box.shg-c {
  justify-content: center;
}

#s-9215c9a5-1795-4514-9fbf-62371cc1a35a {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-e8838f6f-5549-45b0-8295-cbc2f8a60218 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}




  #s-e8838f6f-5549-45b0-8295-cbc2f8a60218 img.shogun-image {
    
    width: px;
  }


#s-e8838f6f-5549-45b0-8295-cbc2f8a60218 .shogun-image-content {
  
    align-items: center;
  
}

#s-b3227d75-0e13-442a-a5e3-c711b96e7bcb {
  margin-top: 10px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
opacity: 1;
}
@media (min-width: 1200px){#s-b3227d75-0e13-442a-a5e3-c711b96e7bcb {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b3227d75-0e13-442a-a5e3-c711b96e7bcb {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-b3227d75-0e13-442a-a5e3-c711b96e7bcb {
  
}
}@media (max-width: 767px){#s-b3227d75-0e13-442a-a5e3-c711b96e7bcb {
  
}
}
#s-98bcd3a3-b70d-455d-ae33-c1c3e955def3 {
  background-repeat: no-repeat;
border-style: solid;
margin-bottom: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(19, 33, 60, 1);
border-radius: 8px;
min-height: 50px;
}








#s-98bcd3a3-b70d-455d-ae33-c1c3e955def3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-98bcd3a3-b70d-455d-ae33-c1c3e955def3.shg-box.shg-c {
  justify-content: flex-start;
}

#s-bdef730f-bdb8-48d9-a6c3-a2ceb0706201 {
  border-style: solid;
margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(19, 33, 60, 1);
min-height: 50px;
max-width: 175px;
}








#s-bdef730f-bdb8-48d9-a6c3-a2ceb0706201 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bdef730f-bdb8-48d9-a6c3-a2ceb0706201.shg-box.shg-c {
  justify-content: center;
}

#s-54fbb7cc-f136-4306-a88e-f898a28f9327 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-c99961f3-2c58-41b1-b7a1-f8a427d03b3b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}




  #s-c99961f3-2c58-41b1-b7a1-f8a427d03b3b img.shogun-image {
    
    width: px;
  }


#s-c99961f3-2c58-41b1-b7a1-f8a427d03b3b .shogun-image-content {
  
    align-items: center;
  
}

#s-5417f54c-df8e-46f7-8054-7df65f10b8d9 {
  margin-left: auto;
margin-right: auto;
max-width: 200px;
text-align: center;
}




  #s-5417f54c-df8e-46f7-8054-7df65f10b8d9 img.shogun-image {
    
    width: px;
  }


#s-5417f54c-df8e-46f7-8054-7df65f10b8d9 .shogun-image-content {
  
    align-items: center;
  
}

#s-80823a63-22e9-47bd-8cbb-67c521f27faa {
  margin-top: 10px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
opacity: 1;
}
@media (min-width: 1200px){#s-80823a63-22e9-47bd-8cbb-67c521f27faa {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-80823a63-22e9-47bd-8cbb-67c521f27faa {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-80823a63-22e9-47bd-8cbb-67c521f27faa {
  
}
}@media (max-width: 767px){#s-80823a63-22e9-47bd-8cbb-67c521f27faa {
  
}
}
#s-99e16e3a-ab79-4bde-86f1-c18aa6d07d68 {
  background-repeat: no-repeat;
border-style: solid;
margin-bottom: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(19, 33, 60, 1);
border-radius: 8px;
min-height: 50px;
}








#s-99e16e3a-ab79-4bde-86f1-c18aa6d07d68 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-99e16e3a-ab79-4bde-86f1-c18aa6d07d68.shg-box.shg-c {
  justify-content: flex-start;
}

#s-c24cf9a9-9bca-41cc-abf9-7fd7c7786c83 {
  border-style: solid;
margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(19, 33, 60, 1);
min-height: 50px;
max-width: 175px;
}








#s-c24cf9a9-9bca-41cc-abf9-7fd7c7786c83 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c24cf9a9-9bca-41cc-abf9-7fd7c7786c83.shg-box.shg-c {
  justify-content: center;
}

#s-67a1444f-345e-4db1-95bc-5a08954560c5 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-363266fd-0420-4490-9bd0-5f85d5238f42 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}




  #s-363266fd-0420-4490-9bd0-5f85d5238f42 img.shogun-image {
    
    width: px;
  }


#s-363266fd-0420-4490-9bd0-5f85d5238f42 .shogun-image-content {
  
    align-items: center;
  
}

#s-5e23094f-9763-4b1a-935e-09fbf5c0d006 {
  max-width: 700px;
}

#s-e87ba8e1-4393-45cf-8ac8-bd872ac7202c {
  margin-top: 10px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
opacity: 1;
}
@media (min-width: 1200px){#s-e87ba8e1-4393-45cf-8ac8-bd872ac7202c {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e87ba8e1-4393-45cf-8ac8-bd872ac7202c {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-e87ba8e1-4393-45cf-8ac8-bd872ac7202c {
  
}
}@media (max-width: 767px){#s-e87ba8e1-4393-45cf-8ac8-bd872ac7202c {
  
}
}
                /*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/:root{--animate-duration:1s;--animate-delay:1s;--animate-repeat:1}.animate__animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-duration:var(--animate-duration);animation-duration:var(--animate-duration);-webkit-animation-fill-mode:both;animation-fill-mode:both}.animate__animated.animate__infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animate__animated.animate__repeat-1{-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-iteration-count:var(--animate-repeat);animation-iteration-count:var(--animate-repeat)}.animate__animated.animate__repeat-2{-webkit-animation-iteration-count:2;animation-iteration-count:2;-webkit-animation-iteration-count:calc(var(--animate-repeat)*2);animation-iteration-count:calc(var(--animate-repeat)*2)}.animate__animated.animate__repeat-3{-webkit-animation-iteration-count:3;animation-iteration-count:3;-webkit-animation-iteration-count:calc(var(--animate-repeat)*3);animation-iteration-count:calc(var(--animate-repeat)*3)}.animate__animated.animate__delay-1s{-webkit-animation-delay:1s;animation-delay:1s;-webkit-animation-delay:var(--animate-delay);animation-delay:var(--animate-delay)}.animate__animated.animate__delay-2s{-webkit-animation-delay:2s;animation-delay:2s;-webkit-animation-delay:calc(var(--animate-delay)*2);animation-delay:calc(var(--animate-delay)*2)}.animate__animated.animate__delay-3s{-webkit-animation-delay:3s;animation-delay:3s;-webkit-animation-delay:calc(var(--animate-delay)*3);animation-delay:calc(var(--animate-delay)*3)}.animate__animated.animate__delay-4s{-webkit-animation-delay:4s;animation-delay:4s;-webkit-animation-delay:calc(var(--animate-delay)*4);animation-delay:calc(var(--animate-delay)*4)}.animate__animated.animate__delay-5s{-webkit-animation-delay:5s;animation-delay:5s;-webkit-animation-delay:calc(var(--animate-delay)*5);animation-delay:calc(var(--animate-delay)*5)}.animate__animated.animate__faster{-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-duration:calc(var(--animate-duration)/2);animation-duration:calc(var(--animate-duration)/2)}.animate__animated.animate__fast{-webkit-animation-duration:.8s;animation-duration:.8s;-webkit-animation-duration:calc(var(--animate-duration)*0.8);animation-duration:calc(var(--animate-duration)*0.8)}.animate__animated.animate__slow{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-duration:calc(var(--animate-duration)*2);animation-duration:calc(var(--animate-duration)*2)}.animate__animated.animate__slower{-webkit-animation-duration:3s;animation-duration:3s;-webkit-animation-duration:calc(var(--animate-duration)*3);animation-duration:calc(var(--animate-duration)*3)}@media (prefers-reduced-motion: reduce), print{.animate__animated{-webkit-animation-duration:1ms !important;animation-duration:1ms !important;transition-duration:1ms !important;-webkit-animation-iteration-count:1 !important;animation-iteration-count:1 !important}.animate__animated[class*=Out]{opacity:0}}@-webkit-keyframes bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);transform:translate3d(0, -30px, 0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);transform:translate3d(0, -15px, 0) scaleY(1.05)}80%{transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);transform:translateZ(0) scaleY(0.95)}90%{transform:translate3d(0, -4px, 0) scaleY(1.02)}}@keyframes bounce{0%,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);transform:translateZ(0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);transform:translate3d(0, -30px, 0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06);transform:translate3d(0, -15px, 0) scaleY(1.05)}80%{transition-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);transform:translateZ(0) scaleY(0.95)}90%{transform:translate3d(0, -4px, 0) scaleY(1.02)}}.animate__bounce{-webkit-animation-name:bounce;animation-name:bounce;transform-origin:center bottom}@-webkit-keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{0%,50%,to{opacity:1}25%,75%{opacity:0}}.animate__flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{0%{transform:scaleX(1)}50%{transform:scale3d(1.05, 1.05, 1.05)}to{transform:scaleX(1)}}@keyframes pulse{0%{transform:scaleX(1)}50%{transform:scale3d(1.05, 1.05, 1.05)}to{transform:scaleX(1)}}.animate__pulse{-webkit-animation-name:pulse;animation-name:pulse;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes rubberBand{0%{transform:scaleX(1)}30%{transform:scale3d(1.25, 0.75, 1)}40%{transform:scale3d(0.75, 1.25, 1)}50%{transform:scale3d(1.15, 0.85, 1)}65%{transform:scale3d(0.95, 1.05, 1)}75%{transform:scale3d(1.05, 0.95, 1)}to{transform:scaleX(1)}}@keyframes rubberBand{0%{transform:scaleX(1)}30%{transform:scale3d(1.25, 0.75, 1)}40%{transform:scale3d(0.75, 1.25, 1)}50%{transform:scale3d(1.15, 0.85, 1)}65%{transform:scale3d(0.95, 1.05, 1)}75%{transform:scale3d(1.05, 0.95, 1)}to{transform:scaleX(1)}}.animate__rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shakeX{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(-10px, 0, 0)}20%,40%,60%,80%{transform:translate3d(10px, 0, 0)}}@keyframes shakeX{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(-10px, 0, 0)}20%,40%,60%,80%{transform:translate3d(10px, 0, 0)}}.animate__shakeX{-webkit-animation-name:shakeX;animation-name:shakeX}@-webkit-keyframes shakeY{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(0, -10px, 0)}20%,40%,60%,80%{transform:translate3d(0, 10px, 0)}}@keyframes shakeY{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(0, -10px, 0)}20%,40%,60%,80%{transform:translate3d(0, 10px, 0)}}.animate__shakeY{-webkit-animation-name:shakeY;animation-name:shakeY}@-webkit-keyframes headShake{0%{transform:translateX(0)}6.5%{transform:translateX(-6px) rotateY(-9deg)}18.5%{transform:translateX(5px) rotateY(7deg)}31.5%{transform:translateX(-3px) rotateY(-5deg)}43.5%{transform:translateX(2px) rotateY(3deg)}50%{transform:translateX(0)}}@keyframes headShake{0%{transform:translateX(0)}6.5%{transform:translateX(-6px) rotateY(-9deg)}18.5%{transform:translateX(5px) rotateY(7deg)}31.5%{transform:translateX(-3px) rotateY(-5deg)}43.5%{transform:translateX(2px) rotateY(3deg)}50%{transform:translateX(0)}}.animate__headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}@-webkit-keyframes swing{20%{transform:rotate(15deg)}40%{transform:rotate(-10deg)}60%{transform:rotate(5deg)}80%{transform:rotate(-5deg)}to{transform:rotate(0deg)}}@keyframes swing{20%{transform:rotate(15deg)}40%{transform:rotate(-10deg)}60%{transform:rotate(5deg)}80%{transform:rotate(-5deg)}to{transform:rotate(0deg)}}.animate__swing{transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{0%{transform:scaleX(1)}10%,20%{transform:scale3d(0.9, 0.9, 0.9) rotate(-3deg)}30%,50%,70%,90%{transform:scale3d(1.1, 1.1, 1.1) rotate(3deg)}40%,60%,80%{transform:scale3d(1.1, 1.1, 1.1) rotate(-3deg)}to{transform:scaleX(1)}}@keyframes tada{0%{transform:scaleX(1)}10%,20%{transform:scale3d(0.9, 0.9, 0.9) rotate(-3deg)}30%,50%,70%,90%{transform:scale3d(1.1, 1.1, 1.1) rotate(3deg)}40%,60%,80%{transform:scale3d(1.1, 1.1, 1.1) rotate(-3deg)}to{transform:scaleX(1)}}.animate__tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{0%{transform:translateZ(0)}15%{transform:translate3d(-25%, 0, 0) rotate(-5deg)}30%{transform:translate3d(20%, 0, 0) rotate(3deg)}45%{transform:translate3d(-15%, 0, 0) rotate(-3deg)}60%{transform:translate3d(10%, 0, 0) rotate(2deg)}75%{transform:translate3d(-5%, 0, 0) rotate(-1deg)}to{transform:translateZ(0)}}@keyframes wobble{0%{transform:translateZ(0)}15%{transform:translate3d(-25%, 0, 0) rotate(-5deg)}30%{transform:translate3d(20%, 0, 0) rotate(3deg)}45%{transform:translate3d(-15%, 0, 0) rotate(-3deg)}60%{transform:translate3d(10%, 0, 0) rotate(2deg)}75%{transform:translate3d(-5%, 0, 0) rotate(-1deg)}to{transform:translateZ(0)}}.animate__wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{0%,11.1%,to{transform:translateZ(0)}22.2%{transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{transform:skewX(6.25deg) skewY(6.25deg)}44.4%{transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{transform:skewX(-0.78125deg) skewY(-0.78125deg)}77.7%{transform:skewX(0.390625deg) skewY(0.390625deg)}88.8%{transform:skewX(-0.1953125deg) skewY(-0.1953125deg)}}@keyframes jello{0%,11.1%,to{transform:translateZ(0)}22.2%{transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{transform:skewX(6.25deg) skewY(6.25deg)}44.4%{transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{transform:skewX(-0.78125deg) skewY(-0.78125deg)}77.7%{transform:skewX(0.390625deg) skewY(0.390625deg)}88.8%{transform:skewX(-0.1953125deg) skewY(-0.1953125deg)}}.animate__jello{-webkit-animation-name:jello;animation-name:jello;transform-origin:center}@-webkit-keyframes heartBeat{0%{transform:scale(1)}14%{transform:scale(1.3)}28%{transform:scale(1)}42%{transform:scale(1.3)}70%{transform:scale(1)}}@keyframes heartBeat{0%{transform:scale(1)}14%{transform:scale(1.3)}28%{transform:scale(1)}42%{transform:scale(1.3)}70%{transform:scale(1)}}.animate__heartBeat{-webkit-animation-name:heartBeat;animation-name:heartBeat;-webkit-animation-duration:1.3s;animation-duration:1.3s;-webkit-animation-duration:calc(var(--animate-duration)*1.3);animation-duration:calc(var(--animate-duration)*1.3);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes backInDown{0%{transform:translateY(-1200px) scale(0.7);opacity:.7}80%{transform:translateY(0) scale(0.7);opacity:.7}to{transform:scale(1);opacity:1}}@keyframes backInDown{0%{transform:translateY(-1200px) scale(0.7);opacity:.7}80%{transform:translateY(0) scale(0.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInDown{-webkit-animation-name:backInDown;animation-name:backInDown}@-webkit-keyframes backInLeft{0%{transform:translateX(-2000px) scale(0.7);opacity:.7}80%{transform:translateX(0) scale(0.7);opacity:.7}to{transform:scale(1);opacity:1}}@keyframes backInLeft{0%{transform:translateX(-2000px) scale(0.7);opacity:.7}80%{transform:translateX(0) scale(0.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInLeft{-webkit-animation-name:backInLeft;animation-name:backInLeft}@-webkit-keyframes backInRight{0%{transform:translateX(2000px) scale(0.7);opacity:.7}80%{transform:translateX(0) scale(0.7);opacity:.7}to{transform:scale(1);opacity:1}}@keyframes backInRight{0%{transform:translateX(2000px) scale(0.7);opacity:.7}80%{transform:translateX(0) scale(0.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInRight{-webkit-animation-name:backInRight;animation-name:backInRight}@-webkit-keyframes backInUp{0%{transform:translateY(1200px) scale(0.7);opacity:.7}80%{transform:translateY(0) scale(0.7);opacity:.7}to{transform:scale(1);opacity:1}}@keyframes backInUp{0%{transform:translateY(1200px) scale(0.7);opacity:.7}80%{transform:translateY(0) scale(0.7);opacity:.7}to{transform:scale(1);opacity:1}}.animate__backInUp{-webkit-animation-name:backInUp;animation-name:backInUp}@-webkit-keyframes backOutDown{0%{transform:scale(1);opacity:1}20%{transform:translateY(0) scale(0.7);opacity:.7}to{transform:translateY(700px) scale(0.7);opacity:.7}}@keyframes backOutDown{0%{transform:scale(1);opacity:1}20%{transform:translateY(0) scale(0.7);opacity:.7}to{transform:translateY(700px) scale(0.7);opacity:.7}}.animate__backOutDown{-webkit-animation-name:backOutDown;animation-name:backOutDown}@-webkit-keyframes backOutLeft{0%{transform:scale(1);opacity:1}20%{transform:translateX(0) scale(0.7);opacity:.7}to{transform:translateX(-2000px) scale(0.7);opacity:.7}}@keyframes backOutLeft{0%{transform:scale(1);opacity:1}20%{transform:translateX(0) scale(0.7);opacity:.7}to{transform:translateX(-2000px) scale(0.7);opacity:.7}}.animate__backOutLeft{-webkit-animation-name:backOutLeft;animation-name:backOutLeft}@-webkit-keyframes backOutRight{0%{transform:scale(1);opacity:1}20%{transform:translateX(0) scale(0.7);opacity:.7}to{transform:translateX(2000px) scale(0.7);opacity:.7}}@keyframes backOutRight{0%{transform:scale(1);opacity:1}20%{transform:translateX(0) scale(0.7);opacity:.7}to{transform:translateX(2000px) scale(0.7);opacity:.7}}.animate__backOutRight{-webkit-animation-name:backOutRight;animation-name:backOutRight}@-webkit-keyframes backOutUp{0%{transform:scale(1);opacity:1}20%{transform:translateY(0) scale(0.7);opacity:.7}to{transform:translateY(-700px) scale(0.7);opacity:.7}}@keyframes backOutUp{0%{transform:scale(1);opacity:1}20%{transform:translateY(0) scale(0.7);opacity:.7}to{transform:translateY(-700px) scale(0.7);opacity:.7}}.animate__backOutUp{-webkit-animation-name:backOutUp;animation-name:backOutUp}@-webkit-keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}20%{transform:scale3d(1.1, 1.1, 1.1)}40%{transform:scale3d(0.9, 0.9, 0.9)}60%{opacity:1;transform:scale3d(1.03, 1.03, 1.03)}80%{transform:scale3d(0.97, 0.97, 0.97)}to{opacity:1;transform:scaleX(1)}}@keyframes bounceIn{0%,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}20%{transform:scale3d(1.1, 1.1, 1.1)}40%{transform:scale3d(0.9, 0.9, 0.9)}60%{opacity:1;transform:scale3d(1.03, 1.03, 1.03)}80%{transform:scale3d(0.97, 0.97, 0.97)}to{opacity:1;transform:scaleX(1)}}.animate__bounceIn{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:translate3d(0, -3000px, 0) scaleY(3)}60%{opacity:1;transform:translate3d(0, 25px, 0) scaleY(0.9)}75%{transform:translate3d(0, -10px, 0) scaleY(0.95)}90%{transform:translate3d(0, 5px, 0) scaleY(0.985)}to{transform:translateZ(0)}}@keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:translate3d(0, -3000px, 0) scaleY(3)}60%{opacity:1;transform:translate3d(0, 25px, 0) scaleY(0.9)}75%{transform:translate3d(0, -10px, 0) scaleY(0.95)}90%{transform:translate3d(0, 5px, 0) scaleY(0.985)}to{transform:translateZ(0)}}.animate__bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:translate3d(-3000px, 0, 0) scaleX(3)}60%{opacity:1;transform:translate3d(25px, 0, 0) scaleX(1)}75%{transform:translate3d(-10px, 0, 0) scaleX(0.98)}90%{transform:translate3d(5px, 0, 0) scaleX(0.995)}to{transform:translateZ(0)}}@keyframes bounceInLeft{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:translate3d(-3000px, 0, 0) scaleX(3)}60%{opacity:1;transform:translate3d(25px, 0, 0) scaleX(1)}75%{transform:translate3d(-10px, 0, 0) scaleX(0.98)}90%{transform:translate3d(5px, 0, 0) scaleX(0.995)}to{transform:translateZ(0)}}.animate__bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:translate3d(3000px, 0, 0) scaleX(3)}60%{opacity:1;transform:translate3d(-25px, 0, 0) scaleX(1)}75%{transform:translate3d(10px, 0, 0) scaleX(0.98)}90%{transform:translate3d(-5px, 0, 0) scaleX(0.995)}to{transform:translateZ(0)}}@keyframes bounceInRight{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:translate3d(3000px, 0, 0) scaleX(3)}60%{opacity:1;transform:translate3d(-25px, 0, 0) scaleX(1)}75%{transform:translate3d(10px, 0, 0) scaleX(0.98)}90%{transform:translate3d(-5px, 0, 0) scaleX(0.995)}to{transform:translateZ(0)}}.animate__bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:translate3d(0, 3000px, 0) scaleY(5)}60%{opacity:1;transform:translate3d(0, -20px, 0) scaleY(0.9)}75%{transform:translate3d(0, 10px, 0) scaleY(0.95)}90%{transform:translate3d(0, -5px, 0) scaleY(0.985)}to{transform:translateZ(0)}}@keyframes bounceInUp{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1);animation-timing-function:cubic-bezier(0.215, 0.61, 0.355, 1)}0%{opacity:0;transform:translate3d(0, 3000px, 0) scaleY(5)}60%{opacity:1;transform:translate3d(0, -20px, 0) scaleY(0.9)}75%{transform:translate3d(0, 10px, 0) scaleY(0.95)}90%{transform:translate3d(0, -5px, 0) scaleY(0.985)}to{transform:translateZ(0)}}.animate__bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{transform:scale3d(0.9, 0.9, 0.9)}50%,55%{opacity:1;transform:scale3d(1.1, 1.1, 1.1)}to{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}}@keyframes bounceOut{20%{transform:scale3d(0.9, 0.9, 0.9)}50%,55%{opacity:1;transform:scale3d(1.1, 1.1, 1.1)}to{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}}.animate__bounceOut{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{transform:translate3d(0, 10px, 0) scaleY(0.985)}40%,45%{opacity:1;transform:translate3d(0, -20px, 0) scaleY(0.9)}to{opacity:0;transform:translate3d(0, 2000px, 0) scaleY(3)}}@keyframes bounceOutDown{20%{transform:translate3d(0, 10px, 0) scaleY(0.985)}40%,45%{opacity:1;transform:translate3d(0, -20px, 0) scaleY(0.9)}to{opacity:0;transform:translate3d(0, 2000px, 0) scaleY(3)}}.animate__bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;transform:translate3d(20px, 0, 0) scaleX(0.9)}to{opacity:0;transform:translate3d(-2000px, 0, 0) scaleX(2)}}@keyframes bounceOutLeft{20%{opacity:1;transform:translate3d(20px, 0, 0) scaleX(0.9)}to{opacity:0;transform:translate3d(-2000px, 0, 0) scaleX(2)}}.animate__bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;transform:translate3d(-20px, 0, 0) scaleX(0.9)}to{opacity:0;transform:translate3d(2000px, 0, 0) scaleX(2)}}@keyframes bounceOutRight{20%{opacity:1;transform:translate3d(-20px, 0, 0) scaleX(0.9)}to{opacity:0;transform:translate3d(2000px, 0, 0) scaleX(2)}}.animate__bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{transform:translate3d(0, -10px, 0) scaleY(0.985)}40%,45%{opacity:1;transform:translate3d(0, 20px, 0) scaleY(0.9)}to{opacity:0;transform:translate3d(0, -2000px, 0) scaleY(3)}}@keyframes bounceOutUp{20%{transform:translate3d(0, -10px, 0) scaleY(0.985)}40%,45%{opacity:1;transform:translate3d(0, 20px, 0) scaleY(0.9)}to{opacity:0;transform:translate3d(0, -2000px, 0) scaleY(3)}}.animate__bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.animate__fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{0%{opacity:0;transform:translate3d(0, -100%, 0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInDown{0%{opacity:0;transform:translate3d(0, -100%, 0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{0%{opacity:0;transform:translate3d(0, -2000px, 0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInDownBig{0%{opacity:0;transform:translate3d(0, -2000px, 0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{0%{opacity:0;transform:translate3d(-100%, 0, 0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInLeft{0%{opacity:0;transform:translate3d(-100%, 0, 0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{0%{opacity:0;transform:translate3d(-2000px, 0, 0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInLeftBig{0%{opacity:0;transform:translate3d(-2000px, 0, 0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{0%{opacity:0;transform:translate3d(100%, 0, 0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInRight{0%{opacity:0;transform:translate3d(100%, 0, 0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{0%{opacity:0;transform:translate3d(2000px, 0, 0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInRightBig{0%{opacity:0;transform:translate3d(2000px, 0, 0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{0%{opacity:0;transform:translate3d(0, 100%, 0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInUp{0%{opacity:0;transform:translate3d(0, 100%, 0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{0%{opacity:0;transform:translate3d(0, 2000px, 0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInUpBig{0%{opacity:0;transform:translate3d(0, 2000px, 0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeInTopLeft{0%{opacity:0;transform:translate3d(-100%, -100%, 0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInTopLeft{0%{opacity:0;transform:translate3d(-100%, -100%, 0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInTopLeft{-webkit-animation-name:fadeInTopLeft;animation-name:fadeInTopLeft}@-webkit-keyframes fadeInTopRight{0%{opacity:0;transform:translate3d(100%, -100%, 0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInTopRight{0%{opacity:0;transform:translate3d(100%, -100%, 0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInTopRight{-webkit-animation-name:fadeInTopRight;animation-name:fadeInTopRight}@-webkit-keyframes fadeInBottomLeft{0%{opacity:0;transform:translate3d(-100%, 100%, 0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInBottomLeft{0%{opacity:0;transform:translate3d(-100%, 100%, 0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInBottomLeft{-webkit-animation-name:fadeInBottomLeft;animation-name:fadeInBottomLeft}@-webkit-keyframes fadeInBottomRight{0%{opacity:0;transform:translate3d(100%, 100%, 0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInBottomRight{0%{opacity:0;transform:translate3d(100%, 100%, 0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInBottomRight{-webkit-animation-name:fadeInBottomRight;animation-name:fadeInBottomRight}@-webkit-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.animate__fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{0%{opacity:1}to{opacity:0;transform:translate3d(0, 100%, 0)}}@keyframes fadeOutDown{0%{opacity:1}to{opacity:0;transform:translate3d(0, 100%, 0)}}.animate__fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;transform:translate3d(0, 2000px, 0)}}@keyframes fadeOutDownBig{0%{opacity:1}to{opacity:0;transform:translate3d(0, 2000px, 0)}}.animate__fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;transform:translate3d(-100%, 0, 0)}}@keyframes fadeOutLeft{0%{opacity:1}to{opacity:0;transform:translate3d(-100%, 0, 0)}}.animate__fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;transform:translate3d(-2000px, 0, 0)}}@keyframes fadeOutLeftBig{0%{opacity:1}to{opacity:0;transform:translate3d(-2000px, 0, 0)}}.animate__fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{0%{opacity:1}to{opacity:0;transform:translate3d(100%, 0, 0)}}@keyframes fadeOutRight{0%{opacity:1}to{opacity:0;transform:translate3d(100%, 0, 0)}}.animate__fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;transform:translate3d(2000px, 0, 0)}}@keyframes fadeOutRightBig{0%{opacity:1}to{opacity:0;transform:translate3d(2000px, 0, 0)}}.animate__fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{0%{opacity:1}to{opacity:0;transform:translate3d(0, -100%, 0)}}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;transform:translate3d(0, -100%, 0)}}.animate__fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;transform:translate3d(0, -2000px, 0)}}@keyframes fadeOutUpBig{0%{opacity:1}to{opacity:0;transform:translate3d(0, -2000px, 0)}}.animate__fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes fadeOutTopLeft{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(-100%, -100%, 0)}}@keyframes fadeOutTopLeft{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(-100%, -100%, 0)}}.animate__fadeOutTopLeft{-webkit-animation-name:fadeOutTopLeft;animation-name:fadeOutTopLeft}@-webkit-keyframes fadeOutTopRight{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(100%, -100%, 0)}}@keyframes fadeOutTopRight{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(100%, -100%, 0)}}.animate__fadeOutTopRight{-webkit-animation-name:fadeOutTopRight;animation-name:fadeOutTopRight}@-webkit-keyframes fadeOutBottomRight{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(100%, 100%, 0)}}@keyframes fadeOutBottomRight{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(100%, 100%, 0)}}.animate__fadeOutBottomRight{-webkit-animation-name:fadeOutBottomRight;animation-name:fadeOutBottomRight}@-webkit-keyframes fadeOutBottomLeft{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(-100%, 100%, 0)}}@keyframes fadeOutBottomLeft{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(-100%, 100%, 0)}}.animate__fadeOutBottomLeft{-webkit-animation-name:fadeOutBottomLeft;animation-name:fadeOutBottomLeft}@-webkit-keyframes flip{0%{transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{transform:perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{0%{transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{transform:perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animate__animated.animate__flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{0%{transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{transform:perspective(400px) rotateX(10deg);opacity:1}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}@keyframes flipInX{0%{transform:perspective(400px) rotateX(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateX(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{transform:perspective(400px) rotateX(10deg);opacity:1}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}.animate__flipInX{-webkit-backface-visibility:visible !important;backface-visibility:visible !important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{0%{transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{transform:perspective(400px) rotateY(10deg);opacity:1}80%{transform:perspective(400px) rotateY(-5deg)}to{transform:perspective(400px)}}@keyframes flipInY{0%{transform:perspective(400px) rotateY(90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{transform:perspective(400px) rotateY(-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{transform:perspective(400px) rotateY(10deg);opacity:1}80%{transform:perspective(400px) rotateY(-5deg)}to{transform:perspective(400px)}}.animate__flipInY{-webkit-backface-visibility:visible !important;backface-visibility:visible !important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateX(-20deg);opacity:1}to{transform:perspective(400px) rotateX(90deg);opacity:0}}@keyframes flipOutX{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateX(-20deg);opacity:1}to{transform:perspective(400px) rotateX(90deg);opacity:0}}.animate__flipOutX{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible !important;backface-visibility:visible !important}@-webkit-keyframes flipOutY{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateY(-15deg);opacity:1}to{transform:perspective(400px) rotateY(90deg);opacity:0}}@keyframes flipOutY{0%{transform:perspective(400px)}30%{transform:perspective(400px) rotateY(-15deg);opacity:1}to{transform:perspective(400px) rotateY(90deg);opacity:0}}.animate__flipOutY{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-duration:calc(var(--animate-duration)*0.75);animation-duration:calc(var(--animate-duration)*0.75);-webkit-backface-visibility:visible !important;backface-visibility:visible !important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedInRight{0%{transform:translate3d(100%, 0, 0) skewX(-30deg);opacity:0}60%{transform:skewX(20deg);opacity:1}80%{transform:skewX(-5deg)}to{transform:translateZ(0)}}@keyframes lightSpeedInRight{0%{transform:translate3d(100%, 0, 0) skewX(-30deg);opacity:0}60%{transform:skewX(20deg);opacity:1}80%{transform:skewX(-5deg)}to{transform:translateZ(0)}}.animate__lightSpeedInRight{-webkit-animation-name:lightSpeedInRight;animation-name:lightSpeedInRight;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedInLeft{0%{transform:translate3d(-100%, 0, 0) skewX(30deg);opacity:0}60%{transform:skewX(-20deg);opacity:1}80%{transform:skewX(5deg)}to{transform:translateZ(0)}}@keyframes lightSpeedInLeft{0%{transform:translate3d(-100%, 0, 0) skewX(30deg);opacity:0}60%{transform:skewX(-20deg);opacity:1}80%{transform:skewX(5deg)}to{transform:translateZ(0)}}.animate__lightSpeedInLeft{-webkit-animation-name:lightSpeedInLeft;animation-name:lightSpeedInLeft;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOutRight{0%{opacity:1}to{transform:translate3d(100%, 0, 0) skewX(30deg);opacity:0}}@keyframes lightSpeedOutRight{0%{opacity:1}to{transform:translate3d(100%, 0, 0) skewX(30deg);opacity:0}}.animate__lightSpeedOutRight{-webkit-animation-name:lightSpeedOutRight;animation-name:lightSpeedOutRight;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes lightSpeedOutLeft{0%{opacity:1}to{transform:translate3d(-100%, 0, 0) skewX(-30deg);opacity:0}}@keyframes lightSpeedOutLeft{0%{opacity:1}to{transform:translate3d(-100%, 0, 0) skewX(-30deg);opacity:0}}.animate__lightSpeedOutLeft{-webkit-animation-name:lightSpeedOutLeft;animation-name:lightSpeedOutLeft;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{0%{transform:rotate(-200deg);opacity:0}to{transform:translateZ(0);opacity:1}}@keyframes rotateIn{0%{transform:rotate(-200deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn;transform-origin:center}@-webkit-keyframes rotateInDownLeft{0%{transform:rotate(-45deg);opacity:0}to{transform:translateZ(0);opacity:1}}@keyframes rotateInDownLeft{0%{transform:rotate(-45deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft;transform-origin:left bottom}@-webkit-keyframes rotateInDownRight{0%{transform:rotate(45deg);opacity:0}to{transform:translateZ(0);opacity:1}}@keyframes rotateInDownRight{0%{transform:rotate(45deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight;transform-origin:right bottom}@-webkit-keyframes rotateInUpLeft{0%{transform:rotate(45deg);opacity:0}to{transform:translateZ(0);opacity:1}}@keyframes rotateInUpLeft{0%{transform:rotate(45deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft;transform-origin:left bottom}@-webkit-keyframes rotateInUpRight{0%{transform:rotate(-90deg);opacity:0}to{transform:translateZ(0);opacity:1}}@keyframes rotateInUpRight{0%{transform:rotate(-90deg);opacity:0}to{transform:translateZ(0);opacity:1}}.animate__rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight;transform-origin:right bottom}@-webkit-keyframes rotateOut{0%{opacity:1}to{transform:rotate(200deg);opacity:0}}@keyframes rotateOut{0%{opacity:1}to{transform:rotate(200deg);opacity:0}}.animate__rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut;transform-origin:center}@-webkit-keyframes rotateOutDownLeft{0%{opacity:1}to{transform:rotate(45deg);opacity:0}}@keyframes rotateOutDownLeft{0%{opacity:1}to{transform:rotate(45deg);opacity:0}}.animate__rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft;transform-origin:left bottom}@-webkit-keyframes rotateOutDownRight{0%{opacity:1}to{transform:rotate(-45deg);opacity:0}}@keyframes rotateOutDownRight{0%{opacity:1}to{transform:rotate(-45deg);opacity:0}}.animate__rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight;transform-origin:right bottom}@-webkit-keyframes rotateOutUpLeft{0%{opacity:1}to{transform:rotate(-45deg);opacity:0}}@keyframes rotateOutUpLeft{0%{opacity:1}to{transform:rotate(-45deg);opacity:0}}.animate__rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft;transform-origin:left bottom}@-webkit-keyframes rotateOutUpRight{0%{opacity:1}to{transform:rotate(90deg);opacity:0}}@keyframes rotateOutUpRight{0%{opacity:1}to{transform:rotate(90deg);opacity:0}}.animate__rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight;transform-origin:right bottom}@-webkit-keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{transform:rotate(80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{transform:rotate(60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{transform:translate3d(0, 700px, 0);opacity:0}}@keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{transform:rotate(80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{transform:rotate(60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{transform:translate3d(0, 700px, 0);opacity:0}}.animate__hinge{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-duration:calc(var(--animate-duration)*2);animation-duration:calc(var(--animate-duration)*2);-webkit-animation-name:hinge;animation-name:hinge;transform-origin:top left}@-webkit-keyframes jackInTheBox{0%{opacity:0;transform:scale(0.1) rotate(30deg);transform-origin:center bottom}50%{transform:rotate(-10deg)}70%{transform:rotate(3deg)}to{opacity:1;transform:scale(1)}}@keyframes jackInTheBox{0%{opacity:0;transform:scale(0.1) rotate(30deg);transform-origin:center bottom}50%{transform:rotate(-10deg)}70%{transform:rotate(3deg)}to{opacity:1;transform:scale(1)}}.animate__jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}@-webkit-keyframes rollIn{0%{opacity:0;transform:translate3d(-100%, 0, 0) rotate(-120deg)}to{opacity:1;transform:translateZ(0)}}@keyframes rollIn{0%{opacity:0;transform:translate3d(-100%, 0, 0) rotate(-120deg)}to{opacity:1;transform:translateZ(0)}}.animate__rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{0%{opacity:1}to{opacity:0;transform:translate3d(100%, 0, 0) rotate(120deg)}}@keyframes rollOut{0%{opacity:1}to{opacity:0;transform:translate3d(100%, 0, 0) rotate(120deg)}}.animate__rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{0%{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}50%{opacity:1}}@keyframes zoomIn{0%{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}50%{opacity:1}}.animate__zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{0%{opacity:0;transform:scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);-webkit-animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}60%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);-webkit-animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1);animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1)}}@keyframes zoomInDown{0%{opacity:0;transform:scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);-webkit-animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}60%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);-webkit-animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1);animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1)}}.animate__zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{0%{opacity:0;transform:scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);-webkit-animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}60%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);-webkit-animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1);animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1)}}@keyframes zoomInLeft{0%{opacity:0;transform:scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);-webkit-animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}60%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);-webkit-animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1);animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1)}}.animate__zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{0%{opacity:0;transform:scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);-webkit-animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}60%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);-webkit-animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1);animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1)}}@keyframes zoomInRight{0%{opacity:0;transform:scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);-webkit-animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}60%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);-webkit-animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1);animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1)}}.animate__zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{0%{opacity:0;transform:scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);-webkit-animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}60%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);-webkit-animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1);animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1)}}@keyframes zoomInUp{0%{opacity:0;transform:scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);-webkit-animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}60%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);-webkit-animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1);animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1)}}.animate__zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{0%{opacity:1}50%{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}to{opacity:0}}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;transform:scale3d(0.3, 0.3, 0.3)}to{opacity:0}}.animate__zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);-webkit-animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}to{opacity:0;transform:scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);-webkit-animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1);animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1)}}@keyframes zoomOutDown{40%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);-webkit-animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}to{opacity:0;transform:scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);-webkit-animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1);animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1)}}.animate__zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown;transform-origin:center bottom}@-webkit-keyframes zoomOutLeft{40%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0)}to{opacity:0;transform:scale(0.1) translate3d(-2000px, 0, 0)}}@keyframes zoomOutLeft{40%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0)}to{opacity:0;transform:scale(0.1) translate3d(-2000px, 0, 0)}}.animate__zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft;transform-origin:left center}@-webkit-keyframes zoomOutRight{40%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0)}to{opacity:0;transform:scale(0.1) translate3d(2000px, 0, 0)}}@keyframes zoomOutRight{40%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0)}to{opacity:0;transform:scale(0.1) translate3d(2000px, 0, 0)}}.animate__zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight;transform-origin:right center}@-webkit-keyframes zoomOutUp{40%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);-webkit-animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}to{opacity:0;transform:scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);-webkit-animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1);animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1)}}@keyframes zoomOutUp{40%{opacity:1;transform:scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);-webkit-animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19);animation-timing-function:cubic-bezier(0.55, 0.055, 0.675, 0.19)}to{opacity:0;transform:scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);-webkit-animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1);animation-timing-function:cubic-bezier(0.175, 0.885, 0.32, 1)}}.animate__zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp;transform-origin:center bottom}@-webkit-keyframes slideInDown{0%{transform:translate3d(0, -100%, 0);visibility:visible}to{transform:translateZ(0)}}@keyframes slideInDown{0%{transform:translate3d(0, -100%, 0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{0%{transform:translate3d(-100%, 0, 0);visibility:visible}to{transform:translateZ(0)}}@keyframes slideInLeft{0%{transform:translate3d(-100%, 0, 0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{transform:translate3d(100%, 0, 0);visibility:visible}to{transform:translateZ(0)}}@keyframes slideInRight{0%{transform:translate3d(100%, 0, 0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{0%{transform:translate3d(0, 100%, 0);visibility:visible}to{transform:translateZ(0)}}@keyframes slideInUp{0%{transform:translate3d(0, 100%, 0);visibility:visible}to{transform:translateZ(0)}}.animate__slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0, 100%, 0)}}@keyframes slideOutDown{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0, 100%, 0)}}.animate__slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(-100%, 0, 0)}}@keyframes slideOutLeft{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(-100%, 0, 0)}}.animate__slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(100%, 0, 0)}}@keyframes slideOutRight{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(100%, 0, 0)}}.animate__slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0, -100%, 0)}}@keyframes slideOutUp{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0, -100%, 0)}}.animate__slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}

/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}
.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}
/* <-- User Content Animations */
