.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-b9bcf874-1482-4b06-9a36-efcae89551c0 {
  text-align: left;
}


  #s-b9bcf874-1482-4b06-9a36-efcae89551c0 .shogun-tabs > li > .shogun-tab-box {
    background: rgba(249, 249, 249, 1);
    border: 1px solid rgba(249, 249, 249, 1);
  }
  #s-b9bcf874-1482-4b06-9a36-efcae89551c0 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(249, 249, 249, 1);
    border: 1px solid rgba(249, 249, 249, 1);
  }
#s-b9bcf874-1482-4b06-9a36-efcae89551c0 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(51, 51, 51, 1);
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 20px;
}

#s-b9bcf874-1482-4b06-9a36-efcae89551c0 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 92, 38, 1);
}

#s-b9bcf874-1482-4b06-9a36-efcae89551c0 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(249, 249, 249, 1);
}

#s-b9bcf874-1482-4b06-9a36-efcae89551c0 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(249, 249, 249, 1);
}

.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-88b7f463-9d85-456f-94b6-20048bb2017c {
  margin-left: 100px;
margin-right: 100px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-88b7f463-9d85-456f-94b6-20048bb2017c {
  margin-left: 50px;
margin-right: 50px;
}
}@media (max-width: 767px){#s-88b7f463-9d85-456f-94b6-20048bb2017c {
  margin-left: 20px;
margin-bottom: 30px;
margin-right: 20px;
}
}







#s-88b7f463-9d85-456f-94b6-20048bb2017c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-88b7f463-9d85-456f-94b6-20048bb2017c.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-b224c9a4-dac5-41a9-bfd4-a079c9f275b9 {
  margin-top: 3%;
margin-bottom: 3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b224c9a4-dac5-41a9-bfd4-a079c9f275b9 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  
}



.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-4b94964d-5df1-4d01-8963-fba16d832da2 {
  margin-left: 0px;
margin-bottom: 30px;
margin-right: 0px;
}

#s-4b94964d-5df1-4d01-8963-fba16d832da2 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-4b94964d-5df1-4d01-8963-fba16d832da2 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(249, 249, 249, 1);
  padding: 10px;
}

#s-4b94964d-5df1-4d01-8963-fba16d832da2 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(51, 51, 51, 1);
}

#s-4b94964d-5df1-4d01-8963-fba16d832da2 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-4b94964d-5df1-4d01-8963-fba16d832da2 > .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: ;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-4b94964d-5df1-4d01-8963-fba16d832da2 > .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-42f8a784-9207-4aa7-9a7a-f418bac2ae5f {
  margin-top: 30px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-42f8a784-9207-4aa7-9a7a-f418bac2ae5f > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-42f8a784-9207-4aa7-9a7a-f418bac2ae5f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 10px;
}

#s-42f8a784-9207-4aa7-9a7a-f418bac2ae5f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(51, 51, 51, 1);
}

#s-42f8a784-9207-4aa7-9a7a-f418bac2ae5f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-42f8a784-9207-4aa7-9a7a-f418bac2ae5f > .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: ;
  font-weight: ;
  font-style: ;
  font-size: 18px;
}

#s-42f8a784-9207-4aa7-9a7a-f418bac2ae5f > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}
#s-f3f86371-612d-4f04-b23e-8b47c1f71474 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-f3f86371-612d-4f04-b23e-8b47c1f71474 .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-f3f86371-612d-4f04-b23e-8b47c1f71474 .shogun-form-success-msg {
  visibility: hidden;
  display: flex;
  align-items: center;
  
  
  color: rgba(255, 92, 38, 1);
  
  
  
  
  justify-content: center;
}

#s-f3f86371-612d-4f04-b23e-8b47c1f71474 .shogun-form-success-msg > svg {
  margin-right: 4px;
  stroke: rgba(255, 92, 38, 1);
}

#s-f3f86371-612d-4f04-b23e-8b47c1f71474 .shogun-form-error-msg-container, #s-f3f86371-612d-4f04-b23e-8b47c1f71474 .shogun-form-field-error-msg-container {
  display: none;
}

#s-f3f86371-612d-4f04-b23e-8b47c1f71474 .shogun-form-error-msg {
  font-size: 17px;
  
  color: rgba(255, 38, 42, 1);
  
  
  
  
  
}

#s-f3f86371-612d-4f04-b23e-8b47c1f71474 .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-f828529b-7446-45ee-94aa-ffa58894adfd {
  margin-top: 10px;
margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-f828529b-7446-45ee-94aa-ffa58894adfd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f828529b-7446-45ee-94aa-ffa58894adfd"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f828529b-7446-45ee-94aa-ffa58894adfd"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f828529b-7446-45ee-94aa-ffa58894adfd"] > .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-881930e9-a8b0-46d0-8231-c923cd958c25  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  
  
  color: #000;
  
  
  
  
}

#s-881930e9-a8b0-46d0-8231-c923cd958c25  .shogun-form-text-input-field::placeholder {
  
  
  color: #000;
  
  
  
  
}


#s-881930e9-a8b0-46d0-8231-c923cd958c25 .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-881930e9-a8b0-46d0-8231-c923cd958c25 .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


#s-1f822a21-534b-4705-8694-ed99f597ff13  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  
  
  color: #000;
  
  
  
  
}

#s-1f822a21-534b-4705-8694-ed99f597ff13  .shogun-form-text-input-field::placeholder {
  
  
  color: #000;
  
  
  
  
}


#s-1f822a21-534b-4705-8694-ed99f597ff13 .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-1f822a21-534b-4705-8694-ed99f597ff13 .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


#s-5e08ce99-d3bd-4912-a448-4607916137cb  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  
  
  color: #000;
  
  
  
  
}

#s-5e08ce99-d3bd-4912-a448-4607916137cb  .shogun-form-text-input-field::placeholder {
  
  
  color: #000;
  
  
  
  
}


#s-5e08ce99-d3bd-4912-a448-4607916137cb .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-5e08ce99-d3bd-4912-a448-4607916137cb .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-f171c4b7-1b9c-4941-b730-c8b10751fcdb {
  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-f171c4b7-1b9c-4941-b730-c8b10751fcdb:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-f171c4b7-1b9c-4941-b730-c8b10751fcdb:active {background-color: #000000 !important;
text-decoration: none !important;}
#s-f171c4b7-1b9c-4941-b730-c8b10751fcdb[disabled],
#s-f171c4b7-1b9c-4941-b730-c8b10751fcdb[disabled]:hover,
#s-f171c4b7-1b9c-4941-b730-c8b10751fcdb[disabled]:focus {
  background-color: #D7D5E2 !important;
}

#s-f171c4b7-1b9c-4941-b730-c8b10751fcdb {
  display:  inline-block ;
  width:  auto ;
}


#s-144d2dbd-2399-443c-a78e-58801e2a9a0a {
  margin-top: 0px;
margin-left: 50px;
margin-bottom: 20px;
margin-right: 50px;
min-height: 50px;
background-color: rgba(243, 243, 243, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-144d2dbd-2399-443c-a78e-58801e2a9a0a {
  margin-left: 4%;
margin-right: 4%;
}
}@media (max-width: 767px){#s-144d2dbd-2399-443c-a78e-58801e2a9a0a {
  margin-top: -10px;
margin-left: 20px;
margin-bottom: 50px;
margin-right: 20px;
}
}







#s-144d2dbd-2399-443c-a78e-58801e2a9a0a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-144d2dbd-2399-443c-a78e-58801e2a9a0a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-249043c9-46f3-4427-8657-db4ab32af88f {
  margin-left: 0px;
margin-right: 0px;
min-height: 50px;
}








#s-249043c9-46f3-4427-8657-db4ab32af88f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-249043c9-46f3-4427-8657-db4ab32af88f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0e314fe4-e89e-4833-92ff-86138550b37c {
  margin-top: 30px;
margin-bottom: 30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0e314fe4-e89e-4833-92ff-86138550b37c .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}


