.shg-box {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  flex-direction: column;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  /**
   * 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: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.shg-box-vertical-align-top {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.shg-box-vertical-align-center, .shg-box-vertical-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  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 {
  /*
    It's very important we don't create a new containing block for shg-box-video-wrapper
    Jarallax uses transforms + position: fixed to achieve it's parallaxing effect

    https://developer.mozilla.org/en-US/docs/Web/CSS/position

    position: fixed
    The element is removed from the normal document flow, and no space is created for the element in the page layout. 
    It is positioned relative to the initial containing block established by the viewport, 

    *
      except when one of its ancestors has a transform, perspective, or filter property set to something other than none 
      (see the CSS Transforms Spec), or the will-change property is set to transform, 
      in which case that ancestor behaves as the containing block. 
    *
  */

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

#s-cff14cc5-8386-4010-bf7c-c29bb9209a21 {
  min-height: 50px;
}








#s-cff14cc5-8386-4010-bf7c-c29bb9209a21 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cff14cc5-8386-4010-bf7c-c29bb9209a21.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

.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-43d6f036-17d0-442a-8a4e-fce1b347fb31 {
  text-align: left;
}


  #s-43d6f036-17d0-442a-8a4e-fce1b347fb31 .shogun-tabs > li > .shogun-tab-box {
    background: rgba(249, 249, 249, 1);
    border: 1px solid rgba(249, 249, 249, 1);
  }
  #s-43d6f036-17d0-442a-8a4e-fce1b347fb31 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(249, 249, 249, 1);
    border: 1px solid rgba(249, 249, 249, 1);
  }
#s-43d6f036-17d0-442a-8a4e-fce1b347fb31 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(51, 51, 51, 1);
  font-family: Asap;
  font-weight: 600;
  font-style: ;
  font-size: 22px;
}

#s-43d6f036-17d0-442a-8a4e-fce1b347fb31 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 92, 38, 1);
}

#s-43d6f036-17d0-442a-8a4e-fce1b347fb31 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(249, 249, 249, 1);
}

#s-43d6f036-17d0-442a-8a4e-fce1b347fb31 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(249, 249, 249, 1);
}

#s-d50f86d9-2003-4087-8009-af0935bcffc8 {
  margin-left: 100px;
margin-right: 100px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-d50f86d9-2003-4087-8009-af0935bcffc8 {
  margin-left: 46px;
margin-right: 46px;
}
}@media (max-width: 767px){#s-d50f86d9-2003-4087-8009-af0935bcffc8 {
  margin-left: 30px;
margin-right: 30px;
}
}







#s-d50f86d9-2003-4087-8009-af0935bcffc8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d50f86d9-2003-4087-8009-af0935bcffc8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: ;
  font-family: ;
  text-transform: none;
  font-weight: ;
  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-5648a91b-2d48-4f12-81f4-58154295c210 {
  margin-top: 10px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5648a91b-2d48-4f12-81f4-58154295c210 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}



.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;
  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-d85e2ad2-41b9-43ba-9abd-5dcc1bc1985a {
  margin-top: 5px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
}

#s-d85e2ad2-41b9-43ba-9abd-5dcc1bc1985a > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-d85e2ad2-41b9-43ba-9abd-5dcc1bc1985a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(249, 249, 249, 1);
  padding: 11px;
}

#s-d85e2ad2-41b9-43ba-9abd-5dcc1bc1985a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(51, 51, 51, 1);
}

#s-d85e2ad2-41b9-43ba-9abd-5dcc1bc1985a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-d85e2ad2-41b9-43ba-9abd-5dcc1bc1985a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(51, 51, 51, 1);
  text-align: left;
  font-family: Asap;
  font-weight: 500;
  font-style: ;
  font-size: 16px;
}

#s-d85e2ad2-41b9-43ba-9abd-5dcc1bc1985a > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
.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 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 {
  color: ;
  font-family: ;
  font-weight: ;
}

.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 ::selection,
.shg-default-text-content *::selection {
  background: #accef7;
}

.shg-default-text-content p {
  font-size: 1em;
  font-weight: ;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  color: ;
  font-family: ;
}

.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 {
  margin-block-end: 1em;
  margin-block-start: 1em;
  margin-bottom: 0;
  margin-inline-end: 0;
  margin-inline-start: 0;
  margin-top: 0;
  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-theme-text-content h1,
.shg-theme-text-content h2,
.shg-theme-text-content h3,
.shg-theme-text-content h4,
.shg-theme-text-content h5,
.shg-theme-text-content h6 {
  color: ;
  font-family: ;
  font-weight: ;
}

.shg-theme-text-content p {
  color: ;
  font-family: ;
  font-weight: ;
}

#s-5fc49958-34f6-4dfe-95b1-0a90334405a4 {
  margin-top: 30px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-5fc49958-34f6-4dfe-95b1-0a90334405a4 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-5fc49958-34f6-4dfe-95b1-0a90334405a4 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 10px;
}

#s-5fc49958-34f6-4dfe-95b1-0a90334405a4 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(51, 51, 51, 1);
}

#s-5fc49958-34f6-4dfe-95b1-0a90334405a4 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-5fc49958-34f6-4dfe-95b1-0a90334405a4 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(51, 51, 51, 1);
  text-align: left;
  font-family: Asap;
  font-weight: 600;
  font-style: ;
  font-size: 20px;
}

#s-5fc49958-34f6-4dfe-95b1-0a90334405a4 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 20px;
}
#s-628eb3df-380f-4355-906a-245d401e5c42 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-628eb3df-380f-4355-906a-245d401e5c42 .shogun-form-box label.shogun-form-label {
  display: flex;
  font-weight:  600; 
  color: #000;
  font-family: Asap;
  font-size: 17px;
  font-style: ;
  
  
  
  padding-top: 5px;
  padding-bottom: 5px;
  
  
}

#s-628eb3df-380f-4355-906a-245d401e5c42 .shogun-form-success-msg {
  visibility: hidden;
  display: flex;
  align-items: center;
  
  
  color: rgba(255, 92, 38, 1);
  
  
  
  
  justify-content: center;
}

#s-628eb3df-380f-4355-906a-245d401e5c42 .shogun-form-success-msg > svg {
  margin-right: 4px;
  stroke: rgba(255, 92, 38, 1);
}

#s-628eb3df-380f-4355-906a-245d401e5c42 .shogun-form-error-msg-container, #s-628eb3df-380f-4355-906a-245d401e5c42 .shogun-form-field-error-msg-container {
  display: none;
}

#s-628eb3df-380f-4355-906a-245d401e5c42 .shogun-form-error-msg {
  font-size: 17px;
  
  color: rgba(255, 38, 42, 1);
  
  
  
  
  
}

#s-628eb3df-380f-4355-906a-245d401e5c42 .shogun-form-field-error-msg > svg {
  margin-right: 4px;
  stroke: rgba(255, 38, 42, 1);
}

.shg-row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

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

[class*=shg-c-xs],
[class*=shg-c-sm],
[class*=shg-c-md],
[class*=shg-c-lg] {
  position: relative;
}

#s-4c750103-298e-40d7-8e56-0adad5fd4983 {
  margin-top: 10px;
margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-4c750103-298e-40d7-8e56-0adad5fd4983"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4c750103-298e-40d7-8e56-0adad5fd4983"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4c750103-298e-40d7-8e56-0adad5fd4983"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4c750103-298e-40d7-8e56-0adad5fd4983"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

.shogun-form-text-input-field {
  width: 100%;
}

.shogun-form-text-input-field:focus {
  outline: none;
}

textarea.shogun-form-text-input-field {
  resize: none;
  overflow: hidden;
  min-height: 70px !important;
}

#s-76ff5191-d26f-4d59-85ea-a7b8e5ee097a  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  
  
  color: #000;
  
  
  
  
}

#s-76ff5191-d26f-4d59-85ea-a7b8e5ee097a  .shogun-form-text-input-field::placeholder {
  
  
  color: #000;
  
  
  
  
}


#s-76ff5191-d26f-4d59-85ea-a7b8e5ee097a .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-76ff5191-d26f-4d59-85ea-a7b8e5ee097a .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


#s-34a8ea87-f4e4-4b76-b51e-e35ae4e6c9a9  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  
  
  color: #000;
  
  
  
  
}

#s-34a8ea87-f4e4-4b76-b51e-e35ae4e6c9a9  .shogun-form-text-input-field::placeholder {
  
  
  color: #000;
  
  
  
  
}


#s-34a8ea87-f4e4-4b76-b51e-e35ae4e6c9a9 .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-34a8ea87-f4e4-4b76-b51e-e35ae4e6c9a9 .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


#s-d734a960-5927-4c51-9864-765e57c3e33f  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  
  
  color: #000;
  
  
  
  
}

#s-d734a960-5927-4c51-9864-765e57c3e33f  .shogun-form-text-input-field::placeholder {
  
  
  color: #000;
  
  
  
  
}


#s-d734a960-5927-4c51-9864-765e57c3e33f .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-d734a960-5927-4c51-9864-765e57c3e33f .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


