.shg-rich-text {
  overflow-wrap: break-word;
}

.shg-rich-text img {
  margin: 0 20px;
}

@media (max-width: 768px) {
  .shg-rich-text img {
    display: block;
    float: none !important;
    margin: 0 auto;
  }
}

.shg-default-text-content *:first-child {
  margin-top: 0;
}

.shg-default-text-content {
  text-align: left;
}

.shg-default-text-content p,
.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6,
.shg-default-text-content address,
.shg-default-text-content pre,
.shg-default-text-content div,
.shg-default-text-content ol,
.shg-default-text-content ul {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  color: #000000;
  font-family: inherit;
  font-style: normal;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-transform: none;
}

.shg-default-text-content a {
  background-color: inherit;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-style: inherit;
  text-decoration: underline;
  text-transform: inherit;
}

.shg-default-text-content strong,
.shg-default-text-content em {
  background-color: inherit;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: inherit;
  text-transform: inherit;
}

.shg-default-text-content em {
  font-weight: inherit;
}

.shg-default-text-content strong {
  font-style: inherit;
  font-weight: 700;
}

/* https://stackoverflow.com/a/16094931/3696652 */
.shg-default-text-content ::-moz-selection, .shg-default-text-content *::-moz-selection {
  background: #accef7;
}
.shg-default-text-content ::selection,
.shg-default-text-content *::selection {
  background: #accef7;
}

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

.shg-default-text-content h1 {
  font-size: 1.714em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.166;
  margin-top: 0.67em;
}

.shg-default-text-content h2 {
  font-size: 1.43em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-top: 0.83em;
}

.shg-default-text-content h3 {
  font-size: 1.142em;
  font-weight: 500;
  letter-spacing: -0.008em;
  line-height: 1.5;
  margin-top: 1em;
}

.shg-default-text-content h4 {
  font-size: 1em;
  font-weight: 600;
  letter-spacing: -0.006em;
  line-height: 1.428;
  margin-top: 1.33em;
}

.shg-default-text-content h5 {
  font-size: 0.857em;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.333;
  margin-top: 1.43em;
}

.shg-default-text-content h6 {
  font-size: 0.785em;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.454;
  margin-top: 1.42em;
  text-transform: uppercase;
}

.shg-default-text-content ul {
  list-style: disc;
}

.shg-default-text-content ol {
  list-style: decimal;
}

.shg-default-text-content ul,
.shg-default-text-content ol {
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  margin-bottom: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  margin-top: 0;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
}

.shg-default-text-content li {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1;
  list-style: inherit;
  margin-top: 0.67em;
}

.shg-default-text-content pre {
  font-family: monospace;
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 1em;
  white-space: pre-wrap;
  word-break: normal;
}

.shg-default-text-content address {
  font-size: 1em;
  font-style: italic;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0;
}

.shg-default-text-content div {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-bottom: 0;
  margin-top: 0.67em;
}

.shg-box {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  /**
   * While `flex: 1` is enough here, we need to supply the rest
   * of the parameters (`1 auto`) to keep compatibility with IE11.
   * Otherwise, IE11 flex would break.
   */
  flex: 1 1 auto;
}

.shg-box > .shg-box-content {
  z-index: 4;
  position: relative;
  /**
   * This is part of an IE11 fallback to avoid flex introducing
   * huge amount of weird space on the bottom on the section element.
   */
  min-height: 1px;
}

.shg-box-vertical-align-wrapper, .shg-box-vertical-center-wrapper {
  display: flex;
  width: 100%;
}

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

.shg-box-vertical-align-center, .shg-box-vertical-center {
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  justify-content: flex-end;
}

.shg-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
}

.shg-box-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: -1;
}

#s-8f670f17-f8a1-4762-819a-8da838d65077 {
  min-height: 50px;
}








#s-8f670f17-f8a1-4762-819a-8da838d65077 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8f670f17-f8a1-4762-819a-8da838d65077.shg-box.shg-c {
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

#s-fe366fcc-ec93-4c03-93af-3d7660de28a3 {
  box-shadow:0px 0px 0px 0px ;
}
@media (min-width: 768px) and (max-width: 991px){#s-fe366fcc-ec93-4c03-93af-3d7660de28a3 {
  
}
}@media (max-width: 767px){#s-fe366fcc-ec93-4c03-93af-3d7660de28a3 {
  
}
}
#s-fe366fcc-ec93-4c03-93af-3d7660de28a3 .shogun-tabs {
  justify-content: flex-start;
}


  #s-fe366fcc-ec93-4c03-93af-3d7660de28a3 .shogun-tabs > li > .shogun-tab-box {
    background: rgba(249, 249, 249, 1);
    border: 1px solid rgba(249, 249, 249, 1);
  }
  #s-fe366fcc-ec93-4c03-93af-3d7660de28a3 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(249, 249, 249, 1);
    border: 1px solid rgba(249, 249, 249, 1);
  }
#s-fe366fcc-ec93-4c03-93af-3d7660de28a3 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(51, 51, 51, 1);
  font-family: Asap;
  font-weight: 600;
  font-style: ;
  font-size: 22px;
}

#s-fe366fcc-ec93-4c03-93af-3d7660de28a3 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 92, 38, 1);
}

#s-fe366fcc-ec93-4c03-93af-3d7660de28a3 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(249, 249, 249, 1);
}

#s-fe366fcc-ec93-4c03-93af-3d7660de28a3 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(249, 249, 249, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-fe366fcc-ec93-4c03-93af-3d7660de28a3 .shogun-tabs {
  justify-content: flex-start;
}


  #s-fe366fcc-ec93-4c03-93af-3d7660de28a3 .shogun-tabs > li > .shogun-tab-box {
    background: rgba(249, 249, 249, 1);
    border: 1px solid rgba(249, 249, 249, 1);
  }
  #s-fe366fcc-ec93-4c03-93af-3d7660de28a3 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(249, 249, 249, 1);
    border: 1px solid rgba(249, 249, 249, 1);
  }
#s-fe366fcc-ec93-4c03-93af-3d7660de28a3 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(51, 51, 51, 1);
  font-family: Asap;
  font-weight: 600;
  font-style: ;
  font-size: 20px;
}

#s-fe366fcc-ec93-4c03-93af-3d7660de28a3 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 92, 38, 1);
}

#s-fe366fcc-ec93-4c03-93af-3d7660de28a3 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(249, 249, 249, 1);
}

#s-fe366fcc-ec93-4c03-93af-3d7660de28a3 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(249, 249, 249, 1);
}
}@media (max-width: 767px){#s-fe366fcc-ec93-4c03-93af-3d7660de28a3 .shogun-tabs {
  justify-content: flex-start;
}


  #s-fe366fcc-ec93-4c03-93af-3d7660de28a3 .shogun-tabs > li > .shogun-tab-box {
    background: rgba(249, 249, 249, 1);
    border: 1px solid rgba(249, 249, 249, 1);
  }
  #s-fe366fcc-ec93-4c03-93af-3d7660de28a3 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(249, 249, 249, 1);
    border: 1px solid rgba(249, 249, 249, 1);
  }
#s-fe366fcc-ec93-4c03-93af-3d7660de28a3 .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(51, 51, 51, 1);
  font-family: Asap;
  font-weight: 600;
  font-style: ;
  font-size: 18px;
}

#s-fe366fcc-ec93-4c03-93af-3d7660de28a3 .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(255, 92, 38, 1);
}

#s-fe366fcc-ec93-4c03-93af-3d7660de28a3 .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(249, 249, 249, 1);
}

#s-fe366fcc-ec93-4c03-93af-3d7660de28a3 .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(249, 249, 249, 1);
}
}
#s-91a83e80-8f5c-422c-9670-8bd347c6dffd {
  margin-left: 100px;
margin-right: 100px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-91a83e80-8f5c-422c-9670-8bd347c6dffd {
  display: none;
}
#s-91a83e80-8f5c-422c-9670-8bd347c6dffd, #wrap-s-91a83e80-8f5c-422c-9670-8bd347c6dffd { display:none !important; }}@media (max-width: 767px){#s-91a83e80-8f5c-422c-9670-8bd347c6dffd {
  display: none;
}
#s-91a83e80-8f5c-422c-9670-8bd347c6dffd, #wrap-s-91a83e80-8f5c-422c-9670-8bd347c6dffd { display:none !important; }}







#s-91a83e80-8f5c-422c-9670-8bd347c6dffd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-91a83e80-8f5c-422c-9670-8bd347c6dffd.shg-box.shg-c {
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image-content-bottom {
  align-items: flex-end;
}
#s-69c3061e-878c-483f-9dec-89d359540a22 {
  margin-top: -10px;
min-height: 300px;
text-align: center;
}




  #s-69c3061e-878c-483f-9dec-89d359540a22 img.shogun-image {
    
    width: px;
  }


#s-69c3061e-878c-483f-9dec-89d359540a22 .shogun-image-content {
  
    align-items: center;
  
}

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

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

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

#s-74d9162d-53fa-4c24-ae8d-000e9994819b {
  margin-top: 70px;
margin-bottom: 70px;
min-height: 53px;
}

@media (min-width: 0px) {
[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 25.0px);
}

[id="s-74d9162d-53fa-4c24-ae8d-000e9994819b"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 25.0px);
}

}

#s-bb3a4361-1bbb-4c04-83a1-6cd027d23c9c {
  margin-left: 0px;
min-height: 52px;
text-align: center;
}




  #s-bb3a4361-1bbb-4c04-83a1-6cd027d23c9c img.shogun-image {
    
    width: px;
  }


#s-bb3a4361-1bbb-4c04-83a1-6cd027d23c9c .shogun-image-content {
  
    align-items: center;
  
}

#s-5b784d05-5058-4745-b041-5380d186a8c5 {
  min-height: 52px;
}








#s-5b784d05-5058-4745-b041-5380d186a8c5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5b784d05-5058-4745-b041-5380d186a8c5.shg-box.shg-c {
  justify-content: center;
}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: #000;
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

.shogun-heading-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-56476e91-fd59-4e49-ad35-43d6b09027d7 {
  margin-left: 0px;
margin-bottom: 20px;
margin-right: 0px;
text-align: left;
}

#s-56476e91-fd59-4e49-ad35-43d6b09027d7 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 37px;
  line-height: 1.5em;
  letter-spacing: ;
  text-align: left;
}



#s-879769bb-6305-4d24-b274-a65d46697703 {
  margin-top: 10px;
margin-left: 0px;
margin-right: 0px;
}

#s-251a068c-6e56-452e-b70d-ff34b8b7cb6d {
  min-height: 300px;
text-align: center;
}




  #s-251a068c-6e56-452e-b70d-ff34b8b7cb6d img.shogun-image {
    
    width: px;
  }