@media (max-width: 767px){#s-0e314fe4-e89e-4833-92ff-86138550b37c .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  
}


}
@media (max-width: 767px){#s-7a48a472-b128-48d5-93c5-5decbb18f0f4 {
  margin-left: 5px;
margin-right: 5px;
}
}
@media (min-width: 0px) {
[id="s-7a48a472-b128-48d5-93c5-5decbb18f0f4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7a48a472-b128-48d5-93c5-5decbb18f0f4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7a48a472-b128-48d5-93c5-5decbb18f0f4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7a48a472-b128-48d5-93c5-5decbb18f0f4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-1cb9ef6b-f5f1-4f14-a045-94d5b44ce3ca {
  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-1cb9ef6b-f5f1-4f14-a045-94d5b44ce3ca {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-1cb9ef6b-f5f1-4f14-a045-94d5b44ce3ca {
  margin-left: 30px;
}
}
#s-1cb9ef6b-f5f1-4f14-a045-94d5b44ce3ca .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


@media (max-width: 767px){#s-1cb9ef6b-f5f1-4f14-a045-94d5b44ce3ca .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


}
#s-ad66a97a-1ab8-4180-b345-16345c5d6001 {
  margin-left: 5%;
margin-bottom: 10px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-ad66a97a-1ab8-4180-b345-16345c5d6001 {
  margin-left: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ad66a97a-1ab8-4180-b345-16345c5d6001 {
  margin-left: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-ad66a97a-1ab8-4180-b345-16345c5d6001 {
  
}
}@media (max-width: 767px){#s-ad66a97a-1ab8-4180-b345-16345c5d6001 {
  display: none;
}
#s-ad66a97a-1ab8-4180-b345-16345c5d6001, #wrap-s-ad66a97a-1ab8-4180-b345-16345c5d6001 { display: none !important; }}
@media (min-width: 0px) {
[id="s-ad66a97a-1ab8-4180-b345-16345c5d6001"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ad66a97a-1ab8-4180-b345-16345c5d6001"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-ad66a97a-1ab8-4180-b345-16345c5d6001"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-ad66a97a-1ab8-4180-b345-16345c5d6001"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-ad66a97a-1ab8-4180-b345-16345c5d6001"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-ad66a97a-1ab8-4180-b345-16345c5d6001"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-ad66a97a-1ab8-4180-b345-16345c5d6001"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-8ffa3bc0-6587-4295-bdef-6f40805f048c {
  margin-left: 30px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-8ffa3bc0-6587-4295-bdef-6f40805f048c {
  display: none;
}
#s-8ffa3bc0-6587-4295-bdef-6f40805f048c, #wrap-s-8ffa3bc0-6587-4295-bdef-6f40805f048c { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8ffa3bc0-6587-4295-bdef-6f40805f048c {
  display: none;
}
#s-8ffa3bc0-6587-4295-bdef-6f40805f048c, #wrap-s-8ffa3bc0-6587-4295-bdef-6f40805f048c { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8ffa3bc0-6587-4295-bdef-6f40805f048c {
  display: none;
}
#s-8ffa3bc0-6587-4295-bdef-6f40805f048c, #wrap-s-8ffa3bc0-6587-4295-bdef-6f40805f048c { display: none !important; }}
.shg-hr-wrapper {
  padding: 30px 0;
}

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

#s-75211caf-0111-471d-a0ef-7035b362a75e {
  margin-left: 50px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-75211caf-0111-471d-a0ef-7035b362a75e {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-75211caf-0111-471d-a0ef-7035b362a75e {
  margin-left: 30px;
}
}
#s-75211caf-0111-471d-a0ef-7035b362a75e hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-d01a163c-b6d1-4478-bb28-81fad3032ddf {
  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-d01a163c-b6d1-4478-bb28-81fad3032ddf {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-d01a163c-b6d1-4478-bb28-81fad3032ddf {
  margin-left: 30px;
}
}
#s-d01a163c-b6d1-4478-bb28-81fad3032ddf .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (max-width: 767px){#s-d01a163c-b6d1-4478-bb28-81fad3032ddf .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


}
#s-c4c43d93-3ad2-42c0-a4be-5625c95a5629 {
  margin-left: 5%;
margin-bottom: 10px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-c4c43d93-3ad2-42c0-a4be-5625c95a5629 {
  margin-left: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c4c43d93-3ad2-42c0-a4be-5625c95a5629 {
  margin-left: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-c4c43d93-3ad2-42c0-a4be-5625c95a5629 {
  
}
}@media (max-width: 767px){#s-c4c43d93-3ad2-42c0-a4be-5625c95a5629 {
  display: none;
}
#s-c4c43d93-3ad2-42c0-a4be-5625c95a5629, #wrap-s-c4c43d93-3ad2-42c0-a4be-5625c95a5629 { display: none !important; }}
@media (min-width: 0px) {
[id="s-c4c43d93-3ad2-42c0-a4be-5625c95a5629"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c4c43d93-3ad2-42c0-a4be-5625c95a5629"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-c4c43d93-3ad2-42c0-a4be-5625c95a5629"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-c4c43d93-3ad2-42c0-a4be-5625c95a5629"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-c4c43d93-3ad2-42c0-a4be-5625c95a5629"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-c4c43d93-3ad2-42c0-a4be-5625c95a5629"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-c4c43d93-3ad2-42c0-a4be-5625c95a5629"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-6edde3aa-a2ae-46a5-8318-4275eda2c2e0 {
  margin-left: 30px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-6edde3aa-a2ae-46a5-8318-4275eda2c2e0 {
  display: none;
}
#s-6edde3aa-a2ae-46a5-8318-4275eda2c2e0, #wrap-s-6edde3aa-a2ae-46a5-8318-4275eda2c2e0 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6edde3aa-a2ae-46a5-8318-4275eda2c2e0 {
  display: none;
}
#s-6edde3aa-a2ae-46a5-8318-4275eda2c2e0, #wrap-s-6edde3aa-a2ae-46a5-8318-4275eda2c2e0 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6edde3aa-a2ae-46a5-8318-4275eda2c2e0 {
  display: none;
}
#s-6edde3aa-a2ae-46a5-8318-4275eda2c2e0, #wrap-s-6edde3aa-a2ae-46a5-8318-4275eda2c2e0 { display: none !important; }}
#s-42db99da-07db-40f4-a22b-d5da4a288dfb {
  margin-left: 50px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
}
@media (min-width: 1200px){#s-42db99da-07db-40f4-a22b-d5da4a288dfb {
  display: none;
}
#s-42db99da-07db-40f4-a22b-d5da4a288dfb, #wrap-s-42db99da-07db-40f4-a22b-d5da4a288dfb { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-42db99da-07db-40f4-a22b-d5da4a288dfb {
  display: none;
}
#s-42db99da-07db-40f4-a22b-d5da4a288dfb, #wrap-s-42db99da-07db-40f4-a22b-d5da4a288dfb { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-42db99da-07db-40f4-a22b-d5da4a288dfb {
  margin-left: 5%;
display: none;
}
#s-42db99da-07db-40f4-a22b-d5da4a288dfb, #wrap-s-42db99da-07db-40f4-a22b-d5da4a288dfb { display: none !important; }}@media (max-width: 767px){#s-42db99da-07db-40f4-a22b-d5da4a288dfb {
  margin-left: 30px;
}
}
#s-42db99da-07db-40f4-a22b-d5da4a288dfb hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-ab04f898-a897-49ff-909d-42471fb59aed {
  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-ab04f898-a897-49ff-909d-42471fb59aed {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-ab04f898-a897-49ff-909d-42471fb59aed {
  margin-left: 30px;
}
}
#s-ab04f898-a897-49ff-909d-42471fb59aed .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (max-width: 767px){#s-ab04f898-a897-49ff-909d-42471fb59aed .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


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

}

@media (min-width: 768px) {
[id="s-e2cc01d6-0465-415c-aec0-f79c16e95ed4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-e2cc01d6-0465-415c-aec0-f79c16e95ed4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-e2cc01d6-0465-415c-aec0-f79c16e95ed4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

}

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

}

@media (min-width: 768px) {
[id="s-f0020552-fe55-4c84-8932-8cc166ed9fe1"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-f0020552-fe55-4c84-8932-8cc166ed9fe1"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-f0020552-fe55-4c84-8932-8cc166ed9fe1"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-f0020552-fe55-4c84-8932-8cc166ed9fe1"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-f0020552-fe55-4c84-8932-8cc166ed9fe1"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-f0020552-fe55-4c84-8932-8cc166ed9fe1"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

}

#s-76020aa2-6ae8-408b-aebb-cf1694278ff1 {
  margin-left: 30px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-76020aa2-6ae8-408b-aebb-cf1694278ff1 {
  display: none;
}
#s-76020aa2-6ae8-408b-aebb-cf1694278ff1, #wrap-s-76020aa2-6ae8-408b-aebb-cf1694278ff1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-76020aa2-6ae8-408b-aebb-cf1694278ff1 {
  display: none;
}
#s-76020aa2-6ae8-408b-aebb-cf1694278ff1, #wrap-s-76020aa2-6ae8-408b-aebb-cf1694278ff1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-76020aa2-6ae8-408b-aebb-cf1694278ff1 {
  display: none;
}
#s-76020aa2-6ae8-408b-aebb-cf1694278ff1, #wrap-s-76020aa2-6ae8-408b-aebb-cf1694278ff1 { display: none !important; }}
#s-86399b9a-d7b0-4b98-a140-58b866ebfa4e {
  margin-left: 50px;
margin-right: 50px;
padding-left: 0px;
padding-right: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-86399b9a-d7b0-4b98-a140-58b866ebfa4e {
  margin-left: 5%;
margin-right: 5%;
}
}@media (max-width: 767px){#s-86399b9a-d7b0-4b98-a140-58b866ebfa4e {
  margin-left: 30px;
}
}
#s-86399b9a-d7b0-4b98-a140-58b866ebfa4e hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-3d7de285-bcc3-40f9-9616-100cb9e56f24 {
  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-3d7de285-bcc3-40f9-9616-100cb9e56f24 {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-3d7de285-bcc3-40f9-9616-100cb9e56f24 {
  margin-left: 30px;
}
}
#s-3d7de285-bcc3-40f9-9616-100cb9e56f24 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (max-width: 767px){#s-3d7de285-bcc3-40f9-9616-100cb9e56f24 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


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

}

@media (min-width: 768px) {
[id="s-e364af4b-e169-43e4-a0a3-ca9d8a3e8095"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-e364af4b-e169-43e4-a0a3-ca9d8a3e8095"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-e364af4b-e169-43e4-a0a3-ca9d8a3e8095"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

}

#s-4db64f72-c5b9-4736-a0fa-7becf4323046 {
  margin-left: 30px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-4db64f72-c5b9-4736-a0fa-7becf4323046 {
  display: none;
}
#s-4db64f72-c5b9-4736-a0fa-7becf4323046, #wrap-s-4db64f72-c5b9-4736-a0fa-7becf4323046 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-4db64f72-c5b9-4736-a0fa-7becf4323046 {
  display: none;
}
#s-4db64f72-c5b9-4736-a0fa-7becf4323046, #wrap-s-4db64f72-c5b9-4736-a0fa-7becf4323046 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-4db64f72-c5b9-4736-a0fa-7becf4323046 {
  display: none;
}
#s-4db64f72-c5b9-4736-a0fa-7becf4323046, #wrap-s-4db64f72-c5b9-4736-a0fa-7becf4323046 { display: none !important; }}
#s-b5bbe19b-b27b-41ae-8954-e61bb35f08e6 {
  margin-top: 0px;
}
@media (max-width: 767px){#s-b5bbe19b-b27b-41ae-8954-e61bb35f08e6 {
  padding-left: 5%;
padding-right: 5%;
}
}
#s-b5bbe19b-b27b-41ae-8954-e61bb35f08e6 hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-32b22799-2563-4950-8e19-4132b0023e81 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-32b22799-2563-4950-8e19-4132b0023e81 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}


@media (max-width: 767px){#s-32b22799-2563-4950-8e19-4132b0023e81 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  
}


}
#s-87d51ef6-aa14-4153-beb3-8b8a496b49d0 {
  margin-bottom: 20px;
}
@media (max-width: 767px){#s-87d51ef6-aa14-4153-beb3-8b8a496b49d0 {
  margin-left: 5px;
margin-right: 5px;
}
}
@media (min-width: 0px) {
[id="s-87d51ef6-aa14-4153-beb3-8b8a496b49d0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-87d51ef6-aa14-4153-beb3-8b8a496b49d0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-87d51ef6-aa14-4153-beb3-8b8a496b49d0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-87d51ef6-aa14-4153-beb3-8b8a496b49d0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-d93f1833-a07f-4d01-9cf8-d5a6ae24c942 {
  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-d93f1833-a07f-4d01-9cf8-d5a6ae24c942 {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-d93f1833-a07f-4d01-9cf8-d5a6ae24c942 {
  margin-left: 30px;
}
}
#s-d93f1833-a07f-4d01-9cf8-d5a6ae24c942 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (max-width: 767px){#s-d93f1833-a07f-4d01-9cf8-d5a6ae24c942 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


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

}

@media (min-width: 768px) {
[id="s-cc0ed39c-3413-46e7-ac26-42dff523cfb4"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-cc0ed39c-3413-46e7-ac26-42dff523cfb4"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-cc0ed39c-3413-46e7-ac26-42dff523cfb4"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-cc0ed39c-3413-46e7-ac26-42dff523cfb4"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-cc0ed39c-3413-46e7-ac26-42dff523cfb4"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-cc0ed39c-3413-46e7-ac26-42dff523cfb4"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-f00eece3-c1d8-4548-9516-d06b66da9408 {
  margin-left: 30px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-f00eece3-c1d8-4548-9516-d06b66da9408 {
  display: none;
}
#s-f00eece3-c1d8-4548-9516-d06b66da9408, #wrap-s-f00eece3-c1d8-4548-9516-d06b66da9408 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f00eece3-c1d8-4548-9516-d06b66da9408 {
  display: none;
}
#s-f00eece3-c1d8-4548-9516-d06b66da9408, #wrap-s-f00eece3-c1d8-4548-9516-d06b66da9408 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f00eece3-c1d8-4548-9516-d06b66da9408 {
  display: none;
}
#s-f00eece3-c1d8-4548-9516-d06b66da9408, #wrap-s-f00eece3-c1d8-4548-9516-d06b66da9408 { display: none !important; }}
#s-9f3eddc9-c59f-47b0-93cd-d80920a869bc {
  margin-left: 50px;
margin-right: 50px;
padding-left: 0px;
padding-right: 0px;
}
@media (min-width: 1200px){#s-9f3eddc9-c59f-47b0-93cd-d80920a869bc {
  display: none;
}
#s-9f3eddc9-c59f-47b0-93cd-d80920a869bc, #wrap-s-9f3eddc9-c59f-47b0-93cd-d80920a869bc { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9f3eddc9-c59f-47b0-93cd-d80920a869bc {
  display: none;
}
#s-9f3eddc9-c59f-47b0-93cd-d80920a869bc, #wrap-s-9f3eddc9-c59f-47b0-93cd-d80920a869bc { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9f3eddc9-c59f-47b0-93cd-d80920a869bc {
  margin-left: 5%;