.shogun-form-box-submit {
  border: 0;
  font-size: 1em;
  line-height: 1.8;
}

.shogun-form-box-submit:focus {
  outline: none;
}

.shg-btn-wrapper.shg-align-left {
  text-align: left;
}

.shg-btn-wrapper.shg-align-center {
  text-align: center;
}

.shg-btn-wrapper.shg-align-right {
  text-align: right;
}

#s-5ce17afe-8c58-4a3b-b904-4adf0684b455 {
  border-style: solid;
padding-top: 10px;
padding-left: 25px;
padding-bottom: 10px;
padding-right: 25px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 2px;
color: #FFFFFF;
background-color: rgba(255, 92, 38, 1);
text-align: center;
cursor: pointer;
background-image: none;
hover-type: color;
letter-spacing: 1px;
font-size: 16px;
}
#s-5ce17afe-8c58-4a3b-b904-4adf0684b455:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-5ce17afe-8c58-4a3b-b904-4adf0684b455:active {background-color: #000000 !important;
text-decoration: none !important;}
#s-5ce17afe-8c58-4a3b-b904-4adf0684b455[disabled],
#s-5ce17afe-8c58-4a3b-b904-4adf0684b455[disabled]:hover,
#s-5ce17afe-8c58-4a3b-b904-4adf0684b455[disabled]:focus {
  background-color: #D7D5E2 !important;
}

#s-5ce17afe-8c58-4a3b-b904-4adf0684b455 {
  display:  inline-block ;
  width:  auto ;
}


#s-2418d0c9-70c9-4fa3-9881-4f3ff1aa6016 {
  margin-top: 0px;
margin-left: 100px;
margin-bottom: 0px;
margin-right: 100px;
min-height: 50px;
background-color: rgba(243, 243, 243, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-2418d0c9-70c9-4fa3-9881-4f3ff1aa6016 {
  margin-left: 30px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-2418d0c9-70c9-4fa3-9881-4f3ff1aa6016 {
  margin-left: 15px;
margin-right: 15px;
}
}







#s-2418d0c9-70c9-4fa3-9881-4f3ff1aa6016 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2418d0c9-70c9-4fa3-9881-4f3ff1aa6016.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1bfa5ca4-14cb-4ee7-ab45-648e2690ddcd {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 30px;
margin-right: 0px;
min-height: 50px;
}








#s-1bfa5ca4-14cb-4ee7-ab45-648e2690ddcd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1bfa5ca4-14cb-4ee7-ab45-648e2690ddcd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-17e37bdc-7e6d-415b-bfb9-d17f6e9dd479 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-17e37bdc-7e6d-415b-bfb9-d17f6e9dd479 {
  margin-top: 10px;
margin-bottom: 0px;
}
}
#s-17e37bdc-7e6d-415b-bfb9-d17f6e9dd479 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


@media (max-width: 767px){#s-17e37bdc-7e6d-415b-bfb9-d17f6e9dd479 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}


}
@media (max-width: 767px){#s-f85a07cf-73c4-434c-b4fd-e6d18bd21bd8 {
  margin-left: 5px;
margin-right: 5px;
}
}
@media (min-width: 0px) {
[id="s-f85a07cf-73c4-434c-b4fd-e6d18bd21bd8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f85a07cf-73c4-434c-b4fd-e6d18bd21bd8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f85a07cf-73c4-434c-b4fd-e6d18bd21bd8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f85a07cf-73c4-434c-b4fd-e6d18bd21bd8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-4368ca12-7d86-4cea-ac96-d5c904f8616e {
  margin-top: 10px;
margin-left: 50px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-4368ca12-7d86-4cea-ac96-d5c904f8616e {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-4368ca12-7d86-4cea-ac96-d5c904f8616e {
  margin-left: 30px;
}
}
#s-4368ca12-7d86-4cea-ac96-d5c904f8616e .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (max-width: 767px){#s-4368ca12-7d86-4cea-ac96-d5c904f8616e .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


}
#s-0c177ec1-912a-4f8b-b60f-030abd088deb {
  margin-left: 5%;
margin-bottom: 10px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-0c177ec1-912a-4f8b-b60f-030abd088deb {
  margin-left: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0c177ec1-912a-4f8b-b60f-030abd088deb {
  margin-left: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0c177ec1-912a-4f8b-b60f-030abd088deb {
  
}
}@media (max-width: 767px){#s-0c177ec1-912a-4f8b-b60f-030abd088deb {
  display: none;
}
#s-0c177ec1-912a-4f8b-b60f-030abd088deb, #wrap-s-0c177ec1-912a-4f8b-b60f-030abd088deb { display: none !important; }}
@media (min-width: 0px) {
[id="s-0c177ec1-912a-4f8b-b60f-030abd088deb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0c177ec1-912a-4f8b-b60f-030abd088deb"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-0c177ec1-912a-4f8b-b60f-030abd088deb"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-0c177ec1-912a-4f8b-b60f-030abd088deb"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-0c177ec1-912a-4f8b-b60f-030abd088deb"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-0c177ec1-912a-4f8b-b60f-030abd088deb"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-0c177ec1-912a-4f8b-b60f-030abd088deb"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-fa5db875-0f05-4683-a073-19c14aa760a7 {
  margin-left: 30px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-fa5db875-0f05-4683-a073-19c14aa760a7 {
  display: none;
}
#s-fa5db875-0f05-4683-a073-19c14aa760a7, #wrap-s-fa5db875-0f05-4683-a073-19c14aa760a7 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fa5db875-0f05-4683-a073-19c14aa760a7 {
  display: none;
}
#s-fa5db875-0f05-4683-a073-19c14aa760a7, #wrap-s-fa5db875-0f05-4683-a073-19c14aa760a7 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-fa5db875-0f05-4683-a073-19c14aa760a7 {
  display: none;
}
#s-fa5db875-0f05-4683-a073-19c14aa760a7, #wrap-s-fa5db875-0f05-4683-a073-19c14aa760a7 { display: none !important; }}
.shg-hr-wrapper {
  padding: 30px 0;
}

.shg-hr-wrapper hr {
  margin: 0;
  border: 0;
  width: 100%;
}

#s-3fe95652-1fdc-4b8f-99f3-350eed4b0e01 {
  margin-left: 50px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-3fe95652-1fdc-4b8f-99f3-350eed4b0e01 {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-3fe95652-1fdc-4b8f-99f3-350eed4b0e01 {
  margin-left: 30px;
margin-right: 35px;
}
}
#s-3fe95652-1fdc-4b8f-99f3-350eed4b0e01 hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-77e455f0-d39d-4fbf-8da9-08869968d206 {
  margin-top: 10px;
margin-left: 50px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-77e455f0-d39d-4fbf-8da9-08869968d206 {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-77e455f0-d39d-4fbf-8da9-08869968d206 {
  margin-left: 30px;
}
}
#s-77e455f0-d39d-4fbf-8da9-08869968d206 .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (max-width: 767px){#s-77e455f0-d39d-4fbf-8da9-08869968d206 .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-599bc016-b003-4636-b827-a40d090416c7 {
  margin-left: 5%;
margin-bottom: 10px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-599bc016-b003-4636-b827-a40d090416c7 {
  margin-left: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-599bc016-b003-4636-b827-a40d090416c7 {
  margin-left: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-599bc016-b003-4636-b827-a40d090416c7 {
  
}
}@media (max-width: 767px){#s-599bc016-b003-4636-b827-a40d090416c7 {
  display: none;
}
#s-599bc016-b003-4636-b827-a40d090416c7, #wrap-s-599bc016-b003-4636-b827-a40d090416c7 { display: none !important; }}
@media (min-width: 0px) {
[id="s-599bc016-b003-4636-b827-a40d090416c7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-599bc016-b003-4636-b827-a40d090416c7"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-599bc016-b003-4636-b827-a40d090416c7"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-599bc016-b003-4636-b827-a40d090416c7"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-599bc016-b003-4636-b827-a40d090416c7"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-599bc016-b003-4636-b827-a40d090416c7"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-599bc016-b003-4636-b827-a40d090416c7"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-7c7fa5cc-6c08-47ed-a767-76150e5705bf {
  margin-left: 30px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-7c7fa5cc-6c08-47ed-a767-76150e5705bf {
  display: none;
}
#s-7c7fa5cc-6c08-47ed-a767-76150e5705bf, #wrap-s-7c7fa5cc-6c08-47ed-a767-76150e5705bf { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7c7fa5cc-6c08-47ed-a767-76150e5705bf {
  display: none;
}
#s-7c7fa5cc-6c08-47ed-a767-76150e5705bf, #wrap-s-7c7fa5cc-6c08-47ed-a767-76150e5705bf { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7c7fa5cc-6c08-47ed-a767-76150e5705bf {
  display: none;
}
#s-7c7fa5cc-6c08-47ed-a767-76150e5705bf, #wrap-s-7c7fa5cc-6c08-47ed-a767-76150e5705bf { display: none !important; }}
#s-ef20862a-e497-49f7-ba6b-a648d0f08e7d {
  margin-left: 50px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}
@media (min-width: 1200px){#s-ef20862a-e497-49f7-ba6b-a648d0f08e7d {
  display: none;
}
#s-ef20862a-e497-49f7-ba6b-a648d0f08e7d, #wrap-s-ef20862a-e497-49f7-ba6b-a648d0f08e7d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ef20862a-e497-49f7-ba6b-a648d0f08e7d {
  display: none;
}
#s-ef20862a-e497-49f7-ba6b-a648d0f08e7d, #wrap-s-ef20862a-e497-49f7-ba6b-a648d0f08e7d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ef20862a-e497-49f7-ba6b-a648d0f08e7d {
  margin-left: 5%;
display: none;
}
#s-ef20862a-e497-49f7-ba6b-a648d0f08e7d, #wrap-s-ef20862a-e497-49f7-ba6b-a648d0f08e7d { display: none !important; }}@media (max-width: 767px){#s-ef20862a-e497-49f7-ba6b-a648d0f08e7d {
  margin-left: 30px;