#s-251a068c-6e56-452e-b70d-ff34b8b7cb6d .shogun-image-content {
  
    align-items: center;
  
}

#s-a69165d8-faff-4ce4-9bde-639c1b1c6df2 {
  margin-top: 70px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-a69165d8-faff-4ce4-9bde-639c1b1c6df2 .shogun-heading-component h3 {
  color: rgba(51, 51, 51, 1);
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 37px;
  line-height: 1.5em;
  letter-spacing: ;
  text-align: center;
}



#s-e238f4a4-a40f-4484-b0e0-7c30f25b0eb5 {
  margin-top: 10px;
margin-left: 0px;
margin-bottom: 10px;
margin-right: 0px;
text-align: center;
}




  #s-e238f4a4-a40f-4484-b0e0-7c30f25b0eb5 img.shogun-image {
    
    width: px;
  }


#s-e238f4a4-a40f-4484-b0e0-7c30f25b0eb5 .shogun-image-content {
  
    align-items: center;
  
}

#s-ebc35fe4-bb59-4967-98ce-471e2186919b {
  margin-top: 50px;
margin-bottom: 65px;
min-height: 55px;
}

@media (min-width: 0px) {
[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 25.0px);
}

[id="s-ebc35fe4-bb59-4967-98ce-471e2186919b"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 25.0px);
}

}

#s-69f81946-7a4a-40a1-aa82-a23824212e5d {
  margin-left: 0px;
margin-right: 0px;
min-height: 52px;
text-align: center;
}




  #s-69f81946-7a4a-40a1-aa82-a23824212e5d img.shogun-image {
    
    width: px;
  }


#s-69f81946-7a4a-40a1-aa82-a23824212e5d .shogun-image-content {
  
    align-items: center;
  
}

#s-8c39f3a1-0240-4894-a995-e618d0c16adc {
  margin-left: 0px;
margin-right: 0px;
min-height: 52px;
}








#s-8c39f3a1-0240-4894-a995-e618d0c16adc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8c39f3a1-0240-4894-a995-e618d0c16adc.shg-box.shg-c {
  justify-content: center;
}

#s-f88ccc15-f8ba-466e-87af-dac8b302f662 {
  margin-left: 0px;
margin-bottom: 30px;
text-align: left;
}

#s-f88ccc15-f8ba-466e-87af-dac8b302f662 .shogun-heading-component h3 {
  color: rgba(51, 51, 51, 1);
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 37px;
  line-height: 1.5em;
  letter-spacing: ;
  text-align: left;
}



#s-fa97150e-0567-4527-9c4e-e3d7561e7e9a {
  margin-left: 0px;
margin-right: 0px;
}

#s-c416355a-59b7-4ba8-9654-aaf3e4ed81a7 {
  text-align: center;
}




  #s-c416355a-59b7-4ba8-9654-aaf3e4ed81a7 img.shogun-image {
    
    width: px;
  }


#s-c416355a-59b7-4ba8-9654-aaf3e4ed81a7 .shogun-image-content {
  
    align-items: center;
  
}

#s-29448e42-7e9f-4be1-aef1-fa5bce97d3f6 {
  margin-top: 75px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-29448e42-7e9f-4be1-aef1-fa5bce97d3f6 .shogun-heading-component h3 {
  color: rgba(51, 51, 51, 1);
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 37px;
  line-height: 1.5em;
  letter-spacing: ;
  text-align: center;
}



#s-a88356d4-cb51-4d31-8a72-2357a944d391 {
  margin-left: 10px;
margin-right: 10px;
}

#s-2e798607-e4d5-4820-8ad5-b2d752ec9f00 {
  margin-top: 10px;
margin-left: 10px;
margin-right: 10px;
}

#s-2bdd7268-b19a-4307-bcb9-185af3224fec {
  margin-top: 35px;
text-align: center;
}




  #s-2bdd7268-b19a-4307-bcb9-185af3224fec img.shogun-image {
    
    width: px;
  }


#s-2bdd7268-b19a-4307-bcb9-185af3224fec .shogun-image-content {
  
    align-items: center;
  
}

#s-6567449c-4344-41bf-a8d7-515a1dd13048 {
  margin-top: 50px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-6567449c-4344-41bf-a8d7-515a1dd13048 .shogun-heading-component h3 {
  color: rgba(51, 51, 51, 1);
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 37px;
  line-height: 1.5em;
  letter-spacing: ;
  text-align: center;
}



#s-74bd23ab-f862-480d-8876-d45542b830b4 {
  margin-bottom: 25px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-74bd23ab-f862-480d-8876-d45542b830b4 .shogun-heading-component h4 {
  color: rgba(51, 51, 51, 1);
  font-weight:  normal ;
  font-family: Asap;
  font-style:  normal ;
  font-size: 21px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-4f2c0535-e4ed-4286-a67e-133445f766d4 {
  margin-left: 10px;
margin-bottom: 50px;
margin-right: 10px;
}

#s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6 {
  margin-left: 0px;
margin-bottom: 50px;
margin-right: 0px;
min-height: 570px;
}
@media (min-width: 768px) and (max-width: 991px){#s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6 {
  display: none;
}
#s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6, #wrap-s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6 { display:none !important; }}@media (max-width: 767px){#s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6 {
  display: none;
}
#s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6, #wrap-s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6 { display:none !important; }}
@media (min-width: 0px) {
[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 25.0px);
}

[id="s-1be2b4ef-99f9-4930-a58e-5383b1b11ba6"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 25.0px);
}

}

#s-2de295ad-7f91-4a3e-a244-b9d207ae522d {
  margin-bottom: 30px;
min-height: 270px;
}








#s-2de295ad-7f91-4a3e-a244-b9d207ae522d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2de295ad-7f91-4a3e-a244-b9d207ae522d.shg-box.shg-c {
  justify-content: center;
}

#s-9313e611-b843-41a2-bb47-d25eebc3fbb3 {
  min-height: 270px;
text-align: right;
}





#s-9313e611-b843-41a2-bb47-d25eebc3fbb3 .shogun-image-content {
  
    align-items: center;
  
}

#s-09c2dda3-f7d8-4bfe-85d7-fe021dcd5544 {
  min-height: 270px;
}








#s-09c2dda3-f7d8-4bfe-85d7-fe021dcd5544 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-09c2dda3-f7d8-4bfe-85d7-fe021dcd5544.shg-box.shg-c {
  justify-content: center;
}

#s-ef475956-03ad-41d4-be85-21dce0f3e0fb {
  min-height: 270px;
text-align: right;
}





#s-ef475956-03ad-41d4-be85-21dce0f3e0fb .shogun-image-content {
  
    align-items: center;
  
}

#s-e8807adf-6b1e-47dc-b5aa-c8e67ac82aad {
  min-height: 570px;
}








#s-e8807adf-6b1e-47dc-b5aa-c8e67ac82aad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e8807adf-6b1e-47dc-b5aa-c8e67ac82aad.shg-box.shg-c {
  justify-content: center;
}

#s-9a29e7f4-d8ad-4ebe-89ff-ae4dc4c0b473 {
  min-height: 570px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-9a29e7f4-d8ad-4ebe-89ff-ae4dc4c0b473 {
  margin-top: 10px;
}
}



  #s-9a29e7f4-d8ad-4ebe-89ff-ae4dc4c0b473 img.shogun-image {
    
    width: px;
  }


#s-9a29e7f4-d8ad-4ebe-89ff-ae4dc4c0b473 .shogun-image-content {
  
    align-items: center;
  
}

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

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

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

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

#s-cba29c4f-e5ca-4733-a66d-b201440aed24 {
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991px){#s-cba29c4f-e5ca-4733-a66d-b201440aed24 {
  display: none;
}
#s-cba29c4f-e5ca-4733-a66d-b201440aed24, #wrap-s-cba29c4f-e5ca-4733-a66d-b201440aed24 { display:none !important; }}@media (max-width: 767px){#s-cba29c4f-e5ca-4733-a66d-b201440aed24 {
  display: none;
}
#s-cba29c4f-e5ca-4733-a66d-b201440aed24, #wrap-s-cba29c4f-e5ca-4733-a66d-b201440aed24 { display:none !important; }}
#s-8e9be703-ec94-45fb-9c3a-045fcfe40648 {
  margin-top: 20px;
margin-left: 30px;
margin-right: 30px;
min-height: 50px;
background-color: rgba(243, 243, 243, 1);
}
@media (max-width: 767px){#s-8e9be703-ec94-45fb-9c3a-045fcfe40648 {
  display: none;
}
#s-8e9be703-ec94-45fb-9c3a-045fcfe40648, #wrap-s-8e9be703-ec94-45fb-9c3a-045fcfe40648 { display:none !important; }}







#s-8e9be703-ec94-45fb-9c3a-045fcfe40648 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8e9be703-ec94-45fb-9c3a-045fcfe40648.shg-box.shg-c {
  justify-content: center;
}

#s-23ad17db-c3ee-461d-ad7e-1b1661b4389b {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-23ad17db-c3ee-461d-ad7e-1b1661b4389b .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



@media (min-width: 0px) {
[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-a544bc56-0c6b-405c-a841-37ea4632c4a7"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-7e306850-f69f-4945-acdb-1dd8d26a1cde {
  min-height: 50px;
}








#s-7e306850-f69f-4945-acdb-1dd8d26a1cde > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7e306850-f69f-4945-acdb-1dd8d26a1cde.shg-box.shg-c {
  justify-content: center;
}

#s-9804c3f3-efab-44bb-a66b-31d341e1c775 {
  margin-top: 10px;
margin-left: 50px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-9804c3f3-efab-44bb-a66b-31d341e1c775 .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-fc818ba3-32aa-4413-8319-250074128cb0 {
  margin-left: 50px;
}

@media (min-width: 0px) {
[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-fc818ba3-32aa-4413-8319-250074128cb0"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-7bf0d249-6f6d-4ba6-ac66-d8a6437074bf {
  margin-left: 50px;
}

#s-7bf0d249-6f6d-4ba6-ac66-d8a6437074bf hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(51, 51, 51, 1);
}

#s-18c7a4a9-2ff0-44d4-85bf-d4ce6257a610 {
  min-height: 50px;
}








#s-18c7a4a9-2ff0-44d4-85bf-d4ce6257a610 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-18c7a4a9-2ff0-44d4-85bf-d4ce6257a610.shg-box.shg-c {
  justify-content: center;
}

#s-e427dcd4-5c7d-465a-b515-d5db214f2a72 {
  margin-top: 10px;
margin-left: 50px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-e427dcd4-5c7d-465a-b515-d5db214f2a72 .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-2c9dfce9-5931-45a4-8914-bbdc02993d62 {
  margin-left: 50px;
}