margin-right: 5%;
display: none;
}
#s-9f3eddc9-c59f-47b0-93cd-d80920a869bc, #wrap-s-9f3eddc9-c59f-47b0-93cd-d80920a869bc { display: none !important; }}@media (max-width: 767px){#s-9f3eddc9-c59f-47b0-93cd-d80920a869bc {
  margin-left: 30px;
}
}
#s-9f3eddc9-c59f-47b0-93cd-d80920a869bc hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-87985631-8c75-415f-9666-75083833471c {
  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-87985631-8c75-415f-9666-75083833471c {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-87985631-8c75-415f-9666-75083833471c {
  margin-left: 30px;
}
}
#s-87985631-8c75-415f-9666-75083833471c .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (max-width: 767px){#s-87985631-8c75-415f-9666-75083833471c .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


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

}

@media (min-width: 768px) {
[id="s-0638f2fd-2272-4521-bb0d-5c29a0a4a97d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-0638f2fd-2272-4521-bb0d-5c29a0a4a97d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-0638f2fd-2272-4521-bb0d-5c29a0a4a97d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

}

#s-9a24fafa-2c0f-4276-bcdb-74860d2f08cc {
  margin-left: 30px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-9a24fafa-2c0f-4276-bcdb-74860d2f08cc {
  display: none;
}
#s-9a24fafa-2c0f-4276-bcdb-74860d2f08cc, #wrap-s-9a24fafa-2c0f-4276-bcdb-74860d2f08cc { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9a24fafa-2c0f-4276-bcdb-74860d2f08cc {
  display: none;
}
#s-9a24fafa-2c0f-4276-bcdb-74860d2f08cc, #wrap-s-9a24fafa-2c0f-4276-bcdb-74860d2f08cc { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9a24fafa-2c0f-4276-bcdb-74860d2f08cc {
  display: none;
}
#s-9a24fafa-2c0f-4276-bcdb-74860d2f08cc, #wrap-s-9a24fafa-2c0f-4276-bcdb-74860d2f08cc { display: none !important; }}
#s-2e16b062-8a57-466e-b3ad-c4310d9dde40 {
  margin-top: 0px;
margin-left: 2%;
margin-right: 2%;
}

#s-2e16b062-8a57-466e-b3ad-c4310d9dde40 hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-f079e312-5d49-407f-88c0-896fe6ce337b {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-f079e312-5d49-407f-88c0-896fe6ce337b .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}


@media (max-width: 767px){#s-f079e312-5d49-407f-88c0-896fe6ce337b .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  
}


}
#s-4576b1c7-cba5-471e-b90c-d83110342d02 {
  margin-bottom: 20px;
}
@media (max-width: 767px){#s-4576b1c7-cba5-471e-b90c-d83110342d02 {
  margin-left: 5px;
margin-right: 5px;
}
}
@media (min-width: 0px) {
[id="s-4576b1c7-cba5-471e-b90c-d83110342d02"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4576b1c7-cba5-471e-b90c-d83110342d02"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4576b1c7-cba5-471e-b90c-d83110342d02"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4576b1c7-cba5-471e-b90c-d83110342d02"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-f8f69de1-3076-4f62-b847-706060cdd34e {
  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-f8f69de1-3076-4f62-b847-706060cdd34e {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-f8f69de1-3076-4f62-b847-706060cdd34e {
  margin-left: 30px;
}
}
#s-f8f69de1-3076-4f62-b847-706060cdd34e .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (max-width: 767px){#s-f8f69de1-3076-4f62-b847-706060cdd34e .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


}
#s-99c7acb1-d7d3-420e-a0f4-1122b845a215 {
  margin-left: 5%;
margin-bottom: 10px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-99c7acb1-d7d3-420e-a0f4-1122b845a215 {
  margin-left: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-99c7acb1-d7d3-420e-a0f4-1122b845a215 {
  margin-left: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-99c7acb1-d7d3-420e-a0f4-1122b845a215 {
  
}
}@media (max-width: 767px){#s-99c7acb1-d7d3-420e-a0f4-1122b845a215 {
  display: none;
}
#s-99c7acb1-d7d3-420e-a0f4-1122b845a215, #wrap-s-99c7acb1-d7d3-420e-a0f4-1122b845a215 { display: none !important; }}
@media (min-width: 0px) {
[id="s-99c7acb1-d7d3-420e-a0f4-1122b845a215"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-99c7acb1-d7d3-420e-a0f4-1122b845a215"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-99c7acb1-d7d3-420e-a0f4-1122b845a215"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-99c7acb1-d7d3-420e-a0f4-1122b845a215"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-99c7acb1-d7d3-420e-a0f4-1122b845a215"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-99c7acb1-d7d3-420e-a0f4-1122b845a215"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-99c7acb1-d7d3-420e-a0f4-1122b845a215"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-b42ec62a-7af4-46a1-8361-9944547b0524 {
  margin-left: 30px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-b42ec62a-7af4-46a1-8361-9944547b0524 {
  display: none;
}
#s-b42ec62a-7af4-46a1-8361-9944547b0524, #wrap-s-b42ec62a-7af4-46a1-8361-9944547b0524 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b42ec62a-7af4-46a1-8361-9944547b0524 {
  display: none;
}
#s-b42ec62a-7af4-46a1-8361-9944547b0524, #wrap-s-b42ec62a-7af4-46a1-8361-9944547b0524 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-b42ec62a-7af4-46a1-8361-9944547b0524 {
  display: none;
}
#s-b42ec62a-7af4-46a1-8361-9944547b0524, #wrap-s-b42ec62a-7af4-46a1-8361-9944547b0524 { display: none !important; }}
#s-90299544-72eb-4854-87e5-fb87fd1fdb15 {
  margin-left: 50px;
margin-right: 50px;
padding-left: 0px;
padding-right: 0px;
}
@media (min-width: 1200px){#s-90299544-72eb-4854-87e5-fb87fd1fdb15 {
  display: none;
}
#s-90299544-72eb-4854-87e5-fb87fd1fdb15, #wrap-s-90299544-72eb-4854-87e5-fb87fd1fdb15 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-90299544-72eb-4854-87e5-fb87fd1fdb15 {
  display: none;
}
#s-90299544-72eb-4854-87e5-fb87fd1fdb15, #wrap-s-90299544-72eb-4854-87e5-fb87fd1fdb15 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-90299544-72eb-4854-87e5-fb87fd1fdb15 {
  margin-left: 5%;
margin-right: 5%;
display: none;
}
#s-90299544-72eb-4854-87e5-fb87fd1fdb15, #wrap-s-90299544-72eb-4854-87e5-fb87fd1fdb15 { display: none !important; }}@media (max-width: 767px){#s-90299544-72eb-4854-87e5-fb87fd1fdb15 {
  margin-left: 30px;
}
}
#s-90299544-72eb-4854-87e5-fb87fd1fdb15 hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-be47ae72-0ff6-440b-8518-87a86bb89a97 {
  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-be47ae72-0ff6-440b-8518-87a86bb89a97 {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-be47ae72-0ff6-440b-8518-87a86bb89a97 {
  margin-left: 30px;
}
}
#s-be47ae72-0ff6-440b-8518-87a86bb89a97 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (max-width: 767px){#s-be47ae72-0ff6-440b-8518-87a86bb89a97 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  
  
  
}


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

}

@media (min-width: 768px) {
[id="s-0ce57def-08a5-44b9-9dd2-59e6ad1c5480"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-0ce57def-08a5-44b9-9dd2-59e6ad1c5480"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-0ce57def-08a5-44b9-9dd2-59e6ad1c5480"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-0ce57def-08a5-44b9-9dd2-59e6ad1c5480"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-0ce57def-08a5-44b9-9dd2-59e6ad1c5480"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-0ce57def-08a5-44b9-9dd2-59e6ad1c5480"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-6948ea03-aa09-4299-9344-f2675fb2c00a {
  margin-left: 30px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-6948ea03-aa09-4299-9344-f2675fb2c00a {
  display: none;
}
#s-6948ea03-aa09-4299-9344-f2675fb2c00a, #wrap-s-6948ea03-aa09-4299-9344-f2675fb2c00a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6948ea03-aa09-4299-9344-f2675fb2c00a {
  display: none;
}
#s-6948ea03-aa09-4299-9344-f2675fb2c00a, #wrap-s-6948ea03-aa09-4299-9344-f2675fb2c00a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6948ea03-aa09-4299-9344-f2675fb2c00a {
  display: none;
}
#s-6948ea03-aa09-4299-9344-f2675fb2c00a, #wrap-s-6948ea03-aa09-4299-9344-f2675fb2c00a { display: none !important; }}
#s-24feb373-99bd-4e87-a32e-46846ff8ecdb {
  margin-left: 50px;
margin-right: 50px;
padding-left: 0px;
padding-right: 0px;
}
@media (min-width: 1200px){#s-24feb373-99bd-4e87-a32e-46846ff8ecdb {
  display: none;
}
#s-24feb373-99bd-4e87-a32e-46846ff8ecdb, #wrap-s-24feb373-99bd-4e87-a32e-46846ff8ecdb { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-24feb373-99bd-4e87-a32e-46846ff8ecdb {
  display: none;
}
#s-24feb373-99bd-4e87-a32e-46846ff8ecdb, #wrap-s-24feb373-99bd-4e87-a32e-46846ff8ecdb { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-24feb373-99bd-4e87-a32e-46846ff8ecdb {
  margin-left: 5%;