margin-right: 35px;
}
}
#s-ef20862a-e497-49f7-ba6b-a648d0f08e7d hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-1e4fbf21-883a-4306-898c-f96233a6b826 {
  margin-top: 10px;
margin-left: 50px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-1e4fbf21-883a-4306-898c-f96233a6b826 {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-1e4fbf21-883a-4306-898c-f96233a6b826 {
  margin-left: 30px;
}
}
#s-1e4fbf21-883a-4306-898c-f96233a6b826 .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (max-width: 767px){#s-1e4fbf21-883a-4306-898c-f96233a6b826 .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-8ced5103-a4b5-4697-a058-9215b815db27 {
  margin-left: 5%;
margin-bottom: 10px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-8ced5103-a4b5-4697-a058-9215b815db27 {
  margin-left: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-8ced5103-a4b5-4697-a058-9215b815db27 {
  margin-left: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-8ced5103-a4b5-4697-a058-9215b815db27 {
  display: none;
}
#s-8ced5103-a4b5-4697-a058-9215b815db27, #wrap-s-8ced5103-a4b5-4697-a058-9215b815db27 { display: none !important; }}@media (max-width: 767px){#s-8ced5103-a4b5-4697-a058-9215b815db27 {
  display: none;
}
#s-8ced5103-a4b5-4697-a058-9215b815db27, #wrap-s-8ced5103-a4b5-4697-a058-9215b815db27 { display: none !important; }}
@media (min-width: 0px) {
[id="s-8ced5103-a4b5-4697-a058-9215b815db27"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8ced5103-a4b5-4697-a058-9215b815db27"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-8ced5103-a4b5-4697-a058-9215b815db27"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-8ced5103-a4b5-4697-a058-9215b815db27"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

}

#s-bb72e4a7-e9d4-4311-871a-adbd9f72dce6 {
  margin-left: 5%;
margin-bottom: 10px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-bb72e4a7-e9d4-4311-871a-adbd9f72dce6 {
  margin-left: 50px;
display: none;
}
#s-bb72e4a7-e9d4-4311-871a-adbd9f72dce6, #wrap-s-bb72e4a7-e9d4-4311-871a-adbd9f72dce6 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-bb72e4a7-e9d4-4311-871a-adbd9f72dce6 {
  margin-left: 50px;
display: none;
}
#s-bb72e4a7-e9d4-4311-871a-adbd9f72dce6, #wrap-s-bb72e4a7-e9d4-4311-871a-adbd9f72dce6 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-bb72e4a7-e9d4-4311-871a-adbd9f72dce6 {
  
}
}@media (max-width: 767px){#s-bb72e4a7-e9d4-4311-871a-adbd9f72dce6 {
  display: none;
}
#s-bb72e4a7-e9d4-4311-871a-adbd9f72dce6, #wrap-s-bb72e4a7-e9d4-4311-871a-adbd9f72dce6 { display: none !important; }}
@media (min-width: 0px) {
[id="s-bb72e4a7-e9d4-4311-871a-adbd9f72dce6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bb72e4a7-e9d4-4311-871a-adbd9f72dce6"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-bb72e4a7-e9d4-4311-871a-adbd9f72dce6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-bb72e4a7-e9d4-4311-871a-adbd9f72dce6"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-bb72e4a7-e9d4-4311-871a-adbd9f72dce6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-bb72e4a7-e9d4-4311-871a-adbd9f72dce6"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-bb72e4a7-e9d4-4311-871a-adbd9f72dce6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

}

#s-724f0612-5f15-4482-a24e-a8e4bf21f084 {
  margin-left: 30px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-724f0612-5f15-4482-a24e-a8e4bf21f084 {
  display: none;
}
#s-724f0612-5f15-4482-a24e-a8e4bf21f084, #wrap-s-724f0612-5f15-4482-a24e-a8e4bf21f084 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-724f0612-5f15-4482-a24e-a8e4bf21f084 {
  display: none;
}
#s-724f0612-5f15-4482-a24e-a8e4bf21f084, #wrap-s-724f0612-5f15-4482-a24e-a8e4bf21f084 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-724f0612-5f15-4482-a24e-a8e4bf21f084 {
  display: none;
}
#s-724f0612-5f15-4482-a24e-a8e4bf21f084, #wrap-s-724f0612-5f15-4482-a24e-a8e4bf21f084 { display: none !important; }}
#s-1b6c6cce-9663-4b18-99f0-665db2eae815 {
  margin-left: 50px;
margin-right: 50px;
padding-left: 0px;
padding-right: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-1b6c6cce-9663-4b18-99f0-665db2eae815 {
  margin-left: 5%;
margin-right: 5%;
}
}@media (max-width: 767px){#s-1b6c6cce-9663-4b18-99f0-665db2eae815 {
  margin-left: 30px;
}
}
#s-1b6c6cce-9663-4b18-99f0-665db2eae815 hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-ddaab81e-63e9-4de0-9715-d99cbb011cfb {
  margin-top: 10px;
margin-left: 50px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-ddaab81e-63e9-4de0-9715-d99cbb011cfb {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-ddaab81e-63e9-4de0-9715-d99cbb011cfb {
  margin-left: 30px;
}
}
#s-ddaab81e-63e9-4de0-9715-d99cbb011cfb .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (max-width: 767px){#s-ddaab81e-63e9-4de0-9715-d99cbb011cfb .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-0a13aee3-d6fa-4b8b-a6a7-4b8f8dad6654 {
  margin-left: 5%;
margin-bottom: 10px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-0a13aee3-d6fa-4b8b-a6a7-4b8f8dad6654 {
  margin-left: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0a13aee3-d6fa-4b8b-a6a7-4b8f8dad6654 {
  margin-left: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0a13aee3-d6fa-4b8b-a6a7-4b8f8dad6654 {
  
}
}@media (max-width: 767px){#s-0a13aee3-d6fa-4b8b-a6a7-4b8f8dad6654 {
  display: none;
}
#s-0a13aee3-d6fa-4b8b-a6a7-4b8f8dad6654, #wrap-s-0a13aee3-d6fa-4b8b-a6a7-4b8f8dad6654 { display: none !important; }}
@media (min-width: 0px) {
[id="s-0a13aee3-d6fa-4b8b-a6a7-4b8f8dad6654"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0a13aee3-d6fa-4b8b-a6a7-4b8f8dad6654"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-0a13aee3-d6fa-4b8b-a6a7-4b8f8dad6654"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-0a13aee3-d6fa-4b8b-a6a7-4b8f8dad6654"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

}

#s-0a28c66b-bc3b-40cb-8ff3-49fa643007f3 {
  margin-left: 30px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-0a28c66b-bc3b-40cb-8ff3-49fa643007f3 {
  display: none;
}
#s-0a28c66b-bc3b-40cb-8ff3-49fa643007f3, #wrap-s-0a28c66b-bc3b-40cb-8ff3-49fa643007f3 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0a28c66b-bc3b-40cb-8ff3-49fa643007f3 {
  display: none;
}
#s-0a28c66b-bc3b-40cb-8ff3-49fa643007f3, #wrap-s-0a28c66b-bc3b-40cb-8ff3-49fa643007f3 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-0a28c66b-bc3b-40cb-8ff3-49fa643007f3 {
  display: none;
}
#s-0a28c66b-bc3b-40cb-8ff3-49fa643007f3, #wrap-s-0a28c66b-bc3b-40cb-8ff3-49fa643007f3 { display: none !important; }}
#s-9676a93e-0932-40d9-8c30-52632af53ba6 {
  margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
}
@media (max-width: 767px){#s-9676a93e-0932-40d9-8c30-52632af53ba6 {
  margin-top: 0px;
margin-left: 30px;
margin-bottom: 0px;
margin-right: 35px;
}
}
#s-9676a93e-0932-40d9-8c30-52632af53ba6 hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-2f268f65-8d97-4ac7-b027-5f2794981cd4 {
  margin-top: 40px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-2f268f65-8d97-4ac7-b027-5f2794981cd4 {
  margin-left: 35px;
margin-right: 35px;
}
}
#s-2f268f65-8d97-4ac7-b027-5f2794981cd4 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