@media (min-width: 0px) {
[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-2c9dfce9-5931-45a4-8914-bbdc02993d62"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-e52d4531-90fe-492d-a4ae-0cc7475267e4 {
  min-height: 50px;
}








#s-e52d4531-90fe-492d-a4ae-0cc7475267e4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e52d4531-90fe-492d-a4ae-0cc7475267e4.shg-box.shg-c {
  justify-content: center;
}

#s-3c6f4489-2d3f-4ace-998a-7f254079f525 {
  margin-top: 10px;
margin-left: 50px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-3c6f4489-2d3f-4ace-998a-7f254079f525 .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-4041a195-ace2-4aed-b3c5-4941a834592b {
  margin-left: 50px;
}

@media (min-width: 0px) {
[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-4041a195-ace2-4aed-b3c5-4941a834592b"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-1481f0c7-eedc-41df-b994-274f97f41acd {
  margin-left: 50px;
margin-right: 50px;
}

#s-1481f0c7-eedc-41df-b994-274f97f41acd hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(51, 51, 51, 1);
}

#s-105710c8-7747-44f1-8b46-02373526e71a {
  min-height: 50px;
}








#s-105710c8-7747-44f1-8b46-02373526e71a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-105710c8-7747-44f1-8b46-02373526e71a.shg-box.shg-c {
  justify-content: center;
}

#s-67cf8118-f9d4-4a3f-953c-cee6499e5714 {
  margin-top: 10px;
margin-left: 50px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-67cf8118-f9d4-4a3f-953c-cee6499e5714 .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 18px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299 {
  margin-left: 50px;
}

@media (min-width: 0px) {
[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 2.5px);
}

[id="s-d43815d9-3b8d-49d3-9414-ac7b5c3b5299"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 2.5px);
}

}

#s-78273360-0ee3-43ef-b263-893c209f3766 {
  margin-top: 30px;
margin-left: 40px;
margin-right: 40px;
}
@media (min-width: 768px) and (max-width: 991px){#s-78273360-0ee3-43ef-b263-893c209f3766 {
  margin-left: 30px;
margin-right: 30px;
}
}
#s-78273360-0ee3-43ef-b263-893c209f3766 hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(51, 51, 51, 1);
}

#s-c399f2de-3699-42b8-b034-5193c825d3c8 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-c399f2de-3699-42b8-b034-5193c825d3c8 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-b5aa0bc9-698d-49af-ac1c-f0dfd07f3878 {
  margin-left: 200px;
margin-right: 200px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-b5aa0bc9-698d-49af-ac1c-f0dfd07f3878 {
  margin-left: 0px;
margin-right: 0px;
}
}



  #s-b5aa0bc9-698d-49af-ac1c-f0dfd07f3878 img.shogun-image {
    
    width: px;
  }


#s-b5aa0bc9-698d-49af-ac1c-f0dfd07f3878 .shogun-image-content {
  
    align-items: center;
  
}

#s-c428764e-b6b4-475b-afb7-46097625ddfb {
  margin-top: 50px;
margin-left: 40px;
margin-right: 40px;
}
@media (min-width: 768px) and (max-width: 991px){#s-c428764e-b6b4-475b-afb7-46097625ddfb {
  margin-left: 30px;
margin-right: 30px;
}
}
#s-c428764e-b6b4-475b-afb7-46097625ddfb hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(51, 51, 51, 1);
}

#s-6c4422d8-6e70-4fe6-8a72-ac3de38eee9b {
  margin-top: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-6c4422d8-6e70-4fe6-8a72-ac3de38eee9b .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-661a6d58-7fa0-469f-8beb-e5a0a728cdc2 {
  text-align: center;
}




  #s-661a6d58-7fa0-469f-8beb-e5a0a728cdc2 img.shogun-image {
    
    width: px;
  }


#s-661a6d58-7fa0-469f-8beb-e5a0a728cdc2 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-258f9100-4c50-4362-9835-6f08f03f6908 {
  margin-bottom: 50px;
}

#s-43b2377b-cab5-4fa4-ab9e-ae700e86718f {
  margin-left: 45px;
margin-right: 45px;
min-height: 50px;
}








#s-43b2377b-cab5-4fa4-ab9e-ae700e86718f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-43b2377b-cab5-4fa4-ab9e-ae700e86718f.shg-box.shg-c {
  justify-content: center;
}

#s-9fce4602-1938-4c35-bc21-9959ae5b90ed {
  margin-top: 15px;
margin-bottom: 15px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-9fce4602-1938-4c35-bc21-9959ae5b90ed .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-534071f3-26c6-4233-ac4a-567213f952d6 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid #ddd;
}

#s-534071f3-26c6-4233-ac4a-567213f952d6 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(249, 249, 249, 1);
  padding: 11px;
}

#s-534071f3-26c6-4233-ac4a-567213f952d6 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(51, 51, 51, 1);
}

#s-534071f3-26c6-4233-ac4a-567213f952d6 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid #ddd;
}

#s-534071f3-26c6-4233-ac4a-567213f952d6 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(51, 51, 51, 1);
  text-align: left;
  font-family: Asap;
  font-weight: 500;
  font-style: ;
  font-size: 16px;
}

#s-534071f3-26c6-4233-ac4a-567213f952d6 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-8e345fd7-c6dd-4c34-afbe-64a684fbdf04 {
  margin-top: 30px;
}

#s-8e345fd7-c6dd-4c34-afbe-64a684fbdf04 > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(238, 238, 238, 1);
}

#s-8e345fd7-c6dd-4c34-afbe-64a684fbdf04 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 11px;
}

#s-8e345fd7-c6dd-4c34-afbe-64a684fbdf04 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(51, 51, 51, 1);
}

#s-8e345fd7-c6dd-4c34-afbe-64a684fbdf04 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(238, 238, 238, 1);
}

#s-8e345fd7-c6dd-4c34-afbe-64a684fbdf04 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(51, 51, 51, 1);
  text-align: left;
  font-family: Asap;
  font-weight: 600;
  font-style: ;
  font-size: 18px;
}

#s-8e345fd7-c6dd-4c34-afbe-64a684fbdf04 > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 18px;
}
#s-957f4c4e-d01d-40ed-9bb8-eed325e1ecf6 {
  padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
}

#s-957f4c4e-d01d-40ed-9bb8-eed325e1ecf6 .shogun-form-box {
  padding: 10px;
}

#s-957f4c4e-d01d-40ed-9bb8-eed325e1ecf6 .shogun-form-box label.shogun-form-label {
  display: flex;
  font-weight:  600; 
  color: rgba(51, 51, 51, 1);
  font-family: Asap;
  font-size: 15px;
  font-style: ;
  
  
  
  padding-top: 5px;
  padding-bottom: 5px;
  
  
}

#s-957f4c4e-d01d-40ed-9bb8-eed325e1ecf6 .shogun-form-success-msg {
  visibility: hidden;
  display: flex;
  align-items: center;
  font-size: ;
  font-style: ;
  color: rgba(255, 92, 38, 1);
  font-family: Asap;
  font-weight: 500;
  line-height: 2em;
  
  justify-content: center;
}

#s-957f4c4e-d01d-40ed-9bb8-eed325e1ecf6 .shogun-form-field-error-msg > svg {
  margin-right: 4px;
  stroke: #ff0000;
}

#s-957f4c4e-d01d-40ed-9bb8-eed325e1ecf6 .shogun-form-success-msg > svg {
  margin-right: 4px;
  stroke: rgba(255, 92, 38, 1);
}

#s-957f4c4e-d01d-40ed-9bb8-eed325e1ecf6 .shogun-form-field-error-msg {
  visibility: hidden;
  display: flex;
  align-items: center;
  
  font-style: ;
  color: #ff0000;
  font-family: Asap;
  font-weight: 500;
  
  
  justify-content: center;
}

#s-957f4c4e-d01d-40ed-9bb8-eed325e1ecf6 .shogun-form-field-error-msg > span {
  display: flex;
  align-items: center;
}
@media (min-width: 0px) {
[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-46eec93c-98e1-4fb9-bf59-896fcd95e6c8"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.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-04a05585-45a0-49a5-b066-20567c74b74b  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: rgba(51, 51, 51, 1);
  
  
  
  font-size: 14px;
  
  color: rgba(51, 51, 51, 1);
  font-family: Asap;
  
  
  
}

#s-04a05585-45a0-49a5-b066-20567c74b74b  .shogun-form-text-input-field::-moz-placeholder {
  
  
  color: #000;
  
  
  
  
}

#s-04a05585-45a0-49a5-b066-20567c74b74b  .shogun-form-text-input-field:-ms-input-placeholder {
  
  
  color: #000;
  
  
  
  
}

#s-04a05585-45a0-49a5-b066-20567c74b74b  .shogun-form-text-input-field::placeholder {
  
  
  color: #000;
  
  
  
  
}


#s-04a05585-45a0-49a5-b066-20567c74b74b .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  border-radius: 0px;
  
  color: #000;
}



#s-04a05585-45a0-49a5-b066-20567c74b74b .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


#s-951cc066-2867-4e46-9d82-99a962a1a00d  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  font-size: 14px;
  font-style: ;
  color: #000;
  font-family: Asap;
  font-weight: ;
  
  
}

#s-951cc066-2867-4e46-9d82-99a962a1a00d  .shogun-form-text-input-field::-moz-placeholder {
  
  
  color: #000;
  
  
  
  
}

#s-951cc066-2867-4e46-9d82-99a962a1a00d  .shogun-form-text-input-field:-ms-input-placeholder {
  
  
  color: #000;
  
  
  
  
}

#s-951cc066-2867-4e46-9d82-99a962a1a00d  .shogun-form-text-input-field::placeholder {
  
  
  color: #000;
  
  
  
  
}


#s-951cc066-2867-4e46-9d82-99a962a1a00d .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-951cc066-2867-4e46-9d82-99a962a1a00d .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


#s-1dc7eea6-d487-4561-a009-37c8bf9bd1a8  .shogun-form-text-input-field {
  border-width: 1px;
  border-color: #000;
  
  
  
  font-size: 14px;
  font-style: ;
  color: #000;
  font-family: Asap;
  font-weight: ;
  
  
}

#s-1dc7eea6-d487-4561-a009-37c8bf9bd1a8  .shogun-form-text-input-field::-moz-placeholder {
  
  
  color: #000;
  
  
  
  
}

#s-1dc7eea6-d487-4561-a009-37c8bf9bd1a8  .shogun-form-text-input-field:-ms-input-placeholder {
  
  
  color: #000;
  
  
  
  
}

#s-1dc7eea6-d487-4561-a009-37c8bf9bd1a8  .shogun-form-text-input-field::placeholder {
  
  
  color: #000;
  
  
  
  
}