margin-right: 5%;
display: none;
}
#s-24feb373-99bd-4e87-a32e-46846ff8ecdb, #wrap-s-24feb373-99bd-4e87-a32e-46846ff8ecdb { display: none !important; }}@media (max-width: 767px){#s-24feb373-99bd-4e87-a32e-46846ff8ecdb {
  margin-left: 30px;
display: none;
}
#s-24feb373-99bd-4e87-a32e-46846ff8ecdb, #wrap-s-24feb373-99bd-4e87-a32e-46846ff8ecdb { display: none !important; }}
#s-24feb373-99bd-4e87-a32e-46846ff8ecdb hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-97143008-cb64-49b2-85c5-c144c0358771 {
  margin-top: 0px;
margin-left: 2%;
margin-right: 2%;
}

#s-97143008-cb64-49b2-85c5-c144c0358771 hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-d0961d0a-d500-425f-bf91-8689ae8d6c3c {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d0961d0a-d500-425f-bf91-8689ae8d6c3c .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}


@media (max-width: 767px){#s-d0961d0a-d500-425f-bf91-8689ae8d6c3c .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  
}


}
#s-bc6e11cd-6592-4c22-b770-fcdce738d27d {
  margin-bottom: 20px;
}
@media (max-width: 767px){#s-bc6e11cd-6592-4c22-b770-fcdce738d27d {
  margin-left: 5px;
margin-right: 5px;
}
}
@media (min-width: 0px) {
[id="s-bc6e11cd-6592-4c22-b770-fcdce738d27d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bc6e11cd-6592-4c22-b770-fcdce738d27d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bc6e11cd-6592-4c22-b770-fcdce738d27d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bc6e11cd-6592-4c22-b770-fcdce738d27d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-59e15436-2adf-492e-ad30-23fc9af613e8 {
  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-59e15436-2adf-492e-ad30-23fc9af613e8 {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-59e15436-2adf-492e-ad30-23fc9af613e8 {
  margin-left: 30px;
}
}
#s-59e15436-2adf-492e-ad30-23fc9af613e8 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (max-width: 767px){#s-59e15436-2adf-492e-ad30-23fc9af613e8 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


}
#s-92f052a8-790a-439b-9b2c-bfa891b05d8f {
  margin-left: 5%;
margin-bottom: 10px;
margin-right: 0px;
}
@media (min-width: 1200px){#s-92f052a8-790a-439b-9b2c-bfa891b05d8f {
  margin-left: 50px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-92f052a8-790a-439b-9b2c-bfa891b05d8f {
  margin-left: 50px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-92f052a8-790a-439b-9b2c-bfa891b05d8f {
  
}
}@media (max-width: 767px){#s-92f052a8-790a-439b-9b2c-bfa891b05d8f {
  display: none;
}
#s-92f052a8-790a-439b-9b2c-bfa891b05d8f, #wrap-s-92f052a8-790a-439b-9b2c-bfa891b05d8f { display: none !important; }}
@media (min-width: 0px) {
[id="s-92f052a8-790a-439b-9b2c-bfa891b05d8f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-92f052a8-790a-439b-9b2c-bfa891b05d8f"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-92f052a8-790a-439b-9b2c-bfa891b05d8f"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-92f052a8-790a-439b-9b2c-bfa891b05d8f"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-92f052a8-790a-439b-9b2c-bfa891b05d8f"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-92f052a8-790a-439b-9b2c-bfa891b05d8f"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-92f052a8-790a-439b-9b2c-bfa891b05d8f"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

}

#s-adcfaf6f-9fc4-4f60-91df-6f7fec8c3927 {
  margin-left: 30px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-adcfaf6f-9fc4-4f60-91df-6f7fec8c3927 {
  display: none;
}
#s-adcfaf6f-9fc4-4f60-91df-6f7fec8c3927, #wrap-s-adcfaf6f-9fc4-4f60-91df-6f7fec8c3927 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-adcfaf6f-9fc4-4f60-91df-6f7fec8c3927 {
  display: none;
}
#s-adcfaf6f-9fc4-4f60-91df-6f7fec8c3927, #wrap-s-adcfaf6f-9fc4-4f60-91df-6f7fec8c3927 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-adcfaf6f-9fc4-4f60-91df-6f7fec8c3927 {
  display: none;
}
#s-adcfaf6f-9fc4-4f60-91df-6f7fec8c3927, #wrap-s-adcfaf6f-9fc4-4f60-91df-6f7fec8c3927 { display: none !important; }}
#s-c12a4b22-b370-4f82-873f-0aa63a8794a4 {
  margin-left: 50px;
margin-right: 50px;
padding-left: 0px;
padding-right: 0px;
}
@media (min-width: 1200px){#s-c12a4b22-b370-4f82-873f-0aa63a8794a4 {
  display: none;
}
#s-c12a4b22-b370-4f82-873f-0aa63a8794a4, #wrap-s-c12a4b22-b370-4f82-873f-0aa63a8794a4 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c12a4b22-b370-4f82-873f-0aa63a8794a4 {
  display: none;
}
#s-c12a4b22-b370-4f82-873f-0aa63a8794a4, #wrap-s-c12a4b22-b370-4f82-873f-0aa63a8794a4 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c12a4b22-b370-4f82-873f-0aa63a8794a4 {
  margin-left: 5%;
margin-right: 5%;
display: none;
}
#s-c12a4b22-b370-4f82-873f-0aa63a8794a4, #wrap-s-c12a4b22-b370-4f82-873f-0aa63a8794a4 { display: none !important; }}@media (max-width: 767px){#s-c12a4b22-b370-4f82-873f-0aa63a8794a4 {
  margin-left: 30px;
}
}
#s-c12a4b22-b370-4f82-873f-0aa63a8794a4 hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-769e3e04-8e74-4846-88d4-6e93abd98181 {
  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-769e3e04-8e74-4846-88d4-6e93abd98181 {
  margin-left: 5%;
}
}@media (max-width: 767px){#s-769e3e04-8e74-4846-88d4-6e93abd98181 {
  margin-left: 30px;
}
}
#s-769e3e04-8e74-4846-88d4-6e93abd98181 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


@media (max-width: 767px){#s-769e3e04-8e74-4846-88d4-6e93abd98181 .shogun-heading-component h4 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


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

}

@media (min-width: 768px) {
[id="s-cabd23ce-80a7-4c70-9573-8c77e3accb2c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-cabd23ce-80a7-4c70-9573-8c77e3accb2c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-cabd23ce-80a7-4c70-9573-8c77e3accb2c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

}

#s-c2fb02e2-e195-415f-ad63-0d262e825996 {
  margin-left: 30px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-c2fb02e2-e195-415f-ad63-0d262e825996 {
  display: none;
}
#s-c2fb02e2-e195-415f-ad63-0d262e825996, #wrap-s-c2fb02e2-e195-415f-ad63-0d262e825996 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c2fb02e2-e195-415f-ad63-0d262e825996 {
  display: none;
}
#s-c2fb02e2-e195-415f-ad63-0d262e825996, #wrap-s-c2fb02e2-e195-415f-ad63-0d262e825996 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c2fb02e2-e195-415f-ad63-0d262e825996 {
  display: none;
}
#s-c2fb02e2-e195-415f-ad63-0d262e825996, #wrap-s-c2fb02e2-e195-415f-ad63-0d262e825996 { display: none !important; }}
#s-5b4f2828-f50d-491b-ba87-a66587a2b796 {
  margin-top: 0px;
margin-left: 2%;
margin-right: 2%;
}

#s-5b4f2828-f50d-491b-ba87-a66587a2b796 hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-c17f2ac2-4987-4711-8a15-757a1286b2b2 {
  margin-top: 30px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c17f2ac2-4987-4711-8a15-757a1286b2b2 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}


@media (max-width: 767px){#s-c17f2ac2-4987-4711-8a15-757a1286b2b2 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  
}


}
#s-03d6d083-d444-46a2-ab70-68a206dec77e {
  margin-top: 3%;
margin-left: 5%;
margin-bottom: 2%;
margin-right: 5%;
}
@media (max-width: 767px){#s-03d6d083-d444-46a2-ab70-68a206dec77e {
  display: none;
}
#s-03d6d083-d444-46a2-ab70-68a206dec77e, #wrap-s-03d6d083-d444-46a2-ab70-68a206dec77e { display: none !important; }}
@media (min-width: 0px) {
[id="s-03d6d083-d444-46a2-ab70-68a206dec77e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-03d6d083-d444-46a2-ab70-68a206dec77e"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-03d6d083-d444-46a2-ab70-68a206dec77e"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-03d6d083-d444-46a2-ab70-68a206dec77e"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-04d7a391-5f00-4943-80fc-bc1b7c2996a2 {
  margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
margin-right: 30px;
}
@media (min-width: 1200px){#s-04d7a391-5f00-4943-80fc-bc1b7c2996a2 {
  display: none;
}
#s-04d7a391-5f00-4943-80fc-bc1b7c2996a2, #wrap-s-04d7a391-5f00-4943-80fc-bc1b7c2996a2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-04d7a391-5f00-4943-80fc-bc1b7c2996a2 {
  display: none;
}
#s-04d7a391-5f00-4943-80fc-bc1b7c2996a2, #wrap-s-04d7a391-5f00-4943-80fc-bc1b7c2996a2 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-04d7a391-5f00-4943-80fc-bc1b7c2996a2 {
  display: none;
}
#s-04d7a391-5f00-4943-80fc-bc1b7c2996a2, #wrap-s-04d7a391-5f00-4943-80fc-bc1b7c2996a2 { display: none !important; }}
#s-6b62c758-4fec-4e7b-a74b-42370591186b {
  margin-top: 0px;
margin-left: 2%;
margin-right: 2%;
}

#s-6b62c758-4fec-4e7b-a74b-42370591186b hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-6e148ba2-8347-407e-82c2-9603ecdb02d8 {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6e148ba2-8347-407e-82c2-9603ecdb02d8 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}


@media (max-width: 767px){#s-6e148ba2-8347-407e-82c2-9603ecdb02d8 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  
}


}
.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-aa81c7c3-1128-4540-8863-4bcaa3b9f8a7 {
  text-align: center;
}







  #s-aa81c7c3-1128-4540-8863-4bcaa3b9f8a7 img.shogun-image {
    

    
    
    
  }


#s-aa81c7c3-1128-4540-8863-4bcaa3b9f8a7 .shogun-image-content {
  
    align-items: center;
  
}

#s-0698f591-380e-462c-b844-bb837f14a35d {
  margin-bottom: 10px;
}

#s-eeebc1f8-465f-43ff-9eab-7780d28389a8 {
  margin-bottom: 10px;
}

#s-2b22af01-e1d9-44ba-a95e-f41fc9b7df76 {
  margin-bottom: 10px;
}

#s-40be147f-53d0-4c50-941b-f026f785b327 {
  margin-bottom: 5%;
}

#s-eb478d55-150e-4ca0-835b-587406e28108 {
  min-height: 50px;
}