@media (max-width: 767px){#s-2f268f65-8d97-4ac7-b027-5f2794981cd4 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}


}
#s-2251971c-74d3-4d77-a9a8-730a42bd8ae6 {
  margin-bottom: 20px;
}
@media (max-width: 767px){#s-2251971c-74d3-4d77-a9a8-730a42bd8ae6 {
  margin-left: 5px;
margin-right: 5px;
}
}
@media (min-width: 0px) {
[id="s-2251971c-74d3-4d77-a9a8-730a42bd8ae6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2251971c-74d3-4d77-a9a8-730a42bd8ae6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2251971c-74d3-4d77-a9a8-730a42bd8ae6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2251971c-74d3-4d77-a9a8-730a42bd8ae6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-fd7174be-d030-4221-abbb-b5803f584b62 {
  margin-top: 10px;
margin-left: 50px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-fd7174be-d030-4221-abbb-b5803f584b62 {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-fd7174be-d030-4221-abbb-b5803f584b62 {
  margin-left: 30px;
}
}
#s-fd7174be-d030-4221-abbb-b5803f584b62 .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (max-width: 767px){#s-fd7174be-d030-4221-abbb-b5803f584b62 .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-45270837-0197-4ab9-8af3-2009065b5559 {
  margin-left: 5%;
margin-bottom: 10px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-45270837-0197-4ab9-8af3-2009065b5559 {
  margin-left: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-45270837-0197-4ab9-8af3-2009065b5559 {
  margin-left: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-45270837-0197-4ab9-8af3-2009065b5559 {
  
}
}@media (max-width: 767px){#s-45270837-0197-4ab9-8af3-2009065b5559 {
  display: none;
}
#s-45270837-0197-4ab9-8af3-2009065b5559, #wrap-s-45270837-0197-4ab9-8af3-2009065b5559 { display: none !important; }}
@media (min-width: 0px) {
[id="s-45270837-0197-4ab9-8af3-2009065b5559"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-45270837-0197-4ab9-8af3-2009065b5559"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-45270837-0197-4ab9-8af3-2009065b5559"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-45270837-0197-4ab9-8af3-2009065b5559"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-45270837-0197-4ab9-8af3-2009065b5559"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-45270837-0197-4ab9-8af3-2009065b5559"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-45270837-0197-4ab9-8af3-2009065b5559"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-c001b070-6305-4e88-a67a-ab6bbfbb7fee {
  margin-left: 30px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-c001b070-6305-4e88-a67a-ab6bbfbb7fee {
  display: none;
}
#s-c001b070-6305-4e88-a67a-ab6bbfbb7fee, #wrap-s-c001b070-6305-4e88-a67a-ab6bbfbb7fee { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c001b070-6305-4e88-a67a-ab6bbfbb7fee {
  display: none;
}
#s-c001b070-6305-4e88-a67a-ab6bbfbb7fee, #wrap-s-c001b070-6305-4e88-a67a-ab6bbfbb7fee { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c001b070-6305-4e88-a67a-ab6bbfbb7fee {
  display: none;
}
#s-c001b070-6305-4e88-a67a-ab6bbfbb7fee, #wrap-s-c001b070-6305-4e88-a67a-ab6bbfbb7fee { display: none !important; }}
#s-ecc23137-296a-40b0-9c1a-2a10b00704a9 {
  margin-left: 50px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-ecc23137-296a-40b0-9c1a-2a10b00704a9 {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-ecc23137-296a-40b0-9c1a-2a10b00704a9 {
  margin-left: 30px;
margin-right: 35px;
}
}
#s-ecc23137-296a-40b0-9c1a-2a10b00704a9 hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-709fe251-31e1-4327-ab31-2580683d1008 {
  margin-top: 10px;
margin-left: 50px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-709fe251-31e1-4327-ab31-2580683d1008 {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-709fe251-31e1-4327-ab31-2580683d1008 {
  margin-left: 30px;
}
}
#s-709fe251-31e1-4327-ab31-2580683d1008 .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-f6226539-7136-46c6-b586-5213ddc80e3b {
  margin-left: 5%;
margin-bottom: 10px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-f6226539-7136-46c6-b586-5213ddc80e3b {
  margin-left: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f6226539-7136-46c6-b586-5213ddc80e3b {
  margin-left: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f6226539-7136-46c6-b586-5213ddc80e3b {
  
}
}@media (max-width: 767px){#s-f6226539-7136-46c6-b586-5213ddc80e3b {
  display: none;
}
#s-f6226539-7136-46c6-b586-5213ddc80e3b, #wrap-s-f6226539-7136-46c6-b586-5213ddc80e3b { display: none !important; }}
@media (min-width: 0px) {
[id="s-f6226539-7136-46c6-b586-5213ddc80e3b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f6226539-7136-46c6-b586-5213ddc80e3b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-f6226539-7136-46c6-b586-5213ddc80e3b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-f6226539-7136-46c6-b586-5213ddc80e3b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-f6226539-7136-46c6-b586-5213ddc80e3b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-f6226539-7136-46c6-b586-5213ddc80e3b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-f6226539-7136-46c6-b586-5213ddc80e3b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-2b03bc8c-0cb7-4ba7-b8ae-032f16268f82 {
  margin-left: 30px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-2b03bc8c-0cb7-4ba7-b8ae-032f16268f82 {
  display: none;
}
#s-2b03bc8c-0cb7-4ba7-b8ae-032f16268f82, #wrap-s-2b03bc8c-0cb7-4ba7-b8ae-032f16268f82 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2b03bc8c-0cb7-4ba7-b8ae-032f16268f82 {
  display: none;
}
#s-2b03bc8c-0cb7-4ba7-b8ae-032f16268f82, #wrap-s-2b03bc8c-0cb7-4ba7-b8ae-032f16268f82 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2b03bc8c-0cb7-4ba7-b8ae-032f16268f82 {
  display: none;
}
#s-2b03bc8c-0cb7-4ba7-b8ae-032f16268f82, #wrap-s-2b03bc8c-0cb7-4ba7-b8ae-032f16268f82 { display: none !important; }}
#s-b8eded3d-4477-46b9-bebd-9ce6daed9d74 {
  margin-left: 50px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}
@media (min-width: 1200px){#s-b8eded3d-4477-46b9-bebd-9ce6daed9d74 {
  display: none;
}
#s-b8eded3d-4477-46b9-bebd-9ce6daed9d74, #wrap-s-b8eded3d-4477-46b9-bebd-9ce6daed9d74 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b8eded3d-4477-46b9-bebd-9ce6daed9d74 {
  display: none;
}
#s-b8eded3d-4477-46b9-bebd-9ce6daed9d74, #wrap-s-b8eded3d-4477-46b9-bebd-9ce6daed9d74 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b8eded3d-4477-46b9-bebd-9ce6daed9d74 {
  margin-left: 5%;
display: none;
}
#s-b8eded3d-4477-46b9-bebd-9ce6daed9d74, #wrap-s-b8eded3d-4477-46b9-bebd-9ce6daed9d74 { display: none !important; }}@media (max-width: 767px){#s-b8eded3d-4477-46b9-bebd-9ce6daed9d74 {
  margin-left: 30px;
margin-right: 35px;
}
}
#s-b8eded3d-4477-46b9-bebd-9ce6daed9d74 hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-5e1b2464-1117-41ab-8f68-9e048aeb1bc9 {
  margin-top: 10px;
margin-left: 50px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-5e1b2464-1117-41ab-8f68-9e048aeb1bc9 {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-5e1b2464-1117-41ab-8f68-9e048aeb1bc9 {
  margin-left: 30px;
}
}
#s-5e1b2464-1117-41ab-8f68-9e048aeb1bc9 .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (max-width: 767px){#s-5e1b2464-1117-41ab-8f68-9e048aeb1bc9 .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-d7316a08-07ec-4796-91a5-44fbfbb050bb {
  margin-left: 5%;
margin-bottom: 10px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-d7316a08-07ec-4796-91a5-44fbfbb050bb {
  margin-left: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d7316a08-07ec-4796-91a5-44fbfbb050bb {
  margin-left: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-d7316a08-07ec-4796-91a5-44fbfbb050bb {
  
}
}@media (max-width: 767px){#s-d7316a08-07ec-4796-91a5-44fbfbb050bb {
  display: none;
}
#s-d7316a08-07ec-4796-91a5-44fbfbb050bb, #wrap-s-d7316a08-07ec-4796-91a5-44fbfbb050bb { display: none !important; }}
@media (min-width: 0px) {
[id="s-d7316a08-07ec-4796-91a5-44fbfbb050bb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d7316a08-07ec-4796-91a5-44fbfbb050bb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-d7316a08-07ec-4796-91a5-44fbfbb050bb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-d7316a08-07ec-4796-91a5-44fbfbb050bb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

}

#s-535e3290-8fb9-47fe-8425-c0a727367754 {
  margin-left: 30px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-535e3290-8fb9-47fe-8425-c0a727367754 {
  display: none;
}
#s-535e3290-8fb9-47fe-8425-c0a727367754, #wrap-s-535e3290-8fb9-47fe-8425-c0a727367754 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-535e3290-8fb9-47fe-8425-c0a727367754 {
  display: none;
}
#s-535e3290-8fb9-47fe-8425-c0a727367754, #wrap-s-535e3290-8fb9-47fe-8425-c0a727367754 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-535e3290-8fb9-47fe-8425-c0a727367754 {
  display: none;
}
#s-535e3290-8fb9-47fe-8425-c0a727367754, #wrap-s-535e3290-8fb9-47fe-8425-c0a727367754 { display: none !important; }}
#s-4aff1e65-0941-4e07-8b0e-b7029f104d4a {
  margin-left: 50px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-4aff1e65-0941-4e07-8b0e-b7029f104d4a {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-4aff1e65-0941-4e07-8b0e-b7029f104d4a {
  margin-left: 30px;
margin-right: 35px;
}
}
#s-4aff1e65-0941-4e07-8b0e-b7029f104d4a hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-edf6a587-c266-405e-a123-fe850b33445f {
  margin-top: 10px;