#s-1dc7eea6-d487-4561-a009-37c8bf9bd1a8 .shogun-form-text-input-field:hover {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}



#s-1dc7eea6-d487-4561-a009-37c8bf9bd1a8 .shogun-form-text-input-field:focus {
  border-width: 1px;
  border-color: #000;
  
  
  color: #000;
}


.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-2334338e-ec54-4e86-bacb-5e196d717764 {
  background-image: url(none);
background-repeat: no-repeat;
padding-top: 10px;
padding-left: 25px;
padding-bottom: 10px;
padding-right: 25px;
border-radius: 1px;
color: #FFFFFF;
background-color: rgba(255, 92, 38, 1);
text-align: center;
cursor: pointer;
font-family: Asap;
font-weight: 600;
font-size: 17px;
letter-spacing: 1px;
hover-type: color;
}
#s-2334338e-ec54-4e86-bacb-5e196d717764:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-2334338e-ec54-4e86-bacb-5e196d717764:active {background-color: #000000 !important;
text-decoration: none !important;}
#s-2334338e-ec54-4e86-bacb-5e196d717764[disabled],
#s-2334338e-ec54-4e86-bacb-5e196d717764[disabled]:hover,
#s-2334338e-ec54-4e86-bacb-5e196d717764[disabled]:focus {
  background-color: #D7D5E2 !important;
}

#s-2334338e-ec54-4e86-bacb-5e196d717764 {
  display:  inline-block ;
  width:  auto ;
}


#s-b6c8b138-3cf7-4ef7-ae7e-3ba1f3f476fd {
  margin-left: 10px;
margin-right: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-b6c8b138-3cf7-4ef7-ae7e-3ba1f3f476fd {
  display: none;
}
#s-b6c8b138-3cf7-4ef7-ae7e-3ba1f3f476fd, #wrap-s-b6c8b138-3cf7-4ef7-ae7e-3ba1f3f476fd { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-b6c8b138-3cf7-4ef7-ae7e-3ba1f3f476fd {
  display: none;
}
#s-b6c8b138-3cf7-4ef7-ae7e-3ba1f3f476fd, #wrap-s-b6c8b138-3cf7-4ef7-ae7e-3ba1f3f476fd { display:none !important; }}







#s-b6c8b138-3cf7-4ef7-ae7e-3ba1f3f476fd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b6c8b138-3cf7-4ef7-ae7e-3ba1f3f476fd.shg-box.shg-c {
  justify-content: center;
}

#s-469f44e1-e10b-45df-8dce-ec69ac8fe874 {
  margin-top: -10px;
min-height: 300px;
text-align: center;
}
@media (min-width: 1200px){#s-469f44e1-e10b-45df-8dce-ec69ac8fe874 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-469f44e1-e10b-45df-8dce-ec69ac8fe874 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-469f44e1-e10b-45df-8dce-ec69ac8fe874 {
  display: none;
}
#s-469f44e1-e10b-45df-8dce-ec69ac8fe874, #wrap-s-469f44e1-e10b-45df-8dce-ec69ac8fe874 { display:none !important; }}@media (max-width: 767px){#s-469f44e1-e10b-45df-8dce-ec69ac8fe874 {
  display: none;
}
#s-469f44e1-e10b-45df-8dce-ec69ac8fe874, #wrap-s-469f44e1-e10b-45df-8dce-ec69ac8fe874 { display:none !important; }}



  #s-469f44e1-e10b-45df-8dce-ec69ac8fe874 img.shogun-image {
    
    width: px;
  }


#s-469f44e1-e10b-45df-8dce-ec69ac8fe874 .shogun-image-content {
  
    align-items: center;
  
}

#s-db9dd2cf-80f6-4676-b178-c5d9b320a045 {
  margin-left: 0px;
margin-right: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-db9dd2cf-80f6-4676-b178-c5d9b320a045 {
  display: none;
}
#s-db9dd2cf-80f6-4676-b178-c5d9b320a045, #wrap-s-db9dd2cf-80f6-4676-b178-c5d9b320a045 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-db9dd2cf-80f6-4676-b178-c5d9b320a045 {
  display: none;
}
#s-db9dd2cf-80f6-4676-b178-c5d9b320a045, #wrap-s-db9dd2cf-80f6-4676-b178-c5d9b320a045 { display:none !important; }}



  #s-db9dd2cf-80f6-4676-b178-c5d9b320a045 img.shogun-image {
    
    width: px;
  }


#s-db9dd2cf-80f6-4676-b178-c5d9b320a045 .shogun-image-content {
  
    align-items: center;
  
}

#s-66f7d146-5a07-4fd0-96bd-14b2d1aeea77 {
  margin-top: 20px;
margin-left: 30px;
margin-right: 0px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-66f7d146-5a07-4fd0-96bd-14b2d1aeea77 {
  margin-top: 30px;
margin-bottom: 20px;
}
}@media (max-width: 767px){#s-66f7d146-5a07-4fd0-96bd-14b2d1aeea77 {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 20px;
}
}
#s-66f7d146-5a07-4fd0-96bd-14b2d1aeea77 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 33px;
  line-height: 1.5em;
  letter-spacing: ;
  text-align: left;
}


@media (max-width: 767px){#s-66f7d146-5a07-4fd0-96bd-14b2d1aeea77 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 26px;
  line-height: 1.5em;
  letter-spacing: ;
  text-align: left;
}


}
#s-4a394426-8824-4556-9de1-7dee13ea29fa {
  margin-top: 20px;
margin-left: 0px;
margin-bottom: 20px;
margin-right: 0px;
min-height: 52px;
text-align: center;
}
@media (max-width: 767px){#s-4a394426-8824-4556-9de1-7dee13ea29fa {
  margin-top: 0px;
margin-bottom: 0px;
}
}



  #s-4a394426-8824-4556-9de1-7dee13ea29fa img.shogun-image {
    
    width: px;
  }


#s-4a394426-8824-4556-9de1-7dee13ea29fa .shogun-image-content {
  
    align-items: center;
  
}

#s-b2689344-7504-47b3-a8e2-3cbd086e10b0 {
  min-height: 52px;
}








#s-b2689344-7504-47b3-a8e2-3cbd086e10b0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b2689344-7504-47b3-a8e2-3cbd086e10b0.shg-box.shg-c {
  justify-content: center;
}

#s-0101aa94-4dd4-44d7-8e43-5769aff0f1d9 {
  margin-top: 10px;
margin-left: 30px;
margin-right: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-0101aa94-4dd4-44d7-8e43-5769aff0f1d9 {
  margin-top: 20px;
margin-bottom: 20px;
}
}@media (max-width: 767px){#s-0101aa94-4dd4-44d7-8e43-5769aff0f1d9 {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 20px;
}
}
#s-aad56c9e-2388-43dd-9e31-e1ed90e1f788 {
  min-height: 300px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-aad56c9e-2388-43dd-9e31-e1ed90e1f788 {
  display: none;
}
#s-aad56c9e-2388-43dd-9e31-e1ed90e1f788, #wrap-s-aad56c9e-2388-43dd-9e31-e1ed90e1f788 { display:none !important; }}@media (max-width: 767px){#s-aad56c9e-2388-43dd-9e31-e1ed90e1f788 {
  display: none;
}
#s-aad56c9e-2388-43dd-9e31-e1ed90e1f788, #wrap-s-aad56c9e-2388-43dd-9e31-e1ed90e1f788 { display:none !important; }}



  #s-aad56c9e-2388-43dd-9e31-e1ed90e1f788 img.shogun-image {
    
    width: px;
  }


#s-aad56c9e-2388-43dd-9e31-e1ed90e1f788 .shogun-image-content {
  
    align-items: center;
  
}

#s-52dc5688-71e0-485e-ae58-7464e493777a {
  margin-left: 0px;
margin-right: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-52dc5688-71e0-485e-ae58-7464e493777a {
  display: none;
}
#s-52dc5688-71e0-485e-ae58-7464e493777a, #wrap-s-52dc5688-71e0-485e-ae58-7464e493777a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-52dc5688-71e0-485e-ae58-7464e493777a {
  display: none;
}
#s-52dc5688-71e0-485e-ae58-7464e493777a, #wrap-s-52dc5688-71e0-485e-ae58-7464e493777a { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-52dc5688-71e0-485e-ae58-7464e493777a {
  margin-bottom: 10px;
}
}



  #s-52dc5688-71e0-485e-ae58-7464e493777a img.shogun-image {
    
    width: px;
  }


#s-52dc5688-71e0-485e-ae58-7464e493777a .shogun-image-content {
  
    align-items: center;
  
}

#s-35d381f9-78af-4e36-84dc-7e74885c44fc {
  margin-top: 30px;
margin-bottom: 20px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-35d381f9-78af-4e36-84dc-7e74885c44fc {
  margin-top: 40px;
margin-bottom: 30px;
}
}@media (max-width: 767px){#s-35d381f9-78af-4e36-84dc-7e74885c44fc {
  margin-left: 20px;
margin-bottom: 30px;
margin-right: 20px;
}
}
#s-35d381f9-78af-4e36-84dc-7e74885c44fc .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 33px;
  line-height: 1.5em;
  letter-spacing: ;
  text-align: center;
}


@media (max-width: 767px){#s-35d381f9-78af-4e36-84dc-7e74885c44fc .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 26px;
  line-height: 1.5em;
  letter-spacing: ;
  text-align: center;
}


}
#s-1ab88f70-ce51-44c7-b0a9-bc61f37e38d3 {
  margin-top: 10px;
margin-left: 195px;
margin-bottom: 30px;
margin-right: 195px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-1ab88f70-ce51-44c7-b0a9-bc61f37e38d3 {
  display: none;
}
#s-1ab88f70-ce51-44c7-b0a9-bc61f37e38d3, #wrap-s-1ab88f70-ce51-44c7-b0a9-bc61f37e38d3 { display:none !important; }}@media (max-width: 767px){#s-1ab88f70-ce51-44c7-b0a9-bc61f37e38d3 {
  display: none;
}
#s-1ab88f70-ce51-44c7-b0a9-bc61f37e38d3, #wrap-s-1ab88f70-ce51-44c7-b0a9-bc61f37e38d3 { display:none !important; }}



  #s-1ab88f70-ce51-44c7-b0a9-bc61f37e38d3 img.shogun-image {
    
    width: px;
  }


#s-1ab88f70-ce51-44c7-b0a9-bc61f37e38d3 .shogun-image-content {
  
    align-items: center;
  
}

#s-bed2ce67-6076-41dc-a5af-d151ce9d8842 {
  margin-top: 10px;