#s-eb478d55-150e-4ca0-835b-587406e28108 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eb478d55-150e-4ca0-835b-587406e28108.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b3cb7f46-cdd3-4f9a-a1b6-3c2f2186e56a {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-b3cb7f46-cdd3-4f9a-a1b6-3c2f2186e56a {
  display: none;
}
#s-b3cb7f46-cdd3-4f9a-a1b6-3c2f2186e56a, #wrap-s-b3cb7f46-cdd3-4f9a-a1b6-3c2f2186e56a { display: none !important; }}@media (max-width: 767px){#s-b3cb7f46-cdd3-4f9a-a1b6-3c2f2186e56a {
  display: none;
}
#s-b3cb7f46-cdd3-4f9a-a1b6-3c2f2186e56a, #wrap-s-b3cb7f46-cdd3-4f9a-a1b6-3c2f2186e56a { display: none !important; }}






  #s-b3cb7f46-cdd3-4f9a-a1b6-3c2f2186e56a img.shogun-image {
    

    
    
    
  }


#s-b3cb7f46-cdd3-4f9a-a1b6-3c2f2186e56a .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-a28773e5-7d16-4b85-9622-a500db8b554a {
  margin-top: 10%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a28773e5-7d16-4b85-9622-a500db8b554a .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 60px;
  
  
  
}



@media (min-width: 0px) {
[id="s-1a009d39-09af-4801-8916-085e29ee7749"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1a009d39-09af-4801-8916-085e29ee7749"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-1a009d39-09af-4801-8916-085e29ee7749"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-1a009d39-09af-4801-8916-085e29ee7749"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-1a009d39-09af-4801-8916-085e29ee7749"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-1a009d39-09af-4801-8916-085e29ee7749"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-1a009d39-09af-4801-8916-085e29ee7749"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 0px) {
[id="s-fff8ce4c-c7c2-434e-8739-4e6e64bcfe20"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fff8ce4c-c7c2-434e-8739-4e6e64bcfe20"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-fff8ce4c-c7c2-434e-8739-4e6e64bcfe20"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-fff8ce4c-c7c2-434e-8739-4e6e64bcfe20"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-6a2f1140-03ff-45ee-bc00-4f1082c17623 {
  min-height: 50px;
}








#s-6a2f1140-03ff-45ee-bc00-4f1082c17623 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6a2f1140-03ff-45ee-bc00-4f1082c17623.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9b119631-b2bc-4f37-906c-0e12e5b5ab73 {
  box-shadow:2px 0px 0px 0px rgba(255, 255, 255, 1);
}

#s-2aa8b4df-41a4-4748-b1f9-d6ef0ed39029 {
  box-shadow:2px 0px 0px 0px rgba(255, 255, 255, 1);
}

#s-11634b2d-0d3f-4136-a4f2-d3bd6a369c6c {
  box-shadow:2px 0px 0px 0px rgba(255, 255, 255, 1);
}

#s-e4f679a1-20d9-49a4-b1de-e9121c1eee8d {
  box-shadow:2px 0px 0px 0px rgba(255, 255, 255, 1);
}

#s-728ea6ee-989a-4ac7-b6de-124444c6edf7 {
  box-shadow:2px 0px 0px 0px rgba(255, 255, 255, 1);
}

#s-7d4dbb45-76d1-4153-99a6-9dd248f54ce2 {
  text-align: center;
}
@media (min-width: 1200px){#s-7d4dbb45-76d1-4153-99a6-9dd248f54ce2 {
  display: none;
}
#s-7d4dbb45-76d1-4153-99a6-9dd248f54ce2, #wrap-s-7d4dbb45-76d1-4153-99a6-9dd248f54ce2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7d4dbb45-76d1-4153-99a6-9dd248f54ce2 {
  display: none;
}
#s-7d4dbb45-76d1-4153-99a6-9dd248f54ce2, #wrap-s-7d4dbb45-76d1-4153-99a6-9dd248f54ce2 { display: none !important; }}






  #s-7d4dbb45-76d1-4153-99a6-9dd248f54ce2 img.shogun-image {
    

    
    
    
  }


#s-7d4dbb45-76d1-4153-99a6-9dd248f54ce2 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-50a2140a-635a-4c45-8da7-cad25f26e565 {
  margin-left: 3%;
margin-right: 3%;
min-height: 50px;
}
@media (max-width: 767px){#s-50a2140a-635a-4c45-8da7-cad25f26e565 {
  margin-bottom: 50px;
}
}







#s-50a2140a-635a-4c45-8da7-cad25f26e565 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-50a2140a-635a-4c45-8da7-cad25f26e565.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0f181596-9fdb-4969-af45-6d57b06031a4 {
  margin-top: 2%;
margin-bottom: 2%;
text-align: center;
}
@media (max-width: 767px){#s-0f181596-9fdb-4969-af45-6d57b06031a4 {
  display: none;
}
#s-0f181596-9fdb-4969-af45-6d57b06031a4, #wrap-s-0f181596-9fdb-4969-af45-6d57b06031a4 { display: none !important; }}






  #s-0f181596-9fdb-4969-af45-6d57b06031a4 img.shogun-image {
    

    
    
    
  }


#s-0f181596-9fdb-4969-af45-6d57b06031a4 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-7d006d10-6bc2-4d62-88d1-38aaab233999 {
  margin-top: 4%;
margin-bottom: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-7d006d10-6bc2-4d62-88d1-38aaab233999 {
  margin-top: 2%;
margin-right: 2%;
}
}
#s-7d006d10-6bc2-4d62-88d1-38aaab233999 .shogun-heading-component h2 {
  color: rgba(76, 76, 76, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}


@media (min-width: 1200px){#s-7d006d10-6bc2-4d62-88d1-38aaab233999 .shogun-heading-component h2 {
  color: rgba(76, 76, 76, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-7d006d10-6bc2-4d62-88d1-38aaab233999 .shogun-heading-component h2 {
  color: rgba(76, 76, 76, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  
  
  
}


}
#s-1400b3e8-ff37-467f-ab65-10ad1b906efc {
  margin-top: 50px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-1400b3e8-ff37-467f-ab65-10ad1b906efc {
  display: none;
}
#s-1400b3e8-ff37-467f-ab65-10ad1b906efc, #wrap-s-1400b3e8-ff37-467f-ab65-10ad1b906efc { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1400b3e8-ff37-467f-ab65-10ad1b906efc {
  display: none;
}
#s-1400b3e8-ff37-467f-ab65-10ad1b906efc, #wrap-s-1400b3e8-ff37-467f-ab65-10ad1b906efc { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1400b3e8-ff37-467f-ab65-10ad1b906efc {
  display: none;
}
#s-1400b3e8-ff37-467f-ab65-10ad1b906efc, #wrap-s-1400b3e8-ff37-467f-ab65-10ad1b906efc { display: none !important; }}
#s-1400b3e8-ff37-467f-ab65-10ad1b906efc .shogun-heading-component h2 {
  color: rgba(76, 76, 76, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-7d27476d-06e3-456f-aae9-c498a7c0bece {
  text-align: center;
}
@media (min-width: 1200px){#s-7d27476d-06e3-456f-aae9-c498a7c0bece {
  display: none;
}
#s-7d27476d-06e3-456f-aae9-c498a7c0bece, #wrap-s-7d27476d-06e3-456f-aae9-c498a7c0bece { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7d27476d-06e3-456f-aae9-c498a7c0bece {
  display: none;
}
#s-7d27476d-06e3-456f-aae9-c498a7c0bece, #wrap-s-7d27476d-06e3-456f-aae9-c498a7c0bece { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7d27476d-06e3-456f-aae9-c498a7c0bece {
  display: none;
}
#s-7d27476d-06e3-456f-aae9-c498a7c0bece, #wrap-s-7d27476d-06e3-456f-aae9-c498a7c0bece { display: none !important; }}






  #s-7d27476d-06e3-456f-aae9-c498a7c0bece img.shogun-image {
    

    
    
    
  }


#s-7d27476d-06e3-456f-aae9-c498a7c0bece .shogun-image-content {
  
    align-items: center;
  
}

#s-a5605850-19de-4dd5-bf93-ddd9a70c57bb {
  margin-top: 3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a5605850-19de-4dd5-bf93-ddd9a70c57bb .shogun-heading-component h2 {
  color: rgba(76, 76, 76, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-ec2603d6-de0a-44e2-b0e2-dd16bef36506 {
  text-align: center;
}
@media (max-width: 767px){#s-ec2603d6-de0a-44e2-b0e2-dd16bef36506 {
  display: none;
}
#s-ec2603d6-de0a-44e2-b0e2-dd16bef36506, #wrap-s-ec2603d6-de0a-44e2-b0e2-dd16bef36506 { display: none !important; }}






  #s-ec2603d6-de0a-44e2-b0e2-dd16bef36506 img.shogun-image {
    

    
    
    
  }


#s-ec2603d6-de0a-44e2-b0e2-dd16bef36506 .shogun-image-content {
  
    align-items: center;
  
}

#s-2bfaf310-5caf-46a4-a66b-f3f9070f50ce {
  text-align: center;
}
@media (min-width: 1200px){#s-2bfaf310-5caf-46a4-a66b-f3f9070f50ce {
  display: none;
}
#s-2bfaf310-5caf-46a4-a66b-f3f9070f50ce, #wrap-s-2bfaf310-5caf-46a4-a66b-f3f9070f50ce { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2bfaf310-5caf-46a4-a66b-f3f9070f50ce {
  display: none;
}
#s-2bfaf310-5caf-46a4-a66b-f3f9070f50ce, #wrap-s-2bfaf310-5caf-46a4-a66b-f3f9070f50ce { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2bfaf310-5caf-46a4-a66b-f3f9070f50ce {
  display: none;
}
#s-2bfaf310-5caf-46a4-a66b-f3f9070f50ce, #wrap-s-2bfaf310-5caf-46a4-a66b-f3f9070f50ce { display: none !important; }}@media (max-width: 767px){#s-2bfaf310-5caf-46a4-a66b-f3f9070f50ce {
  
}
}






  #s-2bfaf310-5caf-46a4-a66b-f3f9070f50ce img.shogun-image {
    

    
    
    
  }


#s-2bfaf310-5caf-46a4-a66b-f3f9070f50ce .shogun-image-content {
  
    align-items: center;
  
}

#s-6f55c4e7-47c6-4101-9f79-b2d5eddf96da {
  margin-top: 3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6f55c4e7-47c6-4101-9f79-b2d5eddf96da .shogun-heading-component h2 {
  color: rgba(76, 76, 76, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-23916191-fb36-40e1-862b-3956ee362bfd {
  text-align: center;
}
@media (min-width: 1200px){#s-23916191-fb36-40e1-862b-3956ee362bfd {
  display: none;
}
#s-23916191-fb36-40e1-862b-3956ee362bfd, #wrap-s-23916191-fb36-40e1-862b-3956ee362bfd { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-23916191-fb36-40e1-862b-3956ee362bfd {
  display: none;
}
#s-23916191-fb36-40e1-862b-3956ee362bfd, #wrap-s-23916191-fb36-40e1-862b-3956ee362bfd { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-23916191-fb36-40e1-862b-3956ee362bfd {
  display: none;
}
#s-23916191-fb36-40e1-862b-3956ee362bfd, #wrap-s-23916191-fb36-40e1-862b-3956ee362bfd { display: none !important; }}@media (max-width: 767px){#s-23916191-fb36-40e1-862b-3956ee362bfd {
  
}
}






  #s-23916191-fb36-40e1-862b-3956ee362bfd img.shogun-image {
    

    
    
    
  }