margin-left: 50px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 1200px){#s-edf6a587-c266-405e-a123-fe850b33445f {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-edf6a587-c266-405e-a123-fe850b33445f {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-edf6a587-c266-405e-a123-fe850b33445f {
  margin-left: 30px;
display: none;
}
#s-edf6a587-c266-405e-a123-fe850b33445f, #wrap-s-edf6a587-c266-405e-a123-fe850b33445f { display: none !important; }}
#s-edf6a587-c266-405e-a123-fe850b33445f .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (max-width: 767px){#s-edf6a587-c266-405e-a123-fe850b33445f .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-f077d31e-6c61-4f9e-b4ee-738f79a5bdbc {
  margin-left: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-f077d31e-6c61-4f9e-b4ee-738f79a5bdbc {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-f077d31e-6c61-4f9e-b4ee-738f79a5bdbc {
  display: none;
}
#s-f077d31e-6c61-4f9e-b4ee-738f79a5bdbc, #wrap-s-f077d31e-6c61-4f9e-b4ee-738f79a5bdbc { display: none !important; }}
#s-60cc4a7f-b377-4a9d-b071-d4e3e15d9e84 {
  margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
}
@media (max-width: 767px){#s-60cc4a7f-b377-4a9d-b071-d4e3e15d9e84 {
  padding-left: 5%;
padding-right: 5%;
display: none;
}
#s-60cc4a7f-b377-4a9d-b071-d4e3e15d9e84, #wrap-s-60cc4a7f-b377-4a9d-b071-d4e3e15d9e84 { display: none !important; }}
#s-60cc4a7f-b377-4a9d-b071-d4e3e15d9e84 hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-5d5f188d-cc89-4a55-b321-cde145ff9780 {
  margin-top: 30px;
margin-bottom: 30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5d5f188d-cc89-4a55-b321-cde145ff9780 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


@media (max-width: 767px){#s-5d5f188d-cc89-4a55-b321-cde145ff9780 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}


}
#s-fb21f869-134d-4d8c-83cc-7ce3af127bdd {
  margin-top: 3%;
margin-left: 5%;
margin-bottom: 2%;
margin-right: 5%;
}
@media (max-width: 767px){#s-fb21f869-134d-4d8c-83cc-7ce3af127bdd {
  
}
}
@media (min-width: 0px) {
[id="s-fb21f869-134d-4d8c-83cc-7ce3af127bdd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fb21f869-134d-4d8c-83cc-7ce3af127bdd"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 992px) {
[id="s-fb21f869-134d-4d8c-83cc-7ce3af127bdd"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 1200px) {
[id="s-fb21f869-134d-4d8c-83cc-7ce3af127bdd"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (max-width: 767px){#s-18732fb1-5703-4928-872a-850b15984ce1 {
  margin-left: 5%;
}
}
@media (max-width: 767px){#s-f418c6b0-881b-455f-a5fa-c34ebab5a0eb {
  margin-top: 30px;
margin-left: 5%;
}
}
#s-0e222141-b85a-4dd6-b228-e17c1816144f {
  margin-top: 0px;
margin-left: 20px;
margin-right: 20px;
}
@media (max-width: 767px){#s-0e222141-b85a-4dd6-b228-e17c1816144f {
  padding-left: 5%;
padding-right: 5%;
}
}
#s-0e222141-b85a-4dd6-b228-e17c1816144f hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-36006e3b-f7a5-4988-bd72-74e845ab93b5 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-36006e3b-f7a5-4988-bd72-74e845ab93b5 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 27px;
  
  
  
}


@media (max-width: 767px){#s-36006e3b-f7a5-4988-bd72-74e845ab93b5 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 25px;
  
  
  
}


}
.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 {
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

.shogun-image-contain {
  font-family: "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;
}

.shogun-image.hover {
  opacity: 0;
  z-index: 200;
  position: absolute;
  left: 0;
  top: 0;
}

.shogun-image.hover:hover {
  opacity: 1;
}

#s-6ef9831e-9833-4d7a-9ca6-09f692651528 {
  text-align: center;
}







  #s-6ef9831e-9833-4d7a-9ca6-09f692651528 img.shogun-image {
    

    
    
    
  }


#s-6ef9831e-9833-4d7a-9ca6-09f692651528 .shogun-image-content {
  
    align-items: center;
  
}

#s-dd00c58b-79d2-41f8-b312-e616aca0f5b6 {
  margin-bottom: 0px;
}
@media (max-width: 767px){#s-dd00c58b-79d2-41f8-b312-e616aca0f5b6 {
  margin-left: 35px;
margin-right: 35px;
}
}
#s-01769b30-6167-4924-961f-f428db7b6fb4 {
  margin-bottom: 0px;
}
@media (max-width: 767px){#s-01769b30-6167-4924-961f-f428db7b6fb4 {
  margin-left: 35px;
margin-right: 35px;
}
}
#s-23aa543e-9c10-4a62-969f-36cf4122c73f {
  margin-bottom: 0px;
}
@media (max-width: 767px){#s-23aa543e-9c10-4a62-969f-36cf4122c73f {
  margin-left: 35px;
margin-right: 35px;
}
}
#s-4e43556f-7537-4454-b6d9-f387688a412e {
  min-height: 50px;
}








#s-4e43556f-7537-4454-b6d9-f387688a412e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4e43556f-7537-4454-b6d9-f387688a412e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f1b34b66-82dc-4525-a5d2-352d9910387a {
  margin-left: 100px;
margin-right: 100px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-f1b34b66-82dc-4525-a5d2-352d9910387a {
  margin-left: 10px;
margin-right: 10px;
}
}@media (max-width: 767px){#s-f1b34b66-82dc-4525-a5d2-352d9910387a {
  margin-left: 0px;
margin-right: 0px;
}
}







#s-f1b34b66-82dc-4525-a5d2-352d9910387a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f1b34b66-82dc-4525-a5d2-352d9910387a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ba77cc4e-9756-4b53-bbb0-c8fea238eee5 {
  margin-top: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-ba77cc4e-9756-4b53-bbb0-c8fea238eee5 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ba77cc4e-9756-4b53-bbb0-c8fea238eee5 {
  
}
}@media (max-width: 767px){#s-ba77cc4e-9756-4b53-bbb0-c8fea238eee5 {
  
}
}






  #s-ba77cc4e-9756-4b53-bbb0-c8fea238eee5 img.shogun-image {
    

    
    
    
  }


#s-ba77cc4e-9756-4b53-bbb0-c8fea238eee5 .shogun-image-content {
  
    align-items: center;
  
}

#s-bf6a0641-c24b-4a73-93f7-487af9505626 {
  margin-top: 55px;
margin-bottom: 15px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-bf6a0641-c24b-4a73-93f7-487af9505626 {
  margin-top: 35px;
margin-left: 15px;
margin-right: 15px;
}
}
#s-bf6a0641-c24b-4a73-93f7-487af9505626 .shogun-heading-component h2 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 37px;
  line-height: 1em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-bf6a0641-c24b-4a73-93f7-487af9505626 .shogun-heading-component h2 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 35px;
  line-height: 1em;
  
  
}


}@media (max-width: 767px){#s-bf6a0641-c24b-4a73-93f7-487af9505626 .shogun-heading-component h2 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1em;
  
  
}


}
#s-71977321-3039-4ba6-9cca-27eaae195ff0 {
  margin-top: 0px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
}

#s-c5ab254b-c039-49ce-a7d1-eb4dd7b49bf6 {
  margin-top: 40px;