margin-bottom: 30px;
text-align: center;
}
@media (min-width: 1200px){#s-bed2ce67-6076-41dc-a5af-d151ce9d8842 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-bed2ce67-6076-41dc-a5af-d151ce9d8842 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-bed2ce67-6076-41dc-a5af-d151ce9d8842 {
  display: none;
}
#s-bed2ce67-6076-41dc-a5af-d151ce9d8842, #wrap-s-bed2ce67-6076-41dc-a5af-d151ce9d8842 { display:none !important; }}@media (max-width: 767px){#s-bed2ce67-6076-41dc-a5af-d151ce9d8842 {
  display: none;
}
#s-bed2ce67-6076-41dc-a5af-d151ce9d8842, #wrap-s-bed2ce67-6076-41dc-a5af-d151ce9d8842 { display:none !important; }}



  #s-bed2ce67-6076-41dc-a5af-d151ce9d8842 img.shogun-image {
    
    width: px;
  }


#s-bed2ce67-6076-41dc-a5af-d151ce9d8842 .shogun-image-content {
  
    align-items: center;
  
}

#s-7717ba31-379c-4a42-b474-85462a965fa0 {
  text-align: center;
}




  #s-7717ba31-379c-4a42-b474-85462a965fa0 img.shogun-image {
    
    width: px;
  }


#s-7717ba31-379c-4a42-b474-85462a965fa0 .shogun-image-content {
  
    align-items: center;
  
}

#s-43978e01-2f3a-4ef9-a6d7-771ce3605017 {
  margin-top: 20px;
margin-left: 30px;
margin-bottom: 20px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-43978e01-2f3a-4ef9-a6d7-771ce3605017 {
  margin-top: 30px;
margin-bottom: 30px;
}
}@media (max-width: 767px){#s-43978e01-2f3a-4ef9-a6d7-771ce3605017 {
  margin-left: 20px;
margin-bottom: 10px;
margin-right: 40px;
}
}
#s-43978e01-2f3a-4ef9-a6d7-771ce3605017 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 33px;
  line-height: 1.5em;
  letter-spacing: ;
  text-align: left;
}


@media (max-width: 767px){#s-43978e01-2f3a-4ef9-a6d7-771ce3605017 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 26px;
  line-height: 1.5em;
  letter-spacing: ;
  text-align: left;
}


}
#s-434d9f14-ff9c-453b-9926-c8ca4b95741b {
  margin-top: 20px;
margin-left: 0px;
margin-bottom: 20px;
margin-right: 0px;
min-height: 52px;
text-align: center;
}




  #s-434d9f14-ff9c-453b-9926-c8ca4b95741b img.shogun-image {
    
    width: px;
  }


#s-434d9f14-ff9c-453b-9926-c8ca4b95741b .shogun-image-content {
  
    align-items: center;
  
}

#s-3df39a4f-c900-44c5-b8aa-9796a828d9a2 {
  margin-left: 2px;
margin-right: 157px;
min-height: 52px;
}
@media (max-width: 767px){#s-3df39a4f-c900-44c5-b8aa-9796a828d9a2 {
  margin-left: 5px;
margin-bottom: 30px;
margin-right: 5px;
}
}







#s-3df39a4f-c900-44c5-b8aa-9796a828d9a2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3df39a4f-c900-44c5-b8aa-9796a828d9a2.shg-box.shg-c {
  justify-content: center;
}

#s-9b05868c-403b-41e3-b689-44d7ba154bcb {
  margin-left: 30px;
margin-right: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-9b05868c-403b-41e3-b689-44d7ba154bcb {
  margin-top: 30px;
margin-bottom: 30px;
}
}@media (max-width: 767px){#s-9b05868c-403b-41e3-b689-44d7ba154bcb {
  margin-top: 10px;
margin-left: 20px;
}
}
#s-11a85d35-937f-43c4-a8a7-c4547c46fdec {
  margin-left: 0px;
margin-right: 0px;
text-align: center;
}




  #s-11a85d35-937f-43c4-a8a7-c4547c46fdec img.shogun-image {
    
    width: px;
  }


#s-11a85d35-937f-43c4-a8a7-c4547c46fdec .shogun-image-content {
  
    align-items: center;
  
}

#s-6f8bcc5b-4cc7-4ff3-93a7-62595c69742f {
  margin-top: 50px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-6f8bcc5b-4cc7-4ff3-93a7-62595c69742f {
  margin-bottom: 30px;
}
}@media (max-width: 767px){#s-6f8bcc5b-4cc7-4ff3-93a7-62595c69742f {
  margin-top: 20px;
margin-left: 5px;
margin-bottom: 20px;
margin-right: 20px;
}
}
#s-6f8bcc5b-4cc7-4ff3-93a7-62595c69742f .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 33px;
  line-height: 1.5em;
  letter-spacing: ;
  text-align: center;
}


@media (max-width: 767px){#s-6f8bcc5b-4cc7-4ff3-93a7-62595c69742f .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 26px;
  line-height: 1.5em;
  letter-spacing: ;
  text-align: center;
}


}
#s-ee67bac1-6ec9-41d4-9a03-e7a036f49195 {
  margin-top: 20px;
margin-bottom: 20px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-ee67bac1-6ec9-41d4-9a03-e7a036f49195 {
  margin-left: 5px;
margin-right: 5px;
}
}



  #s-ee67bac1-6ec9-41d4-9a03-e7a036f49195 img.shogun-image {
    
    width: px;
  }


#s-ee67bac1-6ec9-41d4-9a03-e7a036f49195 .shogun-image-content {
  
    align-items: center;
  
}

#s-530ec12f-e613-43f4-b306-f67d58ca401d {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 20px;
margin-right: 20px;
}
@media (min-width: 768px) and (max-width: 991px){#s-530ec12f-e613-43f4-b306-f67d58ca401d {
  margin-top: 30px;
}
}@media (max-width: 767px){#s-530ec12f-e613-43f4-b306-f67d58ca401d {
  margin-top: 10px;
margin-bottom: 10px;
}
}
#s-526baea2-8f3b-4616-a09c-a1a57013b534 {
  margin-top: 10px;
margin-left: 20px;
margin-right: 20px;
}
@media (min-width: 768px) and (max-width: 991px){#s-526baea2-8f3b-4616-a09c-a1a57013b534 {
  margin-top: 20px;
margin-bottom: 20px;
}
}@media (max-width: 767px){#s-526baea2-8f3b-4616-a09c-a1a57013b534 {
  margin-top: 5px;
}
}
#s-d28506b3-6ffa-467b-870e-7854b855360b {
  margin-top: 35px;
margin-left: 0px;
margin-right: 0px;
text-align: center;
}




  #s-d28506b3-6ffa-467b-870e-7854b855360b img.shogun-image {
    
    width: px;
  }


#s-d28506b3-6ffa-467b-870e-7854b855360b .shogun-image-content {
  
    align-items: center;
  
}

#s-628ffdcd-c76a-4c0e-b468-7f5ebd061f86 {
  margin-top: 30px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-628ffdcd-c76a-4c0e-b468-7f5ebd061f86 {
  margin-bottom: 10px;
}
}
#s-628ffdcd-c76a-4c0e-b468-7f5ebd061f86 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 33px;
  line-height: 1.5em;
  letter-spacing: ;
  text-align: center;
}


@media (max-width: 767px){#s-628ffdcd-c76a-4c0e-b468-7f5ebd061f86 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 26px;
  line-height: 1.5em;
  letter-spacing: ;
  text-align: center;
}


}
#s-258976bd-e492-4f48-adab-4247404dcd3e {
  margin-left: 10px;
margin-bottom: 20px;
margin-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-258976bd-e492-4f48-adab-4247404dcd3e .shogun-heading-component h4 {
  color: rgba(51, 51, 51, 1);
  font-weight:  normal ;
  font-family: Asap;
  font-style:  normal ;
  font-size: 21px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}


@media (max-width: 767px){#s-258976bd-e492-4f48-adab-4247404dcd3e .shogun-heading-component h4 {
  color: rgba(51, 51, 51, 1);
  font-weight:  normal ;
  font-family: Asap;
  font-style:  normal ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}


}
#s-8aacfa06-4de3-4923-9fc5-408be8bb5492 {
  margin-left: 20px;
margin-bottom: 30px;
margin-right: 20px;
}

#s-1e4f6596-6629-42fd-b570-bbc6fd46774f {
  margin-top: 20px;
margin-left: 0px;
margin-bottom: 20px;
margin-right: 0px;
min-height: 570px;
}
@media (min-width: 1200px){#s-1e4f6596-6629-42fd-b570-bbc6fd46774f {
  display: none;
}
#s-1e4f6596-6629-42fd-b570-bbc6fd46774f, #wrap-s-1e4f6596-6629-42fd-b570-bbc6fd46774f { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1e4f6596-6629-42fd-b570-bbc6fd46774f {
  display: none;
}
#s-1e4f6596-6629-42fd-b570-bbc6fd46774f, #wrap-s-1e4f6596-6629-42fd-b570-bbc6fd46774f { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1e4f6596-6629-42fd-b570-bbc6fd46774f {
  min-height: 57px;
}
}@media (max-width: 767px){#s-1e4f6596-6629-42fd-b570-bbc6fd46774f {
  display: none;
}
#s-1e4f6596-6629-42fd-b570-bbc6fd46774f, #wrap-s-1e4f6596-6629-42fd-b570-bbc6fd46774f { display:none !important; }}
@media (min-width: 0px) {
[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 25.0px);
}

}

@media (min-width: 992px) {
[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 25.0px);
}

}

@media (min-width: 1200px) {
[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 25.0px);
}

[id="s-1e4f6596-6629-42fd-b570-bbc6fd46774f"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 25.0px);
}

}

#s-3a58926f-660d-4de4-a59f-bf68220cf714 {
  margin-bottom: 40px;
min-height: 270px;
}
@media (min-width: 768px) and (max-width: 991px){#s-3a58926f-660d-4de4-a59f-bf68220cf714 {
  margin-bottom: 20px;
margin-right: -20px;
min-height: 27px;
}
}







#s-3a58926f-660d-4de4-a59f-bf68220cf714 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3a58926f-660d-4de4-a59f-bf68220cf714.shg-box.shg-c {
  justify-content: center;
}

#s-3235921f-af20-4d1d-a79c-3fcd3f22c60c {
  min-height: 270px;
text-align: right;
}
@media (min-width: 768px) and (max-width: 991px){#s-3235921f-af20-4d1d-a79c-3fcd3f22c60c {
  min-height: 27px;
}
}




#s-3235921f-af20-4d1d-a79c-3fcd3f22c60c .shogun-image-content {
  
    align-items: center;
  
}

#s-4293a645-9990-471a-b163-1abd946342ab {
  min-height: 270px;
}
@media (min-width: 768px) and (max-width: 991px){#s-4293a645-9990-471a-b163-1abd946342ab {
  margin-right: -20px;
min-height: 27px;
}
}