#s-23916191-fb36-40e1-862b-3956ee362bfd .shogun-image-content {
  
    align-items: center;
  
}

#s-9fa006e7-b1d8-4185-9f97-d132a6583db9 {
  text-align: center;
}
@media (max-width: 767px){#s-9fa006e7-b1d8-4185-9f97-d132a6583db9 {
  display: none;
}
#s-9fa006e7-b1d8-4185-9f97-d132a6583db9, #wrap-s-9fa006e7-b1d8-4185-9f97-d132a6583db9 { display: none !important; }}






  #s-9fa006e7-b1d8-4185-9f97-d132a6583db9 img.shogun-image {
    

    
    
    
  }


#s-9fa006e7-b1d8-4185-9f97-d132a6583db9 .shogun-image-content {
  
    align-items: center;
  
}

#s-52cbe4a8-d9d5-4903-bbbf-5fc467c17b47 {
  margin-top: 3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-52cbe4a8-d9d5-4903-bbbf-5fc467c17b47 .shogun-heading-component h2 {
  color: rgba(76, 76, 76, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 50px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-52cbe4a8-d9d5-4903-bbbf-5fc467c17b47 .shogun-heading-component h2 {
  color: rgba(76, 76, 76, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}


}@media (max-width: 767px){#s-52cbe4a8-d9d5-4903-bbbf-5fc467c17b47 .shogun-heading-component h2 {
  color: rgba(76, 76, 76, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}


}
#s-d0aed0c8-f644-4029-80ba-0b16cd1642f4 {
  text-align: center;
}
@media (min-width: 1200px){#s-d0aed0c8-f644-4029-80ba-0b16cd1642f4 {
  display: none;
}
#s-d0aed0c8-f644-4029-80ba-0b16cd1642f4, #wrap-s-d0aed0c8-f644-4029-80ba-0b16cd1642f4 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d0aed0c8-f644-4029-80ba-0b16cd1642f4 {
  display: none;
}
#s-d0aed0c8-f644-4029-80ba-0b16cd1642f4, #wrap-s-d0aed0c8-f644-4029-80ba-0b16cd1642f4 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d0aed0c8-f644-4029-80ba-0b16cd1642f4 {
  display: none;
}
#s-d0aed0c8-f644-4029-80ba-0b16cd1642f4, #wrap-s-d0aed0c8-f644-4029-80ba-0b16cd1642f4 { display: none !important; }}@media (max-width: 767px){#s-d0aed0c8-f644-4029-80ba-0b16cd1642f4 {
  
}
}






  #s-d0aed0c8-f644-4029-80ba-0b16cd1642f4 img.shogun-image {
    

    
    
    
  }


#s-d0aed0c8-f644-4029-80ba-0b16cd1642f4 .shogun-image-content {
  
    align-items: center;
  
}

#s-92f2d8b9-f207-41ed-9da1-6ffbd6061ba1 {
  text-align: center;
}
@media (max-width: 767px){#s-92f2d8b9-f207-41ed-9da1-6ffbd6061ba1 {
  display: none;
}
#s-92f2d8b9-f207-41ed-9da1-6ffbd6061ba1, #wrap-s-92f2d8b9-f207-41ed-9da1-6ffbd6061ba1 { display: none !important; }}






  #s-92f2d8b9-f207-41ed-9da1-6ffbd6061ba1 img.shogun-image {
    

    
    
    
  }


#s-92f2d8b9-f207-41ed-9da1-6ffbd6061ba1 .shogun-image-content {
  
    align-items: center;
  
}

#s-36a298d7-ac45-4e81-b750-f419e5ee5508 {
  margin-top: 4%;
margin-left: 5%;
margin-right: 5%;
}

#s-d0c3937d-b0ed-4184-be16-db8a9d78b6ea {
  margin-top: 3%;
margin-bottom: 3%;
}
@media (min-width: 768px) and (max-width: 991px){#s-d0c3937d-b0ed-4184-be16-db8a9d78b6ea {
  display: none;
}
#s-d0c3937d-b0ed-4184-be16-db8a9d78b6ea, #wrap-s-d0c3937d-b0ed-4184-be16-db8a9d78b6ea { display: none !important; }}@media (max-width: 767px){#s-d0c3937d-b0ed-4184-be16-db8a9d78b6ea {
  display: none;
}
#s-d0c3937d-b0ed-4184-be16-db8a9d78b6ea, #wrap-s-d0c3937d-b0ed-4184-be16-db8a9d78b6ea { display: none !important; }}
@media (min-width: 0px) {
[id="s-d0c3937d-b0ed-4184-be16-db8a9d78b6ea"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d0c3937d-b0ed-4184-be16-db8a9d78b6ea"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-d0c3937d-b0ed-4184-be16-db8a9d78b6ea"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-d0c3937d-b0ed-4184-be16-db8a9d78b6ea"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-061de36f-0fb2-4532-99c9-c70ae1331d0c {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-bottom: 0px;
min-height: 500px;
background-position: center center;
}








#s-061de36f-0fb2-4532-99c9-c70ae1331d0c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-061de36f-0fb2-4532-99c9-c70ae1331d0c.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-805d6789-3258-44f1-a59e-c299e67f1e44 {
  margin-top: 30px;
}

#s-17230516-b37a-4503-b300-558ccf05097a {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 0px;
margin-bottom: 0px;
min-height: 500px;
background-position: center center;
}








#s-17230516-b37a-4503-b300-558ccf05097a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-17230516-b37a-4503-b300-558ccf05097a.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-4f3d7806-9056-4ed6-87f4-7361010b10ab {
  margin-top: 30px;
}

#s-3a2036bc-626c-4a90-9e1d-2f0be10c6df5 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 500px;
background-position: center center;
}








#s-3a2036bc-626c-4a90-9e1d-2f0be10c6df5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3a2036bc-626c-4a90-9e1d-2f0be10c6df5.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-a05d586c-7e6b-4301-a4e6-37e69610c155 {
  margin-top: 30px;
}

#s-78ca7111-7190-4b1b-afba-03db4b1452ad {
  margin-top: 3%;
margin-bottom: 4%;
}
@media (min-width: 1200px){#s-78ca7111-7190-4b1b-afba-03db4b1452ad {
  display: none;
}
#s-78ca7111-7190-4b1b-afba-03db4b1452ad, #wrap-s-78ca7111-7190-4b1b-afba-03db4b1452ad { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-78ca7111-7190-4b1b-afba-03db4b1452ad {
  display: none;
}
#s-78ca7111-7190-4b1b-afba-03db4b1452ad, #wrap-s-78ca7111-7190-4b1b-afba-03db4b1452ad { display: none !important; }}@media (max-width: 767px){#s-78ca7111-7190-4b1b-afba-03db4b1452ad {
  display: none;
}
#s-78ca7111-7190-4b1b-afba-03db4b1452ad, #wrap-s-78ca7111-7190-4b1b-afba-03db4b1452ad { display: none !important; }}
@media (min-width: 0px) {
[id="s-78ca7111-7190-4b1b-afba-03db4b1452ad"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-78ca7111-7190-4b1b-afba-03db4b1452ad"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-78ca7111-7190-4b1b-afba-03db4b1452ad"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-78ca7111-7190-4b1b-afba-03db4b1452ad"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-de0c54aa-278d-44e3-a41b-6decb0b0962d {
  text-align: center;
}







  #s-de0c54aa-278d-44e3-a41b-6decb0b0962d img.shogun-image {
    

    
    
    
  }


#s-de0c54aa-278d-44e3-a41b-6decb0b0962d .shogun-image-content {
  
    align-items: center;
  
}

#s-89d4ce28-aa2b-4d87-a039-138f31c8fa74 {
  text-align: center;
}







  #s-89d4ce28-aa2b-4d87-a039-138f31c8fa74 img.shogun-image {
    

    
    
    
  }


#s-89d4ce28-aa2b-4d87-a039-138f31c8fa74 .shogun-image-content {
  
    align-items: center;
  
}

#s-1587f5d5-fb93-4803-bd97-0fa2bb959501 {
  text-align: center;
}







  #s-1587f5d5-fb93-4803-bd97-0fa2bb959501 img.shogun-image {
    

    
    
    
  }


#s-1587f5d5-fb93-4803-bd97-0fa2bb959501 .shogun-image-content {
  
    align-items: center;
  
}

#s-cdf74ab9-fcb0-4740-a4af-130cd7a44858 {
  margin-top: 30px;
margin-bottom: 20px;
text-align: center;
}
@media (min-width: 1200px){#s-cdf74ab9-fcb0-4740-a4af-130cd7a44858 {
  display: none;
}
#s-cdf74ab9-fcb0-4740-a4af-130cd7a44858, #wrap-s-cdf74ab9-fcb0-4740-a4af-130cd7a44858 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-cdf74ab9-fcb0-4740-a4af-130cd7a44858 {
  display: none;
}
#s-cdf74ab9-fcb0-4740-a4af-130cd7a44858, #wrap-s-cdf74ab9-fcb0-4740-a4af-130cd7a44858 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-cdf74ab9-fcb0-4740-a4af-130cd7a44858 {
  display: none;
}
#s-cdf74ab9-fcb0-4740-a4af-130cd7a44858, #wrap-s-cdf74ab9-fcb0-4740-a4af-130cd7a44858 { display: none !important; }}






  #s-cdf74ab9-fcb0-4740-a4af-130cd7a44858 img.shogun-image {
    

    
    
    
  }


#s-cdf74ab9-fcb0-4740-a4af-130cd7a44858 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-2090e1f4-2a50-4215-a676-f17d9686519e {
  margin-top: 30px;
}

#s-a8b2ca87-d8cb-41a0-9509-9d57f864b498 {
  margin-top: 0px;
margin-bottom: 20px;
text-align: center;
}
@media (min-width: 1200px){#s-a8b2ca87-d8cb-41a0-9509-9d57f864b498 {
  display: none;
}
#s-a8b2ca87-d8cb-41a0-9509-9d57f864b498, #wrap-s-a8b2ca87-d8cb-41a0-9509-9d57f864b498 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a8b2ca87-d8cb-41a0-9509-9d57f864b498 {
  display: none;
}
#s-a8b2ca87-d8cb-41a0-9509-9d57f864b498, #wrap-s-a8b2ca87-d8cb-41a0-9509-9d57f864b498 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a8b2ca87-d8cb-41a0-9509-9d57f864b498 {
  display: none;
}
#s-a8b2ca87-d8cb-41a0-9509-9d57f864b498, #wrap-s-a8b2ca87-d8cb-41a0-9509-9d57f864b498 { display: none !important; }}






  #s-a8b2ca87-d8cb-41a0-9509-9d57f864b498 img.shogun-image {
    

    
    
    
  }