margin-bottom: 40px;
}
@media (min-width: 1200px){#s-c5ab254b-c039-49ce-a7d1-eb4dd7b49bf6 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-c5ab254b-c039-49ce-a7d1-eb4dd7b49bf6 {
  display: none;
}
#s-c5ab254b-c039-49ce-a7d1-eb4dd7b49bf6, #wrap-s-c5ab254b-c039-49ce-a7d1-eb4dd7b49bf6 { display: none !important; }}@media (max-width: 767px){#s-c5ab254b-c039-49ce-a7d1-eb4dd7b49bf6 {
  display: none;
}
#s-c5ab254b-c039-49ce-a7d1-eb4dd7b49bf6, #wrap-s-c5ab254b-c039-49ce-a7d1-eb4dd7b49bf6 { display: none !important; }}
@media (min-width: 0px) {
[id="s-c5ab254b-c039-49ce-a7d1-eb4dd7b49bf6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c5ab254b-c039-49ce-a7d1-eb4dd7b49bf6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c5ab254b-c039-49ce-a7d1-eb4dd7b49bf6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c5ab254b-c039-49ce-a7d1-eb4dd7b49bf6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-8897a1ab-772e-4339-8c57-73278cf2238b {
  min-height: 50px;
}








#s-8897a1ab-772e-4339-8c57-73278cf2238b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8897a1ab-772e-4339-8c57-73278cf2238b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cf5c68cb-db7f-40a9-9e52-b00fd0146ce3 {
  text-align: center;
}







  #s-cf5c68cb-db7f-40a9-9e52-b00fd0146ce3 img.shogun-image {
    

    
    
    
  }


#s-cf5c68cb-db7f-40a9-9e52-b00fd0146ce3 .shogun-image-content {
  
    align-items: center;
  
}

#s-b78c521a-bede-4556-b8f5-f87396d9e6a1 {
  min-height: 50px;
}








#s-b78c521a-bede-4556-b8f5-f87396d9e6a1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b78c521a-bede-4556-b8f5-f87396d9e6a1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cfd90186-14f6-4d2a-9d54-b6c35db2c9c3 {
  margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-cfd90186-14f6-4d2a-9d54-b6c35db2c9c3 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 37px;
  
  
  text-align: left;
}



.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

.shg-btn {
  cursor: pointer;
  box-sizing: border-box;
}

.shg-btn-text {
  font-weight: ;
  font-family: ;
}

.shg-btn.shg-btn-stretch {
  display: block;
}

.shg-btn:not(.shg-btn-stretch) {
  display: inline-block;
}

.shg-btn-wrapper.shg-align-left {
  text-align: left;
}

.shg-btn-wrapper.shg-align-center {
  text-align: center;
}

.shg-btn-wrapper.shg-align-right {
  text-align: right;
}

#s-57766299-4d18-44a6-beca-2d814e877736 {
  margin-top: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 92, 38, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-57766299-4d18-44a6-beca-2d814e877736:hover {background-color: rgba(105, 105, 105, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-57766299-4d18-44a6-beca-2d814e877736:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-57766299-4d18-44a6-beca-2d814e877736-root {
    text-align: center;
  }


#s-57766299-4d18-44a6-beca-2d814e877736.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Asap;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-57766299-4d18-44a6-beca-2d814e877736-root {
    text-align: center;
  }


#s-57766299-4d18-44a6-beca-2d814e877736.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Asap;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-57766299-4d18-44a6-beca-2d814e877736-root {
    text-align: center;
  }


#s-57766299-4d18-44a6-beca-2d814e877736.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Asap;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-57766299-4d18-44a6-beca-2d814e877736-root {
    text-align: center;
  }


#s-57766299-4d18-44a6-beca-2d814e877736.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Asap;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-57766299-4d18-44a6-beca-2d814e877736-root {
    text-align: center;
  }


#s-57766299-4d18-44a6-beca-2d814e877736.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Asap;
  display:  inline-block ;
}
}
#s-b297ae6d-47f0-42bb-8439-0d4bd8e27407 {
  margin-top: 100px;
margin-bottom: 65px;
}
@media (min-width: 1200px){#s-b297ae6d-47f0-42bb-8439-0d4bd8e27407 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-b297ae6d-47f0-42bb-8439-0d4bd8e27407 {
  display: none;
}
#s-b297ae6d-47f0-42bb-8439-0d4bd8e27407, #wrap-s-b297ae6d-47f0-42bb-8439-0d4bd8e27407 { display: none !important; }}@media (max-width: 767px){#s-b297ae6d-47f0-42bb-8439-0d4bd8e27407 {
  display: none;
}
#s-b297ae6d-47f0-42bb-8439-0d4bd8e27407, #wrap-s-b297ae6d-47f0-42bb-8439-0d4bd8e27407 { display: none !important; }}
@media (min-width: 0px) {
[id="s-b297ae6d-47f0-42bb-8439-0d4bd8e27407"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b297ae6d-47f0-42bb-8439-0d4bd8e27407"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b297ae6d-47f0-42bb-8439-0d4bd8e27407"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b297ae6d-47f0-42bb-8439-0d4bd8e27407"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-f2ab922d-e0da-4e8a-9f69-5e727b029655 {
  min-height: 50px;
}








#s-f2ab922d-e0da-4e8a-9f69-5e727b029655 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f2ab922d-e0da-4e8a-9f69-5e727b029655.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-496b2ebc-a3b0-4819-8509-313c2bdc390a {
  min-height: 50px;
}








#s-496b2ebc-a3b0-4819-8509-313c2bdc390a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-496b2ebc-a3b0-4819-8509-313c2bdc390a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cbbb7c47-eb3f-4b96-bba1-0be8b1c9fa17 {
  margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-cbbb7c47-eb3f-4b96-bba1-0be8b1c9fa17 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 37px;
  
  
  text-align: left;
}



#s-c6c4c4ad-44c5-458b-9398-7912925805e4 {
  margin-top: 10px;
}

#s-62da253b-0bb1-436f-8366-2bb7f3409cfc {
  margin-top: 20px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 92, 38, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-62da253b-0bb1-436f-8366-2bb7f3409cfc:hover {background-color: rgba(105, 105, 105, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-62da253b-0bb1-436f-8366-2bb7f3409cfc:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-62da253b-0bb1-436f-8366-2bb7f3409cfc-root {
    text-align: center;
  }


#s-62da253b-0bb1-436f-8366-2bb7f3409cfc.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Asap;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-62da253b-0bb1-436f-8366-2bb7f3409cfc-root {
    text-align: center;
  }


#s-62da253b-0bb1-436f-8366-2bb7f3409cfc.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Asap;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-62da253b-0bb1-436f-8366-2bb7f3409cfc-root {
    text-align: center;
  }


#s-62da253b-0bb1-436f-8366-2bb7f3409cfc.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Asap;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-62da253b-0bb1-436f-8366-2bb7f3409cfc-root {
    text-align: center;
  }


#s-62da253b-0bb1-436f-8366-2bb7f3409cfc.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Asap;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-62da253b-0bb1-436f-8366-2bb7f3409cfc-root {
    text-align: center;
  }


#s-62da253b-0bb1-436f-8366-2bb7f3409cfc.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Asap;
  display:  inline-block ;
}
}
#s-6b37340a-b466-481d-b3fc-f376e7ee2c3b {
  text-align: center;
}







  #s-6b37340a-b466-481d-b3fc-f376e7ee2c3b img.shogun-image {
    

    
    
    
  }


#s-6b37340a-b466-481d-b3fc-f376e7ee2c3b .shogun-image-content {
  
    align-items: center;
  
}

#s-c0b9c2d6-e19c-4a89-b96a-07ef559eee67 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-c0b9c2d6-e19c-4a89-b96a-07ef559eee67 {
  display: none;
}
#s-c0b9c2d6-e19c-4a89-b96a-07ef559eee67, #wrap-s-c0b9c2d6-e19c-4a89-b96a-07ef559eee67 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c0b9c2d6-e19c-4a89-b96a-07ef559eee67 {
  display: none;
}
#s-c0b9c2d6-e19c-4a89-b96a-07ef559eee67, #wrap-s-c0b9c2d6-e19c-4a89-b96a-07ef559eee67 { display: none !important; }}







#s-c0b9c2d6-e19c-4a89-b96a-07ef559eee67 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c0b9c2d6-e19c-4a89-b96a-07ef559eee67.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b3c04bb0-1ed0-4336-b468-87042d76fee6 {
  margin-top: 25px;
margin-left: 0%;
margin-right: 0%;
padding-top: 20px;
padding-bottom: 20px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-b3c04bb0-1ed0-4336-b468-87042d76fee6 {
  margin-top: 30px;
margin-left: 2px;
margin-right: 10px;
}
}@media (max-width: 767px){#s-b3c04bb0-1ed0-4336-b468-87042d76fee6 {
  margin-top: -5px;
margin-left: 5px;
margin-bottom: 10px;
margin-right: 5px;
}
}






  #s-b3c04bb0-1ed0-4336-b468-87042d76fee6 img.shogun-image {
    

    
    
    
  }


#s-b3c04bb0-1ed0-4336-b468-87042d76fee6 .shogun-image-content {
  
    align-items: center;
  
}

#s-90e82184-487e-4611-bd15-66c6dce584b9 {
  margin-top: 0px;