#s-4293a645-9990-471a-b163-1abd946342ab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4293a645-9990-471a-b163-1abd946342ab.shg-box.shg-c {
  justify-content: center;
}

#s-932d2b71-8b0d-4777-b78c-abb13184b44b {
  min-height: 270px;
text-align: right;
}
@media (min-width: 768px) and (max-width: 991px){#s-932d2b71-8b0d-4777-b78c-abb13184b44b {
  min-height: 27px;
}
}




#s-932d2b71-8b0d-4777-b78c-abb13184b44b .shogun-image-content {
  
    align-items: center;
  
}

#s-403381d9-b88a-4df2-9241-a2b63a366328 {
  min-height: 580px;
}
@media (min-width: 768px) and (max-width: 991px){#s-403381d9-b88a-4df2-9241-a2b63a366328 {
  min-height: 58px;
}
}







#s-403381d9-b88a-4df2-9241-a2b63a366328 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-403381d9-b88a-4df2-9241-a2b63a366328.shg-box.shg-c {
  justify-content: center;
}

#s-f7271f0c-28d4-41ab-b765-412cb33888a3 {
  min-height: 580px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-f7271f0c-28d4-41ab-b765-412cb33888a3 {
  margin-left: -20px;
min-height: 58px;
}
}




#s-f7271f0c-28d4-41ab-b765-412cb33888a3 .shogun-image-content {
  
    align-items: center;
  
}

#s-20b1b7cc-6819-4981-8fc2-17c5fdc9bb7f {
  min-height: 0px;
text-align: right;
}
@media (min-width: 1200px){#s-20b1b7cc-6819-4981-8fc2-17c5fdc9bb7f {
  display: none;
}
#s-20b1b7cc-6819-4981-8fc2-17c5fdc9bb7f, #wrap-s-20b1b7cc-6819-4981-8fc2-17c5fdc9bb7f { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-20b1b7cc-6819-4981-8fc2-17c5fdc9bb7f {
  display: none;
}
#s-20b1b7cc-6819-4981-8fc2-17c5fdc9bb7f, #wrap-s-20b1b7cc-6819-4981-8fc2-17c5fdc9bb7f { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-20b1b7cc-6819-4981-8fc2-17c5fdc9bb7f {
  display: none;
}
#s-20b1b7cc-6819-4981-8fc2-17c5fdc9bb7f, #wrap-s-20b1b7cc-6819-4981-8fc2-17c5fdc9bb7f { display:none !important; }}@media (max-width: 767px){#s-20b1b7cc-6819-4981-8fc2-17c5fdc9bb7f {
  margin-top: 3px;
margin-bottom: 3px;
}
}



  #s-20b1b7cc-6819-4981-8fc2-17c5fdc9bb7f img.shogun-image {
    
    width: px;
  }


#s-20b1b7cc-6819-4981-8fc2-17c5fdc9bb7f .shogun-image-content {
  
    align-items: center;
  
}

#s-72d1a721-186f-4b8d-a760-2bc0681c2a79 {
  min-height: 0px;
text-align: right;
}
@media (min-width: 1200px){#s-72d1a721-186f-4b8d-a760-2bc0681c2a79 {
  display: none;
}
#s-72d1a721-186f-4b8d-a760-2bc0681c2a79, #wrap-s-72d1a721-186f-4b8d-a760-2bc0681c2a79 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-72d1a721-186f-4b8d-a760-2bc0681c2a79 {
  display: none;
}
#s-72d1a721-186f-4b8d-a760-2bc0681c2a79, #wrap-s-72d1a721-186f-4b8d-a760-2bc0681c2a79 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-72d1a721-186f-4b8d-a760-2bc0681c2a79 {
  display: none;
}
#s-72d1a721-186f-4b8d-a760-2bc0681c2a79, #wrap-s-72d1a721-186f-4b8d-a760-2bc0681c2a79 { display:none !important; }}@media (max-width: 767px){#s-72d1a721-186f-4b8d-a760-2bc0681c2a79 {
  margin-top: 0px;
margin-bottom: 3px;
}
}



  #s-72d1a721-186f-4b8d-a760-2bc0681c2a79 img.shogun-image {
    
    width: px;
  }


#s-72d1a721-186f-4b8d-a760-2bc0681c2a79 .shogun-image-content {
  
    align-items: center;
  
}

#s-15f4dcf6-2b48-4a0b-b4ec-a19d93905258 {
  min-height: 58px;
text-align: left;
}
@media (min-width: 1200px){#s-15f4dcf6-2b48-4a0b-b4ec-a19d93905258 {
  display: none;
}
#s-15f4dcf6-2b48-4a0b-b4ec-a19d93905258, #wrap-s-15f4dcf6-2b48-4a0b-b4ec-a19d93905258 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-15f4dcf6-2b48-4a0b-b4ec-a19d93905258 {
  display: none;
}
#s-15f4dcf6-2b48-4a0b-b4ec-a19d93905258, #wrap-s-15f4dcf6-2b48-4a0b-b4ec-a19d93905258 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-15f4dcf6-2b48-4a0b-b4ec-a19d93905258 {
  display: none;
}
#s-15f4dcf6-2b48-4a0b-b4ec-a19d93905258, #wrap-s-15f4dcf6-2b48-4a0b-b4ec-a19d93905258 { display:none !important; }}@media (max-width: 767px){#s-15f4dcf6-2b48-4a0b-b4ec-a19d93905258 {
  margin-bottom: 20px;
}
}



  #s-15f4dcf6-2b48-4a0b-b4ec-a19d93905258 img.shogun-image {
    
    width: px;
  }


#s-15f4dcf6-2b48-4a0b-b4ec-a19d93905258 .shogun-image-content {
  
    align-items: center;
  
}

#s-570ec9bd-1c4b-4854-8eeb-8f4fa76f5fc6 {
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991px){#s-570ec9bd-1c4b-4854-8eeb-8f4fa76f5fc6 {
  display: none;
}
#s-570ec9bd-1c4b-4854-8eeb-8f4fa76f5fc6, #wrap-s-570ec9bd-1c4b-4854-8eeb-8f4fa76f5fc6 { display:none !important; }}@media (max-width: 767px){#s-570ec9bd-1c4b-4854-8eeb-8f4fa76f5fc6 {
  display: none;
}
#s-570ec9bd-1c4b-4854-8eeb-8f4fa76f5fc6, #wrap-s-570ec9bd-1c4b-4854-8eeb-8f4fa76f5fc6 { display:none !important; }}
#s-e1c694e7-6b1e-4edb-b242-d240ddb59acb {
  margin-top: 10px;
margin-bottom: 30px;
}

#s-2d40cd71-b362-4bbb-9622-472b0c4d1fb3 {
  margin-left: 20px;
margin-right: 20px;
min-height: 50px;
background-color: rgba(243, 243, 243, 1);
}
@media (min-width: 1200px){#s-2d40cd71-b362-4bbb-9622-472b0c4d1fb3 {
  display: none;
}
#s-2d40cd71-b362-4bbb-9622-472b0c4d1fb3, #wrap-s-2d40cd71-b362-4bbb-9622-472b0c4d1fb3 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2d40cd71-b362-4bbb-9622-472b0c4d1fb3 {
  display: none;
}
#s-2d40cd71-b362-4bbb-9622-472b0c4d1fb3, #wrap-s-2d40cd71-b362-4bbb-9622-472b0c4d1fb3 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2d40cd71-b362-4bbb-9622-472b0c4d1fb3 {
  display: none;
}
#s-2d40cd71-b362-4bbb-9622-472b0c4d1fb3, #wrap-s-2d40cd71-b362-4bbb-9622-472b0c4d1fb3 { display:none !important; }}







#s-2d40cd71-b362-4bbb-9622-472b0c4d1fb3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2d40cd71-b362-4bbb-9622-472b0c4d1fb3.shg-box.shg-c {
  justify-content: center;
}

#s-1033ea13-5d94-4991-8859-f693cb1c01b7 {
  margin-left: 40px;
margin-bottom: 10px;
margin-right: 40px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-1033ea13-5d94-4991-8859-f693cb1c01b7 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 30px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}


@media (max-width: 767px){#s-1033ea13-5d94-4991-8859-f693cb1c01b7 .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}


}
#s-d815c0e7-3d5c-49ac-9181-c248cc6bc45f {
  margin-top: 5px;
margin-left: 20px;
margin-bottom: 10px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-d815c0e7-3d5c-49ac-9181-c248cc6bc45f .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-dfc4f6db-8713-44c6-b2f7-4cf893c6a051 {
  margin-top: 10px;
margin-left: 20px;
margin-bottom: 10px;
margin-right: 20px;
}

#s-aac5f002-511b-4b09-b2da-1314c449a94f {
  margin-top: 10px;
margin-bottom: 10px;
padding-left: 10px;
padding-right: 10px;
}

#s-aac5f002-511b-4b09-b2da-1314c449a94f hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-2462ad5b-9e95-4431-b072-b5db7736baa2 {
  margin-left: 20px;
margin-bottom: 10px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-2462ad5b-9e95-4431-b072-b5db7736baa2 .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-72817e79-49bd-4fe3-8381-7478eb5ebb84 {
  margin-left: 20px;
margin-right: 20px;
}

#s-ff156bff-76ae-455a-9bd0-40cf9669aaf0 {
  margin-left: 10px;
margin-right: 10px;
}

#s-ff156bff-76ae-455a-9bd0-40cf9669aaf0 hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-dd7a7ace-4d80-40f5-9b7f-cd712628ff37 {
  margin-top: 5px;
margin-left: 20px;
margin-bottom: 10px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-dd7a7ace-4d80-40f5-9b7f-cd712628ff37 .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-8c9f1a5c-2abf-452d-8b6d-b332f5a35f9d {
  margin-left: 20px;
margin-right: 20px;
}

#s-ea1fd797-5c99-4592-8ba3-c3628469b32f {
  margin-top: 10px;
margin-left: 10px;
}

#s-ea1fd797-5c99-4592-8ba3-c3628469b32f hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-0fc3ab65-0d8a-41ce-bf9c-c4fd2602e22e {
  margin-top: 10px;
margin-left: 20px;
margin-bottom: 10px;
margin-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-0fc3ab65-0d8a-41ce-bf9c-c4fd2602e22e .shogun-heading-component h4 {
  color: #000;
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 20px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-6d761a38-2950-4d3b-be5e-8458edb137ac {
  margin-top: 10px;
margin-left: 20px;
margin-right: 20px;
}

#s-fe5ea865-6445-4eb5-9b0a-b69792736355 {
  margin-top: 20px;
margin-left: 10px;
margin-right: 10px;
}

#s-fe5ea865-6445-4eb5-9b0a-b69792736355 hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-059c6ce4-ad41-47ce-9b35-a6e5f07f1f8d {
  margin-top: 20px;