#s-a8b2ca87-d8cb-41a0-9509-9d57f864b498 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-9973e68f-e64c-4c5a-8caf-31f38729d069 {
  margin-top: 30px;
}

#s-dea480f7-bade-4600-85a0-f7738845bf9d {
  margin-top: 0px;
margin-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-dea480f7-bade-4600-85a0-f7738845bf9d {
  display: none;
}
#s-dea480f7-bade-4600-85a0-f7738845bf9d, #wrap-s-dea480f7-bade-4600-85a0-f7738845bf9d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-dea480f7-bade-4600-85a0-f7738845bf9d {
  display: none;
}
#s-dea480f7-bade-4600-85a0-f7738845bf9d, #wrap-s-dea480f7-bade-4600-85a0-f7738845bf9d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-dea480f7-bade-4600-85a0-f7738845bf9d {
  display: none;
}
#s-dea480f7-bade-4600-85a0-f7738845bf9d, #wrap-s-dea480f7-bade-4600-85a0-f7738845bf9d { display: none !important; }}@media (max-width: 767px){#s-dea480f7-bade-4600-85a0-f7738845bf9d {
  margin-bottom: 4%;
}
}






  #s-dea480f7-bade-4600-85a0-f7738845bf9d img.shogun-image {
    

    
    
    
  }


#s-dea480f7-bade-4600-85a0-f7738845bf9d .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-1d9bf679-3b77-4a97-8597-d05eddae3806 {
  margin-top: 30px;
}

#s-ffbc6fe3-2b69-4f3d-9286-276c4614a5ac {
  margin-top: 6%;
margin-bottom: 3%;
}
@media (min-width: 768px) and (max-width: 991px){#s-ffbc6fe3-2b69-4f3d-9286-276c4614a5ac {
  display: none;
}
#s-ffbc6fe3-2b69-4f3d-9286-276c4614a5ac, #wrap-s-ffbc6fe3-2b69-4f3d-9286-276c4614a5ac { display: none !important; }}@media (max-width: 767px){#s-ffbc6fe3-2b69-4f3d-9286-276c4614a5ac {
  display: none;
}
#s-ffbc6fe3-2b69-4f3d-9286-276c4614a5ac, #wrap-s-ffbc6fe3-2b69-4f3d-9286-276c4614a5ac { display: none !important; }}
@media (min-width: 0px) {
[id="s-ffbc6fe3-2b69-4f3d-9286-276c4614a5ac"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ffbc6fe3-2b69-4f3d-9286-276c4614a5ac"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ffbc6fe3-2b69-4f3d-9286-276c4614a5ac"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ffbc6fe3-2b69-4f3d-9286-276c4614a5ac"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-ab323630-3dee-4bcc-a44e-4e3df3e1d613 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 650px;
background-position: center center;
}








#s-ab323630-3dee-4bcc-a44e-4e3df3e1d613 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ab323630-3dee-4bcc-a44e-4e3df3e1d613.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-9bb1294d-afda-4cfa-820b-1d884f0716a3 {
  margin-top: 3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9bb1294d-afda-4cfa-820b-1d884f0716a3 .shogun-heading-component h2 {
  color: rgba(76, 76, 76, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 35px;
  
  
  
}



#s-0aede219-7f65-438b-8775-a4b83f7bcef0 {
  background-repeat: no-repeat;
background-size: cover;
min-height: 650px;
background-position: center center;
}








#s-0aede219-7f65-438b-8775-a4b83f7bcef0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0aede219-7f65-438b-8775-a4b83f7bcef0.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-cf8e3ad9-1808-4a3e-be71-0802d63ae5ab {
  margin-top: 3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cf8e3ad9-1808-4a3e-be71-0802d63ae5ab .shogun-heading-component h2 {
  color: rgba(76, 76, 76, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 35px;
  
  
  
}



#s-cb5a1f95-7c70-4d9e-9d59-87b1c2325c2a {
  margin-left: 5%;
margin-right: 5%;
}

@media (min-width: 1200px){#s-59706d5e-1722-4e67-8acb-293ca97db538 {
  display: none;
}
#s-59706d5e-1722-4e67-8acb-293ca97db538, #wrap-s-59706d5e-1722-4e67-8acb-293ca97db538 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-59706d5e-1722-4e67-8acb-293ca97db538 {
  display: none;
}
#s-59706d5e-1722-4e67-8acb-293ca97db538, #wrap-s-59706d5e-1722-4e67-8acb-293ca97db538 { display: none !important; }}
@media (min-width: 0px) {
[id="s-59706d5e-1722-4e67-8acb-293ca97db538"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-59706d5e-1722-4e67-8acb-293ca97db538"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-59706d5e-1722-4e67-8acb-293ca97db538"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-59706d5e-1722-4e67-8acb-293ca97db538"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-00a81514-8d89-4970-8c9b-febd06c067bf {
  min-height: 50px;
}








#s-00a81514-8d89-4970-8c9b-febd06c067bf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-00a81514-8d89-4970-8c9b-febd06c067bf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-53f0aec5-d8ef-4437-a239-73e59dd6b035 {
  margin-top: 3%;
margin-bottom: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-53f0aec5-d8ef-4437-a239-73e59dd6b035 .shogun-heading-component h2 {
  color: rgba(76, 76, 76, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-fff00a37-e487-4f2b-82fd-6bbc81c414fd {
  margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}







  #s-fff00a37-e487-4f2b-82fd-6bbc81c414fd img.shogun-image {
    

    
    
    
  }


#s-fff00a37-e487-4f2b-82fd-6bbc81c414fd .shogun-image-content {
  
    align-items: center;
  
}

#s-c7f9e75d-8e53-4977-b5dd-1388baf15519 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-c7f9e75d-8e53-4977-b5dd-1388baf15519 {
  margin-top: 3%;
margin-bottom: 0%;
}
}
#s-c7f9e75d-8e53-4977-b5dd-1388baf15519 .shogun-heading-component h2 {
  color: rgba(76, 76, 76, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-4691570d-4414-4e7f-a765-1fa6c96f4e28 {
  margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}







  #s-4691570d-4414-4e7f-a765-1fa6c96f4e28 img.shogun-image {
    

    
    
    
  }


#s-4691570d-4414-4e7f-a765-1fa6c96f4e28 .shogun-image-content {
  
    align-items: center;
  
}

#s-537992e0-3088-4e67-87c3-f029345edae4 {
  margin-bottom: 3%;
text-align: center;
}
@media (max-width: 767px){#s-537992e0-3088-4e67-87c3-f029345edae4 {
  display: none;
}
#s-537992e0-3088-4e67-87c3-f029345edae4, #wrap-s-537992e0-3088-4e67-87c3-f029345edae4 { display: none !important; }}






  #s-537992e0-3088-4e67-87c3-f029345edae4 img.shogun-image {
    

    
    
    
  }


#s-537992e0-3088-4e67-87c3-f029345edae4 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-0aea252e-c558-446b-a68f-ae0ebf26b752 {
  margin-top: 3%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0aea252e-c558-446b-a68f-ae0ebf26b752 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



#s-d11279aa-ec92-4bf3-81ee-7b3f96e4fce4 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-d11279aa-ec92-4bf3-81ee-7b3f96e4fce4 {
  margin-top: 3%;
margin-bottom: 0%;
}
}
#s-d11279aa-ec92-4bf3-81ee-7b3f96e4fce4 .shogun-heading-component h2 {
  color: rgba(76, 76, 76, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-5d2d60fc-5dfb-44a9-8366-fdf877885d27 {
  margin-left: 5%;
margin-bottom: 1%;
margin-right: 5%;
}

.shg-align-container {
  box-sizing: border-box;
}

.shg-image-content-wrapper {
  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;
  height: inherit;
  position: relative;
}

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

.shg-imageV2-content {
  text-align: initial;
}

.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;
}

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}
#s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36 {
  margin-top: 0%;
margin-bottom: 0%;
text-align: center;
}
@media (max-width: 767px){#s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36 {
  display: none;
}
#s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36, #wrap-s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36 { display: none !important; }}






  img.s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36.shogun-image {
    
    
  }


.s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36 .shogun-image-content {
  
    align-items: center;
  
}

.s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36.shogun-image {
    
    
  }


.s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36 .shogun-image-content {
  
    align-items: center;
  
}

.s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36.shogun-image {
  box-sizing: border-box;
}



}@media (min-width: 992px) and (max-width: 1199px){





  img.s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36.shogun-image {
    
    
  }


.s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36 .shogun-image-content {
  
    align-items: center;
  
}

.s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36.shogun-image {
  box-sizing: border-box;
}



}@media (min-width: 768px) and (max-width: 991px){





  img.s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36.shogun-image {
    
    
  }


.s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36 .shogun-image-content {
  
    align-items: center;
  
}

.s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36.shogun-image {
  box-sizing: border-box;
}



}@media (max-width: 767px){





  img.s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36.shogun-image {
    
    
  }


.s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36 .shogun-image-content {
  
    align-items: center;
  
}

.s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36.shg-align-container {
  display: flex;
  justify-content: center
}

.s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-cbd15c33-e7a4-40a9-9a4c-653fa7bdbc36.shogun-image {
  box-sizing: border-box;
}



}
#s-aa947c8e-93f2-4a30-be63-84603d384d83 {
  margin-top: 3%;
text-align: center;
}
@media (max-width: 767px){#s-aa947c8e-93f2-4a30-be63-84603d384d83 {
  display: none;
}
#s-aa947c8e-93f2-4a30-be63-84603d384d83, #wrap-s-aa947c8e-93f2-4a30-be63-84603d384d83 { display: none !important; }}






  #s-aa947c8e-93f2-4a30-be63-84603d384d83 img.shogun-image {
    

    
    
    
  }


#s-aa947c8e-93f2-4a30-be63-84603d384d83 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-1b771a4c-1284-4e0a-8fe7-bde486d18057 {
  margin-top: 3%;
margin-bottom: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1b771a4c-1284-4e0a-8fe7-bde486d18057 .shogun-heading-component h2 {
  color: rgba(76, 76, 76, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 50px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-1b771a4c-1284-4e0a-8fe7-bde486d18057 .shogun-heading-component h2 {
  color: rgba(76, 76, 76, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 35px;
  
  
  
}


}
#s-977e91ab-3031-4954-9eb6-d3456b441075 {
  margin-top: 3%;
text-align: center;
}
@media (max-width: 767px){#s-977e91ab-3031-4954-9eb6-d3456b441075 {
  display: none;
}
#s-977e91ab-3031-4954-9eb6-d3456b441075, #wrap-s-977e91ab-3031-4954-9eb6-d3456b441075 { display: none !important; }}






  #s-977e91ab-3031-4954-9eb6-d3456b441075 img.shogun-image {
    

    
    
    
  }