margin-left: 30px;
margin-bottom: 0px;
margin-right: 30px;
min-height: 50px;
}
@media (min-width: 1200px){#s-90e82184-487e-4611-bd15-66c6dce584b9 {
  display: none;
}
#s-90e82184-487e-4611-bd15-66c6dce584b9, #wrap-s-90e82184-487e-4611-bd15-66c6dce584b9 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-90e82184-487e-4611-bd15-66c6dce584b9 {
  display: none;
}
#s-90e82184-487e-4611-bd15-66c6dce584b9, #wrap-s-90e82184-487e-4611-bd15-66c6dce584b9 { display: none !important; }}@media (max-width: 767px){#s-90e82184-487e-4611-bd15-66c6dce584b9 {
  margin-left: 0px;
margin-right: 0px;
}
}







#s-90e82184-487e-4611-bd15-66c6dce584b9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-90e82184-487e-4611-bd15-66c6dce584b9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d3fdae4b-6300-47db-9865-07bd9de19655 {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 0px;
margin-right: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-d3fdae4b-6300-47db-9865-07bd9de19655 {
  margin-top: 0px;
margin-left: 0px;
margin-right: 0px;
}
}@media (max-width: 767px){#s-d3fdae4b-6300-47db-9865-07bd9de19655 {
  margin-top: 10px;
margin-left: 20px;
}
}
#s-d3fdae4b-6300-47db-9865-07bd9de19655 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: left;
}



#s-68edfe86-ba99-48c9-b3dd-b519af3b7e90 {
  margin-top: 10px;
margin-left: 0px;
margin-right: 0px;
}
@media (max-width: 767px){#s-68edfe86-ba99-48c9-b3dd-b519af3b7e90 {
  margin-top: 10px;
margin-left: 20px;
margin-right: 30px;
}
}
#s-adcdce60-dbf7-417f-bc39-e8691a495081 {
  margin-top: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 92, 38, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-adcdce60-dbf7-417f-bc39-e8691a495081:hover {background-color: rgba(105, 105, 105, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-adcdce60-dbf7-417f-bc39-e8691a495081:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-adcdce60-dbf7-417f-bc39-e8691a495081 {
  margin-top: 20px;
margin-left: 0px;
margin-bottom: 15px;
margin-right: 0px;
}
}@media (max-width: 767px){#s-adcdce60-dbf7-417f-bc39-e8691a495081 {
  margin-top: 20px;
margin-bottom: 20px;
}
}

  #s-adcdce60-dbf7-417f-bc39-e8691a495081-root {
    text-align: center;
  }


#s-adcdce60-dbf7-417f-bc39-e8691a495081.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Asap;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-adcdce60-dbf7-417f-bc39-e8691a495081-root {
    text-align: center;
  }


#s-adcdce60-dbf7-417f-bc39-e8691a495081.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Asap;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-adcdce60-dbf7-417f-bc39-e8691a495081-root {
    text-align: center;
  }


#s-adcdce60-dbf7-417f-bc39-e8691a495081.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Asap;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-adcdce60-dbf7-417f-bc39-e8691a495081-root {
    text-align: center;
  }


#s-adcdce60-dbf7-417f-bc39-e8691a495081.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Asap;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-adcdce60-dbf7-417f-bc39-e8691a495081-root {
    text-align: center;
  }


#s-adcdce60-dbf7-417f-bc39-e8691a495081.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Asap;
  display:  inline-block ;
}
}
#s-8d219e4d-fb57-4ab9-a095-d48b146ef799 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-8d219e4d-fb57-4ab9-a095-d48b146ef799 {
  display: none;
}
#s-8d219e4d-fb57-4ab9-a095-d48b146ef799, #wrap-s-8d219e4d-fb57-4ab9-a095-d48b146ef799 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8d219e4d-fb57-4ab9-a095-d48b146ef799 {
  display: none;
}
#s-8d219e4d-fb57-4ab9-a095-d48b146ef799, #wrap-s-8d219e4d-fb57-4ab9-a095-d48b146ef799 { display: none !important; }}







#s-8d219e4d-fb57-4ab9-a095-d48b146ef799 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8d219e4d-fb57-4ab9-a095-d48b146ef799.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-60099dac-e99c-483f-b4e8-86fdf2497a0d {
  margin-top: 0px;
margin-left: 0%;
margin-right: 0%;
padding-top: 50px;
padding-bottom: 50px;
text-align: center;
}
@media (max-width: 767px){#s-60099dac-e99c-483f-b4e8-86fdf2497a0d {
  margin-left: 1px;
margin-bottom: 10px;
margin-right: 1px;
padding-top: 0px;
padding-bottom: 0px;
}
}






  #s-60099dac-e99c-483f-b4e8-86fdf2497a0d img.shogun-image {
    

    
    
    
  }


#s-60099dac-e99c-483f-b4e8-86fdf2497a0d .shogun-image-content {
  
    align-items: center;
  
}

#s-bcb81c7c-d132-412b-ab26-c81a1ac4d3e8 {
  margin-left: 20px;
margin-bottom: 10px;
margin-right: 0px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-bcb81c7c-d132-412b-ab26-c81a1ac4d3e8 {
  margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-bcb81c7c-d132-412b-ab26-c81a1ac4d3e8 {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
}
}
#s-bcb81c7c-d132-412b-ab26-c81a1ac4d3e8 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: left;
}



#s-f5275d09-4d89-4ca2-b5f4-f2f90afbef81 {
  margin-top: 10px;
margin-left: 20px;
margin-right: 15px;
}
@media (min-width: 768px) and (max-width: 991px){#s-f5275d09-4d89-4ca2-b5f4-f2f90afbef81 {
  margin-top: 0px;
margin-left: 30px;
margin-right: 30px;
}
}@media (max-width: 767px){#s-f5275d09-4d89-4ca2-b5f4-f2f90afbef81 {
  margin-top: 10px;
margin-right: 30px;
}
}
#s-b301edd2-12f0-462e-b913-902ed9b34d84 {
  margin-top: 10px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(255, 92, 38, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-b301edd2-12f0-462e-b913-902ed9b34d84:hover {background-color: rgba(105, 105, 105, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-b301edd2-12f0-462e-b913-902ed9b34d84:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-b301edd2-12f0-462e-b913-902ed9b34d84 {
  margin-top: 20px;
margin-left: 20px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-b301edd2-12f0-462e-b913-902ed9b34d84 {
  margin-top: 20px;
margin-left: 20px;
margin-right: 20px;
}
}

  #s-b301edd2-12f0-462e-b913-902ed9b34d84-root {
    text-align: center;
  }


#s-b301edd2-12f0-462e-b913-902ed9b34d84.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Asap;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b301edd2-12f0-462e-b913-902ed9b34d84-root {
    text-align: center;
  }


#s-b301edd2-12f0-462e-b913-902ed9b34d84.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Asap;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b301edd2-12f0-462e-b913-902ed9b34d84-root {
    text-align: center;
  }


#s-b301edd2-12f0-462e-b913-902ed9b34d84.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Asap;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b301edd2-12f0-462e-b913-902ed9b34d84-root {
    text-align: center;
  }


#s-b301edd2-12f0-462e-b913-902ed9b34d84.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Asap;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b301edd2-12f0-462e-b913-902ed9b34d84-root {
    text-align: center;
  }


#s-b301edd2-12f0-462e-b913-902ed9b34d84.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  
  font-family: Asap;
  display:  inline-block ;
}
}
#s-3c566828-762d-4926-abf0-9cde9ccc3411 {
  margin-top: 50px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-3c566828-762d-4926-abf0-9cde9ccc3411 {
  margin-left: 10px;
margin-right: 10px;
}
}@media (max-width: 767px){#s-3c566828-762d-4926-abf0-9cde9ccc3411 {
  margin-top: 30px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 15px;
}
}
#s-3c566828-762d-4926-abf0-9cde9ccc3411 .shogun-heading-component h3 {
  color: rgba(5, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 25px;
  line-height: 1.5em;
  
  text-align: center;
}


@media (min-width: 1200px){#s-3c566828-762d-4926-abf0-9cde9ccc3411 .shogun-heading-component h3 {
  color: rgba(5, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 37px;
  line-height: 1.5em;
  
  text-align: center;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-3c566828-762d-4926-abf0-9cde9ccc3411 .shogun-heading-component h3 {
  color: rgba(5, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 37px;
  line-height: 1.5em;
  
  text-align: center;
}


}@media (min-width: 768px) and (max-width: 991px){#s-3c566828-762d-4926-abf0-9cde9ccc3411 .shogun-heading-component h3 {
  color: rgba(5, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 35px;
  line-height: 1.5em;
  
  text-align: center;
}


}@media (max-width: 767px){#s-3c566828-762d-4926-abf0-9cde9ccc3411 .shogun-heading-component h3 {
  color: rgba(5, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1.5em;
  
  text-align: center;
}


}
#s-76d7e705-da7e-4365-bc12-16619d869690 {
  margin-top: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-76d7e705-da7e-4365-bc12-16619d869690 {
  margin-bottom: 30px;
}
}@media (max-width: 767px){#s-76d7e705-da7e-4365-bc12-16619d869690 {
  display: none;
}
#s-76d7e705-da7e-4365-bc12-16619d869690, #wrap-s-76d7e705-da7e-4365-bc12-16619d869690 { display: none !important; }}






  #s-76d7e705-da7e-4365-bc12-16619d869690 img.shogun-image {
    

    
    
    
  }