margin-left: 40px;
margin-bottom: 10px;
margin-right: 40px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-059c6ce4-ad41-47ce-9b35-a6e5f07f1f8d .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 30px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}


@media (max-width: 767px){#s-059c6ce4-ad41-47ce-9b35-a6e5f07f1f8d .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}


}
#s-8fa1f574-489a-4501-b062-daf24da9a369 {
  margin-left: 200px;
margin-right: 200px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-8fa1f574-489a-4501-b062-daf24da9a369 {
  display: none;
}
#s-8fa1f574-489a-4501-b062-daf24da9a369, #wrap-s-8fa1f574-489a-4501-b062-daf24da9a369 { display:none !important; }}@media (max-width: 767px){#s-8fa1f574-489a-4501-b062-daf24da9a369 {
  display: none;
}
#s-8fa1f574-489a-4501-b062-daf24da9a369, #wrap-s-8fa1f574-489a-4501-b062-daf24da9a369 { display:none !important; }}



  #s-8fa1f574-489a-4501-b062-daf24da9a369 img.shogun-image {
    
    width: px;
  }


#s-8fa1f574-489a-4501-b062-daf24da9a369 .shogun-image-content {
  
    align-items: center;
  
}

#s-821c80a4-f8a8-4ee9-babe-d7d27da65ccd {
  margin-left: 0px;
margin-right: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-821c80a4-f8a8-4ee9-babe-d7d27da65ccd {
  display: none;
}
#s-821c80a4-f8a8-4ee9-babe-d7d27da65ccd, #wrap-s-821c80a4-f8a8-4ee9-babe-d7d27da65ccd { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-821c80a4-f8a8-4ee9-babe-d7d27da65ccd {
  display: none;
}
#s-821c80a4-f8a8-4ee9-babe-d7d27da65ccd, #wrap-s-821c80a4-f8a8-4ee9-babe-d7d27da65ccd { display:none !important; }}



  #s-821c80a4-f8a8-4ee9-babe-d7d27da65ccd img.shogun-image {
    
    width: px;
  }


#s-821c80a4-f8a8-4ee9-babe-d7d27da65ccd .shogun-image-content {
  
    align-items: center;
  
}

#s-254557fc-4c0f-445c-9309-1ad586248e54 hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 1);
}

#s-ad99dc82-755d-4c6b-998f-60d2f184492b {
  margin-top: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ad99dc82-755d-4c6b-998f-60d2f184492b .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 25px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}


@media (max-width: 767px){#s-ad99dc82-755d-4c6b-998f-60d2f184492b .shogun-heading-component h3 {
  color: #000;
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 28px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}


}
#s-79c3efc4-f28d-448b-9b5b-1e1bcb41e8d3 {
  text-align: center;
}




  #s-79c3efc4-f28d-448b-9b5b-1e1bcb41e8d3 img.shogun-image {
    
    width: px;
  }


#s-79c3efc4-f28d-448b-9b5b-1e1bcb41e8d3 .shogun-image-content {
  
    align-items:  flex-start;
  
}

#s-83c9dfc4-3021-4f68-8090-c117cce1e80b {
  margin-top: 10px;
margin-bottom: 40px;
}

#s-6fd3c927-d107-453a-92c6-39e343371d6a {
  margin-left: 10px;
margin-right: 10px;
}

#s-a5a417cb-1564-4c81-ac5a-c717801214c4 {
  min-height: 50px;
}








#s-a5a417cb-1564-4c81-ac5a-c717801214c4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a5a417cb-1564-4c81-ac5a-c717801214c4.shg-box.shg-c {
  justify-content: center;
}

#s-11914f5f-d2b1-49d8-997f-4618a1f2c621 {
  box-shadow:1px 1px 1px 1px rgba(255, 255, 255, 1);
border-style: solid;
margin-top: 30px;
margin-left: 50px;
margin-right: 50px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
min-height: 500px;
}








#s-11914f5f-d2b1-49d8-997f-4618a1f2c621 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-11914f5f-d2b1-49d8-997f-4618a1f2c621.shg-box.shg-c {
  justify-content: flex-start;
}

#s-b9c1d5e1-75fd-48f0-a0d2-03a71830f6fc {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-b9c1d5e1-75fd-48f0-a0d2-03a71830f6fc {
  margin-top: 30px;
margin-bottom: 30px;
}
}@media (max-width: 767px){#s-b9c1d5e1-75fd-48f0-a0d2-03a71830f6fc {
  margin-top: 30px;
}
}
#s-b9c1d5e1-75fd-48f0-a0d2-03a71830f6fc .shogun-heading-component h2 {
  color: #000;
  font-weight:  600 ;
  font-family: Asap;
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



@media (min-width: 0px) {
[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 22.5px);
}

[id="s-2ef47d9a-a5f2-4946-ab4c-82d95474599b"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 22.5px);
}

}

#s-dddccb79-c8c2-45a0-b99f-26bf1d5ef330 {
  display: none;
}
.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

.shg-product-image-wrapper img.shogun-image {
  width: 100%;
}

.shg-product-img-placeholder img {
  padding: 3rem;
  background: rgba(0, 0, 0, 0.1);
}

.shg-product-image-wrapper {
  display: none;
  position: relative;
  width: 100%;
}

.shg-product-image-wrapper.visible {
  display: inline-block;
}

.shg-product-image-wrapper .shg-product-image-wrapper a {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.shg-product-image-wrapper .shg-image-zoom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-width: 100%;
  min-height: 100%;
}

.shg-c.shg-align-center .shg-image-zoom {
  margin: 0 auto;
}

.shg-c.shg-align-right .shg-image-zoom {
  margin-left: auto;
}

.shg-image-zoom .shg-image-zoom-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.5s ease-out;
  transform: scale(1);
}

/**
  Fix for IE11, as min-width does not works there.
**/
@media screen\0 {
  .shg-product-image-wrapper > .shogun-image {
    width: 100%;
  }
}

#s-7d7a23a6-990c-4252-ac27-fe54cfb3b474 {
  box-shadow:1px 1px 1px 1px rgba(255, 255, 255, 1);
border-style: solid;
border-top-width: 0px;
border-left-width: 00px;
border-bottom-width: 0px;
border-right-width: 00px;
border-color: rgba(117, 114, 114, 0.32);
text-align: left;
}


.shg-c#s-7d7a23a6-990c-4252-ac27-fe54cfb3b474 {
  max-width: 100%;
}

.shg-c#s-7d7a23a6-990c-4252-ac27-fe54cfb3b474 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7d7a23a6-990c-4252-ac27-fe54cfb3b474 .shg-image-zoom,
.shg-c#s-7d7a23a6-990c-4252-ac27-fe54cfb3b474 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7d7a23a6-990c-4252-ac27-fe54cfb3b474 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-7d7a23a6-990c-4252-ac27-fe54cfb3b474 {
  max-width: 100%;
}

.shg-c#s-7d7a23a6-990c-4252-ac27-fe54cfb3b474 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7d7a23a6-990c-4252-ac27-fe54cfb3b474 .shg-image-zoom,
.shg-c#s-7d7a23a6-990c-4252-ac27-fe54cfb3b474 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7d7a23a6-990c-4252-ac27-fe54cfb3b474 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-7d7a23a6-990c-4252-ac27-fe54cfb3b474 {
  max-width: 100%;
}

.shg-c#s-7d7a23a6-990c-4252-ac27-fe54cfb3b474 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7d7a23a6-990c-4252-ac27-fe54cfb3b474 .shg-image-zoom,
.shg-c#s-7d7a23a6-990c-4252-ac27-fe54cfb3b474 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7d7a23a6-990c-4252-ac27-fe54cfb3b474 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-7d7a23a6-990c-4252-ac27-fe54cfb3b474 {
  max-width: 100%;
}

.shg-c#s-7d7a23a6-990c-4252-ac27-fe54cfb3b474 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7d7a23a6-990c-4252-ac27-fe54cfb3b474 .shg-image-zoom,
.shg-c#s-7d7a23a6-990c-4252-ac27-fe54cfb3b474 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7d7a23a6-990c-4252-ac27-fe54cfb3b474 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-7d7a23a6-990c-4252-ac27-fe54cfb3b474 {
  max-width: 100%;
}

.shg-c#s-7d7a23a6-990c-4252-ac27-fe54cfb3b474 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-7d7a23a6-990c-4252-ac27-fe54cfb3b474 .shg-image-zoom,
.shg-c#s-7d7a23a6-990c-4252-ac27-fe54cfb3b474 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-7d7a23a6-990c-4252-ac27-fe54cfb3b474 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
.shg-product-title-component h1,
.shg-product-title-component h2,
.shg-product-title-component h3,
.shg-product-title-component h4,
.shg-product-title-component h5,
.shg-product-title-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: #000;
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

.shg-product-title-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-4607ec49-f562-40d5-88b8-ae55fbbdacac {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 0);
}

#s-4607ec49-f562-40d5-88b8-ae55fbbdacac .shg-product-title-component h3 {
  color: rgba(51, 51, 51, 1);
  font-weight:  500 ;
  font-family: Asap;
  font-style:   ;
  font-size: 17px;
}

#s-643afc17-cd2f-4d9b-b005-759ff1f45ad9 {
  text-align: center;
}

#s-643afc17-cd2f-4d9b-b005-759ff1f45ad9 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 17px;
}

#s-643afc17-cd2f-4d9b-b005-759ff1f45ad9 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Asap;
  font-style:  normal ;
  font-size: 17px;
}

#s-643afc17-cd2f-4d9b-b005-759ff1f45ad9 .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: rgba(68, 68, 68, 1);
  font-weight:  normal ;
  font-family: Asap;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}
#s-6543e424-badb-4421-abf4-ecccb6e676d3 {
  display: none;
}
#s-c226e0cd-fe56-4bdc-81cb-3410da4a1992 {
  box-shadow:1px 1px 1px 1px rgba(255, 255, 255, 1);
border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(117, 114, 114, 0.32);
text-align: left;
}


.shg-c#s-c226e0cd-fe56-4bdc-81cb-3410da4a1992 {
  max-width: 100%;
}

.shg-c#s-c226e0cd-fe56-4bdc-81cb-3410da4a1992 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c226e0cd-fe56-4bdc-81cb-3410da4a1992 .shg-image-zoom,
.shg-c#s-c226e0cd-fe56-4bdc-81cb-3410da4a1992 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-c226e0cd-fe56-4bdc-81cb-3410da4a1992 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-c226e0cd-fe56-4bdc-81cb-3410da4a1992 {
  max-width: 100%;
}