#s-977e91ab-3031-4954-9eb6-d3456b441075 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-c05b646a-3089-4384-ae2c-70d143b69f05 {
  margin-top: 3%;
margin-bottom: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c05b646a-3089-4384-ae2c-70d143b69f05 .shogun-heading-component h2 {
  color: rgba(76, 76, 76, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 50px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-c05b646a-3089-4384-ae2c-70d143b69f05 .shogun-heading-component h2 {
  color: rgba(76, 76, 76, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 35px;
  
  
  
}


}
#s-fc8be607-cde2-441a-8031-5d1ead46ace2 {
  text-align: center;
}
@media (min-width: 1200px){#s-fc8be607-cde2-441a-8031-5d1ead46ace2 {
  display: none;
}
#s-fc8be607-cde2-441a-8031-5d1ead46ace2, #wrap-s-fc8be607-cde2-441a-8031-5d1ead46ace2 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fc8be607-cde2-441a-8031-5d1ead46ace2 {
  display: none;
}
#s-fc8be607-cde2-441a-8031-5d1ead46ace2, #wrap-s-fc8be607-cde2-441a-8031-5d1ead46ace2 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-fc8be607-cde2-441a-8031-5d1ead46ace2 {
  display: none;
}
#s-fc8be607-cde2-441a-8031-5d1ead46ace2, #wrap-s-fc8be607-cde2-441a-8031-5d1ead46ace2 { display: none !important; }}






  img.s-fc8be607-cde2-441a-8031-5d1ead46ace2.shogun-image {
    
    
  }


.s-fc8be607-cde2-441a-8031-5d1ead46ace2 .shogun-image-content {
  
    align-items: center;
  
}

.s-fc8be607-cde2-441a-8031-5d1ead46ace2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc8be607-cde2-441a-8031-5d1ead46ace2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc8be607-cde2-441a-8031-5d1ead46ace2.shogun-image {
  box-sizing: border-box;
}



@media (min-width: 1200px){





  img.s-fc8be607-cde2-441a-8031-5d1ead46ace2.shogun-image {
    
    
  }


.s-fc8be607-cde2-441a-8031-5d1ead46ace2 .shogun-image-content {
  
    align-items: center;
  
}

.s-fc8be607-cde2-441a-8031-5d1ead46ace2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc8be607-cde2-441a-8031-5d1ead46ace2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc8be607-cde2-441a-8031-5d1ead46ace2.shogun-image {
  box-sizing: border-box;
}



}@media (min-width: 992px) and (max-width: 1199px){





  img.s-fc8be607-cde2-441a-8031-5d1ead46ace2.shogun-image {
    
    
  }


.s-fc8be607-cde2-441a-8031-5d1ead46ace2 .shogun-image-content {
  
    align-items: center;
  
}

.s-fc8be607-cde2-441a-8031-5d1ead46ace2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc8be607-cde2-441a-8031-5d1ead46ace2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc8be607-cde2-441a-8031-5d1ead46ace2.shogun-image {
  box-sizing: border-box;
}



}@media (min-width: 768px) and (max-width: 991px){





  img.s-fc8be607-cde2-441a-8031-5d1ead46ace2.shogun-image {
    
    
  }


.s-fc8be607-cde2-441a-8031-5d1ead46ace2 .shogun-image-content {
  
    align-items: center;
  
}

.s-fc8be607-cde2-441a-8031-5d1ead46ace2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc8be607-cde2-441a-8031-5d1ead46ace2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc8be607-cde2-441a-8031-5d1ead46ace2.shogun-image {
  box-sizing: border-box;
}



}@media (max-width: 767px){





  img.s-fc8be607-cde2-441a-8031-5d1ead46ace2.shogun-image {
    
    
  }


.s-fc8be607-cde2-441a-8031-5d1ead46ace2 .shogun-image-content {
  
    align-items: center;
  
}

.s-fc8be607-cde2-441a-8031-5d1ead46ace2.shg-align-container {
  display: flex;
  justify-content: center
}

.s-fc8be607-cde2-441a-8031-5d1ead46ace2.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-fc8be607-cde2-441a-8031-5d1ead46ace2.shogun-image {
  box-sizing: border-box;
}



}
#s-909a9b19-3522-461f-ba6e-39441199f305 {
  margin-top: 50px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-909a9b19-3522-461f-ba6e-39441199f305 {
  display: none;
}
#s-909a9b19-3522-461f-ba6e-39441199f305, #wrap-s-909a9b19-3522-461f-ba6e-39441199f305 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-909a9b19-3522-461f-ba6e-39441199f305 {
  display: none;
}
#s-909a9b19-3522-461f-ba6e-39441199f305, #wrap-s-909a9b19-3522-461f-ba6e-39441199f305 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-909a9b19-3522-461f-ba6e-39441199f305 {
  display: none;
}
#s-909a9b19-3522-461f-ba6e-39441199f305, #wrap-s-909a9b19-3522-461f-ba6e-39441199f305 { display: none !important; }}
#s-909a9b19-3522-461f-ba6e-39441199f305 .shogun-heading-component h2 {
  color: rgba(76, 76, 76, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-ab17dfdd-a82d-4917-8fbc-7a33bd994dd1 {
  text-align: center;
}
@media (min-width: 1200px){#s-ab17dfdd-a82d-4917-8fbc-7a33bd994dd1 {
  display: none;
}
#s-ab17dfdd-a82d-4917-8fbc-7a33bd994dd1, #wrap-s-ab17dfdd-a82d-4917-8fbc-7a33bd994dd1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ab17dfdd-a82d-4917-8fbc-7a33bd994dd1 {
  display: none;
}
#s-ab17dfdd-a82d-4917-8fbc-7a33bd994dd1, #wrap-s-ab17dfdd-a82d-4917-8fbc-7a33bd994dd1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ab17dfdd-a82d-4917-8fbc-7a33bd994dd1 {
  display: none;
}
#s-ab17dfdd-a82d-4917-8fbc-7a33bd994dd1, #wrap-s-ab17dfdd-a82d-4917-8fbc-7a33bd994dd1 { display: none !important; }}






  #s-ab17dfdd-a82d-4917-8fbc-7a33bd994dd1 img.shogun-image {
    

    
    
    
  }


#s-ab17dfdd-a82d-4917-8fbc-7a33bd994dd1 .shogun-image-content {
  
    align-items: center;
  
}

#s-053f8430-91f8-42ea-9ba0-b57ffe04195b {
  margin-top: 50px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 1200px){#s-053f8430-91f8-42ea-9ba0-b57ffe04195b {
  display: none;
}
#s-053f8430-91f8-42ea-9ba0-b57ffe04195b, #wrap-s-053f8430-91f8-42ea-9ba0-b57ffe04195b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-053f8430-91f8-42ea-9ba0-b57ffe04195b {
  display: none;
}
#s-053f8430-91f8-42ea-9ba0-b57ffe04195b, #wrap-s-053f8430-91f8-42ea-9ba0-b57ffe04195b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-053f8430-91f8-42ea-9ba0-b57ffe04195b {
  display: none;
}
#s-053f8430-91f8-42ea-9ba0-b57ffe04195b, #wrap-s-053f8430-91f8-42ea-9ba0-b57ffe04195b { display: none !important; }}
#s-053f8430-91f8-42ea-9ba0-b57ffe04195b .shogun-heading-component h2 {
  color: rgba(76, 76, 76, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-f0edb084-6e16-4995-927c-055bb5c2e395 {
  text-align: center;
}
@media (min-width: 1200px){#s-f0edb084-6e16-4995-927c-055bb5c2e395 {
  display: none;
}
#s-f0edb084-6e16-4995-927c-055bb5c2e395, #wrap-s-f0edb084-6e16-4995-927c-055bb5c2e395 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f0edb084-6e16-4995-927c-055bb5c2e395 {
  display: none;
}
#s-f0edb084-6e16-4995-927c-055bb5c2e395, #wrap-s-f0edb084-6e16-4995-927c-055bb5c2e395 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f0edb084-6e16-4995-927c-055bb5c2e395 {
  display: none;
}
#s-f0edb084-6e16-4995-927c-055bb5c2e395, #wrap-s-f0edb084-6e16-4995-927c-055bb5c2e395 { display: none !important; }}






  #s-f0edb084-6e16-4995-927c-055bb5c2e395 img.shogun-image {
    

    
    
    
  }


#s-f0edb084-6e16-4995-927c-055bb5c2e395 .shogun-image-content {
  
    align-items: center;
  
}

#s-99d3de45-6884-499e-9e72-5ac05454fada {
  margin-top: 3%;
margin-bottom: 0%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (max-width: 767px){#s-99d3de45-6884-499e-9e72-5ac05454fada {
  display: none;
}
#s-99d3de45-6884-499e-9e72-5ac05454fada, #wrap-s-99d3de45-6884-499e-9e72-5ac05454fada { display: none !important; }}
#s-99d3de45-6884-499e-9e72-5ac05454fada .shogun-heading-component h2 {
  color: rgba(76, 76, 76, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 50px;
  
  
  
}



#s-4bf1861f-8d24-48d4-b7b6-05f12283da89 {
  margin-top: 2%;
text-align: center;
}
@media (max-width: 767px){#s-4bf1861f-8d24-48d4-b7b6-05f12283da89 {
  display: none;
}
#s-4bf1861f-8d24-48d4-b7b6-05f12283da89, #wrap-s-4bf1861f-8d24-48d4-b7b6-05f12283da89 { display: none !important; }}






  #s-4bf1861f-8d24-48d4-b7b6-05f12283da89 img.shogun-image {
    

    
    
    
  }


#s-4bf1861f-8d24-48d4-b7b6-05f12283da89 .shogun-image-content {
  
    align-items: center;
  
}

#s-4bd05987-d486-47ad-82e5-96f222506d06 {
  margin-top: 3%;
margin-bottom: 0%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-4bd05987-d486-47ad-82e5-96f222506d06 {
  margin-top: 0%;
}
}@media (max-width: 767px){#s-4bd05987-d486-47ad-82e5-96f222506d06 {
  
}
}







#s-4bd05987-d486-47ad-82e5-96f222506d06 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4bd05987-d486-47ad-82e5-96f222506d06.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0c177be3-0ea1-4035-afd5-8010599e090e {
  margin-top: 7%;
margin-left: 17%;
margin-bottom: 5%;
margin-right: 17%;
text-align: center;
}
@media (max-width: 767px){#s-0c177be3-0ea1-4035-afd5-8010599e090e {
  margin-top: 4%;
margin-left: 5%;
margin-bottom: 4%;
margin-right: 5%;
}
}






  #s-0c177be3-0ea1-4035-afd5-8010599e090e img.shogun-image {
    

    
    
    
  }


#s-0c177be3-0ea1-4035-afd5-8010599e090e .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}