#s-76d7e705-da7e-4365-bc12-16619d869690 .shogun-image-content {
  
    align-items: center;
  
}

#s-d719c4e2-03cf-4bc2-aa61-bfea9eea75b6 {
  margin-top: 10px;
margin-bottom: 30px;
text-align: center;
}
@media (min-width: 1200px){#s-d719c4e2-03cf-4bc2-aa61-bfea9eea75b6 {
  display: none;
}
#s-d719c4e2-03cf-4bc2-aa61-bfea9eea75b6, #wrap-s-d719c4e2-03cf-4bc2-aa61-bfea9eea75b6 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d719c4e2-03cf-4bc2-aa61-bfea9eea75b6 {
  display: none;
}
#s-d719c4e2-03cf-4bc2-aa61-bfea9eea75b6, #wrap-s-d719c4e2-03cf-4bc2-aa61-bfea9eea75b6 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d719c4e2-03cf-4bc2-aa61-bfea9eea75b6 {
  display: none;
}
#s-d719c4e2-03cf-4bc2-aa61-bfea9eea75b6, #wrap-s-d719c4e2-03cf-4bc2-aa61-bfea9eea75b6 { display: none !important; }}






  #s-d719c4e2-03cf-4bc2-aa61-bfea9eea75b6 img.shogun-image {
    

    
    
    
  }


#s-d719c4e2-03cf-4bc2-aa61-bfea9eea75b6 .shogun-image-content {
  
    align-items: center;
  
}

#s-deff1847-fe79-4799-95ef-ed2295036361 {
  margin-top: 50px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-deff1847-fe79-4799-95ef-ed2295036361 {
  margin-top: 30px;
margin-left: 10px;
margin-bottom: 30px;
margin-right: 10px;
}
}@media (max-width: 767px){#s-deff1847-fe79-4799-95ef-ed2295036361 {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 5px;
margin-right: 0px;
}
}
#s-deff1847-fe79-4799-95ef-ed2295036361 .shogun-heading-component h3 {
  color: rgba(5, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 25px;
  line-height: 1.5em;
  
  text-align: center;
}


@media (min-width: 1200px){#s-deff1847-fe79-4799-95ef-ed2295036361 .shogun-heading-component h3 {
  color: rgba(5, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 37px;
  line-height: 1.5em;
  
  text-align: center;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-deff1847-fe79-4799-95ef-ed2295036361 .shogun-heading-component h3 {
  color: rgba(5, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 37px;
  line-height: 1.5em;
  
  text-align: center;
}


}@media (min-width: 768px) and (max-width: 991px){#s-deff1847-fe79-4799-95ef-ed2295036361 .shogun-heading-component h3 {
  color: rgba(5, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 35px;
  line-height: 1.5em;
  
  text-align: center;
}


}@media (max-width: 767px){#s-deff1847-fe79-4799-95ef-ed2295036361 .shogun-heading-component h3 {
  color: rgba(5, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1.5em;
  
  text-align: center;
}


}
#s-93cbf854-415f-4248-9732-639ef3b9c786 {
  margin-left: 30px;
margin-right: 30px;
}

#s-3a33ef92-faa3-4019-aefb-2cd56eadfd53 {
  margin-top: 32px;
margin-bottom: 12px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-3a33ef92-faa3-4019-aefb-2cd56eadfd53 {
  margin-top: 15px;
}
}@media (max-width: 767px){#s-3a33ef92-faa3-4019-aefb-2cd56eadfd53 {
  margin-top: 10px;
}
}






  #s-3a33ef92-faa3-4019-aefb-2cd56eadfd53 img.shogun-image {
    

    
    
    
  }


#s-3a33ef92-faa3-4019-aefb-2cd56eadfd53 .shogun-image-content {
  
    align-items: center;
  
}

#s-9520feb7-0067-4554-989a-9b8414bb003b {
  margin-top: 30px;
margin-left: 30px;
margin-right: 30px;
}
@media (min-width: 768px) and (max-width: 991px){#s-9520feb7-0067-4554-989a-9b8414bb003b {
  margin-top: 30px;
}
}@media (max-width: 767px){#s-9520feb7-0067-4554-989a-9b8414bb003b {
  margin-top: 0px;
}
}
#s-0c5e3628-225c-4e6f-8844-b9f9f28d50e9 {
  margin-top: 40px;
margin-bottom: 30px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-0c5e3628-225c-4e6f-8844-b9f9f28d50e9 {
  margin-top: 50px;
}
}






  #s-0c5e3628-225c-4e6f-8844-b9f9f28d50e9 img.shogun-image {
    

    
    
    
  }


#s-0c5e3628-225c-4e6f-8844-b9f9f28d50e9 .shogun-image-content {
  
    align-items: center;
  
}

#s-64425f33-d1af-40e8-8878-7681c58946f5 {
  margin-top: 60px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-64425f33-d1af-40e8-8878-7681c58946f5 {
  margin-left: 10px;
margin-right: 0px;
}
}@media (max-width: 767px){#s-64425f33-d1af-40e8-8878-7681c58946f5 {
  margin-top: 30px;
margin-right: 0px;
}
}
#s-64425f33-d1af-40e8-8878-7681c58946f5 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 37px;
  line-height: 1.5em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-64425f33-d1af-40e8-8878-7681c58946f5 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 35px;
  line-height: 1.5em;
  
  
}


}@media (max-width: 767px){#s-64425f33-d1af-40e8-8878-7681c58946f5 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 30px;
  line-height: 1.5em;
  
  
}


}
#s-86838b55-6a81-4007-9a66-233c07dd2f12 {
  margin-bottom: 25px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-86838b55-6a81-4007-9a66-233c07dd2f12 {
  margin-left: 20px;
margin-bottom: 25px;
margin-right: 20px;
}
}@media (max-width: 767px){#s-86838b55-6a81-4007-9a66-233c07dd2f12 {
  margin-top: 0px;
margin-left: 10px;
margin-bottom: 15px;
margin-right: 10px;
}
}
#s-86838b55-6a81-4007-9a66-233c07dd2f12 .shogun-heading-component h4 {
  color: rgba(51, 51, 51, 1);
  font-weight:  normal ;
  font-family: "Asap";
  font-style:  normal ;
  font-size: 20px;
  
  
  
}



#s-21bddd33-ba2f-4d25-aff1-b05edc55b8ec {
  margin-left: 30px;
margin-bottom: 50px;
margin-right: 30px;
}
@media (min-width: 768px) and (max-width: 991px){#s-21bddd33-ba2f-4d25-aff1-b05edc55b8ec {
  margin-bottom: 0px;
}
}@media (max-width: 767px){#s-21bddd33-ba2f-4d25-aff1-b05edc55b8ec {
  margin-left: 30px;
margin-bottom: 30px;
margin-right: 30px;
}
}
#s-65863257-9e62-4944-a3d8-3504e943cda6 {
  margin-top: 0px;
margin-bottom: 0px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-65863257-9e62-4944-a3d8-3504e943cda6 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 50px;
padding-bottom: 50px;
}
}
@media (min-width: 0px) {
[id="s-65863257-9e62-4944-a3d8-3504e943cda6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-65863257-9e62-4944-a3d8-3504e943cda6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-65863257-9e62-4944-a3d8-3504e943cda6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-65863257-9e62-4944-a3d8-3504e943cda6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-78e1d263-6e9d-40a5-815f-8c890f146c62 {
  margin-bottom: 40px;
text-align: center;
}
@media (max-width: 767px){#s-78e1d263-6e9d-40a5-815f-8c890f146c62 {
  margin-bottom: 2px;
}
}






  #s-78e1d263-6e9d-40a5-815f-8c890f146c62 img.shogun-image {
    

    
    
    
  }


#s-78e1d263-6e9d-40a5-815f-8c890f146c62 .shogun-image-content {
  
    align-items: center;
  
}

#s-474f4375-f294-4836-a122-71c4b537a113 {
  text-align: center;
}
@media (max-width: 767px){#s-474f4375-f294-4836-a122-71c4b537a113 {
  margin-top: 2px;
margin-bottom: 2px;
}
}






  #s-474f4375-f294-4836-a122-71c4b537a113 img.shogun-image {
    

    
    
    
  }


#s-474f4375-f294-4836-a122-71c4b537a113 .shogun-image-content {
  
    align-items: center;
  
}

#s-0dba36a3-9cb9-4c60-ac58-7e77d0066235 {
  text-align: center;
}







  #s-0dba36a3-9cb9-4c60-ac58-7e77d0066235 img.shogun-image {
    

    
    
    
  }


#s-0dba36a3-9cb9-4c60-ac58-7e77d0066235 .shogun-image-content {
  
    align-items: center;
  
}

/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  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-lazyload-bg-image {
  display: none;
}

.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 */

.shogun-form-error-msg, .shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

.shg-c:before,.shg-c:after{content:" ";display:table}.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:#000;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;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-lazyload-bg-image{display:none}.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}[data-animations*="enterviewport"][data-animations*="fadeIn"],[data-animations*="enterviewport"][data-animations*="zoomIn"]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}