.shg-c#s-c226e0cd-fe56-4bdc-81cb-3410da4a1992 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c226e0cd-fe56-4bdc-81cb-3410da4a1992 .shg-image-zoom,
.shg-c#s-c226e0cd-fe56-4bdc-81cb-3410da4a1992 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-c226e0cd-fe56-4bdc-81cb-3410da4a1992 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-c226e0cd-fe56-4bdc-81cb-3410da4a1992 {
  max-width: 100%;
}

.shg-c#s-c226e0cd-fe56-4bdc-81cb-3410da4a1992 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c226e0cd-fe56-4bdc-81cb-3410da4a1992 .shg-image-zoom,
.shg-c#s-c226e0cd-fe56-4bdc-81cb-3410da4a1992 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-c226e0cd-fe56-4bdc-81cb-3410da4a1992 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-c226e0cd-fe56-4bdc-81cb-3410da4a1992 {
  max-width: 100%;
}

.shg-c#s-c226e0cd-fe56-4bdc-81cb-3410da4a1992 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c226e0cd-fe56-4bdc-81cb-3410da4a1992 .shg-image-zoom,
.shg-c#s-c226e0cd-fe56-4bdc-81cb-3410da4a1992 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-c226e0cd-fe56-4bdc-81cb-3410da4a1992 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-c226e0cd-fe56-4bdc-81cb-3410da4a1992 {
  max-width: 100%;
}

.shg-c#s-c226e0cd-fe56-4bdc-81cb-3410da4a1992 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-c226e0cd-fe56-4bdc-81cb-3410da4a1992 .shg-image-zoom,
.shg-c#s-c226e0cd-fe56-4bdc-81cb-3410da4a1992 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-c226e0cd-fe56-4bdc-81cb-3410da4a1992 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-4ca23d4a-fbc6-437d-aabb-18862b74aba9 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 0);
}

#s-4ca23d4a-fbc6-437d-aabb-18862b74aba9 .shg-product-title-component h3 {
  color: rgba(51, 51, 51, 1);
  font-weight:  500 ;
  font-family: Asap;
  font-style:   ;
  font-size: 17px;
}

#s-863349f5-0e06-49a3-acdd-ef95c8b182fd {
  text-align: center;
}

#s-863349f5-0e06-49a3-acdd-ef95c8b182fd .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 17px;
}

#s-863349f5-0e06-49a3-acdd-ef95c8b182fd .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Asap;
  font-style:  normal ;
  font-size: 17px;
}

#s-863349f5-0e06-49a3-acdd-ef95c8b182fd .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: rgba(68, 68, 68, 1);
  font-weight:  normal ;
  font-family: Asap;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}
#s-ce414921-feba-40a7-a5b7-bca6eb1ce665 {
  display: none;
}
#s-e34998f2-0ac6-4370-a617-c7bef37d95a6 {
  box-shadow:1px 1px 1px 1px rgba(255, 255, 255, 1);
border-style: solid;
border-top-width: 00px;
border-left-width: 00px;
border-bottom-width: 00px;
border-right-width: 00px;
border-color: rgba(117, 114, 114, 0.32);
text-align: left;
}


.shg-c#s-e34998f2-0ac6-4370-a617-c7bef37d95a6 {
  max-width: 100%;
}

.shg-c#s-e34998f2-0ac6-4370-a617-c7bef37d95a6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e34998f2-0ac6-4370-a617-c7bef37d95a6 .shg-image-zoom,
.shg-c#s-e34998f2-0ac6-4370-a617-c7bef37d95a6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-e34998f2-0ac6-4370-a617-c7bef37d95a6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-e34998f2-0ac6-4370-a617-c7bef37d95a6 {
  max-width: 100%;
}

.shg-c#s-e34998f2-0ac6-4370-a617-c7bef37d95a6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e34998f2-0ac6-4370-a617-c7bef37d95a6 .shg-image-zoom,
.shg-c#s-e34998f2-0ac6-4370-a617-c7bef37d95a6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-e34998f2-0ac6-4370-a617-c7bef37d95a6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-e34998f2-0ac6-4370-a617-c7bef37d95a6 {
  max-width: 100%;
}

.shg-c#s-e34998f2-0ac6-4370-a617-c7bef37d95a6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e34998f2-0ac6-4370-a617-c7bef37d95a6 .shg-image-zoom,
.shg-c#s-e34998f2-0ac6-4370-a617-c7bef37d95a6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-e34998f2-0ac6-4370-a617-c7bef37d95a6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-e34998f2-0ac6-4370-a617-c7bef37d95a6 {
  max-width: 100%;
}

.shg-c#s-e34998f2-0ac6-4370-a617-c7bef37d95a6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e34998f2-0ac6-4370-a617-c7bef37d95a6 .shg-image-zoom,
.shg-c#s-e34998f2-0ac6-4370-a617-c7bef37d95a6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-e34998f2-0ac6-4370-a617-c7bef37d95a6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-e34998f2-0ac6-4370-a617-c7bef37d95a6 {
  max-width: 100%;
}

.shg-c#s-e34998f2-0ac6-4370-a617-c7bef37d95a6 img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-e34998f2-0ac6-4370-a617-c7bef37d95a6 .shg-image-zoom,
.shg-c#s-e34998f2-0ac6-4370-a617-c7bef37d95a6 img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-e34998f2-0ac6-4370-a617-c7bef37d95a6 .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-ae56bd72-35a8-4224-899f-881106f7e84b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 0);
}

#s-ae56bd72-35a8-4224-899f-881106f7e84b .shg-product-title-component h3 {
  color: rgba(51, 51, 51, 1);
  font-weight:  500 ;
  font-family: Asap;
  font-style:   ;
  font-size: 17px;
}

#s-692f1cec-2195-4366-835f-cb6f7f120099 {
  text-align: center;
}

#s-692f1cec-2195-4366-835f-cb6f7f120099 .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 17px;
}

#s-692f1cec-2195-4366-835f-cb6f7f120099 .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Asap;
  font-style:  normal ;
  font-size: 17px;
}

#s-692f1cec-2195-4366-835f-cb6f7f120099 .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: rgba(68, 68, 68, 1);
  font-weight:  normal ;
  font-family: Asap;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}
#s-912c7459-7e77-49c3-acda-e07d1ce693bf {
  display: none;
}
#s-844d4b38-53a1-4f0f-8135-1baa56037d9a {
  box-shadow:1px 1px 1px 1px rgba(255, 255, 255, 1);
border-style: solid;
border-top-width: 00px;
border-left-width: 00px;
border-bottom-width: 00px;
border-right-width: 00px;
border-color: rgba(117, 114, 114, 0.32);
text-align: left;
}


.shg-c#s-844d4b38-53a1-4f0f-8135-1baa56037d9a {
  max-width: 100%;
}

.shg-c#s-844d4b38-53a1-4f0f-8135-1baa56037d9a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-844d4b38-53a1-4f0f-8135-1baa56037d9a .shg-image-zoom,
.shg-c#s-844d4b38-53a1-4f0f-8135-1baa56037d9a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-844d4b38-53a1-4f0f-8135-1baa56037d9a .shg-image-zoom {
  
    margin-left: 0px;
  
}

@media (min-width: 1200px){
.shg-c#s-844d4b38-53a1-4f0f-8135-1baa56037d9a {
  max-width: 100%;
}

.shg-c#s-844d4b38-53a1-4f0f-8135-1baa56037d9a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-844d4b38-53a1-4f0f-8135-1baa56037d9a .shg-image-zoom,
.shg-c#s-844d4b38-53a1-4f0f-8135-1baa56037d9a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-844d4b38-53a1-4f0f-8135-1baa56037d9a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 992px) and (max-width: 1199px){
.shg-c#s-844d4b38-53a1-4f0f-8135-1baa56037d9a {
  max-width: 100%;
}

.shg-c#s-844d4b38-53a1-4f0f-8135-1baa56037d9a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-844d4b38-53a1-4f0f-8135-1baa56037d9a .shg-image-zoom,
.shg-c#s-844d4b38-53a1-4f0f-8135-1baa56037d9a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-844d4b38-53a1-4f0f-8135-1baa56037d9a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (min-width: 768px) and (max-width: 991px){
.shg-c#s-844d4b38-53a1-4f0f-8135-1baa56037d9a {
  max-width: 100%;
}

.shg-c#s-844d4b38-53a1-4f0f-8135-1baa56037d9a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-844d4b38-53a1-4f0f-8135-1baa56037d9a .shg-image-zoom,
.shg-c#s-844d4b38-53a1-4f0f-8135-1baa56037d9a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-844d4b38-53a1-4f0f-8135-1baa56037d9a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}@media (max-width: 767px){
.shg-c#s-844d4b38-53a1-4f0f-8135-1baa56037d9a {
  max-width: 100%;
}

.shg-c#s-844d4b38-53a1-4f0f-8135-1baa56037d9a img.shogun-image {
  align-self: center;
  margin: 0 !important;
}

.shg-c#s-844d4b38-53a1-4f0f-8135-1baa56037d9a .shg-image-zoom,
.shg-c#s-844d4b38-53a1-4f0f-8135-1baa56037d9a img.shogun-image {
  max-width:  !important;
  min-height:  !important;
}

.shg-c#s-844d4b38-53a1-4f0f-8135-1baa56037d9a .shg-image-zoom {
  
    margin-left: 0px;
  
}

}
#s-f71fbe68-5854-4108-9b7b-c86ea07a6dc1 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(0, 0, 0, 0);
}

#s-f71fbe68-5854-4108-9b7b-c86ea07a6dc1 .shg-product-title-component h3 {
  color: rgba(51, 51, 51, 1);
  font-weight:  500 ;
  font-family: Asap;
  font-style:   ;
  font-size: 17px;
}

#s-82e8f6aa-a596-47a2-92b3-2ed7048b7d9d {
  text-align: center;
}

#s-82e8f6aa-a596-47a2-92b3-2ed7048b7d9d .shg-product-sold-out {
  display: none;
  color: #000;
  font-size: 17px;
}

#s-82e8f6aa-a596-47a2-92b3-2ed7048b7d9d .shg-product-price {
  color: #000;
  font-weight:   ;
  font-family: Asap;
  font-style:  normal ;
  font-size: 17px;
}

#s-82e8f6aa-a596-47a2-92b3-2ed7048b7d9d .shg-product-compare-price {
  display: none;
  text-decoration: line-through;
  color: rgba(68, 68, 68, 1);
  font-weight:  normal ;
  font-family: Asap;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}
#s-a8f2df82-86c9-48ea-b656-a10f5d5d849a hr {
  border: 0;
  width: 100%;
  border-top: 2px solid #ddd;
}

/*
  $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;
  }
}

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

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

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

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

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

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

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

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

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

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

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

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
	opacity: 0;
}
.shogun-lazyloaded {
	opacity: 1;
	transition: opacity 300ms;
}
