#s-9626a270-62f4-4dce-ba0e-76ade516d0ac {
  text-align: left;
}

#s-cc11396b-a2dd-4f85-977b-888bb9cc39fb {
  text-align: left;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@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 {
  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-6f8bf598-dac6-457d-95a7-8c626bb1bdbc .shogun-tabs > li > .shogun-tab-box {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(246, 246, 246, 0);
  }
  #s-6f8bf598-dac6-457d-95a7-8c626bb1bdbc .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 1);
  }
#s-6f8bf598-dac6-457d-95a7-8c626bb1bdbc .shogun-tabs > li > .shogun-tab-box > .shogun-tab-title {
  color: rgba(0, 0, 0, 1);
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-6f8bf598-dac6-457d-95a7-8c626bb1bdbc .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(20, 133, 239, 1);
}

#s-6f8bf598-dac6-457d-95a7-8c626bb1bdbc .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(255, 255, 255, 1);
}

#s-6f8bf598-dac6-457d-95a7-8c626bb1bdbc .shogun-tabs-body {
  margin-top: -1px;
  border-top: 1px solid rgba(255, 255, 255, 1);
}

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

.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 {
  /*
    It's very important we don't create a new containing block for shg-box-video-wrapper
    Jarallax uses transforms + position: fixed to achieve it's parallaxing effect

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

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

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

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

#s-39b8d2e3-607f-487d-93c5-b98830e404fe {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-39b8d2e3-607f-487d-93c5-b98830e404fe > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-39b8d2e3-607f-487d-93c5-b98830e404fe.shg-box.shg-c {
  justify-content: center;
}

#s-c1a139a1-0e43-41e8-83b9-bcf71598edb4 {
  margin-top: 0px;
padding-top: 3em;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 250px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-c1a139a1-0e43-41e8-83b9-bcf71598edb4 {
  margin-top: 0px;
margin-bottom: 0em;
}
}







#s-c1a139a1-0e43-41e8-83b9-bcf71598edb4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c1a139a1-0e43-41e8-83b9-bcf71598edb4.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: ;
  font-family: ;
  text-transform: none;
  font-weight: ;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

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

#s-dfe1bf1b-2955-41f9-b662-01079e367f11 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-dfe1bf1b-2955-41f9-b662-01079e367f11 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-dfe1bf1b-2955-41f9-b662-01079e367f11 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-dfe1bf1b-2955-41f9-b662-01079e367f11 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
.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-11c8dd51-37c1-427e-85a0-7f211c812bc2 {
  margin-top: 1em;
margin-bottom: 0%;
padding-left: 15%;
padding-right: 15%;
}
@media (max-width: 767px){#s-11c8dd51-37c1-427e-85a0-7f211c812bc2 {
  margin-top: 12px;
padding-left: 0%;
padding-right: 0%;
}
}
#s-7bf819ab-05c9-443c-a0b6-4bfcb8edc054 {
  padding-top: 20px;
padding-bottom: 20px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-7bf819ab-05c9-443c-a0b6-4bfcb8edc054 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7bf819ab-05c9-443c-a0b6-4bfcb8edc054.shg-box.shg-c {
  justify-content: center;
}

#s-22020289-ce46-4d3e-98fc-435b38f9bf57 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-22020289-ce46-4d3e-98fc-435b38f9bf57 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-22020289-ce46-4d3e-98fc-435b38f9bf57.shg-box.shg-c {
  justify-content: center;
}

#s-6e17a785-0f85-4731-b23a-ef32063ab1a4 {
  margin-top: 0px;
margin-bottom: 1em;
min-height: 50px;
}
@media (min-width: 1200px){#s-6e17a785-0f85-4731-b23a-ef32063ab1a4 {
  padding-left: 2em;
padding-right: 2em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6e17a785-0f85-4731-b23a-ef32063ab1a4 {
  padding-left: 2em;
padding-right: 2em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-6e17a785-0f85-4731-b23a-ef32063ab1a4 {
  padding-left: 2em;
padding-right: 2em;
}
}@media (max-width: 767px){#s-6e17a785-0f85-4731-b23a-ef32063ab1a4 {
  margin-bottom: 0em;
display: none;
}
#s-6e17a785-0f85-4731-b23a-ef32063ab1a4, #wrap-s-6e17a785-0f85-4731-b23a-ef32063ab1a4, #wrap-content-s-6e17a785-0f85-4731-b23a-ef32063ab1a4 { display: none !important; }}







#s-6e17a785-0f85-4731-b23a-ef32063ab1a4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6e17a785-0f85-4731-b23a-ef32063ab1a4.shg-box.shg-c {
  justify-content: center;
}

.shg-sld-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

#s-2e665ab5-5760-4351-b629-e10124b9f1c3 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 10px;
padding-bottom: 10px;
}
@media (min-width: 1200px){#s-2e665ab5-5760-4351-b629-e10124b9f1c3 {
  padding-top: 10px;
padding-bottom: 10px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2e665ab5-5760-4351-b629-e10124b9f1c3 {
  padding-top: 10px;
}
}
#s-2e665ab5-5760-4351-b629-e10124b9f1c3 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-2e665ab5-5760-4351-b629-e10124b9f1c3 .shg-sld-nav-button.shg-sld-left,
#s-2e665ab5-5760-4351-b629-e10124b9f1c3 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

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

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

/* 
  Shopify base css adds display none to empty divs
  This causes items in the second column position to shift when
  the first column is empty. In order to overwrite that style,
  we have to manually set empty divs in the column to display block 
  so the whole element holds its positioning on published pages.
*/

.shg-row > div:empty {
  display: block;
}

#s-459d6882-3ccb-4b09-97f2-0aa61ed4c66c {
  margin-left: 2em;
margin-right: 2em;
padding-left: 0em;
padding-right: 0em;
}
@media (max-width: 767px){#s-459d6882-3ccb-4b09-97f2-0aa61ed4c66c {
  margin-left: 0em;
margin-right: 0em;
}
}
@media (min-width: 0px) {
[id="s-459d6882-3ccb-4b09-97f2-0aa61ed4c66c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-459d6882-3ccb-4b09-97f2-0aa61ed4c66c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 11.0px);
}

}

@media (min-width: 992px) {
[id="s-459d6882-3ccb-4b09-97f2-0aa61ed4c66c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 11.0px);
}

}

@media (min-width: 1200px) {
[id="s-459d6882-3ccb-4b09-97f2-0aa61ed4c66c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 11.0px);
}

}

@media (min-width: 0px) {
[id="s-dc439f18-6521-49f9-b3f5-a0e29e20d2cb"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 11.0px);
}

}

@media (min-width: 768px) {
[id="s-dc439f18-6521-49f9-b3f5-a0e29e20d2cb"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 18.333333333333332px);
}

}

@media (min-width: 992px) {
[id="s-dc439f18-6521-49f9-b3f5-a0e29e20d2cb"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 18.333333333333332px);
}

}

@media (min-width: 1200px) {
[id="s-dc439f18-6521-49f9-b3f5-a0e29e20d2cb"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 18.333333333333332px);
}

}

.iframe-img{
        text-align: center;
}
.fst-img img, .snd-img img {
    width: 80%;
}
.slider-fix, .slider-fix-mobile{
  position: relative;
  z-index: 999;
  background-color: rgb(255, 255, 255);
  margin: auto!important;
}
.slider-fix{
  padding-top: 3em;  
}
.add-boxsadow{
    box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}
/*.round-shandow img{*/
/* box-shadow: 0px 1px 12px 0px #00000045;*/
/* border-radius: 50%;    */
/*}*/
.spec-sub-text{
    font-size: 12px!important;
    margin: 0;
    padding-top: 10px;
    line-height: 13px;
    padding-bottom: 7px;
}
.spec-img{
    font-weight:700;
}
@media screen and (max-width: 900px) and (min-width: 60px) {
 .slider-fix-mobile{
        margin-top: 2em!important;
    }
    .fst-img img, .snd-img img {
    width: 90%;
}
}
@media (min-width: 0px) {
[id="s-3c05dab7-da05-4497-a529-9b635913e6d5"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 11.0px);
}

}

@media (min-width: 768px) {
[id="s-3c05dab7-da05-4497-a529-9b635913e6d5"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 18.333333333333332px);
}

}

@media (min-width: 992px) {
[id="s-3c05dab7-da05-4497-a529-9b635913e6d5"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 18.333333333333332px);
}

}

@media (min-width: 1200px) {
[id="s-3c05dab7-da05-4497-a529-9b635913e6d5"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 18.333333333333332px);
}

}

#s-5fdd42d5-4423-4c3b-89ef-d925879a5b98 {
  margin-left: 2em;
margin-right: 2em;
}
@media (max-width: 767px){#s-5fdd42d5-4423-4c3b-89ef-d925879a5b98 {
  margin-left: 0em;
margin-right: 0em;
}
}
@media (min-width: 0px) {
[id="s-5fdd42d5-4423-4c3b-89ef-d925879a5b98"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5fdd42d5-4423-4c3b-89ef-d925879a5b98"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 11.0px);
}

}

@media (min-width: 992px) {
[id="s-5fdd42d5-4423-4c3b-89ef-d925879a5b98"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 11.0px);
}

}

@media (min-width: 1200px) {
[id="s-5fdd42d5-4423-4c3b-89ef-d925879a5b98"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 11.0px);
}

}

@media (min-width: 0px) {
[id="s-ea42a0b6-9e9d-4fca-b580-b8e3737a2bc9"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 11.0px);
}

}

@media (min-width: 768px) {
[id="s-ea42a0b6-9e9d-4fca-b580-b8e3737a2bc9"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 18.333333333333332px);
}

}

@media (min-width: 992px) {
[id="s-ea42a0b6-9e9d-4fca-b580-b8e3737a2bc9"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 18.333333333333332px);
}

}

@media (min-width: 1200px) {
[id="s-ea42a0b6-9e9d-4fca-b580-b8e3737a2bc9"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 18.333333333333332px);
}

}

@media (min-width: 0px) {
[id="s-d7f77f6c-2284-46dd-8e5e-28d803e7d2e5"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 11.0px);
}

}

@media (min-width: 768px) {
[id="s-d7f77f6c-2284-46dd-8e5e-28d803e7d2e5"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 18.333333333333332px);
}

}

@media (min-width: 992px) {
[id="s-d7f77f6c-2284-46dd-8e5e-28d803e7d2e5"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 18.333333333333332px);
}

}

@media (min-width: 1200px) {
[id="s-d7f77f6c-2284-46dd-8e5e-28d803e7d2e5"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 18.333333333333332px);
}

}

#s-a94ae5fd-2231-48c4-a97a-7e038babe36e {
  min-height: 50px;
}
@media (min-width: 1200px){#s-a94ae5fd-2231-48c4-a97a-7e038babe36e {
  padding-left: 4em;
padding-right: 4em;
display: none;
}
#s-a94ae5fd-2231-48c4-a97a-7e038babe36e, #wrap-s-a94ae5fd-2231-48c4-a97a-7e038babe36e, #wrap-content-s-a94ae5fd-2231-48c4-a97a-7e038babe36e { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a94ae5fd-2231-48c4-a97a-7e038babe36e {
  padding-left: 4em;
padding-right: 4em;
display: none;
}
#s-a94ae5fd-2231-48c4-a97a-7e038babe36e, #wrap-s-a94ae5fd-2231-48c4-a97a-7e038babe36e, #wrap-content-s-a94ae5fd-2231-48c4-a97a-7e038babe36e { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a94ae5fd-2231-48c4-a97a-7e038babe36e {
  display: none;
}
#s-a94ae5fd-2231-48c4-a97a-7e038babe36e, #wrap-s-a94ae5fd-2231-48c4-a97a-7e038babe36e, #wrap-content-s-a94ae5fd-2231-48c4-a97a-7e038babe36e { display: none !important; }}@media (max-width: 767px){#s-a94ae5fd-2231-48c4-a97a-7e038babe36e {
  padding-left: 1em;
padding-right: 1em;
}
}







#s-a94ae5fd-2231-48c4-a97a-7e038babe36e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a94ae5fd-2231-48c4-a97a-7e038babe36e.shg-box.shg-c {
  justify-content: center;
}

#s-cf390409-60ce-460b-92c7-11ed6e903116 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-cf390409-60ce-460b-92c7-11ed6e903116 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-cf390409-60ce-460b-92c7-11ed6e903116 .shg-sld-nav-button.shg-sld-left,
#s-cf390409-60ce-460b-92c7-11ed6e903116 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

@media (max-width: 767px){#s-68038cba-b150-4a49-b7b4-67474721eb3d {
  margin-left: 2em;
margin-right: 2em;
padding-left: 0em;
padding-right: 0em;
}
}
@media (min-width: 0px) {
[id="s-68038cba-b150-4a49-b7b4-67474721eb3d"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 768px) {
[id="s-68038cba-b150-4a49-b7b4-67474721eb3d"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 992px) {
[id="s-68038cba-b150-4a49-b7b4-67474721eb3d"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 1200px) {
[id="s-68038cba-b150-4a49-b7b4-67474721eb3d"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (max-width: 767px){#s-9dcf7dfa-8580-43ff-a25f-c02ac9ba9876 {
  margin-left: 2em;
margin-right: 2em;
padding-left: 0em;
padding-right: 0em;
}
}
@media (min-width: 0px) {
[id="s-9dcf7dfa-8580-43ff-a25f-c02ac9ba9876"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 768px) {
[id="s-9dcf7dfa-8580-43ff-a25f-c02ac9ba9876"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 992px) {
[id="s-9dcf7dfa-8580-43ff-a25f-c02ac9ba9876"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 1200px) {
[id="s-9dcf7dfa-8580-43ff-a25f-c02ac9ba9876"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (max-width: 767px){#s-7f275516-2976-4a86-a10d-9f41dee15475 {
  margin-left: 2em;
margin-right: 2em;
padding-left: 0em;
padding-right: 0em;
}
}
@media (min-width: 0px) {
[id="s-7f275516-2976-4a86-a10d-9f41dee15475"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 768px) {
[id="s-7f275516-2976-4a86-a10d-9f41dee15475"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 992px) {
[id="s-7f275516-2976-4a86-a10d-9f41dee15475"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 1200px) {
[id="s-7f275516-2976-4a86-a10d-9f41dee15475"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (max-width: 767px){#s-2a74ac93-31ed-48d6-aad4-6de267136a39 {
  margin-left: 2em;
margin-right: 2em;
padding-left: 0em;
padding-right: 0em;
}
}
@media (min-width: 0px) {
[id="s-2a74ac93-31ed-48d6-aad4-6de267136a39"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 768px) {
[id="s-2a74ac93-31ed-48d6-aad4-6de267136a39"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 992px) {
[id="s-2a74ac93-31ed-48d6-aad4-6de267136a39"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 1200px) {
[id="s-2a74ac93-31ed-48d6-aad4-6de267136a39"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 0px) {
[id="s-4f4fd24b-c094-4334-ae92-ebc3dcccaf2c"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-4f4fd24b-c094-4334-ae92-ebc3dcccaf2c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-4f4fd24b-c094-4334-ae92-ebc3dcccaf2c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-4f4fd24b-c094-4334-ae92-ebc3dcccaf2c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 0px) {
[id="s-d8ff6c1e-052a-4867-9adb-943ca315a17c"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 768px) {
[id="s-d8ff6c1e-052a-4867-9adb-943ca315a17c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-d8ff6c1e-052a-4867-9adb-943ca315a17c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-d8ff6c1e-052a-4867-9adb-943ca315a17c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (max-width: 767px){#s-184d560c-4fe2-4f32-a2b7-4ac89c7c7105 {
  margin-left: 2em;
margin-right: 2em;
padding-left: 0em;
padding-right: 0em;
}
}
@media (min-width: 0px) {
[id="s-184d560c-4fe2-4f32-a2b7-4ac89c7c7105"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 768px) {
[id="s-184d560c-4fe2-4f32-a2b7-4ac89c7c7105"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 992px) {
[id="s-184d560c-4fe2-4f32-a2b7-4ac89c7c7105"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 11.25px);
}

}

@media (min-width: 1200px) {
[id="s-184d560c-4fe2-4f32-a2b7-4ac89c7c7105"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 11.25px);
}

}

#s-c0d3ce9f-cc0b-4baa-87f3-6520c26ccccd {
  padding-top: 0em;
padding-bottom: 0em;
min-height: 50px;
}








#s-c0d3ce9f-cc0b-4baa-87f3-6520c26ccccd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c0d3ce9f-cc0b-4baa-87f3-6520c26ccccd.shg-box.shg-c {
  justify-content: center;
}

#s-f6745729-317d-4781-8ead-c13ab6bdbc38 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-f6745729-317d-4781-8ead-c13ab6bdbc38 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f6745729-317d-4781-8ead-c13ab6bdbc38 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f6745729-317d-4781-8ead-c13ab6bdbc38 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (max-width: 767px){#s-f6745729-317d-4781-8ead-c13ab6bdbc38 {
  margin-top: 1em;
margin-bottom: 0em;
}
}







#s-f6745729-317d-4781-8ead-c13ab6bdbc38 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f6745729-317d-4781-8ead-c13ab6bdbc38.shg-box.shg-c {
  justify-content: center;
}

#s-1e647b14-a692-4111-bcf5-4013731d72b2 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-1e647b14-a692-4111-bcf5-4013731d72b2 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-1e647b14-a692-4111-bcf5-4013731d72b2 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-1e647b14-a692-4111-bcf5-4013731d72b2 .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-2e4d8cd4-b809-45e6-98e3-ca30a531f640 {
  padding-top: 2em;
padding-left: 5em;
padding-bottom: 2em;
padding-right: 5em;
min-height: 50px;
}
@media (min-width: 1200px){#s-2e4d8cd4-b809-45e6-98e3-ca30a531f640 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2e4d8cd4-b809-45e6-98e3-ca30a531f640 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-2e4d8cd4-b809-45e6-98e3-ca30a531f640 {
  padding-top: 2%;
padding-left: 3%;
padding-bottom: 2%;
padding-right: 3%;
}
}@media (max-width: 767px){#s-2e4d8cd4-b809-45e6-98e3-ca30a531f640 {
  padding-top: 1.5em;
padding-left: 0.7em;
padding-bottom: 0em;
padding-right: 0.7em;
}
}







#s-2e4d8cd4-b809-45e6-98e3-ca30a531f640 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2e4d8cd4-b809-45e6-98e3-ca30a531f640.shg-box.shg-c {
  justify-content: center;
}

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

.shg-image-content-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

.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;
  flex-direction: column;
  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;
  height: inherit;
  position: relative;
}

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

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

.shogun-image-content {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  min-width: 100%;
  min-height: 100%;
  /* Ensures that the content children fills the container */
  align-items: stretch;
}

.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-top {
  align-items: flex-start;
}

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

.shogun-image-content-bottom {
  align-items: flex-end;
}

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}

.shogun-image-content > * {
  flex-shrink: 0; /* Prevents children from shrinking maintaining natural size*/
  width: 100%;
}
#s-80e88e52-4388-4c27-b24b-5f07e5f299ba {
  max-width: 80%;
text-align: center;
}
@media (max-width: 767px){#s-80e88e52-4388-4c27-b24b-5f07e5f299ba {
  max-width: 100%;
}
}
#s-80e88e52-4388-4c27-b24b-5f07e5f299ba {
  margin: 0 !important;
  overflow: visible;
}

#s-80e88e52-4388-4c27-b24b-5f07e5f299ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80e88e52-4388-4c27-b24b-5f07e5f299ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80e88e52-4388-4c27-b24b-5f07e5f299ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80e88e52-4388-4c27-b24b-5f07e5f299ba img.shogun-image {
  /* Add background color handling */
  
}

#s-80e88e52-4388-4c27-b24b-5f07e5f299ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  border-left-width: 0px;
  border-right-width: 0px;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-color: #000;
  border-style: solid;
  border-radius: 25px;

}





  img.s-80e88e52-4388-4c27-b24b-5f07e5f299ba.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-80e88e52-4388-4c27-b24b-5f07e5f299ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-80e88e52-4388-4c27-b24b-5f07e5f299ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80e88e52-4388-4c27-b24b-5f07e5f299ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80e88e52-4388-4c27-b24b-5f07e5f299ba.shogun-image {
  box-sizing: border-box;
}



.s-80e88e52-4388-4c27-b24b-5f07e5f299ba img.shogun-image {
  
}


@media (min-width: 1200px){#s-80e88e52-4388-4c27-b24b-5f07e5f299ba {
  margin: 0 !important;
  overflow: visible;
}

#s-80e88e52-4388-4c27-b24b-5f07e5f299ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80e88e52-4388-4c27-b24b-5f07e5f299ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80e88e52-4388-4c27-b24b-5f07e5f299ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80e88e52-4388-4c27-b24b-5f07e5f299ba img.shogun-image {
  /* Add background color handling */
  
}

#s-80e88e52-4388-4c27-b24b-5f07e5f299ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-80e88e52-4388-4c27-b24b-5f07e5f299ba.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-80e88e52-4388-4c27-b24b-5f07e5f299ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-80e88e52-4388-4c27-b24b-5f07e5f299ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80e88e52-4388-4c27-b24b-5f07e5f299ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80e88e52-4388-4c27-b24b-5f07e5f299ba.shogun-image {
  box-sizing: border-box;
}



.s-80e88e52-4388-4c27-b24b-5f07e5f299ba img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-80e88e52-4388-4c27-b24b-5f07e5f299ba {
  margin: 0 !important;
  overflow: visible;
}

#s-80e88e52-4388-4c27-b24b-5f07e5f299ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80e88e52-4388-4c27-b24b-5f07e5f299ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80e88e52-4388-4c27-b24b-5f07e5f299ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80e88e52-4388-4c27-b24b-5f07e5f299ba img.shogun-image {
  /* Add background color handling */
  
}

#s-80e88e52-4388-4c27-b24b-5f07e5f299ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-80e88e52-4388-4c27-b24b-5f07e5f299ba.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-80e88e52-4388-4c27-b24b-5f07e5f299ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-80e88e52-4388-4c27-b24b-5f07e5f299ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80e88e52-4388-4c27-b24b-5f07e5f299ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80e88e52-4388-4c27-b24b-5f07e5f299ba.shogun-image {
  box-sizing: border-box;
}



.s-80e88e52-4388-4c27-b24b-5f07e5f299ba img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-80e88e52-4388-4c27-b24b-5f07e5f299ba {
  margin: 0 !important;
  overflow: visible;
}

#s-80e88e52-4388-4c27-b24b-5f07e5f299ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80e88e52-4388-4c27-b24b-5f07e5f299ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80e88e52-4388-4c27-b24b-5f07e5f299ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80e88e52-4388-4c27-b24b-5f07e5f299ba img.shogun-image {
  /* Add background color handling */
  
}

#s-80e88e52-4388-4c27-b24b-5f07e5f299ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-80e88e52-4388-4c27-b24b-5f07e5f299ba.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-80e88e52-4388-4c27-b24b-5f07e5f299ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-80e88e52-4388-4c27-b24b-5f07e5f299ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80e88e52-4388-4c27-b24b-5f07e5f299ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80e88e52-4388-4c27-b24b-5f07e5f299ba.shogun-image {
  box-sizing: border-box;
}



.s-80e88e52-4388-4c27-b24b-5f07e5f299ba img.shogun-image {
  
}


}@media (max-width: 767px){#s-80e88e52-4388-4c27-b24b-5f07e5f299ba {
  margin: 0 !important;
  overflow: visible;
}

#s-80e88e52-4388-4c27-b24b-5f07e5f299ba-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-80e88e52-4388-4c27-b24b-5f07e5f299ba {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-80e88e52-4388-4c27-b24b-5f07e5f299ba {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-80e88e52-4388-4c27-b24b-5f07e5f299ba img.shogun-image {
  /* Add background color handling */
  
}

#s-80e88e52-4388-4c27-b24b-5f07e5f299ba img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}





  img.s-80e88e52-4388-4c27-b24b-5f07e5f299ba.shogun-image {
    
    
    
    max-height: 80%;
  }


.s-80e88e52-4388-4c27-b24b-5f07e5f299ba .shogun-image-content {
  
    justify-content: center;
  
}

.s-80e88e52-4388-4c27-b24b-5f07e5f299ba.shg-align-container {
  display: flex;
  justify-content: center
}

.s-80e88e52-4388-4c27-b24b-5f07e5f299ba.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-80e88e52-4388-4c27-b24b-5f07e5f299ba.shogun-image {
  box-sizing: border-box;
}



.s-80e88e52-4388-4c27-b24b-5f07e5f299ba img.shogun-image {
  
}


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

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

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

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

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

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

.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6 {
  color: ;
  font-family: ;
  font-weight: ;
}

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

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

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

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

/* https://stackoverflow.com/a/16094931/3696652 */
.shg-default-text-content ::-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: ;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
  color: ;
  font-family: ;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-theme-text-content h1,
.shg-theme-text-content h2,
.shg-theme-text-content h3,
.shg-theme-text-content h4,
.shg-theme-text-content h5,
.shg-theme-text-content h6 {
  color: ;
  font-family: ;
  font-weight: ;
}

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

@media (min-width: 1200px){#s-17615083-ecbc-4f39-8208-b53e099dd2bc {
  padding-top: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-17615083-ecbc-4f39-8208-b53e099dd2bc {
  padding-top: 0em;
}
}@media (max-width: 767px){#s-17615083-ecbc-4f39-8208-b53e099dd2bc {
  padding-top: 0em;
padding-bottom: 0em;
}
}
#s-1d5fba07-1c10-45fa-a516-3c008b954988 {
  padding-left: 15em;
padding-right: 15em;
}
@media (min-width: 768px) and (max-width: 991px){#s-1d5fba07-1c10-45fa-a516-3c008b954988 {
  padding-left: 10em;
padding-right: 10em;
}
}@media (max-width: 767px){#s-1d5fba07-1c10-45fa-a516-3c008b954988 {
  padding-left: 3em;
padding-right: 3em;
}
}
#s-241286de-de69-40bd-9d2b-bd8acdeb285a {
  padding-top: 2em;
padding-left: 5em;
padding-bottom: 2em;
padding-right: 5em;
min-height: 50px;
}
@media (min-width: 1200px){#s-241286de-de69-40bd-9d2b-bd8acdeb285a {
  padding-top: 0em;
padding-bottom: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-241286de-de69-40bd-9d2b-bd8acdeb285a {
  padding-top: 0em;
padding-bottom: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-241286de-de69-40bd-9d2b-bd8acdeb285a {
  padding-top: 0em;
padding-bottom: 0em;
}
}@media (max-width: 767px){#s-241286de-de69-40bd-9d2b-bd8acdeb285a {
  padding-top: 1.5em;
padding-left: 0.7em;
padding-bottom: 0em;
padding-right: 0.7em;
}
}







#s-241286de-de69-40bd-9d2b-bd8acdeb285a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-241286de-de69-40bd-9d2b-bd8acdeb285a.shg-box.shg-c {
  justify-content: center;
}

#s-49e49635-9d12-4bfc-9ef5-a28d6a42fe10 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 5em;
padding-left: 22%;
padding-bottom: 0px;
padding-right: 22%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-49e49635-9d12-4bfc-9ef5-a28d6a42fe10 {
  padding-top: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-49e49635-9d12-4bfc-9ef5-a28d6a42fe10 {
  padding-top: 0em;
}
}@media (max-width: 767px){#s-49e49635-9d12-4bfc-9ef5-a28d6a42fe10 {
  padding-top: 0em;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 9%;
}
}







#s-49e49635-9d12-4bfc-9ef5-a28d6a42fe10 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-49e49635-9d12-4bfc-9ef5-a28d6a42fe10.shg-box.shg-c {
  justify-content: center;
}

#s-861ba317-3e64-4af6-a21f-44c156551c91 {
  margin-bottom: 2em;
padding-top: 1em;
padding-bottom: 3em;
}
@media (min-width: 1200px){#s-861ba317-3e64-4af6-a21f-44c156551c91 {
  padding-bottom: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-861ba317-3e64-4af6-a21f-44c156551c91 {
  padding-bottom: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-861ba317-3e64-4af6-a21f-44c156551c91 {
  padding-bottom: 0em;
}
}@media (max-width: 767px){#s-861ba317-3e64-4af6-a21f-44c156551c91 {
  padding-top: 0em;
padding-bottom: 0em;
}
}
@media (min-width: 0px) {
[id="s-861ba317-3e64-4af6-a21f-44c156551c91"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

@media (min-width: 768px) {
[id="s-861ba317-3e64-4af6-a21f-44c156551c91"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

@media (min-width: 992px) {
[id="s-861ba317-3e64-4af6-a21f-44c156551c91"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

@media (min-width: 1200px) {
[id="s-861ba317-3e64-4af6-a21f-44c156551c91"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 26.666666666666668px);
}

}

#s-e14bb220-30be-482e-b8e5-b7814029d8e0 {
  min-height: 50px;
}








#s-e14bb220-30be-482e-b8e5-b7814029d8e0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e14bb220-30be-482e-b8e5-b7814029d8e0.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;
  flex-direction: column;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

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

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

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

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

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

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

.shogun-image-content-bottom {
  align-items: flex-end;
}

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

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

#s-b6c13f83-7612-432c-933b-1c186f917cde {
  margin-top: 0%;
margin-bottom: 0px;
max-width: 1734px;
text-align: center;
}

#s-b6c13f83-7612-432c-933b-1c186f917cde {
  overflow: hidden;
  
  
      max-width: 1734px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-b6c13f83-7612-432c-933b-1c186f917cde .shogun-image-content {
  
    justify-content: center;
  
}

#s-8ffcc4d2-b07b-4b89-b857-c3cab62f6238 {
  min-height: 50px;
}








#s-8ffcc4d2-b07b-4b89-b857-c3cab62f6238 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8ffcc4d2-b07b-4b89-b857-c3cab62f6238.shg-box.shg-c {
  justify-content: center;
}

#s-ebd27c29-4172-40e8-b56f-577353fa17c3 {
  max-width: 510px;
text-align: center;
}

#s-ebd27c29-4172-40e8-b56f-577353fa17c3 {
  overflow: hidden;
  
  
      max-width: 510px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-ebd27c29-4172-40e8-b56f-577353fa17c3 .shogun-image-content {
  
    justify-content: center;
  
}

#s-9a12c87e-c076-4fa9-a4ec-ef5c75d2be3b {
  min-height: 50px;
}








#s-9a12c87e-c076-4fa9-a4ec-ef5c75d2be3b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9a12c87e-c076-4fa9-a4ec-ef5c75d2be3b.shg-box.shg-c {
  justify-content: center;
}

#s-dad26628-a529-4c6d-8027-5076ae1b64a8 {
  max-width: 1798px;
text-align: center;
}

#s-dad26628-a529-4c6d-8027-5076ae1b64a8 {
  overflow: hidden;
  
  
      max-width: 1798px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-dad26628-a529-4c6d-8027-5076ae1b64a8 .shogun-image-content {
  
    justify-content: center;
  
}

#s-432f6220-a195-44e7-88b9-69ddad4b3fb2 {
  margin-left: auto;
margin-bottom: 1em;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-432f6220-a195-44e7-88b9-69ddad4b3fb2 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}@media (max-width: 767px){#s-432f6220-a195-44e7-88b9-69ddad4b3fb2 {
  margin-top: 0em;
margin-bottom: 0em;
}
}
#s-432f6220-a195-44e7-88b9-69ddad4b3fb2 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-432f6220-a195-44e7-88b9-69ddad4b3fb2 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-6535a49f-08b3-43f1-91b0-b95a747ef971 {
  margin-top: 0px;
margin-left: 8em;
margin-right: 6em;
padding-top: 30px;
min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-6535a49f-08b3-43f1-91b0-b95a747ef971 {
  margin-left: 5em;
margin-right: 3em;
}
}@media (max-width: 767px){#s-6535a49f-08b3-43f1-91b0-b95a747ef971 {
  margin-left: 0.5em;
margin-right: 0.5em;
}
}







#s-6535a49f-08b3-43f1-91b0-b95a747ef971 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6535a49f-08b3-43f1-91b0-b95a747ef971.shg-box.shg-c {
  justify-content: center;
}

.custom-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  
  font-size: 15px !important
}

.entry {
  /*background-color: #f9f9f9;*/
  padding: 5px 10px;
  border-radius: 8px;
  /*border: 1px solid #ddd;*/
}

.entry-content {
  display: flex;
  align-items: flex-start;
}

/* Label with fixed width and colon after */
.entry-label {
  /*font-weight: bold;*/
  min-width: 175px;
  margin-right: 12px;
  text-align: left;
  position: relative;
  font-weight:700 !important;
}

/* Add colon after the label */
.entry-label::after {
  content: ":";
  position: absolute;
  right: -10px;
}

.entry-value {
  flex: 1;
  white-space: pre-line;
  color: #333;
  margin-left: 8px; /* small gap between colon and value */
}

/* Mobile: stack entries in one column */
@media (max-width: 768px) {
  .custom-table {
    grid-template-columns: 1fr;
  }

  .left, .right {
    grid-column: 1;
  }
  .entry-label {
 
  min-width: 168px !important;
  }
}

#s-3787ae09-0cc9-49d1-976c-dcc139f98736 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-3787ae09-0cc9-49d1-976c-dcc139f98736 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-3787ae09-0cc9-49d1-976c-dcc139f98736 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-3787ae09-0cc9-49d1-976c-dcc139f98736 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (max-width: 767px){#s-3787ae09-0cc9-49d1-976c-dcc139f98736 {
  margin-top: 1em;
margin-bottom: 0em;
}
}







#s-3787ae09-0cc9-49d1-976c-dcc139f98736 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3787ae09-0cc9-49d1-976c-dcc139f98736.shg-box.shg-c {
  justify-content: center;
}

#s-53636253-8c70-4b39-9ce7-df403b1e60d2 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-53636253-8c70-4b39-9ce7-df403b1e60d2 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-53636253-8c70-4b39-9ce7-df403b1e60d2 .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-53636253-8c70-4b39-9ce7-df403b1e60d2 .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-250a0e6e-bbbf-47e6-bdb4-d1e77205cc85 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
}








#s-250a0e6e-bbbf-47e6-bdb4-d1e77205cc85 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-250a0e6e-bbbf-47e6-bdb4-d1e77205cc85.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-4743a500-9be2-4f2c-b73c-616691061a90"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4743a500-9be2-4f2c-b73c-616691061a90"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4743a500-9be2-4f2c-b73c-616691061a90"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4743a500-9be2-4f2c-b73c-616691061a90"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-178f84ef-48f6-48d9-8213-eb38ae20380d {
  min-height: 50px;
}








#s-178f84ef-48f6-48d9-8213-eb38ae20380d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-178f84ef-48f6-48d9-8213-eb38ae20380d.shg-box.shg-c {
  justify-content: center;
}

#s-68638319-9cfd-45a6-b21a-4f07936cf6ad {
  margin-left: 0px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-68638319-9cfd-45a6-b21a-4f07936cf6ad {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-68638319-9cfd-45a6-b21a-4f07936cf6ad .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-68638319-9cfd-45a6-b21a-4f07936cf6ad .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-be06754a-d251-400c-ae2d-a474c3a6db66 {
  margin-top: 3%;
}
@media (max-width: 767px){#s-be06754a-d251-400c-ae2d-a474c3a6db66 {
  padding-top: 0%;
padding-bottom: 0%;
}
}
#s-1e7d1d40-bb56-4541-bde2-199243cd4901 {
  text-align: center;
}

#s-1e7d1d40-bb56-4541-bde2-199243cd4901 {
  overflow: hidden;
  
  
}







  #s-1e7d1d40-bb56-4541-bde2-199243cd4901 img.shogun-image {
    

    
    
    
  }


#s-1e7d1d40-bb56-4541-bde2-199243cd4901 .shogun-image-content {
  
    justify-content: center;
  
}

#s-245d95ea-77fd-4b39-9335-ce7d62813726 {
  padding-top: 0%;
padding-left: 5%;
padding-bottom: 0%;
padding-right: 5%;
min-height: 50px;
}








#s-245d95ea-77fd-4b39-9335-ce7d62813726 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-245d95ea-77fd-4b39-9335-ce7d62813726.shg-box.shg-c {
  justify-content: center;
}

#s-b367b6a5-e4a6-49fc-a211-63e84c8e7ef6 {
  text-align: center;
}
@media (max-width: 767px){#s-b367b6a5-e4a6-49fc-a211-63e84c8e7ef6 {
  padding-bottom: 0%;
}
}
#s-b367b6a5-e4a6-49fc-a211-63e84c8e7ef6 {
  overflow: hidden;
  
  
}








#s-b367b6a5-e4a6-49fc-a211-63e84c8e7ef6 .shogun-image-content {
  
    justify-content: center;
  
}

#s-19948409-9c71-4aa5-a497-439079d192c7 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
}








#s-19948409-9c71-4aa5-a497-439079d192c7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-19948409-9c71-4aa5-a497-439079d192c7.shg-box.shg-c {
  justify-content: center;
}

@media (max-width: 767px){#s-81b83315-7dcb-4037-b8b0-ea119437a45f {
  margin-top: 8%;
margin-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-81b83315-7dcb-4037-b8b0-ea119437a45f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-81b83315-7dcb-4037-b8b0-ea119437a45f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-81b83315-7dcb-4037-b8b0-ea119437a45f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-81b83315-7dcb-4037-b8b0-ea119437a45f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-81b83315-7dcb-4037-b8b0-ea119437a45f"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-ed3dc7ae-6446-40c1-954f-d178f10cc5a0 {
  text-align: center;
}
@media (max-width: 767px){#s-ed3dc7ae-6446-40c1-954f-d178f10cc5a0 {
  margin-top: 0.5em;
padding-top: 0em;
padding-bottom: 0px;
}
}
#s-ed3dc7ae-6446-40c1-954f-d178f10cc5a0 {
  overflow: hidden;
  
  
}







  #s-ed3dc7ae-6446-40c1-954f-d178f10cc5a0 img.shogun-image {
    

    
    
    
  }


#s-ed3dc7ae-6446-40c1-954f-d178f10cc5a0 .shogun-image-content {
  
    justify-content: center;
  
}

#s-a62f3626-4d6a-4660-97b4-af9867dab52e {
  min-height: 150px;
}








#s-a62f3626-4d6a-4660-97b4-af9867dab52e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a62f3626-4d6a-4660-97b4-af9867dab52e.shg-box.shg-c {
  justify-content: center;
}

#s-ea5e2f4d-0376-4312-a8ec-b9030b016f7d {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-ea5e2f4d-0376-4312-a8ec-b9030b016f7d {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-ea5e2f4d-0376-4312-a8ec-b9030b016f7d .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-ea5e2f4d-0376-4312-a8ec-b9030b016f7d .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-9a208019-9693-45b3-85f4-03290a065e28 {
  margin-top: 3%;
}

#s-12371666-ea32-424a-ae17-fc89f1c80a10 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-12371666-ea32-424a-ae17-fc89f1c80a10 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-12371666-ea32-424a-ae17-fc89f1c80a10 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-12371666-ea32-424a-ae17-fc89f1c80a10 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (max-width: 767px){#s-12371666-ea32-424a-ae17-fc89f1c80a10 {
  margin-top: 1em;
margin-left: 0em;
margin-bottom: 0em;
margin-right: 0em;
padding-left: 0.5em;
padding-right: 0.5em;
}
}







#s-12371666-ea32-424a-ae17-fc89f1c80a10 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-12371666-ea32-424a-ae17-fc89f1c80a10.shg-box.shg-c {
  justify-content: center;
}

#s-61c6aac2-022b-489d-bb56-8f26f41ff0e0 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-61c6aac2-022b-489d-bb56-8f26f41ff0e0 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-61c6aac2-022b-489d-bb56-8f26f41ff0e0 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-61c6aac2-022b-489d-bb56-8f26f41ff0e0 .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-bd2962ca-ae39-4dbb-9928-f87181dc6c21 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-bd2962ca-ae39-4dbb-9928-f87181dc6c21 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bd2962ca-ae39-4dbb-9928-f87181dc6c21.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-7bc953bb-d150-4a53-aa85-7afdd2ffd59e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7bc953bb-d150-4a53-aa85-7afdd2ffd59e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 992px) {
[id="s-7bc953bb-d150-4a53-aa85-7afdd2ffd59e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 1200px) {
[id="s-7bc953bb-d150-4a53-aa85-7afdd2ffd59e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 30.0px);
}

}

#s-48ad5bf2-f7f9-4d06-808b-4fa4d07ccde5 {
  min-height: 50px;
}
@media (max-width: 767px){#s-48ad5bf2-f7f9-4d06-808b-4fa4d07ccde5 {
  padding-top: 0px;
padding-bottom: 10px;
}
}







#s-48ad5bf2-f7f9-4d06-808b-4fa4d07ccde5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-48ad5bf2-f7f9-4d06-808b-4fa4d07ccde5.shg-box.shg-c {
  justify-content: center;
}

#s-f6ce907c-c7c8-47a0-bb76-57b6887b85dd {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-f6ce907c-c7c8-47a0-bb76-57b6887b85dd .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-5b8cf9d4-409e-4995-8652-f2df9da0ea78 {
  margin-top: 3%;
}

#s-7e481f9b-e352-48f1-80f1-32256fbd0570 {
  min-height: 50px;
}
@media (max-width: 767px){#s-7e481f9b-e352-48f1-80f1-32256fbd0570 {
  margin-top: 0.5em;
margin-bottom: 0.5px;
}
}







#s-7e481f9b-e352-48f1-80f1-32256fbd0570 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7e481f9b-e352-48f1-80f1-32256fbd0570.shg-box.shg-c {
  justify-content: center;
}

#s-4f8d731e-dd41-4329-ad04-68283bec35df {
  text-align: center;
}

#s-4f8d731e-dd41-4329-ad04-68283bec35df {
  overflow: hidden;
  
  
}







  #s-4f8d731e-dd41-4329-ad04-68283bec35df img.shogun-image {
    

    
    
    
  }


#s-4f8d731e-dd41-4329-ad04-68283bec35df .shogun-image-content {
  
    justify-content: center;
  
}

#s-48fae27c-5220-461b-be7f-9780e868319f {
  padding-top: 0%;
padding-left: 5%;
padding-bottom: 0%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-48fae27c-5220-461b-be7f-9780e868319f {
  margin-top: 1em;
margin-bottom: 0.5em;
}
}







#s-48fae27c-5220-461b-be7f-9780e868319f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-48fae27c-5220-461b-be7f-9780e868319f.shg-box.shg-c {
  justify-content: center;
}

#s-3cf4802e-6e83-483a-9696-3cac0f225a46 {
  margin-top: 0px;
margin-bottom: 0px;
}

#s-790848c9-d1cc-46d4-bdd6-aed68f71acd8 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 0%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-790848c9-d1cc-46d4-bdd6-aed68f71acd8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-790848c9-d1cc-46d4-bdd6-aed68f71acd8.shg-box.shg-c {
  justify-content: center;
}

@media (max-width: 767px){#s-1630fc92-537c-4a62-9fb6-b69c5b80d132 {
  margin-top: 8%;
}
}
@media (min-width: 0px) {
[id="s-1630fc92-537c-4a62-9fb6-b69c5b80d132"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1630fc92-537c-4a62-9fb6-b69c5b80d132"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1630fc92-537c-4a62-9fb6-b69c5b80d132"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1630fc92-537c-4a62-9fb6-b69c5b80d132"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-704d7471-62e6-4231-a752-d9b72918c50a {
  min-height: 50px;
}
@media (max-width: 767px){#s-704d7471-62e6-4231-a752-d9b72918c50a {
  padding-top: 0px;
padding-bottom: 10px;
}
}







#s-704d7471-62e6-4231-a752-d9b72918c50a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-704d7471-62e6-4231-a752-d9b72918c50a.shg-box.shg-c {
  justify-content: center;
}

#s-5cd446ee-ccc7-4171-a0db-535326faeab7 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-5cd446ee-ccc7-4171-a0db-535326faeab7 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-db91446d-3125-4fae-b925-958d2ec060d4 {
  margin-top: 3%;
}

#s-af263d5c-48ea-4833-8ee3-5f1961876474 {
  max-width: 90%;
text-align: center;
}
@media (max-width: 767px){#s-af263d5c-48ea-4833-8ee3-5f1961876474 {
  margin-top: 0.5em;
margin-bottom: 0.5em;
max-width: 100%;
}
}
#s-af263d5c-48ea-4833-8ee3-5f1961876474 {
  overflow: hidden;
  
  
      max-width: 90%;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}







  #s-af263d5c-48ea-4833-8ee3-5f1961876474 img.shogun-image {
    

    
    
    
  }


#s-af263d5c-48ea-4833-8ee3-5f1961876474 .shogun-image-content {
  
    justify-content: center;
  
}

#s-0316b801-f4c1-4fcf-ab1e-42690940c263 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-0316b801-f4c1-4fcf-ab1e-42690940c263 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0316b801-f4c1-4fcf-ab1e-42690940c263.shg-box.shg-c {
  justify-content: center;
}

@media (max-width: 767px){#s-f1dd80c4-3f76-4067-9bfa-6d1841cb09c9 {
  margin-top: 8%;
}
}
@media (min-width: 0px) {
[id="s-f1dd80c4-3f76-4067-9bfa-6d1841cb09c9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f1dd80c4-3f76-4067-9bfa-6d1841cb09c9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f1dd80c4-3f76-4067-9bfa-6d1841cb09c9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f1dd80c4-3f76-4067-9bfa-6d1841cb09c9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-f1dd80c4-3f76-4067-9bfa-6d1841cb09c9"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-06733b88-9dd2-4e66-a34a-d9f083afe845 {
  min-height: 50px;
}
@media (max-width: 767px){#s-06733b88-9dd2-4e66-a34a-d9f083afe845 {
  margin-top: 0.5em;
}
}







#s-06733b88-9dd2-4e66-a34a-d9f083afe845 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-06733b88-9dd2-4e66-a34a-d9f083afe845.shg-box.shg-c {
  justify-content: center;
}

#s-8e11c5a0-333e-4779-94fa-b604c5e5bcf0 {
  max-width: 90%;
text-align: center;
}
@media (max-width: 767px){#s-8e11c5a0-333e-4779-94fa-b604c5e5bcf0 {
  max-width: 100%;
}
}
#s-8e11c5a0-333e-4779-94fa-b604c5e5bcf0 {
  overflow: hidden;
  
  
      max-width: 90%;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}







  #s-8e11c5a0-333e-4779-94fa-b604c5e5bcf0 img.shogun-image {
    

    
    
    
  }


#s-8e11c5a0-333e-4779-94fa-b604c5e5bcf0 .shogun-image-content {
  
    justify-content: center;
  
}

#s-cd8f8849-b8be-4009-9e83-607023e8ddd7 {
  padding-top: 10px;
min-height: 50px;
}








#s-cd8f8849-b8be-4009-9e83-607023e8ddd7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cd8f8849-b8be-4009-9e83-607023e8ddd7.shg-box.shg-c {
  justify-content: center;
}

#s-581a4b4a-4b41-4228-a6cd-e45aa5202ea9 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-581a4b4a-4b41-4228-a6cd-e45aa5202ea9 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-15bd8d97-4e8d-4cdb-94e5-fb5111d6f2f2 {
  margin-top: 3%;
}
@media (max-width: 767px){#s-15bd8d97-4e8d-4cdb-94e5-fb5111d6f2f2 {
  padding-bottom: 10px;
}
}
#s-1cc559d5-1eea-4d16-a2b6-1b1d068dc6cc {
  min-height: 50px;
}
@media (min-width: 1200px){#s-1cc559d5-1eea-4d16-a2b6-1b1d068dc6cc {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-1cc559d5-1eea-4d16-a2b6-1b1d068dc6cc {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-1cc559d5-1eea-4d16-a2b6-1b1d068dc6cc {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (max-width: 767px){#s-1cc559d5-1eea-4d16-a2b6-1b1d068dc6cc {
  margin-top: 1em;
margin-bottom: 0em;
}
}







#s-1cc559d5-1eea-4d16-a2b6-1b1d068dc6cc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1cc559d5-1eea-4d16-a2b6-1b1d068dc6cc.shg-box.shg-c {
  justify-content: center;
}

#s-dccf288d-92ea-45f4-a042-9f2e4d456d15 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-dccf288d-92ea-45f4-a042-9f2e4d456d15 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-dccf288d-92ea-45f4-a042-9f2e4d456d15 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-dccf288d-92ea-45f4-a042-9f2e4d456d15 .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-5c5d9257-da0c-434f-b344-771fa492d707 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-5c5d9257-da0c-434f-b344-771fa492d707 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5c5d9257-da0c-434f-b344-771fa492d707.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-88850c2f-f2e7-4428-bec0-8f3f757dc60d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-88850c2f-f2e7-4428-bec0-8f3f757dc60d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 992px) {
[id="s-88850c2f-f2e7-4428-bec0-8f3f757dc60d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 1200px) {
[id="s-88850c2f-f2e7-4428-bec0-8f3f757dc60d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 30.0px);
}

}

#s-4eadfe92-4ce2-4c59-a9a3-3a5c03f0390a {
  min-height: 50px;
}
@media (max-width: 767px){#s-4eadfe92-4ce2-4c59-a9a3-3a5c03f0390a {
  padding-bottom: 10px;
}
}







#s-4eadfe92-4ce2-4c59-a9a3-3a5c03f0390a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4eadfe92-4ce2-4c59-a9a3-3a5c03f0390a.shg-box.shg-c {
  justify-content: center;
}

#s-aca13299-d0eb-4a5e-b838-9025b08565a0 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-aca13299-d0eb-4a5e-b838-9025b08565a0 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-aca13299-d0eb-4a5e-b838-9025b08565a0 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-aca13299-d0eb-4a5e-b838-9025b08565a0 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-6592caab-4e40-4a9d-9b78-c31217c59364 {
  margin-top: 3%;
}

#s-f4bc1afd-7d62-4a59-ba0a-7f4cd86ae53e {
  max-width: 85%;
}
@media (max-width: 767px){#s-f4bc1afd-7d62-4a59-ba0a-7f4cd86ae53e {
  margin-top: 0.5em;
}
}







#s-f4bc1afd-7d62-4a59-ba0a-7f4cd86ae53e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f4bc1afd-7d62-4a59-ba0a-7f4cd86ae53e.shg-box.shg-c {
  justify-content: center;
}

#s-510f0ed2-04a1-4c6d-9cc9-b6dd43274149 {
  border-radius: 25px;
text-align: center;
}

#s-510f0ed2-04a1-4c6d-9cc9-b6dd43274149 {
  overflow: hidden;
  
  
}








#s-510f0ed2-04a1-4c6d-9cc9-b6dd43274149 .shogun-image-content {
  
    justify-content: center;
  
}

#s-5e2d5675-ab89-46b9-b457-d144b17a18af {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-5e2d5675-ab89-46b9-b457-d144b17a18af > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5e2d5675-ab89-46b9-b457-d144b17a18af.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-49ade479-398c-4ebf-b8a5-af0040887d07"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-49ade479-398c-4ebf-b8a5-af0040887d07"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 992px) {
[id="s-49ade479-398c-4ebf-b8a5-af0040887d07"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 1200px) {
[id="s-49ade479-398c-4ebf-b8a5-af0040887d07"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (max-width: 767px) {
  [id="s-49ade479-398c-4ebf-b8a5-af0040887d07"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-a167eb77-c310-4635-857f-19f28512413f {
  border-radius: 25px;
text-align: center;
}

#s-a167eb77-c310-4635-857f-19f28512413f {
  overflow: hidden;
  
  
}







  #s-a167eb77-c310-4635-857f-19f28512413f img.shogun-image {
    

    
    
    
  }


#s-a167eb77-c310-4635-857f-19f28512413f .shogun-image-content {
  
    justify-content: center;
  
}

#s-86cdb15a-8632-4ea6-a850-74ba70f6d23b {
  min-height: 150px;
}
@media (max-width: 767px){#s-86cdb15a-8632-4ea6-a850-74ba70f6d23b {
  margin-bottom: 0px;
padding-bottom: 10px;
}
}







#s-86cdb15a-8632-4ea6-a850-74ba70f6d23b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-86cdb15a-8632-4ea6-a850-74ba70f6d23b.shg-box.shg-c {
  justify-content: center;
}

#s-51036215-017b-4849-b25b-b8c0e2c56d6e {
  margin-left: 0px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-51036215-017b-4849-b25b-b8c0e2c56d6e {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-51036215-017b-4849-b25b-b8c0e2c56d6e .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-51036215-017b-4849-b25b-b8c0e2c56d6e .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-7e9942bb-9b01-4efa-a3ab-6a3d5e577469 {
  margin-top: 3%;
}

#s-bf6d98fc-d005-4671-8f1e-6ac2e25c1ea1 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-bf6d98fc-d005-4671-8f1e-6ac2e25c1ea1 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-bf6d98fc-d005-4671-8f1e-6ac2e25c1ea1 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-bf6d98fc-d005-4671-8f1e-6ac2e25c1ea1 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (max-width: 767px){#s-bf6d98fc-d005-4671-8f1e-6ac2e25c1ea1 {
  margin-top: 1em;
margin-bottom: 0em;
}
}







#s-bf6d98fc-d005-4671-8f1e-6ac2e25c1ea1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bf6d98fc-d005-4671-8f1e-6ac2e25c1ea1.shg-box.shg-c {
  justify-content: center;
}

#s-141fb01a-35cd-4b1c-9d83-aafc2f82860d {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-141fb01a-35cd-4b1c-9d83-aafc2f82860d {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-141fb01a-35cd-4b1c-9d83-aafc2f82860d .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-141fb01a-35cd-4b1c-9d83-aafc2f82860d .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-ff9d052a-255d-429a-a78a-effc922986d5 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-ff9d052a-255d-429a-a78a-effc922986d5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ff9d052a-255d-429a-a78a-effc922986d5.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-18ca920d-66b4-4d9b-9c2c-7f6783c9f3e5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-18ca920d-66b4-4d9b-9c2c-7f6783c9f3e5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-18ca920d-66b4-4d9b-9c2c-7f6783c9f3e5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-18ca920d-66b4-4d9b-9c2c-7f6783c9f3e5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-36a4cac4-a794-428b-a8dd-00c913466675 {
  min-height: 50px;
}
@media (max-width: 767px){#s-36a4cac4-a794-428b-a8dd-00c913466675 {
  padding-bottom: 10px;
}
}







#s-36a4cac4-a794-428b-a8dd-00c913466675 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-36a4cac4-a794-428b-a8dd-00c913466675.shg-box.shg-c {
  justify-content: center;
}

#s-e04ce5fa-0a33-4e82-9131-1eba9c334d98 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-e04ce5fa-0a33-4e82-9131-1eba9c334d98 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-e04ce5fa-0a33-4e82-9131-1eba9c334d98 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-e04ce5fa-0a33-4e82-9131-1eba9c334d98 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-87b87226-29a1-4cbf-9a8e-d5b9b31195d9 {
  margin-top: 3%;
padding-top: 0em;
padding-bottom: 0em;
}

#s-898e40bf-7f22-42ca-af43-7ee469b45ece {
  min-height: 150px;
}
@media (min-width: 768px) and (max-width: 991px){#s-898e40bf-7f22-42ca-af43-7ee469b45ece {
  min-height: 0px;
}
}@media (max-width: 767px){#s-898e40bf-7f22-42ca-af43-7ee469b45ece {
  margin-top: 0.5em;
margin-bottom: 0.5em;
}
}







#s-898e40bf-7f22-42ca-af43-7ee469b45ece > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-898e40bf-7f22-42ca-af43-7ee469b45ece.shg-box.shg-c {
  justify-content: center;
}

#s-5f10ce55-45e9-4f6a-9e55-462e9b61365d {
  border-radius: 25px;
text-align: center;
}

#s-5f10ce55-45e9-4f6a-9e55-462e9b61365d {
  overflow: hidden;
  
  
}







  #s-5f10ce55-45e9-4f6a-9e55-462e9b61365d img.shogun-image {
    

    
    
    
  }


#s-5f10ce55-45e9-4f6a-9e55-462e9b61365d .shogun-image-content {
  
    justify-content: center;
  
}

#s-445f0949-2089-47b6-a713-51fccfb9ce61 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-445f0949-2089-47b6-a713-51fccfb9ce61 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-445f0949-2089-47b6-a713-51fccfb9ce61.shg-box.shg-c {
  justify-content: center;
}

#s-e442d00e-3319-4eba-98a0-1473a98dafee {
  background-repeat: no-repeat;
background-size: cover;
padding-top: 10%;
padding-bottom: 10%;
min-height: 50px;
background-position: center center;
}

#s-e442d00e-3319-4eba-98a0-1473a98dafee {
  background-image: url(https://i.shgcdn.com/b8c61cf2-d563-4983-bb69-b056f4763879/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-e442d00e-3319-4eba-98a0-1473a98dafee > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e442d00e-3319-4eba-98a0-1473a98dafee.shg-box.shg-c {
  justify-content: center;
}

#s-163ac319-67ad-4132-b63f-0fe12b8b056a {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-163ac319-67ad-4132-b63f-0fe12b8b056a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-163ac319-67ad-4132-b63f-0fe12b8b056a.shg-box.shg-c {
  justify-content: center;
}

@media (max-width: 767px){#s-7599db4d-0f36-4e5d-83f3-c6d041a31fb3 {
  margin-top: 8%;
}
}
@media (min-width: 0px) {
[id="s-7599db4d-0f36-4e5d-83f3-c6d041a31fb3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7599db4d-0f36-4e5d-83f3-c6d041a31fb3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7599db4d-0f36-4e5d-83f3-c6d041a31fb3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7599db4d-0f36-4e5d-83f3-c6d041a31fb3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-cbdc9984-4c05-47ba-9e7e-a2e0afac138a {
  min-height: 50px;
}
@media (max-width: 767px){#s-cbdc9984-4c05-47ba-9e7e-a2e0afac138a {
  padding-bottom: 10px;
}
}







#s-cbdc9984-4c05-47ba-9e7e-a2e0afac138a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cbdc9984-4c05-47ba-9e7e-a2e0afac138a.shg-box.shg-c {
  justify-content: center;
}

#s-644f6733-47ad-4f89-94d8-c758521ef938 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-644f6733-47ad-4f89-94d8-c758521ef938 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-644f6733-47ad-4f89-94d8-c758521ef938 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-644f6733-47ad-4f89-94d8-c758521ef938 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-e16bca6e-49cd-4625-bb29-083568db5159 {
  margin-top: 3%;
padding-top: 0em;
padding-bottom: 0em;
}

#s-a7736931-1a17-45c2-b99f-df97cfeda7d5 {
  min-height: 150px;
}
@media (max-width: 767px){#s-a7736931-1a17-45c2-b99f-df97cfeda7d5 {
  padding-top: 0.5em;
padding-bottom: 0.5em;
}
}







#s-a7736931-1a17-45c2-b99f-df97cfeda7d5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a7736931-1a17-45c2-b99f-df97cfeda7d5.shg-box.shg-c {
  justify-content: center;
}

#s-6ca10f6c-9d64-4bd5-8e44-9264ac37c56b {
  border-radius: 25px;
text-align: center;
}

#s-6ca10f6c-9d64-4bd5-8e44-9264ac37c56b {
  overflow: hidden;
  
  
}







  #s-6ca10f6c-9d64-4bd5-8e44-9264ac37c56b img.shogun-image {
    

    
    
    
  }


#s-6ca10f6c-9d64-4bd5-8e44-9264ac37c56b .shogun-image-content {
  
    justify-content: center;
  
}

#s-f4a1c845-1577-413b-a968-c26d69377c7f {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 150px;
background-color: rgba(255, 255, 255, 1);
}








#s-f4a1c845-1577-413b-a968-c26d69377c7f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f4a1c845-1577-413b-a968-c26d69377c7f.shg-box.shg-c {
  justify-content: center;
}

.shogun-table-wrapper {
  overflow: auto;
}

table.shogun-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  border-style: hidden;
}

thead.shogun-table-column-container {
  font-weight: bold;
}

td.shogun-table-column {
  padding: 10px;
}

td.shogun-table-row {
  padding: 10px;
  min-height: 45px;
}

td.shogun-table-column:only-child, td.shogun-table-row:only-child {
  width: 100%;
}

#s-6b595475-485c-4817-aa68-8eb54120f6d1 .shogun-table-wrapper {
  overflow: auto;
  border: 1px solid rgba(0, 0, 0, 1);
  border-radius: 0px;
}

#s-6b595475-485c-4817-aa68-8eb54120f6d1 table.shogun-table {
  margin: 0;
  padding: 0;
}

#s-6b595475-485c-4817-aa68-8eb54120f6d1 td.shogun-table-column {
  background-color: rgba(2, 198, 246, 1);
  padding: 10px;
  text-align: left;
  font-family: ;
  font-size: 14px;
  font-weight: ;
  color: ;
  letter-spacing: ;
  line-height: ;
  font-style: ;
}

#s-6b595475-485c-4817-aa68-8eb54120f6d1 td.shogun-table-row {
  background-color: #fff;
  padding: 10px;
}

#s-6b595475-485c-4817-aa68-8eb54120f6d1 td.shogun-table-column, #s-6b595475-485c-4817-aa68-8eb54120f6d1 td.shogun-table-row {
  border: 1px solid rgba(0, 0, 0, 1);
}

#s-0f020b22-125c-4b1b-8010-1c8b3eb920cd {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-0f020b22-125c-4b1b-8010-1c8b3eb920cd {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-0f020b22-125c-4b1b-8010-1c8b3eb920cd .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-0f020b22-125c-4b1b-8010-1c8b3eb920cd .shogun-heading-component h5 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-2e4e0203-1997-40a5-9193-6b3e40acb6ef {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-2e4e0203-1997-40a5-9193-6b3e40acb6ef {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-2e4e0203-1997-40a5-9193-6b3e40acb6ef .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-2e4e0203-1997-40a5-9193-6b3e40acb6ef .shogun-heading-component h5 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-f31f5d99-9a75-498e-aaca-dbc75d0e31ba {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-f31f5d99-9a75-498e-aaca-dbc75d0e31ba {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-f31f5d99-9a75-498e-aaca-dbc75d0e31ba .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-f31f5d99-9a75-498e-aaca-dbc75d0e31ba .shogun-heading-component h5 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-5d19a58f-2407-487b-bf21-1539578a8565 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-5d19a58f-2407-487b-bf21-1539578a8565 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-5d19a58f-2407-487b-bf21-1539578a8565 .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-5d19a58f-2407-487b-bf21-1539578a8565 .shogun-heading-component h5 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-16790a17-3344-4b21-86b5-27360fdfff38 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-16790a17-3344-4b21-86b5-27360fdfff38 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-16790a17-3344-4b21-86b5-27360fdfff38 .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-16790a17-3344-4b21-86b5-27360fdfff38 .shogun-heading-component h5 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-fec05dfb-0b1a-4582-933d-406d272565ea {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-fec05dfb-0b1a-4582-933d-406d272565ea {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-fec05dfb-0b1a-4582-933d-406d272565ea .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-fec05dfb-0b1a-4582-933d-406d272565ea .shogun-heading-component h5 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-96da58c3-82c0-4bb5-a4c8-c73fb5c0c3ac {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-96da58c3-82c0-4bb5-a4c8-c73fb5c0c3ac {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-96da58c3-82c0-4bb5-a4c8-c73fb5c0c3ac .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-96da58c3-82c0-4bb5-a4c8-c73fb5c0c3ac .shogun-heading-component h5 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-7115b8d2-eea3-43b2-a837-be3263db87b7 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-7115b8d2-eea3-43b2-a837-be3263db87b7 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-7115b8d2-eea3-43b2-a837-be3263db87b7 .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-7115b8d2-eea3-43b2-a837-be3263db87b7 .shogun-heading-component h5 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-44e3f602-7ece-4d47-a826-90a54e709f38 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-44e3f602-7ece-4d47-a826-90a54e709f38 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-44e3f602-7ece-4d47-a826-90a54e709f38 .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-44e3f602-7ece-4d47-a826-90a54e709f38 .shogun-heading-component h5 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-19d5c5ce-e14b-4c0d-92e2-072f7dceaf68 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-19d5c5ce-e14b-4c0d-92e2-072f7dceaf68 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-19d5c5ce-e14b-4c0d-92e2-072f7dceaf68 .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-19d5c5ce-e14b-4c0d-92e2-072f7dceaf68 .shogun-heading-component h5 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-10f42c06-6122-4a80-be1d-086d4d12b8b3 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-10f42c06-6122-4a80-be1d-086d4d12b8b3 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-10f42c06-6122-4a80-be1d-086d4d12b8b3 .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-10f42c06-6122-4a80-be1d-086d4d12b8b3 .shogun-heading-component h5 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-45a39836-4fcd-4155-a7f8-bbecf3263861 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-45a39836-4fcd-4155-a7f8-bbecf3263861 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-45a39836-4fcd-4155-a7f8-bbecf3263861 .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-45a39836-4fcd-4155-a7f8-bbecf3263861 .shogun-heading-component h5 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-687c0d3c-4f66-4f9b-bcd5-6e371eb973b9 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-687c0d3c-4f66-4f9b-bcd5-6e371eb973b9 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-687c0d3c-4f66-4f9b-bcd5-6e371eb973b9 .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-687c0d3c-4f66-4f9b-bcd5-6e371eb973b9 .shogun-heading-component h5 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-f81417e2-c41e-4529-9363-5b5122bcc6de {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-f81417e2-c41e-4529-9363-5b5122bcc6de {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-f81417e2-c41e-4529-9363-5b5122bcc6de .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-f81417e2-c41e-4529-9363-5b5122bcc6de .shogun-heading-component h5 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
@media (max-width: 767px){#s-a7a52a41-bd54-4a87-8d40-6f8be622d46d {
  margin-top: 10px;
}
}
#s-fd69f979-78ca-4db6-af53-6d0b92ca12a7 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-fd69f979-78ca-4db6-af53-6d0b92ca12a7 {
  padding-top: 5%;
}
}







#s-fd69f979-78ca-4db6-af53-6d0b92ca12a7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fd69f979-78ca-4db6-af53-6d0b92ca12a7.shg-box.shg-c {
  justify-content: center;
}

@media (max-width: 767px){#s-2388beb6-1bae-4230-8f4d-547729d1dc67 {
  margin-top: 8%;
}
}
@media (min-width: 0px) {
[id="s-2388beb6-1bae-4230-8f4d-547729d1dc67"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2388beb6-1bae-4230-8f4d-547729d1dc67"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2388beb6-1bae-4230-8f4d-547729d1dc67"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2388beb6-1bae-4230-8f4d-547729d1dc67"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-2388beb6-1bae-4230-8f4d-547729d1dc67"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-77fbb379-90f2-474b-9879-bacb5a633fe0 {
  min-height: 50px;
}








#s-77fbb379-90f2-474b-9879-bacb5a633fe0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-77fbb379-90f2-474b-9879-bacb5a633fe0.shg-box.shg-c {
  justify-content: center;
}

#s-78b76329-385a-4be0-855a-ece3ed4d3d17 {
  border-radius: 25px;
text-align: center;
}

#s-78b76329-385a-4be0-855a-ece3ed4d3d17 {
  overflow: hidden;
  
  
}







  #s-78b76329-385a-4be0-855a-ece3ed4d3d17 img.shogun-image {
    

    
    
    
  }


#s-78b76329-385a-4be0-855a-ece3ed4d3d17 .shogun-image-content {
  
    justify-content: center;
  
}

#s-7526eccd-c57f-4833-ae24-f30d099187f4 {
  min-height: 150px;
}
@media (max-width: 767px){#s-7526eccd-c57f-4833-ae24-f30d099187f4 {
  padding-top: 0px;
padding-bottom: 10px;
}
}







#s-7526eccd-c57f-4833-ae24-f30d099187f4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7526eccd-c57f-4833-ae24-f30d099187f4.shg-box.shg-c {
  justify-content: center;
}

#s-259c0634-9c0e-4958-923a-fbcde02e06d9 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-259c0634-9c0e-4958-923a-fbcde02e06d9 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-259c0634-9c0e-4958-923a-fbcde02e06d9 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-259c0634-9c0e-4958-923a-fbcde02e06d9 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-b2bf0381-ab07-4c79-803b-fc08164fa8b8 {
  margin-top: 3%;
padding-top: 0em;
padding-bottom: 0em;
}
@media (max-width: 767px){#s-b2bf0381-ab07-4c79-803b-fc08164fa8b8 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-ff3c5c7b-94dd-497b-93c1-0c1909aea3a4 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-ff3c5c7b-94dd-497b-93c1-0c1909aea3a4 {
  padding-top: 5%;
}
}







#s-ff3c5c7b-94dd-497b-93c1-0c1909aea3a4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ff3c5c7b-94dd-497b-93c1-0c1909aea3a4.shg-box.shg-c {
  justify-content: center;
}

#s-b403ab2d-0c3e-4004-9fb0-4373d4764001 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-b403ab2d-0c3e-4004-9fb0-4373d4764001 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-b403ab2d-0c3e-4004-9fb0-4373d4764001 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-b403ab2d-0c3e-4004-9fb0-4373d4764001 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-e207011d-8f1d-491d-8e94-714d2e7c2d4e {
  padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(53, 57, 72, 1);
}
@media (max-width: 767px){#s-e207011d-8f1d-491d-8e94-714d2e7c2d4e {
  padding-left: 1%;
padding-right: 1%;
}
}







#s-e207011d-8f1d-491d-8e94-714d2e7c2d4e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e207011d-8f1d-491d-8e94-714d2e7c2d4e.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-5ca134cf-f069-4bdc-a983-990d8f44d6dc"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 768px) {
[id="s-5ca134cf-f069-4bdc-a983-990d8f44d6dc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-5ca134cf-f069-4bdc-a983-990d8f44d6dc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-5ca134cf-f069-4bdc-a983-990d8f44d6dc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-aaa93b25-a211-4de5-932f-56e5ee60647e {
  min-height: 50px;
}








#s-aaa93b25-a211-4de5-932f-56e5ee60647e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-aaa93b25-a211-4de5-932f-56e5ee60647e.shg-box.shg-c {
  justify-content: center;
}

#s-d5adb76e-81db-4cd1-bd69-e2410ea752d8 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-d5adb76e-81db-4cd1-bd69-e2410ea752d8 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-d5adb76e-81db-4cd1-bd69-e2410ea752d8 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-d5adb76e-81db-4cd1-bd69-e2410ea752d8 .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-606acd9b-ff22-4dc8-bd60-2d0b1b9665d1 {
  min-height: 50px;
}








#s-606acd9b-ff22-4dc8-bd60-2d0b1b9665d1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-606acd9b-ff22-4dc8-bd60-2d0b1b9665d1.shg-box.shg-c {
  justify-content: center;
}

#s-1ff1312d-e0f3-4a86-abe8-e7f7a6f7eda9 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-1ff1312d-e0f3-4a86-abe8-e7f7a6f7eda9 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-1ff1312d-e0f3-4a86-abe8-e7f7a6f7eda9 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-1ff1312d-e0f3-4a86-abe8-e7f7a6f7eda9 .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-1864d731-e985-412f-afd2-daaecfccbffd {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-1864d731-e985-412f-afd2-daaecfccbffd {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-1864d731-e985-412f-afd2-daaecfccbffd .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-1864d731-e985-412f-afd2-daaecfccbffd .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-738f53a5-e145-4fc7-a41f-f07b82e79b06 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-738f53a5-e145-4fc7-a41f-f07b82e79b06 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-738f53a5-e145-4fc7-a41f-f07b82e79b06 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-738f53a5-e145-4fc7-a41f-f07b82e79b06 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (max-width: 767px){#s-738f53a5-e145-4fc7-a41f-f07b82e79b06 {
  margin-top: 1em;
margin-bottom: 0em;
}
}







#s-738f53a5-e145-4fc7-a41f-f07b82e79b06 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-738f53a5-e145-4fc7-a41f-f07b82e79b06.shg-box.shg-c {
  justify-content: center;
}

#s-1cc153a2-2477-4b59-a344-e8e024ddf41f {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-1cc153a2-2477-4b59-a344-e8e024ddf41f {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-1cc153a2-2477-4b59-a344-e8e024ddf41f .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-1cc153a2-2477-4b59-a344-e8e024ddf41f .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-aa73b729-a547-4dc0-ad98-8ebb68c2056a {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-aa73b729-a547-4dc0-ad98-8ebb68c2056a {
  padding-bottom: 0px;
}
}







#s-aa73b729-a547-4dc0-ad98-8ebb68c2056a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-aa73b729-a547-4dc0-ad98-8ebb68c2056a.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-9c992660-f5d1-45f4-8430-820b48c6b788"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9c992660-f5d1-45f4-8430-820b48c6b788"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9c992660-f5d1-45f4-8430-820b48c6b788"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9c992660-f5d1-45f4-8430-820b48c6b788"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-87274ab3-f1d7-4313-b122-0e71423498f3 {
  min-height: 50px;
}
@media (max-width: 767px){#s-87274ab3-f1d7-4313-b122-0e71423498f3 {
  padding-bottom: 10px;
}
}







#s-87274ab3-f1d7-4313-b122-0e71423498f3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-87274ab3-f1d7-4313-b122-0e71423498f3.shg-box.shg-c {
  justify-content: center;
}

#s-30f64821-62b6-4138-8d8f-201ad960403e {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-30f64821-62b6-4138-8d8f-201ad960403e .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-95ff948f-0632-4155-9d48-cd038c0da158 {
  margin-top: 3%;
padding-top: 0em;
padding-bottom: 0em;
}

#s-a51f3b38-f826-429e-aa30-7db030771b55 {
  min-height: 150px;
}
@media (max-width: 767px){#s-a51f3b38-f826-429e-aa30-7db030771b55 {
  margin-top: 0.5em;
min-height: 0px;
}
}







#s-a51f3b38-f826-429e-aa30-7db030771b55 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a51f3b38-f826-429e-aa30-7db030771b55.shg-box.shg-c {
  justify-content: center;
}

#s-26223923-fb73-42ad-b537-b2356a71c46e {
  margin-left: 0%;
padding-left: 0%;
padding-right: 0%;
border-radius: 25px;
text-align: center;
}

#s-26223923-fb73-42ad-b537-b2356a71c46e {
  overflow: hidden;
  
  
}







  #s-26223923-fb73-42ad-b537-b2356a71c46e img.shogun-image {
    

    
    
    
  }


#s-26223923-fb73-42ad-b537-b2356a71c46e .shogun-image-content {
  
    justify-content: center;
  
}

#s-3afbf924-60cd-4a6c-87d2-80f5123ad017 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-3afbf924-60cd-4a6c-87d2-80f5123ad017 {
  margin-top: 0px;
padding-top: 10%;
padding-bottom: 0px;
}
}







#s-3afbf924-60cd-4a6c-87d2-80f5123ad017 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3afbf924-60cd-4a6c-87d2-80f5123ad017.shg-box.shg-c {
  justify-content: center;
}

#s-5eff74de-36fc-4b9e-bb68-59e17063c42b {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-5eff74de-36fc-4b9e-bb68-59e17063c42b .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-b50a9136-694e-4cd4-a580-784ef31365c7 {
  margin-top: 3%;
padding-top: 0em;
padding-bottom: 0em;
}

#s-b3cd620d-5212-4606-9a9f-3f854d2f4362 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-b3cd620d-5212-4606-9a9f-3f854d2f4362 {
  padding-top: 0px;
padding-bottom: 0px;
}
}







#s-b3cd620d-5212-4606-9a9f-3f854d2f4362 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b3cd620d-5212-4606-9a9f-3f854d2f4362.shg-box.shg-c {
  justify-content: center;
}

@media (max-width: 767px){#s-9d82ee74-bf82-461f-96cd-917dcaec4b84 {
  margin-top: 8%;
}
}
@media (min-width: 0px) {
[id="s-9d82ee74-bf82-461f-96cd-917dcaec4b84"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9d82ee74-bf82-461f-96cd-917dcaec4b84"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9d82ee74-bf82-461f-96cd-917dcaec4b84"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9d82ee74-bf82-461f-96cd-917dcaec4b84"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-03fc7a71-0a60-48a3-b93d-926ae735fdef {
  min-height: 50px;
}
@media (max-width: 767px){#s-03fc7a71-0a60-48a3-b93d-926ae735fdef {
  padding-top: 0px;
padding-bottom: 10px;
}
}







#s-03fc7a71-0a60-48a3-b93d-926ae735fdef > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-03fc7a71-0a60-48a3-b93d-926ae735fdef.shg-box.shg-c {
  justify-content: center;
}

#s-22ab4e52-4b99-47a3-8b35-b0f761014891 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (max-width: 767px){#s-22ab4e52-4b99-47a3-8b35-b0f761014891 {
  padding-top: 0px;
}
}
#s-22ab4e52-4b99-47a3-8b35-b0f761014891 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-5a17ffda-d5fe-42f9-912d-86687d701e2e {
  margin-top: 3%;
padding-top: 0em;
padding-bottom: 0em;
}

#s-d44a505f-140f-4e93-83cb-5f54a9a36e55 {
  min-height: 50px;
}
@media (max-width: 767px){#s-d44a505f-140f-4e93-83cb-5f54a9a36e55 {
  margin-top: 0.5em;
margin-bottom: 0.5em;
min-height: 0px;
}
}







#s-d44a505f-140f-4e93-83cb-5f54a9a36e55 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d44a505f-140f-4e93-83cb-5f54a9a36e55.shg-box.shg-c {
  justify-content: center;
}

#s-f14ec6db-b3e3-404f-8e98-8a1045a51b31 {
  border-radius: 25px;
text-align: center;
}

#s-f14ec6db-b3e3-404f-8e98-8a1045a51b31 {
  overflow: hidden;
  
  
}







  #s-f14ec6db-b3e3-404f-8e98-8a1045a51b31 img.shogun-image {
    

    
    
    
  }


#s-f14ec6db-b3e3-404f-8e98-8a1045a51b31 .shogun-image-content {
  
    justify-content: center;
  
}

#s-bf6d6be1-d57e-4787-ac69-89ac9f36f566 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-bf6d6be1-d57e-4787-ac69-89ac9f36f566 {
  padding-bottom: 0%;
}
}







#s-bf6d6be1-d57e-4787-ac69-89ac9f36f566 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bf6d6be1-d57e-4787-ac69-89ac9f36f566.shg-box.shg-c {
  justify-content: center;
}

@media (max-width: 767px){#s-b83a8c8e-b9e5-42ff-a503-9aba937c083b {
  margin-top: 8%;
}
}
@media (min-width: 0px) {
[id="s-b83a8c8e-b9e5-42ff-a503-9aba937c083b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b83a8c8e-b9e5-42ff-a503-9aba937c083b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b83a8c8e-b9e5-42ff-a503-9aba937c083b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b83a8c8e-b9e5-42ff-a503-9aba937c083b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-b83a8c8e-b9e5-42ff-a503-9aba937c083b"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-bbf258d2-238e-4a31-b3f8-5d98549eedaa {
  min-height: 50px;
}








#s-bbf258d2-238e-4a31-b3f8-5d98549eedaa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bbf258d2-238e-4a31-b3f8-5d98549eedaa.shg-box.shg-c {
  justify-content: center;
}

#s-552f99d8-00ac-4220-9a51-9109be70a90e {
  border-radius: 25px;
text-align: center;
}

#s-552f99d8-00ac-4220-9a51-9109be70a90e {
  overflow: hidden;
  
  
}







  #s-552f99d8-00ac-4220-9a51-9109be70a90e img.shogun-image {
    

    
    
    
  }


#s-552f99d8-00ac-4220-9a51-9109be70a90e .shogun-image-content {
  
    justify-content: center;
  
}

#s-93b34b92-cfc5-462e-b254-849270a8ff80 {
  min-height: 150px;
}
@media (max-width: 767px){#s-93b34b92-cfc5-462e-b254-849270a8ff80 {
  padding-top: 0px;
padding-bottom: 10px;
}
}







#s-93b34b92-cfc5-462e-b254-849270a8ff80 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-93b34b92-cfc5-462e-b254-849270a8ff80.shg-box.shg-c {
  justify-content: center;
}

#s-337357db-cc9c-4ea9-9a88-0f790d5a965a {
  margin-left: 0px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-337357db-cc9c-4ea9-9a88-0f790d5a965a .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-aaa40e3f-1e15-4079-85f3-fb89021b01e3 {
  margin-top: 3%;
padding-top: 0em;
padding-bottom: 0em;
}

#s-e7113719-caf4-41b2-839b-6b3e25def5a6 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-e7113719-caf4-41b2-839b-6b3e25def5a6 {
  padding-top: 0px;
}
}







#s-e7113719-caf4-41b2-839b-6b3e25def5a6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e7113719-caf4-41b2-839b-6b3e25def5a6.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-10510f35-4baa-486a-b2fb-21beb84929bd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-10510f35-4baa-486a-b2fb-21beb84929bd"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-10510f35-4baa-486a-b2fb-21beb84929bd"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-10510f35-4baa-486a-b2fb-21beb84929bd"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-15f3c2c0-9147-49f3-8ec8-f7650c24af88 {
  min-height: 50px;
}
@media (max-width: 767px){#s-15f3c2c0-9147-49f3-8ec8-f7650c24af88 {
  padding-bottom: 10px;
}
}







#s-15f3c2c0-9147-49f3-8ec8-f7650c24af88 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-15f3c2c0-9147-49f3-8ec8-f7650c24af88.shg-box.shg-c {
  justify-content: center;
}

#s-04147a75-d17e-4a85-973c-fc31e76c2588 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-04147a75-d17e-4a85-973c-fc31e76c2588 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-e0da7e8e-ed5d-438d-a5c5-0ed93ee67ab5 {
  margin-top: 3%;
padding-top: 0em;
padding-bottom: 0em;
}

#s-7e00abf2-95be-48cb-9f68-67795713938e {
  min-height: 150px;
}
@media (max-width: 767px){#s-7e00abf2-95be-48cb-9f68-67795713938e {
  margin-top: 0.5em;
}
}







#s-7e00abf2-95be-48cb-9f68-67795713938e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7e00abf2-95be-48cb-9f68-67795713938e.shg-box.shg-c {
  justify-content: center;
}

#s-4004c348-223f-44fd-b9a1-8681656ec59c {
  border-radius: 25px;
text-align: center;
}

#s-4004c348-223f-44fd-b9a1-8681656ec59c {
  overflow: hidden;
  
  
}







  #s-4004c348-223f-44fd-b9a1-8681656ec59c img.shogun-image {
    

    
    
    
  }


#s-4004c348-223f-44fd-b9a1-8681656ec59c .shogun-image-content {
  
    justify-content: center;
  
}

#s-df62b3bd-25d8-4f2a-9cec-606deddb7ce3 {
  margin-top: 0%;
margin-left: 0%;
margin-bottom: 0%;
margin-right: 0%;
padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-df62b3bd-25d8-4f2a-9cec-606deddb7ce3 {
  margin-top: 10px;
margin-bottom: 10px;
}
}







#s-df62b3bd-25d8-4f2a-9cec-606deddb7ce3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-df62b3bd-25d8-4f2a-9cec-606deddb7ce3.shg-box.shg-c {
  justify-content: center;
}

#s-df1d919f-517c-4add-8efb-920707cc5003 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-df1d919f-517c-4add-8efb-920707cc5003 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-df1d919f-517c-4add-8efb-920707cc5003 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-df1d919f-517c-4add-8efb-920707cc5003 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (max-width: 767px){#s-df1d919f-517c-4add-8efb-920707cc5003 {
  margin-top: 1em;
margin-bottom: 0em;
}
}







#s-df1d919f-517c-4add-8efb-920707cc5003 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-df1d919f-517c-4add-8efb-920707cc5003.shg-box.shg-c {
  justify-content: center;
}

#s-f3afa3df-32a0-4811-b586-97ae8a772be2 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-f3afa3df-32a0-4811-b586-97ae8a772be2 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-f3afa3df-32a0-4811-b586-97ae8a772be2 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-f3afa3df-32a0-4811-b586-97ae8a772be2 .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-0c4edfdf-4bc8-46a6-9191-f7fa207dbf3c {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-0c4edfdf-4bc8-46a6-9191-f7fa207dbf3c {
  padding-bottom: 4%;
padding-right: 7%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0c4edfdf-4bc8-46a6-9191-f7fa207dbf3c {
  padding-bottom: 4%;
padding-right: 7%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0c4edfdf-4bc8-46a6-9191-f7fa207dbf3c {
  padding-bottom: 4%;
}
}







#s-0c4edfdf-4bc8-46a6-9191-f7fa207dbf3c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0c4edfdf-4bc8-46a6-9191-f7fa207dbf3c.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-ac931e2d-51d6-445d-b4f7-3d377196a456"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ac931e2d-51d6-445d-b4f7-3d377196a456"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 992px) {
[id="s-ac931e2d-51d6-445d-b4f7-3d377196a456"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 1200px) {
[id="s-ac931e2d-51d6-445d-b4f7-3d377196a456"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 30.0px);
}

}

#s-adca8c11-0d25-40d7-be5b-8aeb5aaaa55f {
  min-height: 50px;
}
@media (max-width: 767px){#s-adca8c11-0d25-40d7-be5b-8aeb5aaaa55f {
  margin-top: 0px;
margin-bottom: 0px;
padding-bottom: 10px;
}
}







#s-adca8c11-0d25-40d7-be5b-8aeb5aaaa55f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-adca8c11-0d25-40d7-be5b-8aeb5aaaa55f.shg-box.shg-c {
  justify-content: flex-start;
}

#s-7b9529a9-dd40-4601-94f0-35b36671f5e0 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-7b9529a9-dd40-4601-94f0-35b36671f5e0 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-7b9529a9-dd40-4601-94f0-35b36671f5e0 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-7b9529a9-dd40-4601-94f0-35b36671f5e0 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-bd8b6840-3381-4c7e-a06b-685d519622a0 {
  margin-top: 3%;
}

#s-4e01ce9c-3414-4e40-a9be-1733f839f22c {
  min-height: 0px;
}
@media (max-width: 767px){#s-4e01ce9c-3414-4e40-a9be-1733f839f22c {
  margin-top: 0.5em;
margin-bottom: 0.5em;
}
}







#s-4e01ce9c-3414-4e40-a9be-1733f839f22c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4e01ce9c-3414-4e40-a9be-1733f839f22c.shg-box.shg-c {
  justify-content: center;
}

#s-38456616-380a-4aa6-ade3-e0ca5721f8fd {
  margin-left: 0%;
margin-right: 0%;
border-radius: 25px;
min-height: 80%;
max-width: 80%;
text-align: center;
}
@media (max-width: 767px){#s-38456616-380a-4aa6-ade3-e0ca5721f8fd {
  min-height: 100%;
max-width: 100%;
}
}
#s-38456616-380a-4aa6-ade3-e0ca5721f8fd {
  overflow: hidden;
  
  
      max-width: 80%;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}







  #s-38456616-380a-4aa6-ade3-e0ca5721f8fd img.shogun-image {
    

    
    
    
  }


#s-38456616-380a-4aa6-ade3-e0ca5721f8fd .shogun-image-content {
  
    justify-content: center;
  
}

#s-706022eb-5bad-4389-84d1-033ad718df98 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-706022eb-5bad-4389-84d1-033ad718df98 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-706022eb-5bad-4389-84d1-033ad718df98.shg-box.shg-c {
  justify-content: center;
}

@media (max-width: 767px){#s-5acd4405-b0a2-4d07-9991-bb242e180eb6 {
  margin-top: 8%;
}
}
@media (min-width: 0px) {
[id="s-5acd4405-b0a2-4d07-9991-bb242e180eb6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5acd4405-b0a2-4d07-9991-bb242e180eb6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5acd4405-b0a2-4d07-9991-bb242e180eb6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5acd4405-b0a2-4d07-9991-bb242e180eb6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-5acd4405-b0a2-4d07-9991-bb242e180eb6"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-a540a4a6-553a-4919-a0bb-82ab17fe2748 {
  border-radius: 25px;
text-align: center;
}

#s-a540a4a6-553a-4919-a0bb-82ab17fe2748 {
  overflow: hidden;
  
  
}







  #s-a540a4a6-553a-4919-a0bb-82ab17fe2748 img.shogun-image {
    

    
    
    
  }


#s-a540a4a6-553a-4919-a0bb-82ab17fe2748 .shogun-image-content {
  
    justify-content: center;
  
}

#s-c67bcb39-6669-4258-a2aa-5286704a70a1 {
  min-height: 150px;
}
@media (max-width: 767px){#s-c67bcb39-6669-4258-a2aa-5286704a70a1 {
  padding-top: 0px;
padding-bottom: 10px;
}
}







#s-c67bcb39-6669-4258-a2aa-5286704a70a1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c67bcb39-6669-4258-a2aa-5286704a70a1.shg-box.shg-c {
  justify-content: center;
}

#s-f2e8059b-6cd9-4397-9ff6-eb578c55ffd7 {
  margin-left: 0px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-f2e8059b-6cd9-4397-9ff6-eb578c55ffd7 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-f2e8059b-6cd9-4397-9ff6-eb578c55ffd7 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-f2e8059b-6cd9-4397-9ff6-eb578c55ffd7 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-17003331-d102-44b1-b137-d7c14f0df365 {
  margin-top: 3%;
}

#s-724558b8-c523-413e-960c-2da01994779a {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-724558b8-c523-413e-960c-2da01994779a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-724558b8-c523-413e-960c-2da01994779a.shg-box.shg-c {
  justify-content: center;
}

@media (max-width: 767px){#s-dcac9146-d632-4416-b02d-d9c0f11dc47a {
  margin-top: 0%;
}
}
@media (min-width: 0px) {
[id="s-dcac9146-d632-4416-b02d-d9c0f11dc47a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-dcac9146-d632-4416-b02d-d9c0f11dc47a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-dcac9146-d632-4416-b02d-d9c0f11dc47a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-dcac9146-d632-4416-b02d-d9c0f11dc47a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-c93eaf78-3ea1-411d-8598-12dcb2111362 {
  min-height: 50px;
}
@media (max-width: 767px){#s-c93eaf78-3ea1-411d-8598-12dcb2111362 {
  padding-bottom: 10px;
}
}







#s-c93eaf78-3ea1-411d-8598-12dcb2111362 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c93eaf78-3ea1-411d-8598-12dcb2111362.shg-box.shg-c {
  justify-content: center;
}

#s-de2e0fd5-fc90-418a-94ef-878d779b861a {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-de2e0fd5-fc90-418a-94ef-878d779b861a {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-de2e0fd5-fc90-418a-94ef-878d779b861a .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-de2e0fd5-fc90-418a-94ef-878d779b861a .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-ae35f647-4b07-4e89-a1d9-ba752f7fc4d4 {
  margin-top: 3%;
}

#s-fe67c26c-d34a-42d6-a173-48beac99fa0b {
  min-height: 150px;
}
@media (max-width: 767px){#s-fe67c26c-d34a-42d6-a173-48beac99fa0b {
  margin-top: 0.5em;
}
}







#s-fe67c26c-d34a-42d6-a173-48beac99fa0b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fe67c26c-d34a-42d6-a173-48beac99fa0b.shg-box.shg-c {
  justify-content: center;
}

#s-89a0bb1a-8d58-46fe-9a36-dd6bc04155c6 {
  border-radius: 25px;
text-align: center;
}

#s-89a0bb1a-8d58-46fe-9a36-dd6bc04155c6 {
  overflow: hidden;
  
  
}







  #s-89a0bb1a-8d58-46fe-9a36-dd6bc04155c6 img.shogun-image {
    

    
    
    
  }


#s-89a0bb1a-8d58-46fe-9a36-dd6bc04155c6 .shogun-image-content {
  
    justify-content: center;
  
}

#s-ac5b55c1-dc64-41f4-8005-ce7680dae9ef {
  min-height: 50px;
}
@media (min-width: 1200px){#s-ac5b55c1-dc64-41f4-8005-ce7680dae9ef {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ac5b55c1-dc64-41f4-8005-ce7680dae9ef {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-ac5b55c1-dc64-41f4-8005-ce7680dae9ef {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (max-width: 767px){#s-ac5b55c1-dc64-41f4-8005-ce7680dae9ef {
  margin-top: 1em;
margin-bottom: 0em;
}
}







#s-ac5b55c1-dc64-41f4-8005-ce7680dae9ef > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ac5b55c1-dc64-41f4-8005-ce7680dae9ef.shg-box.shg-c {
  justify-content: center;
}

#s-70155a7a-1c58-4e97-8f98-a78590016700 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-70155a7a-1c58-4e97-8f98-a78590016700 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-70155a7a-1c58-4e97-8f98-a78590016700 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-70155a7a-1c58-4e97-8f98-a78590016700 .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-addcad07-33ab-4a33-9f05-ff649ef4e4e1 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-addcad07-33ab-4a33-9f05-ff649ef4e4e1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-addcad07-33ab-4a33-9f05-ff649ef4e4e1.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-b76cdc8e-60bb-4a87-8153-a75afb2d310b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b76cdc8e-60bb-4a87-8153-a75afb2d310b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 992px) {
[id="s-b76cdc8e-60bb-4a87-8153-a75afb2d310b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 1200px) {
[id="s-b76cdc8e-60bb-4a87-8153-a75afb2d310b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 30.0px);
}

}

#s-688aa7e5-13fe-4ed1-b603-1082a1322e9c {
  min-height: 50px;
}
@media (max-width: 767px){#s-688aa7e5-13fe-4ed1-b603-1082a1322e9c {
  padding-bottom: 10px;
}
}







#s-688aa7e5-13fe-4ed1-b603-1082a1322e9c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-688aa7e5-13fe-4ed1-b603-1082a1322e9c.shg-box.shg-c {
  justify-content: flex-start;
}

#s-ed1c79ae-50dd-40d2-85ca-7bf7f8b77380 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-ed1c79ae-50dd-40d2-85ca-7bf7f8b77380 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-ed1c79ae-50dd-40d2-85ca-7bf7f8b77380 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-ed1c79ae-50dd-40d2-85ca-7bf7f8b77380 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-b150a928-cf47-4353-8dfa-9a0182c6f81a {
  margin-top: 3%;
}

#s-6d11f1b8-a712-4e2d-8e6a-2caff1ce4daf {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-6d11f1b8-a712-4e2d-8e6a-2caff1ce4daf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6d11f1b8-a712-4e2d-8e6a-2caff1ce4daf.shg-box.shg-c {
  justify-content: center;
}

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

.shg-inner-inline-image {
  position: relative;
  display: block;
  overflow: hidden;
}

.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-link {
  display: block;
  min-height: inherit;
  max-height: inherit;
  height: inherit;
  position: relative;
}

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

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

.shogun-image-content-v3 {
  display: flex;
  flex-direction: column;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  /* Ensures that the content children fills the container */
  align-items: stretch;
}

.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-top {
  align-items: flex-start;
}

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

.shogun-image-content-bottom {
  align-items: flex-end;
}

.shg-inner-inline-image .shogun-image.hover~* {
  z-index: 1;
}

.shogun-image-content-v3 > * {
  flex-shrink: 0; /* Prevents children from shrinking maintaining natural size*/
  width: 100%;
}
#s-c738607f-b139-4a58-9014-a64bb77b66e6 {
  margin-left: auto;
margin-right: auto;
max-width: 880px;
text-align: center;
}

#s-c738607f-b139-4a58-9014-a64bb77b66e6 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c738607f-b139-4a58-9014-a64bb77b66e6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c738607f-b139-4a58-9014-a64bb77b66e6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c738607f-b139-4a58-9014-a64bb77b66e6 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  border-left-width: 0px;
  border-right-width: 0px;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-color: #000;
  border-style: none;
  border-radius: 25px;
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-c738607f-b139-4a58-9014-a64bb77b66e6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-c738607f-b139-4a58-9014-a64bb77b66e6 img.shogun-image {
  width: 100%;
  
  
  max-width: 880px;

      
    max-width: 880px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-c738607f-b139-4a58-9014-a64bb77b66e6 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c738607f-b139-4a58-9014-a64bb77b66e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c738607f-b139-4a58-9014-a64bb77b66e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c738607f-b139-4a58-9014-a64bb77b66e6.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-c738607f-b139-4a58-9014-a64bb77b66e6 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c738607f-b139-4a58-9014-a64bb77b66e6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c738607f-b139-4a58-9014-a64bb77b66e6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c738607f-b139-4a58-9014-a64bb77b66e6 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-c738607f-b139-4a58-9014-a64bb77b66e6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-c738607f-b139-4a58-9014-a64bb77b66e6 img.shogun-image {
  width: 100%;
  
  
  max-width: 880px;

      
    max-width: 880px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-c738607f-b139-4a58-9014-a64bb77b66e6 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c738607f-b139-4a58-9014-a64bb77b66e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c738607f-b139-4a58-9014-a64bb77b66e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c738607f-b139-4a58-9014-a64bb77b66e6.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-c738607f-b139-4a58-9014-a64bb77b66e6 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c738607f-b139-4a58-9014-a64bb77b66e6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c738607f-b139-4a58-9014-a64bb77b66e6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c738607f-b139-4a58-9014-a64bb77b66e6 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-c738607f-b139-4a58-9014-a64bb77b66e6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-c738607f-b139-4a58-9014-a64bb77b66e6 img.shogun-image {
  width: 100%;
  
  
  max-width: 880px;

      
    max-width: 880px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-c738607f-b139-4a58-9014-a64bb77b66e6 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c738607f-b139-4a58-9014-a64bb77b66e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c738607f-b139-4a58-9014-a64bb77b66e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c738607f-b139-4a58-9014-a64bb77b66e6.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-c738607f-b139-4a58-9014-a64bb77b66e6 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c738607f-b139-4a58-9014-a64bb77b66e6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c738607f-b139-4a58-9014-a64bb77b66e6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c738607f-b139-4a58-9014-a64bb77b66e6 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-c738607f-b139-4a58-9014-a64bb77b66e6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-c738607f-b139-4a58-9014-a64bb77b66e6 img.shogun-image {
  width: 100%;
  
  
  max-width: 880px;

      
    max-width: 880px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-c738607f-b139-4a58-9014-a64bb77b66e6 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c738607f-b139-4a58-9014-a64bb77b66e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c738607f-b139-4a58-9014-a64bb77b66e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c738607f-b139-4a58-9014-a64bb77b66e6.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-c738607f-b139-4a58-9014-a64bb77b66e6 {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-c738607f-b139-4a58-9014-a64bb77b66e6-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.shg-image-margin-container-s-c738607f-b139-4a58-9014-a64bb77b66e6 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-c738607f-b139-4a58-9014-a64bb77b66e6 .shg-inner-inline-image {
  overflow: hidden;

    /* Add border handling */
  
  
  
  
  
  
  
  /* Add background color handling */
  
  /* Add padding handling matching image-margin-container */
  
  
  
  
}


.shg-image-content-margin-container-s-c738607f-b139-4a58-9014-a64bb77b66e6 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

.shg-image-overflow {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#s-c738607f-b139-4a58-9014-a64bb77b66e6 img.shogun-image {
  width: 100%;
  
  
  max-width: 880px;

      
    max-width: 880px;

  /* Note: These properties need to be set at each viewport to prevent inheritance */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transform: none;
  transform-origin: none;
}




.s-c738607f-b139-4a58-9014-a64bb77b66e6 .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-c738607f-b139-4a58-9014-a64bb77b66e6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c738607f-b139-4a58-9014-a64bb77b66e6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c738607f-b139-4a58-9014-a64bb77b66e6.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-df4da659-4083-484c-b05c-cc9223b8f711 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-df4da659-4083-484c-b05c-cc9223b8f711 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-df4da659-4083-484c-b05c-cc9223b8f711 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-df4da659-4083-484c-b05c-cc9223b8f711 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (max-width: 767px){#s-df4da659-4083-484c-b05c-cc9223b8f711 {
  margin-top: 1em;
margin-bottom: 0em;
}
}







#s-df4da659-4083-484c-b05c-cc9223b8f711 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-df4da659-4083-484c-b05c-cc9223b8f711.shg-box.shg-c {
  justify-content: center;
}

#s-e69166c8-da35-4fd2-9d4e-91df3850cb69 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-e69166c8-da35-4fd2-9d4e-91df3850cb69 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-e69166c8-da35-4fd2-9d4e-91df3850cb69 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-e69166c8-da35-4fd2-9d4e-91df3850cb69 .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-abe17d45-7de2-4018-9ccc-b70508da46ef {
  margin-top: 2%;
margin-bottom: 0%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-abe17d45-7de2-4018-9ccc-b70508da46ef {
  padding-bottom: 1em;
}
}@media (max-width: 767px){#s-abe17d45-7de2-4018-9ccc-b70508da46ef {
  padding-top: 0em;
padding-bottom: 1em;
}
}







#s-abe17d45-7de2-4018-9ccc-b70508da46ef > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-abe17d45-7de2-4018-9ccc-b70508da46ef.shg-box.shg-c {
  justify-content: center;
}

#s-1e838e0b-3b8b-458b-8429-d1d9d179283c {
  max-width: 128px;
text-align: center;
}
@media (min-width: 1200px){#s-1e838e0b-3b8b-458b-8429-d1d9d179283c {
  max-width: 20%;
}
}
#s-1e838e0b-3b8b-458b-8429-d1d9d179283c {
  overflow: hidden;
  
  
      max-width: 128px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-1e838e0b-3b8b-458b-8429-d1d9d179283c .shogun-image-content {
  
    justify-content: center;
  
}

#s-298061f0-1a5f-4598-afa0-d48550b2a139 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-298061f0-1a5f-4598-afa0-d48550b2a139 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-298061f0-1a5f-4598-afa0-d48550b2a139 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-298061f0-1a5f-4598-afa0-d48550b2a139 .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-30bc6de2-b5df-4a83-a73f-fb993d65706b {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-30bc6de2-b5df-4a83-a73f-fb993d65706b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-30bc6de2-b5df-4a83-a73f-fb993d65706b.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-9abc3a1b-2e9f-4b1d-95f3-74817d591ccb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9abc3a1b-2e9f-4b1d-95f3-74817d591ccb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9abc3a1b-2e9f-4b1d-95f3-74817d591ccb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9abc3a1b-2e9f-4b1d-95f3-74817d591ccb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-9abc3a1b-2e9f-4b1d-95f3-74817d591ccb"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-485946eb-e1f1-46d8-a920-566c6a8d1868 {
  min-height: 150px;
}
@media (max-width: 767px){#s-485946eb-e1f1-46d8-a920-566c6a8d1868 {
  padding-top: 0px;
padding-bottom: 10px;
}
}







#s-485946eb-e1f1-46d8-a920-566c6a8d1868 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-485946eb-e1f1-46d8-a920-566c6a8d1868.shg-box.shg-c {
  justify-content: center;
}

#s-002e926e-8ce4-47b1-90ef-308119482a5d {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-002e926e-8ce4-47b1-90ef-308119482a5d {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-002e926e-8ce4-47b1-90ef-308119482a5d .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-002e926e-8ce4-47b1-90ef-308119482a5d .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-dd484aba-54c9-4c76-b7d9-256caaa304c3 {
  margin-top: 3%;
}
@media (max-width: 767px){#s-dd484aba-54c9-4c76-b7d9-256caaa304c3 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-e8a7326e-de12-4195-96c2-1a1dd0c411eb {
  min-height: 50px;
}








#s-e8a7326e-de12-4195-96c2-1a1dd0c411eb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e8a7326e-de12-4195-96c2-1a1dd0c411eb.shg-box.shg-c {
  justify-content: center;
}

#s-0a7752e9-1a40-4049-959a-ca2acc2dd3a3 {
  border-radius: 25px;
text-align: center;
}

#s-0a7752e9-1a40-4049-959a-ca2acc2dd3a3 {
  overflow: hidden;
  
  
}







  #s-0a7752e9-1a40-4049-959a-ca2acc2dd3a3 img.shogun-image {
    

    
    
    
  }


#s-0a7752e9-1a40-4049-959a-ca2acc2dd3a3 .shogun-image-content {
  
    justify-content: center;
  
}

#s-be837f4d-4f9d-44d2-a496-fff08dfddc90 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-be837f4d-4f9d-44d2-a496-fff08dfddc90 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-be837f4d-4f9d-44d2-a496-fff08dfddc90 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-be837f4d-4f9d-44d2-a496-fff08dfddc90 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (max-width: 767px){#s-be837f4d-4f9d-44d2-a496-fff08dfddc90 {
  margin-top: 1em;
margin-bottom: 0em;
}
}







#s-be837f4d-4f9d-44d2-a496-fff08dfddc90 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-be837f4d-4f9d-44d2-a496-fff08dfddc90.shg-box.shg-c {
  justify-content: center;
}

#s-1cb39373-a629-4366-945a-c36bf2560226 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-1cb39373-a629-4366-945a-c36bf2560226 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-1cb39373-a629-4366-945a-c36bf2560226 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-1cb39373-a629-4366-945a-c36bf2560226 .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-f5b150b6-5a29-40b3-9c69-4e670f11a6a1 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-f5b150b6-5a29-40b3-9c69-4e670f11a6a1 {
  padding-bottom: 0%;
}
}







#s-f5b150b6-5a29-40b3-9c69-4e670f11a6a1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f5b150b6-5a29-40b3-9c69-4e670f11a6a1.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-c1090157-d03f-45cf-914e-cca3c997f64e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c1090157-d03f-45cf-914e-cca3c997f64e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 992px) {
[id="s-c1090157-d03f-45cf-914e-cca3c997f64e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 1200px) {
[id="s-c1090157-d03f-45cf-914e-cca3c997f64e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 30.0px);
}

}

#s-2d631d49-dda7-48d6-9fad-9c88c3ac2e71 {
  min-height: 50px;
}
@media (max-width: 767px){#s-2d631d49-dda7-48d6-9fad-9c88c3ac2e71 {
  padding-bottom: 10px;
}
}







#s-2d631d49-dda7-48d6-9fad-9c88c3ac2e71 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2d631d49-dda7-48d6-9fad-9c88c3ac2e71.shg-box.shg-c {
  justify-content: flex-start;
}

#s-397dd041-0cfb-4898-be23-c409b55c8f0b {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-397dd041-0cfb-4898-be23-c409b55c8f0b {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-397dd041-0cfb-4898-be23-c409b55c8f0b .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-397dd041-0cfb-4898-be23-c409b55c8f0b .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-555b2052-471c-492e-8d46-007acc074118 {
  margin-top: 3%;
}

#s-a4ccd664-4570-4a34-a60a-c6e8b5042ccb {
  min-height: 150px;
}
@media (max-width: 767px){#s-a4ccd664-4570-4a34-a60a-c6e8b5042ccb {
  margin-top: 0.5em;
margin-bottom: 0em;
}
}







#s-a4ccd664-4570-4a34-a60a-c6e8b5042ccb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a4ccd664-4570-4a34-a60a-c6e8b5042ccb.shg-box.shg-c {
  justify-content: center;
}

#s-5fcea553-32d2-4638-b189-2dced4865032 {
  border-radius: 25px;
text-align: center;
}

#s-5fcea553-32d2-4638-b189-2dced4865032 {
  overflow: hidden;
  
  
}







  #s-5fcea553-32d2-4638-b189-2dced4865032 img.shogun-image {
    

    
    
    
  }


#s-5fcea553-32d2-4638-b189-2dced4865032 .shogun-image-content {
  
    justify-content: center;
  
}

#s-6ed36a47-e9ba-40e4-b30d-20e88f604b80 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-6ed36a47-e9ba-40e4-b30d-20e88f604b80 {
  padding-top: 8%;
padding-bottom: 0%;
}
}







#s-6ed36a47-e9ba-40e4-b30d-20e88f604b80 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6ed36a47-e9ba-40e4-b30d-20e88f604b80.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-e0a68c66-83b2-4ef7-ac09-2ffdca299f3b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e0a68c66-83b2-4ef7-ac09-2ffdca299f3b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 992px) {
[id="s-e0a68c66-83b2-4ef7-ac09-2ffdca299f3b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 1200px) {
[id="s-e0a68c66-83b2-4ef7-ac09-2ffdca299f3b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (max-width: 767px) {
  [id="s-e0a68c66-83b2-4ef7-ac09-2ffdca299f3b"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-50b7c248-5c8d-442f-ba46-8f34be59c073 {
  padding-top: 0em;
padding-bottom: 0em;
border-radius: 25px;
text-align: center;
}
@media (max-width: 767px){#s-50b7c248-5c8d-442f-ba46-8f34be59c073 {
  margin-top: 0.5em;
margin-bottom: 0em;
}
}
#s-50b7c248-5c8d-442f-ba46-8f34be59c073 {
  overflow: hidden;
  
  
}







  #s-50b7c248-5c8d-442f-ba46-8f34be59c073 img.shogun-image {
    

    
    
    
  }


#s-50b7c248-5c8d-442f-ba46-8f34be59c073 .shogun-image-content {
  
    justify-content: center;
  
}

#s-2e181c74-a1c7-4c1f-a599-ac3f210943ce {
  min-height: 150px;
}
@media (max-width: 767px){#s-2e181c74-a1c7-4c1f-a599-ac3f210943ce {
  padding-top: 0px;
padding-bottom: 10px;
}
}







#s-2e181c74-a1c7-4c1f-a599-ac3f210943ce > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2e181c74-a1c7-4c1f-a599-ac3f210943ce.shg-box.shg-c {
  justify-content: center;
}

#s-916c139c-c289-4d9c-9a7c-2afe7e53dc19 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-916c139c-c289-4d9c-9a7c-2afe7e53dc19 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-916c139c-c289-4d9c-9a7c-2afe7e53dc19 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-916c139c-c289-4d9c-9a7c-2afe7e53dc19 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-47e547a7-464e-42ee-93c2-8114c5595c3e {
  margin-top: 3%;
}
@media (max-width: 767px){#s-47e547a7-464e-42ee-93c2-8114c5595c3e {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-50a10331-9182-4080-b407-f9c487cd25df {
  padding-top: 0%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-50a10331-9182-4080-b407-f9c487cd25df > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-50a10331-9182-4080-b407-f9c487cd25df.shg-box.shg-c {
  justify-content: center;
}

@media (max-width: 767px){#s-754f56a5-9fc1-48d7-ad51-b29112a5bffa {
  margin-top: 8%;
}
}
@media (min-width: 0px) {
[id="s-754f56a5-9fc1-48d7-ad51-b29112a5bffa"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-754f56a5-9fc1-48d7-ad51-b29112a5bffa"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 992px) {
[id="s-754f56a5-9fc1-48d7-ad51-b29112a5bffa"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 1200px) {
[id="s-754f56a5-9fc1-48d7-ad51-b29112a5bffa"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 30.0px);
}

}

#s-d63b8d44-6b5e-4f04-957f-3d6c93d2ed31 {
  min-height: 50px;
}
@media (max-width: 767px){#s-d63b8d44-6b5e-4f04-957f-3d6c93d2ed31 {
  padding-top: 0px;
}
}







#s-d63b8d44-6b5e-4f04-957f-3d6c93d2ed31 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d63b8d44-6b5e-4f04-957f-3d6c93d2ed31.shg-box.shg-c {
  justify-content: center;
}

#s-40098961-0c85-42fe-982b-69c018a8ab8f {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-40098961-0c85-42fe-982b-69c018a8ab8f {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-40098961-0c85-42fe-982b-69c018a8ab8f .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-40098961-0c85-42fe-982b-69c018a8ab8f .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-fade67a9-ec82-4883-922e-81b2b35378ba {
  margin-top: 3%;
}

#s-ec6ae502-3f33-45b1-a58f-b8a805ee809b {
  min-height: 150px;
}
@media (max-width: 767px){#s-ec6ae502-3f33-45b1-a58f-b8a805ee809b {
  padding-top: 10px;
padding-bottom: 10px;
}
}







#s-ec6ae502-3f33-45b1-a58f-b8a805ee809b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ec6ae502-3f33-45b1-a58f-b8a805ee809b.shg-box.shg-c {
  justify-content: center;
}

#s-8c53668f-4c4a-45e1-86b4-49e46e28dbbd {
  border-radius: 25px;
text-align: center;
}

#s-8c53668f-4c4a-45e1-86b4-49e46e28dbbd {
  overflow: hidden;
  
  
}







  #s-8c53668f-4c4a-45e1-86b4-49e46e28dbbd img.shogun-image {
    

    
    
    
  }


#s-8c53668f-4c4a-45e1-86b4-49e46e28dbbd .shogun-image-content {
  
    justify-content: center;
  
}

#s-46c20716-ccc4-4a19-bcd2-db99e9d9548d {
  padding-top: 0%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-46c20716-ccc4-4a19-bcd2-db99e9d9548d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-46c20716-ccc4-4a19-bcd2-db99e9d9548d.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-fea264b5-35fa-48aa-bd3e-13e1ebc8878a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fea264b5-35fa-48aa-bd3e-13e1ebc8878a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 992px) {
[id="s-fea264b5-35fa-48aa-bd3e-13e1ebc8878a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 1200px) {
[id="s-fea264b5-35fa-48aa-bd3e-13e1ebc8878a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (max-width: 767px) {
  [id="s-fea264b5-35fa-48aa-bd3e-13e1ebc8878a"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-04877657-3b7b-4071-b444-383fd5e15d1b {
  border-radius: 25px;
text-align: center;
}

#s-04877657-3b7b-4071-b444-383fd5e15d1b {
  overflow: hidden;
  
  
}







  #s-04877657-3b7b-4071-b444-383fd5e15d1b img.shogun-image {
    

    
    
    
  }


#s-04877657-3b7b-4071-b444-383fd5e15d1b .shogun-image-content {
  
    justify-content: center;
  
}

#s-3a8e3954-faa5-4b65-95bc-ca22416ac05b {
  min-height: 150px;
}
@media (max-width: 767px){#s-3a8e3954-faa5-4b65-95bc-ca22416ac05b {
  padding-top: 0px;
padding-bottom: 10px;
}
}







#s-3a8e3954-faa5-4b65-95bc-ca22416ac05b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3a8e3954-faa5-4b65-95bc-ca22416ac05b.shg-box.shg-c {
  justify-content: center;
}

#s-e62e2996-6839-4137-abfb-20d46ae60f08 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-e62e2996-6839-4137-abfb-20d46ae60f08 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-e62e2996-6839-4137-abfb-20d46ae60f08 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-e62e2996-6839-4137-abfb-20d46ae60f08 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-f668ef32-8179-4dfc-9340-4f96b39c704a {
  margin-top: 3%;
}
@media (max-width: 767px){#s-f668ef32-8179-4dfc-9340-4f96b39c704a {
  padding-top: 10px;
padding-bottom: 10px;
}
}
#s-c6aefa90-79a9-42ce-a7d3-31584290dd50 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-c6aefa90-79a9-42ce-a7d3-31584290dd50 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c6aefa90-79a9-42ce-a7d3-31584290dd50 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-c6aefa90-79a9-42ce-a7d3-31584290dd50 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (max-width: 767px){#s-c6aefa90-79a9-42ce-a7d3-31584290dd50 {
  margin-top: 1em;
margin-bottom: 0em;
}
}







#s-c6aefa90-79a9-42ce-a7d3-31584290dd50 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c6aefa90-79a9-42ce-a7d3-31584290dd50.shg-box.shg-c {
  justify-content: center;
}

#s-762f5407-1efc-4490-98d2-b691cdee795a {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-762f5407-1efc-4490-98d2-b691cdee795a {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-762f5407-1efc-4490-98d2-b691cdee795a .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-762f5407-1efc-4490-98d2-b691cdee795a .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-c788d543-9e4d-4233-ac86-af24ec21b69b {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-c788d543-9e4d-4233-ac86-af24ec21b69b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c788d543-9e4d-4233-ac86-af24ec21b69b.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-46360ea8-170b-42ff-b352-004e06cf7d2b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-46360ea8-170b-42ff-b352-004e06cf7d2b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-46360ea8-170b-42ff-b352-004e06cf7d2b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-46360ea8-170b-42ff-b352-004e06cf7d2b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-4db2342f-8baf-4372-889d-f80a5ce9c1d8 {
  min-height: 50px;
}
@media (max-width: 767px){#s-4db2342f-8baf-4372-889d-f80a5ce9c1d8 {
  padding-bottom: 10px;
}
}







#s-4db2342f-8baf-4372-889d-f80a5ce9c1d8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4db2342f-8baf-4372-889d-f80a5ce9c1d8.shg-box.shg-c {
  justify-content: center;
}

#s-89922309-b02b-4bc6-a03f-c6fd3c5a98b5 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-89922309-b02b-4bc6-a03f-c6fd3c5a98b5 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-89922309-b02b-4bc6-a03f-c6fd3c5a98b5 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-89922309-b02b-4bc6-a03f-c6fd3c5a98b5 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-1cda2ee2-b09c-4118-abac-15450e6fea91 {
  margin-top: 3%;
}

#s-7dc1891c-bc87-4d4b-8f84-d42987112074 {
  min-height: 150px;
}
@media (max-width: 767px){#s-7dc1891c-bc87-4d4b-8f84-d42987112074 {
  padding-top: 10px;
padding-bottom: 10px;
}
}







#s-7dc1891c-bc87-4d4b-8f84-d42987112074 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7dc1891c-bc87-4d4b-8f84-d42987112074.shg-box.shg-c {
  justify-content: center;
}

#s-2f66078b-c558-4bc0-9fd9-c24637a7515c {
  border-radius: 25px;
text-align: center;
}

#s-2f66078b-c558-4bc0-9fd9-c24637a7515c {
  overflow: hidden;
  
  
}







  #s-2f66078b-c558-4bc0-9fd9-c24637a7515c img.shogun-image {
    

    
    
    
  }


#s-2f66078b-c558-4bc0-9fd9-c24637a7515c .shogun-image-content {
  
    justify-content: center;
  
}

#s-e84f32e9-a05d-40b0-a4ef-ea2f38df0d06 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 0%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-e84f32e9-a05d-40b0-a4ef-ea2f38df0d06 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e84f32e9-a05d-40b0-a4ef-ea2f38df0d06.shg-box.shg-c {
  justify-content: center;
}

#s-bfe38d60-ab68-4215-b839-ba8f96caac20 {
  padding-top: 0%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-bfe38d60-ab68-4215-b839-ba8f96caac20 {
  padding-bottom: 0px;
}
}







#s-bfe38d60-ab68-4215-b839-ba8f96caac20 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bfe38d60-ab68-4215-b839-ba8f96caac20.shg-box.shg-c {
  justify-content: center;
}

#s-7dab12f6-26d0-4c9a-8a37-9f306c41f7e9 {
  margin-top: 8%;
}

@media (min-width: 0px) {
[id="s-7dab12f6-26d0-4c9a-8a37-9f306c41f7e9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7dab12f6-26d0-4c9a-8a37-9f306c41f7e9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 992px) {
[id="s-7dab12f6-26d0-4c9a-8a37-9f306c41f7e9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 1200px) {
[id="s-7dab12f6-26d0-4c9a-8a37-9f306c41f7e9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (max-width: 767px) {
  [id="s-7dab12f6-26d0-4c9a-8a37-9f306c41f7e9"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-4eac4e29-9fba-4008-81ab-fb5f59385f42 {
  border-radius: 25px;
text-align: center;
}
@media (max-width: 767px){#s-4eac4e29-9fba-4008-81ab-fb5f59385f42 {
  padding-top: 0.5em;
padding-bottom: 0em;
}
}
#s-4eac4e29-9fba-4008-81ab-fb5f59385f42 {
  overflow: hidden;
  
  
}







  #s-4eac4e29-9fba-4008-81ab-fb5f59385f42 img.shogun-image {
    

    
    
    
  }


#s-4eac4e29-9fba-4008-81ab-fb5f59385f42 .shogun-image-content {
  
    justify-content: center;
  
}

#s-387c34a6-1da5-4a54-9e6c-9c6004c9de35 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
min-height: 150px;
}
@media (max-width: 767px){#s-387c34a6-1da5-4a54-9e6c-9c6004c9de35 {
  padding-top: 10px;
padding-bottom: 10px;
}
}







#s-387c34a6-1da5-4a54-9e6c-9c6004c9de35 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-387c34a6-1da5-4a54-9e6c-9c6004c9de35.shg-box.shg-c {
  justify-content: center;
}

#s-7ff19fe0-43c3-4a61-b7c4-ed4942cdfacc {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-7ff19fe0-43c3-4a61-b7c4-ed4942cdfacc {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-7ff19fe0-43c3-4a61-b7c4-ed4942cdfacc .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-7ff19fe0-43c3-4a61-b7c4-ed4942cdfacc .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-ab2d1d2f-277c-4118-a598-7902dc855b91 {
  margin-top: 3%;
}
@media (max-width: 767px){#s-ab2d1d2f-277c-4118-a598-7902dc855b91 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-5725755c-83e2-4231-b0c5-db74d5ad1ef9 {
  padding-top: 0%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-5725755c-83e2-4231-b0c5-db74d5ad1ef9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5725755c-83e2-4231-b0c5-db74d5ad1ef9.shg-box.shg-c {
  justify-content: center;
}

#s-f743be3d-c8e9-4430-8c0b-2c37b1c8707a {
  margin-top: 8%;
}

@media (min-width: 0px) {
[id="s-f743be3d-c8e9-4430-8c0b-2c37b1c8707a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f743be3d-c8e9-4430-8c0b-2c37b1c8707a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f743be3d-c8e9-4430-8c0b-2c37b1c8707a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f743be3d-c8e9-4430-8c0b-2c37b1c8707a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-406e71d4-50f6-46bd-b1e8-254401398441 {
  min-height: 50px;
}
@media (max-width: 767px){#s-406e71d4-50f6-46bd-b1e8-254401398441 {
  padding-top: 0px;
padding-bottom: 0px;
}
}







#s-406e71d4-50f6-46bd-b1e8-254401398441 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-406e71d4-50f6-46bd-b1e8-254401398441.shg-box.shg-c {
  justify-content: center;
}

#s-bd2b6a6a-5de3-48b4-b715-42b2e89e69f4 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-bd2b6a6a-5de3-48b4-b715-42b2e89e69f4 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-bd2b6a6a-5de3-48b4-b715-42b2e89e69f4 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-bd2b6a6a-5de3-48b4-b715-42b2e89e69f4 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-6f45906e-2a8e-455c-b9df-2152b5044b38 {
  margin-top: 3%;
}

#s-c9b4b8dc-43cf-4aa9-8d26-9e23189837fa {
  min-height: 150px;
}
@media (max-width: 767px){#s-c9b4b8dc-43cf-4aa9-8d26-9e23189837fa {
  padding-top: 10px;
padding-bottom: 10px;
}
}







#s-c9b4b8dc-43cf-4aa9-8d26-9e23189837fa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c9b4b8dc-43cf-4aa9-8d26-9e23189837fa.shg-box.shg-c {
  justify-content: center;
}

#s-62c79153-94c3-459a-96ce-bd5b984f8457 {
  border-radius: 25px;
text-align: center;
}

#s-62c79153-94c3-459a-96ce-bd5b984f8457 {
  overflow: hidden;
  
  
}







  #s-62c79153-94c3-459a-96ce-bd5b984f8457 img.shogun-image {
    

    
    
    
  }


#s-62c79153-94c3-459a-96ce-bd5b984f8457 .shogun-image-content {
  
    justify-content: center;
  
}

#s-5127fca2-81f0-4f90-a146-ab0b8c166b56 {
  padding-top: 0%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-5127fca2-81f0-4f90-a146-ab0b8c166b56 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5127fca2-81f0-4f90-a146-ab0b8c166b56.shg-box.shg-c {
  justify-content: center;
}

.tabletext1{
    font-size:16px;
   
    text-align: right;
    padding: 0px;
    color:black;
}
.tabletext2{
    font-size:25px;
   
    text-align: center;
    line-height: 24px;
    padding: 0px;
    color:black;
    font-weight: normal;
}
.linebold{
   font-weight: 600;
   padding-bottom:10px;
   padding-top:10px;
}
.tabletext3{
    font-size:16px;
   
    text-align: left;
    padding: 0px;
    color:black;
}
@media only screen and (max-width: 600px) {
    .tabletext1{
        font-size:13px;
    }
    .tabletext2{
        font-size:13px;
    }
    .tabletext3{
        font-size:13px;
    }
}
#s-c6da7395-cc02-481b-9ff6-72562931f08e {
  min-height: 50px;
}
@media (min-width: 1200px){#s-c6da7395-cc02-481b-9ff6-72562931f08e {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-c6da7395-cc02-481b-9ff6-72562931f08e {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-c6da7395-cc02-481b-9ff6-72562931f08e {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (max-width: 767px){#s-c6da7395-cc02-481b-9ff6-72562931f08e {
  margin-top: 1em;
margin-bottom: 0em;
}
}







#s-c6da7395-cc02-481b-9ff6-72562931f08e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c6da7395-cc02-481b-9ff6-72562931f08e.shg-box.shg-c {
  justify-content: center;
}

#s-283f858d-90ca-4930-8dd5-657978421f64 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-283f858d-90ca-4930-8dd5-657978421f64 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-283f858d-90ca-4930-8dd5-657978421f64 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-283f858d-90ca-4930-8dd5-657978421f64 .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-5b6b3484-28e2-417d-851a-2386de8c010f {
  margin-top: 0%;
margin-left: 5%;
margin-bottom: 2%;
margin-right: 5%;
min-height: 50px;
}
@media (max-width: 767px){#s-5b6b3484-28e2-417d-851a-2386de8c010f {
  margin-bottom: 0%;
}
}







#s-5b6b3484-28e2-417d-851a-2386de8c010f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5b6b3484-28e2-417d-851a-2386de8c010f.shg-box.shg-c {
  justify-content: center;
}

#s-9f8feb7e-c210-496f-865d-205b88414839 {
  margin-top: 2%;
}

@media (min-width: 0px) {
[id="s-9f8feb7e-c210-496f-865d-205b88414839"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9f8feb7e-c210-496f-865d-205b88414839"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-9f8feb7e-c210-496f-865d-205b88414839"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-9f8feb7e-c210-496f-865d-205b88414839"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-5d1a4123-b88b-48a4-ad02-1cf92ce8dde9 {
  min-height: 50px;
}
@media (max-width: 767px){#s-5d1a4123-b88b-48a4-ad02-1cf92ce8dde9 {
  padding-bottom: 10px;
}
}







#s-5d1a4123-b88b-48a4-ad02-1cf92ce8dde9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5d1a4123-b88b-48a4-ad02-1cf92ce8dde9.shg-box.shg-c {
  justify-content: flex-start;
}

#s-326743dd-1849-41f7-a65e-218b8ce16f90 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-326743dd-1849-41f7-a65e-218b8ce16f90 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-326743dd-1849-41f7-a65e-218b8ce16f90 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-326743dd-1849-41f7-a65e-218b8ce16f90 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-37eaabb6-e085-4354-a44c-17529b7f05a9 {
  margin-top: 3%;
}

#s-31ece895-64b8-40d6-8aa6-bd2adc0ed8b0 {
  min-height: 150px;
}
@media (max-width: 767px){#s-31ece895-64b8-40d6-8aa6-bd2adc0ed8b0 {
  margin-top: 0.5em;
margin-bottom: 0.5em;
padding-top: 0px;
padding-bottom: 0px;
}
}







#s-31ece895-64b8-40d6-8aa6-bd2adc0ed8b0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-31ece895-64b8-40d6-8aa6-bd2adc0ed8b0.shg-box.shg-c {
  justify-content: center;
}

#s-ee3f4c59-8021-4e08-b083-7f08edc79d40 {
  border-radius: 25px;
text-align: center;
}

#s-ee3f4c59-8021-4e08-b083-7f08edc79d40 {
  overflow: hidden;
  
  
}







  #s-ee3f4c59-8021-4e08-b083-7f08edc79d40 img.shogun-image {
    

    
    
    
  }


#s-ee3f4c59-8021-4e08-b083-7f08edc79d40 .shogun-image-content {
  
    justify-content: center;
  
}

#s-16a45879-c6da-4a3e-a80c-afa20d217aac {
  margin-top: 2%;
margin-left: 5%;
margin-bottom: 2%;
margin-right: 5%;
min-height: 50px;
}








#s-16a45879-c6da-4a3e-a80c-afa20d217aac > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-16a45879-c6da-4a3e-a80c-afa20d217aac.shg-box.shg-c {
  justify-content: center;
}

@media (max-width: 767px){#s-040bd9a4-8f8c-403a-a66d-51fdbbabdd3f {
  margin-top: 8%;
}
}
@media (min-width: 0px) {
[id="s-040bd9a4-8f8c-403a-a66d-51fdbbabdd3f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-040bd9a4-8f8c-403a-a66d-51fdbbabdd3f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-040bd9a4-8f8c-403a-a66d-51fdbbabdd3f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-040bd9a4-8f8c-403a-a66d-51fdbbabdd3f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-040bd9a4-8f8c-403a-a66d-51fdbbabdd3f"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-097f7df8-b4d0-4694-ab59-8b27c7f16ceb {
  min-height: 50px;
}








#s-097f7df8-b4d0-4694-ab59-8b27c7f16ceb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-097f7df8-b4d0-4694-ab59-8b27c7f16ceb.shg-box.shg-c {
  justify-content: center;
}

#s-e1b76ea8-ea05-4806-b4b9-3d3e588a13f0 {
  margin-left: 0%;
margin-right: 0%;
border-radius: 25px;
min-height: 0%;
max-width: 85%;
text-align: center;
}
@media (max-width: 767px){#s-e1b76ea8-ea05-4806-b4b9-3d3e588a13f0 {
  max-width: 100%;
}
}
#s-e1b76ea8-ea05-4806-b4b9-3d3e588a13f0 {
  overflow: hidden;
  
  
      max-width: 85%;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}







  #s-e1b76ea8-ea05-4806-b4b9-3d3e588a13f0 img.shogun-image {
    

    
    
    
  }


#s-e1b76ea8-ea05-4806-b4b9-3d3e588a13f0 .shogun-image-content {
  
    justify-content: center;
  
}

#s-c25d7051-0bcb-4f62-9d03-e388fb6faabf {
  min-height: 150px;
}
@media (max-width: 767px){#s-c25d7051-0bcb-4f62-9d03-e388fb6faabf {
  padding-top: 0px;
padding-bottom: 10px;
}
}







#s-c25d7051-0bcb-4f62-9d03-e388fb6faabf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c25d7051-0bcb-4f62-9d03-e388fb6faabf.shg-box.shg-c {
  justify-content: center;
}

#s-f1ff9d3b-a98f-449a-ad14-57f7831984b6 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-f1ff9d3b-a98f-449a-ad14-57f7831984b6 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-f1ff9d3b-a98f-449a-ad14-57f7831984b6 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-f1ff9d3b-a98f-449a-ad14-57f7831984b6 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-1d5dc4f6-218f-4016-b95a-b464e3e56128 {
  margin-top: 3%;
}
@media (max-width: 767px){#s-1d5dc4f6-218f-4016-b95a-b464e3e56128 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-31f26114-c9a9-4b0f-bbf2-de28b21c5301 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-31f26114-c9a9-4b0f-bbf2-de28b21c5301 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-31f26114-c9a9-4b0f-bbf2-de28b21c5301 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-31f26114-c9a9-4b0f-bbf2-de28b21c5301 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (max-width: 767px){#s-31f26114-c9a9-4b0f-bbf2-de28b21c5301 {
  margin-top: 1em;
margin-bottom: 0em;
}
}







#s-31f26114-c9a9-4b0f-bbf2-de28b21c5301 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-31f26114-c9a9-4b0f-bbf2-de28b21c5301.shg-box.shg-c {
  justify-content: center;
}

#s-340851fb-4eea-4597-b9a1-2d19244d2b16 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-340851fb-4eea-4597-b9a1-2d19244d2b16 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-340851fb-4eea-4597-b9a1-2d19244d2b16 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-340851fb-4eea-4597-b9a1-2d19244d2b16 .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-31f34595-e54d-4632-aebf-ea370da79af3 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 0%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-31f34595-e54d-4632-aebf-ea370da79af3 {
  padding-bottom: 0%;
}
}







#s-31f34595-e54d-4632-aebf-ea370da79af3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-31f34595-e54d-4632-aebf-ea370da79af3.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-84750aff-95b5-4ed7-9569-495baac29b54"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-84750aff-95b5-4ed7-9569-495baac29b54"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-84750aff-95b5-4ed7-9569-495baac29b54"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-84750aff-95b5-4ed7-9569-495baac29b54"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-67ab9ba5-6c2e-48e8-a627-998eeba45f3d {
  min-height: 50px;
}
@media (max-width: 767px){#s-67ab9ba5-6c2e-48e8-a627-998eeba45f3d {
  padding-bottom: 10px;
}
}







#s-67ab9ba5-6c2e-48e8-a627-998eeba45f3d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-67ab9ba5-6c2e-48e8-a627-998eeba45f3d.shg-box.shg-c {
  justify-content: center;
}

#s-0fc51da1-7eb1-4092-b981-403ea09ba7ac {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-0fc51da1-7eb1-4092-b981-403ea09ba7ac {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-0fc51da1-7eb1-4092-b981-403ea09ba7ac .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-0fc51da1-7eb1-4092-b981-403ea09ba7ac .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-44648c8f-ec79-4327-8dda-72b691c8e22c {
  margin-top: 3%;
}

#s-442dbdeb-e0d6-4bba-9f1e-a8490f8429f4 {
  min-height: 150px;
}
@media (max-width: 767px){#s-442dbdeb-e0d6-4bba-9f1e-a8490f8429f4 {
  margin-top: 0.5em;
margin-bottom: 0.5em;
}
}







#s-442dbdeb-e0d6-4bba-9f1e-a8490f8429f4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-442dbdeb-e0d6-4bba-9f1e-a8490f8429f4.shg-box.shg-c {
  justify-content: center;
}

#s-dfa74997-5e87-466e-ac4f-e1a9ff43e8ad {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 20px;
text-align: center;
}

#s-dfa74997-5e87-466e-ac4f-e1a9ff43e8ad {
  overflow: hidden;
  
  
}







  #s-dfa74997-5e87-466e-ac4f-e1a9ff43e8ad img.shogun-image {
    

    
    
    
  }


#s-dfa74997-5e87-466e-ac4f-e1a9ff43e8ad .shogun-image-content {
  
    justify-content: center;
  
}

#s-306a096e-a867-45e3-90b4-364b0ccfa37a {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 0%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-306a096e-a867-45e3-90b4-364b0ccfa37a {
  padding-top: 0%;
}
}







#s-306a096e-a867-45e3-90b4-364b0ccfa37a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-306a096e-a867-45e3-90b4-364b0ccfa37a.shg-box.shg-c {
  justify-content: center;
}

#s-3ea26d83-4090-4100-aafa-cffee72263a8 {
  padding-top: 2%;
padding-bottom: 2%;
}
@media (max-width: 767px){#s-3ea26d83-4090-4100-aafa-cffee72263a8 {
  margin-top: 8%;
padding-top: 0%;
padding-bottom: 0%;
}
}
@media (min-width: 0px) {
[id="s-3ea26d83-4090-4100-aafa-cffee72263a8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3ea26d83-4090-4100-aafa-cffee72263a8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3ea26d83-4090-4100-aafa-cffee72263a8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3ea26d83-4090-4100-aafa-cffee72263a8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-3ea26d83-4090-4100-aafa-cffee72263a8"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-db349601-0ba6-4cd3-9d48-2a58611a33fd {
  min-height: 50px;
}








#s-db349601-0ba6-4cd3-9d48-2a58611a33fd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-db349601-0ba6-4cd3-9d48-2a58611a33fd.shg-box.shg-c {
  justify-content: center;
}

#s-9c539638-1e3d-4063-b9ad-22a031e2756d {
  border-radius: 25px;
text-align: center;
}

#s-9c539638-1e3d-4063-b9ad-22a031e2756d {
  overflow: hidden;
  
  
}







  #s-9c539638-1e3d-4063-b9ad-22a031e2756d img.shogun-image {
    

    
    
    
  }


#s-9c539638-1e3d-4063-b9ad-22a031e2756d .shogun-image-content {
  
    justify-content: center;
  
}

#s-e0a69e74-4f41-4665-80cb-f6c9e9a9aa73 {
  min-height: 150px;
}
@media (max-width: 767px){#s-e0a69e74-4f41-4665-80cb-f6c9e9a9aa73 {
  padding-top: 0px;
padding-bottom: 10px;
}
}







#s-e0a69e74-4f41-4665-80cb-f6c9e9a9aa73 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e0a69e74-4f41-4665-80cb-f6c9e9a9aa73.shg-box.shg-c {
  justify-content: center;
}

#s-487606fc-52ed-4e4d-9ec5-68aed3f17427 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-487606fc-52ed-4e4d-9ec5-68aed3f17427 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-487606fc-52ed-4e4d-9ec5-68aed3f17427 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-487606fc-52ed-4e4d-9ec5-68aed3f17427 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-581db749-03c1-4820-b3da-351c0a0eb5a2 {
  margin-top: 3%;
}
@media (max-width: 767px){#s-581db749-03c1-4820-b3da-351c0a0eb5a2 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-30534665-add3-4ece-9d61-b69966f24012 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-30534665-add3-4ece-9d61-b69966f24012 {
  margin-bottom: 8%;
padding-bottom: 0%;
}
}







#s-30534665-add3-4ece-9d61-b69966f24012 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-30534665-add3-4ece-9d61-b69966f24012.shg-box.shg-c {
  justify-content: center;
}

@media (max-width: 767px){#s-a324abfe-7903-4f98-9872-56a0d770405e {
  margin-top: 3%;
}
}
@media (min-width: 0px) {
[id="s-a324abfe-7903-4f98-9872-56a0d770405e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a324abfe-7903-4f98-9872-56a0d770405e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a324abfe-7903-4f98-9872-56a0d770405e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a324abfe-7903-4f98-9872-56a0d770405e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-f227ab64-eeb0-44b5-9d3c-a051e06cc3f5 {
  min-height: 50px;
}
@media (max-width: 767px){#s-f227ab64-eeb0-44b5-9d3c-a051e06cc3f5 {
  padding-bottom: 10px;
}
}







#s-f227ab64-eeb0-44b5-9d3c-a051e06cc3f5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f227ab64-eeb0-44b5-9d3c-a051e06cc3f5.shg-box.shg-c {
  justify-content: center;
}

#s-b75155e4-0ad1-4b76-8871-023e4099494b {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-b75155e4-0ad1-4b76-8871-023e4099494b {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-b75155e4-0ad1-4b76-8871-023e4099494b .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-b75155e4-0ad1-4b76-8871-023e4099494b .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-8df68770-906c-4b0f-bc10-f239399026b5 {
  margin-top: 3%;
}

#s-e55ea2d2-2878-40cc-bffa-611b54082f01 {
  min-height: 150px;
}
@media (max-width: 767px){#s-e55ea2d2-2878-40cc-bffa-611b54082f01 {
  margin-top: 0.5em;
margin-bottom: 0.5em;
}
}







#s-e55ea2d2-2878-40cc-bffa-611b54082f01 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e55ea2d2-2878-40cc-bffa-611b54082f01.shg-box.shg-c {
  justify-content: center;
}

#s-5cb7f263-6ec8-4e0a-a042-cac1fca1c42f {
  border-radius: 25px;
text-align: center;
}

#s-5cb7f263-6ec8-4e0a-a042-cac1fca1c42f {
  overflow: hidden;
  
  
}







  #s-5cb7f263-6ec8-4e0a-a042-cac1fca1c42f img.shogun-image {
    

    
    
    
  }


#s-5cb7f263-6ec8-4e0a-a042-cac1fca1c42f .shogun-image-content {
  
    justify-content: center;
  
}

#s-d8555f90-b4d3-4910-8662-43f4a1b6fd8e {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-d8555f90-b4d3-4910-8662-43f4a1b6fd8e {
  margin-top: 0%;
padding-top: 0%;
padding-bottom: 0%;
}
}







#s-d8555f90-b4d3-4910-8662-43f4a1b6fd8e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d8555f90-b4d3-4910-8662-43f4a1b6fd8e.shg-box.shg-c {
  justify-content: center;
}

#s-e0481f67-08f2-43cd-8c7e-637104a31e8a {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-e0481f67-08f2-43cd-8c7e-637104a31e8a {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-e0481f67-08f2-43cd-8c7e-637104a31e8a .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-e0481f67-08f2-43cd-8c7e-637104a31e8a .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-370ede06-55f8-498d-92c5-5e255e60a3dc {
  margin-top: 3%;
}

#s-9627b4ca-517f-46d8-bfff-ea8576e98b6c {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-9627b4ca-517f-46d8-bfff-ea8576e98b6c {
  padding-top: 0%;
}
}







#s-9627b4ca-517f-46d8-bfff-ea8576e98b6c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9627b4ca-517f-46d8-bfff-ea8576e98b6c.shg-box.shg-c {
  justify-content: center;
}

@media (max-width: 767px){#s-ab699a6d-f0de-4e41-bf69-b97677bcb0d3 {
  margin-top: 8%;
}
}
@media (min-width: 0px) {
[id="s-ab699a6d-f0de-4e41-bf69-b97677bcb0d3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ab699a6d-f0de-4e41-bf69-b97677bcb0d3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ab699a6d-f0de-4e41-bf69-b97677bcb0d3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ab699a6d-f0de-4e41-bf69-b97677bcb0d3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-40e7434f-b8eb-4e5c-9bff-930c0c284f33 {
  min-height: 50px;
}
@media (max-width: 767px){#s-40e7434f-b8eb-4e5c-9bff-930c0c284f33 {
  padding-bottom: 10px;
}
}







#s-40e7434f-b8eb-4e5c-9bff-930c0c284f33 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-40e7434f-b8eb-4e5c-9bff-930c0c284f33.shg-box.shg-c {
  justify-content: center;
}

#s-3c343a3f-8cc7-44eb-bc74-b4da03d36e1d {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-3c343a3f-8cc7-44eb-bc74-b4da03d36e1d {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-3c343a3f-8cc7-44eb-bc74-b4da03d36e1d .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-3c343a3f-8cc7-44eb-bc74-b4da03d36e1d .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-c5c7fc02-a4eb-439f-8e7f-a022ce725b31 {
  margin-top: 3%;
}

#s-59fd9cc7-ebce-48f9-adf1-16f6655eb40a {
  min-height: 150px;
}
@media (max-width: 767px){#s-59fd9cc7-ebce-48f9-adf1-16f6655eb40a {
  margin-top: 0.5em;
padding-top: 0px;
padding-bottom: 0px;
}
}







#s-59fd9cc7-ebce-48f9-adf1-16f6655eb40a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-59fd9cc7-ebce-48f9-adf1-16f6655eb40a.shg-box.shg-c {
  justify-content: center;
}

#s-319e67dc-7376-44df-8c14-44596252b241 {
  margin-left: 0%;
margin-right: 0%;
border-radius: 25px;
text-align: center;
}

#s-319e67dc-7376-44df-8c14-44596252b241 {
  overflow: hidden;
  
  
}







  #s-319e67dc-7376-44df-8c14-44596252b241 img.shogun-image {
    

    
    
    
  }


#s-319e67dc-7376-44df-8c14-44596252b241 .shogun-image-content {
  
    justify-content: center;
  
}

#s-f683a99f-0e46-41ee-95b3-e1ef05c43b4f {
  min-height: 50px;
}
@media (min-width: 1200px){#s-f683a99f-0e46-41ee-95b3-e1ef05c43b4f {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f683a99f-0e46-41ee-95b3-e1ef05c43b4f {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f683a99f-0e46-41ee-95b3-e1ef05c43b4f {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (max-width: 767px){#s-f683a99f-0e46-41ee-95b3-e1ef05c43b4f {
  margin-top: 1em;
margin-bottom: 0em;
}
}







#s-f683a99f-0e46-41ee-95b3-e1ef05c43b4f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f683a99f-0e46-41ee-95b3-e1ef05c43b4f.shg-box.shg-c {
  justify-content: center;
}

#s-33489822-7675-495c-bf0f-b65d0d6ae4f9 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-33489822-7675-495c-bf0f-b65d0d6ae4f9 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-33489822-7675-495c-bf0f-b65d0d6ae4f9 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-33489822-7675-495c-bf0f-b65d0d6ae4f9 .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-1c356f01-560f-495d-9fed-6c3c442bab40 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-1c356f01-560f-495d-9fed-6c3c442bab40 {
  padding-bottom: 0px;
}
}







#s-1c356f01-560f-495d-9fed-6c3c442bab40 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1c356f01-560f-495d-9fed-6c3c442bab40.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-fbdcd4d9-3ee3-49dc-976d-6298adc42948"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fbdcd4d9-3ee3-49dc-976d-6298adc42948"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-fbdcd4d9-3ee3-49dc-976d-6298adc42948"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-fbdcd4d9-3ee3-49dc-976d-6298adc42948"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-4089f06a-148a-4064-81cc-b0b8ab62e86a {
  min-height: 50px;
}
@media (max-width: 767px){#s-4089f06a-148a-4064-81cc-b0b8ab62e86a {
  padding-bottom: 10px;
}
}







#s-4089f06a-148a-4064-81cc-b0b8ab62e86a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4089f06a-148a-4064-81cc-b0b8ab62e86a.shg-box.shg-c {
  justify-content: flex-start;
}

#s-b1c82b2a-61b9-473c-93cc-dd1515ed75a3 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-b1c82b2a-61b9-473c-93cc-dd1515ed75a3 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-b1c82b2a-61b9-473c-93cc-dd1515ed75a3 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-b1c82b2a-61b9-473c-93cc-dd1515ed75a3 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-21d4e485-863d-441a-89bc-f3c93d3854bb {
  margin-top: 3%;
margin-bottom: 0em;
}

#s-ceb9347d-e35f-43a2-b791-cdd80db2437c {
  min-height: 150px;
}
@media (max-width: 767px){#s-ceb9347d-e35f-43a2-b791-cdd80db2437c {
  margin-top: 0.5em;
}
}







#s-ceb9347d-e35f-43a2-b791-cdd80db2437c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ceb9347d-e35f-43a2-b791-cdd80db2437c.shg-box.shg-c {
  justify-content: center;
}

#s-68a6297c-d38d-4b0f-96b7-2ae3655e1db9 {
  margin-left: 6%;
margin-right: 0%;
border-radius: 25px;
text-align: center;
}
@media (max-width: 767px){#s-68a6297c-d38d-4b0f-96b7-2ae3655e1db9 {
  margin-left: 0%;
}
}
#s-68a6297c-d38d-4b0f-96b7-2ae3655e1db9 {
  overflow: hidden;
  
  
}







  #s-68a6297c-d38d-4b0f-96b7-2ae3655e1db9 img.shogun-image {
    

    
    
    
  }


#s-68a6297c-d38d-4b0f-96b7-2ae3655e1db9 .shogun-image-content {
  
    justify-content: center;
  
}

#s-02d25d7f-17ce-4534-8392-1f1a7b202d2a {
  padding-top: 0%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-02d25d7f-17ce-4534-8392-1f1a7b202d2a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-02d25d7f-17ce-4534-8392-1f1a7b202d2a.shg-box.shg-c {
  justify-content: center;
}

@media (max-width: 767px){#s-88d4c876-2336-4d16-9580-c85afeaa25aa {
  margin-top: 8%;
}
}
@media (min-width: 0px) {
[id="s-88d4c876-2336-4d16-9580-c85afeaa25aa"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-88d4c876-2336-4d16-9580-c85afeaa25aa"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-88d4c876-2336-4d16-9580-c85afeaa25aa"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-88d4c876-2336-4d16-9580-c85afeaa25aa"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-88d4c876-2336-4d16-9580-c85afeaa25aa"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-8e322419-e126-4354-ae63-4bf3e7c42c5d {
  min-height: 50px;
}








#s-8e322419-e126-4354-ae63-4bf3e7c42c5d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8e322419-e126-4354-ae63-4bf3e7c42c5d.shg-box.shg-c {
  justify-content: center;
}

#s-61a4789e-ad5f-49ba-9f29-336fb424de4d {
  border-radius: 25px;
max-width: 85%;
text-align: center;
}
@media (max-width: 767px){#s-61a4789e-ad5f-49ba-9f29-336fb424de4d {
  max-width: 100%;
}
}
#s-61a4789e-ad5f-49ba-9f29-336fb424de4d {
  overflow: hidden;
  
  
      max-width: 85%;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}







  #s-61a4789e-ad5f-49ba-9f29-336fb424de4d img.shogun-image {
    

    
    
    
  }


#s-61a4789e-ad5f-49ba-9f29-336fb424de4d .shogun-image-content {
  
    justify-content: center;
  
}

#s-1aa60c53-76cd-488f-9e9c-3d48f3b3d247 {
  min-height: 150px;
}
@media (max-width: 767px){#s-1aa60c53-76cd-488f-9e9c-3d48f3b3d247 {
  padding-bottom: 10px;
}
}







#s-1aa60c53-76cd-488f-9e9c-3d48f3b3d247 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1aa60c53-76cd-488f-9e9c-3d48f3b3d247.shg-box.shg-c {
  justify-content: center;
}

#s-49812361-b1fd-4fd4-baf4-6d9c0b812bac {
  margin-left: 0px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-49812361-b1fd-4fd4-baf4-6d9c0b812bac {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-49812361-b1fd-4fd4-baf4-6d9c0b812bac .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-49812361-b1fd-4fd4-baf4-6d9c0b812bac .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-6f384bd6-8c3c-4e60-96ad-e04cbea83cd2 {
  margin-top: 3%;
}
@media (max-width: 767px){#s-6f384bd6-8c3c-4e60-96ad-e04cbea83cd2 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-fff81711-cc63-4699-b204-955f173edb45 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-fff81711-cc63-4699-b204-955f173edb45 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-fff81711-cc63-4699-b204-955f173edb45 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-fff81711-cc63-4699-b204-955f173edb45 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (max-width: 767px){#s-fff81711-cc63-4699-b204-955f173edb45 {
  margin-top: 1em;
margin-bottom: 0em;
}
}







#s-fff81711-cc63-4699-b204-955f173edb45 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fff81711-cc63-4699-b204-955f173edb45.shg-box.shg-c {
  justify-content: center;
}

#s-2309d95f-91a0-4134-a41c-45e17ee39371 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-2309d95f-91a0-4134-a41c-45e17ee39371 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-2309d95f-91a0-4134-a41c-45e17ee39371 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-2309d95f-91a0-4134-a41c-45e17ee39371 .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-f145e07c-0644-4df0-bd7c-07ed9ff162f0 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-f145e07c-0644-4df0-bd7c-07ed9ff162f0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f145e07c-0644-4df0-bd7c-07ed9ff162f0.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-b97fdb72-6a0f-4b6c-9094-95685604af24"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b97fdb72-6a0f-4b6c-9094-95685604af24"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b97fdb72-6a0f-4b6c-9094-95685604af24"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b97fdb72-6a0f-4b6c-9094-95685604af24"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-b97fdb72-6a0f-4b6c-9094-95685604af24"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-09c89525-2358-4ce9-a1b3-4ad7e25162fd {
  min-height: 50px;
}








#s-09c89525-2358-4ce9-a1b3-4ad7e25162fd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-09c89525-2358-4ce9-a1b3-4ad7e25162fd.shg-box.shg-c {
  justify-content: center;
}

#s-3782e76d-8ad9-4a73-ba69-58ffda2c0397 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-3782e76d-8ad9-4a73-ba69-58ffda2c0397 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-1be50a33-d90f-4b5a-9944-63e7beb6302e {
  margin-top: 3%;
}

#s-bc52afc6-feaa-4921-a1e7-fa9eb4bd5abf {
  min-height: 150px;
}
@media (max-width: 767px){#s-bc52afc6-feaa-4921-a1e7-fa9eb4bd5abf {
  padding-top: 10px;
padding-bottom: 10px;
}
}







#s-bc52afc6-feaa-4921-a1e7-fa9eb4bd5abf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bc52afc6-feaa-4921-a1e7-fa9eb4bd5abf.shg-box.shg-c {
  justify-content: center;
}

#s-1708822f-0f44-4408-a957-5123b820c1ca {
  border-radius: 25px;
text-align: center;
}

#s-1708822f-0f44-4408-a957-5123b820c1ca {
  overflow: hidden;
  
  
}







  #s-1708822f-0f44-4408-a957-5123b820c1ca img.shogun-image {
    

    
    
    
  }


#s-1708822f-0f44-4408-a957-5123b820c1ca .shogun-image-content {
  
    justify-content: center;
  
}

#s-4e068edc-cc6d-48c4-8b6f-f5cc86c1ba23 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-4e068edc-cc6d-48c4-8b6f-f5cc86c1ba23 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4e068edc-cc6d-48c4-8b6f-f5cc86c1ba23.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-40fd455f-ce75-4a47-82b0-b1c6b7b950b1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-40fd455f-ce75-4a47-82b0-b1c6b7b950b1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-40fd455f-ce75-4a47-82b0-b1c6b7b950b1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-40fd455f-ce75-4a47-82b0-b1c6b7b950b1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-40fd455f-ce75-4a47-82b0-b1c6b7b950b1"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-7e5fecb2-8d96-4bde-b04d-a7514c18f16e {
  min-height: 50px;
}








#s-7e5fecb2-8d96-4bde-b04d-a7514c18f16e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7e5fecb2-8d96-4bde-b04d-a7514c18f16e.shg-box.shg-c {
  justify-content: center;
}

#s-ecc44ed4-a537-4f97-96e6-e90e87237bc0 {
  text-align: center;
}

#s-ecc44ed4-a537-4f97-96e6-e90e87237bc0 {
  overflow: hidden;
  
  
}







  #s-ecc44ed4-a537-4f97-96e6-e90e87237bc0 img.shogun-image {
    

    
    
    
  }


#s-ecc44ed4-a537-4f97-96e6-e90e87237bc0 .shogun-image-content {
  
    justify-content: center;
  
}

#s-ceeb9fe9-2dc3-465d-8218-02809a728800 {
  min-height: 150px;
}
@media (max-width: 767px){#s-ceeb9fe9-2dc3-465d-8218-02809a728800 {
  padding-top: 10px;
padding-bottom: 10px;
}
}







#s-ceeb9fe9-2dc3-465d-8218-02809a728800 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ceeb9fe9-2dc3-465d-8218-02809a728800.shg-box.shg-c {
  justify-content: center;
}

#s-6f70e1e1-a24a-442e-990c-cf4b42697b09 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-6f70e1e1-a24a-442e-990c-cf4b42697b09 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-6f70e1e1-a24a-442e-990c-cf4b42697b09 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-6f70e1e1-a24a-442e-990c-cf4b42697b09 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-5fd51b04-175b-41e4-b2e5-baf581190c78 {
  margin-top: 3%;
}
@media (max-width: 767px){#s-5fd51b04-175b-41e4-b2e5-baf581190c78 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-dcdd8143-b26d-4734-b221-023cb9fe118f {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-dcdd8143-b26d-4734-b221-023cb9fe118f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-dcdd8143-b26d-4734-b221-023cb9fe118f.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-11827efc-0cbb-4dae-b17e-018c6acd3897"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-11827efc-0cbb-4dae-b17e-018c6acd3897"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-11827efc-0cbb-4dae-b17e-018c6acd3897"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-11827efc-0cbb-4dae-b17e-018c6acd3897"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-d8483c7f-f550-441b-b682-4df3fd75e298 {
  min-height: 50px;
}
@media (max-width: 767px){#s-d8483c7f-f550-441b-b682-4df3fd75e298 {
  padding-bottom: 10px;
}
}







#s-d8483c7f-f550-441b-b682-4df3fd75e298 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d8483c7f-f550-441b-b682-4df3fd75e298.shg-box.shg-c {
  justify-content: center;
}

#s-3881af83-2965-43ae-a339-90b70cb3eb4a {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-3881af83-2965-43ae-a339-90b70cb3eb4a {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-3881af83-2965-43ae-a339-90b70cb3eb4a .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-3881af83-2965-43ae-a339-90b70cb3eb4a .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-40963838-35b9-445b-a484-c333ef70c861 {
  margin-top: 3%;
}

#s-af692e9a-80cf-4e31-ac9d-1417cc26cbef {
  min-height: 150px;
}
@media (max-width: 767px){#s-af692e9a-80cf-4e31-ac9d-1417cc26cbef {
  padding-top: 0.5em;
padding-bottom: 0.5em;
}
}







#s-af692e9a-80cf-4e31-ac9d-1417cc26cbef > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-af692e9a-80cf-4e31-ac9d-1417cc26cbef.shg-box.shg-c {
  justify-content: center;
}

#s-1dd3dc60-6bbc-49a6-ae3e-649741e44cd4 {
  border-radius: 25px;
text-align: center;
}

#s-1dd3dc60-6bbc-49a6-ae3e-649741e44cd4 {
  overflow: hidden;
  
  
}







  #s-1dd3dc60-6bbc-49a6-ae3e-649741e44cd4 img.shogun-image {
    

    
    
    
  }


#s-1dd3dc60-6bbc-49a6-ae3e-649741e44cd4 .shogun-image-content {
  
    justify-content: center;
  
}

#s-28ddb814-b481-4c99-b1c9-fff08d3be7b6 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-28ddb814-b481-4c99-b1c9-fff08d3be7b6 {
  padding-top: 5%;
}
}







#s-28ddb814-b481-4c99-b1c9-fff08d3be7b6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-28ddb814-b481-4c99-b1c9-fff08d3be7b6.shg-box.shg-c {
  justify-content: center;
}

#s-6861f9dd-62e7-4eb6-a9a0-5e25482119dd {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-6861f9dd-62e7-4eb6-a9a0-5e25482119dd {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-6861f9dd-62e7-4eb6-a9a0-5e25482119dd .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-6861f9dd-62e7-4eb6-a9a0-5e25482119dd .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-82c7e934-83d7-4970-8d82-bfff4c4badc5 {
  padding-top: 3%;
padding-left: 5%;
padding-bottom: 3%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(53, 57, 72, 1);
}
@media (min-width: 1200px){#s-82c7e934-83d7-4970-8d82-bfff4c4badc5 {
  margin-top: 0px;
}
}@media (max-width: 767px){#s-82c7e934-83d7-4970-8d82-bfff4c4badc5 {
  padding-left: 3%;
padding-bottom: 3%;
padding-right: 3%;
}
}







#s-82c7e934-83d7-4970-8d82-bfff4c4badc5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-82c7e934-83d7-4970-8d82-bfff4c4badc5.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-bf23a6b9-4132-47b6-876c-f4f6e4402782"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 768px) {
[id="s-bf23a6b9-4132-47b6-876c-f4f6e4402782"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 992px) {
[id="s-bf23a6b9-4132-47b6-876c-f4f6e4402782"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

@media (min-width: 1200px) {
[id="s-bf23a6b9-4132-47b6-876c-f4f6e4402782"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 13.333333333333334px);
}

}

#s-04aa878b-2e0d-4353-91b6-1e26345aee30 {
  min-height: 50px;
}








#s-04aa878b-2e0d-4353-91b6-1e26345aee30 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-04aa878b-2e0d-4353-91b6-1e26345aee30.shg-box.shg-c {
  justify-content: center;
}

#s-fb36bb5d-893d-4255-a0f4-0fb5f37fe2db {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-fb36bb5d-893d-4255-a0f4-0fb5f37fe2db {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-fb36bb5d-893d-4255-a0f4-0fb5f37fe2db .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-fb36bb5d-893d-4255-a0f4-0fb5f37fe2db .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-08fa6723-b719-4ae7-b96c-1046e18233c2 {
  min-height: 50px;
}








#s-08fa6723-b719-4ae7-b96c-1046e18233c2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-08fa6723-b719-4ae7-b96c-1046e18233c2.shg-box.shg-c {
  justify-content: center;
}

#s-26e8f261-715c-4e00-afad-eb61e0917b2d {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-26e8f261-715c-4e00-afad-eb61e0917b2d {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-26e8f261-715c-4e00-afad-eb61e0917b2d .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-26e8f261-715c-4e00-afad-eb61e0917b2d .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-e1c676dd-b34b-4d72-81b9-703ad17f3eac {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-e1c676dd-b34b-4d72-81b9-703ad17f3eac {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-e1c676dd-b34b-4d72-81b9-703ad17f3eac .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-e1c676dd-b34b-4d72-81b9-703ad17f3eac .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-240d0535-d60c-482d-8895-84489b75a1d8 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-240d0535-d60c-482d-8895-84489b75a1d8 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-240d0535-d60c-482d-8895-84489b75a1d8 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-240d0535-d60c-482d-8895-84489b75a1d8 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (max-width: 767px){#s-240d0535-d60c-482d-8895-84489b75a1d8 {
  margin-top: 1em;
margin-bottom: 0em;
}
}







#s-240d0535-d60c-482d-8895-84489b75a1d8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-240d0535-d60c-482d-8895-84489b75a1d8.shg-box.shg-c {
  justify-content: center;
}

#s-86e483a1-abe0-4cb3-914b-8f2a2532e0b5 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-86e483a1-abe0-4cb3-914b-8f2a2532e0b5 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-86e483a1-abe0-4cb3-914b-8f2a2532e0b5 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-86e483a1-abe0-4cb3-914b-8f2a2532e0b5 .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-56c1302e-a3a0-4722-8477-1229efc5bad1 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-56c1302e-a3a0-4722-8477-1229efc5bad1 {
  margin-bottom: 8%;
padding-bottom: 0%;
}
}







#s-56c1302e-a3a0-4722-8477-1229efc5bad1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-56c1302e-a3a0-4722-8477-1229efc5bad1.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-72ce1e50-223f-4a90-87b5-ce017c3c06cc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-72ce1e50-223f-4a90-87b5-ce017c3c06cc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 992px) {
[id="s-72ce1e50-223f-4a90-87b5-ce017c3c06cc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 1200px) {
[id="s-72ce1e50-223f-4a90-87b5-ce017c3c06cc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 30.0px);
}

}

#s-c0893051-d8a7-4641-93fd-de22ad6d164f {
  min-height: 50px;
}
@media (max-width: 767px){#s-c0893051-d8a7-4641-93fd-de22ad6d164f {
  padding-bottom: 10px;
}
}







#s-c0893051-d8a7-4641-93fd-de22ad6d164f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c0893051-d8a7-4641-93fd-de22ad6d164f.shg-box.shg-c {
  justify-content: flex-start;
}

#s-ce70b6cd-11c1-40a0-bda5-6f24112562da {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-ce70b6cd-11c1-40a0-bda5-6f24112562da {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-ce70b6cd-11c1-40a0-bda5-6f24112562da .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-ce70b6cd-11c1-40a0-bda5-6f24112562da .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-29388d9b-fe05-4780-9b65-55e8130a7ef5 {
  margin-top: 3%;
}

#s-cda8d9ea-cfcd-4bb6-a104-534676196355 {
  min-height: 150px;
}
@media (max-width: 767px){#s-cda8d9ea-cfcd-4bb6-a104-534676196355 {
  padding-top: 10px;
padding-bottom: 0px;
}
}







#s-cda8d9ea-cfcd-4bb6-a104-534676196355 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cda8d9ea-cfcd-4bb6-a104-534676196355.shg-box.shg-c {
  justify-content: center;
}

#s-762bc2ff-3bcf-42ab-bbe6-30522fb33f38 {
  border-radius: 25px;
text-align: center;
}

#s-762bc2ff-3bcf-42ab-bbe6-30522fb33f38 {
  overflow: hidden;
  
  
}







  #s-762bc2ff-3bcf-42ab-bbe6-30522fb33f38 img.shogun-image {
    

    
    
    
  }


#s-762bc2ff-3bcf-42ab-bbe6-30522fb33f38 .shogun-image-content {
  
    justify-content: center;
  
}

#s-7906e82d-43e2-44ec-9188-3c912a338779 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-7906e82d-43e2-44ec-9188-3c912a338779 {
  padding-top: 0%;
padding-bottom: 0%;
}
}







#s-7906e82d-43e2-44ec-9188-3c912a338779 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7906e82d-43e2-44ec-9188-3c912a338779.shg-box.shg-c {
  justify-content: center;
}

#s-6bb5f035-4ae8-445f-bc2f-7068ed76e0e4 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-6bb5f035-4ae8-445f-bc2f-7068ed76e0e4 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-e41af634-97d6-4d35-98cd-7a869fdc96f0 {
  margin-top: 3%;
}

#s-c7836150-7421-43fb-bef0-eef27409aebd {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-c7836150-7421-43fb-bef0-eef27409aebd {
  padding-top: 0%;
}
}







#s-c7836150-7421-43fb-bef0-eef27409aebd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c7836150-7421-43fb-bef0-eef27409aebd.shg-box.shg-c {
  justify-content: center;
}

@media (max-width: 767px){#s-7665a2c0-385d-496c-92ef-f7b3b7e7cb5d {
  margin-top: 8%;
}
}
@media (min-width: 0px) {
[id="s-7665a2c0-385d-496c-92ef-f7b3b7e7cb5d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7665a2c0-385d-496c-92ef-f7b3b7e7cb5d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 992px) {
[id="s-7665a2c0-385d-496c-92ef-f7b3b7e7cb5d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 1200px) {
[id="s-7665a2c0-385d-496c-92ef-f7b3b7e7cb5d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (max-width: 767px) {
  [id="s-7665a2c0-385d-496c-92ef-f7b3b7e7cb5d"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-4f5b1ca2-3bc8-45b7-b0f1-c51e404099c2 {
  min-height: 50px;
}








#s-4f5b1ca2-3bc8-45b7-b0f1-c51e404099c2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4f5b1ca2-3bc8-45b7-b0f1-c51e404099c2.shg-box.shg-c {
  justify-content: center;
}

#s-fe9fb7e7-a80d-4724-96eb-4fb8a1658703 {
  border-radius: 25px;
text-align: center;
}

#s-fe9fb7e7-a80d-4724-96eb-4fb8a1658703 {
  overflow: hidden;
  
  
}







  #s-fe9fb7e7-a80d-4724-96eb-4fb8a1658703 img.shogun-image {
    

    
    
    
  }


#s-fe9fb7e7-a80d-4724-96eb-4fb8a1658703 .shogun-image-content {
  
    justify-content: center;
  
}

#s-ce7b8d40-0fb4-4531-9ebd-2267146319f0 {
  min-height: 150px;
}
@media (max-width: 767px){#s-ce7b8d40-0fb4-4531-9ebd-2267146319f0 {
  padding-bottom: 10px;
}
}







#s-ce7b8d40-0fb4-4531-9ebd-2267146319f0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ce7b8d40-0fb4-4531-9ebd-2267146319f0.shg-box.shg-c {
  justify-content: center;
}

#s-97c9bfad-3555-435d-8b47-2d612a754d13 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-97c9bfad-3555-435d-8b47-2d612a754d13 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-a4ee49c2-dfdc-417b-8bb8-c3fa97146665 {
  margin-top: 3%;
}
@media (max-width: 767px){#s-a4ee49c2-dfdc-417b-8bb8-c3fa97146665 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-b3438bbe-ee98-4cbd-b0a9-f87561850b92 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-b3438bbe-ee98-4cbd-b0a9-f87561850b92 {
  padding-top: 0%;
padding-bottom: 8%;
}
}







#s-b3438bbe-ee98-4cbd-b0a9-f87561850b92 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b3438bbe-ee98-4cbd-b0a9-f87561850b92.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-9cbfdc98-1a4b-40a2-bb99-d53b8ffd2270"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9cbfdc98-1a4b-40a2-bb99-d53b8ffd2270"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 992px) {
[id="s-9cbfdc98-1a4b-40a2-bb99-d53b8ffd2270"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 1200px) {
[id="s-9cbfdc98-1a4b-40a2-bb99-d53b8ffd2270"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 30.0px);
}

}

#s-8b7d8760-5d8e-4b61-b887-ba78d092fe88 {
  min-height: 50px;
}
@media (max-width: 767px){#s-8b7d8760-5d8e-4b61-b887-ba78d092fe88 {
  padding-bottom: 10px;
}
}







#s-8b7d8760-5d8e-4b61-b887-ba78d092fe88 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8b7d8760-5d8e-4b61-b887-ba78d092fe88.shg-box.shg-c {
  justify-content: center;
}

#s-0695fe99-bc76-45d9-a4c1-c082b6770cf4 {
  margin-left: 0px;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-0695fe99-bc76-45d9-a4c1-c082b6770cf4 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-c9d9119f-2614-4589-905d-a398b3beb85f {
  margin-top: 3%;
}

#s-a381a18d-77fd-4e1d-9d6c-250e58baf152 {
  min-height: 150px;
}
@media (max-width: 767px){#s-a381a18d-77fd-4e1d-9d6c-250e58baf152 {
  padding-top: 0.5em;
padding-bottom: 0.5em;
}
}







#s-a381a18d-77fd-4e1d-9d6c-250e58baf152 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a381a18d-77fd-4e1d-9d6c-250e58baf152.shg-box.shg-c {
  justify-content: center;
}

#s-7dfcf094-c1a1-40a5-bfc0-47f6c040f50d {
  border-radius: 25px;
text-align: center;
}

#s-7dfcf094-c1a1-40a5-bfc0-47f6c040f50d {
  overflow: hidden;
  
  
}







  #s-7dfcf094-c1a1-40a5-bfc0-47f6c040f50d img.shogun-image {
    

    
    
    
  }


#s-7dfcf094-c1a1-40a5-bfc0-47f6c040f50d .shogun-image-content {
  
    justify-content: center;
  
}

#s-5cb4160e-f047-4254-aa62-96835329e4e1 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-5cb4160e-f047-4254-aa62-96835329e4e1 {
  padding-top: 0%;
}
}







#s-5cb4160e-f047-4254-aa62-96835329e4e1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5cb4160e-f047-4254-aa62-96835329e4e1.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-f8a798b8-c6ee-4d5f-a1c1-664a24e547d5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f8a798b8-c6ee-4d5f-a1c1-664a24e547d5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 992px) {
[id="s-f8a798b8-c6ee-4d5f-a1c1-664a24e547d5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 1200px) {
[id="s-f8a798b8-c6ee-4d5f-a1c1-664a24e547d5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (max-width: 767px) {
  [id="s-f8a798b8-c6ee-4d5f-a1c1-664a24e547d5"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-5ce4edad-85f2-4c2b-a413-5b4cac56cc36 {
  min-height: 50px;
}








#s-5ce4edad-85f2-4c2b-a413-5b4cac56cc36 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5ce4edad-85f2-4c2b-a413-5b4cac56cc36.shg-box.shg-c {
  justify-content: center;
}

#s-186060a8-0875-40a7-b6f8-57f6a6413e4e {
  border-radius: 25px;
text-align: center;
}

#s-186060a8-0875-40a7-b6f8-57f6a6413e4e {
  overflow: hidden;
  
  
}







  #s-186060a8-0875-40a7-b6f8-57f6a6413e4e img.shogun-image {
    

    
    
    
  }


#s-186060a8-0875-40a7-b6f8-57f6a6413e4e .shogun-image-content {
  
    justify-content: center;
  
}

#s-ee0df6fe-a2f6-441b-94df-b769e72070fd {
  min-height: 150px;
}
@media (max-width: 767px){#s-ee0df6fe-a2f6-441b-94df-b769e72070fd {
  padding-top: 0px;
padding-bottom: 10px;
}
}







#s-ee0df6fe-a2f6-441b-94df-b769e72070fd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ee0df6fe-a2f6-441b-94df-b769e72070fd.shg-box.shg-c {
  justify-content: center;
}

#s-04fed8ad-c63f-4821-8151-cfd543f79aea {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-04fed8ad-c63f-4821-8151-cfd543f79aea .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-21f7a564-774e-4aaf-90ea-c6dbfdb512d3 {
  margin-top: 3%;
}
@media (max-width: 767px){#s-21f7a564-774e-4aaf-90ea-c6dbfdb512d3 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-0192c084-d894-436d-a131-fcb8ed7baf81 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-0192c084-d894-436d-a131-fcb8ed7baf81 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0192c084-d894-436d-a131-fcb8ed7baf81 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0192c084-d894-436d-a131-fcb8ed7baf81 {
  margin-top: 1em;
margin-bottom: 0em;
}
}@media (max-width: 767px){#s-0192c084-d894-436d-a131-fcb8ed7baf81 {
  margin-top: 1em;
margin-bottom: 0em;
}
}







#s-0192c084-d894-436d-a131-fcb8ed7baf81 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0192c084-d894-436d-a131-fcb8ed7baf81.shg-box.shg-c {
  justify-content: center;
}

#s-51b0c2c2-073a-48a4-adfd-9031790cfd1b {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-51b0c2c2-073a-48a4-adfd-9031790cfd1b {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-51b0c2c2-073a-48a4-adfd-9031790cfd1b .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-51b0c2c2-073a-48a4-adfd-9031790cfd1b .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-1aa3a650-d947-4247-bd06-51b9ee3793ad {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-1aa3a650-d947-4247-bd06-51b9ee3793ad {
  padding-bottom: 0%;
}
}







#s-1aa3a650-d947-4247-bd06-51b9ee3793ad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1aa3a650-d947-4247-bd06-51b9ee3793ad.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-96980447-8738-4fc5-bf92-af52bde1241e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-96980447-8738-4fc5-bf92-af52bde1241e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-96980447-8738-4fc5-bf92-af52bde1241e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-96980447-8738-4fc5-bf92-af52bde1241e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-83709ff8-18a2-4fbd-b944-41d9ed3cd448 {
  min-height: 50px;
}
@media (max-width: 767px){#s-83709ff8-18a2-4fbd-b944-41d9ed3cd448 {
  padding-bottom: 10px;
}
}







#s-83709ff8-18a2-4fbd-b944-41d9ed3cd448 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-83709ff8-18a2-4fbd-b944-41d9ed3cd448.shg-box.shg-c {
  justify-content: center;
}

#s-2509abe3-e109-43a8-9347-6f61b7024d82 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-2509abe3-e109-43a8-9347-6f61b7024d82 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-2509abe3-e109-43a8-9347-6f61b7024d82 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-2509abe3-e109-43a8-9347-6f61b7024d82 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-268487ef-91c0-40b4-b818-09dd82c2c64b {
  margin-top: 3%;
padding-bottom: 0%;
}

#s-aa3a1cc3-d60c-4bcd-9299-e0b21b0c8401 {
  min-height: 150px;
}
@media (max-width: 767px){#s-aa3a1cc3-d60c-4bcd-9299-e0b21b0c8401 {
  padding-top: 0.5em;
padding-bottom: 0em;
}
}







#s-aa3a1cc3-d60c-4bcd-9299-e0b21b0c8401 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-aa3a1cc3-d60c-4bcd-9299-e0b21b0c8401.shg-box.shg-c {
  justify-content: center;
}

#s-10781e74-a0cc-4f90-a8e1-e91705b89fad {
  border-radius: 25px;
text-align: center;
}

#s-10781e74-a0cc-4f90-a8e1-e91705b89fad {
  overflow: hidden;
  
  
}







  #s-10781e74-a0cc-4f90-a8e1-e91705b89fad img.shogun-image {
    

    
    
    
  }


#s-10781e74-a0cc-4f90-a8e1-e91705b89fad .shogun-image-content {
  
    justify-content: center;
  
}

#s-6cf49d15-f020-457e-b6c6-c6f2b25ee8a9 {
  padding-top: 0%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-6cf49d15-f020-457e-b6c6-c6f2b25ee8a9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6cf49d15-f020-457e-b6c6-c6f2b25ee8a9.shg-box.shg-c {
  justify-content: center;
}

@media (max-width: 767px){#s-1dec4b7c-091c-49a3-963e-7236c5d7694a {
  margin-top: 8%;
margin-bottom: 0px;
}
}
@media (min-width: 0px) {
[id="s-1dec4b7c-091c-49a3-963e-7236c5d7694a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1dec4b7c-091c-49a3-963e-7236c5d7694a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-1dec4b7c-091c-49a3-963e-7236c5d7694a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-1dec4b7c-091c-49a3-963e-7236c5d7694a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-1dec4b7c-091c-49a3-963e-7236c5d7694a"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-fe45a741-db1e-4f16-a93c-34542f1d3376 {
  margin-left: 10%;
margin-right: 10%;
border-radius: 25px;
max-width: 80%;
text-align: center;
}
@media (max-width: 767px){#s-fe45a741-db1e-4f16-a93c-34542f1d3376 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 0.5em;
padding-bottom: 0em;
max-width: 100%;
}
}
#s-fe45a741-db1e-4f16-a93c-34542f1d3376 {
  overflow: hidden;
  
  
      max-width: 80%;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}







  #s-fe45a741-db1e-4f16-a93c-34542f1d3376 img.shogun-image {
    

    
    
    
  }


#s-fe45a741-db1e-4f16-a93c-34542f1d3376 .shogun-image-content {
  
    justify-content: center;
  
}

#s-83d8967a-126a-4776-a52b-bc2cf3455e5b {
  padding-top: 0px;
min-height: 150px;
}
@media (max-width: 767px){#s-83d8967a-126a-4776-a52b-bc2cf3455e5b {
  padding-top: 0px;
padding-bottom: 10px;
}
}







#s-83d8967a-126a-4776-a52b-bc2cf3455e5b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-83d8967a-126a-4776-a52b-bc2cf3455e5b.shg-box.shg-c {
  justify-content: center;
}

#s-1b1d93f2-e654-441b-9b47-c9756f5d7576 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-1b1d93f2-e654-441b-9b47-c9756f5d7576 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-1b1d93f2-e654-441b-9b47-c9756f5d7576 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-1b1d93f2-e654-441b-9b47-c9756f5d7576 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-33089332-4e88-443c-9164-5062a2bcdaa2 {
  margin-top: 3%;
}
@media (max-width: 767px){#s-33089332-4e88-443c-9164-5062a2bcdaa2 {
  padding-top: 0px;
padding-bottom: 0px;
}
}
#s-5e9ccdb1-f073-48f1-96b5-b727f50dc4b3 {
  padding-top: 0%;
padding-left: 5%;
padding-bottom: 0%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-5e9ccdb1-f073-48f1-96b5-b727f50dc4b3 {
  padding-top: 10%;
}
}







#s-5e9ccdb1-f073-48f1-96b5-b727f50dc4b3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5e9ccdb1-f073-48f1-96b5-b727f50dc4b3.shg-box.shg-c {
  justify-content: center;
}

#s-d19b86f2-62a6-4d9a-8739-64271af2c0bf {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-d19b86f2-62a6-4d9a-8739-64271af2c0bf {
  margin-top: 0%;
padding-top: 0%;
}
}







#s-d19b86f2-62a6-4d9a-8739-64271af2c0bf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d19b86f2-62a6-4d9a-8739-64271af2c0bf.shg-box.shg-c {
  justify-content: center;
}

@media (max-width: 767px){#s-60462564-a0d7-448f-832e-83d39ea461b5 {
  margin-top: 8%;
}
}
@media (min-width: 0px) {
[id="s-60462564-a0d7-448f-832e-83d39ea461b5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-60462564-a0d7-448f-832e-83d39ea461b5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-60462564-a0d7-448f-832e-83d39ea461b5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-60462564-a0d7-448f-832e-83d39ea461b5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-82be9466-628f-46ad-a45f-14b5288a80ef {
  min-height: 50px;
}
@media (max-width: 767px){#s-82be9466-628f-46ad-a45f-14b5288a80ef {
  padding-bottom: 10px;
}
}







#s-82be9466-628f-46ad-a45f-14b5288a80ef > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-82be9466-628f-46ad-a45f-14b5288a80ef.shg-box.shg-c {
  justify-content: center;
}

#s-0ee73e23-b5f6-4fab-a5df-054dced58fd6 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-0ee73e23-b5f6-4fab-a5df-054dced58fd6 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-0ee73e23-b5f6-4fab-a5df-054dced58fd6 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-0ee73e23-b5f6-4fab-a5df-054dced58fd6 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-1580d17f-8ac7-4cec-a221-0057a1328de2 {
  margin-top: 3%;
}

#s-3a4f2521-9078-486d-8930-36f5c2f82c59 {
  min-height: 150px;
}
@media (max-width: 767px){#s-3a4f2521-9078-486d-8930-36f5c2f82c59 {
  padding-top: 0.5em;
padding-bottom: 0.5em;
}
}







#s-3a4f2521-9078-486d-8930-36f5c2f82c59 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3a4f2521-9078-486d-8930-36f5c2f82c59.shg-box.shg-c {
  justify-content: center;
}

#s-1bcc6e61-3b7e-4c77-b7e2-39a4d70036c3 {
  margin-left: 10%;
margin-right: 10%;
border-radius: 25px;
max-width: 80%;
text-align: center;
}
@media (max-width: 767px){#s-1bcc6e61-3b7e-4c77-b7e2-39a4d70036c3 {
  margin-left: 0%;
margin-right: 0%;
max-width: 100%;
}
}
#s-1bcc6e61-3b7e-4c77-b7e2-39a4d70036c3 {
  overflow: hidden;
  
  
      max-width: 80%;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}







  #s-1bcc6e61-3b7e-4c77-b7e2-39a4d70036c3 img.shogun-image {
    

    
    
    
  }


#s-1bcc6e61-3b7e-4c77-b7e2-39a4d70036c3 .shogun-image-content {
  
    justify-content: center;
  
}

#s-9e54c340-9d9d-474e-90e6-b5b367abec47 {
  padding-top: 2%;
padding-left: 5%;
padding-bottom: 2%;
padding-right: 5%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-9e54c340-9d9d-474e-90e6-b5b367abec47 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9e54c340-9d9d-474e-90e6-b5b367abec47.shg-box.shg-c {
  justify-content: center;
}

#s-089a560f-4ee7-4ace-b201-42606776b415 {
  text-align: left;
}

#s-d8ece923-aede-4d92-9db6-e28db3dca69b {
  padding-top: 0px;
padding-bottom: 0px;
min-height: 50px;
}








#s-d8ece923-aede-4d92-9db6-e28db3dca69b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d8ece923-aede-4d92-9db6-e28db3dca69b.shg-box.shg-c {
  justify-content: center;
}

#s-ec563dfb-ab0c-4bed-b972-8049790e7795 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-ec563dfb-ab0c-4bed-b972-8049790e7795 {
  padding-top: 0px;
padding-bottom: 5em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ec563dfb-ab0c-4bed-b972-8049790e7795 {
  padding-bottom: 5em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-ec563dfb-ab0c-4bed-b972-8049790e7795 {
  padding-bottom: 5em;
}
}@media (max-width: 767px){#s-ec563dfb-ab0c-4bed-b972-8049790e7795 {
  padding-bottom: 0em;
}
}







#s-ec563dfb-ab0c-4bed-b972-8049790e7795 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ec563dfb-ab0c-4bed-b972-8049790e7795.shg-box.shg-c {
  justify-content: center;
}

#s-5ad145e3-17a6-4496-872e-20907c7860ff {
  background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-5ad145e3-17a6-4496-872e-20907c7860ff"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5ad145e3-17a6-4496-872e-20907c7860ff"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5ad145e3-17a6-4496-872e-20907c7860ff"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5ad145e3-17a6-4496-872e-20907c7860ff"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-43b54f1c-b509-463f-a6ab-1ac0fca89df3 {
  text-align: left;
}
@media (min-width: 1200px){#s-43b54f1c-b509-463f-a6ab-1ac0fca89df3 {
  display: none;
}
#s-43b54f1c-b509-463f-a6ab-1ac0fca89df3, #wrap-s-43b54f1c-b509-463f-a6ab-1ac0fca89df3, #wrap-content-s-43b54f1c-b509-463f-a6ab-1ac0fca89df3 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-43b54f1c-b509-463f-a6ab-1ac0fca89df3 {
  display: none;
}
#s-43b54f1c-b509-463f-a6ab-1ac0fca89df3, #wrap-s-43b54f1c-b509-463f-a6ab-1ac0fca89df3, #wrap-content-s-43b54f1c-b509-463f-a6ab-1ac0fca89df3 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-43b54f1c-b509-463f-a6ab-1ac0fca89df3 {
  display: none;
}
#s-43b54f1c-b509-463f-a6ab-1ac0fca89df3, #wrap-s-43b54f1c-b509-463f-a6ab-1ac0fca89df3, #wrap-content-s-43b54f1c-b509-463f-a6ab-1ac0fca89df3 { display: none !important; }}@media (max-width: 767px){#s-43b54f1c-b509-463f-a6ab-1ac0fca89df3 {
  margin-top: 0px;
}
}
#s-43b54f1c-b509-463f-a6ab-1ac0fca89df3 {
  overflow: hidden;
  
  
}







  #s-43b54f1c-b509-463f-a6ab-1ac0fca89df3 img.shogun-image {
    

    
    
    
  }


#s-43b54f1c-b509-463f-a6ab-1ac0fca89df3 .shogun-image-content {
  
    justify-content: center;
  
}

#s-69eeaeda-11b3-434a-899b-88e7c7563110 {
  max-width: 1260px;
aspect-ratio: 1260/840;
text-align: left;
}
@media (min-width: 1200px){#s-69eeaeda-11b3-434a-899b-88e7c7563110 {
  margin-top: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-69eeaeda-11b3-434a-899b-88e7c7563110 {
  margin-top: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-69eeaeda-11b3-434a-899b-88e7c7563110 {
  margin-top: 0px;
}
}@media (max-width: 767px){#s-69eeaeda-11b3-434a-899b-88e7c7563110 {
  display: none;
}
#s-69eeaeda-11b3-434a-899b-88e7c7563110, #wrap-s-69eeaeda-11b3-434a-899b-88e7c7563110, #wrap-content-s-69eeaeda-11b3-434a-899b-88e7c7563110 { display: none !important; }}
#s-69eeaeda-11b3-434a-899b-88e7c7563110 {
  overflow: hidden;
  
  
      max-width: 1260px;
      
      
      
        margin-left: 0;
        margin-right: auto;
      
  
}





  #s-69eeaeda-11b3-434a-899b-88e7c7563110 img.shogun-image,
  #s-69eeaeda-11b3-434a-899b-88e7c7563110 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-69eeaeda-11b3-434a-899b-88e7c7563110 {
    width: 100%;
    height: auto;
  }



  #s-69eeaeda-11b3-434a-899b-88e7c7563110 img.shogun-image {
    

    
    
    
  }


#s-69eeaeda-11b3-434a-899b-88e7c7563110 .shogun-image-content {
  
    justify-content: center;
  
}

#s-4df895e5-3b53-447a-80a8-f79d81a9ecd5 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-4df895e5-3b53-447a-80a8-f79d81a9ecd5 {
  margin-top: 4em;
margin-left: 2%;
margin-right: 2%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4df895e5-3b53-447a-80a8-f79d81a9ecd5 {
  margin-top: 4em;
margin-left: 2%;
margin-right: 2%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-4df895e5-3b53-447a-80a8-f79d81a9ecd5 {
  margin-top: 3em;
}
}@media (max-width: 767px){#s-4df895e5-3b53-447a-80a8-f79d81a9ecd5 {
  margin-top: 1em;
margin-left: 0.5em;
margin-right: 0.5em;
}
}







#s-4df895e5-3b53-447a-80a8-f79d81a9ecd5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4df895e5-3b53-447a-80a8-f79d81a9ecd5.shg-box.shg-c {
  justify-content: center;
}

#s-468d6860-9da7-4d6a-87d1-e95d6e9ef58f {
  margin-left: 4em;
margin-right: 0em;
min-height: 50px;
}
@media (min-width: 1200px){#s-468d6860-9da7-4d6a-87d1-e95d6e9ef58f {
  margin-left: 0em;
margin-right: 0em;
padding-left: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-468d6860-9da7-4d6a-87d1-e95d6e9ef58f {
  margin-left: 0em;
margin-right: 0em;
padding-left: 0em;
padding-right: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-468d6860-9da7-4d6a-87d1-e95d6e9ef58f {
  margin-left: 0em;
}
}@media (max-width: 767px){#s-468d6860-9da7-4d6a-87d1-e95d6e9ef58f {
  margin-left: 1em;
margin-right: 1em;
}
}







#s-468d6860-9da7-4d6a-87d1-e95d6e9ef58f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-468d6860-9da7-4d6a-87d1-e95d6e9ef58f.shg-box.shg-c {
  justify-content: center;
}

#s-5a7ba5cd-060d-4572-90c1-dc12c110bbd1 {
  margin-left: 3em;
margin-right: auto;
min-height: 50px;
}
@media (max-width: 767px){#s-5a7ba5cd-060d-4572-90c1-dc12c110bbd1 {
  margin-left: 0em;
}
}







#s-5a7ba5cd-060d-4572-90c1-dc12c110bbd1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5a7ba5cd-060d-4572-90c1-dc12c110bbd1.shg-box.shg-c {
  justify-content: center;
}

#s-89eb4aca-919f-4cb6-84af-ad1c07018306 {
  margin-top: 2.5em;
margin-left: 0px;
margin-bottom: 0em;
margin-right: 0px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
opacity: 0.3;
}
@media (min-width: 1200px){#s-89eb4aca-919f-4cb6-84af-ad1c07018306 {
  margin-left: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-89eb4aca-919f-4cb6-84af-ad1c07018306 {
  margin-top: 0em;
margin-left: 0em;
}
}@media (max-width: 767px){#s-89eb4aca-919f-4cb6-84af-ad1c07018306 {
  margin-bottom: 1em;
}
}
#s-89eb4aca-919f-4cb6-84af-ad1c07018306 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 7em;
  line-height: 0.5em;
  
  text-align: left;
}


@media (min-width: 1200px){#s-89eb4aca-919f-4cb6-84af-ad1c07018306 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12em;
  line-height: 0.5em;
  
  text-align: left;
}


}@media (min-width: 992px) and (max-width: 1199px){#s-89eb4aca-919f-4cb6-84af-ad1c07018306 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12em;
  line-height: 0.5em;
  
  text-align: left;
}


}@media (max-width: 767px){#s-89eb4aca-919f-4cb6-84af-ad1c07018306 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 7em;
  line-height: 0.5em;
  
  text-align: center;
}


}
#s-dd86ff3b-45fb-4be0-83f2-108e2527907b {
  margin-left: 0px;
margin-right: 0px;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 0px;
padding-right: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-dd86ff3b-45fb-4be0-83f2-108e2527907b {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-dd86ff3b-45fb-4be0-83f2-108e2527907b .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-dd86ff3b-45fb-4be0-83f2-108e2527907b .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-5656e1f6-ccb1-4d1e-bd26-1ec87c33bb3a {
  margin-top: 0px;
margin-left: 0em;
margin-right: 0em;
padding-top: 3%;
padding-bottom: 3%;
padding-right: 0%;
}
@media (min-width: 1200px){#s-5656e1f6-ccb1-4d1e-bd26-1ec87c33bb3a {
  margin-left: 3em;
margin-right: 1em;
padding-top: 1em;
padding-bottom: 0%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5656e1f6-ccb1-4d1e-bd26-1ec87c33bb3a {
  margin-left: 3em;
margin-right: 1em;
padding-top: 1em;
padding-bottom: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-5656e1f6-ccb1-4d1e-bd26-1ec87c33bb3a {
  padding-top: 1em;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-5656e1f6-ccb1-4d1e-bd26-1ec87c33bb3a {
  padding-top: 1em;
padding-bottom: 0.5em;
}
}
#s-4049cda9-081e-40d5-ae86-b3e10ef4251a {
  margin-left: 3em;
margin-right: auto;
}
@media (max-width: 767px){#s-4049cda9-081e-40d5-ae86-b3e10ef4251a {
  margin-left: 0em;
}
}







#s-4049cda9-081e-40d5-ae86-b3e10ef4251a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4049cda9-081e-40d5-ae86-b3e10ef4251a.shg-box.shg-c {
  justify-content: center;
}

@media screen and (max-width:900px) and (min-width:60px){
.icon-slider-height{
    height:9em;
}
.icon-slider-height .slick-prev {
    left: -30px!important;
}
.icon-slider-height .slick-next {
    right: -8px!important;
}
}

.icon-slider-height .slick-prev::before{
        background-image: url(//cdn11.bigcommerce.com/s-8mw570y811/images/stencil/original/image-manager/icons8-back-26.png);
        background-size: 15px;
}
.icon-slider-height .slick-next::before{
        background-image: url(//cdn11.bigcommerce.com/s-8mw570y811/images/stencil/original/image-manager/icons8-forward-26.png);
        background-size: 15px;
}
.carousel-tooltip{
    display:none!important;
}
.icon-slider-height .slick-next, .icon-slider-height .slick-prev {
    background-color: transparent!important;
    border: none;
    /*margin-top: -7px;*/
}
.slick-next, .slick-prev{
   background-color: transparent!important;
    border: none!important; 
}
.icon-slider-height .slick-next{
    right:-25px;
}
/*.icon-slider-height .hide{*/
/*    display:none;*/
/*}*/
/*.icon-slider-height .one-two-hide{*/
/*    display:none;*/
/*}*/
#s-10ea9c4f-4727-428d-a83b-9fb65a7019ff {
  margin-left: 0%;
margin-right: 15%;
}
@media (min-width: 1200px){#s-10ea9c4f-4727-428d-a83b-9fb65a7019ff {
  margin-top: 1em;
margin-bottom: 0.5em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-10ea9c4f-4727-428d-a83b-9fb65a7019ff {
  margin-top: 1em;
margin-bottom: 0.5em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-10ea9c4f-4727-428d-a83b-9fb65a7019ff {
  margin-top: 1em;
margin-bottom: 0.5em;
}
}@media (max-width: 767px){#s-10ea9c4f-4727-428d-a83b-9fb65a7019ff {
  margin-top: 0.5em;
margin-bottom: 0em;
margin-right: 0%;
}
}
#s-bdf4703b-500c-41fc-a8d6-205b8ffad337 {
  margin-left: 0px;
margin-right: 25px;
}
@media (max-width: 767px){#s-bdf4703b-500c-41fc-a8d6-205b8ffad337 {
  margin-right: 25px;
}
}
@media (min-width: 0px) {
[id="s-bdf4703b-500c-41fc-a8d6-205b8ffad337"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 18.75px);
}

}

@media (min-width: 768px) {
[id="s-bdf4703b-500c-41fc-a8d6-205b8ffad337"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 18.75px);
}

}

@media (min-width: 992px) {
[id="s-bdf4703b-500c-41fc-a8d6-205b8ffad337"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 18.75px);
}

}

@media (min-width: 1200px) {
[id="s-bdf4703b-500c-41fc-a8d6-205b8ffad337"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 18.75px);
}

}


.modal {
    min-height: 175px !important;   
    background-color: #fff!important;
}

.popup-cnt{
        color: #000;
        padding: 40px 0px;
}
.popup-cnts{
        font-size: 15px;
        line-height: 1.6;
        letter-spacing: -.07px;
        color: #000;
        font-weight: 400;
        padding: 0px 30px 0px 30px;
        
}
.popup-hd{
        font-size: 1.50rem;
        line-height: 1.5;
        letter-spacing: -.17px;
        word-spacing: 0px;     
        color: #000;
        font-weight: 600;
        padding: 0px 30px 0px 30px;
        margin-top: 21px;
    margin-bottom: 5px;
        }
        .popuptexts:hover{
                background-color: unset;
        }
       .popuptexts {
                padding: 0px;
        }
        .image-text{
            text-align:center;
            display: flex;
            justify-content: center;
            font-size: .7em;
            color:#000;
        }
        .button:focus, .button:hover, button:focus, button:hover{
            background-color: unset;
        }
        
        #modelContentPopup{
            width:30%;
            display:none;
        }
        
    @media screen and (max-width: 900px) and (min-width: 60px) {
        .popup-cnts{
            padding: 0px;  
        }
        .popup-hd{
           padding: 0px; 
        }
        #modelContentPopup{
            width:95%;
        }
    }
#s-c5d8d538-e2ca-4c47-afca-6643d9c642d6 {
  margin-left: 0px;
margin-right: 25px;
}
@media (max-width: 767px){#s-c5d8d538-e2ca-4c47-afca-6643d9c642d6 {
  margin-right: 25px;
}
}
@media (min-width: 0px) {
[id="s-c5d8d538-e2ca-4c47-afca-6643d9c642d6"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 18.75px);
}

}

@media (min-width: 768px) {
[id="s-c5d8d538-e2ca-4c47-afca-6643d9c642d6"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 18.75px);
}

}

@media (min-width: 992px) {
[id="s-c5d8d538-e2ca-4c47-afca-6643d9c642d6"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 18.75px);
}

}

@media (min-width: 1200px) {
[id="s-c5d8d538-e2ca-4c47-afca-6643d9c642d6"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 18.75px);
}

}

#s-0af60f14-d573-4787-acff-59a163a90ad5 {
  margin-left: 0px;
margin-right: 25px;
}
@media (max-width: 767px){#s-0af60f14-d573-4787-acff-59a163a90ad5 {
  margin-right: 25px;
}
}
@media (min-width: 0px) {
[id="s-0af60f14-d573-4787-acff-59a163a90ad5"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 18.75px);
}

}

@media (min-width: 768px) {
[id="s-0af60f14-d573-4787-acff-59a163a90ad5"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 18.75px);
}

}

@media (min-width: 992px) {
[id="s-0af60f14-d573-4787-acff-59a163a90ad5"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 18.75px);
}

}

@media (min-width: 1200px) {
[id="s-0af60f14-d573-4787-acff-59a163a90ad5"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 18.75px);
}

}

#s-94eef235-dfe9-42f3-b730-3e2902ff7c32 {
  margin-left: 0px;
margin-right: 25px;
padding-right: 0px;
}
@media (max-width: 767px){#s-94eef235-dfe9-42f3-b730-3e2902ff7c32 {
  margin-right: 25px;
}
}
@media (min-width: 0px) {
[id="s-94eef235-dfe9-42f3-b730-3e2902ff7c32"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 18.75px);
}

}

@media (min-width: 768px) {
[id="s-94eef235-dfe9-42f3-b730-3e2902ff7c32"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 18.75px);
}

}

@media (min-width: 992px) {
[id="s-94eef235-dfe9-42f3-b730-3e2902ff7c32"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 18.75px);
}

}

@media (min-width: 1200px) {
[id="s-94eef235-dfe9-42f3-b730-3e2902ff7c32"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 18.75px);
}

}

#s-b8b5d040-d6a8-4997-ad32-8baadbf7251d {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-b8b5d040-d6a8-4997-ad32-8baadbf7251d {
  margin-top: 0.5em;
margin-left: 0%;
margin-right: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b8b5d040-d6a8-4997-ad32-8baadbf7251d {
  margin-top: 0.5em;
margin-left: 0%;
margin-right: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-b8b5d040-d6a8-4997-ad32-8baadbf7251d {
  margin-top: 0.5em;
}
}







#s-b8b5d040-d6a8-4997-ad32-8baadbf7251d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b8b5d040-d6a8-4997-ad32-8baadbf7251d.shg-box.shg-c {
  justify-content: center;
}

#s-ffda8924-1d32-43ce-bc16-2a270ad7262d {
  margin-left: 0px;
margin-right: 0px;
}

#s-7b768be9-9744-475b-974b-d78e2fd6a739 {
  text-align: right;
}
@media (min-width: 1200px){#s-7b768be9-9744-475b-974b-d78e2fd6a739 {
  padding-left: 0%;
padding-right: 0%;
}
}
#s-7b768be9-9744-475b-974b-d78e2fd6a739 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-7b768be9-9744-475b-974b-d78e2fd6a739 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-7b768be9-9744-475b-974b-d78e2fd6a739 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(160, 160, 160, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 5px;
}

#s-827801e1-d02a-4fa4-83d1-f960b70a356d {
  margin-left: 25px;
margin-right: 25px;
text-align: left;
}

#s-ddec3300-c3fc-4c0f-a90a-571038b14faa {
  margin-left: 0px;
margin-right: 0px;
text-align: left;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-ddec3300-c3fc-4c0f-a90a-571038b14faa {
  margin-top: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ddec3300-c3fc-4c0f-a90a-571038b14faa {
  margin-top: 0px;
margin-bottom: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-ddec3300-c3fc-4c0f-a90a-571038b14faa {
  margin-top: 0px;
margin-bottom: 0px;
}
}@media (max-width: 767px){#s-ddec3300-c3fc-4c0f-a90a-571038b14faa {
  margin-top: 1em;
margin-bottom: 0em;
}
}
#s-dd093dc1-c9ad-413d-8db6-6cf554740e72 {
  margin-top: 0em;
margin-left: 0%;
margin-bottom: 0em;
margin-right: 0%;
padding-top: 2em;
padding-left: 0em;
padding-bottom: 2em;
padding-right: 0em;
min-height: 50px;
background-color: rgba(255, 255, 255, 0);
}
@media (min-width: 1200px){#s-dd093dc1-c9ad-413d-8db6-6cf554740e72 {
  margin-top: 0em;
margin-left: 0%;
margin-bottom: 0em;
margin-right: 0%;
padding-top: 0.5em;
padding-left: 0em;
padding-right: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-dd093dc1-c9ad-413d-8db6-6cf554740e72 {
  margin-top: 0em;
margin-bottom: 0em;
margin-right: 0%;
padding-top: 0.5em;
padding-left: 0em;
padding-bottom: 2em;
padding-right: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-dd093dc1-c9ad-413d-8db6-6cf554740e72 {
  margin-left: 0%;
padding-left: 0em;
}
}@media (max-width: 767px){#s-dd093dc1-c9ad-413d-8db6-6cf554740e72 {
  margin-top: 0em;
margin-bottom: 0em;
padding-top: 0em;
padding-left: 0.5em;
padding-bottom: 0em;
padding-right: 1em;
}
}







#s-dd093dc1-c9ad-413d-8db6-6cf554740e72 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-dd093dc1-c9ad-413d-8db6-6cf554740e72.shg-box.shg-c {
  justify-content: center;
}

#s-80597ff5-505e-43d7-9a33-75e0f345e979 {
  margin-top: 1em;
margin-left: 0px;
margin-bottom: 1em;
margin-right: 12%;
padding-top: 1em;
padding-left: 0em;
padding-bottom: 1em;
padding-right: 0em;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
background-color: rgba(239, 239, 239, 1);
}
@media (min-width: 1200px){#s-80597ff5-505e-43d7-9a33-75e0f345e979 {
  margin-left: 0%;
margin-bottom: 1em;
margin-right: 15%;
padding-top: 0.3em;
padding-left: 1em;
padding-bottom: 0.3em;
padding-right: 1em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-80597ff5-505e-43d7-9a33-75e0f345e979 {
  margin-bottom: 1em;
margin-right: 15%;
padding-top: 0.3em;
padding-left: 1em;
padding-bottom: 0.3em;
padding-right: 1em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-80597ff5-505e-43d7-9a33-75e0f345e979 {
  margin-bottom: 1em;
margin-right: 2%;
padding-top: 0.3em;
padding-left: 0.5em;
padding-bottom: 0.3em;
padding-right: 0.5em;
}
}@media (max-width: 767px){#s-80597ff5-505e-43d7-9a33-75e0f345e979 {
  margin-top: 1em;
margin-bottom: 1em;
margin-right: 0%;
padding-top: 0.5em;
padding-left: 1em;
padding-bottom: 0.5em;
padding-right: 1em;
}
}
@media (min-width: 0px) {
[id="s-80597ff5-505e-43d7-9a33-75e0f345e979"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-80597ff5-505e-43d7-9a33-75e0f345e979"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-80597ff5-505e-43d7-9a33-75e0f345e979"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-80597ff5-505e-43d7-9a33-75e0f345e979"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-80597ff5-505e-43d7-9a33-75e0f345e979"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-80597ff5-505e-43d7-9a33-75e0f345e979"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-80597ff5-505e-43d7-9a33-75e0f345e979"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-80597ff5-505e-43d7-9a33-75e0f345e979"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

[id="s-80597ff5-505e-43d7-9a33-75e0f345e979"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 10.0px);
}

[id="s-80597ff5-505e-43d7-9a33-75e0f345e979"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 10.0px);
}

}

#s-9ea55295-5b0a-433e-a9c2-b3aa0e3bc385 {
  margin-left: 0px;
margin-right: 0px;
min-height: 50px;
}








#s-9ea55295-5b0a-433e-a9c2-b3aa0e3bc385 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9ea55295-5b0a-433e-a9c2-b3aa0e3bc385.shg-box.shg-c {
  justify-content: center;
}

#s-7dc34223-9411-4eec-84e1-df5ef64cae4a {
  margin-left: 0px;
margin-right: 0px;
max-width: 24px;
text-align: left;
}

#s-7dc34223-9411-4eec-84e1-df5ef64cae4a {
  margin: 0 !important;
  overflow: visible;
}

#s-7dc34223-9411-4eec-84e1-df5ef64cae4a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7dc34223-9411-4eec-84e1-df5ef64cae4a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0px;
  margin-right: 0px;
  
  
}

.shg-image-content-margin-container-s-7dc34223-9411-4eec-84e1-df5ef64cae4a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7dc34223-9411-4eec-84e1-df5ef64cae4a img.shogun-image {
  /* Add background color handling */
  
}

#s-7dc34223-9411-4eec-84e1-df5ef64cae4a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-7dc34223-9411-4eec-84e1-df5ef64cae4a .shogun-image-content {
  
    justify-content: center;
  
}

.s-7dc34223-9411-4eec-84e1-df5ef64cae4a.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7dc34223-9411-4eec-84e1-df5ef64cae4a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7dc34223-9411-4eec-84e1-df5ef64cae4a.shogun-image {
  box-sizing: border-box;
}



.s-7dc34223-9411-4eec-84e1-df5ef64cae4a img.shogun-image {
  
}


@media (min-width: 1200px){#s-7dc34223-9411-4eec-84e1-df5ef64cae4a {
  margin: 0 !important;
  overflow: visible;
}

#s-7dc34223-9411-4eec-84e1-df5ef64cae4a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7dc34223-9411-4eec-84e1-df5ef64cae4a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7dc34223-9411-4eec-84e1-df5ef64cae4a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7dc34223-9411-4eec-84e1-df5ef64cae4a img.shogun-image {
  /* Add background color handling */
  
}

#s-7dc34223-9411-4eec-84e1-df5ef64cae4a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-7dc34223-9411-4eec-84e1-df5ef64cae4a .shogun-image-content {
  
    justify-content: center;
  
}

.s-7dc34223-9411-4eec-84e1-df5ef64cae4a.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7dc34223-9411-4eec-84e1-df5ef64cae4a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7dc34223-9411-4eec-84e1-df5ef64cae4a.shogun-image {
  box-sizing: border-box;
}



.s-7dc34223-9411-4eec-84e1-df5ef64cae4a img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-7dc34223-9411-4eec-84e1-df5ef64cae4a {
  margin: 0 !important;
  overflow: visible;
}

#s-7dc34223-9411-4eec-84e1-df5ef64cae4a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7dc34223-9411-4eec-84e1-df5ef64cae4a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7dc34223-9411-4eec-84e1-df5ef64cae4a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7dc34223-9411-4eec-84e1-df5ef64cae4a img.shogun-image {
  /* Add background color handling */
  
}

#s-7dc34223-9411-4eec-84e1-df5ef64cae4a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-7dc34223-9411-4eec-84e1-df5ef64cae4a .shogun-image-content {
  
    justify-content: center;
  
}

.s-7dc34223-9411-4eec-84e1-df5ef64cae4a.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7dc34223-9411-4eec-84e1-df5ef64cae4a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7dc34223-9411-4eec-84e1-df5ef64cae4a.shogun-image {
  box-sizing: border-box;
}



.s-7dc34223-9411-4eec-84e1-df5ef64cae4a img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-7dc34223-9411-4eec-84e1-df5ef64cae4a {
  margin: 0 !important;
  overflow: visible;
}

#s-7dc34223-9411-4eec-84e1-df5ef64cae4a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7dc34223-9411-4eec-84e1-df5ef64cae4a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7dc34223-9411-4eec-84e1-df5ef64cae4a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7dc34223-9411-4eec-84e1-df5ef64cae4a img.shogun-image {
  /* Add background color handling */
  
}

#s-7dc34223-9411-4eec-84e1-df5ef64cae4a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-7dc34223-9411-4eec-84e1-df5ef64cae4a .shogun-image-content {
  
    justify-content: center;
  
}

.s-7dc34223-9411-4eec-84e1-df5ef64cae4a.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7dc34223-9411-4eec-84e1-df5ef64cae4a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7dc34223-9411-4eec-84e1-df5ef64cae4a.shogun-image {
  box-sizing: border-box;
}



.s-7dc34223-9411-4eec-84e1-df5ef64cae4a img.shogun-image {
  
}


}@media (max-width: 767px){#s-7dc34223-9411-4eec-84e1-df5ef64cae4a {
  margin: 0 !important;
  overflow: visible;
}

#s-7dc34223-9411-4eec-84e1-df5ef64cae4a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-7dc34223-9411-4eec-84e1-df5ef64cae4a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-7dc34223-9411-4eec-84e1-df5ef64cae4a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-7dc34223-9411-4eec-84e1-df5ef64cae4a img.shogun-image {
  /* Add background color handling */
  
}

#s-7dc34223-9411-4eec-84e1-df5ef64cae4a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-7dc34223-9411-4eec-84e1-df5ef64cae4a .shogun-image-content {
  
    justify-content: center;
  
}

.s-7dc34223-9411-4eec-84e1-df5ef64cae4a.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-7dc34223-9411-4eec-84e1-df5ef64cae4a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-7dc34223-9411-4eec-84e1-df5ef64cae4a.shogun-image {
  box-sizing: border-box;
}



.s-7dc34223-9411-4eec-84e1-df5ef64cae4a img.shogun-image {
  
}


}
#s-6ec7c952-2280-49cf-8e87-e4efff33e11d {
  margin-left: 0px;
margin-right: 0px;
}

#s-e05cf0a9-fde6-4c6c-ab76-ffaa6f6dcb01 {
  margin-left: 0px;
margin-right: 0px;
min-height: 50px;
}








#s-e05cf0a9-fde6-4c6c-ab76-ffaa6f6dcb01 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e05cf0a9-fde6-4c6c-ab76-ffaa6f6dcb01.shg-box.shg-c {
  justify-content: center;
}

#s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a {
  margin-left: 0px;
margin-right: 0px;
max-width: 24px;
text-align: left;
}

#s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a {
  margin: 0 !important;
  overflow: visible;
}

#s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0px;
  margin-right: 0px;
  
  
}

.shg-image-content-margin-container-s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a img.shogun-image {
  /* Add background color handling */
  
}

#s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a .shogun-image-content {
  
    justify-content: center;
  
}

.s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a.shogun-image {
  box-sizing: border-box;
}



.s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a img.shogun-image {
  
}


@media (min-width: 1200px){#s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a {
  margin: 0 !important;
  overflow: visible;
}

#s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a img.shogun-image {
  /* Add background color handling */
  
}

#s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a .shogun-image-content {
  
    justify-content: center;
  
}

.s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a.shogun-image {
  box-sizing: border-box;
}



.s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a {
  margin: 0 !important;
  overflow: visible;
}

#s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a img.shogun-image {
  /* Add background color handling */
  
}

#s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a .shogun-image-content {
  
    justify-content: center;
  
}

.s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a.shogun-image {
  box-sizing: border-box;
}



.s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a {
  margin: 0 !important;
  overflow: visible;
}

#s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a img.shogun-image {
  /* Add background color handling */
  
}

#s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a .shogun-image-content {
  
    justify-content: center;
  
}

.s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a.shogun-image {
  box-sizing: border-box;
}



.s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a img.shogun-image {
  
}


}@media (max-width: 767px){#s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a {
  margin: 0 !important;
  overflow: visible;
}

#s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a img.shogun-image {
  /* Add background color handling */
  
}

#s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a .shogun-image-content {
  
    justify-content: center;
  
}

.s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a.shogun-image {
  box-sizing: border-box;
}



.s-8890fb1a-6712-4ef4-8f2e-c138a7ac202a img.shogun-image {
  
}


}
#s-56bb28ab-091a-49d4-b3ba-7c2bb00546c5 {
  margin-left: 0px;
margin-right: 0px;
}

#s-f18628a2-e811-4d81-9b7e-d722d9859a9e {
  margin-left: 0px;
margin-right: 0px;
min-height: 50px;
}








#s-f18628a2-e811-4d81-9b7e-d722d9859a9e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f18628a2-e811-4d81-9b7e-d722d9859a9e.shg-box.shg-c {
  justify-content: center;
}

#s-04d8f691-959b-4379-833c-9eda2d0b4278 {
  margin-left: 0px;
margin-right: 0px;
max-width: 24px;
text-align: left;
}

#s-04d8f691-959b-4379-833c-9eda2d0b4278 {
  margin: 0 !important;
  overflow: visible;
}

#s-04d8f691-959b-4379-833c-9eda2d0b4278-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-04d8f691-959b-4379-833c-9eda2d0b4278 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0px;
  margin-right: 0px;
  
  
}

.shg-image-content-margin-container-s-04d8f691-959b-4379-833c-9eda2d0b4278 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-04d8f691-959b-4379-833c-9eda2d0b4278 img.shogun-image {
  /* Add background color handling */
  
}

#s-04d8f691-959b-4379-833c-9eda2d0b4278 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-04d8f691-959b-4379-833c-9eda2d0b4278 .shogun-image-content {
  
    justify-content: center;
  
}

.s-04d8f691-959b-4379-833c-9eda2d0b4278.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-04d8f691-959b-4379-833c-9eda2d0b4278.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-04d8f691-959b-4379-833c-9eda2d0b4278.shogun-image {
  box-sizing: border-box;
}



.s-04d8f691-959b-4379-833c-9eda2d0b4278 img.shogun-image {
  
}


@media (min-width: 1200px){#s-04d8f691-959b-4379-833c-9eda2d0b4278 {
  margin: 0 !important;
  overflow: visible;
}

#s-04d8f691-959b-4379-833c-9eda2d0b4278-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-04d8f691-959b-4379-833c-9eda2d0b4278 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-04d8f691-959b-4379-833c-9eda2d0b4278 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-04d8f691-959b-4379-833c-9eda2d0b4278 img.shogun-image {
  /* Add background color handling */
  
}

#s-04d8f691-959b-4379-833c-9eda2d0b4278 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-04d8f691-959b-4379-833c-9eda2d0b4278 .shogun-image-content {
  
    justify-content: center;
  
}

.s-04d8f691-959b-4379-833c-9eda2d0b4278.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-04d8f691-959b-4379-833c-9eda2d0b4278.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-04d8f691-959b-4379-833c-9eda2d0b4278.shogun-image {
  box-sizing: border-box;
}



.s-04d8f691-959b-4379-833c-9eda2d0b4278 img.shogun-image {
  
}


}@media (min-width: 992px) and (max-width: 1199px){#s-04d8f691-959b-4379-833c-9eda2d0b4278 {
  margin: 0 !important;
  overflow: visible;
}

#s-04d8f691-959b-4379-833c-9eda2d0b4278-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-04d8f691-959b-4379-833c-9eda2d0b4278 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-04d8f691-959b-4379-833c-9eda2d0b4278 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-04d8f691-959b-4379-833c-9eda2d0b4278 img.shogun-image {
  /* Add background color handling */
  
}

#s-04d8f691-959b-4379-833c-9eda2d0b4278 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-04d8f691-959b-4379-833c-9eda2d0b4278 .shogun-image-content {
  
    justify-content: center;
  
}

.s-04d8f691-959b-4379-833c-9eda2d0b4278.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-04d8f691-959b-4379-833c-9eda2d0b4278.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-04d8f691-959b-4379-833c-9eda2d0b4278.shogun-image {
  box-sizing: border-box;
}



.s-04d8f691-959b-4379-833c-9eda2d0b4278 img.shogun-image {
  
}


}@media (min-width: 768px) and (max-width: 991px){#s-04d8f691-959b-4379-833c-9eda2d0b4278 {
  margin: 0 !important;
  overflow: visible;
}

#s-04d8f691-959b-4379-833c-9eda2d0b4278-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-04d8f691-959b-4379-833c-9eda2d0b4278 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-04d8f691-959b-4379-833c-9eda2d0b4278 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-04d8f691-959b-4379-833c-9eda2d0b4278 img.shogun-image {
  /* Add background color handling */
  
}

#s-04d8f691-959b-4379-833c-9eda2d0b4278 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-04d8f691-959b-4379-833c-9eda2d0b4278 .shogun-image-content {
  
    justify-content: center;
  
}

.s-04d8f691-959b-4379-833c-9eda2d0b4278.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-04d8f691-959b-4379-833c-9eda2d0b4278.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-04d8f691-959b-4379-833c-9eda2d0b4278.shogun-image {
  box-sizing: border-box;
}



.s-04d8f691-959b-4379-833c-9eda2d0b4278 img.shogun-image {
  
}


}@media (max-width: 767px){#s-04d8f691-959b-4379-833c-9eda2d0b4278 {
  margin: 0 !important;
  overflow: visible;
}

#s-04d8f691-959b-4379-833c-9eda2d0b4278-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-04d8f691-959b-4379-833c-9eda2d0b4278 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-04d8f691-959b-4379-833c-9eda2d0b4278 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-04d8f691-959b-4379-833c-9eda2d0b4278 img.shogun-image {
  /* Add background color handling */
  
}

#s-04d8f691-959b-4379-833c-9eda2d0b4278 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}






.s-04d8f691-959b-4379-833c-9eda2d0b4278 .shogun-image-content {
  
    justify-content: center;
  
}

.s-04d8f691-959b-4379-833c-9eda2d0b4278.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-04d8f691-959b-4379-833c-9eda2d0b4278.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-04d8f691-959b-4379-833c-9eda2d0b4278.shogun-image {
  box-sizing: border-box;
}



.s-04d8f691-959b-4379-833c-9eda2d0b4278 img.shogun-image {
  
}


}
#s-1dfa36b3-29b3-4407-8940-3c0840a8f0d8 {
  margin-left: 0px;
margin-right: 0px;
text-align: left;
}
@media (max-width: 767px){#s-1dfa36b3-29b3-4407-8940-3c0840a8f0d8 {
  margin-left: 0px;
margin-right: 0px;
}
}
#s-829e0f2e-be2f-446f-a5f2-28df4a568991 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-829e0f2e-be2f-446f-a5f2-28df4a568991 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-829e0f2e-be2f-446f-a5f2-28df4a568991.shg-box.shg-c {
  justify-content: center;
}

#s-08c6ee38-eff5-4337-8358-9acc353e389f {
  margin-left: 0%;
margin-right: 0%;
}

@media (min-width: 0px) {
[id="s-08c6ee38-eff5-4337-8358-9acc353e389f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-08c6ee38-eff5-4337-8358-9acc353e389f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-08c6ee38-eff5-4337-8358-9acc353e389f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-08c6ee38-eff5-4337-8358-9acc353e389f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-38b696ec-3c64-48db-ab09-9bd1b8dd0a83 {
  margin-left: auto;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-38b696ec-3c64-48db-ab09-9bd1b8dd0a83"] > .shg-row > .shg-c-xs-2_4 {
  width: calc(20.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-38b696ec-3c64-48db-ab09-9bd1b8dd0a83"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-38b696ec-3c64-48db-ab09-9bd1b8dd0a83"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-38b696ec-3c64-48db-ab09-9bd1b8dd0a83"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 0.0px);
}

}

.popup {
      position: relative;
      display: inline-block;
      cursor: pointer;
      -webkit-user-select: none;
         -moz-user-select: none;
              user-select: none;
      margin: 0px 5px;
    }

    .popup .popuptext {
      margin-top:10px;
      visibility: hidden;
      opacity: 0;
      width: 200px;
      background-color: #141414;
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 8px;
      position: absolute;
      z-index: 1;
      top: 110%;
      left: 50%;
      transform: translateX(-50%);
      transition: opacity 0.3s;
    }

    .popup .popuptext::after {
      content: "";
      position: absolute;
      bottom: 100%;
      left: 50%;
      margin-left: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: transparent transparent #555 transparent;
    }

    /* Desktop hover only */
    @media (min-width: 768px) {
      .popup:hover .popuptext {
        visibility: visible;
        opacity: 1;
      }

      #mobile-message {
        display: none !important;
      }
    }

    /* Mobile styles */
    @media (max-width: 767px) {
      .popup .popuptext {
        display: none !important;
      }
      .popup img{
          width:60px !important;
      }
      

      #mobile-message {
       display: none;
        margin-top: 6px;
        background-color: #141414;
        color: #fff;
        padding: 10px 20px;
        border-radius: 8px;
        font-size: 14px;
        text-align: center;
        width: 100%;
      }

      #mobile-message.show {
        display: block !important;
      }
    }
#s-6057c09d-d27e-426c-9700-86338e143f21 {
  text-align: center;
}

#s-85b9bb11-0a15-41f7-aaff-234d35d1e0ce {
  margin-left: auto;
margin-right: auto;
}
@media (max-width: 767px){#s-85b9bb11-0a15-41f7-aaff-234d35d1e0ce {
  margin-top: 10px;
margin-bottom: 10px;
}
}
@media (min-width: 0px) {
[id="s-85b9bb11-0a15-41f7-aaff-234d35d1e0ce"] > .shg-row > .shg-c-xs-2_4 {
  width: calc(20.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-85b9bb11-0a15-41f7-aaff-234d35d1e0ce"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-85b9bb11-0a15-41f7-aaff-234d35d1e0ce"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-85b9bb11-0a15-41f7-aaff-234d35d1e0ce"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 0.0px);
}

}

#s-01692145-4618-47de-8ee2-23e0df282de9 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-bcf60639-eed1-4a04-971d-d672ef720bc5 {
  margin-top: 0em;
margin-left: auto;
margin-bottom: 0em;
margin-right: auto;
text-align: left;
}

#s-434dd210-f98e-439b-86e5-64e097920e58 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-434dd210-f98e-439b-86e5-64e097920e58 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-434dd210-f98e-439b-86e5-64e097920e58.shg-box.shg-c {
  justify-content: center;
}

#s-a9237d37-6119-4cdf-b033-ad29d6402cef {
  margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-top: 3px;
padding-left: 0px;
padding-bottom: 3px;
padding-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(239, 239, 239, 1);
border-style: solid;
border-radius: 10px;
min-height: 50px;
}
@media (max-width: 767px){#s-a9237d37-6119-4cdf-b033-ad29d6402cef {
  margin-bottom: 2em;
}
}







#s-a9237d37-6119-4cdf-b033-ad29d6402cef > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a9237d37-6119-4cdf-b033-ad29d6402cef.shg-box.shg-c {
  justify-content: center;
}

#s-d8bd3516-3009-4fbf-8b62-db6f52265725 {
  margin-left: 0%;
margin-right: 0%;
padding-left: 5px;
padding-right: 5px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(239, 239, 239, 1);
border-style: solid;
border-radius: 0px;
background-repeat: no-repeat;
background-color: rgba(239, 239, 239, 1);
}

@media (min-width: 0px) {
[id="s-d8bd3516-3009-4fbf-8b62-db6f52265725"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d8bd3516-3009-4fbf-8b62-db6f52265725"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-d8bd3516-3009-4fbf-8b62-db6f52265725"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-d8bd3516-3009-4fbf-8b62-db6f52265725"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-d8bd3516-3009-4fbf-8b62-db6f52265725"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-d8bd3516-3009-4fbf-8b62-db6f52265725"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-d8bd3516-3009-4fbf-8b62-db6f52265725"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-d8bd3516-3009-4fbf-8b62-db6f52265725"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-ac799db8-c110-436b-9e32-7b5b105b344a {
  margin-top: 25px;
margin-bottom: 0px;
padding-left: 10%;
padding-right: 0%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
}
@media (max-width: 767px){#s-ac799db8-c110-436b-9e32-7b5b105b344a {
  display: none;
}
#s-ac799db8-c110-436b-9e32-7b5b105b344a, #wrap-s-ac799db8-c110-436b-9e32-7b5b105b344a, #wrap-content-s-ac799db8-c110-436b-9e32-7b5b105b344a { display: none !important; }}
#s-88d085a7-2810-4c7e-9a9a-10529db8b6fa {
  margin-top: 27px;
padding-left: 10%;
padding-right: 0%;
}
@media (min-width: 1200px){#s-88d085a7-2810-4c7e-9a9a-10529db8b6fa {
  margin-top: 35px;
display: none;
}
#s-88d085a7-2810-4c7e-9a9a-10529db8b6fa, #wrap-s-88d085a7-2810-4c7e-9a9a-10529db8b6fa, #wrap-content-s-88d085a7-2810-4c7e-9a9a-10529db8b6fa { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-88d085a7-2810-4c7e-9a9a-10529db8b6fa {
  display: none;
}
#s-88d085a7-2810-4c7e-9a9a-10529db8b6fa, #wrap-s-88d085a7-2810-4c7e-9a9a-10529db8b6fa, #wrap-content-s-88d085a7-2810-4c7e-9a9a-10529db8b6fa { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-88d085a7-2810-4c7e-9a9a-10529db8b6fa {
  padding-left: 0%;
display: none;
}
#s-88d085a7-2810-4c7e-9a9a-10529db8b6fa, #wrap-s-88d085a7-2810-4c7e-9a9a-10529db8b6fa, #wrap-content-s-88d085a7-2810-4c7e-9a9a-10529db8b6fa { display: none !important; }}@media (max-width: 767px){#s-88d085a7-2810-4c7e-9a9a-10529db8b6fa {
  margin-top: 10px;
}
}
#s-b4871377-9fc3-422f-a8a3-584d7962b512 {
  margin-top: 9px;
margin-left: 22%;
margin-bottom: 10px;
margin-right: 22%;
max-width: 1459px;
aspect-ratio: 1459/461;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-b4871377-9fc3-422f-a8a3-584d7962b512 {
  margin-left: 0%;
margin-right: 0%;
}
}@media (max-width: 767px){#s-b4871377-9fc3-422f-a8a3-584d7962b512 {
  margin-top: 2em;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
max-width: 50%;
text-align: center;
}
}
#s-b4871377-9fc3-422f-a8a3-584d7962b512 {
  margin: 0 !important;
  overflow: visible;
}

#s-b4871377-9fc3-422f-a8a3-584d7962b512-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b4871377-9fc3-422f-a8a3-584d7962b512 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 22%;
  margin-right: 22%;
  margin-top: 9px;
  margin-bottom: 10px;
}

.shg-image-content-margin-container-s-b4871377-9fc3-422f-a8a3-584d7962b512 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b4871377-9fc3-422f-a8a3-584d7962b512 img.shogun-image {
  /* Add background color handling */
  
}

#s-b4871377-9fc3-422f-a8a3-584d7962b512 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b4871377-9fc3-422f-a8a3-584d7962b512 .shg-image-content-wrapper {
      aspect-ratio: 1459/461;
      min-width: 100%;
      height: auto;
    }

    #s-b4871377-9fc3-422f-a8a3-584d7962b512 .shogun-image-link {
      aspect-ratio: 1459/461;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b4871377-9fc3-422f-a8a3-584d7962b512 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b4871377-9fc3-422f-a8a3-584d7962b512 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1459px;
  }



  img.s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image {
    
    
    
    max-height: 1459px;
  }


.s-b4871377-9fc3-422f-a8a3-584d7962b512 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b4871377-9fc3-422f-a8a3-584d7962b512.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image {
  box-sizing: border-box;
}



.s-b4871377-9fc3-422f-a8a3-584d7962b512 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b4871377-9fc3-422f-a8a3-584d7962b512 {
      --shg-aspect-ratio: calc(1459/461); 
    }

    .s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image-container {
      position: relative;
    }

    .s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b4871377-9fc3-422f-a8a3-584d7962b512 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1459px;
    }
  }

@media (min-width: 1200px){#s-b4871377-9fc3-422f-a8a3-584d7962b512 {
  margin: 0 !important;
  overflow: visible;
}

#s-b4871377-9fc3-422f-a8a3-584d7962b512-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b4871377-9fc3-422f-a8a3-584d7962b512 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b4871377-9fc3-422f-a8a3-584d7962b512 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b4871377-9fc3-422f-a8a3-584d7962b512 img.shogun-image {
  /* Add background color handling */
  
}

#s-b4871377-9fc3-422f-a8a3-584d7962b512 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b4871377-9fc3-422f-a8a3-584d7962b512 .shg-image-content-wrapper {
      aspect-ratio: 1459/461;
      min-width: 100%;
      height: auto;
    }

    #s-b4871377-9fc3-422f-a8a3-584d7962b512 .shogun-image-link {
      aspect-ratio: 1459/461;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b4871377-9fc3-422f-a8a3-584d7962b512 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b4871377-9fc3-422f-a8a3-584d7962b512 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1459px;
  }



  img.s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image {
    
    
    
    max-height: 1459px;
  }


.s-b4871377-9fc3-422f-a8a3-584d7962b512 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b4871377-9fc3-422f-a8a3-584d7962b512.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image {
  box-sizing: border-box;
}



.s-b4871377-9fc3-422f-a8a3-584d7962b512 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b4871377-9fc3-422f-a8a3-584d7962b512 {
      --shg-aspect-ratio: calc(1459/461); 
    }

    .s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image-container {
      position: relative;
    }

    .s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b4871377-9fc3-422f-a8a3-584d7962b512 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1459px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-b4871377-9fc3-422f-a8a3-584d7962b512 {
  margin: 0 !important;
  overflow: visible;
}

#s-b4871377-9fc3-422f-a8a3-584d7962b512-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b4871377-9fc3-422f-a8a3-584d7962b512 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-b4871377-9fc3-422f-a8a3-584d7962b512 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b4871377-9fc3-422f-a8a3-584d7962b512 img.shogun-image {
  /* Add background color handling */
  
}

#s-b4871377-9fc3-422f-a8a3-584d7962b512 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b4871377-9fc3-422f-a8a3-584d7962b512 .shg-image-content-wrapper {
      aspect-ratio: 1459/461;
      min-width: 100%;
      height: auto;
    }

    #s-b4871377-9fc3-422f-a8a3-584d7962b512 .shogun-image-link {
      aspect-ratio: 1459/461;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b4871377-9fc3-422f-a8a3-584d7962b512 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b4871377-9fc3-422f-a8a3-584d7962b512 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1459px;
  }



  img.s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image {
    
    
    
    max-height: 1459px;
  }


.s-b4871377-9fc3-422f-a8a3-584d7962b512 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b4871377-9fc3-422f-a8a3-584d7962b512.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image {
  box-sizing: border-box;
}



.s-b4871377-9fc3-422f-a8a3-584d7962b512 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b4871377-9fc3-422f-a8a3-584d7962b512 {
      --shg-aspect-ratio: calc(1459/461); 
    }

    .s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image-container {
      position: relative;
    }

    .s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b4871377-9fc3-422f-a8a3-584d7962b512 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1459px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-b4871377-9fc3-422f-a8a3-584d7962b512 {
  margin: 0 !important;
  overflow: visible;
}

#s-b4871377-9fc3-422f-a8a3-584d7962b512-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b4871377-9fc3-422f-a8a3-584d7962b512 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0%;
  margin-right: 0%;
  
  
}

.shg-image-content-margin-container-s-b4871377-9fc3-422f-a8a3-584d7962b512 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b4871377-9fc3-422f-a8a3-584d7962b512 img.shogun-image {
  /* Add background color handling */
  
}

#s-b4871377-9fc3-422f-a8a3-584d7962b512 img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b4871377-9fc3-422f-a8a3-584d7962b512 .shg-image-content-wrapper {
      aspect-ratio: 1459/461;
      min-width: 100%;
      height: auto;
    }

    #s-b4871377-9fc3-422f-a8a3-584d7962b512 .shogun-image-link {
      aspect-ratio: 1459/461;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b4871377-9fc3-422f-a8a3-584d7962b512 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b4871377-9fc3-422f-a8a3-584d7962b512 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1459px;
  }



  img.s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image {
    
    
    
    max-height: 1459px;
  }


.s-b4871377-9fc3-422f-a8a3-584d7962b512 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b4871377-9fc3-422f-a8a3-584d7962b512.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image {
  box-sizing: border-box;
}



.s-b4871377-9fc3-422f-a8a3-584d7962b512 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b4871377-9fc3-422f-a8a3-584d7962b512 {
      --shg-aspect-ratio: calc(1459/461); 
    }

    .s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image-container {
      position: relative;
    }

    .s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b4871377-9fc3-422f-a8a3-584d7962b512 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1459px;
    }
  }

}@media (max-width: 767px){#s-b4871377-9fc3-422f-a8a3-584d7962b512 {
  margin: 0 !important;
  overflow: visible;
}

#s-b4871377-9fc3-422f-a8a3-584d7962b512-root {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  overflow: visible;
}

.shg-image-margin-container-s-b4871377-9fc3-422f-a8a3-584d7962b512 {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0%;
  margin-right: 0%;
  margin-top: 2em;
  margin-bottom: 0px;
}

.shg-image-content-margin-container-s-b4871377-9fc3-422f-a8a3-584d7962b512 {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-b4871377-9fc3-422f-a8a3-584d7962b512 img.shogun-image {
  /* Add background color handling */
  
}

#s-b4871377-9fc3-422f-a8a3-584d7962b512 img.shogun-image {
  /* Add padding handling */
  
  
  padding-top: 0px;
  padding-bottom: 0px;
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-b4871377-9fc3-422f-a8a3-584d7962b512 .shg-image-content-wrapper {
      aspect-ratio: 1459/461;
      min-width: 100%;
      height: auto;
    }

    #s-b4871377-9fc3-422f-a8a3-584d7962b512 .shogun-image-link {
      aspect-ratio: 1459/461;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-b4871377-9fc3-422f-a8a3-584d7962b512 .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-b4871377-9fc3-422f-a8a3-584d7962b512 img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1459px;
  }



  img.s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image {
    
    
    
    max-height: 1459px;
  }


.s-b4871377-9fc3-422f-a8a3-584d7962b512 .shogun-image-content {
  
    justify-content: center;
  
}

.s-b4871377-9fc3-422f-a8a3-584d7962b512.shg-align-container {
  display: flex;
  justify-content: center
}

.s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image {
  box-sizing: border-box;
}



.s-b4871377-9fc3-422f-a8a3-584d7962b512 img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-b4871377-9fc3-422f-a8a3-584d7962b512 {
      --shg-aspect-ratio: calc(1459/461); 
    }

    .s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image-container {
      position: relative;
    }

    .s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-b4871377-9fc3-422f-a8a3-584d7962b512.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-b4871377-9fc3-422f-a8a3-584d7962b512 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1459px;
    }
  }

}
#s-79e7fdb0-c8bd-4741-a4e6-e0a4fcd83f8f {
  margin-left: auto;
margin-right: auto;
}








#s-79e7fdb0-c8bd-4741-a4e6-e0a4fcd83f8f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-79e7fdb0-c8bd-4741-a4e6-e0a4fcd83f8f.shg-box.shg-c {
  justify-content: center;
}

#s-d93d6a32-59a1-4792-b94e-b0adaf7e47ac {
  margin-top: 3em;
margin-bottom: 5em;
padding-top: 0%;
padding-left: 5%;
padding-bottom: 0%;
padding-right: 5%;
}

@media (min-width: 0px) {
[id="s-d93d6a32-59a1-4792-b94e-b0adaf7e47ac"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d93d6a32-59a1-4792-b94e-b0adaf7e47ac"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d93d6a32-59a1-4792-b94e-b0adaf7e47ac"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d93d6a32-59a1-4792-b94e-b0adaf7e47ac"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-b39145f0-be52-4e89-ba34-174bee897464 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-b39145f0-be52-4e89-ba34-174bee897464 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


#s-b39145f0-be52-4e89-ba34-174bee897464 .shogun-heading-component h2 a {
  color: rgba(0, 0, 0, 1);
}


#s-2560d6bd-f7e6-4b1c-b7d9-62fa8f3fe5f4 {
  margin-left: -5%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
}
@media (min-width: 1200px){#s-2560d6bd-f7e6-4b1c-b7d9-62fa8f3fe5f4 {
  margin-left: -10%;
}
}@media (max-width: 767px){#s-2560d6bd-f7e6-4b1c-b7d9-62fa8f3fe5f4 {
  display: none;
}
#s-2560d6bd-f7e6-4b1c-b7d9-62fa8f3fe5f4, #wrap-s-2560d6bd-f7e6-4b1c-b7d9-62fa8f3fe5f4, #wrap-content-s-2560d6bd-f7e6-4b1c-b7d9-62fa8f3fe5f4 { display: none !important; }}
#s-2560d6bd-f7e6-4b1c-b7d9-62fa8f3fe5f4 {
  overflow: hidden;
  
  
}







  #s-2560d6bd-f7e6-4b1c-b7d9-62fa8f3fe5f4 img.shogun-image {
    

    
    
    
  }


#s-2560d6bd-f7e6-4b1c-b7d9-62fa8f3fe5f4 .shogun-image-content {
  
    justify-content: center;
  
}

#s-ef2acf66-d976-44ea-bece-437a934c4e1d {
  margin-left: -5%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
}
@media (min-width: 1200px){#s-ef2acf66-d976-44ea-bece-437a934c4e1d {
  margin-left: -10%;
display: none;
}
#s-ef2acf66-d976-44ea-bece-437a934c4e1d, #wrap-s-ef2acf66-d976-44ea-bece-437a934c4e1d, #wrap-content-s-ef2acf66-d976-44ea-bece-437a934c4e1d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ef2acf66-d976-44ea-bece-437a934c4e1d {
  display: none;
}
#s-ef2acf66-d976-44ea-bece-437a934c4e1d, #wrap-s-ef2acf66-d976-44ea-bece-437a934c4e1d, #wrap-content-s-ef2acf66-d976-44ea-bece-437a934c4e1d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ef2acf66-d976-44ea-bece-437a934c4e1d {
  display: none;
}
#s-ef2acf66-d976-44ea-bece-437a934c4e1d, #wrap-s-ef2acf66-d976-44ea-bece-437a934c4e1d, #wrap-content-s-ef2acf66-d976-44ea-bece-437a934c4e1d { display: none !important; }}
#s-ef2acf66-d976-44ea-bece-437a934c4e1d {
  overflow: hidden;
  
  
}







  #s-ef2acf66-d976-44ea-bece-437a934c4e1d img.shogun-image {
    

    
    
    
  }


#s-ef2acf66-d976-44ea-bece-437a934c4e1d .shogun-image-content {
  
    justify-content: center;
  
}

#s-6591ed84-c0a6-4a14-8937-2c57321b0c84 {
  margin-top: 10px;
margin-left: 0em;
padding-top: 0px;
padding-left: 1em;
padding-bottom: 0px;
padding-right: 1em;
min-height: 50em;
}
@media (min-width: 1200px){#s-6591ed84-c0a6-4a14-8937-2c57321b0c84 {
  margin-bottom: 1em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6591ed84-c0a6-4a14-8937-2c57321b0c84 {
  margin-bottom: 1em;
}
}@media (max-width: 767px){#s-6591ed84-c0a6-4a14-8937-2c57321b0c84 {
  margin-bottom: 0.5em;
padding-left: 1em;
padding-right: 1em;
min-height: 17em;
max-width: 100%;
}
}







#s-6591ed84-c0a6-4a14-8937-2c57321b0c84 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6591ed84-c0a6-4a14-8937-2c57321b0c84.shg-box.shg-c {
  justify-content: flex-start;
}

.box{
    border-radius:15px;
    background-color:#c9262600;;
    padding:30px;
    padding-right: 10rem;
    /*padding-bottom: 10px;*/
    padding-top: 10px;
}
.flex{
    display:flex;
    padding-bottom: 0px !important;
}
.logo-size{
  width:60px!important;
  margin-top:8px;
   
}
.btn{
    border:1px solid #000 ;
    /*border-color: #000;*/
    border-radius: 10px !important;
    padding-top: 5px;
    padding-left: 17px;
    padding-bottom: 5px;
    padding-right: 17px;
    color: #000;
    font-size: 1.2vw;
    font-weight:600;
    
}
.extra-style .box{
    background-color:#fff!important;
}
.tex{
    font-size: 2.1vw;
    margin-left:10px;
    color:#000;
    margin-top: 15px;
}
.span-extra-text{
    font-size: 12px;
    color: #929292!important;
}
.extra-span .box{
    padding-bottom: 30px !important;
    padding: 10px;
    padding-left: 30px;
}
.extra-span .spn{
    font-size: 2.5vw!important;
    margin-top:0px;
    padding-bottom:0px!important;
}
.extra-span .col{
   font-size: 14px!important; 
}
.spn{
    /*margin-top: 10px;*/
    color:#000;
    font-size: 3vw;
    line-height: 104%;
    
}
.bg-white .box{
    background-color:#fff;
    
}
.bg-white .spn{
    color:#000;
    padding-bottom:15px;
    font-size: 3.3vw;
    line-height: normal;
}
.col{
    color:#000; 
    font-size: 1.2vw;
    line-height: 120.5%!important;
    
    padding-bottom: 10px;
}
.btn-txt {
    display:flex;
}

/* css for transparent background */
.bgd-unset .box {
    background-color: rgba(0,0,0,0.6);
    padding-right: 30px !important;
    border-radius: 0px 0px 10px 10px;
}

.bgd-unset .spn{
    font-size: 4.9vw!important;
}
.bgd-unset .tex{
    font-size: 1.8vw!important;
}
.bgd-unset .col{
            font-size: 1.6vw!important;
    }
    
.text-white-color .spn{
    color: #fff!important;
}
.text-white-color .tex{
    color: #fff!important;  
}
.text-white-color .col {
    color: #fff!important;
}
.text-white-color .btn {
    color: #fff!important;
    border: 1px solid #fff!important;
}

/* css for inear-gradient background */
.multi-clr .box {
    background: linear-gradient(90deg, #0A78CA, #8111BB);
}

  /* gray color */
.gray-clr .spn {
    color: #474747 !important;
}
/* remove button */
.remove-btn .btn {
    display: none;
}

.btn:hover{
border-color: #000 !important;
background-color: rgba(66,66,66,0.03) !important;
color: #000;
}
.btn:focus{
    color: #000;
    background-color:#ffe4c400!important;
    }
    
    .text-white-color .btn:hover {
    color: #fff!important;
     border: 1px solid #fff !important;
}
.text-white-color .btn:focus {
    color: #fff!important;
     border: 1px solid #fff !important;
}
/* css for 322 */
.connectivity .spn {
    font-size: 3.9vw !important;
}
.connectivity .tex {
    font-size: 2.5vw;
}
.see-more .spn {
    font-size: 5.6vw !important;
}
.large-size .spn{
    font-size: 5vw!important;
}

/*close button css*/
.modal .modal-close {
    right: 1.8%!important;
}
@media screen and (max-width: 900px) and (min-width: 60px) {
    .box{
        padding-right: 30px; 
    }
    .tex {
        font-size: 18px;
    }
    .spn {
        font-size: 34px;
    }
    .col {
        font-size: 18px;
    }
    .btn {
        font-size: 16px;
    }
     .connectivity .spn {
        font-size: 45px !important;
    }
    .connectivity .tex {
        font-size: 26px;
    }
    .see-more .spn {
        font-size: 55px !important;
    }
     .large-size .spn {
        font-size: 46px!important;
    }
    .bgd-unset .spn {
    font-size: 31px!important;
    }
    .bgd-unset .tex {
    font-size: 18px!important;
    }
    .bgd-unset .col {
    font-size: 17px!important;
    }
    .bg-white .spn{
            font-size: 34px;
    }
    .bg-white .spn{
    font-size: 35px!important;
    }
    .extra-span .spn {
    font-size: 35px!important;
    }
/* css for transparent background */

.bgd-unset .box{
    background-color: #e9dfdf00;
     padding-right: 30px!important; 
}
}
#s-2af6bf3c-0f35-4abe-af19-36031c8e5fa8 {
  margin-top: 0em;
margin-left: 0em;
margin-right: 40em;
}
@media (min-width: 768px) and (max-width: 991px){#s-2af6bf3c-0f35-4abe-af19-36031c8e5fa8 {
  margin-right: 25em;
}
}@media (max-width: 767px){#s-2af6bf3c-0f35-4abe-af19-36031c8e5fa8 {
  margin-right: 0em;
}
}
#s-93a56777-e8a0-4d93-b3e8-3eafce74cad8 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
}
@media (min-width: 1200px){#s-93a56777-e8a0-4d93-b3e8-3eafce74cad8 {
  margin-top: 0.5em;
margin-left: 1em;
margin-bottom: 0.5em;
margin-right: 1em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-93a56777-e8a0-4d93-b3e8-3eafce74cad8 {
  margin-top: 0.5em;
margin-left: 1em;
margin-bottom: 0.5em;
margin-right: 1em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-93a56777-e8a0-4d93-b3e8-3eafce74cad8 {
  margin-top: 0.5em;
margin-left: 0.5em;
margin-right: 0.5em;
}
}@media (max-width: 767px){#s-93a56777-e8a0-4d93-b3e8-3eafce74cad8 {
  margin-bottom: 0.5em;
}
}
@media (min-width: 0px) {
[id="s-93a56777-e8a0-4d93-b3e8-3eafce74cad8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-93a56777-e8a0-4d93-b3e8-3eafce74cad8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (min-width: 992px) {
[id="s-93a56777-e8a0-4d93-b3e8-3eafce74cad8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (min-width: 1200px) {
[id="s-93a56777-e8a0-4d93-b3e8-3eafce74cad8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.25em);
}

}

#s-494b85c5-9644-43ba-a6db-2d982fad7a7b {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-color: rgba(239, 239, 239, 1);
}
@media (min-width: 1200px){#s-494b85c5-9644-43ba-a6db-2d982fad7a7b {
  padding-bottom: 0em;
}
}@media (max-width: 767px){#s-494b85c5-9644-43ba-a6db-2d982fad7a7b {
  margin-left: 0.5em;
margin-bottom: 0.5em;
margin-right: 0.5em;
}
}







#s-494b85c5-9644-43ba-a6db-2d982fad7a7b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-494b85c5-9644-43ba-a6db-2d982fad7a7b.shg-box.shg-c {
  justify-content: center;
}

#s-af8da955-ab2b-4a02-a3ec-b96d8579d19a {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0.02);
border-style: solid;
}
@media (max-width: 767px){#s-af8da955-ab2b-4a02-a3ec-b96d8579d19a {
  margin-left: 0.5em;
margin-right: 0.5em;
}
}
#s-fed99f2c-7f89-427b-a3b0-711a82c7d7c5 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 15px;
min-height: 25em;
}
@media (max-width: 767px){#s-fed99f2c-7f89-427b-a3b0-711a82c7d7c5 {
  margin-left: 0.5em;
margin-right: 0.5em;
min-height: 0px;
}
}







#s-fed99f2c-7f89-427b-a3b0-711a82c7d7c5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fed99f2c-7f89-427b-a3b0-711a82c7d7c5.shg-box.shg-c {
  justify-content: center;
}

.fa-play-circle,
.fa-circle-pause {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 50px;
    background: #6317ff;
    border-radius: 50%;
}

.fa-widget{
    visibility:hidden !important;
}
.nb-shogun-video-container:hover .fa-widget{
    visibility:visible !important;
}
.nb-shogun-Video-section
{
     display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

.fa-play-circle:hover,
.fa-circle-pause:hover {
    cursor: pointer;
}

.nb-shogun-video-container
{
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;   
}
@media only screen and (max-width: 540px) {
    .Video-Div {
        width: 100%;
    }
}
@media (min-width: 1200px){#s-2861a110-b28a-4f76-810a-335504e3983b {
  margin-left: 1em;
margin-bottom: 1.5em;
margin-right: 1em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2861a110-b28a-4f76-810a-335504e3983b {
  margin-bottom: 1.5em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-2861a110-b28a-4f76-810a-335504e3983b {
  margin-top: 0.5em;
margin-left: 0.5em;
margin-bottom: 0.5em;
margin-right: 0.5em;
}
}@media (max-width: 767px){#s-2861a110-b28a-4f76-810a-335504e3983b {
  margin-bottom: 0.5em;
}
}
@media (min-width: 0px) {
[id="s-2861a110-b28a-4f76-810a-335504e3983b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2861a110-b28a-4f76-810a-335504e3983b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (min-width: 992px) {
[id="s-2861a110-b28a-4f76-810a-335504e3983b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (min-width: 1200px) {
[id="s-2861a110-b28a-4f76-810a-335504e3983b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (max-width: 767px) {
  [id="s-2861a110-b28a-4f76-810a-335504e3983b"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-4f06902a-5b72-47fe-95af-c8b0f1d0a8d5 {
  box-shadow:1px 1px 1px 1px rgba(255, 255, 255, 0);
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(199, 52, 52, 0);
border-style: solid;
border-radius: 15px;
min-height: 25em;
}
@media (min-width: 1200px){#s-4f06902a-5b72-47fe-95af-c8b0f1d0a8d5 {
  padding-bottom: 0em;
}
}@media (max-width: 767px){#s-4f06902a-5b72-47fe-95af-c8b0f1d0a8d5 {
  margin-left: 0.5em;
margin-bottom: 0.5em;
margin-right: 0.5em;
min-height: 0px;
}
}







#s-4f06902a-5b72-47fe-95af-c8b0f1d0a8d5 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 0.99);
  opacity: 0;
  display: block;
}#s-4f06902a-5b72-47fe-95af-c8b0f1d0a8d5.shg-box.shg-c {
  justify-content: center;
}

#s-4798b4b4-0b41-4120-84f7-b0e923b46e0b {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-color: rgba(239, 239, 239, 1);
}
@media (min-width: 1200px){#s-4798b4b4-0b41-4120-84f7-b0e923b46e0b {
  padding-bottom: 0em;
}
}@media (max-width: 767px){#s-4798b4b4-0b41-4120-84f7-b0e923b46e0b {
  margin-left: 0.5em;
margin-bottom: 0.5em;
margin-right: 0.5em;
}
}







#s-4798b4b4-0b41-4120-84f7-b0e923b46e0b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4798b4b4-0b41-4120-84f7-b0e923b46e0b.shg-box.shg-c {
  justify-content: center;
}

#video-container-amplifi {
  /*position: absolute;*/
  width: 100%;
  height: 100%;
  overflow: hidden; /* Hides overflowing video content */
  /*display: flex;*/
  /*justify-content: center;*/
}
#backgroundVideo-amplifi {
  top: 0;
  left: 0;
  /*height: 100%;*/
  width:100%; 
  -o-object-fit: cover; 
     object-fit: cover; /* Scales video to fill container */
  z-index: -1; /* Positions video behind other content within the container */
}
.text-field-container-amplifi {
  position: absolute;
  /*width: 100%;     */
  padding-left: 1em;
}
@media screen and (max-width: 900px) and (min-width: 60px) {
  #backgroundVideo-amplifi  {
            min-height: 17em!important;
    }
}

#s-64df6853-5661-48d1-8f8a-435282f3432c {
  margin-top: 0em;
margin-left: 0em;
margin-right: 30em;
}
@media (min-width: 768px) and (max-width: 991px){#s-64df6853-5661-48d1-8f8a-435282f3432c {
  margin-right: 25em;
}
}@media (max-width: 767px){#s-64df6853-5661-48d1-8f8a-435282f3432c {
  margin-right: 0em;
}
}
@media (min-width: 1200px){#s-9bcd29a3-fd9b-47a0-a5bb-c240df34cee2 {
  padding-top: 1.5em;
padding-left: 5em;
padding-bottom: 1.5em;
padding-right: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9bcd29a3-fd9b-47a0-a5bb-c240df34cee2 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-9bcd29a3-fd9b-47a0-a5bb-c240df34cee2 {
  
}
}@media (max-width: 767px){#s-9bcd29a3-fd9b-47a0-a5bb-c240df34cee2 {
  margin-left: 1em;
margin-right: 1em;
padding-top: 1em;
padding-bottom: 1em;
}
}
#s-0f4c6824-7d1c-4d09-b8b3-71c2459e22b1 {
  margin-left: 2em;
margin-bottom: 1em;
margin-right: 0em;
min-height: 50px;
}
@media (min-width: 1200px){#s-0f4c6824-7d1c-4d09-b8b3-71c2459e22b1 {
  padding-top: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-0f4c6824-7d1c-4d09-b8b3-71c2459e22b1 {
  padding-top: 0em;
padding-bottom: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-0f4c6824-7d1c-4d09-b8b3-71c2459e22b1 {
  padding-top: 0em;
padding-bottom: 0em;
}
}@media (max-width: 767px){#s-0f4c6824-7d1c-4d09-b8b3-71c2459e22b1 {
  margin-left: 0.5em;
}
}







#s-0f4c6824-7d1c-4d09-b8b3-71c2459e22b1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0f4c6824-7d1c-4d09-b8b3-71c2459e22b1.shg-box.shg-c {
  justify-content: center;
}

#s-f9c48179-4954-4b03-945d-998f34c09e2a {
  margin-left: 1em;
}
@media (min-width: 1200px){#s-f9c48179-4954-4b03-945d-998f34c09e2a {
  margin-left: 2em;
}
}@media (max-width: 767px){#s-f9c48179-4954-4b03-945d-998f34c09e2a {
  margin-left: 0.5em;
}
}
@media (min-width: 0px) {
[id="s-f9c48179-4954-4b03-945d-998f34c09e2a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f9c48179-4954-4b03-945d-998f34c09e2a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-f9c48179-4954-4b03-945d-998f34c09e2a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f9c48179-4954-4b03-945d-998f34c09e2a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-f9c48179-4954-4b03-945d-998f34c09e2a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f9c48179-4954-4b03-945d-998f34c09e2a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-f9c48179-4954-4b03-945d-998f34c09e2a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

.flex{
    display:flex;
    padding-bottom:10px;
}
.imgg{
  width:60px!important;
  padding-top:10px;
    
}
.tex{
    margin-left:10px;
}
.text-logo{
    
    margin-top: 30px;
}
.logo-text .tex{
    font-size: 1.5vw;
}
@media screen and (max-width: 900px) and (min-width: 60px) {
  .logo-text .tex{
    font-size: 13px;
}  
}
#s-56924dbb-4b1f-4c75-8094-0cb5fbcaff4d {
  margin-top: 0em;
margin-bottom: 0em;
}

#s-1ab0555d-8463-4625-af12-8b82e1726ded {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-1ab0555d-8463-4625-af12-8b82e1726ded {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-1ab0555d-8463-4625-af12-8b82e1726ded .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-1ab0555d-8463-4625-af12-8b82e1726ded .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-770505b2-5700-4f65-a8d3-a555ee95c225 {
  margin-top: -5em;
margin-left: 0em;
margin-bottom: 0em;
margin-right: 1em;
text-align: center;
}
@media (min-width: 1200px){#s-770505b2-5700-4f65-a8d3-a555ee95c225 {
  margin-top: -6em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-770505b2-5700-4f65-a8d3-a555ee95c225 {
  margin-top: -6em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-770505b2-5700-4f65-a8d3-a555ee95c225 {
  margin-top: -4em;
}
}@media (max-width: 767px){#s-770505b2-5700-4f65-a8d3-a555ee95c225 {
  display: none;
}
#s-770505b2-5700-4f65-a8d3-a555ee95c225, #wrap-s-770505b2-5700-4f65-a8d3-a555ee95c225, #wrap-content-s-770505b2-5700-4f65-a8d3-a555ee95c225 { display: none !important; }}
#s-770505b2-5700-4f65-a8d3-a555ee95c225 {
  overflow: hidden;
  
  
}








#s-770505b2-5700-4f65-a8d3-a555ee95c225 .shogun-image-content {
  
    justify-content: center;
  
}

#s-e4dfa631-7ed1-4452-9ffe-1a6496c70b1a {
  margin-top: -10%;
margin-bottom: 0em;
text-align: center;
}
@media (min-width: 1200px){#s-e4dfa631-7ed1-4452-9ffe-1a6496c70b1a {
  display: none;
}
#s-e4dfa631-7ed1-4452-9ffe-1a6496c70b1a, #wrap-s-e4dfa631-7ed1-4452-9ffe-1a6496c70b1a, #wrap-content-s-e4dfa631-7ed1-4452-9ffe-1a6496c70b1a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e4dfa631-7ed1-4452-9ffe-1a6496c70b1a {
  display: none;
}
#s-e4dfa631-7ed1-4452-9ffe-1a6496c70b1a, #wrap-s-e4dfa631-7ed1-4452-9ffe-1a6496c70b1a, #wrap-content-s-e4dfa631-7ed1-4452-9ffe-1a6496c70b1a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e4dfa631-7ed1-4452-9ffe-1a6496c70b1a {
  display: none;
}
#s-e4dfa631-7ed1-4452-9ffe-1a6496c70b1a, #wrap-s-e4dfa631-7ed1-4452-9ffe-1a6496c70b1a, #wrap-content-s-e4dfa631-7ed1-4452-9ffe-1a6496c70b1a { display: none !important; }}@media (max-width: 767px){#s-e4dfa631-7ed1-4452-9ffe-1a6496c70b1a {
  margin-top: 1em;
margin-bottom: 1em;
}
}
#s-e4dfa631-7ed1-4452-9ffe-1a6496c70b1a {
  overflow: hidden;
  
  
}







  #s-e4dfa631-7ed1-4452-9ffe-1a6496c70b1a img.shogun-image {
    

    
    
    
  }


#s-e4dfa631-7ed1-4452-9ffe-1a6496c70b1a .shogun-image-content {
  
    justify-content: center;
  
}

#s-f692e394-85c2-4f51-b5d2-0ef11bde563a {
  margin-top: -9em;
margin-left: 0em;
}

@media (min-width: 0px) {
[id="s-f692e394-85c2-4f51-b5d2-0ef11bde563a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f692e394-85c2-4f51-b5d2-0ef11bde563a"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-f692e394-85c2-4f51-b5d2-0ef11bde563a"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f692e394-85c2-4f51-b5d2-0ef11bde563a"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-f692e394-85c2-4f51-b5d2-0ef11bde563a"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f692e394-85c2-4f51-b5d2-0ef11bde563a"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-f692e394-85c2-4f51-b5d2-0ef11bde563a"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-3cf26e59-6a82-468b-b73d-7cf166a016fd {
  margin-top: 20%;
}
@media (min-width: 1200px){#s-3cf26e59-6a82-468b-b73d-7cf166a016fd {
  margin-top: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-3cf26e59-6a82-468b-b73d-7cf166a016fd {
  margin-top: 8%;
}
}@media (max-width: 767px){#s-3cf26e59-6a82-468b-b73d-7cf166a016fd {
  margin-top: 4em;
margin-left: 0em;
margin-bottom: 0em;
}
}
#s-df791f3e-387f-404d-8364-72c0f34baf29 {
  margin-left: 3em;
margin-right: 2em;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-df791f3e-387f-404d-8364-72c0f34baf29 {
  margin-top: 2em;
margin-bottom: 2em;
padding-left: 0em;
padding-right: 0em;
}
}@media (max-width: 767px){#s-df791f3e-387f-404d-8364-72c0f34baf29 {
  margin-top: 1em;
margin-left: 2em;
margin-bottom: 1em;
}
}







#s-df791f3e-387f-404d-8364-72c0f34baf29 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-df791f3e-387f-404d-8364-72c0f34baf29.shg-box.shg-c {
  justify-content: center;
}

#s-5d3f7e2a-be93-4459-834d-8547949cf0b0 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-5d3f7e2a-be93-4459-834d-8547949cf0b0 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-3771a867-009d-448d-8bf0-cb4dd05c011d {
  margin-top: 0em;
margin-left: auto;
margin-bottom: 0em;
margin-right: 20em;
min-height: 50px;
}
@media (min-width: 1200px){#s-3771a867-009d-448d-8bf0-cb4dd05c011d {
  margin-top: 0em;
}
}@media (max-width: 767px){#s-3771a867-009d-448d-8bf0-cb4dd05c011d {
  margin-right: 0em;
}
}







#s-3771a867-009d-448d-8bf0-cb4dd05c011d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-3771a867-009d-448d-8bf0-cb4dd05c011d.shg-box.shg-c {
  justify-content: center;
}

#s-07e86437-5aa9-4a2b-acda-cd1fae4e3868 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-07e86437-5aa9-4a2b-acda-cd1fae4e3868 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-07e86437-5aa9-4a2b-acda-cd1fae4e3868 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-07e86437-5aa9-4a2b-acda-cd1fae4e3868 .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-6126271e-bae6-45a0-9ae6-9b5c87220f1b {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 0px;
min-height: 50em;
}
@media (min-width: 1200px){#s-6126271e-bae6-45a0-9ae6-9b5c87220f1b {
  margin-left: 1em;
margin-right: 1em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6126271e-bae6-45a0-9ae6-9b5c87220f1b {
  margin-left: 1em;
margin-right: 1em;
}
}@media (max-width: 767px){#s-6126271e-bae6-45a0-9ae6-9b5c87220f1b {
  margin-left: 0.5em;
margin-right: 0.5em;
min-height: 17em;
}
}







#s-6126271e-bae6-45a0-9ae6-9b5c87220f1b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6126271e-bae6-45a0-9ae6-9b5c87220f1b.shg-box.shg-c {
  justify-content: center;
}

#s-fb65cc96-ba46-4957-a37d-d31fada3e55e {
  padding-top: 4em;
padding-left: 1em;
padding-bottom: 4em;
padding-right: 1em;
}
@media (max-width: 767px){#s-fb65cc96-ba46-4957-a37d-d31fada3e55e {
  padding-top: 1em;
padding-left: 0em;
padding-bottom: 1em;
padding-right: 0em;
}
}
@media (min-width: 0px) {
[id="s-fb65cc96-ba46-4957-a37d-d31fada3e55e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fb65cc96-ba46-4957-a37d-d31fada3e55e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-fb65cc96-ba46-4957-a37d-d31fada3e55e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-fb65cc96-ba46-4957-a37d-d31fada3e55e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-ed2a3e5b-9ff1-47b4-b64d-b5becfa7f600 {
  max-width: 75%;
text-align: center;
}

#s-ed2a3e5b-9ff1-47b4-b64d-b5becfa7f600 {
  overflow: hidden;
  
  
      max-width: 75%;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}







  #s-ed2a3e5b-9ff1-47b4-b64d-b5becfa7f600 img.shogun-image {
    

    
    
    
  }


#s-ed2a3e5b-9ff1-47b4-b64d-b5becfa7f600 .shogun-image-content {
  
    justify-content:  flex-start;
  
}

#s-98e669b7-f2c2-4da2-ae54-9c5486b39956 {
  padding-top: 0.5em;
padding-left: 1em;
padding-right: 1em;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-98e669b7-f2c2-4da2-ae54-9c5486b39956 {
  padding-left: 0.5em;
padding-right: 0.5em;
}
}







#s-98e669b7-f2c2-4da2-ae54-9c5486b39956 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-98e669b7-f2c2-4da2-ae54-9c5486b39956.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-01a6aefc-218c-4483-b628-ab4a0ac5e006"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-01a6aefc-218c-4483-b628-ab4a0ac5e006"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (min-width: 992px) {
[id="s-01a6aefc-218c-4483-b628-ab4a0ac5e006"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (min-width: 1200px) {
[id="s-01a6aefc-218c-4483-b628-ab4a0ac5e006"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.25em);
}

}

#s-c453c6d2-5bdc-4e7d-ae9c-4646498dde20 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-color: rgba(239, 239, 239, 1);
}
@media (max-width: 767px){#s-c453c6d2-5bdc-4e7d-ae9c-4646498dde20 {
  margin-top: 0em;
margin-bottom: 0.5em;
}
}







#s-c453c6d2-5bdc-4e7d-ae9c-4646498dde20 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c453c6d2-5bdc-4e7d-ae9c-4646498dde20.shg-box.shg-c {
  justify-content: center;
}

#s-19153dc2-844d-4ee4-9ff6-a45bdcccf9f1 {
  margin-top: 0em;
margin-bottom: 0em;
padding-left: 0em;
}
@media (max-width: 767px){#s-19153dc2-844d-4ee4-9ff6-a45bdcccf9f1 {
  margin-bottom: 0.5em;
}
}
#s-71e05b06-eab9-48a0-b9da-34b46b8a118b {
  min-height: 50px;
}








#s-71e05b06-eab9-48a0-b9da-34b46b8a118b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-71e05b06-eab9-48a0-b9da-34b46b8a118b.shg-box.shg-c {
  justify-content: center;
}

#s-d9122fd8-85a7-4035-959f-b0c58b051a7a {
  background-repeat: no-repeat;
background-size: cover;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-position: center center;
}
@media (max-width: 767px){#s-d9122fd8-85a7-4035-959f-b0c58b051a7a {
  min-height: 20em;
}
}







#s-d9122fd8-85a7-4035-959f-b0c58b051a7a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d9122fd8-85a7-4035-959f-b0c58b051a7a.shg-box.shg-c {
  justify-content: center;
}

#s-715e1119-a013-4e19-b863-a76b7bd75e19 {
  padding-top: 0.5em;
padding-left: 1em;
padding-right: 1em;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-715e1119-a013-4e19-b863-a76b7bd75e19 {
  padding-left: 0.5em;
padding-right: 0.5em;
}
}







#s-715e1119-a013-4e19-b863-a76b7bd75e19 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-715e1119-a013-4e19-b863-a76b7bd75e19.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-d4cba592-ba23-4d52-b68a-1cb33deede80"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d4cba592-ba23-4d52-b68a-1cb33deede80"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (min-width: 992px) {
[id="s-d4cba592-ba23-4d52-b68a-1cb33deede80"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (min-width: 1200px) {
[id="s-d4cba592-ba23-4d52-b68a-1cb33deede80"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.25em);
}

}

#s-4623e350-32c1-4c96-b6fc-51f96f18d804 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-color: rgba(239, 239, 239, 1);
}
@media (max-width: 767px){#s-4623e350-32c1-4c96-b6fc-51f96f18d804 {
  margin-bottom: 0.5em;
}
}







#s-4623e350-32c1-4c96-b6fc-51f96f18d804 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4623e350-32c1-4c96-b6fc-51f96f18d804.shg-box.shg-c {
  justify-content: center;
}

@media (max-width: 767px){#s-c51b744e-6028-455a-b0b6-be65a13886c4 {
  margin-bottom: 0.5em;
}
}
#s-75c79b29-19b6-439d-8aab-b1fb6c821d8e {
  background-repeat: no-repeat;
background-size: cover;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-position: center center;
}
@media (max-width: 767px){#s-75c79b29-19b6-439d-8aab-b1fb6c821d8e {
  min-height: 20em;
}
}







#s-75c79b29-19b6-439d-8aab-b1fb6c821d8e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-75c79b29-19b6-439d-8aab-b1fb6c821d8e.shg-box.shg-c {
  justify-content: center;
}

#s-236a99d1-fd36-4c07-9c8b-2bf83ec9f70a {
  padding-top: 4em;
padding-left: 1em;
padding-bottom: 3em;
padding-right: 1em;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-236a99d1-fd36-4c07-9c8b-2bf83ec9f70a {
  padding-top: 1em;
padding-left: 0.5em;
padding-bottom: 1em;
padding-right: 0.5em;
}
}
@media (min-width: 0px) {
[id="s-236a99d1-fd36-4c07-9c8b-2bf83ec9f70a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-236a99d1-fd36-4c07-9c8b-2bf83ec9f70a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (min-width: 992px) {
[id="s-236a99d1-fd36-4c07-9c8b-2bf83ec9f70a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (min-width: 1200px) {
[id="s-236a99d1-fd36-4c07-9c8b-2bf83ec9f70a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (max-width: 767px) {
  [id="s-236a99d1-fd36-4c07-9c8b-2bf83ec9f70a"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-d878f83b-6de9-43d1-a8fb-a18b35b5c613 {
  min-height: 50px;
}








#s-d878f83b-6de9-43d1-a8fb-a18b35b5c613 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d878f83b-6de9-43d1-a8fb-a18b35b5c613.shg-box.shg-c {
  justify-content: center;
}

#s-1ebeb0be-7324-4184-80cb-02695b35ffd4 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
text-align: center;
}

#s-1ebeb0be-7324-4184-80cb-02695b35ffd4 {
  overflow: hidden;
  
  
}







  #s-1ebeb0be-7324-4184-80cb-02695b35ffd4 img.shogun-image {
    

    
    
    
  }


#s-1ebeb0be-7324-4184-80cb-02695b35ffd4 .shogun-image-content {
  
    justify-content: center;
  
}

#s-1d9193f5-9e40-4e69-9555-bee3c0e018f0 {
  background-color: rgba(255, 255, 255, 1);
}

#s-31fab2d3-5416-48c4-a519-dfd1ed7f2368 {
  margin-top: 1em;
margin-left: 2em;
margin-bottom: 1em;
margin-right: 2em;
min-height: 50px;
}
@media (min-width: 1200px){#s-31fab2d3-5416-48c4-a519-dfd1ed7f2368 {
  margin-top: 4em;
margin-bottom: 4em;
}
}@media (max-width: 767px){#s-31fab2d3-5416-48c4-a519-dfd1ed7f2368 {
  margin-bottom: 4em;
}
}







#s-31fab2d3-5416-48c4-a519-dfd1ed7f2368 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-31fab2d3-5416-48c4-a519-dfd1ed7f2368.shg-box.shg-c {
  justify-content: center;
}

#s-b85f57a3-9374-4d8d-9df8-54abe939210b {
  text-align: left;
}

#s-8d0fbacc-fbe0-4518-a9de-a75adb0a4e8c {
  padding-top: 0em;
padding-left: 0em;
padding-bottom: 0em;
padding-right: 0em;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-8d0fbacc-fbe0-4518-a9de-a75adb0a4e8c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8d0fbacc-fbe0-4518-a9de-a75adb0a4e8c.shg-box.shg-c {
  justify-content: center;
}

#s-cb5fe534-04d3-4f10-a314-e8385b67e97f {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-cb5fe534-04d3-4f10-a314-e8385b67e97f {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-cb5fe534-04d3-4f10-a314-e8385b67e97f .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-cb5fe534-04d3-4f10-a314-e8385b67e97f .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-0e3618c0-cc70-4fd8-b818-7ee01eb939e1 {
  margin-top: 1%;
}

#s-738ca421-aeae-4996-8c72-ff86191f3996 {
  margin-top: 12px;
margin-left: 1em;
margin-bottom: 4em;
margin-right: 1em;
padding-left: 0%;
padding-right: 0%;
}
@media (max-width: 767px){#s-738ca421-aeae-4996-8c72-ff86191f3996 {
  margin-left: 0.5em;
margin-right: 0.5em;
}
}
@media (min-width: 0px) {
[id="s-738ca421-aeae-4996-8c72-ff86191f3996"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-738ca421-aeae-4996-8c72-ff86191f3996"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (min-width: 992px) {
[id="s-738ca421-aeae-4996-8c72-ff86191f3996"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (min-width: 1200px) {
[id="s-738ca421-aeae-4996-8c72-ff86191f3996"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.25em);
}

}

#s-4685561e-9fb5-43e5-9c3d-1198a44ec0ed {
  padding-top: 3em;
padding-left: 3em;
padding-bottom: 2em;
padding-right: 7em;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-color: rgba(239, 239, 239, 1);
}
@media (max-width: 767px){#s-4685561e-9fb5-43e5-9c3d-1198a44ec0ed {
  margin-left: 0em;
margin-bottom: 0.5em;
margin-right: 0em;
padding-top: 3em;
padding-left: 2em;
padding-bottom: 2em;
padding-right: 2em;
}
}







#s-4685561e-9fb5-43e5-9c3d-1198a44ec0ed > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4685561e-9fb5-43e5-9c3d-1198a44ec0ed.shg-box.shg-c {
  justify-content: flex-start;
}

@media (min-width: 0px) {
[id="s-70b4b6ae-e0c6-4845-bdab-79f016345876"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-70b4b6ae-e0c6-4845-bdab-79f016345876"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-70b4b6ae-e0c6-4845-bdab-79f016345876"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-70b4b6ae-e0c6-4845-bdab-79f016345876"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-70b4b6ae-e0c6-4845-bdab-79f016345876"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-70b4b6ae-e0c6-4845-bdab-79f016345876"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-70b4b6ae-e0c6-4845-bdab-79f016345876"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

}

#s-753763bf-429f-40a8-b6d3-1c65dd9794e0 {
  max-width: 541px;
text-align: center;
}
@media (max-width: 767px){#s-753763bf-429f-40a8-b6d3-1c65dd9794e0 {
  margin-bottom: 1em;
}
}
#s-753763bf-429f-40a8-b6d3-1c65dd9794e0 {
  overflow: hidden;
  
  
      max-width: 541px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-753763bf-429f-40a8-b6d3-1c65dd9794e0 .shogun-image-content {
  
    justify-content: center;
  
}

#s-f2e2a971-3d10-42b5-9558-e666fbb25826 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-f2e2a971-3d10-42b5-9558-e666fbb25826 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-f2e2a971-3d10-42b5-9558-e666fbb25826 .shogun-heading-component h5 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-f2e2a971-3d10-42b5-9558-e666fbb25826 .shogun-heading-component h5 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-61d93ab5-ad91-421b-987c-0f4f0d019bfb {
  margin-bottom: 0.5em;
padding-top: 1.5em;
}
@media (max-width: 767px){#s-61d93ab5-ad91-421b-987c-0f4f0d019bfb {
  margin-top: 3%;
padding-top: 0px;
}
}
.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

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

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

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

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

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

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

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

#s-5da41407-ac36-408d-91f7-091015016727 {
  border-style: solid;
margin-right: 0.5em;
padding-top: 5px;
padding-left: 17px;
padding-bottom: 5px;
padding-right: 17px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 1);
border-radius: 10px;
background-color: rgba(239, 239, 239, 0);
text-align: left;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-5da41407-ac36-408d-91f7-091015016727:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
border-radius: 10px !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-5da41407-ac36-408d-91f7-091015016727:active {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
border-radius: 10px !important;
background-color: rgba(239, 239, 239, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}@media (min-width: 768px) and (max-width: 991px){#s-5da41407-ac36-408d-91f7-091015016727 {
  padding-left: 12px;
padding-right: 12px;
}
}@media (max-width: 767px){#s-5da41407-ac36-408d-91f7-091015016727 {
  padding-left: 10px;
padding-right: 10px;
}
}

  #s-5da41407-ac36-408d-91f7-091015016727-root {
    text-align: left;
  }


#s-5da41407-ac36-408d-91f7-091015016727.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-5da41407-ac36-408d-91f7-091015016727-root {
    text-align: left;
  }


#s-5da41407-ac36-408d-91f7-091015016727.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5da41407-ac36-408d-91f7-091015016727-root {
    text-align: left;
  }


#s-5da41407-ac36-408d-91f7-091015016727.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5da41407-ac36-408d-91f7-091015016727-root {
    text-align: left;
  }


#s-5da41407-ac36-408d-91f7-091015016727.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-5da41407-ac36-408d-91f7-091015016727-root {
    text-align: left;
  }


#s-5da41407-ac36-408d-91f7-091015016727.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}
#s-fe426c4a-d3aa-4aec-8987-174884865ca2 {
  padding-top: 3em;
padding-left: 3em;
padding-bottom: 2em;
padding-right: 7em;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-color: rgba(239, 239, 239, 1);
}
@media (max-width: 767px){#s-fe426c4a-d3aa-4aec-8987-174884865ca2 {
  margin-top: 0em;
margin-left: 0em;
margin-bottom: 0em;
margin-right: 0em;
padding-top: 2em;
padding-left: 2em;
padding-bottom: 1em;
padding-right: 2em;
}
}







#s-fe426c4a-d3aa-4aec-8987-174884865ca2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fe426c4a-d3aa-4aec-8987-174884865ca2.shg-box.shg-c {
  justify-content: center;
}

#s-c6f64edb-1cd1-4438-8a76-7a05e0113887 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-c6f64edb-1cd1-4438-8a76-7a05e0113887 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-c6f64edb-1cd1-4438-8a76-7a05e0113887 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-c6f64edb-1cd1-4438-8a76-7a05e0113887 .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-eeddc0c3-b96a-4fbb-9495-41da3ba82918 {
  padding-top: 1em;
padding-bottom: 1em;
}

#s-3bd161c9-699e-45ec-97d0-4c4adbf5e952 {
  border-style: solid;
margin-right: 0.5em;
padding-top: 5px;
padding-left: 17px;
padding-bottom: 5px;
padding-right: 17px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 1);
border-radius: 10px;
background-color: rgba(239, 239, 239, 0);
text-align: left;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-3bd161c9-699e-45ec-97d0-4c4adbf5e952:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
border-radius: 10px !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-3bd161c9-699e-45ec-97d0-4c4adbf5e952:active {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
border-radius: 10px !important;
background-color: rgba(239, 239, 239, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}@media (min-width: 768px) and (max-width: 991px){#s-3bd161c9-699e-45ec-97d0-4c4adbf5e952 {
  padding-left: 12px;
padding-right: 12px;
}
}@media (max-width: 767px){#s-3bd161c9-699e-45ec-97d0-4c4adbf5e952 {
  padding-left: 10px;
padding-right: 10px;
}
}

  #s-3bd161c9-699e-45ec-97d0-4c4adbf5e952-root {
    text-align: left;
  }


#s-3bd161c9-699e-45ec-97d0-4c4adbf5e952.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-3bd161c9-699e-45ec-97d0-4c4adbf5e952-root {
    text-align: left;
  }


#s-3bd161c9-699e-45ec-97d0-4c4adbf5e952.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3bd161c9-699e-45ec-97d0-4c4adbf5e952-root {
    text-align: left;
  }


#s-3bd161c9-699e-45ec-97d0-4c4adbf5e952.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3bd161c9-699e-45ec-97d0-4c4adbf5e952-root {
    text-align: left;
  }


#s-3bd161c9-699e-45ec-97d0-4c4adbf5e952.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-3bd161c9-699e-45ec-97d0-4c4adbf5e952-root {
    text-align: left;
  }


#s-3bd161c9-699e-45ec-97d0-4c4adbf5e952.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}
#s-f5a43680-558c-4719-a137-a9a316d5f259 {
  margin-top: 1em;
margin-bottom: 1em;
min-height: 50px;
}
@media (min-width: 1200px){#s-f5a43680-558c-4719-a137-a9a316d5f259 {
  display: none;
}
#s-f5a43680-558c-4719-a137-a9a316d5f259, #wrap-s-f5a43680-558c-4719-a137-a9a316d5f259, #wrap-content-s-f5a43680-558c-4719-a137-a9a316d5f259 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f5a43680-558c-4719-a137-a9a316d5f259 {
  display: none;
}
#s-f5a43680-558c-4719-a137-a9a316d5f259, #wrap-s-f5a43680-558c-4719-a137-a9a316d5f259, #wrap-content-s-f5a43680-558c-4719-a137-a9a316d5f259 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f5a43680-558c-4719-a137-a9a316d5f259 {
  display: none;
}
#s-f5a43680-558c-4719-a137-a9a316d5f259, #wrap-s-f5a43680-558c-4719-a137-a9a316d5f259, #wrap-content-s-f5a43680-558c-4719-a137-a9a316d5f259 { display: none !important; }}







#s-f5a43680-558c-4719-a137-a9a316d5f259 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f5a43680-558c-4719-a137-a9a316d5f259.shg-box.shg-c {
  justify-content: center;
}

#s-7622e0a4-9ec2-4117-9daa-32594fd46462 {
  margin-top: 0em;
margin-bottom: 0em;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-7622e0a4-9ec2-4117-9daa-32594fd46462 {
  margin-bottom: 0em;
}
}







#s-7622e0a4-9ec2-4117-9daa-32594fd46462 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7622e0a4-9ec2-4117-9daa-32594fd46462.shg-box.shg-c {
  justify-content: center;
}

#s-d486e6c2-db32-4ccf-9683-c08836b07a03 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-d486e6c2-db32-4ccf-9683-c08836b07a03 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-d486e6c2-db32-4ccf-9683-c08836b07a03 .shogun-heading-component h3 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


#s-d486e6c2-db32-4ccf-9683-c08836b07a03 .shogun-heading-component h3 a {
  color: rgba(0, 0, 0, 1);
}

@media (min-width: 992px) and (max-width: 1199px){#s-d486e6c2-db32-4ccf-9683-c08836b07a03 .shogun-heading-component h3 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


#s-d486e6c2-db32-4ccf-9683-c08836b07a03 .shogun-heading-component h3 a {
  color: rgba(99, 23, 255, 1);
}

}
#s-4c71ffcb-59a6-44d1-8c2a-e4717fc98126 {
  margin-top: 2em;
margin-left: 20%;
margin-bottom: 4em;
margin-right: 20%;
}
@media (min-width: 1200px){#s-4c71ffcb-59a6-44d1-8c2a-e4717fc98126 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4c71ffcb-59a6-44d1-8c2a-e4717fc98126 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-4c71ffcb-59a6-44d1-8c2a-e4717fc98126 {
  
}
}@media (max-width: 767px){#s-4c71ffcb-59a6-44d1-8c2a-e4717fc98126 {
  margin-top: 1em;
margin-left: 0.5em;
margin-bottom: 2em;
margin-right: 0.5em;
}
}
@media (min-width: 0px) {
[id="s-4c71ffcb-59a6-44d1-8c2a-e4717fc98126"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-4c71ffcb-59a6-44d1-8c2a-e4717fc98126"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-4c71ffcb-59a6-44d1-8c2a-e4717fc98126"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-4c71ffcb-59a6-44d1-8c2a-e4717fc98126"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}


        .nb_icon_container {
            text-align: center;
            margin-top: 15px;
    
        }
        
.nb_icons{
        max-width: 60% !important;
}
        .nb_icons:hover {
            transform: scale(1.1);
            cursor: pointer;
        }

        .up_down_arrow {
            width: 30px;
            height: 15px;
            transition: 0.5s;
        }

        .up_down_arrow:hover {
            cursor: pointer;
        }
        .up_down_arrow_clicked{
            transform: rotate(3.142rad);
        }
        .main-content{
            margin-top:15px;
        }

        .spec_content {
            background: #efefef;
            border-radius: 20px;
            padding: 20px;
            word-break: break-word;
            text-align: center;
            /*position: absolute;*/
            width: 200px;
            height: auto;
            z-index: 99999;
            margin-top: 10%;
            display: none;
        }

        .show_me {
            display: block;
            animation: fadein 2s; 
        }

        @keyframes fadein {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }
        .parent_div {
            display: flex;
            align-items: center;
            flex-direction: column;
        }
        
        @media only screen and (max-width: 540px) {
            .spec_content {
                /*position: absolute;*/
            }
        }
#s-3a397aa1-5b5b-4e8c-aa7d-3ae425d14a1a {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-3a397aa1-5b5b-4e8c-aa7d-3ae425d14a1a {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-3a397aa1-5b5b-4e8c-aa7d-3ae425d14a1a .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-3a397aa1-5b5b-4e8c-aa7d-3ae425d14a1a .shogun-heading-component h4 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-b02d4650-21b4-4394-97a2-3aa03c4f10a4 {
  margin-top: 12px;
margin-left: 1em;
margin-bottom: 4em;
margin-right: 1em;
padding-bottom: 0em;
}
@media (min-width: 768px) and (max-width: 991px){#s-b02d4650-21b4-4394-97a2-3aa03c4f10a4 {
  margin-left: 0.5em;
margin-right: 0.5em;
}
}@media (max-width: 767px){#s-b02d4650-21b4-4394-97a2-3aa03c4f10a4 {
  margin-left: 0.5em;
margin-right: 0.5em;
}
}
@media (min-width: 0px) {
[id="s-b02d4650-21b4-4394-97a2-3aa03c4f10a4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b02d4650-21b4-4394-97a2-3aa03c4f10a4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (min-width: 992px) {
[id="s-b02d4650-21b4-4394-97a2-3aa03c4f10a4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (min-width: 1200px) {
[id="s-b02d4650-21b4-4394-97a2-3aa03c4f10a4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (max-width: 767px) {
  [id="s-b02d4650-21b4-4394-97a2-3aa03c4f10a4"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-8badefda-0fe5-4aff-9761-33ec20f01b4a {
  min-height: 50px;
}








#s-8badefda-0fe5-4aff-9761-33ec20f01b4a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8badefda-0fe5-4aff-9761-33ec20f01b4a.shg-box.shg-c {
  justify-content: center;
}

#s-da373131-c77a-4f5b-b14c-c03b84a5d7fc {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-color: rgba(18, 18, 18, 1);
}
@media (max-width: 767px){#s-da373131-c77a-4f5b-b14c-c03b84a5d7fc {
  margin-top: 0em;
margin-left: 0em;
margin-bottom: 0.5em;
margin-right: 0em;
padding-bottom: 3em;
}
}







#s-da373131-c77a-4f5b-b14c-c03b84a5d7fc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-da373131-c77a-4f5b-b14c-c03b84a5d7fc.shg-box.shg-c {
  justify-content: center;
}

#s-c74b5c86-70c7-4976-807f-c1a9e92a2f22 {
  min-height: 50px;
}








#s-c74b5c86-70c7-4976-807f-c1a9e92a2f22 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c74b5c86-70c7-4976-807f-c1a9e92a2f22.shg-box.shg-c {
  justify-content: center;
}

#s-9a352d1a-c3aa-4303-8d27-0c077026202d {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-9a352d1a-c3aa-4303-8d27-0c077026202d {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-9a352d1a-c3aa-4303-8d27-0c077026202d .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-9a352d1a-c3aa-4303-8d27-0c077026202d .shogun-heading-component h4 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-05090f87-99a1-418d-a4d0-709c415f3d53 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
}
@media (max-width: 767px){#s-05090f87-99a1-418d-a4d0-709c415f3d53 {
  margin-top: 3em;
}
}







#s-05090f87-99a1-418d-a4d0-709c415f3d53 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-05090f87-99a1-418d-a4d0-709c415f3d53.shg-box.shg-c {
  justify-content: center;
}

#s-fb4df964-f871-4655-8dc4-313e769d2386 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-fb4df964-f871-4655-8dc4-313e769d2386 {
  margin-left: 1em;
margin-right: 1em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-fb4df964-f871-4655-8dc4-313e769d2386 {
  margin-left: 1em;
margin-right: 1em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-fb4df964-f871-4655-8dc4-313e769d2386 {
  margin-left: 1em;
margin-right: 1em;
}
}@media (max-width: 767px){#s-fb4df964-f871-4655-8dc4-313e769d2386 {
  margin-left: 0.5em;
margin-right: 0.5em;
}
}







#s-fb4df964-f871-4655-8dc4-313e769d2386 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fb4df964-f871-4655-8dc4-313e769d2386.shg-box.shg-c {
  justify-content: center;
}

#s-8365a5ff-6151-4f7f-a49e-6042f103b87f {
  min-height: 50px;
}
@media (min-width: 1200px){#s-8365a5ff-6151-4f7f-a49e-6042f103b87f {
  margin-left: 1em;
margin-right: 1em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-8365a5ff-6151-4f7f-a49e-6042f103b87f {
  margin-left: 1em;
margin-right: 1em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-8365a5ff-6151-4f7f-a49e-6042f103b87f {
  margin-left: 1em;
margin-right: 1em;
}
}@media (max-width: 767px){#s-8365a5ff-6151-4f7f-a49e-6042f103b87f {
  margin-left: 0.5em;
margin-right: 0.5em;
}
}







#s-8365a5ff-6151-4f7f-a49e-6042f103b87f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8365a5ff-6151-4f7f-a49e-6042f103b87f.shg-box.shg-c {
  justify-content: center;
}

#s-9525129b-b3b6-4fe0-a780-ac680fd1cfe3 {
  min-height: 50px;
}








#s-9525129b-b3b6-4fe0-a780-ac680fd1cfe3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9525129b-b3b6-4fe0-a780-ac680fd1cfe3.shg-box.shg-c {
  justify-content: center;
}

#s-d6e54b43-5b6a-417d-b887-354e4bda4e56 {
  margin-top: 12px;
margin-left: 0%;
margin-bottom: 0.5em;
margin-right: 0%;
}

@media (min-width: 0px) {
[id="s-d6e54b43-5b6a-417d-b887-354e4bda4e56"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d6e54b43-5b6a-417d-b887-354e4bda4e56"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 992px) {
[id="s-d6e54b43-5b6a-417d-b887-354e4bda4e56"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 1200px) {
[id="s-d6e54b43-5b6a-417d-b887-354e4bda4e56"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

#s-02a75931-2e7e-43f3-882e-8a81852358c1 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 10px;
background-color: rgba(239, 239, 239, 1);
}
@media (max-width: 767px){#s-02a75931-2e7e-43f3-882e-8a81852358c1 {
  margin-top: 0em;
margin-bottom: 0.5em;
}
}







#s-02a75931-2e7e-43f3-882e-8a81852358c1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-02a75931-2e7e-43f3-882e-8a81852358c1.shg-box.shg-c {
  justify-content: center;
}

#s-dad11c3d-2d73-45d4-b144-3dbe4bb646e1 {
  min-height: 50px;
}








#s-dad11c3d-2d73-45d4-b144-3dbe4bb646e1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-dad11c3d-2d73-45d4-b144-3dbe4bb646e1.shg-box.shg-c {
  justify-content: center;
}

#s-979bc672-a40e-4413-a9d8-08df11af2459 {
  text-align: right;
}

.shg-product-title-component h1 span,
.shg-product-title-component h2 span,
.shg-product-title-component h3 span,
.shg-product-title-component h4 span,
.shg-product-title-component h5 span,
.shg-product-title-component h6 span {
  margin: 0;
  padding: 0;
  display: block;
  color: ;
  font-family: ;
  text-transform: none;
  font-weight: ;
  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-ca0da729-5365-404c-b5c4-1d430218156d {
  margin-top: 0.5em;
margin-bottom: 0.5em;
text-align: left;
}

#s-ca0da729-5365-404c-b5c4-1d430218156d .shg-product-title-component h3 span {
  color: rgba(99, 23, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  
  line-height: ;
  letter-spacing: ;
  text-align: left;
}

#s-680a76bc-3714-45e2-baad-d4a12d0fec73 {
  text-align: right;
}
@media (min-width: 1200px){#s-680a76bc-3714-45e2-baad-d4a12d0fec73 {
  padding-left: 0%;
padding-right: 0%;
}
}
#s-680a76bc-3714-45e2-baad-d4a12d0fec73 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 35px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-680a76bc-3714-45e2-baad-d4a12d0fec73 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 35px;
}

#s-680a76bc-3714-45e2-baad-d4a12d0fec73 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(160, 160, 160, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}
@media (min-width: 1200px){#s-680a76bc-3714-45e2-baad-d4a12d0fec73 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 35px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-680a76bc-3714-45e2-baad-d4a12d0fec73 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 35px;
}

#s-680a76bc-3714-45e2-baad-d4a12d0fec73 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(160, 160, 160, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-680a76bc-3714-45e2-baad-d4a12d0fec73 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 35px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-680a76bc-3714-45e2-baad-d4a12d0fec73 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 35px;
}

#s-680a76bc-3714-45e2-baad-d4a12d0fec73 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(160, 160, 160, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-680a76bc-3714-45e2-baad-d4a12d0fec73 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 30px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-680a76bc-3714-45e2-baad-d4a12d0fec73 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 30px;
}

#s-680a76bc-3714-45e2-baad-d4a12d0fec73 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(160, 160, 160, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}
}@media (max-width: 767px){#s-680a76bc-3714-45e2-baad-d4a12d0fec73 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-680a76bc-3714-45e2-baad-d4a12d0fec73 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 25px;
}

#s-680a76bc-3714-45e2-baad-d4a12d0fec73 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(160, 160, 160, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}
}
#s-9dcb3779-29a6-478a-966a-921150da4b68 {
  margin-top: 0.5em;
margin-bottom: 0.5em;
padding-right: 5%;
}

#s-29f0c4f7-28f7-4046-ae8d-7a225b6c7908 {
  margin-top: 5%;
margin-left: 0%;
margin-bottom: 5%;
margin-right: 0%;
}

@media (min-width: 0px) {
[id="s-29f0c4f7-28f7-4046-ae8d-7a225b6c7908"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-29f0c4f7-28f7-4046-ae8d-7a225b6c7908"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-29f0c4f7-28f7-4046-ae8d-7a225b6c7908"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-29f0c4f7-28f7-4046-ae8d-7a225b6c7908"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-29f0c4f7-28f7-4046-ae8d-7a225b6c7908"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-29f0c4f7-28f7-4046-ae8d-7a225b6c7908"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-29f0c4f7-28f7-4046-ae8d-7a225b6c7908"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

}

#s-03647443-02d6-4f05-bd98-2fcbc03f2971 {
  max-width: 1200px;
text-align: center;
}

#s-03647443-02d6-4f05-bd98-2fcbc03f2971 {
  overflow: hidden;
  
  
      max-width: 1200px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-03647443-02d6-4f05-bd98-2fcbc03f2971 .shogun-image-content {
  
    justify-content: center;
  
}

.gallery-open img {
        height: 4em;
    width: 2.7rem;
    -o-object-fit: contain;
       object-fit: contain;
}
#gallery{
    font-family: 'Roobert-Regular'!important;
    line-height: 1;  
}
#s-9e541304-acc9-4572-b8ae-a262b1d35a32 {
  text-align: right;
}
@media (max-width: 767px){#s-9e541304-acc9-4572-b8ae-a262b1d35a32 {
  text-align: center;
display: none;
}
#s-9e541304-acc9-4572-b8ae-a262b1d35a32, #wrap-s-9e541304-acc9-4572-b8ae-a262b1d35a32, #wrap-content-s-9e541304-acc9-4572-b8ae-a262b1d35a32 { display: none !important; }}
@media (min-width: 0px) {
[id="s-7a3c8bf4-b64f-4b2c-a7ed-9ce66f285a41"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 768px) {
[id="s-7a3c8bf4-b64f-4b2c-a7ed-9ce66f285a41"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 992px) {
[id="s-7a3c8bf4-b64f-4b2c-a7ed-9ce66f285a41"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 1200px) {
[id="s-7a3c8bf4-b64f-4b2c-a7ed-9ce66f285a41"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 4.0px);
}

}

#s-69e0456e-f1c0-43fd-982c-b2a5e8ba2ad4 {
  border-style: solid;
margin-right: 0.5em;
padding-top: 5px;
padding-left: 17px;
padding-bottom: 5px;
padding-right: 17px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 1);
border-radius: 10px;
background-color: rgba(239, 239, 239, 0);
text-align: right;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-69e0456e-f1c0-43fd-982c-b2a5e8ba2ad4:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
border-radius: 10px !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-69e0456e-f1c0-43fd-982c-b2a5e8ba2ad4:active {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
border-radius: 10px !important;
background-color: rgba(239, 239, 239, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}@media (min-width: 768px) and (max-width: 991px){#s-69e0456e-f1c0-43fd-982c-b2a5e8ba2ad4 {
  padding-left: 12px;
padding-right: 12px;
}
}@media (max-width: 767px){#s-69e0456e-f1c0-43fd-982c-b2a5e8ba2ad4 {
  padding-left: 10px;
padding-right: 10px;
}
}

  #s-69e0456e-f1c0-43fd-982c-b2a5e8ba2ad4-root {
    text-align: right;
  }


#s-69e0456e-f1c0-43fd-982c-b2a5e8ba2ad4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-69e0456e-f1c0-43fd-982c-b2a5e8ba2ad4-root {
    text-align: right;
  }


#s-69e0456e-f1c0-43fd-982c-b2a5e8ba2ad4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-69e0456e-f1c0-43fd-982c-b2a5e8ba2ad4-root {
    text-align: right;
  }


#s-69e0456e-f1c0-43fd-982c-b2a5e8ba2ad4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-69e0456e-f1c0-43fd-982c-b2a5e8ba2ad4-root {
    text-align: right;
  }


#s-69e0456e-f1c0-43fd-982c-b2a5e8ba2ad4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-69e0456e-f1c0-43fd-982c-b2a5e8ba2ad4-root {
    text-align: right;
  }


#s-69e0456e-f1c0-43fd-982c-b2a5e8ba2ad4.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}
.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

.shg-product-atc-wrapper {
  position: relative;
}

.shg-product-atc-btn {
  position: relative;
  z-index: 2;
  display: block;
  border: none;
  align-items: normal;
  box-sizing: border-box;
  cursor: pointer;
  transition: opacity 200ms linear;
  opacity: 1;
}

.shg-product-atc-btn-opaque {
  opacity: 0;
}

.shg-product-atc-info-box {
  position: absolute;
  z-index: 1;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  text-align: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

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

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

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

#s-70ee1af1-9547-4fcd-a1f0-03a6483f9662 {
  border-style: solid;
margin-left: 0%;
margin-right: 0%;
padding-top: 4px;
padding-left: 17px;
padding-bottom: 4px;
padding-right: 17px;
border-color: rgba(99, 23, 255, 1);
border-radius: 10px;
background-color: rgba(99, 23, 255, 1);
text-align: left;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-70ee1af1-9547-4fcd-a1f0-03a6483f9662:hover {border-style: solid !important;
border-color: rgba(71, 24, 167, 1) !important;
border-radius: 10px !important;
background-color: rgba(71, 24, 167, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-70ee1af1-9547-4fcd-a1f0-03a6483f9662:active {border-style: solid !important;
border-color: rgba(95, 34, 221, 1) !important;
border-radius: 10px !important;
background-color: rgba(95, 34, 221, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-70ee1af1-9547-4fcd-a1f0-03a6483f9662-atc-btn-wrapper {
    text-align: left;
  }


#s-70ee1af1-9547-4fcd-a1f0-03a6483f9662 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-70ee1af1-9547-4fcd-a1f0-03a6483f9662.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-70ee1af1-9547-4fcd-a1f0-03a6483f9662.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-70ee1af1-9547-4fcd-a1f0-03a6483f9662.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-70ee1af1-9547-4fcd-a1f0-03a6483f9662-atc-btn-wrapper {
    text-align: left;
  }


#s-70ee1af1-9547-4fcd-a1f0-03a6483f9662 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-70ee1af1-9547-4fcd-a1f0-03a6483f9662.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-70ee1af1-9547-4fcd-a1f0-03a6483f9662.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-70ee1af1-9547-4fcd-a1f0-03a6483f9662.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-70ee1af1-9547-4fcd-a1f0-03a6483f9662-atc-btn-wrapper {
    text-align: left;
  }


#s-70ee1af1-9547-4fcd-a1f0-03a6483f9662 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-70ee1af1-9547-4fcd-a1f0-03a6483f9662.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-70ee1af1-9547-4fcd-a1f0-03a6483f9662.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-70ee1af1-9547-4fcd-a1f0-03a6483f9662.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-70ee1af1-9547-4fcd-a1f0-03a6483f9662-atc-btn-wrapper {
    text-align: left;
  }


#s-70ee1af1-9547-4fcd-a1f0-03a6483f9662 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-70ee1af1-9547-4fcd-a1f0-03a6483f9662.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-70ee1af1-9547-4fcd-a1f0-03a6483f9662.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-70ee1af1-9547-4fcd-a1f0-03a6483f9662.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-70ee1af1-9547-4fcd-a1f0-03a6483f9662-atc-btn-wrapper {
    text-align: left;
  }


#s-70ee1af1-9547-4fcd-a1f0-03a6483f9662 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-70ee1af1-9547-4fcd-a1f0-03a6483f9662.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-70ee1af1-9547-4fcd-a1f0-03a6483f9662.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-70ee1af1-9547-4fcd-a1f0-03a6483f9662.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-95f1a5c2-a613-43a0-b4ee-52174398b941 {
  min-height: 50px;
}








#s-95f1a5c2-a613-43a0-b4ee-52174398b941 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-95f1a5c2-a613-43a0-b4ee-52174398b941.shg-box.shg-c {
  justify-content: center;
}

#s-ffa2a926-5258-4726-9348-7789852497b2 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-ffa2a926-5258-4726-9348-7789852497b2 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-ffa2a926-5258-4726-9348-7789852497b2 .shg-sld-nav-button.shg-sld-left,
#s-ffa2a926-5258-4726-9348-7789852497b2 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-bb2899bc-715e-433c-9c72-ecf474b9f345 {
  text-align: center;
}

#s-bb2899bc-715e-433c-9c72-ecf474b9f345 {
  overflow: hidden;
  
  
}







  #s-bb2899bc-715e-433c-9c72-ecf474b9f345 img.shogun-image {
    

    
    
    
  }


#s-bb2899bc-715e-433c-9c72-ecf474b9f345 .shogun-image-content {
  
    justify-content: center;
  
}

#s-833b954d-617f-4c1f-a4db-ad0cccef4f68 {
  text-align: center;
}

#s-833b954d-617f-4c1f-a4db-ad0cccef4f68 {
  overflow: hidden;
  
  
}







  #s-833b954d-617f-4c1f-a4db-ad0cccef4f68 img.shogun-image {
    

    
    
    
  }


#s-833b954d-617f-4c1f-a4db-ad0cccef4f68 .shogun-image-content {
  
    justify-content: center;
  
}

#s-0bebce98-8ab7-4d36-a388-dbe59179b131 {
  text-align: center;
}

#s-0bebce98-8ab7-4d36-a388-dbe59179b131 {
  overflow: hidden;
  
  
}







  #s-0bebce98-8ab7-4d36-a388-dbe59179b131 img.shogun-image {
    

    
    
    
  }


#s-0bebce98-8ab7-4d36-a388-dbe59179b131 .shogun-image-content {
  
    justify-content: center;
  
}

#s-3291adb7-8669-4289-9e0f-3effa9fbee70 {
  text-align: center;
}

#s-3291adb7-8669-4289-9e0f-3effa9fbee70 {
  overflow: hidden;
  
  
}







  #s-3291adb7-8669-4289-9e0f-3effa9fbee70 img.shogun-image {
    

    
    
    
  }


#s-3291adb7-8669-4289-9e0f-3effa9fbee70 .shogun-image-content {
  
    justify-content: center;
  
}

.gradient-close-button{
    background:#6317ff !important;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 18px;
    padding: 5px;
    color: #fff !important;
    font-weight: 600;
    border-radius: 5px;
    z-index: 99999;
    text-decoration: none;
    font-size:23px;
    margin-left: 2.2rem;
    margin-top: -3.6rem;
    position: absolute;
}
.gradient-close-button .fa{
    font-size: larger!important;
    color:#fff !important;
       
}
#s-6f4aef5d-42ac-4c45-9a5f-36607c4939ce {
  margin-left: 0px;
text-align: center;
}

#s-6cc903da-9b9c-4152-8983-ad280bb80f97 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 10px;
background-color: rgba(239, 239, 239, 1);
}
@media (max-width: 767px){#s-6cc903da-9b9c-4152-8983-ad280bb80f97 {
  margin-top: 8px;
margin-bottom: 8px;
}
}







#s-6cc903da-9b9c-4152-8983-ad280bb80f97 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6cc903da-9b9c-4152-8983-ad280bb80f97.shg-box.shg-c {
  justify-content: center;
}

#s-8e3a416b-b42e-47ce-b2bf-def80127e452 {
  min-height: 50px;
}








#s-8e3a416b-b42e-47ce-b2bf-def80127e452 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8e3a416b-b42e-47ce-b2bf-def80127e452.shg-box.shg-c {
  justify-content: center;
}

#s-4d503dd5-8b20-4e28-b210-bb42091bc83c {
  text-align: right;
}

#s-251091d9-7433-4ee5-87b2-8e7fc4f97b52 {
  margin-top: 0.5em;
margin-bottom: 0.5em;
text-align: left;
}

#s-251091d9-7433-4ee5-87b2-8e7fc4f97b52 .shg-product-title-component h3 span {
  color: rgba(99, 23, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  
  line-height: ;
  letter-spacing: ;
  text-align: left;
}

#s-094f86ad-2047-4596-b5ce-2aed7dda8eb6 {
  text-align: right;
}
@media (min-width: 1200px){#s-094f86ad-2047-4596-b5ce-2aed7dda8eb6 {
  padding-left: 0%;
padding-right: 0%;
}
}
#s-094f86ad-2047-4596-b5ce-2aed7dda8eb6 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 35px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-094f86ad-2047-4596-b5ce-2aed7dda8eb6 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 35px;
}

#s-094f86ad-2047-4596-b5ce-2aed7dda8eb6 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(160, 160, 160, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}
@media (min-width: 1200px){#s-094f86ad-2047-4596-b5ce-2aed7dda8eb6 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 35px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-094f86ad-2047-4596-b5ce-2aed7dda8eb6 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 35px;
}

#s-094f86ad-2047-4596-b5ce-2aed7dda8eb6 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(160, 160, 160, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-094f86ad-2047-4596-b5ce-2aed7dda8eb6 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 35px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-094f86ad-2047-4596-b5ce-2aed7dda8eb6 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 35px;
}

#s-094f86ad-2047-4596-b5ce-2aed7dda8eb6 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(160, 160, 160, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-094f86ad-2047-4596-b5ce-2aed7dda8eb6 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 30px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-094f86ad-2047-4596-b5ce-2aed7dda8eb6 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 30px;
}

#s-094f86ad-2047-4596-b5ce-2aed7dda8eb6 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(160, 160, 160, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}
}@media (max-width: 767px){#s-094f86ad-2047-4596-b5ce-2aed7dda8eb6 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-094f86ad-2047-4596-b5ce-2aed7dda8eb6 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 25px;
}

#s-094f86ad-2047-4596-b5ce-2aed7dda8eb6 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(160, 160, 160, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}
}
#s-bc6b34c3-8783-41b9-9a23-66fbafa1f10a {
  margin-top: 0.5em;
margin-bottom: 0.5em;
padding-right: 5%;
}

#s-5e9c8cc8-dd80-4ac6-9b16-6e9c989b0451 {
  margin-top: 5%;
margin-bottom: 5%;
}

@media (min-width: 0px) {
[id="s-5e9c8cc8-dd80-4ac6-9b16-6e9c989b0451"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5e9c8cc8-dd80-4ac6-9b16-6e9c989b0451"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-5e9c8cc8-dd80-4ac6-9b16-6e9c989b0451"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-5e9c8cc8-dd80-4ac6-9b16-6e9c989b0451"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-5e9c8cc8-dd80-4ac6-9b16-6e9c989b0451"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-5e9c8cc8-dd80-4ac6-9b16-6e9c989b0451"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-5e9c8cc8-dd80-4ac6-9b16-6e9c989b0451"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

}

#s-f62d413c-33d4-4051-932c-11dc52e7f919 {
  max-width: 1200px;
text-align: center;
}

#s-f62d413c-33d4-4051-932c-11dc52e7f919 {
  overflow: hidden;
  
  
      max-width: 1200px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-f62d413c-33d4-4051-932c-11dc52e7f919 .shogun-image-content {
  
    justify-content: center;
  
}

#s-cb851a06-38e1-411b-8d16-8736dc47ecee {
  text-align: right;
}
@media (max-width: 767px){#s-cb851a06-38e1-411b-8d16-8736dc47ecee {
  text-align: center;
display: none;
}
#s-cb851a06-38e1-411b-8d16-8736dc47ecee, #wrap-s-cb851a06-38e1-411b-8d16-8736dc47ecee, #wrap-content-s-cb851a06-38e1-411b-8d16-8736dc47ecee { display: none !important; }}
@media (min-width: 0px) {
[id="s-cff1ef38-9582-449f-a5a5-36ff9480514b"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 768px) {
[id="s-cff1ef38-9582-449f-a5a5-36ff9480514b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 992px) {
[id="s-cff1ef38-9582-449f-a5a5-36ff9480514b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 1200px) {
[id="s-cff1ef38-9582-449f-a5a5-36ff9480514b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 4.0px);
}

}

#s-6be86fcd-d628-497f-ad2b-a089d807ff5f {
  border-style: solid;
margin-right: 0.5em;
padding-top: 5px;
padding-left: 17px;
padding-bottom: 5px;
padding-right: 17px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 1);
border-radius: 10px;
background-color: rgba(239, 239, 239, 0);
text-align: right;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-6be86fcd-d628-497f-ad2b-a089d807ff5f:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
border-radius: 10px !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-6be86fcd-d628-497f-ad2b-a089d807ff5f:active {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
border-radius: 10px !important;
background-color: rgba(239, 239, 239, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}@media (min-width: 768px) and (max-width: 991px){#s-6be86fcd-d628-497f-ad2b-a089d807ff5f {
  padding-left: 12px;
padding-right: 12px;
}
}@media (max-width: 767px){#s-6be86fcd-d628-497f-ad2b-a089d807ff5f {
  padding-left: 10px;
padding-right: 10px;
}
}

  #s-6be86fcd-d628-497f-ad2b-a089d807ff5f-root {
    text-align: right;
  }


#s-6be86fcd-d628-497f-ad2b-a089d807ff5f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6be86fcd-d628-497f-ad2b-a089d807ff5f-root {
    text-align: right;
  }


#s-6be86fcd-d628-497f-ad2b-a089d807ff5f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6be86fcd-d628-497f-ad2b-a089d807ff5f-root {
    text-align: right;
  }


#s-6be86fcd-d628-497f-ad2b-a089d807ff5f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6be86fcd-d628-497f-ad2b-a089d807ff5f-root {
    text-align: right;
  }


#s-6be86fcd-d628-497f-ad2b-a089d807ff5f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6be86fcd-d628-497f-ad2b-a089d807ff5f-root {
    text-align: right;
  }


#s-6be86fcd-d628-497f-ad2b-a089d807ff5f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}
#s-08ce3865-6771-494e-a681-5cb02393af7e {
  border-style: solid;
margin-left: 0%;
margin-right: 0%;
padding-top: 4px;
padding-left: 17px;
padding-bottom: 4px;
padding-right: 17px;
border-color: rgba(99, 23, 255, 1);
border-radius: 10px;
background-color: rgba(99, 23, 255, 1);
text-align: left;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-08ce3865-6771-494e-a681-5cb02393af7e:hover {border-style: solid !important;
border-color: rgba(71, 24, 167, 1) !important;
border-radius: 10px !important;
background-color: rgba(71, 24, 167, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-08ce3865-6771-494e-a681-5cb02393af7e:active {border-style: solid !important;
border-color: rgba(95, 34, 221, 1) !important;
border-radius: 10px !important;
background-color: rgba(95, 34, 221, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-08ce3865-6771-494e-a681-5cb02393af7e-atc-btn-wrapper {
    text-align: left;
  }


#s-08ce3865-6771-494e-a681-5cb02393af7e {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-08ce3865-6771-494e-a681-5cb02393af7e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-08ce3865-6771-494e-a681-5cb02393af7e.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-08ce3865-6771-494e-a681-5cb02393af7e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-08ce3865-6771-494e-a681-5cb02393af7e-atc-btn-wrapper {
    text-align: left;
  }


#s-08ce3865-6771-494e-a681-5cb02393af7e {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-08ce3865-6771-494e-a681-5cb02393af7e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-08ce3865-6771-494e-a681-5cb02393af7e.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-08ce3865-6771-494e-a681-5cb02393af7e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-08ce3865-6771-494e-a681-5cb02393af7e-atc-btn-wrapper {
    text-align: left;
  }


#s-08ce3865-6771-494e-a681-5cb02393af7e {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-08ce3865-6771-494e-a681-5cb02393af7e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-08ce3865-6771-494e-a681-5cb02393af7e.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-08ce3865-6771-494e-a681-5cb02393af7e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-08ce3865-6771-494e-a681-5cb02393af7e-atc-btn-wrapper {
    text-align: left;
  }


#s-08ce3865-6771-494e-a681-5cb02393af7e {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-08ce3865-6771-494e-a681-5cb02393af7e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-08ce3865-6771-494e-a681-5cb02393af7e.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-08ce3865-6771-494e-a681-5cb02393af7e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-08ce3865-6771-494e-a681-5cb02393af7e-atc-btn-wrapper {
    text-align: left;
  }


#s-08ce3865-6771-494e-a681-5cb02393af7e {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-08ce3865-6771-494e-a681-5cb02393af7e.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-08ce3865-6771-494e-a681-5cb02393af7e.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-08ce3865-6771-494e-a681-5cb02393af7e.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-fa00514d-7d9f-4d21-9bfa-cb4401c23e4c {
  min-height: 50px;
}








#s-fa00514d-7d9f-4d21-9bfa-cb4401c23e4c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fa00514d-7d9f-4d21-9bfa-cb4401c23e4c.shg-box.shg-c {
  justify-content: center;
}

#s-13425a7c-9cd7-4533-a940-2b153c07b6a6 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-13425a7c-9cd7-4533-a940-2b153c07b6a6 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-13425a7c-9cd7-4533-a940-2b153c07b6a6 .shg-sld-nav-button.shg-sld-left,
#s-13425a7c-9cd7-4533-a940-2b153c07b6a6 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-7aac9297-d911-47b2-b31d-0ae83bf8b97b {
  text-align: center;
}

#s-7aac9297-d911-47b2-b31d-0ae83bf8b97b {
  overflow: hidden;
  
  
}







  #s-7aac9297-d911-47b2-b31d-0ae83bf8b97b img.shogun-image {
    

    
    
    
  }


#s-7aac9297-d911-47b2-b31d-0ae83bf8b97b .shogun-image-content {
  
    justify-content: center;
  
}

#s-07c28e55-e1e3-4093-a692-7160d4b8a1f0 {
  text-align: center;
}

#s-07c28e55-e1e3-4093-a692-7160d4b8a1f0 {
  overflow: hidden;
  
  
}







  #s-07c28e55-e1e3-4093-a692-7160d4b8a1f0 img.shogun-image {
    

    
    
    
  }


#s-07c28e55-e1e3-4093-a692-7160d4b8a1f0 .shogun-image-content {
  
    justify-content: center;
  
}

#s-a842d529-896a-458b-83b6-a6848db4af0e {
  text-align: center;
}

#s-a842d529-896a-458b-83b6-a6848db4af0e {
  overflow: hidden;
  
  
}







  #s-a842d529-896a-458b-83b6-a6848db4af0e img.shogun-image {
    

    
    
    
  }


#s-a842d529-896a-458b-83b6-a6848db4af0e .shogun-image-content {
  
    justify-content: center;
  
}

#s-585ae2a7-b809-4a75-bad7-baca98d95eb2 {
  text-align: center;
}

#s-585ae2a7-b809-4a75-bad7-baca98d95eb2 {
  overflow: hidden;
  
  
}







  #s-585ae2a7-b809-4a75-bad7-baca98d95eb2 img.shogun-image {
    

    
    
    
  }


#s-585ae2a7-b809-4a75-bad7-baca98d95eb2 .shogun-image-content {
  
    justify-content: center;
  
}

#s-d34a7e1d-1067-42ad-a732-35fd63a14849 {
  text-align: center;
}

#s-d2af974d-870d-460f-bbc7-a040974b9435 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 5%;
padding-left: 5%;
padding-bottom: 5%;
padding-right: 5%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 10px;
background-color: rgba(239, 239, 239, 1);
}








#s-d2af974d-870d-460f-bbc7-a040974b9435 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d2af974d-870d-460f-bbc7-a040974b9435.shg-box.shg-c {
  justify-content: center;
}

#s-992e0fa5-0cde-4580-8269-08c089a5c6a1 {
  min-height: 50px;
}








#s-992e0fa5-0cde-4580-8269-08c089a5c6a1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-992e0fa5-0cde-4580-8269-08c089a5c6a1.shg-box.shg-c {
  justify-content: center;
}

#s-d5c43b12-893d-401d-8927-f5ac66ae72a7 {
  text-align: right;
}

#s-f9d93d2e-265d-42ee-ad63-59e9af8d8a74 {
  margin-top: 0.5em;
margin-bottom: 0.5em;
text-align: left;
}

#s-f9d93d2e-265d-42ee-ad63-59e9af8d8a74 .shg-product-title-component h3 span {
  color: rgba(99, 23, 255, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  
  line-height: ;
  letter-spacing: ;
  text-align: left;
}

#s-5ba5ea84-2ff6-45d9-b29a-1ed837e70edf {
  text-align: right;
}
@media (min-width: 1200px){#s-5ba5ea84-2ff6-45d9-b29a-1ed837e70edf {
  padding-left: 0%;
padding-right: 0%;
}
}
#s-5ba5ea84-2ff6-45d9-b29a-1ed837e70edf .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 35px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-5ba5ea84-2ff6-45d9-b29a-1ed837e70edf .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 35px;
}

#s-5ba5ea84-2ff6-45d9-b29a-1ed837e70edf .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(160, 160, 160, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}
@media (min-width: 1200px){#s-5ba5ea84-2ff6-45d9-b29a-1ed837e70edf .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 35px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-5ba5ea84-2ff6-45d9-b29a-1ed837e70edf .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 35px;
}

#s-5ba5ea84-2ff6-45d9-b29a-1ed837e70edf .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(160, 160, 160, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5ba5ea84-2ff6-45d9-b29a-1ed837e70edf .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 35px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-5ba5ea84-2ff6-45d9-b29a-1ed837e70edf .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 35px;
}

#s-5ba5ea84-2ff6-45d9-b29a-1ed837e70edf .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(160, 160, 160, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-5ba5ea84-2ff6-45d9-b29a-1ed837e70edf .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 30px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-5ba5ea84-2ff6-45d9-b29a-1ed837e70edf .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 30px;
}

#s-5ba5ea84-2ff6-45d9-b29a-1ed837e70edf .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(160, 160, 160, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}
}@media (max-width: 767px){#s-5ba5ea84-2ff6-45d9-b29a-1ed837e70edf .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-5ba5ea84-2ff6-45d9-b29a-1ed837e70edf .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 25px;
}

#s-5ba5ea84-2ff6-45d9-b29a-1ed837e70edf .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(160, 160, 160, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}
}
#s-c3b5df0b-270b-4add-94a1-bb6e8b605bd7 {
  margin-top: 0.5em;
margin-bottom: 0.5em;
padding-right: 5%;
}

#s-65b2c229-9674-46c9-97dc-db9743c54ba6 {
  margin-top: 5%;
margin-bottom: 5%;
}

@media (min-width: 0px) {
[id="s-65b2c229-9674-46c9-97dc-db9743c54ba6"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-65b2c229-9674-46c9-97dc-db9743c54ba6"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-65b2c229-9674-46c9-97dc-db9743c54ba6"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-65b2c229-9674-46c9-97dc-db9743c54ba6"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-65b2c229-9674-46c9-97dc-db9743c54ba6"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-65b2c229-9674-46c9-97dc-db9743c54ba6"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-65b2c229-9674-46c9-97dc-db9743c54ba6"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

}

#s-faed2edb-aebf-4231-bed0-a8f635b36c05 {
  max-width: 1200px;
text-align: center;
}

#s-faed2edb-aebf-4231-bed0-a8f635b36c05 {
  overflow: hidden;
  
  
      max-width: 1200px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-faed2edb-aebf-4231-bed0-a8f635b36c05 .shogun-image-content {
  
    justify-content: center;
  
}

#s-023894e0-b677-4aa5-9e97-8abc7a1387fe {
  text-align: right;
}
@media (max-width: 767px){#s-023894e0-b677-4aa5-9e97-8abc7a1387fe {
  text-align: center;
display: none;
}
#s-023894e0-b677-4aa5-9e97-8abc7a1387fe, #wrap-s-023894e0-b677-4aa5-9e97-8abc7a1387fe, #wrap-content-s-023894e0-b677-4aa5-9e97-8abc7a1387fe { display: none !important; }}
@media (min-width: 0px) {
[id="s-0bedbcef-90f3-49d2-90da-e6d4c86c0cdd"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 768px) {
[id="s-0bedbcef-90f3-49d2-90da-e6d4c86c0cdd"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 992px) {
[id="s-0bedbcef-90f3-49d2-90da-e6d4c86c0cdd"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 1200px) {
[id="s-0bedbcef-90f3-49d2-90da-e6d4c86c0cdd"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 4.0px);
}

}

#s-1a3d4db7-52de-4509-83d2-6e6f81807097 {
  border-style: solid;
margin-right: 0.5em;
padding-top: 5px;
padding-left: 17px;
padding-bottom: 5px;
padding-right: 17px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 1);
border-radius: 10px;
background-color: rgba(239, 239, 239, 0);
text-align: right;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-1a3d4db7-52de-4509-83d2-6e6f81807097:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
border-radius: 10px !important;
background-color: rgba(255, 255, 255, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-1a3d4db7-52de-4509-83d2-6e6f81807097:active {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
border-radius: 10px !important;
background-color: rgba(239, 239, 239, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}@media (min-width: 768px) and (max-width: 991px){#s-1a3d4db7-52de-4509-83d2-6e6f81807097 {
  padding-left: 12px;
padding-right: 12px;
}
}@media (max-width: 767px){#s-1a3d4db7-52de-4509-83d2-6e6f81807097 {
  padding-left: 10px;
padding-right: 10px;
}
}

  #s-1a3d4db7-52de-4509-83d2-6e6f81807097-root {
    text-align: right;
  }


#s-1a3d4db7-52de-4509-83d2-6e6f81807097.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-1a3d4db7-52de-4509-83d2-6e6f81807097-root {
    text-align: right;
  }


#s-1a3d4db7-52de-4509-83d2-6e6f81807097.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-1a3d4db7-52de-4509-83d2-6e6f81807097-root {
    text-align: right;
  }


#s-1a3d4db7-52de-4509-83d2-6e6f81807097.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-1a3d4db7-52de-4509-83d2-6e6f81807097-root {
    text-align: right;
  }


#s-1a3d4db7-52de-4509-83d2-6e6f81807097.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-1a3d4db7-52de-4509-83d2-6e6f81807097-root {
    text-align: right;
  }


#s-1a3d4db7-52de-4509-83d2-6e6f81807097.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}
#s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633 {
  border-style: solid;
margin-left: 0%;
margin-right: 0%;
padding-top: 4px;
padding-left: 17px;
padding-bottom: 4px;
padding-right: 17px;
border-color: rgba(99, 23, 255, 1);
border-radius: 10px;
background-color: rgba(99, 23, 255, 1);
text-align: left;
cursor: pointer;
background-image: none;
hover-type: color;
}
#s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633:hover {border-style: solid !important;
border-color: rgba(71, 24, 167, 1) !important;
border-radius: 10px !important;
background-color: rgba(71, 24, 167, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633:active {border-style: solid !important;
border-color: rgba(95, 34, 221, 1) !important;
border-radius: 10px !important;
background-color: rgba(95, 34, 221, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633-atc-btn-wrapper {
    text-align: left;
  }


#s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633-atc-btn-wrapper {
    text-align: left;
  }


#s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633-atc-btn-wrapper {
    text-align: left;
  }


#s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633-atc-btn-wrapper {
    text-align: left;
  }


#s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633-atc-btn-wrapper {
    text-align: left;
  }


#s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-099d7ba6-c3b6-4e83-91bc-5c680b8bb633.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-675e9def-8e71-472f-8a3a-fd298045e5ae {
  min-height: 50px;
}








#s-675e9def-8e71-472f-8a3a-fd298045e5ae > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-675e9def-8e71-472f-8a3a-fd298045e5ae.shg-box.shg-c {
  justify-content: center;
}

#s-64179841-ac4d-414e-8cfa-bc2fa70f81fb {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-64179841-ac4d-414e-8cfa-bc2fa70f81fb .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-64179841-ac4d-414e-8cfa-bc2fa70f81fb .shg-sld-nav-button.shg-sld-left,
#s-64179841-ac4d-414e-8cfa-bc2fa70f81fb .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-f5953080-c036-4ad3-89dc-d9ca83bc8614 {
  text-align: center;
}

#s-f5953080-c036-4ad3-89dc-d9ca83bc8614 {
  overflow: hidden;
  
  
}







  #s-f5953080-c036-4ad3-89dc-d9ca83bc8614 img.shogun-image {
    

    
    
    
  }


#s-f5953080-c036-4ad3-89dc-d9ca83bc8614 .shogun-image-content {
  
    justify-content: center;
  
}

#s-fb943a91-7e92-45e1-9b0b-5d308db28bb4 {
  text-align: center;
}

#s-fb943a91-7e92-45e1-9b0b-5d308db28bb4 {
  overflow: hidden;
  
  
}







  #s-fb943a91-7e92-45e1-9b0b-5d308db28bb4 img.shogun-image {
    

    
    
    
  }


#s-fb943a91-7e92-45e1-9b0b-5d308db28bb4 .shogun-image-content {
  
    justify-content: center;
  
}

#s-e42e9108-d06f-46c5-a671-89f0e1d09a64 {
  text-align: center;
}

#s-e42e9108-d06f-46c5-a671-89f0e1d09a64 {
  overflow: hidden;
  
  
}







  #s-e42e9108-d06f-46c5-a671-89f0e1d09a64 img.shogun-image {
    

    
    
    
  }


#s-e42e9108-d06f-46c5-a671-89f0e1d09a64 .shogun-image-content {
  
    justify-content: center;
  
}

#s-5c34bc6b-8043-4af8-931a-0487d3afc0d3 {
  text-align: center;
}

#s-5c34bc6b-8043-4af8-931a-0487d3afc0d3 {
  overflow: hidden;
  
  
}







  #s-5c34bc6b-8043-4af8-931a-0487d3afc0d3 img.shogun-image {
    

    
    
    
  }


#s-5c34bc6b-8043-4af8-931a-0487d3afc0d3 .shogun-image-content {
  
    justify-content: center;
  
}

#s-b6637562-fcf3-40bb-9324-8dae8be76e2b {
  text-align: center;
}

#s-5ac32646-6c37-4c84-a241-c15d5f4b0a9a {
  margin-bottom: 4em;
padding-top: 0em;
padding-left: 1em;
padding-right: 1em;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-5ac32646-6c37-4c84-a241-c15d5f4b0a9a {
  margin-bottom: 2em;
padding-left: 0em;
padding-right: 0em;
}
}







#s-5ac32646-6c37-4c84-a241-c15d5f4b0a9a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-5ac32646-6c37-4c84-a241-c15d5f4b0a9a.shg-box.shg-c {
  justify-content: center;
}

.widget-card {
            position: absolute;
            width: 100%;
            min-height: 300px;
            background-image: url(/images/card-bg.png);
            /*background-size: 100% 100%;*/
            /*object-fit: fill;*/
            background-repeat: no-repeat;
            background-size: cover;
            border-radius: 20px;
            padding: 20px 20px;
            color: #fff;
            font-family: 'Roobert TRIAL';
            font-style: normal;
            font-size: 20px;
        }

        #overlay {
            position: absolute;
            width: 100%;
            min-height: 300px;
            height: auto;
            top: 0;
            left: 0;
            right: 0;
            padding: 20px 20px;
            border-radius: 20px;
            background-color: rgba(0, 0, 0, 0.5);
            opacity: 0.9;
            z-index: 2;

        }
        .review-container{
            position:absolute;
            bottom:0;
            z-index:5;
            margin-bottom: 15px;
        }
        .head-container {
            display: flex;
            align-items: center;
        }

        .u_image {
            width: 45px;
            height: 45px;
            margin: 0px 20px 0px 0px;
            z-index: 3;
            border-radius:50%;
        }

        .u_name {
            z-index: 3;
            font-size: 14px;
            margin: 0px;
        }

        .stars {
            display: flex;
            margin: 0px 0px 20px 0px;
        }

        .single-star {
            margin: 0px 0px 0px 6px;
        }

        .rev-head {
            font-weight: bold;
            font-size:14px;
            margin: 0px;
        }

        .rev-content {
            margin: 0px;
            font-size:12px;
        }
        @media only screen and (max-width: 540px) {
           .widget-card, #overlay{
                padding: 5px 5px;
                border-radius: 15px;
                min-height:250px;
            }
            .u_image {
                width: 35px;
                height: 35px;
                margin: 0px 10px 0px 0px;
                z-index: 3;
            }
            .stars img{
                height:15px;
            }
            .rev-head {
            font-size:12px;
        }
        .review-container{
            bottom:unset;
            height: 80%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 10px 0px 0px 0px;
            margin: 0px 0px 15px 0px;
}           
        }
@media (max-width: 767px){#s-8ea7d137-048f-48b0-a745-a7b3024fffdd {
  margin-left: 0.5em;
margin-right: 0.5em;
}
}
#s-354293ef-9326-49cd-9753-4b7fad7037b6 {
  padding-left: 0em;
min-height: 50px;
}








#s-354293ef-9326-49cd-9753-4b7fad7037b6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-354293ef-9326-49cd-9753-4b7fad7037b6.shg-box.shg-c {
  justify-content: center;
}

#s-c88084a8-0ef9-4551-aafd-1b1eaa703eed {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 1.25em;
min-height: 50px;
background-color: rgba(239, 239, 239, 1);
}








#s-c88084a8-0ef9-4551-aafd-1b1eaa703eed > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c88084a8-0ef9-4551-aafd-1b1eaa703eed.shg-box.shg-c {
  justify-content: center;
}

.shg-product-image-wrapper a.shogun-product-image-url {
  display: inline-block;
}

.shg-product-image-wrapper img.shogun-image,
.shogun-component img.shogun-image {
  display: inline-block;
  vertical-align: middle;
}

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

.shg-product-image-wrapper {
  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;
  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-f08d3aed-8c3d-47c6-9544-2f0958fe6920 {
  text-align: center;
}



.shg-c#s-f08d3aed-8c3d-47c6-9544-2f0958fe6920 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f08d3aed-8c3d-47c6-9544-2f0958fe6920 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-f08d3aed-8c3d-47c6-9544-2f0958fe6920 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f08d3aed-8c3d-47c6-9544-2f0958fe6920 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-f08d3aed-8c3d-47c6-9544-2f0958fe6920 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f08d3aed-8c3d-47c6-9544-2f0958fe6920 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-f08d3aed-8c3d-47c6-9544-2f0958fe6920 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f08d3aed-8c3d-47c6-9544-2f0958fe6920 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-f08d3aed-8c3d-47c6-9544-2f0958fe6920 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-f08d3aed-8c3d-47c6-9544-2f0958fe6920 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-52309f05-bf43-48f4-93c6-a75108847ae0 {
  margin-top: 0em;
margin-bottom: 0em;
text-align: left;
}

#s-52309f05-bf43-48f4-93c6-a75108847ae0 .shg-product-title-component h5 span {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: ;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}

#s-2942efeb-f747-494d-805f-0f5228b5cfa7 {
  text-align: right;
}
@media (min-width: 1200px){#s-2942efeb-f747-494d-805f-0f5228b5cfa7 {
  padding-left: 0%;
padding-right: 0%;
}
}
#s-2942efeb-f747-494d-805f-0f5228b5cfa7 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-2942efeb-f747-494d-805f-0f5228b5cfa7 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-2942efeb-f747-494d-805f-0f5228b5cfa7 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(160, 160, 160, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}

#s-fb124c99-a683-4196-99de-d5ad9102b6d1 {
  padding-left: 0em;
min-height: 50px;
}








#s-fb124c99-a683-4196-99de-d5ad9102b6d1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fb124c99-a683-4196-99de-d5ad9102b6d1.shg-box.shg-c {
  justify-content: center;
}

#s-d87307d2-fa51-4eab-81fa-c5e5745bd16b {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-color: rgba(239, 239, 239, 1);
}








#s-d87307d2-fa51-4eab-81fa-c5e5745bd16b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d87307d2-fa51-4eab-81fa-c5e5745bd16b.shg-box.shg-c {
  justify-content: center;
}

#s-d0ade1ec-4bea-4160-8883-564b3036cb12 {
  text-align: center;
}



.shg-c#s-d0ade1ec-4bea-4160-8883-564b3036cb12 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d0ade1ec-4bea-4160-8883-564b3036cb12 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-d0ade1ec-4bea-4160-8883-564b3036cb12 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d0ade1ec-4bea-4160-8883-564b3036cb12 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-d0ade1ec-4bea-4160-8883-564b3036cb12 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d0ade1ec-4bea-4160-8883-564b3036cb12 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-d0ade1ec-4bea-4160-8883-564b3036cb12 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d0ade1ec-4bea-4160-8883-564b3036cb12 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-d0ade1ec-4bea-4160-8883-564b3036cb12 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d0ade1ec-4bea-4160-8883-564b3036cb12 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-b55b9d80-580a-49eb-8c97-70efb0809e7b {
  margin-top: 0em;
margin-bottom: 0em;
text-align: left;
}

#s-b55b9d80-580a-49eb-8c97-70efb0809e7b .shg-product-title-component h5 span {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: ;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}

#s-8760047d-9453-4459-8bdf-ae4d1c2555af {
  text-align: right;
}
@media (min-width: 1200px){#s-8760047d-9453-4459-8bdf-ae4d1c2555af {
  padding-left: 0%;
padding-right: 0%;
}
}
#s-8760047d-9453-4459-8bdf-ae4d1c2555af .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-8760047d-9453-4459-8bdf-ae4d1c2555af .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-8760047d-9453-4459-8bdf-ae4d1c2555af .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(160, 160, 160, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}

#s-9af0fb24-e471-415c-b12d-79b6f2434233 {
  padding-left: 0em;
min-height: 50px;
}








#s-9af0fb24-e471-415c-b12d-79b6f2434233 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9af0fb24-e471-415c-b12d-79b6f2434233.shg-box.shg-c {
  justify-content: center;
}

#s-8cb4d1d7-e840-43b6-8388-9da8fb22a117 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 1.25em;
min-height: 50px;
background-color: rgba(239, 239, 239, 1);
}








#s-8cb4d1d7-e840-43b6-8388-9da8fb22a117 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8cb4d1d7-e840-43b6-8388-9da8fb22a117.shg-box.shg-c {
  justify-content: center;
}

#s-8c9e11ee-10be-406f-a3d5-e16ea1e6d830 {
  text-align: center;
}



.shg-c#s-8c9e11ee-10be-406f-a3d5-e16ea1e6d830 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8c9e11ee-10be-406f-a3d5-e16ea1e6d830 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-8c9e11ee-10be-406f-a3d5-e16ea1e6d830 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8c9e11ee-10be-406f-a3d5-e16ea1e6d830 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-8c9e11ee-10be-406f-a3d5-e16ea1e6d830 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8c9e11ee-10be-406f-a3d5-e16ea1e6d830 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-8c9e11ee-10be-406f-a3d5-e16ea1e6d830 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8c9e11ee-10be-406f-a3d5-e16ea1e6d830 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-8c9e11ee-10be-406f-a3d5-e16ea1e6d830 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8c9e11ee-10be-406f-a3d5-e16ea1e6d830 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-0593c37b-6a6a-4030-b11c-c6cd7cbe1a7a {
  margin-top: 0em;
margin-bottom: 0em;
text-align: left;
}

#s-0593c37b-6a6a-4030-b11c-c6cd7cbe1a7a .shg-product-title-component h5 span {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 1em;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}

#s-66afb778-8622-4042-925c-70398fbcdd74 {
  text-align: right;
}
@media (min-width: 1200px){#s-66afb778-8622-4042-925c-70398fbcdd74 {
  padding-left: 0%;
padding-right: 0%;
}
}
#s-66afb778-8622-4042-925c-70398fbcdd74 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-66afb778-8622-4042-925c-70398fbcdd74 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-66afb778-8622-4042-925c-70398fbcdd74 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(160, 160, 160, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}

#s-0c24821f-ff4a-484f-9669-acc66b36c8e3 {
  padding-left: 0%;
min-height: 50px;
}








#s-0c24821f-ff4a-484f-9669-acc66b36c8e3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0c24821f-ff4a-484f-9669-acc66b36c8e3.shg-box.shg-c {
  justify-content: center;
}

#s-f5dce9d9-e3c1-4161-a187-30d60dea328a {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
min-height: 50px;
background-color: rgba(239, 239, 239, 1);
}








#s-f5dce9d9-e3c1-4161-a187-30d60dea328a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f5dce9d9-e3c1-4161-a187-30d60dea328a.shg-box.shg-c {
  justify-content: center;
}

#s-ea8b03ff-981e-4933-8d62-e7f027fddb2b {
  text-align: center;
}



.shg-c#s-ea8b03ff-981e-4933-8d62-e7f027fddb2b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ea8b03ff-981e-4933-8d62-e7f027fddb2b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-ea8b03ff-981e-4933-8d62-e7f027fddb2b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ea8b03ff-981e-4933-8d62-e7f027fddb2b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-ea8b03ff-981e-4933-8d62-e7f027fddb2b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ea8b03ff-981e-4933-8d62-e7f027fddb2b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-ea8b03ff-981e-4933-8d62-e7f027fddb2b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ea8b03ff-981e-4933-8d62-e7f027fddb2b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-ea8b03ff-981e-4933-8d62-e7f027fddb2b .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-ea8b03ff-981e-4933-8d62-e7f027fddb2b img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-191bfcf6-e713-481f-b954-3e021e7d3c93 {
  margin-top: 0em;
margin-bottom: 0em;
text-align: left;
}

#s-191bfcf6-e713-481f-b954-3e021e7d3c93 .shg-product-title-component h5 span {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 1em;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}

#s-c03f7f0a-9861-4a10-bca3-d59e84952d50 {
  text-align: right;
}
@media (min-width: 1200px){#s-c03f7f0a-9861-4a10-bca3-d59e84952d50 {
  padding-left: 0%;
padding-right: 0%;
}
}
#s-c03f7f0a-9861-4a10-bca3-d59e84952d50 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-c03f7f0a-9861-4a10-bca3-d59e84952d50 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-c03f7f0a-9861-4a10-bca3-d59e84952d50 .shg-product-compare-price {
  display: inline;
  text-decoration: line-through;
  color: rgba(160, 160, 160, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 16px;
  padding-left: 10px;
}

#s-564157aa-e42c-4e85-a5a8-f4aab04686ac {
  margin-left: 1em;
margin-right: 1em;
min-height: 50px;
}
@media (max-width: 767px){#s-564157aa-e42c-4e85-a5a8-f4aab04686ac {
  margin-left: 0.5em;
margin-right: 0.5em;
}
}







#s-564157aa-e42c-4e85-a5a8-f4aab04686ac > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-564157aa-e42c-4e85-a5a8-f4aab04686ac.shg-box.shg-c {
  justify-content: center;
}

#s-71bbba18-4af2-4309-87cb-f96a0614feed {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-71bbba18-4af2-4309-87cb-f96a0614feed {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-71bbba18-4af2-4309-87cb-f96a0614feed .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-71bbba18-4af2-4309-87cb-f96a0614feed .shogun-heading-component h4 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-a7231b67-161e-49c5-b63a-0ffeef79e1e1 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 20px;
}








#s-a7231b67-161e-49c5-b63a-0ffeef79e1e1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a7231b67-161e-49c5-b63a-0ffeef79e1e1.shg-box.shg-c {
  justify-content: center;
}

#s-bf1c275a-b17c-4e13-9172-cb8df6ee00e2 {
  margin-top: 12px;
margin-bottom: 0%;
}

#s-e0fbada3-ffcb-4d00-a5fa-dad3e9eb00df {
  margin-top: 0em;
margin-left: 1em;
margin-bottom: 4em;
margin-right: 1em;
min-height: 50px;
}
@media (max-width: 767px){#s-e0fbada3-ffcb-4d00-a5fa-dad3e9eb00df {
  margin-left: 0.5em;
margin-right: 0.5em;
}
}







#s-e0fbada3-ffcb-4d00-a5fa-dad3e9eb00df > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e0fbada3-ffcb-4d00-a5fa-dad3e9eb00df.shg-box.shg-c {
  justify-content: center;
}

#s-636159db-d033-4f6a-b1c2-e6414ddc93dc {
  margin-top: 0.5em;
margin-left: 0em;
margin-right: 0em;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 20px;
background-color: rgba(239, 239, 239, 1);
}
@media (min-width: 1200px){#s-636159db-d033-4f6a-b1c2-e6414ddc93dc {
  padding-left: 5em;
padding-right: 5em;
}
}
@media (min-width: 0px) {
[id="s-636159db-d033-4f6a-b1c2-e6414ddc93dc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-636159db-d033-4f6a-b1c2-e6414ddc93dc"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0em);
}

}

@media (min-width: 992px) {
[id="s-636159db-d033-4f6a-b1c2-e6414ddc93dc"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0em);
}

}

@media (min-width: 1200px) {
[id="s-636159db-d033-4f6a-b1c2-e6414ddc93dc"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0em);
}

}

#s-f1d73db4-f820-4b75-b2c5-8ae6011b82ea {
  margin-left: 2em;
margin-right: 2em;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
min-height: 0px;
background-color: rgba(238, 255, 238, 0.01);
}
@media (min-width: 1200px){#s-f1d73db4-f820-4b75-b2c5-8ae6011b82ea {
  padding-top: 8em;
padding-left: 5em;
padding-bottom: 8em;
padding-right: 0em;
min-height: 50px;
}
}@media (max-width: 767px){#s-f1d73db4-f820-4b75-b2c5-8ae6011b82ea {
  margin-top: 0em;
margin-left: 2em;
margin-right: 2em;
padding-top: 3em;
padding-bottom: 0px;
min-height: 0px;
}
}







#s-f1d73db4-f820-4b75-b2c5-8ae6011b82ea > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f1d73db4-f820-4b75-b2c5-8ae6011b82ea.shg-box.shg-c {
  justify-content: center;
}

#s-96538437-fba2-42ea-9fdb-ddcaa12c3e67 {
  text-align: left;
}

#s-2f90943c-a785-46ef-b3a4-075c0efefa24 {
  margin-top: 1em;
margin-bottom: 0em;
}
@media (min-width: 1200px){#s-2f90943c-a785-46ef-b3a4-075c0efefa24 {
  padding-top: 2em;
padding-bottom: 0em;
}
}@media (max-width: 767px){#s-2f90943c-a785-46ef-b3a4-075c0efefa24 {
  margin-left: 3em;
margin-right: 3em;
}
}
#s-e1f3a6fc-5c24-4602-8097-8270287748f5 {
  min-height: 50px;
background-color: rgba(239, 239, 239, 1);
}
@media (max-width: 767px){#s-e1f3a6fc-5c24-4602-8097-8270287748f5 {
  min-height: 0px;
}
}







#s-e1f3a6fc-5c24-4602-8097-8270287748f5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e1f3a6fc-5c24-4602-8097-8270287748f5.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 1200px){#s-97c185da-f041-4c33-ba72-66e14ddcaf1b {
  padding-top: 0em;
padding-bottom: 0em;
}
}@media (max-width: 767px){#s-97c185da-f041-4c33-ba72-66e14ddcaf1b {
  margin-left: 9em;
margin-right: 9em;
}
}
@media (min-width: 0px) {
[id="s-97c185da-f041-4c33-ba72-66e14ddcaf1b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-97c185da-f041-4c33-ba72-66e14ddcaf1b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-97c185da-f041-4c33-ba72-66e14ddcaf1b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-97c185da-f041-4c33-ba72-66e14ddcaf1b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-8fd683eb-bb08-41d0-ab31-948f750dc773 {
  max-width: 1337px;
text-align: center;
}
@media (max-width: 767px){#s-8fd683eb-bb08-41d0-ab31-948f750dc773 {
  padding-left: 2em;
padding-right: 2em;
}
}
#s-8fd683eb-bb08-41d0-ab31-948f750dc773 {
  overflow: hidden;
  
  
      max-width: 1337px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-8fd683eb-bb08-41d0-ab31-948f750dc773 .shogun-image-content {
  
    justify-content: center;
  
}

#s-6e1da6be-1e21-4a13-9ccc-8821f070a115 {
  padding-top: 0em;
padding-left: 5em;
padding-bottom: 2em;
padding-right: 5em;
min-height: 50px;
}
@media (max-width: 767px){#s-6e1da6be-1e21-4a13-9ccc-8821f070a115 {
  padding-left: 1em;
padding-right: 1em;
}
}







#s-6e1da6be-1e21-4a13-9ccc-8821f070a115 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6e1da6be-1e21-4a13-9ccc-8821f070a115.shg-box.shg-c {
  justify-content: center;
}

#s-3d146cd1-a6ba-4e85-887c-0163935df525 {
  margin-top: 1em;
margin-bottom: 1em;
padding-top: 0px;
}

@media (min-width: 0px) {
[id="s-3d146cd1-a6ba-4e85-887c-0163935df525"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.6666666666666666em);
}

}

@media (min-width: 768px) {
[id="s-3d146cd1-a6ba-4e85-887c-0163935df525"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.6666666666666666em);
}

}

@media (min-width: 992px) {
[id="s-3d146cd1-a6ba-4e85-887c-0163935df525"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.6666666666666666em);
}

}

@media (min-width: 1200px) {
[id="s-3d146cd1-a6ba-4e85-887c-0163935df525"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.6666666666666666em);
}

}

#s-724d9d2d-1fc1-4705-946e-c3469fea2191 {
  padding-top: 1em;
padding-left: 1em;
padding-bottom: 1em;
padding-right: 1em;
min-height: 180px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-724d9d2d-1fc1-4705-946e-c3469fea2191 {
  padding-top: 0.5em;
padding-left: 0.5em;
padding-bottom: 0.5em;
padding-right: 0.5em;
}
}@media (max-width: 767px){#s-724d9d2d-1fc1-4705-946e-c3469fea2191 {
  padding-top: 0.5em;
padding-left: 0.5em;
padding-bottom: 0.5em;
padding-right: 0.5em;
}
}







#s-724d9d2d-1fc1-4705-946e-c3469fea2191 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-724d9d2d-1fc1-4705-946e-c3469fea2191.shg-box.shg-c {
  justify-content: flex-start;
}

#s-a1fac112-6ee2-489b-ad60-fc2e1171fdd3 {
  text-align: center;
}

#s-a1fac112-6ee2-489b-ad60-fc2e1171fdd3 {
  overflow: hidden;
  
  
}







  #s-a1fac112-6ee2-489b-ad60-fc2e1171fdd3 img.shogun-image {
    

    
    
    
  }


#s-a1fac112-6ee2-489b-ad60-fc2e1171fdd3 .shogun-image-content {
  
    justify-content: center;
  
}

#s-2df6fa37-4a22-4a93-8685-4d0232edd4a2 {
  padding-top: 1em;
padding-left: 1em;
padding-bottom: 1em;
padding-right: 1em;
min-height: 180px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-2df6fa37-4a22-4a93-8685-4d0232edd4a2 {
  padding-top: 0.5em;
padding-left: 0.5em;
padding-bottom: 0.5em;
padding-right: 0.5em;
}
}@media (max-width: 767px){#s-2df6fa37-4a22-4a93-8685-4d0232edd4a2 {
  padding-top: 0.5em;
padding-left: 0.5em;
padding-bottom: 0.5em;
padding-right: 0.5em;
}
}







#s-2df6fa37-4a22-4a93-8685-4d0232edd4a2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2df6fa37-4a22-4a93-8685-4d0232edd4a2.shg-box.shg-c {
  justify-content: flex-start;
}

#s-ade67c35-48a3-4a79-8584-02bb9cf774b6 {
  text-align: center;
}

#s-ade67c35-48a3-4a79-8584-02bb9cf774b6 {
  overflow: hidden;
  
  
}







  #s-ade67c35-48a3-4a79-8584-02bb9cf774b6 img.shogun-image {
    

    
    
    
  }


#s-ade67c35-48a3-4a79-8584-02bb9cf774b6 .shogun-image-content {
  
    justify-content: center;
  
}

#s-4b5e58f7-009e-4afc-bfb5-0fa1e7c6a0f9 {
  padding-top: 1em;
padding-left: 1em;
padding-bottom: 1em;
padding-right: 1em;
min-height: 180px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-4b5e58f7-009e-4afc-bfb5-0fa1e7c6a0f9 {
  padding-top: 0.5em;
padding-left: 0.5em;
padding-bottom: 0.5em;
padding-right: 0.5em;
}
}@media (max-width: 767px){#s-4b5e58f7-009e-4afc-bfb5-0fa1e7c6a0f9 {
  padding-top: 0.5em;
padding-left: 0.5em;
padding-bottom: 0.5em;
padding-right: 0.5em;
}
}







#s-4b5e58f7-009e-4afc-bfb5-0fa1e7c6a0f9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4b5e58f7-009e-4afc-bfb5-0fa1e7c6a0f9.shg-box.shg-c {
  justify-content: flex-start;
}

#s-3c14c5f6-5daf-4dec-884b-30689d406da0 {
  min-height: 50%;
text-align: center;
}

#s-3c14c5f6-5daf-4dec-884b-30689d406da0 {
  overflow: hidden;
  
  
}







  #s-3c14c5f6-5daf-4dec-884b-30689d406da0 img.shogun-image {
    

    
    
    
  }


#s-3c14c5f6-5daf-4dec-884b-30689d406da0 .shogun-image-content {
  
    justify-content: center;
  
}

#s-cbfb98bc-8820-4976-8846-dae3f13f0bb3 {
  margin-top: 1em;
margin-bottom: 1em;
padding-top: 0px;
}

@media (min-width: 0px) {
[id="s-cbfb98bc-8820-4976-8846-dae3f13f0bb3"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.6666666666666666em);
}

}

@media (min-width: 768px) {
[id="s-cbfb98bc-8820-4976-8846-dae3f13f0bb3"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.6666666666666666em);
}

}

@media (min-width: 992px) {
[id="s-cbfb98bc-8820-4976-8846-dae3f13f0bb3"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.6666666666666666em);
}

}

@media (min-width: 1200px) {
[id="s-cbfb98bc-8820-4976-8846-dae3f13f0bb3"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.6666666666666666em);
}

}

#s-b033b9f3-86ea-4983-a4e1-f19db507ab08 {
  padding-top: 1em;
padding-left: 1em;
padding-bottom: 1em;
padding-right: 1em;
min-height: 180px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-b033b9f3-86ea-4983-a4e1-f19db507ab08 {
  padding-top: 0.5em;
padding-left: 0.5em;
padding-bottom: 0.5em;
padding-right: 0.5em;
}
}@media (max-width: 767px){#s-b033b9f3-86ea-4983-a4e1-f19db507ab08 {
  padding-top: 0.5em;
padding-left: 0.5em;
padding-bottom: 0.5em;
padding-right: 0.5em;
}
}







#s-b033b9f3-86ea-4983-a4e1-f19db507ab08 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b033b9f3-86ea-4983-a4e1-f19db507ab08.shg-box.shg-c {
  justify-content: flex-start;
}

#s-aa340194-9e76-4d0d-8b6e-3609ceb9a5d3 {
  text-align: center;
}

#s-aa340194-9e76-4d0d-8b6e-3609ceb9a5d3 {
  overflow: hidden;
  
  
}







  #s-aa340194-9e76-4d0d-8b6e-3609ceb9a5d3 img.shogun-image {
    

    
    
    
  }


#s-aa340194-9e76-4d0d-8b6e-3609ceb9a5d3 .shogun-image-content {
  
    justify-content: center;
  
}

#s-66180e52-c117-4829-b709-c6cda96a68ee {
  padding-top: 1em;
padding-left: 1em;
padding-bottom: 1em;
padding-right: 1em;
min-height: 180px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-66180e52-c117-4829-b709-c6cda96a68ee {
  padding-top: 0.5em;
padding-left: 0.5em;
padding-bottom: 0.5em;
padding-right: 0.5em;
}
}@media (max-width: 767px){#s-66180e52-c117-4829-b709-c6cda96a68ee {
  padding-top: 0.5em;
padding-left: 0.5em;
padding-bottom: 0.5em;
padding-right: 0.5em;
}
}







#s-66180e52-c117-4829-b709-c6cda96a68ee > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-66180e52-c117-4829-b709-c6cda96a68ee.shg-box.shg-c {
  justify-content: flex-start;
}

#s-d29d6b93-695c-4486-b6b7-3ecd018dc144 {
  text-align: center;
}

#s-d29d6b93-695c-4486-b6b7-3ecd018dc144 {
  overflow: hidden;
  
  
}







  #s-d29d6b93-695c-4486-b6b7-3ecd018dc144 img.shogun-image {
    

    
    
    
  }


#s-d29d6b93-695c-4486-b6b7-3ecd018dc144 .shogun-image-content {
  
    justify-content: center;
  
}

#s-3c5c54c6-9dac-41c9-a3b9-a6935544af2b {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 10px;
text-align: left;
}
@media (min-width: 992px) and (max-width: 1199px){#s-3c5c54c6-9dac-41c9-a3b9-a6935544af2b {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-3c5c54c6-9dac-41c9-a3b9-a6935544af2b .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


@media (min-width: 992px) and (max-width: 1199px){#s-3c5c54c6-9dac-41c9-a3b9-a6935544af2b .shogun-heading-component h4 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-0fa93055-9238-4f1e-b5fc-61b4246d2cdb {
  margin-left: 2em;
margin-right: 2em;
padding-top: 0em;
padding-left: 0em;
padding-bottom: 0em;
padding-right: 0em;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-0fa93055-9238-4f1e-b5fc-61b4246d2cdb {
  margin-top: 0.5em;
margin-bottom: 0em;
}
}@media (max-width: 767px){#s-0fa93055-9238-4f1e-b5fc-61b4246d2cdb {
  display: none;
}
#s-0fa93055-9238-4f1e-b5fc-61b4246d2cdb, #wrap-s-0fa93055-9238-4f1e-b5fc-61b4246d2cdb, #wrap-content-s-0fa93055-9238-4f1e-b5fc-61b4246d2cdb { display: none !important; }}







#s-0fa93055-9238-4f1e-b5fc-61b4246d2cdb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0fa93055-9238-4f1e-b5fc-61b4246d2cdb.shg-box.shg-c {
  justify-content: center;
}

#s-1fa48c61-e14f-4063-8924-93aba2abe03c {
  padding-top: 0px;
padding-left: 0em;
padding-bottom: 0px;
padding-right: 0em;
min-height: 50px;
}








#s-1fa48c61-e14f-4063-8924-93aba2abe03c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-1fa48c61-e14f-4063-8924-93aba2abe03c.shg-box.shg-c {
  justify-content: center;
}

#s-54c009d0-dcf6-4844-8a01-0405a4964f3d {
  margin-top: 12px;
}

@media (min-width: 0px) {
[id="s-54c009d0-dcf6-4844-8a01-0405a4964f3d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-54c009d0-dcf6-4844-8a01-0405a4964f3d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 992px) {
[id="s-54c009d0-dcf6-4844-8a01-0405a4964f3d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 1200px) {
[id="s-54c009d0-dcf6-4844-8a01-0405a4964f3d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 0px) {
[id="s-e60cb8de-0e8a-4276-84a4-d2ed772276f6"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-e60cb8de-0e8a-4276-84a4-d2ed772276f6"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-e60cb8de-0e8a-4276-84a4-d2ed772276f6"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-e60cb8de-0e8a-4276-84a4-d2ed772276f6"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 7.5px);
}

}

.nb-hover-circle {
  position: relative;
     /*reduced from 250px */
  width: 100px; 
  height: 100px;
  border-radius: 50%;
  border: 1px solid #8D5EF0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

.nb-inner-circle {
  width: 70%;   /* controls image size */
  height: 70%;
  border-radius: 50%;
  overflow: hidden;
}

.nb-inner-circle img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  transition: transform 0.4s ease;
}

/* overlay */
.nb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #6317FF;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-align: center;
  /*padding: 10px;*/
  opacity: 0;
  transition: opacity 0.4s ease;
   border: 1px solid #6317ff;
}

/* hover effects */
.nb-hover-circle:hover .nb-inner-circle img {
  transform: scale(1);
}

.nb-hover-circle:hover .nb-overlay {
  opacity: 1;
}

.nb-overlay p{
    margin-bottom: 0rem !important;
     /*font-size: 20px !important;*/

}
/* 📱 Mobile adjustment */
@media (max-width: 768px) {
  .nb-hover-circle {
    width: 60px;   /* smaller circle */
    height: 60px;
  }

  .nb-overlay p {
    font-size: 8px !important; /* smaller text */
  }
}
@media (min-width: 0px) {
[id="s-04883877-f60a-44ce-8f61-4269056c3fb9"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-04883877-f60a-44ce-8f61-4269056c3fb9"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 5.0px);
}

[id="s-04883877-f60a-44ce-8f61-4269056c3fb9"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-04883877-f60a-44ce-8f61-4269056c3fb9"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 5.0px);
}

[id="s-04883877-f60a-44ce-8f61-4269056c3fb9"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-04883877-f60a-44ce-8f61-4269056c3fb9"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 5.0px);
}

[id="s-04883877-f60a-44ce-8f61-4269056c3fb9"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 5.0px);
}

}

#s-04fb6624-b17b-49ec-a703-43fd42acc912 {
  text-align: center;
}

#s-04fb6624-b17b-49ec-a703-43fd42acc912 {
  overflow: hidden;
  
  
}







  #s-04fb6624-b17b-49ec-a703-43fd42acc912 img.shogun-image {
    

    
    
    
  }


#s-04fb6624-b17b-49ec-a703-43fd42acc912 .shogun-image-content {
  
    justify-content: center;
  
}

#s-08d611a1-9d34-42fc-8ba8-4b87f27e9943 {
  margin-top: 10px;
margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-0125badb-55ce-4e1d-a4bf-9519c71f59e4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0125badb-55ce-4e1d-a4bf-9519c71f59e4"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 5.0px);
}

[id="s-0125badb-55ce-4e1d-a4bf-9519c71f59e4"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-0125badb-55ce-4e1d-a4bf-9519c71f59e4"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 5.0px);
}

[id="s-0125badb-55ce-4e1d-a4bf-9519c71f59e4"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-0125badb-55ce-4e1d-a4bf-9519c71f59e4"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 5.0px);
}

[id="s-0125badb-55ce-4e1d-a4bf-9519c71f59e4"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 5.0px);
}

}

#s-ccd085f9-e0fc-4c3e-b10b-bc6ade56d286 {
  text-align: center;
}

#s-ccd085f9-e0fc-4c3e-b10b-bc6ade56d286 {
  overflow: hidden;
  
  
}







  #s-ccd085f9-e0fc-4c3e-b10b-bc6ade56d286 img.shogun-image {
    

    
    
    
  }


#s-ccd085f9-e0fc-4c3e-b10b-bc6ade56d286 .shogun-image-content {
  
    justify-content: center;
  
}

#s-8a8d6c89-bd73-411b-87ed-8e90d158f29b {
  margin-top: 9%;
}

#s-9e2351ae-3f8c-4bc3-9677-1ac837fb0c6c {
  padding-top: 9px;
}

@media (min-width: 0px) {
[id="s-9e2351ae-3f8c-4bc3-9677-1ac837fb0c6c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-9e2351ae-3f8c-4bc3-9677-1ac837fb0c6c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-9e2351ae-3f8c-4bc3-9677-1ac837fb0c6c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-9e2351ae-3f8c-4bc3-9677-1ac837fb0c6c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 0px) {
[id="s-5b097afe-28c9-4a98-b9e2-96f5f3b93559"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-5b097afe-28c9-4a98-b9e2-96f5f3b93559"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-5b097afe-28c9-4a98-b9e2-96f5f3b93559"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-5b097afe-28c9-4a98-b9e2-96f5f3b93559"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 7.5px);
}

}

#s-182b54fe-8204-4172-bc0b-c02b7c1a7f77 {
  margin-top: 0%;
}

#s-d2b80f19-e423-4580-ad20-ec721d05c57a {
  margin-top: 0%;
}

#s-bb93a87e-15a5-4e02-8d8a-f9c930cc50b4 {
  margin-top: 0%;
}

#s-6f2c6164-eb3b-4233-a0ef-3ffd2fec3b56 {
  margin-top: 0%;
}

@media (min-width: 0px) {
[id="s-08a55e09-29a0-48fb-b94a-22964800d243"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-08a55e09-29a0-48fb-b94a-22964800d243"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 6.666666666666667px);
}

[id="s-08a55e09-29a0-48fb-b94a-22964800d243"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-08a55e09-29a0-48fb-b94a-22964800d243"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 6.666666666666667px);
}

[id="s-08a55e09-29a0-48fb-b94a-22964800d243"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-08a55e09-29a0-48fb-b94a-22964800d243"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 6.666666666666667px);
}

[id="s-08a55e09-29a0-48fb-b94a-22964800d243"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.666666666666667px);
}

}

#s-3339116e-87c1-4b64-b406-d89fc1d38362 {
  margin-top: 9%;
margin-bottom: 9px;
}

#s-83b794b9-b490-450f-b7ab-6050d33ff437 {
  margin-top: 9%;
}

#s-e144abdc-b82a-437d-b10e-5f86ce562d82 {
  text-align: center;
}

#s-e144abdc-b82a-437d-b10e-5f86ce562d82 {
  overflow: hidden;
  
  
}







  #s-e144abdc-b82a-437d-b10e-5f86ce562d82 img.shogun-image {
    

    
    
    
  }


#s-e144abdc-b82a-437d-b10e-5f86ce562d82 .shogun-image-content {
  
    justify-content: center;
  
}

#s-42872407-8232-482a-89c6-e934a8856ee4 {
  margin-top: 9%;
margin-bottom: 9px;
}

#s-5fd6d537-5089-4eac-b8df-5ecd16ebd290 {
  margin-top: 0%;
}

@media (min-width: 0px) {
[id="s-c8f3db20-4053-4b9d-862a-ef4dd2004fda"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c8f3db20-4053-4b9d-862a-ef4dd2004fda"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 5.0px);
}

[id="s-c8f3db20-4053-4b9d-862a-ef4dd2004fda"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-c8f3db20-4053-4b9d-862a-ef4dd2004fda"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 5.0px);
}

[id="s-c8f3db20-4053-4b9d-862a-ef4dd2004fda"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-c8f3db20-4053-4b9d-862a-ef4dd2004fda"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 5.0px);
}

[id="s-c8f3db20-4053-4b9d-862a-ef4dd2004fda"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 5.0px);
}

}

@media (min-width: 0px) {
[id="s-4b5016f3-9b0e-43a6-a4e5-4d3dab1787d4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4b5016f3-9b0e-43a6-a4e5-4d3dab1787d4"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 5.0px);
}

[id="s-4b5016f3-9b0e-43a6-a4e5-4d3dab1787d4"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-4b5016f3-9b0e-43a6-a4e5-4d3dab1787d4"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 5.0px);
}

[id="s-4b5016f3-9b0e-43a6-a4e5-4d3dab1787d4"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-4b5016f3-9b0e-43a6-a4e5-4d3dab1787d4"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 5.0px);
}

[id="s-4b5016f3-9b0e-43a6-a4e5-4d3dab1787d4"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 5.0px);
}

}

#s-a11dccc2-af12-4245-966b-cb73dbdd312a {
  margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-a11dccc2-af12-4245-966b-cb73dbdd312a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a11dccc2-af12-4245-966b-cb73dbdd312a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-a11dccc2-af12-4245-966b-cb73dbdd312a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-a11dccc2-af12-4245-966b-cb73dbdd312a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-c4a02a4c-8310-40c1-8513-a384cb4021b1 {
  margin-top: 0%;
}

#s-cf33b496-88e9-473e-9cd8-6101b3bb43ea {
  margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-cf33b496-88e9-473e-9cd8-6101b3bb43ea"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cf33b496-88e9-473e-9cd8-6101b3bb43ea"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-cf33b496-88e9-473e-9cd8-6101b3bb43ea"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-cf33b496-88e9-473e-9cd8-6101b3bb43ea"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-a433c303-82df-49d7-ba86-0dfed47bea53 {
  margin-bottom: 10px;
}

@media (min-width: 0px) {
[id="s-a433c303-82df-49d7-ba86-0dfed47bea53"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a433c303-82df-49d7-ba86-0dfed47bea53"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-a433c303-82df-49d7-ba86-0dfed47bea53"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-a433c303-82df-49d7-ba86-0dfed47bea53"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-a433c303-82df-49d7-ba86-0dfed47bea53"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-a433c303-82df-49d7-ba86-0dfed47bea53"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 6.666666666666667px);
}

[id="s-a433c303-82df-49d7-ba86-0dfed47bea53"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 6.666666666666667px);
}

}

#s-24ef2a72-8a69-429e-82c3-87f6f350cfd1 {
  margin-top: 5%;
margin-bottom: 0%;
text-align: center;
}

#s-24ef2a72-8a69-429e-82c3-87f6f350cfd1 {
  overflow: hidden;
  
  
}







  #s-24ef2a72-8a69-429e-82c3-87f6f350cfd1 img.shogun-image {
    

    
    
    
  }


#s-24ef2a72-8a69-429e-82c3-87f6f350cfd1 .shogun-image-content {
  
    justify-content: center;
  
}

#s-39d85de6-92a8-40f5-819f-057f1892f593 {
  margin-bottom: 10px;
}

#s-07199e60-6b07-4464-acc0-00767d2c0093 {
  margin-bottom: 10px;
}

#s-084ed8d1-1dcf-49a9-a927-78d7bd330626 {
  margin-bottom: 0px;
}

#s-f73a5d89-131d-4850-9c60-47ea1647bac0 {
  margin-right: 0%;
}

@media (min-width: 0px) {
[id="s-f73a5d89-131d-4850-9c60-47ea1647bac0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f73a5d89-131d-4850-9c60-47ea1647bac0"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 1.5px);
}

[id="s-f73a5d89-131d-4850-9c60-47ea1647bac0"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 1.5px);
}

}

@media (min-width: 992px) {
[id="s-f73a5d89-131d-4850-9c60-47ea1647bac0"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 1.5px);
}

[id="s-f73a5d89-131d-4850-9c60-47ea1647bac0"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 1.5px);
}

}

@media (min-width: 1200px) {
[id="s-f73a5d89-131d-4850-9c60-47ea1647bac0"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 1.5px);
}

[id="s-f73a5d89-131d-4850-9c60-47ea1647bac0"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 1.5px);
}

}

#s-b6b7b1fe-cfe5-4a87-bef7-5e69881de904 {
  margin-top: 10%;
margin-left: 6%;
max-width: 80%;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-b6b7b1fe-cfe5-4a87-bef7-5e69881de904 {
  margin-left: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
max-width: 60%;
}
}
#s-b6b7b1fe-cfe5-4a87-bef7-5e69881de904 {
  overflow: hidden;
  
  
      max-width: 80%;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-b6b7b1fe-cfe5-4a87-bef7-5e69881de904 .shogun-image-content {
  
    justify-content: center;
  
}

#s-57e992d9-fd2c-4077-9bf1-b3a95eecae53 {
  margin-top: 5%;
padding-top: 10px;
padding-bottom: 10px;
max-width: 323px;
text-align: center;
}

#s-57e992d9-fd2c-4077-9bf1-b3a95eecae53 {
  overflow: hidden;
  
  
      max-width: 323px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-57e992d9-fd2c-4077-9bf1-b3a95eecae53 .shogun-image-content {
  
    justify-content: center;
  
}

#s-d41f99df-e371-472f-974e-887ad2f5dec5 {
  background-repeat: no-repeat;
background-size: cover;
margin-top: 10px;
margin-left: 1%;
margin-bottom: 5px;
margin-right: 1%;
padding-top: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0);
border-style: solid;
border-radius: 20px;
min-height: 500px;
background-position: center center;
}
@media (min-width: 1200px){#s-d41f99df-e371-472f-974e-887ad2f5dec5 {
  display: none;
}
#s-d41f99df-e371-472f-974e-887ad2f5dec5, #wrap-s-d41f99df-e371-472f-974e-887ad2f5dec5, #wrap-content-s-d41f99df-e371-472f-974e-887ad2f5dec5 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d41f99df-e371-472f-974e-887ad2f5dec5 {
  display: none;
}
#s-d41f99df-e371-472f-974e-887ad2f5dec5, #wrap-s-d41f99df-e371-472f-974e-887ad2f5dec5, #wrap-content-s-d41f99df-e371-472f-974e-887ad2f5dec5 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d41f99df-e371-472f-974e-887ad2f5dec5 {
  display: none;
}
#s-d41f99df-e371-472f-974e-887ad2f5dec5, #wrap-s-d41f99df-e371-472f-974e-887ad2f5dec5, #wrap-content-s-d41f99df-e371-472f-974e-887ad2f5dec5 { display: none !important; }}@media (max-width: 767px){#s-d41f99df-e371-472f-974e-887ad2f5dec5 {
  display: none;
}
#s-d41f99df-e371-472f-974e-887ad2f5dec5, #wrap-s-d41f99df-e371-472f-974e-887ad2f5dec5, #wrap-content-s-d41f99df-e371-472f-974e-887ad2f5dec5 { display: none !important; }}







#s-d41f99df-e371-472f-974e-887ad2f5dec5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d41f99df-e371-472f-974e-887ad2f5dec5.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-538ecb59-bd88-4b9e-b34c-176e0d1b575f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-538ecb59-bd88-4b9e-b34c-176e0d1b575f"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-538ecb59-bd88-4b9e-b34c-176e0d1b575f"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-538ecb59-bd88-4b9e-b34c-176e0d1b575f"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-538ecb59-bd88-4b9e-b34c-176e0d1b575f"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-538ecb59-bd88-4b9e-b34c-176e0d1b575f"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-538ecb59-bd88-4b9e-b34c-176e0d1b575f"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-ef66fc46-6a5d-4c74-9bbc-43ec66156957 {
  margin-top: 10px;
margin-left: 10%;
margin-bottom: 10px;
margin-right: 10%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-ef66fc46-6a5d-4c74-9bbc-43ec66156957 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 75px;
  line-height: 1em;
  letter-spacing: 0px;
  text-align: left;
}



#s-ced6ac59-38f4-4ffa-bada-eb39ec661918 {
  margin-left: 10%;
margin-right: 10%;
padding-top: 10px;
padding-bottom: 20px;
text-align: left;
}

#s-ced6ac59-38f4-4ffa-bada-eb39ec661918 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  text-align: left;
}



#s-cf0e9091-c448-4fac-8673-0d9215727760 {
  background-size: 0px 0px;
margin-top: 0px;
margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
padding-top: 0px;
padding-left: 20px;
padding-bottom: 0px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 2px;
min-height: 10px;
background-color: rgba(37, 37, 37, 0.01);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
background-position: undefined custom;
}
#s-cf0e9091-c448-4fac-8673-0d9215727760:hover {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(66, 66, 66, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-cf0e9091-c448-4fac-8673-0d9215727760:active {border-style: solid !important;
border-color: rgba(255, 255, 255, 0) !important;
background-color: rgba(0, 0, 0, 0) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-cf0e9091-c448-4fac-8673-0d9215727760-root {
    text-align: left;
  }


#s-cf0e9091-c448-4fac-8673-0d9215727760.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-cf0e9091-c448-4fac-8673-0d9215727760-root {
    text-align: left;
  }


#s-cf0e9091-c448-4fac-8673-0d9215727760.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-cf0e9091-c448-4fac-8673-0d9215727760-root {
    text-align: left;
  }


#s-cf0e9091-c448-4fac-8673-0d9215727760.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-cf0e9091-c448-4fac-8673-0d9215727760-root {
    text-align: left;
  }


#s-cf0e9091-c448-4fac-8673-0d9215727760.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-cf0e9091-c448-4fac-8673-0d9215727760-root {
    text-align: left;
  }


#s-cf0e9091-c448-4fac-8673-0d9215727760.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-b2ca4dd8-1d2a-4c60-aa45-1223b1f8a7bb {
  padding-top: 50px;
padding-bottom: 50px;
text-align: center;
}

#s-b2ca4dd8-1d2a-4c60-aa45-1223b1f8a7bb {
  overflow: hidden;
  
  
}







  #s-b2ca4dd8-1d2a-4c60-aa45-1223b1f8a7bb img.shogun-image {
    

    
    
    
  }


#s-b2ca4dd8-1d2a-4c60-aa45-1223b1f8a7bb .shogun-image-content {
  
    justify-content: center;
  
}

#s-af8ab284-ec39-48d4-8304-8f362f699b90 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}

#s-af8ab284-ec39-48d4-8304-8f362f699b90 {
  overflow: hidden;
  
  
}







  #s-af8ab284-ec39-48d4-8304-8f362f699b90 img.shogun-image {
    

    
    
    
  }


#s-af8ab284-ec39-48d4-8304-8f362f699b90 .shogun-image-content {
  
    justify-content: center;
  
}

#s-fbdebe10-7961-482f-ba9c-fe67f37c97e1 {
  margin-top: 20px;
margin-left: 0%;
margin-bottom: 20px;
margin-right: 0%;
padding-top: 2%;
padding-left: 2%;
padding-bottom: 2%;
padding-right: 2%;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-fbdebe10-7961-482f-ba9c-fe67f37c97e1 {
  display: none;
}
#s-fbdebe10-7961-482f-ba9c-fe67f37c97e1, #wrap-s-fbdebe10-7961-482f-ba9c-fe67f37c97e1, #wrap-content-s-fbdebe10-7961-482f-ba9c-fe67f37c97e1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-fbdebe10-7961-482f-ba9c-fe67f37c97e1 {
  display: none;
}
#s-fbdebe10-7961-482f-ba9c-fe67f37c97e1, #wrap-s-fbdebe10-7961-482f-ba9c-fe67f37c97e1, #wrap-content-s-fbdebe10-7961-482f-ba9c-fe67f37c97e1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-fbdebe10-7961-482f-ba9c-fe67f37c97e1 {
  display: none;
}
#s-fbdebe10-7961-482f-ba9c-fe67f37c97e1, #wrap-s-fbdebe10-7961-482f-ba9c-fe67f37c97e1, #wrap-content-s-fbdebe10-7961-482f-ba9c-fe67f37c97e1 { display: none !important; }}@media (max-width: 767px){#s-fbdebe10-7961-482f-ba9c-fe67f37c97e1 {
  margin-top: 0em;
margin-bottom: 0em;
padding-left: 0%;
padding-bottom: 0em;
padding-right: 0%;
}
}







#s-fbdebe10-7961-482f-ba9c-fe67f37c97e1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fbdebe10-7961-482f-ba9c-fe67f37c97e1.shg-box.shg-c {
  justify-content: center;
}

@media (max-width: 767px){#s-de8903e3-80e9-433b-9e8c-de56f8dd57c1 {
  margin-left: 6%;
margin-bottom: 4%;
margin-right: 12%;
}
}
@media (min-width: 0px) {
[id="s-de8903e3-80e9-433b-9e8c-de56f8dd57c1"] > .shg-row > .shg-c-xs-2_4 {
  width: calc(20.0% - 8.0px);
}

}

@media (min-width: 768px) {
[id="s-de8903e3-80e9-433b-9e8c-de56f8dd57c1"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 8.0px);
}

}

@media (min-width: 992px) {
[id="s-de8903e3-80e9-433b-9e8c-de56f8dd57c1"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 8.0px);
}

}

@media (min-width: 1200px) {
[id="s-de8903e3-80e9-433b-9e8c-de56f8dd57c1"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 8.0px);
}

}

@media (min-width: 0px) {
[id="s-beff6910-e139-4469-927b-550eba7a5825"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-beff6910-e139-4469-927b-550eba7a5825"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-beff6910-e139-4469-927b-550eba7a5825"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-beff6910-e139-4469-927b-550eba7a5825"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-ca98957a-67d8-4278-8c30-b318d1ebe380 {
  margin-left: 10%;
margin-right: -15%;
max-width: 120%;
text-align: center;
}

#s-ca98957a-67d8-4278-8c30-b318d1ebe380 {
  overflow: hidden;
  
  
      max-width: 120%;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}







  #s-ca98957a-67d8-4278-8c30-b318d1ebe380 img.shogun-image {
    

    
    
    
  }


#s-ca98957a-67d8-4278-8c30-b318d1ebe380 .shogun-image-content {
  
    justify-content: center;
  
}

#s-3f22a1c2-bc5b-46a4-9437-b83008be4953 {
  margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
}
@media (max-width: 767px){#s-3f22a1c2-bc5b-46a4-9437-b83008be4953 {
  margin-left: 12%;
margin-bottom: 4px;
margin-right: 20%;
}
}
@media (min-width: 0px) {
[id="s-3f22a1c2-bc5b-46a4-9437-b83008be4953"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-3f22a1c2-bc5b-46a4-9437-b83008be4953"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-3f22a1c2-bc5b-46a4-9437-b83008be4953"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-3f22a1c2-bc5b-46a4-9437-b83008be4953"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-647d2dee-2dcb-47d7-891d-8909f74b407c {
  margin-left: 0%;
margin-bottom: 10px;
margin-right: 0%;
}
@media (max-width: 767px){#s-647d2dee-2dcb-47d7-891d-8909f74b407c {
  margin-left: 12%;
margin-bottom: 4px;
margin-right: 20%;
}
}
@media (min-width: 0px) {
[id="s-647d2dee-2dcb-47d7-891d-8909f74b407c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-647d2dee-2dcb-47d7-891d-8909f74b407c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-647d2dee-2dcb-47d7-891d-8909f74b407c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-647d2dee-2dcb-47d7-891d-8909f74b407c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 0px) {
[id="s-aef97089-2a3e-4048-b251-21223968d15c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-aef97089-2a3e-4048-b251-21223968d15c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-aef97089-2a3e-4048-b251-21223968d15c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-aef97089-2a3e-4048-b251-21223968d15c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-de5fa7ff-8b53-4674-a705-734403032b84 {
  min-height: 50px;
}








#s-de5fa7ff-8b53-4674-a705-734403032b84 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-de5fa7ff-8b53-4674-a705-734403032b84.shg-box.shg-c {
  justify-content: center;
}

@media (max-width: 767px){#s-972f7141-0c68-4700-9d39-acc6276dba9d {
  margin-left: 12%;
margin-bottom: 4%;
margin-right: -11%;
}
}
@media (min-width: 0px) {
[id="s-972f7141-0c68-4700-9d39-acc6276dba9d"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 768px) {
[id="s-972f7141-0c68-4700-9d39-acc6276dba9d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-972f7141-0c68-4700-9d39-acc6276dba9d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-972f7141-0c68-4700-9d39-acc6276dba9d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (max-width: 767px){#s-5ed74631-815c-4629-aea1-15448b494a46 {
  margin-left: 12%;
margin-bottom: 0%;
margin-right: -11%;
}
}
@media (min-width: 0px) {
[id="s-5ed74631-815c-4629-aea1-15448b494a46"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 768px) {
[id="s-5ed74631-815c-4629-aea1-15448b494a46"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 992px) {
[id="s-5ed74631-815c-4629-aea1-15448b494a46"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

@media (min-width: 1200px) {
[id="s-5ed74631-815c-4629-aea1-15448b494a46"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 6.666666666666667px);
}

}

#s-50527798-abdc-416b-bf03-19b5e4678287 {
  margin-left: 1%;
margin-right: 0%;
max-width: 109%;
text-align: center;
}
@media (max-width: 767px){#s-50527798-abdc-416b-bf03-19b5e4678287 {
  margin-left: 0%;
}
}
#s-50527798-abdc-416b-bf03-19b5e4678287 {
  overflow: hidden;
  
  
      max-width: 109%;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}







  #s-50527798-abdc-416b-bf03-19b5e4678287 img.shogun-image {
    

    
    
    
  }


#s-50527798-abdc-416b-bf03-19b5e4678287 .shogun-image-content {
  
    justify-content: center;
  
}

#s-3c49727e-e1d8-4c34-8c07-e198de5fcc57 {
  margin-top: 0em;
margin-bottom: 1em;
}
@media (max-width: 767px){#s-3c49727e-e1d8-4c34-8c07-e198de5fcc57 {
  margin-bottom: 0em;
}
}
@media (min-width: 0px) {
[id="s-3c49727e-e1d8-4c34-8c07-e198de5fcc57"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 768px) {
[id="s-3c49727e-e1d8-4c34-8c07-e198de5fcc57"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-3c49727e-e1d8-4c34-8c07-e198de5fcc57"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-3c49727e-e1d8-4c34-8c07-e198de5fcc57"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 2.5px);
}

}

#s-f2ce1e57-e926-4143-ac76-bd11fb4ede73 {
  margin-top: 0.5em;
margin-left: 2em;
margin-bottom: 0em;
margin-right: -2em;
text-align: center;
}
@media (max-width: 767px){#s-f2ce1e57-e926-4143-ac76-bd11fb4ede73 {
  max-width: 95%;
}
}
#s-f2ce1e57-e926-4143-ac76-bd11fb4ede73 {
  overflow: hidden;
  
  
}







  #s-f2ce1e57-e926-4143-ac76-bd11fb4ede73 img.shogun-image {
    

    
    
    
  }


#s-f2ce1e57-e926-4143-ac76-bd11fb4ede73 .shogun-image-content {
  
    justify-content: center;
  
}

#s-61255b35-5fef-43ae-a830-6c49eb9a012d {
  margin-left: 0em;
max-width: 100%;
text-align: center;
}
@media (max-width: 767px){#s-61255b35-5fef-43ae-a830-6c49eb9a012d {
  margin-left: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
max-width: 60%;
}
}
#s-61255b35-5fef-43ae-a830-6c49eb9a012d {
  overflow: hidden;
  
  
      max-width: 100%;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-61255b35-5fef-43ae-a830-6c49eb9a012d .shogun-image-content {
  
    justify-content: center;
  
}

@media (min-width: 0px) {
[id="s-8de63e2a-603d-4110-ba03-f4d5b0b1c986"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 768px) {
[id="s-8de63e2a-603d-4110-ba03-f4d5b0b1c986"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-8de63e2a-603d-4110-ba03-f4d5b0b1c986"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-8de63e2a-603d-4110-ba03-f4d5b0b1c986"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 5.0px);
}

}

#s-19922e01-57e1-4183-af5f-fd5d7e744701 {
  margin-bottom: 10px;
}
@media (max-width: 767px){#s-19922e01-57e1-4183-af5f-fd5d7e744701 {
  margin-top: 10%;
margin-left: 12%;
margin-right: 5%;
}
}
@media (min-width: 0px) {
[id="s-19922e01-57e1-4183-af5f-fd5d7e744701"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-19922e01-57e1-4183-af5f-fd5d7e744701"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-19922e01-57e1-4183-af5f-fd5d7e744701"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-19922e01-57e1-4183-af5f-fd5d7e744701"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px){#s-3d2cef48-f126-4557-9f44-4f0bc2c4325a {
  text-align: center;
}
}
#s-4ce1ae90-2bd2-4419-9315-79c8509e1f1c {
  margin-bottom: 10px;
}
@media (max-width: 767px){#s-4ce1ae90-2bd2-4419-9315-79c8509e1f1c {
  margin-top: 3%;
margin-left: 12%;
margin-bottom: 5%;
margin-right: 5%;
}
}
@media (min-width: 0px) {
[id="s-4ce1ae90-2bd2-4419-9315-79c8509e1f1c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-4ce1ae90-2bd2-4419-9315-79c8509e1f1c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-4ce1ae90-2bd2-4419-9315-79c8509e1f1c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-4ce1ae90-2bd2-4419-9315-79c8509e1f1c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px){#s-047213fa-d3c7-4db3-8411-f1614722eb94 {
  text-align: right;
}
}
#s-4978de95-9118-4e3d-92a1-0c8e8f98a005 {
  margin-top: 1em;
margin-left: -3em;
margin-right: 4em;
max-width: 323px;
text-align: center;
}
@media (max-width: 767px){#s-4978de95-9118-4e3d-92a1-0c8e8f98a005 {
  margin-top: 2em;
margin-left: -1em;
margin-right: 2em;
}
}
#s-4978de95-9118-4e3d-92a1-0c8e8f98a005 {
  overflow: hidden;
  
  
      max-width: 323px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-4978de95-9118-4e3d-92a1-0c8e8f98a005 .shogun-image-content {
  
    justify-content: center;
  
}

@media (max-width: 767px){#s-0e86b4b8-8dd3-4d1b-bb12-51aede4ceafc {
  margin-left: 6%;
margin-right: 12%;
}
}
@media (min-width: 0px) {
[id="s-0e86b4b8-8dd3-4d1b-bb12-51aede4ceafc"] > .shg-row > .shg-c-xs-2_4 {
  width: calc(20.0% - 8.0px);
}

}

@media (min-width: 768px) {
[id="s-0e86b4b8-8dd3-4d1b-bb12-51aede4ceafc"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 8.0px);
}

}

@media (min-width: 992px) {
[id="s-0e86b4b8-8dd3-4d1b-bb12-51aede4ceafc"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 8.0px);
}

}

@media (min-width: 1200px) {
[id="s-0e86b4b8-8dd3-4d1b-bb12-51aede4ceafc"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 8.0px);
}

}

#s-fad6804b-9d63-4de9-bbcd-24d19181b74f {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

/*
  $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;
}

#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;
          user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

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

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}

.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty:not(.shopify-section *):not([id^="wistia"]) {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}

/* <-- User Content Animations */

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

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

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