#s-4fd4336e-aa2f-4760-9feb-371ed9f8531f {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-48e92d1f-a1f2-473d-9bc6-0ca3006da523 {
  text-align: left;
}

#s-6cce660e-f7ec-4d4c-9ad9-d67c2fc8a15f {
  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-5a38963c-ce2c-4551-b338-784c088f8b7b .shogun-tabs > li > .shogun-tab-box {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(246, 246, 246, 0);
  }
  #s-5a38963c-ce2c-4551-b338-784c088f8b7b .shogun-tabs > li.shogun-tab-active > .shogun-tab-box  {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 1);
  }
#s-5a38963c-ce2c-4551-b338-784c088f8b7b .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-5a38963c-ce2c-4551-b338-784c088f8b7b .shogun-tabs > li.shogun-tab-active > .shogun-tab-box > .shogun-tab-title {
  color: rgba(20, 133, 239, 1);
}

#s-5a38963c-ce2c-4551-b338-784c088f8b7b .shogun-tabs > li > .shogun-tab-border {
  width: calc(100% - 2 * 1px);
  left: 1px;
  bottom: -1px;
  height: 1px;
  background: rgba(255, 255, 255, 1);
}

#s-5a38963c-ce2c-4551-b338-784c088f8b7b .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-6270f274-3d49-490b-8c2a-8fd07a92a6c4 {
  padding-bottom: 50px;
min-height: 50px;
}








#s-6270f274-3d49-490b-8c2a-8fd07a92a6c4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6270f274-3d49-490b-8c2a-8fd07a92a6c4.shg-box.shg-c {
  justify-content: center;
}

#s-66e81d9c-5166-4dc6-83aa-a48a3233a759 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-66e81d9c-5166-4dc6-83aa-a48a3233a759 {
  padding-top: 0px;
padding-bottom: 5em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-66e81d9c-5166-4dc6-83aa-a48a3233a759 {
  padding-bottom: 5em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-66e81d9c-5166-4dc6-83aa-a48a3233a759 {
  padding-bottom: 5em;
}
}@media (max-width: 767px){#s-66e81d9c-5166-4dc6-83aa-a48a3233a759 {
  margin-left: 0px;
margin-right: 0px;
padding-bottom: 0em;
}
}







#s-66e81d9c-5166-4dc6-83aa-a48a3233a759 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-66e81d9c-5166-4dc6-83aa-a48a3233a759.shg-box.shg-c {
  justify-content: center;
}

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

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

[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-9dcb75d7-ed05-4c91-9105-20d4c75ec5b8 {
  background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-9dcb75d7-ed05-4c91-9105-20d4c75ec5b8 {
  margin-left: 0px;
margin-right: 0px;
}
}
@media (min-width: 0px) {
[id="s-9dcb75d7-ed05-4c91-9105-20d4c75ec5b8"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9dcb75d7-ed05-4c91-9105-20d4c75ec5b8"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-9dcb75d7-ed05-4c91-9105-20d4c75ec5b8"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-9dcb75d7-ed05-4c91-9105-20d4c75ec5b8"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

.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-5e4777e3-62fc-4808-9a4b-919c600e4395 {
  text-align: left;
}
@media (min-width: 1200px){#s-5e4777e3-62fc-4808-9a4b-919c600e4395 {
  display: none;
}
#s-5e4777e3-62fc-4808-9a4b-919c600e4395, #wrap-s-5e4777e3-62fc-4808-9a4b-919c600e4395, #wrap-content-s-5e4777e3-62fc-4808-9a4b-919c600e4395 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5e4777e3-62fc-4808-9a4b-919c600e4395 {
  display: none;
}
#s-5e4777e3-62fc-4808-9a4b-919c600e4395, #wrap-s-5e4777e3-62fc-4808-9a4b-919c600e4395, #wrap-content-s-5e4777e3-62fc-4808-9a4b-919c600e4395 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-5e4777e3-62fc-4808-9a4b-919c600e4395 {
  display: none;
}
#s-5e4777e3-62fc-4808-9a4b-919c600e4395, #wrap-s-5e4777e3-62fc-4808-9a4b-919c600e4395, #wrap-content-s-5e4777e3-62fc-4808-9a4b-919c600e4395 { display: none !important; }}@media (max-width: 767px){#s-5e4777e3-62fc-4808-9a4b-919c600e4395 {
  margin-top: 0px;
}
}
#s-5e4777e3-62fc-4808-9a4b-919c600e4395 {
  overflow: hidden;
  
  
}







  #s-5e4777e3-62fc-4808-9a4b-919c600e4395 img.shogun-image {
    

    
    
    
  }


#s-5e4777e3-62fc-4808-9a4b-919c600e4395 .shogun-image-content {
  
    justify-content: center;
  
}

#s-31a5e2eb-c01f-4164-a96e-0d1fab520a5e {
  max-width: 1920px;
text-align: left;
}
@media (min-width: 1200px){#s-31a5e2eb-c01f-4164-a96e-0d1fab520a5e {
  margin-top: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-31a5e2eb-c01f-4164-a96e-0d1fab520a5e {
  margin-top: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-31a5e2eb-c01f-4164-a96e-0d1fab520a5e {
  margin-top: 0px;
}
}@media (max-width: 767px){#s-31a5e2eb-c01f-4164-a96e-0d1fab520a5e {
  display: none;
}
#s-31a5e2eb-c01f-4164-a96e-0d1fab520a5e, #wrap-s-31a5e2eb-c01f-4164-a96e-0d1fab520a5e, #wrap-content-s-31a5e2eb-c01f-4164-a96e-0d1fab520a5e { display: none !important; }}
#s-31a5e2eb-c01f-4164-a96e-0d1fab520a5e {
  overflow: hidden;
  
  
      max-width: 1920px;
      
      
      
        margin-left: 0;
        margin-right: auto;
      
  
}








#s-31a5e2eb-c01f-4164-a96e-0d1fab520a5e .shogun-image-content {
  
    justify-content: center;
  
}

#s-fd74fdcc-c3c3-4b7c-a236-0bd1d887bd5a {
  min-height: 50px;
}
@media (min-width: 1200px){#s-fd74fdcc-c3c3-4b7c-a236-0bd1d887bd5a {
  margin-top: 4em;
margin-left: 2%;
margin-right: 2%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-fd74fdcc-c3c3-4b7c-a236-0bd1d887bd5a {
  margin-top: 4em;
margin-left: 2%;
margin-right: 2%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-fd74fdcc-c3c3-4b7c-a236-0bd1d887bd5a {
  margin-top: 3em;
}
}@media (max-width: 767px){#s-fd74fdcc-c3c3-4b7c-a236-0bd1d887bd5a {
  margin-top: 1em;
margin-left: 0.5em;
margin-right: 0.5em;
}
}







#s-fd74fdcc-c3c3-4b7c-a236-0bd1d887bd5a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fd74fdcc-c3c3-4b7c-a236-0bd1d887bd5a.shg-box.shg-c {
  justify-content: center;
}

#s-f2b7a072-22dd-4863-bfa3-1a79abb7dfcf {
  margin-left: 4em;
margin-right: 0em;
min-height: 50px;
}
@media (min-width: 1200px){#s-f2b7a072-22dd-4863-bfa3-1a79abb7dfcf {
  margin-left: 0em;
margin-right: 0em;
padding-left: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-f2b7a072-22dd-4863-bfa3-1a79abb7dfcf {
  margin-left: 0em;
margin-right: 0em;
padding-left: 0em;
padding-right: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f2b7a072-22dd-4863-bfa3-1a79abb7dfcf {
  margin-left: 0em;
}
}@media (max-width: 767px){#s-f2b7a072-22dd-4863-bfa3-1a79abb7dfcf {
  margin-left: 0.5em;
margin-right: 0.5em;
}
}







#s-f2b7a072-22dd-4863-bfa3-1a79abb7dfcf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f2b7a072-22dd-4863-bfa3-1a79abb7dfcf.shg-box.shg-c {
  justify-content: center;
}

#s-0cc1834e-a56b-47c5-85d3-0cad520faa87 {
  margin-left: 3em;
margin-right: 3em;
min-height: 50px;
}
@media (max-width: 767px){#s-0cc1834e-a56b-47c5-85d3-0cad520faa87 {
  margin-left: 0em;
margin-right: 0em;
}
}







#s-0cc1834e-a56b-47c5-85d3-0cad520faa87 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0cc1834e-a56b-47c5-85d3-0cad520faa87.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-e4a975b8-1ced-40cf-b535-98b1a7aa7e8b {
  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-e4a975b8-1ced-40cf-b535-98b1a7aa7e8b {
  margin-left: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e4a975b8-1ced-40cf-b535-98b1a7aa7e8b {
  margin-top: 0em;
margin-left: 0em;
}
}@media (max-width: 767px){#s-e4a975b8-1ced-40cf-b535-98b1a7aa7e8b {
  margin-top: 0em;
margin-bottom: 1em;
}
}
#s-e4a975b8-1ced-40cf-b535-98b1a7aa7e8b .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-e4a975b8-1ced-40cf-b535-98b1a7aa7e8b .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-e4a975b8-1ced-40cf-b535-98b1a7aa7e8b .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-e4a975b8-1ced-40cf-b535-98b1a7aa7e8b .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-7fbef0cc-0206-4871-a18d-296133b5581b {
  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-7fbef0cc-0206-4871-a18d-296133b5581b {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-7fbef0cc-0206-4871-a18d-296133b5581b .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-7fbef0cc-0206-4871-a18d-296133b5581b .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


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

#s-cdb392ca-384b-42a0-8cf7-41e70a04200d {
  margin-top: 0px;
margin-left: 0em;
margin-right: 0em;
padding-top: 3%;
padding-bottom: 3%;
padding-right: 0%;
}
@media (min-width: 1200px){#s-cdb392ca-384b-42a0-8cf7-41e70a04200d {
  margin-left: 3em;
margin-right: 4em;
padding-top: 1em;
padding-bottom: 0%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-cdb392ca-384b-42a0-8cf7-41e70a04200d {
  margin-left: 3em;
margin-right: 4em;
padding-top: 1em;
padding-bottom: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-cdb392ca-384b-42a0-8cf7-41e70a04200d {
  padding-top: 1em;
padding-bottom: 0%;
}
}@media (max-width: 767px){#s-cdb392ca-384b-42a0-8cf7-41e70a04200d {
  padding-top: 1em;
padding-bottom: 0.5em;
}
}
#s-4da7a3fa-810a-4df6-b859-97271d8671b9 {
  margin-top: 0em;
margin-left: 0em;
margin-right: 0em;
min-height: 50px;
}
@media (min-width: 1200px){#s-4da7a3fa-810a-4df6-b859-97271d8671b9 {
  margin-top: 1em;
margin-left: 4em;
margin-right: 2em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4da7a3fa-810a-4df6-b859-97271d8671b9 {
  margin-top: 1em;
margin-left: 4em;
margin-right: 2em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-4da7a3fa-810a-4df6-b859-97271d8671b9 {
  margin-top: 1em;
margin-left: 0em;
margin-right: 0em;
}
}@media (max-width: 767px){#s-4da7a3fa-810a-4df6-b859-97271d8671b9 {
  margin-top: 1em;
margin-left: 0em;
margin-right: 0em;
}
}







#s-4da7a3fa-810a-4df6-b859-97271d8671b9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4da7a3fa-810a-4df6-b859-97271d8671b9.shg-box.shg-c {
  justify-content: center;
}

#s-cca9ae7d-6996-4118-97d9-a9ba6f13287a {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}








#s-cca9ae7d-6996-4118-97d9-a9ba6f13287a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-cca9ae7d-6996-4118-97d9-a9ba6f13287a.shg-box.shg-c {
  justify-content: center;
}

#s-e8695f26-20cd-45e2-afa8-c33895b0e217 {
  margin-left: -6%;
margin-right: 0px;
text-align: left;
}
@media (max-width: 767px){#s-e8695f26-20cd-45e2-afa8-c33895b0e217 {
  margin-left: -1.5%;
}
}
#s-b495c118-0f86-46d1-bfe4-0597ee44dd8b {
  margin-left: 3em;
margin-right: auto;
}
@media (max-width: 767px){#s-b495c118-0f86-46d1-bfe4-0597ee44dd8b {
  margin-left: 0em;
}
}







#s-b495c118-0f86-46d1-bfe4-0597ee44dd8b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b495c118-0f86-46d1-bfe4-0597ee44dd8b.shg-box.shg-c {
  justify-content: center;
}

#s-9b7044a9-e9b7-415d-8433-8c17868a44c9 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (min-width: 1200px){#s-9b7044a9-e9b7-415d-8433-8c17868a44c9 {
  margin-top: 0.5em;
margin-left: 0%;
margin-right: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9b7044a9-e9b7-415d-8433-8c17868a44c9 {
  margin-top: 0.5em;
margin-left: 0%;
margin-right: 0px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-9b7044a9-e9b7-415d-8433-8c17868a44c9 {
  margin-top: 0.5em;
}
}@media (max-width: 767px){#s-9b7044a9-e9b7-415d-8433-8c17868a44c9 {
  margin-top: 0em;
margin-bottom: 0.5em;
}
}







#s-9b7044a9-e9b7-415d-8433-8c17868a44c9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9b7044a9-e9b7-415d-8433-8c17868a44c9.shg-box.shg-c {
  justify-content: center;
}

#s-56e8d001-e0e6-40eb-b35c-1b411cf18d2c {
  margin-left: 0px;
margin-right: 0px;
}

#s-99b6476c-d161-4549-bd21-4061ff6fc5e3 {
  text-align: right;
}
@media (min-width: 1200px){#s-99b6476c-d161-4549-bd21-4061ff6fc5e3 {
  padding-left: 0%;
padding-right: 0%;
}
}
#s-99b6476c-d161-4549-bd21-4061ff6fc5e3 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-99b6476c-d161-4549-bd21-4061ff6fc5e3 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-99b6476c-d161-4549-bd21-4061ff6fc5e3 .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-1af40620-684f-4c3d-a0b2-526f3faf02a2 {
  text-align: left;
}

#s-738c4398-e81f-4880-b0a6-0de4f466a891 {
  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-738c4398-e81f-4880-b0a6-0de4f466a891 {
  margin-top: 0em;
margin-left: 0%;
margin-bottom: 0em;
margin-right: 0%;
padding-top: 0.5em;
padding-left: 0em;
padding-right: 1em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-738c4398-e81f-4880-b0a6-0de4f466a891 {
  margin-top: 0em;
margin-bottom: 0em;
margin-right: 0%;
padding-top: 0.5em;
padding-left: 0em;
padding-bottom: 2em;
padding-right: 1em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-738c4398-e81f-4880-b0a6-0de4f466a891 {
  margin-left: 0%;
padding-left: 0em;
}
}@media (max-width: 767px){#s-738c4398-e81f-4880-b0a6-0de4f466a891 {
  margin-top: 0em;
margin-bottom: 0em;
padding-top: 0em;
padding-bottom: 0em;
}
}







#s-738c4398-e81f-4880-b0a6-0de4f466a891 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-738c4398-e81f-4880-b0a6-0de4f466a891.shg-box.shg-c {
  justify-content: center;
}

#s-6a48c99c-c382-40bc-8e2e-973ca88b00ca {
  margin-top: 1em;
margin-left: 0px;
margin-bottom: 0.5em;
margin-right: 0%;
padding-top: 1em;
padding-left: 1em;
padding-bottom: 1em;
padding-right: 1em;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: #000;
border-style: none;
border-radius: 5px;
min-height: 50px;
max-width: 700px;
background-color: rgba(239, 239, 239, 1);
}
@media (min-width: 1200px){#s-6a48c99c-c382-40bc-8e2e-973ca88b00ca {
  margin-right: 5%;
max-width: 700px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-6a48c99c-c382-40bc-8e2e-973ca88b00ca {
  margin-right: 10%;
max-width: 700px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-6a48c99c-c382-40bc-8e2e-973ca88b00ca {
  margin-right: 10%;
}
}@media (max-width: 767px){#s-6a48c99c-c382-40bc-8e2e-973ca88b00ca {
  margin-bottom: 1em;
}
}







#s-6a48c99c-c382-40bc-8e2e-973ca88b00ca > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6a48c99c-c382-40bc-8e2e-973ca88b00ca.shg-box.shg-c {
  justify-content: center;
}

#s-2ad1b62f-e189-4856-8f8d-c6755d69903f {
  margin-left: 0px;
margin-right: 0px;
text-align: left;
}
@media (max-width: 767px){#s-2ad1b62f-e189-4856-8f8d-c6755d69903f {
  margin-left: 0px;
margin-right: 0px;
}
}
#s-2da59f18-3086-4b7d-a0f9-13200e1c0e91 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (max-width: 767px){#s-2da59f18-3086-4b7d-a0f9-13200e1c0e91 {
  margin-left: 0px;
margin-right: 0px;
}
}







#s-2da59f18-3086-4b7d-a0f9-13200e1c0e91 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2da59f18-3086-4b7d-a0f9-13200e1c0e91.shg-box.shg-c {
  justify-content: center;
}

#s-053d7984-88b3-4650-ac51-ecfb03fd4163 {
  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-d4317252-0aca-45f1-bd9d-3655d52deb19 {
  margin-left: auto;
margin-right: auto;
}








#s-d4317252-0aca-45f1-bd9d-3655d52deb19 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-d4317252-0aca-45f1-bd9d-3655d52deb19.shg-box.shg-c {
  justify-content: center;
}

#s-2c7bc12c-fcea-4601-b9a4-cfb8b7026bf2 {
  margin-top: 3em;
margin-bottom: 5em;
padding-top: 0%;
padding-left: 5%;
padding-bottom: 0%;
padding-right: 5%;
}

@media (min-width: 0px) {
[id="s-2c7bc12c-fcea-4601-b9a4-cfb8b7026bf2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2c7bc12c-fcea-4601-b9a4-cfb8b7026bf2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-2c7bc12c-fcea-4601-b9a4-cfb8b7026bf2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-2c7bc12c-fcea-4601-b9a4-cfb8b7026bf2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-54ae2c90-01c0-47be-a8e5-73a37bfed785 {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-54ae2c90-01c0-47be-a8e5-73a37bfed785 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


#s-54ae2c90-01c0-47be-a8e5-73a37bfed785 .shogun-heading-component h2 a {
  color: rgba(0, 0, 0, 1);
}


#s-e00aae32-b067-47be-b62c-6470daea166f {
  margin-left: -5%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
}
@media (min-width: 1200px){#s-e00aae32-b067-47be-b62c-6470daea166f {
  margin-left: -10%;
}
}@media (max-width: 767px){#s-e00aae32-b067-47be-b62c-6470daea166f {
  display: none;
}
#s-e00aae32-b067-47be-b62c-6470daea166f, #wrap-s-e00aae32-b067-47be-b62c-6470daea166f, #wrap-content-s-e00aae32-b067-47be-b62c-6470daea166f { display: none !important; }}
#s-e00aae32-b067-47be-b62c-6470daea166f {
  overflow: hidden;
  
  
}







  #s-e00aae32-b067-47be-b62c-6470daea166f img.shogun-image {
    

    
    
    
  }


#s-e00aae32-b067-47be-b62c-6470daea166f .shogun-image-content {
  
    justify-content: center;
  
}

#s-803d974b-4951-4170-9af2-47811cfbc34b {
  margin-left: -5%;
margin-right: 0%;
padding-left: 0%;
padding-right: 0%;
text-align: left;
}
@media (min-width: 1200px){#s-803d974b-4951-4170-9af2-47811cfbc34b {
  margin-left: -10%;
display: none;
}
#s-803d974b-4951-4170-9af2-47811cfbc34b, #wrap-s-803d974b-4951-4170-9af2-47811cfbc34b, #wrap-content-s-803d974b-4951-4170-9af2-47811cfbc34b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-803d974b-4951-4170-9af2-47811cfbc34b {
  display: none;
}
#s-803d974b-4951-4170-9af2-47811cfbc34b, #wrap-s-803d974b-4951-4170-9af2-47811cfbc34b, #wrap-content-s-803d974b-4951-4170-9af2-47811cfbc34b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-803d974b-4951-4170-9af2-47811cfbc34b {
  display: none;
}
#s-803d974b-4951-4170-9af2-47811cfbc34b, #wrap-s-803d974b-4951-4170-9af2-47811cfbc34b, #wrap-content-s-803d974b-4951-4170-9af2-47811cfbc34b { display: none !important; }}
#s-803d974b-4951-4170-9af2-47811cfbc34b {
  overflow: hidden;
  
  
}







  #s-803d974b-4951-4170-9af2-47811cfbc34b img.shogun-image {
    

    
    
    
  }


#s-803d974b-4951-4170-9af2-47811cfbc34b .shogun-image-content {
  
    justify-content: center;
  
}

#s-18bdbcf9-c34b-401f-8249-90c0306be0cb {
  margin-top: 1px;
margin-left: 5px;
margin-bottom: 0.5em;
margin-right: 5px;
padding-top: 3px;
padding-left: 0%;
padding-bottom: 3px;
padding-right: 0%;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(73, 74, 244, 1);
border-style: solid;
border-radius: 10px;
min-height: 50px;
}








#s-18bdbcf9-c34b-401f-8249-90c0306be0cb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-18bdbcf9-c34b-401f-8249-90c0306be0cb.shg-box.shg-c {
  justify-content: center;
}

#s-21573b2d-a068-426c-92ba-39f196e759af {
  margin-left: 0.2%;
margin-right: 0.2%;
padding-left: 0%;
padding-right: 0%;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(73, 74, 244, 1);
border-style: solid;
border-radius: 0px;
background-repeat: no-repeat;
background-color: rgba(73, 74, 244, 1);
}

@media (min-width: 0px) {
[id="s-21573b2d-a068-426c-92ba-39f196e759af"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-21573b2d-a068-426c-92ba-39f196e759af"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-21573b2d-a068-426c-92ba-39f196e759af"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-21573b2d-a068-426c-92ba-39f196e759af"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-21573b2d-a068-426c-92ba-39f196e759af"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-21573b2d-a068-426c-92ba-39f196e759af"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-21573b2d-a068-426c-92ba-39f196e759af"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

#s-398538ff-2668-49de-82f9-432f92bfd370 {
  margin-top: 0px;
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-398538ff-2668-49de-82f9-432f92bfd370 {
  display: none;
}
#s-398538ff-2668-49de-82f9-432f92bfd370, #wrap-s-398538ff-2668-49de-82f9-432f92bfd370, #wrap-content-s-398538ff-2668-49de-82f9-432f92bfd370 { display: none !important; }}
#s-38b3ce4b-4cd9-47b1-9243-8b3350f86233 {
  margin-top: 27px;
padding-left: 10%;
padding-right: 0%;
}
@media (min-width: 1200px){#s-38b3ce4b-4cd9-47b1-9243-8b3350f86233 {
  margin-top: 35px;
display: none;
}
#s-38b3ce4b-4cd9-47b1-9243-8b3350f86233, #wrap-s-38b3ce4b-4cd9-47b1-9243-8b3350f86233, #wrap-content-s-38b3ce4b-4cd9-47b1-9243-8b3350f86233 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-38b3ce4b-4cd9-47b1-9243-8b3350f86233 {
  display: none;
}
#s-38b3ce4b-4cd9-47b1-9243-8b3350f86233, #wrap-s-38b3ce4b-4cd9-47b1-9243-8b3350f86233, #wrap-content-s-38b3ce4b-4cd9-47b1-9243-8b3350f86233 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-38b3ce4b-4cd9-47b1-9243-8b3350f86233 {
  display: none;
}
#s-38b3ce4b-4cd9-47b1-9243-8b3350f86233, #wrap-s-38b3ce4b-4cd9-47b1-9243-8b3350f86233, #wrap-content-s-38b3ce4b-4cd9-47b1-9243-8b3350f86233 { display: none !important; }}
.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-45d2bb90-ec1b-4011-af71-38a69c3a60ab {
  margin-top: 9px;
margin-left: 22%;
margin-bottom: 10px;
margin-right: 22%;
max-width: 1286px;
aspect-ratio: 1286/513;
text-align: center;
}
@media (min-width: 1200px){#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab {
  margin-left: 27%;
margin-right: 27%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab {
  margin-left: 0%;
margin-right: 0%;
}
}@media (max-width: 767px){#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab {
  margin-top: 50px;
margin-left: 0%;
margin-bottom: 50px;
margin-right: 0%;
}
}
#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab {
  margin: 0 !important;
  overflow: visible;
}

#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab-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-45d2bb90-ec1b-4011-af71-38a69c3a60ab {
  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-45d2bb90-ec1b-4011-af71-38a69c3a60ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab img.shogun-image {
  /* Add background color handling */
  
}

#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-45d2bb90-ec1b-4011-af71-38a69c3a60ab .shg-image-content-wrapper {
      aspect-ratio: 1286/513;
      min-width: 100%;
      height: auto;
    }

    #s-45d2bb90-ec1b-4011-af71-38a69c3a60ab .shogun-image-link {
      aspect-ratio: 1286/513;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-45d2bb90-ec1b-4011-af71-38a69c3a60ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-45d2bb90-ec1b-4011-af71-38a69c3a60ab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1286px;
  }



  img.s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image {
    
    
    
    max-height: 1286px;
  }


.s-45d2bb90-ec1b-4011-af71-38a69c3a60ab .shogun-image-content {
  
    justify-content: center;
  
}

.s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image {
  box-sizing: border-box;
}



.s-45d2bb90-ec1b-4011-af71-38a69c3a60ab img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab {
      --shg-aspect-ratio: calc(1286/513); 
    }

    .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image-container {
      position: relative;
    }

    .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1286px;
    }
  }

@media (min-width: 1200px){#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab {
  margin: 0 !important;
  overflow: visible;
}

#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab-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-45d2bb90-ec1b-4011-af71-38a69c3a60ab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 27%;
  margin-right: 27%;
  
  
}

.shg-image-content-margin-container-s-45d2bb90-ec1b-4011-af71-38a69c3a60ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab img.shogun-image {
  /* Add background color handling */
  
}

#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-45d2bb90-ec1b-4011-af71-38a69c3a60ab .shg-image-content-wrapper {
      aspect-ratio: 1286/513;
      min-width: 100%;
      height: auto;
    }

    #s-45d2bb90-ec1b-4011-af71-38a69c3a60ab .shogun-image-link {
      aspect-ratio: 1286/513;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-45d2bb90-ec1b-4011-af71-38a69c3a60ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-45d2bb90-ec1b-4011-af71-38a69c3a60ab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1286px;
  }



  img.s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image {
    
    
    
    max-height: 1286px;
  }


.s-45d2bb90-ec1b-4011-af71-38a69c3a60ab .shogun-image-content {
  
    justify-content: center;
  
}

.s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image {
  box-sizing: border-box;
}



.s-45d2bb90-ec1b-4011-af71-38a69c3a60ab img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab {
      --shg-aspect-ratio: calc(1286/513); 
    }

    .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image-container {
      position: relative;
    }

    .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1286px;
    }
  }

}@media (min-width: 992px) and (max-width: 1199px){#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab {
  margin: 0 !important;
  overflow: visible;
}

#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab-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-45d2bb90-ec1b-4011-af71-38a69c3a60ab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

.shg-image-content-margin-container-s-45d2bb90-ec1b-4011-af71-38a69c3a60ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab img.shogun-image {
  /* Add background color handling */
  
}

#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-45d2bb90-ec1b-4011-af71-38a69c3a60ab .shg-image-content-wrapper {
      aspect-ratio: 1286/513;
      min-width: 100%;
      height: auto;
    }

    #s-45d2bb90-ec1b-4011-af71-38a69c3a60ab .shogun-image-link {
      aspect-ratio: 1286/513;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-45d2bb90-ec1b-4011-af71-38a69c3a60ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-45d2bb90-ec1b-4011-af71-38a69c3a60ab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1286px;
  }



  img.s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image {
    
    
    
    max-height: 1286px;
  }


.s-45d2bb90-ec1b-4011-af71-38a69c3a60ab .shogun-image-content {
  
    justify-content: center;
  
}

.s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image {
  box-sizing: border-box;
}



.s-45d2bb90-ec1b-4011-af71-38a69c3a60ab img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab {
      --shg-aspect-ratio: calc(1286/513); 
    }

    .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image-container {
      position: relative;
    }

    .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1286px;
    }
  }

}@media (min-width: 768px) and (max-width: 991px){#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab {
  margin: 0 !important;
  overflow: visible;
}

#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab-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-45d2bb90-ec1b-4011-af71-38a69c3a60ab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0%;
  margin-right: 0%;
  
  
}

.shg-image-content-margin-container-s-45d2bb90-ec1b-4011-af71-38a69c3a60ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab img.shogun-image {
  /* Add background color handling */
  
}

#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab img.shogun-image {
  /* Add padding handling */
  
  
  
  
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-45d2bb90-ec1b-4011-af71-38a69c3a60ab .shg-image-content-wrapper {
      aspect-ratio: 1286/513;
      min-width: 100%;
      height: auto;
    }

    #s-45d2bb90-ec1b-4011-af71-38a69c3a60ab .shogun-image-link {
      aspect-ratio: 1286/513;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-45d2bb90-ec1b-4011-af71-38a69c3a60ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-45d2bb90-ec1b-4011-af71-38a69c3a60ab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1286px;
  }



  img.s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image {
    
    
    
    max-height: 1286px;
  }


.s-45d2bb90-ec1b-4011-af71-38a69c3a60ab .shogun-image-content {
  
    justify-content: center;
  
}

.s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image {
  box-sizing: border-box;
}



.s-45d2bb90-ec1b-4011-af71-38a69c3a60ab img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab {
      --shg-aspect-ratio: calc(1286/513); 
    }

    .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image-container {
      position: relative;
    }

    .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1286px;
    }
  }

}@media (max-width: 767px){#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab {
  margin: 0 !important;
  overflow: visible;
}

#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab-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-45d2bb90-ec1b-4011-af71-38a69c3a60ab {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  margin-left: 0%;
  margin-right: 0%;
  margin-top: 50px;
  margin-bottom: 50px;
}

.shg-image-content-margin-container-s-45d2bb90-ec1b-4011-af71-38a69c3a60ab {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab img.shogun-image {
  /* Add background color handling */
  
}

#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab img.shogun-image {
  /* Add padding handling */
  
  
  padding-top: 0px;
  padding-bottom: 0px;
  /* Add border handling */
  
  
  
  
  
  
  

}



  @supports  (aspect-ratio: 1/1) {
    
    #s-45d2bb90-ec1b-4011-af71-38a69c3a60ab .shg-image-content-wrapper {
      aspect-ratio: 1286/513;
      min-width: 100%;
      height: auto;
    }

    #s-45d2bb90-ec1b-4011-af71-38a69c3a60ab .shogun-image-link {
      aspect-ratio: 1286/513;
      min-width: 100%;
      height: auto;
    }
  }

  @supports not (aspect-ratio: 1/1) {
    #s-45d2bb90-ec1b-4011-af71-38a69c3a60ab .shg-image-content-wrapper {
      height: 100%;
      width: 100%;
    }
  }

  .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image-container {
    width: 100%;
    height: auto;
  }

  #s-45d2bb90-ec1b-4011-af71-38a69c3a60ab img.shogun-image {
    height: 100%;
    width: 100%;
    
    max-height: 1286px;
  }



  img.s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image {
    
    
    
    max-height: 1286px;
  }


.s-45d2bb90-ec1b-4011-af71-38a69c3a60ab .shogun-image-content {
  
    justify-content: center;
  
}

.s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shg-align-container {
  display: flex;
  justify-content: center
}

.s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image {
  box-sizing: border-box;
}



.s-45d2bb90-ec1b-4011-af71-38a69c3a60ab img.shogun-image {
  
}


  @supports not (aspect-ratio: 1/1) {
    .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab {
      --shg-aspect-ratio: calc(1286/513); 
    }

    .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image-container {
      position: relative;
    }

    .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-45d2bb90-ec1b-4011-af71-38a69c3a60ab img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      max-width: 1286px;
    }
  }

}
#s-7e3b5578-74f2-41ca-b06e-4a5bbaae24ee {
  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-7e3b5578-74f2-41ca-b06e-4a5bbaae24ee {
  margin-bottom: 1em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7e3b5578-74f2-41ca-b06e-4a5bbaae24ee {
  margin-bottom: 1em;
}
}@media (max-width: 767px){#s-7e3b5578-74f2-41ca-b06e-4a5bbaae24ee {
  margin-bottom: 0.5em;
padding-left: 1em;
padding-right: 1em;
min-height: 17em;
max-width: 100%;
}
}







#s-7e3b5578-74f2-41ca-b06e-4a5bbaae24ee > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7e3b5578-74f2-41ca-b06e-4a5bbaae24ee.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-7a2df95f-ff48-49d3-8064-2cf610e44a65 {
  margin-top: 0em;
margin-left: 0em;
margin-right: 40em;
}
@media (min-width: 768px) and (max-width: 991px){#s-7a2df95f-ff48-49d3-8064-2cf610e44a65 {
  margin-right: 25em;
}
}@media (max-width: 767px){#s-7a2df95f-ff48-49d3-8064-2cf610e44a65 {
  margin-right: 0em;
}
}
#s-9ba14130-d674-4a11-b561-0e133c369628 {
  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-9ba14130-d674-4a11-b561-0e133c369628 {
  margin-top: 0.5em;
margin-left: 1em;
margin-bottom: 0.5em;
margin-right: 1em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9ba14130-d674-4a11-b561-0e133c369628 {
  margin-top: 0.5em;
margin-left: 1em;
margin-bottom: 0.5em;
margin-right: 1em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-9ba14130-d674-4a11-b561-0e133c369628 {
  margin-top: 0.5em;
margin-left: 0.5em;
margin-right: 0.5em;
}
}@media (max-width: 767px){#s-9ba14130-d674-4a11-b561-0e133c369628 {
  margin-bottom: 0.5em;
}
}
@media (min-width: 0px) {
[id="s-9ba14130-d674-4a11-b561-0e133c369628"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9ba14130-d674-4a11-b561-0e133c369628"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (min-width: 992px) {
[id="s-9ba14130-d674-4a11-b561-0e133c369628"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (min-width: 1200px) {
[id="s-9ba14130-d674-4a11-b561-0e133c369628"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.25em);
}

}

#s-f0d67ff1-2212-4a87-93cf-4a6bb287bbb9 {
  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-f0d67ff1-2212-4a87-93cf-4a6bb287bbb9 {
  padding-bottom: 0em;
}
}@media (max-width: 767px){#s-f0d67ff1-2212-4a87-93cf-4a6bb287bbb9 {
  margin-left: 0.5em;
margin-bottom: 0.5em;
margin-right: 0.5em;
}
}







#s-f0d67ff1-2212-4a87-93cf-4a6bb287bbb9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f0d67ff1-2212-4a87-93cf-4a6bb287bbb9.shg-box.shg-c {
  justify-content: center;
}

#s-85b0b757-295f-4f1b-a808-2dc419d86549 {
  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-85b0b757-295f-4f1b-a808-2dc419d86549 {
  margin-left: 0.5em;
margin-right: 0.5em;
}
}
#s-89cd33c2-9875-4e45-a4b7-db6c69485a27 {
  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-89cd33c2-9875-4e45-a4b7-db6c69485a27 {
  margin-left: 0.5em;
margin-right: 0.5em;
min-height: 0px;
}
}







#s-89cd33c2-9875-4e45-a4b7-db6c69485a27 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-89cd33c2-9875-4e45-a4b7-db6c69485a27.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-ef7a85cf-173f-4286-947b-af47b37c3e73 {
  margin-left: 1em;
margin-bottom: 1.5em;
margin-right: 1em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ef7a85cf-173f-4286-947b-af47b37c3e73 {
  margin-bottom: 1.5em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-ef7a85cf-173f-4286-947b-af47b37c3e73 {
  margin-top: 0.5em;
margin-left: 0.5em;
margin-bottom: 0.5em;
margin-right: 0.5em;
}
}@media (max-width: 767px){#s-ef7a85cf-173f-4286-947b-af47b37c3e73 {
  margin-bottom: 0.5em;
}
}
@media (min-width: 0px) {
[id="s-ef7a85cf-173f-4286-947b-af47b37c3e73"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ef7a85cf-173f-4286-947b-af47b37c3e73"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (min-width: 992px) {
[id="s-ef7a85cf-173f-4286-947b-af47b37c3e73"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (min-width: 1200px) {
[id="s-ef7a85cf-173f-4286-947b-af47b37c3e73"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (max-width: 767px) {
  [id="s-ef7a85cf-173f-4286-947b-af47b37c3e73"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-085d0e52-67e3-4cf7-aa96-8398482dc7f6 {
  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-085d0e52-67e3-4cf7-aa96-8398482dc7f6 {
  padding-bottom: 0em;
}
}@media (max-width: 767px){#s-085d0e52-67e3-4cf7-aa96-8398482dc7f6 {
  margin-left: 0.5em;
margin-bottom: 0.5em;
margin-right: 0.5em;
min-height: 0px;
}
}







#s-085d0e52-67e3-4cf7-aa96-8398482dc7f6 > .shg-box-overlay {
  background-color: rgba(255, 255, 255, 0.99);
  opacity: 0;
  display: block;
}#s-085d0e52-67e3-4cf7-aa96-8398482dc7f6.shg-box.shg-c {
  justify-content: center;
}

#s-63c72a92-2bd1-4608-a5b8-48b6ccdd1aa9 {
  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-63c72a92-2bd1-4608-a5b8-48b6ccdd1aa9 {
  padding-bottom: 0em;
}
}@media (max-width: 767px){#s-63c72a92-2bd1-4608-a5b8-48b6ccdd1aa9 {
  margin-left: 0.5em;
margin-bottom: 0.5em;
margin-right: 0.5em;
}
}







#s-63c72a92-2bd1-4608-a5b8-48b6ccdd1aa9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-63c72a92-2bd1-4608-a5b8-48b6ccdd1aa9.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-d12c1af9-f046-40ee-883e-5adb7332b14c {
  margin-top: 0em;
margin-left: 0em;
margin-right: 30em;
}
@media (min-width: 768px) and (max-width: 991px){#s-d12c1af9-f046-40ee-883e-5adb7332b14c {
  margin-right: 25em;
}
}@media (max-width: 767px){#s-d12c1af9-f046-40ee-883e-5adb7332b14c {
  margin-right: 0em;
}
}
@media (min-width: 1200px){#s-ff377693-7573-4626-b777-783ebba60729 {
  padding-top: 1.5em;
padding-left: 5em;
padding-bottom: 1.5em;
padding-right: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ff377693-7573-4626-b777-783ebba60729 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-ff377693-7573-4626-b777-783ebba60729 {
  
}
}@media (max-width: 767px){#s-ff377693-7573-4626-b777-783ebba60729 {
  margin-left: 1em;
margin-right: 1em;
padding-top: 1em;
padding-bottom: 1em;
}
}
#s-daa4b2c3-1cbe-44cd-ba1a-deeb759648a2 {
  margin-left: 2em;
margin-bottom: 1em;
margin-right: 0em;
min-height: 50px;
}
@media (min-width: 1200px){#s-daa4b2c3-1cbe-44cd-ba1a-deeb759648a2 {
  padding-top: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-daa4b2c3-1cbe-44cd-ba1a-deeb759648a2 {
  padding-top: 0em;
padding-bottom: 0em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-daa4b2c3-1cbe-44cd-ba1a-deeb759648a2 {
  padding-top: 0em;
padding-bottom: 0em;
}
}@media (max-width: 767px){#s-daa4b2c3-1cbe-44cd-ba1a-deeb759648a2 {
  margin-left: 0.5em;
}
}







#s-daa4b2c3-1cbe-44cd-ba1a-deeb759648a2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-daa4b2c3-1cbe-44cd-ba1a-deeb759648a2.shg-box.shg-c {
  justify-content: center;
}

#s-8e4681a5-1af4-4052-b07d-98212cf02cf5 {
  margin-left: 1em;
}
@media (min-width: 1200px){#s-8e4681a5-1af4-4052-b07d-98212cf02cf5 {
  margin-left: 2em;
}
}@media (max-width: 767px){#s-8e4681a5-1af4-4052-b07d-98212cf02cf5 {
  margin-left: 0.5em;
}
}
@media (min-width: 0px) {
[id="s-8e4681a5-1af4-4052-b07d-98212cf02cf5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8e4681a5-1af4-4052-b07d-98212cf02cf5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-8e4681a5-1af4-4052-b07d-98212cf02cf5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-8e4681a5-1af4-4052-b07d-98212cf02cf5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-8e4681a5-1af4-4052-b07d-98212cf02cf5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-8e4681a5-1af4-4052-b07d-98212cf02cf5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-8e4681a5-1af4-4052-b07d-98212cf02cf5"] > .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-e1e67273-e1fb-441b-a07f-2443ae7b3d93 {
  margin-top: 0em;
margin-bottom: 0em;
}

#s-2f0169d5-074a-4942-8775-3e0257a89467 {
  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-2f0169d5-074a-4942-8775-3e0257a89467 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-2f0169d5-074a-4942-8775-3e0257a89467 .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-2f0169d5-074a-4942-8775-3e0257a89467 .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-cb74069a-0d58-4740-9330-dfa7ec8af9ff {
  margin-top: -5em;
margin-left: 0em;
margin-bottom: 0em;
margin-right: 1em;
text-align: center;
}
@media (min-width: 1200px){#s-cb74069a-0d58-4740-9330-dfa7ec8af9ff {
  margin-top: -6em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-cb74069a-0d58-4740-9330-dfa7ec8af9ff {
  margin-top: -6em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-cb74069a-0d58-4740-9330-dfa7ec8af9ff {
  margin-top: -4em;
}
}@media (max-width: 767px){#s-cb74069a-0d58-4740-9330-dfa7ec8af9ff {
  display: none;
}
#s-cb74069a-0d58-4740-9330-dfa7ec8af9ff, #wrap-s-cb74069a-0d58-4740-9330-dfa7ec8af9ff, #wrap-content-s-cb74069a-0d58-4740-9330-dfa7ec8af9ff { display: none !important; }}
#s-cb74069a-0d58-4740-9330-dfa7ec8af9ff {
  overflow: hidden;
  
  
}








#s-cb74069a-0d58-4740-9330-dfa7ec8af9ff .shogun-image-content {
  
    justify-content: center;
  
}

#s-f064173e-18da-4dfa-8496-73c1af25a448 {
  margin-top: -10%;
margin-bottom: 0em;
text-align: center;
}
@media (min-width: 1200px){#s-f064173e-18da-4dfa-8496-73c1af25a448 {
  display: none;
}
#s-f064173e-18da-4dfa-8496-73c1af25a448, #wrap-s-f064173e-18da-4dfa-8496-73c1af25a448, #wrap-content-s-f064173e-18da-4dfa-8496-73c1af25a448 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f064173e-18da-4dfa-8496-73c1af25a448 {
  display: none;
}
#s-f064173e-18da-4dfa-8496-73c1af25a448, #wrap-s-f064173e-18da-4dfa-8496-73c1af25a448, #wrap-content-s-f064173e-18da-4dfa-8496-73c1af25a448 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f064173e-18da-4dfa-8496-73c1af25a448 {
  display: none;
}
#s-f064173e-18da-4dfa-8496-73c1af25a448, #wrap-s-f064173e-18da-4dfa-8496-73c1af25a448, #wrap-content-s-f064173e-18da-4dfa-8496-73c1af25a448 { display: none !important; }}@media (max-width: 767px){#s-f064173e-18da-4dfa-8496-73c1af25a448 {
  margin-top: 1em;
margin-bottom: 1em;
}
}
#s-f064173e-18da-4dfa-8496-73c1af25a448 {
  overflow: hidden;
  
  
}







  #s-f064173e-18da-4dfa-8496-73c1af25a448 img.shogun-image {
    

    
    
    
  }


#s-f064173e-18da-4dfa-8496-73c1af25a448 .shogun-image-content {
  
    justify-content: center;
  
}

#s-e24bad27-e4cf-4397-900f-1f06418e5101 {
  margin-top: -9em;
margin-left: 0em;
}

@media (min-width: 0px) {
[id="s-e24bad27-e4cf-4397-900f-1f06418e5101"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e24bad27-e4cf-4397-900f-1f06418e5101"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-e24bad27-e4cf-4397-900f-1f06418e5101"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-e24bad27-e4cf-4397-900f-1f06418e5101"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-e24bad27-e4cf-4397-900f-1f06418e5101"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-e24bad27-e4cf-4397-900f-1f06418e5101"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-e24bad27-e4cf-4397-900f-1f06418e5101"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

}

#s-f7b7e8c1-352b-4449-8bec-26052587013f {
  margin-top: 20%;
}
@media (min-width: 1200px){#s-f7b7e8c1-352b-4449-8bec-26052587013f {
  margin-top: 0%;
}
}@media (min-width: 768px) and (max-width: 991px){#s-f7b7e8c1-352b-4449-8bec-26052587013f {
  margin-top: 8%;
}
}@media (max-width: 767px){#s-f7b7e8c1-352b-4449-8bec-26052587013f {
  margin-top: 4em;
margin-left: 0em;
margin-bottom: 0em;
}
}
#s-2677d6b0-8f22-439b-a510-d32b7e98493c {
  margin-left: 3em;
margin-right: 2em;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-2677d6b0-8f22-439b-a510-d32b7e98493c {
  margin-top: 2em;
margin-bottom: 2em;
padding-left: 0em;
padding-right: 0em;
}
}@media (max-width: 767px){#s-2677d6b0-8f22-439b-a510-d32b7e98493c {
  margin-top: 1em;
margin-left: 2em;
margin-bottom: 1em;
}
}







#s-2677d6b0-8f22-439b-a510-d32b7e98493c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2677d6b0-8f22-439b-a510-d32b7e98493c.shg-box.shg-c {
  justify-content: center;
}

#s-e813d5fe-be2c-4a6f-ad40-cd9890a69b6a {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-e813d5fe-be2c-4a6f-ad40-cd9890a69b6a .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}



#s-67cd1e76-67ce-45b5-9ae4-607dd70ce76d {
  margin-top: 0em;
margin-left: auto;
margin-bottom: 0em;
margin-right: 20em;
min-height: 50px;
}
@media (min-width: 1200px){#s-67cd1e76-67ce-45b5-9ae4-607dd70ce76d {
  margin-top: 0em;
}
}@media (max-width: 767px){#s-67cd1e76-67ce-45b5-9ae4-607dd70ce76d {
  margin-right: 0em;
}
}







#s-67cd1e76-67ce-45b5-9ae4-607dd70ce76d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-67cd1e76-67ce-45b5-9ae4-607dd70ce76d.shg-box.shg-c {
  justify-content: center;
}

#s-6ecaf688-c831-41dc-80dc-124fe0755f84 {
  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-6ecaf688-c831-41dc-80dc-124fe0755f84 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-6ecaf688-c831-41dc-80dc-124fe0755f84 .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-6ecaf688-c831-41dc-80dc-124fe0755f84 .shogun-heading-component h2 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-26284eda-bc63-4db6-8c75-687215afaf74 {
  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-26284eda-bc63-4db6-8c75-687215afaf74 {
  margin-left: 1em;
margin-right: 1em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-26284eda-bc63-4db6-8c75-687215afaf74 {
  margin-left: 1em;
margin-right: 1em;
}
}@media (max-width: 767px){#s-26284eda-bc63-4db6-8c75-687215afaf74 {
  margin-left: 0.5em;
margin-right: 0.5em;
min-height: 17em;
}
}







#s-26284eda-bc63-4db6-8c75-687215afaf74 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-26284eda-bc63-4db6-8c75-687215afaf74.shg-box.shg-c {
  justify-content: center;
}

#s-54f6d9fc-e6ba-420d-bb3f-f1285c36f756 {
  padding-top: 4em;
padding-left: 1em;
padding-bottom: 4em;
padding-right: 1em;
}
@media (max-width: 767px){#s-54f6d9fc-e6ba-420d-bb3f-f1285c36f756 {
  padding-top: 1em;
padding-left: 0em;
padding-bottom: 1em;
padding-right: 0em;
}
}
@media (min-width: 0px) {
[id="s-54f6d9fc-e6ba-420d-bb3f-f1285c36f756"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-54f6d9fc-e6ba-420d-bb3f-f1285c36f756"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-54f6d9fc-e6ba-420d-bb3f-f1285c36f756"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-54f6d9fc-e6ba-420d-bb3f-f1285c36f756"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-a8463633-378e-474c-9b56-0ff581385078 {
  max-width: 75%;
text-align: center;
}

#s-a8463633-378e-474c-9b56-0ff581385078 {
  overflow: hidden;
  
  
      max-width: 75%;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}







  #s-a8463633-378e-474c-9b56-0ff581385078 img.shogun-image {
    

    
    
    
  }


#s-a8463633-378e-474c-9b56-0ff581385078 .shogun-image-content {
  
    justify-content:  flex-start;
  
}

#s-76340602-022b-46a6-91d0-3ae91c2bb8c1 {
  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-76340602-022b-46a6-91d0-3ae91c2bb8c1 {
  padding-left: 0.5em;
padding-right: 0.5em;
}
}







#s-76340602-022b-46a6-91d0-3ae91c2bb8c1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-76340602-022b-46a6-91d0-3ae91c2bb8c1.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-3ce37790-7f31-4ff9-82f2-916d62d02fae"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3ce37790-7f31-4ff9-82f2-916d62d02fae"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (min-width: 992px) {
[id="s-3ce37790-7f31-4ff9-82f2-916d62d02fae"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (min-width: 1200px) {
[id="s-3ce37790-7f31-4ff9-82f2-916d62d02fae"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.25em);
}

}

#s-e8ed4241-d84f-4350-832b-62e4d5888a05 {
  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-e8ed4241-d84f-4350-832b-62e4d5888a05 {
  margin-top: 0em;
margin-bottom: 0.5em;
}
}







#s-e8ed4241-d84f-4350-832b-62e4d5888a05 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e8ed4241-d84f-4350-832b-62e4d5888a05.shg-box.shg-c {
  justify-content: center;
}

#s-c73b942f-77b4-475f-825c-1741753e1b57 {
  margin-top: 0em;
margin-bottom: 0em;
padding-left: 0em;
}
@media (max-width: 767px){#s-c73b942f-77b4-475f-825c-1741753e1b57 {
  margin-bottom: 0.5em;
}
}
#s-0e1a48a6-859d-42da-b348-6f1e2c65b5d6 {
  min-height: 50px;
}








#s-0e1a48a6-859d-42da-b348-6f1e2c65b5d6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0e1a48a6-859d-42da-b348-6f1e2c65b5d6.shg-box.shg-c {
  justify-content: center;
}

#s-269d475f-5100-477c-ac38-169ace67eeb4 {
  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-269d475f-5100-477c-ac38-169ace67eeb4 {
  min-height: 20em;
}
}







#s-269d475f-5100-477c-ac38-169ace67eeb4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-269d475f-5100-477c-ac38-169ace67eeb4.shg-box.shg-c {
  justify-content: center;
}

#s-f29df850-f58a-4cfe-8769-cb2e4765fe0e {
  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-f29df850-f58a-4cfe-8769-cb2e4765fe0e {
  padding-left: 0.5em;
padding-right: 0.5em;
}
}







#s-f29df850-f58a-4cfe-8769-cb2e4765fe0e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f29df850-f58a-4cfe-8769-cb2e4765fe0e.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-eff59895-3ca4-4bce-8d0d-8ffaed5582f3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-eff59895-3ca4-4bce-8d0d-8ffaed5582f3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (min-width: 992px) {
[id="s-eff59895-3ca4-4bce-8d0d-8ffaed5582f3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (min-width: 1200px) {
[id="s-eff59895-3ca4-4bce-8d0d-8ffaed5582f3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.25em);
}

}

#s-27f0b480-331f-48df-ace4-1e0e27385d4b {
  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-27f0b480-331f-48df-ace4-1e0e27385d4b {
  margin-bottom: 0.5em;
}
}







#s-27f0b480-331f-48df-ace4-1e0e27385d4b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-27f0b480-331f-48df-ace4-1e0e27385d4b.shg-box.shg-c {
  justify-content: center;
}

@media (max-width: 767px){#s-cafccef4-c939-4aa5-9ea2-a7473affd6e9 {
  margin-bottom: 0.5em;
}
}
#s-c5c583c1-a1e0-499a-be0b-d5bbe0a0103b {
  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-c5c583c1-a1e0-499a-be0b-d5bbe0a0103b {
  min-height: 20em;
}
}







#s-c5c583c1-a1e0-499a-be0b-d5bbe0a0103b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c5c583c1-a1e0-499a-be0b-d5bbe0a0103b.shg-box.shg-c {
  justify-content: center;
}

#s-7de6280f-d42f-44f7-8fb4-0bfb4ceeca88 {
  padding-top: 4em;
padding-left: 1em;
padding-bottom: 3em;
padding-right: 1em;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-7de6280f-d42f-44f7-8fb4-0bfb4ceeca88 {
  padding-top: 1em;
padding-left: 0.5em;
padding-bottom: 1em;
padding-right: 0.5em;
}
}
@media (min-width: 0px) {
[id="s-7de6280f-d42f-44f7-8fb4-0bfb4ceeca88"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7de6280f-d42f-44f7-8fb4-0bfb4ceeca88"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (min-width: 992px) {
[id="s-7de6280f-d42f-44f7-8fb4-0bfb4ceeca88"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (min-width: 1200px) {
[id="s-7de6280f-d42f-44f7-8fb4-0bfb4ceeca88"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (max-width: 767px) {
  [id="s-7de6280f-d42f-44f7-8fb4-0bfb4ceeca88"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-2f7547dd-ac3a-4175-b74a-ca6abec04a30 {
  min-height: 50px;
}








#s-2f7547dd-ac3a-4175-b74a-ca6abec04a30 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-2f7547dd-ac3a-4175-b74a-ca6abec04a30.shg-box.shg-c {
  justify-content: center;
}

#s-4809044b-54e0-4581-9f66-d0844a53324c {
  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-4809044b-54e0-4581-9f66-d0844a53324c {
  overflow: hidden;
  
  
}







  #s-4809044b-54e0-4581-9f66-d0844a53324c img.shogun-image {
    

    
    
    
  }


#s-4809044b-54e0-4581-9f66-d0844a53324c .shogun-image-content {
  
    justify-content: center;
  
}

#s-fe28933f-7f41-46eb-9e69-e59b3ef55396 {
  background-color: rgba(255, 255, 255, 1);
}

#s-647abf19-4daf-4c9d-bdca-44bc8477df06 {
  margin-top: 1em;
margin-left: 2em;
margin-bottom: 1em;
margin-right: 2em;
min-height: 50px;
}
@media (min-width: 1200px){#s-647abf19-4daf-4c9d-bdca-44bc8477df06 {
  margin-top: 4em;
margin-bottom: 4em;
}
}@media (max-width: 767px){#s-647abf19-4daf-4c9d-bdca-44bc8477df06 {
  margin-bottom: 4em;
}
}







#s-647abf19-4daf-4c9d-bdca-44bc8477df06 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-647abf19-4daf-4c9d-bdca-44bc8477df06.shg-box.shg-c {
  justify-content: center;
}

#s-d11a2ad8-e036-468a-a0f2-461f99e4359b {
  text-align: left;
}

#s-b9702694-d0e9-401a-ac82-fea035b5c919 {
  margin-top: 0%;
margin-bottom: 0%;
padding-top: 1em;
padding-bottom: 0px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-b9702694-d0e9-401a-ac82-fea035b5c919 {
  margin-left: 0em;
margin-right: 0em;
padding-left: 1em;
padding-right: 1em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-b9702694-d0e9-401a-ac82-fea035b5c919 {
  margin-left: 0em;
margin-right: 0em;
padding-left: 1em;
padding-right: 1em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-b9702694-d0e9-401a-ac82-fea035b5c919 {
  margin-left: 0em;
margin-right: 0em;
padding-left: 0.5em;
padding-right: 0.5em;
}
}@media (max-width: 767px){#s-b9702694-d0e9-401a-ac82-fea035b5c919 {
  margin-left: 0em;
margin-right: 0em;
padding-left: 0.5em;
padding-right: 0.5em;
}
}







#s-b9702694-d0e9-401a-ac82-fea035b5c919 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b9702694-d0e9-401a-ac82-fea035b5c919.shg-box.shg-c {
  justify-content: center;
}

#s-9b7aa462-f72b-4baa-b77a-9a2afbc1b252 {
  margin-left: auto;
margin-right: auto;
padding-top: 0em;
padding-bottom: 0em;
min-height: 0px;
}
@media (max-width: 767px){#s-9b7aa462-f72b-4baa-b77a-9a2afbc1b252 {
  padding-top: 0em;
}
}







#s-9b7aa462-f72b-4baa-b77a-9a2afbc1b252 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9b7aa462-f72b-4baa-b77a-9a2afbc1b252.shg-box.shg-c {
  justify-content: center;
}

#s-60637206-4e70-428f-bf12-3c772b7e7d2f {
  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-60637206-4e70-428f-bf12-3c772b7e7d2f {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-60637206-4e70-428f-bf12-3c772b7e7d2f .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-60637206-4e70-428f-bf12-3c772b7e7d2f .shogun-heading-component h4 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-8bb2b8de-cf85-476b-aac1-b079dad717d5 {
  margin-top: 12px;
margin-left: 0em;
margin-bottom: 4em;
margin-right: 0em;
padding-bottom: 0em;
}
@media (min-width: 768px) and (max-width: 991px){#s-8bb2b8de-cf85-476b-aac1-b079dad717d5 {
  margin-left: 0em;
margin-right: 0em;
}
}@media (max-width: 767px){#s-8bb2b8de-cf85-476b-aac1-b079dad717d5 {
  margin-right: 0em;
}
}
@media (min-width: 0px) {
[id="s-8bb2b8de-cf85-476b-aac1-b079dad717d5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8bb2b8de-cf85-476b-aac1-b079dad717d5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (min-width: 992px) {
[id="s-8bb2b8de-cf85-476b-aac1-b079dad717d5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (min-width: 1200px) {
[id="s-8bb2b8de-cf85-476b-aac1-b079dad717d5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.25em);
}

}

@media (max-width: 767px) {
  [id="s-8bb2b8de-cf85-476b-aac1-b079dad717d5"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-0d007dd2-4dc5-438b-ab7b-0a6a56d4341c {
  min-height: 50px;
}








#s-0d007dd2-4dc5-438b-ab7b-0a6a56d4341c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0d007dd2-4dc5-438b-ab7b-0a6a56d4341c.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-6a930073-a156-4bb4-a489-dd1d68abbd7a {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-6a930073-a156-4bb4-a489-dd1d68abbd7a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6a930073-a156-4bb4-a489-dd1d68abbd7a-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-6a930073-a156-4bb4-a489-dd1d68abbd7a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6a930073-a156-4bb4-a489-dd1d68abbd7a .shg-inner-inline-image {
  overflow: hidden;

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


.shg-image-content-margin-container-s-6a930073-a156-4bb4-a489-dd1d68abbd7a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6a930073-a156-4bb4-a489-dd1d68abbd7a img.shogun-image {
  width: 100%;
  
  
  

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




.s-6a930073-a156-4bb4-a489-dd1d68abbd7a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6a930073-a156-4bb4-a489-dd1d68abbd7a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6a930073-a156-4bb4-a489-dd1d68abbd7a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6a930073-a156-4bb4-a489-dd1d68abbd7a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




@media (min-width: 1200px){#s-6a930073-a156-4bb4-a489-dd1d68abbd7a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6a930073-a156-4bb4-a489-dd1d68abbd7a-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-6a930073-a156-4bb4-a489-dd1d68abbd7a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6a930073-a156-4bb4-a489-dd1d68abbd7a .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-6a930073-a156-4bb4-a489-dd1d68abbd7a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6a930073-a156-4bb4-a489-dd1d68abbd7a img.shogun-image {
  width: 100%;
  
  
  

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




.s-6a930073-a156-4bb4-a489-dd1d68abbd7a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6a930073-a156-4bb4-a489-dd1d68abbd7a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6a930073-a156-4bb4-a489-dd1d68abbd7a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6a930073-a156-4bb4-a489-dd1d68abbd7a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 992px) and (max-width: 1199px){#s-6a930073-a156-4bb4-a489-dd1d68abbd7a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6a930073-a156-4bb4-a489-dd1d68abbd7a-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-6a930073-a156-4bb4-a489-dd1d68abbd7a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6a930073-a156-4bb4-a489-dd1d68abbd7a .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-6a930073-a156-4bb4-a489-dd1d68abbd7a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6a930073-a156-4bb4-a489-dd1d68abbd7a img.shogun-image {
  width: 100%;
  
  
  

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




.s-6a930073-a156-4bb4-a489-dd1d68abbd7a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6a930073-a156-4bb4-a489-dd1d68abbd7a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6a930073-a156-4bb4-a489-dd1d68abbd7a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6a930073-a156-4bb4-a489-dd1d68abbd7a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (min-width: 768px) and (max-width: 991px){#s-6a930073-a156-4bb4-a489-dd1d68abbd7a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6a930073-a156-4bb4-a489-dd1d68abbd7a-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-6a930073-a156-4bb4-a489-dd1d68abbd7a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6a930073-a156-4bb4-a489-dd1d68abbd7a .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-6a930073-a156-4bb4-a489-dd1d68abbd7a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6a930073-a156-4bb4-a489-dd1d68abbd7a img.shogun-image {
  width: 100%;
  
  
  

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




.s-6a930073-a156-4bb4-a489-dd1d68abbd7a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6a930073-a156-4bb4-a489-dd1d68abbd7a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6a930073-a156-4bb4-a489-dd1d68abbd7a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6a930073-a156-4bb4-a489-dd1d68abbd7a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}@media (max-width: 767px){#s-6a930073-a156-4bb4-a489-dd1d68abbd7a {
  margin: 0 !important;
  position: relative;
  width: 100%;
}

#s-6a930073-a156-4bb4-a489-dd1d68abbd7a-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-6a930073-a156-4bb4-a489-dd1d68abbd7a {
  overflow: visible;
  grid-column: 1;
  grid-row: 1;

  /* Add margin handling */
  
  
  
  
}

#s-6a930073-a156-4bb4-a489-dd1d68abbd7a .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-6a930073-a156-4bb4-a489-dd1d68abbd7a {
  pointer-events: none;
  grid-column: 1;
  grid-row: 1;
}

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

#s-6a930073-a156-4bb4-a489-dd1d68abbd7a img.shogun-image {
  width: 100%;
  
  
  

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




.s-6a930073-a156-4bb4-a489-dd1d68abbd7a .shogun-image-content-v3 {
  
    justify-content: flex-start;
  
}

.s-6a930073-a156-4bb4-a489-dd1d68abbd7a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6a930073-a156-4bb4-a489-dd1d68abbd7a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6a930073-a156-4bb4-a489-dd1d68abbd7a.shogun-image {
  box-sizing: border-box;
  overflow: hidden;
}




}
#s-12fa20a3-a146-48d7-951c-2eb05fc43181 {
  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-12fa20a3-a146-48d7-951c-2eb05fc43181 {
  margin-top: 0em;
margin-left: 0em;
margin-bottom: 0.5em;
margin-right: 0em;
padding-bottom: 3em;
}
}







#s-12fa20a3-a146-48d7-951c-2eb05fc43181 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-12fa20a3-a146-48d7-951c-2eb05fc43181.shg-box.shg-c {
  justify-content: center;
}

#s-c15c0159-8b8d-481a-8c7d-ad6434bf68de {
  min-height: 50px;
}








#s-c15c0159-8b8d-481a-8c7d-ad6434bf68de > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c15c0159-8b8d-481a-8c7d-ad6434bf68de.shg-box.shg-c {
  justify-content: center;
}

#s-f3afe35a-27b6-4639-a4bf-2ad097635c26 {
  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-f3afe35a-27b6-4639-a4bf-2ad097635c26 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-f3afe35a-27b6-4639-a4bf-2ad097635c26 .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-f3afe35a-27b6-4639-a4bf-2ad097635c26 .shogun-heading-component h4 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-bbfe804f-95d4-4135-be31-23dd625e8182 {
  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-bbfe804f-95d4-4135-be31-23dd625e8182 {
  margin-top: 3em;
}
}







#s-bbfe804f-95d4-4135-be31-23dd625e8182 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-bbfe804f-95d4-4135-be31-23dd625e8182.shg-box.shg-c {
  justify-content: center;
}

#s-9c2b9ee2-c23d-4727-944b-dd9141cdc549 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-9c2b9ee2-c23d-4727-944b-dd9141cdc549 {
  margin-left: 1em;
margin-right: 1em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9c2b9ee2-c23d-4727-944b-dd9141cdc549 {
  margin-left: 1em;
margin-right: 1em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-9c2b9ee2-c23d-4727-944b-dd9141cdc549 {
  margin-left: 1em;
margin-right: 1em;
}
}@media (max-width: 767px){#s-9c2b9ee2-c23d-4727-944b-dd9141cdc549 {
  margin-left: 0.5em;
margin-right: 0.5em;
}
}







#s-9c2b9ee2-c23d-4727-944b-dd9141cdc549 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9c2b9ee2-c23d-4727-944b-dd9141cdc549.shg-box.shg-c {
  justify-content: center;
}

#s-75b96d11-0294-4083-b530-f7285700aba8 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-75b96d11-0294-4083-b530-f7285700aba8 {
  margin-left: 1em;
margin-right: 1em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-75b96d11-0294-4083-b530-f7285700aba8 {
  margin-left: 1em;
margin-right: 1em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-75b96d11-0294-4083-b530-f7285700aba8 {
  margin-left: 1em;
margin-right: 1em;
}
}@media (max-width: 767px){#s-75b96d11-0294-4083-b530-f7285700aba8 {
  margin-left: 0.5em;
margin-right: 0.5em;
}
}







#s-75b96d11-0294-4083-b530-f7285700aba8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-75b96d11-0294-4083-b530-f7285700aba8.shg-box.shg-c {
  justify-content: center;
}

#s-e6f5c51b-331c-41da-86f6-95da48e4177d {
  min-height: 50px;
}








#s-e6f5c51b-331c-41da-86f6-95da48e4177d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-e6f5c51b-331c-41da-86f6-95da48e4177d.shg-box.shg-c {
  justify-content: center;
}

#s-68526912-cf8d-47df-9645-0616358bfe0f {
  margin-top: 12px;
margin-left: 0%;
margin-bottom: 0.5em;
margin-right: 0%;
}

@media (min-width: 0px) {
[id="s-68526912-cf8d-47df-9645-0616358bfe0f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-68526912-cf8d-47df-9645-0616358bfe0f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 992px) {
[id="s-68526912-cf8d-47df-9645-0616358bfe0f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

@media (min-width: 1200px) {
[id="s-68526912-cf8d-47df-9645-0616358bfe0f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 3.3333333333333335px);
}

}

#s-a493fb40-85f9-4f74-9337-94c2e9b49cec {
  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-a493fb40-85f9-4f74-9337-94c2e9b49cec {
  margin-top: 0em;
margin-bottom: 0em;
}
}







#s-a493fb40-85f9-4f74-9337-94c2e9b49cec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a493fb40-85f9-4f74-9337-94c2e9b49cec.shg-box.shg-c {
  justify-content: center;
}

#s-c0cbf9c2-c64d-45be-b196-c2a878483800 {
  min-height: 50px;
}








#s-c0cbf9c2-c64d-45be-b196-c2a878483800 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-c0cbf9c2-c64d-45be-b196-c2a878483800.shg-box.shg-c {
  justify-content: center;
}

#s-7aba552d-d593-4520-af28-7979ecd1c55c {
  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-3344a690-a2a4-42d7-b56c-f2a10ce2beb1 {
  margin-top: 0.5em;
margin-bottom: 0.5em;
text-align: left;
}

#s-3344a690-a2a4-42d7-b56c-f2a10ce2beb1 .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-d9f71601-3075-44bf-931a-4991f73f8ed1 {
  text-align: right;
}
@media (min-width: 1200px){#s-d9f71601-3075-44bf-931a-4991f73f8ed1 {
  padding-left: 0%;
padding-right: 0%;
}
}
#s-d9f71601-3075-44bf-931a-4991f73f8ed1 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 35px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-d9f71601-3075-44bf-931a-4991f73f8ed1 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 35px;
}

#s-d9f71601-3075-44bf-931a-4991f73f8ed1 .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-d9f71601-3075-44bf-931a-4991f73f8ed1 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 35px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-d9f71601-3075-44bf-931a-4991f73f8ed1 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 35px;
}

#s-d9f71601-3075-44bf-931a-4991f73f8ed1 .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-d9f71601-3075-44bf-931a-4991f73f8ed1 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 35px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-d9f71601-3075-44bf-931a-4991f73f8ed1 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 35px;
}

#s-d9f71601-3075-44bf-931a-4991f73f8ed1 .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-d9f71601-3075-44bf-931a-4991f73f8ed1 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 30px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-d9f71601-3075-44bf-931a-4991f73f8ed1 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 30px;
}

#s-d9f71601-3075-44bf-931a-4991f73f8ed1 .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-d9f71601-3075-44bf-931a-4991f73f8ed1 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-d9f71601-3075-44bf-931a-4991f73f8ed1 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 25px;
}

#s-d9f71601-3075-44bf-931a-4991f73f8ed1 .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-dcd296f1-2481-4a7f-9097-bf3e68815bfb {
  margin-top: 0.5em;
margin-bottom: 0.5em;
padding-right: 5%;
}

#s-78eb141b-c684-4151-820a-126a72922b8c {
  margin-top: 5%;
margin-left: 0%;
margin-bottom: 5%;
margin-right: 0%;
}

@media (min-width: 0px) {
[id="s-78eb141b-c684-4151-820a-126a72922b8c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-78eb141b-c684-4151-820a-126a72922b8c"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-78eb141b-c684-4151-820a-126a72922b8c"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-78eb141b-c684-4151-820a-126a72922b8c"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-78eb141b-c684-4151-820a-126a72922b8c"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-78eb141b-c684-4151-820a-126a72922b8c"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-78eb141b-c684-4151-820a-126a72922b8c"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

}

#s-fcdf5180-c500-4616-826c-51868115892a {
  max-width: 1200px;
text-align: center;
}

#s-fcdf5180-c500-4616-826c-51868115892a {
  overflow: hidden;
  
  
      max-width: 1200px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-fcdf5180-c500-4616-826c-51868115892a .shogun-image-content {
  
    justify-content: center;
  
}

.gallery-open img {
        height: 4em;
    width: 2.7rem;
    -o-object-fit: contain;
       object-fit: contain;
}
#gallery{
   
    line-height: 1;  
}
#s-47c3cbad-ed74-4aec-83a2-e0da0de70a33 {
  text-align: right;
}
@media (max-width: 767px){#s-47c3cbad-ed74-4aec-83a2-e0da0de70a33 {
  text-align: center;
display: none;
}
#s-47c3cbad-ed74-4aec-83a2-e0da0de70a33, #wrap-s-47c3cbad-ed74-4aec-83a2-e0da0de70a33, #wrap-content-s-47c3cbad-ed74-4aec-83a2-e0da0de70a33 { display: none !important; }}
@media (min-width: 0px) {
[id="s-57359254-884f-4fd9-9a4a-53d8f2be63fa"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 768px) {
[id="s-57359254-884f-4fd9-9a4a-53d8f2be63fa"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 992px) {
[id="s-57359254-884f-4fd9-9a4a-53d8f2be63fa"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 1200px) {
[id="s-57359254-884f-4fd9-9a4a-53d8f2be63fa"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 4.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-ba46a72f-09e4-4daf-85d8-b04a1d447b04 {
  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-ba46a72f-09e4-4daf-85d8-b04a1d447b04: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-ba46a72f-09e4-4daf-85d8-b04a1d447b04: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-ba46a72f-09e4-4daf-85d8-b04a1d447b04 {
  padding-left: 12px;
padding-right: 12px;
}
}@media (max-width: 767px){#s-ba46a72f-09e4-4daf-85d8-b04a1d447b04 {
  padding-left: 10px;
padding-right: 10px;
}
}

  #s-ba46a72f-09e4-4daf-85d8-b04a1d447b04-root {
    text-align: right;
  }


#s-ba46a72f-09e4-4daf-85d8-b04a1d447b04.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ba46a72f-09e4-4daf-85d8-b04a1d447b04-root {
    text-align: right;
  }


#s-ba46a72f-09e4-4daf-85d8-b04a1d447b04.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ba46a72f-09e4-4daf-85d8-b04a1d447b04-root {
    text-align: right;
  }


#s-ba46a72f-09e4-4daf-85d8-b04a1d447b04.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ba46a72f-09e4-4daf-85d8-b04a1d447b04-root {
    text-align: right;
  }


#s-ba46a72f-09e4-4daf-85d8-b04a1d447b04.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ba46a72f-09e4-4daf-85d8-b04a1d447b04-root {
    text-align: right;
  }


#s-ba46a72f-09e4-4daf-85d8-b04a1d447b04.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-0824de4b-8722-4dd0-9c11-f0c3af241157 {
  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-0824de4b-8722-4dd0-9c11-f0c3af241157: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-0824de4b-8722-4dd0-9c11-f0c3af241157: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-0824de4b-8722-4dd0-9c11-f0c3af241157-atc-btn-wrapper {
    text-align: left;
  }


#s-0824de4b-8722-4dd0-9c11-f0c3af241157 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-0824de4b-8722-4dd0-9c11-f0c3af241157.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0824de4b-8722-4dd0-9c11-f0c3af241157.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-0824de4b-8722-4dd0-9c11-f0c3af241157.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-0824de4b-8722-4dd0-9c11-f0c3af241157-atc-btn-wrapper {
    text-align: left;
  }


#s-0824de4b-8722-4dd0-9c11-f0c3af241157 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-0824de4b-8722-4dd0-9c11-f0c3af241157.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0824de4b-8722-4dd0-9c11-f0c3af241157.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-0824de4b-8722-4dd0-9c11-f0c3af241157.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-0824de4b-8722-4dd0-9c11-f0c3af241157-atc-btn-wrapper {
    text-align: left;
  }


#s-0824de4b-8722-4dd0-9c11-f0c3af241157 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-0824de4b-8722-4dd0-9c11-f0c3af241157.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0824de4b-8722-4dd0-9c11-f0c3af241157.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-0824de4b-8722-4dd0-9c11-f0c3af241157.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-0824de4b-8722-4dd0-9c11-f0c3af241157-atc-btn-wrapper {
    text-align: left;
  }


#s-0824de4b-8722-4dd0-9c11-f0c3af241157 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-0824de4b-8722-4dd0-9c11-f0c3af241157.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0824de4b-8722-4dd0-9c11-f0c3af241157.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-0824de4b-8722-4dd0-9c11-f0c3af241157.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-0824de4b-8722-4dd0-9c11-f0c3af241157-atc-btn-wrapper {
    text-align: left;
  }


#s-0824de4b-8722-4dd0-9c11-f0c3af241157 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-0824de4b-8722-4dd0-9c11-f0c3af241157.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-0824de4b-8722-4dd0-9c11-f0c3af241157.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-0824de4b-8722-4dd0-9c11-f0c3af241157.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-b218ddf3-b06a-4101-80b6-ce3b4b5b84a1 {
  min-height: 50px;
}








#s-b218ddf3-b06a-4101-80b6-ce3b4b5b84a1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b218ddf3-b06a-4101-80b6-ce3b4b5b84a1.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-c9694c6b-d4cd-4b4b-95ca-28863ff22b5d {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-c9694c6b-d4cd-4b4b-95ca-28863ff22b5d .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-c9694c6b-d4cd-4b4b-95ca-28863ff22b5d .shg-sld-nav-button.shg-sld-left,
#s-c9694c6b-d4cd-4b4b-95ca-28863ff22b5d .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-c499f0b6-a561-4dd8-bf00-4fe88c44e3a9 {
  text-align: center;
}

#s-c499f0b6-a561-4dd8-bf00-4fe88c44e3a9 {
  overflow: hidden;
  
  
}







  #s-c499f0b6-a561-4dd8-bf00-4fe88c44e3a9 img.shogun-image {
    

    
    
    
  }


#s-c499f0b6-a561-4dd8-bf00-4fe88c44e3a9 .shogun-image-content {
  
    justify-content: center;
  
}

#s-a58fed59-1a7e-43ef-a1e9-2f0f14055745 {
  text-align: center;
}

#s-a58fed59-1a7e-43ef-a1e9-2f0f14055745 {
  overflow: hidden;
  
  
}







  #s-a58fed59-1a7e-43ef-a1e9-2f0f14055745 img.shogun-image {
    

    
    
    
  }


#s-a58fed59-1a7e-43ef-a1e9-2f0f14055745 .shogun-image-content {
  
    justify-content: center;
  
}

#s-14bd9fe5-a554-4f8d-8b5c-c1a2ae301036 {
  text-align: center;
}

#s-14bd9fe5-a554-4f8d-8b5c-c1a2ae301036 {
  overflow: hidden;
  
  
}







  #s-14bd9fe5-a554-4f8d-8b5c-c1a2ae301036 img.shogun-image {
    

    
    
    
  }


#s-14bd9fe5-a554-4f8d-8b5c-c1a2ae301036 .shogun-image-content {
  
    justify-content: center;
  
}

#s-be3ea0de-d17f-47ad-8189-db273a8b8eb3 {
  text-align: center;
}

#s-be3ea0de-d17f-47ad-8189-db273a8b8eb3 {
  overflow: hidden;
  
  
}







  #s-be3ea0de-d17f-47ad-8189-db273a8b8eb3 img.shogun-image {
    

    
    
    
  }


#s-be3ea0de-d17f-47ad-8189-db273a8b8eb3 .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-973c92e0-093e-48e0-8aca-1442f2e73ab2 {
  margin-left: 0px;
text-align: center;
}

#s-67f559bd-f388-403b-890b-b4e4c3a36241 {
  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-67f559bd-f388-403b-890b-b4e4c3a36241 {
  margin-top: 8px;
margin-bottom: 8px;
}
}







#s-67f559bd-f388-403b-890b-b4e4c3a36241 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-67f559bd-f388-403b-890b-b4e4c3a36241.shg-box.shg-c {
  justify-content: center;
}

#s-a36c68e2-bcce-4bff-b268-e2b88e449208 {
  min-height: 50px;
}








#s-a36c68e2-bcce-4bff-b268-e2b88e449208 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-a36c68e2-bcce-4bff-b268-e2b88e449208.shg-box.shg-c {
  justify-content: center;
}

#s-740b37e5-3a06-494d-b708-6c79202a2e83 {
  text-align: right;
}

#s-f4fb673e-9f13-4b48-adab-1eb85fadfcfa {
  margin-top: 0.5em;
margin-bottom: 0.5em;
text-align: left;
}

#s-f4fb673e-9f13-4b48-adab-1eb85fadfcfa .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-4220f87e-cbcb-4084-b0cb-1b073a66871e {
  text-align: right;
}
@media (min-width: 1200px){#s-4220f87e-cbcb-4084-b0cb-1b073a66871e {
  padding-left: 0%;
padding-right: 0%;
}
}
#s-4220f87e-cbcb-4084-b0cb-1b073a66871e .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 35px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-4220f87e-cbcb-4084-b0cb-1b073a66871e .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 35px;
}

#s-4220f87e-cbcb-4084-b0cb-1b073a66871e .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-4220f87e-cbcb-4084-b0cb-1b073a66871e .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 35px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-4220f87e-cbcb-4084-b0cb-1b073a66871e .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 35px;
}

#s-4220f87e-cbcb-4084-b0cb-1b073a66871e .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-4220f87e-cbcb-4084-b0cb-1b073a66871e .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 35px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-4220f87e-cbcb-4084-b0cb-1b073a66871e .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 35px;
}

#s-4220f87e-cbcb-4084-b0cb-1b073a66871e .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-4220f87e-cbcb-4084-b0cb-1b073a66871e .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 30px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-4220f87e-cbcb-4084-b0cb-1b073a66871e .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 30px;
}

#s-4220f87e-cbcb-4084-b0cb-1b073a66871e .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-4220f87e-cbcb-4084-b0cb-1b073a66871e .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-4220f87e-cbcb-4084-b0cb-1b073a66871e .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 25px;
}

#s-4220f87e-cbcb-4084-b0cb-1b073a66871e .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-4fdf17b7-9708-44ed-8657-24c23c1e8e7d {
  margin-top: 0.5em;
margin-bottom: 0.5em;
padding-right: 5%;
}

#s-251fd975-7234-4d9f-b12c-ac4be25cecd2 {
  margin-top: 5%;
margin-bottom: 5%;
}

@media (min-width: 0px) {
[id="s-251fd975-7234-4d9f-b12c-ac4be25cecd2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-251fd975-7234-4d9f-b12c-ac4be25cecd2"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-251fd975-7234-4d9f-b12c-ac4be25cecd2"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-251fd975-7234-4d9f-b12c-ac4be25cecd2"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-251fd975-7234-4d9f-b12c-ac4be25cecd2"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-251fd975-7234-4d9f-b12c-ac4be25cecd2"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-251fd975-7234-4d9f-b12c-ac4be25cecd2"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

}

#s-9e9f1316-a806-4fb7-a825-201ad0aab9db {
  max-width: 1200px;
text-align: center;
}

#s-9e9f1316-a806-4fb7-a825-201ad0aab9db {
  overflow: hidden;
  
  
      max-width: 1200px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-9e9f1316-a806-4fb7-a825-201ad0aab9db .shogun-image-content {
  
    justify-content: center;
  
}

#s-a9d1e1ed-0e0e-45a1-a6eb-7c7f8097eeee {
  text-align: right;
}
@media (max-width: 767px){#s-a9d1e1ed-0e0e-45a1-a6eb-7c7f8097eeee {
  text-align: center;
display: none;
}
#s-a9d1e1ed-0e0e-45a1-a6eb-7c7f8097eeee, #wrap-s-a9d1e1ed-0e0e-45a1-a6eb-7c7f8097eeee, #wrap-content-s-a9d1e1ed-0e0e-45a1-a6eb-7c7f8097eeee { display: none !important; }}
@media (min-width: 0px) {
[id="s-f816e9bc-8d4c-48d8-81de-7c4d7c144eff"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 768px) {
[id="s-f816e9bc-8d4c-48d8-81de-7c4d7c144eff"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 992px) {
[id="s-f816e9bc-8d4c-48d8-81de-7c4d7c144eff"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 1200px) {
[id="s-f816e9bc-8d4c-48d8-81de-7c4d7c144eff"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 4.0px);
}

}

#s-cc8177f2-accb-412d-9235-50781a87d4ef {
  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-cc8177f2-accb-412d-9235-50781a87d4ef: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-cc8177f2-accb-412d-9235-50781a87d4ef: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-cc8177f2-accb-412d-9235-50781a87d4ef {
  padding-left: 12px;
padding-right: 12px;
}
}@media (max-width: 767px){#s-cc8177f2-accb-412d-9235-50781a87d4ef {
  padding-left: 10px;
padding-right: 10px;
}
}

  #s-cc8177f2-accb-412d-9235-50781a87d4ef-root {
    text-align: right;
  }


#s-cc8177f2-accb-412d-9235-50781a87d4ef.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-cc8177f2-accb-412d-9235-50781a87d4ef-root {
    text-align: right;
  }


#s-cc8177f2-accb-412d-9235-50781a87d4ef.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-cc8177f2-accb-412d-9235-50781a87d4ef-root {
    text-align: right;
  }


#s-cc8177f2-accb-412d-9235-50781a87d4ef.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-cc8177f2-accb-412d-9235-50781a87d4ef-root {
    text-align: right;
  }


#s-cc8177f2-accb-412d-9235-50781a87d4ef.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-cc8177f2-accb-412d-9235-50781a87d4ef-root {
    text-align: right;
  }


#s-cc8177f2-accb-412d-9235-50781a87d4ef.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}
#s-3dd208a6-9322-4d34-b31a-448d9df9374b {
  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-3dd208a6-9322-4d34-b31a-448d9df9374b: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-3dd208a6-9322-4d34-b31a-448d9df9374b: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-3dd208a6-9322-4d34-b31a-448d9df9374b-atc-btn-wrapper {
    text-align: left;
  }


#s-3dd208a6-9322-4d34-b31a-448d9df9374b {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-3dd208a6-9322-4d34-b31a-448d9df9374b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3dd208a6-9322-4d34-b31a-448d9df9374b.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-3dd208a6-9322-4d34-b31a-448d9df9374b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-3dd208a6-9322-4d34-b31a-448d9df9374b-atc-btn-wrapper {
    text-align: left;
  }


#s-3dd208a6-9322-4d34-b31a-448d9df9374b {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-3dd208a6-9322-4d34-b31a-448d9df9374b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3dd208a6-9322-4d34-b31a-448d9df9374b.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-3dd208a6-9322-4d34-b31a-448d9df9374b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-3dd208a6-9322-4d34-b31a-448d9df9374b-atc-btn-wrapper {
    text-align: left;
  }


#s-3dd208a6-9322-4d34-b31a-448d9df9374b {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-3dd208a6-9322-4d34-b31a-448d9df9374b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3dd208a6-9322-4d34-b31a-448d9df9374b.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-3dd208a6-9322-4d34-b31a-448d9df9374b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-3dd208a6-9322-4d34-b31a-448d9df9374b-atc-btn-wrapper {
    text-align: left;
  }


#s-3dd208a6-9322-4d34-b31a-448d9df9374b {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-3dd208a6-9322-4d34-b31a-448d9df9374b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3dd208a6-9322-4d34-b31a-448d9df9374b.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-3dd208a6-9322-4d34-b31a-448d9df9374b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-3dd208a6-9322-4d34-b31a-448d9df9374b-atc-btn-wrapper {
    text-align: left;
  }


#s-3dd208a6-9322-4d34-b31a-448d9df9374b {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-3dd208a6-9322-4d34-b31a-448d9df9374b.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-3dd208a6-9322-4d34-b31a-448d9df9374b.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-3dd208a6-9322-4d34-b31a-448d9df9374b.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-05613aca-30c4-4b68-946f-8fe207faeacf {
  min-height: 50px;
}








#s-05613aca-30c4-4b68-946f-8fe207faeacf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-05613aca-30c4-4b68-946f-8fe207faeacf.shg-box.shg-c {
  justify-content: center;
}

#s-0cac70d0-1f5b-4759-87b6-1eaf56b2d3f2 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-0cac70d0-1f5b-4759-87b6-1eaf56b2d3f2 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-0cac70d0-1f5b-4759-87b6-1eaf56b2d3f2 .shg-sld-nav-button.shg-sld-left,
#s-0cac70d0-1f5b-4759-87b6-1eaf56b2d3f2 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-5eba606d-7a96-4f3c-9f75-da177545a013 {
  text-align: center;
}

#s-5eba606d-7a96-4f3c-9f75-da177545a013 {
  overflow: hidden;
  
  
}







  #s-5eba606d-7a96-4f3c-9f75-da177545a013 img.shogun-image {
    

    
    
    
  }


#s-5eba606d-7a96-4f3c-9f75-da177545a013 .shogun-image-content {
  
    justify-content: center;
  
}

#s-de45ca33-6094-4132-9740-124ad2cf3dc8 {
  text-align: center;
}

#s-de45ca33-6094-4132-9740-124ad2cf3dc8 {
  overflow: hidden;
  
  
}







  #s-de45ca33-6094-4132-9740-124ad2cf3dc8 img.shogun-image {
    

    
    
    
  }


#s-de45ca33-6094-4132-9740-124ad2cf3dc8 .shogun-image-content {
  
    justify-content: center;
  
}

#s-c4ea74fc-ea52-4cc3-81a1-b0f4b1c58ea2 {
  text-align: center;
}

#s-c4ea74fc-ea52-4cc3-81a1-b0f4b1c58ea2 {
  overflow: hidden;
  
  
}







  #s-c4ea74fc-ea52-4cc3-81a1-b0f4b1c58ea2 img.shogun-image {
    

    
    
    
  }


#s-c4ea74fc-ea52-4cc3-81a1-b0f4b1c58ea2 .shogun-image-content {
  
    justify-content: center;
  
}

#s-48dadfa6-81fa-4d24-a2e4-556407eb40db {
  text-align: center;
}

#s-48dadfa6-81fa-4d24-a2e4-556407eb40db {
  overflow: hidden;
  
  
}







  #s-48dadfa6-81fa-4d24-a2e4-556407eb40db img.shogun-image {
    

    
    
    
  }


#s-48dadfa6-81fa-4d24-a2e4-556407eb40db .shogun-image-content {
  
    justify-content: center;
  
}

#s-38161943-d1e0-4fe3-80c3-9b500724b48f {
  text-align: center;
}

#s-b3693676-93f0-4af0-818e-6a41cc1f5020 {
  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-b3693676-93f0-4af0-818e-6a41cc1f5020 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-b3693676-93f0-4af0-818e-6a41cc1f5020.shg-box.shg-c {
  justify-content: center;
}

#s-7594f3b7-2e34-42f8-9caf-f351a5c2ddba {
  min-height: 50px;
}








#s-7594f3b7-2e34-42f8-9caf-f351a5c2ddba > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-7594f3b7-2e34-42f8-9caf-f351a5c2ddba.shg-box.shg-c {
  justify-content: center;
}

#s-54987be1-bc0c-4247-854b-a7d0f45f8f6b {
  text-align: right;
}

#s-452df6a1-a83e-43fe-8710-abf54aaface0 {
  margin-top: 0.5em;
margin-bottom: 0.5em;
text-align: left;
}

#s-452df6a1-a83e-43fe-8710-abf54aaface0 .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-3c633375-8d3d-414d-aa55-1c08be784454 {
  text-align: right;
}
@media (min-width: 1200px){#s-3c633375-8d3d-414d-aa55-1c08be784454 {
  padding-left: 0%;
padding-right: 0%;
}
}
#s-3c633375-8d3d-414d-aa55-1c08be784454 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 35px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-3c633375-8d3d-414d-aa55-1c08be784454 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 35px;
}

#s-3c633375-8d3d-414d-aa55-1c08be784454 .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-3c633375-8d3d-414d-aa55-1c08be784454 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 35px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-3c633375-8d3d-414d-aa55-1c08be784454 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 35px;
}

#s-3c633375-8d3d-414d-aa55-1c08be784454 .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-3c633375-8d3d-414d-aa55-1c08be784454 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 35px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-3c633375-8d3d-414d-aa55-1c08be784454 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 35px;
}

#s-3c633375-8d3d-414d-aa55-1c08be784454 .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-3c633375-8d3d-414d-aa55-1c08be784454 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 30px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-3c633375-8d3d-414d-aa55-1c08be784454 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 30px;
}

#s-3c633375-8d3d-414d-aa55-1c08be784454 .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-3c633375-8d3d-414d-aa55-1c08be784454 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 25px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-3c633375-8d3d-414d-aa55-1c08be784454 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 25px;
}

#s-3c633375-8d3d-414d-aa55-1c08be784454 .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-477c9f7b-64a9-476a-a0ae-d641d0160ecd {
  margin-top: 0.5em;
margin-bottom: 0.5em;
padding-right: 5%;
}

#s-2161a438-a22b-4303-a0c0-95bcd716b4e4 {
  margin-top: 5%;
margin-bottom: 5%;
}

@media (min-width: 0px) {
[id="s-2161a438-a22b-4303-a0c0-95bcd716b4e4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2161a438-a22b-4303-a0c0-95bcd716b4e4"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-2161a438-a22b-4303-a0c0-95bcd716b4e4"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 2.5px);
}

}

@media (min-width: 992px) {
[id="s-2161a438-a22b-4303-a0c0-95bcd716b4e4"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-2161a438-a22b-4303-a0c0-95bcd716b4e4"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 2.5px);
}

}

@media (min-width: 1200px) {
[id="s-2161a438-a22b-4303-a0c0-95bcd716b4e4"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 2.5px);
}

[id="s-2161a438-a22b-4303-a0c0-95bcd716b4e4"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 2.5px);
}

}

#s-be48391f-64c4-450c-ba79-e550943f2f45 {
  max-width: 1200px;
text-align: center;
}

#s-be48391f-64c4-450c-ba79-e550943f2f45 {
  overflow: hidden;
  
  
      max-width: 1200px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-be48391f-64c4-450c-ba79-e550943f2f45 .shogun-image-content {
  
    justify-content: center;
  
}

#s-0f237c81-6db7-45d4-93c5-dafb74ca11ae {
  text-align: right;
}
@media (max-width: 767px){#s-0f237c81-6db7-45d4-93c5-dafb74ca11ae {
  text-align: center;
display: none;
}
#s-0f237c81-6db7-45d4-93c5-dafb74ca11ae, #wrap-s-0f237c81-6db7-45d4-93c5-dafb74ca11ae, #wrap-content-s-0f237c81-6db7-45d4-93c5-dafb74ca11ae { display: none !important; }}
@media (min-width: 0px) {
[id="s-c13baf02-a563-4d4a-a0a3-21f3884f9c7c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 768px) {
[id="s-c13baf02-a563-4d4a-a0a3-21f3884f9c7c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 992px) {
[id="s-c13baf02-a563-4d4a-a0a3-21f3884f9c7c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 1200px) {
[id="s-c13baf02-a563-4d4a-a0a3-21f3884f9c7c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 4.0px);
}

}

#s-b5d23f54-2115-4717-97f8-d6c4891bfc28 {
  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-b5d23f54-2115-4717-97f8-d6c4891bfc28: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-b5d23f54-2115-4717-97f8-d6c4891bfc28: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-b5d23f54-2115-4717-97f8-d6c4891bfc28 {
  padding-left: 12px;
padding-right: 12px;
}
}@media (max-width: 767px){#s-b5d23f54-2115-4717-97f8-d6c4891bfc28 {
  padding-left: 10px;
padding-right: 10px;
}
}

  #s-b5d23f54-2115-4717-97f8-d6c4891bfc28-root {
    text-align: right;
  }


#s-b5d23f54-2115-4717-97f8-d6c4891bfc28.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b5d23f54-2115-4717-97f8-d6c4891bfc28-root {
    text-align: right;
  }


#s-b5d23f54-2115-4717-97f8-d6c4891bfc28.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b5d23f54-2115-4717-97f8-d6c4891bfc28-root {
    text-align: right;
  }


#s-b5d23f54-2115-4717-97f8-d6c4891bfc28.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b5d23f54-2115-4717-97f8-d6c4891bfc28-root {
    text-align: right;
  }


#s-b5d23f54-2115-4717-97f8-d6c4891bfc28.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b5d23f54-2115-4717-97f8-d6c4891bfc28-root {
    text-align: right;
  }


#s-b5d23f54-2115-4717-97f8-d6c4891bfc28.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  
  
  
  display:  inline-block ;
}
}
#s-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46 {
  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-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46: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-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46: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-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46-atc-btn-wrapper {
    text-align: left;
  }


#s-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


@media (min-width: 1200px){
  #s-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46-atc-btn-wrapper {
    text-align: left;
  }


#s-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 992px) and (max-width: 1199px){
  #s-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46-atc-btn-wrapper {
    text-align: left;
  }


#s-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (min-width: 768px) and (max-width: 991px){
  #s-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46-atc-btn-wrapper {
    text-align: left;
  }


#s-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}@media (max-width: 767px){
  #s-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46-atc-btn-wrapper {
    text-align: left;
  }


#s-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46 {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: normal;
  box-sizing: border-box;
}

#s-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46.shg-product-atc-disabled {
  opacity: 0.5;
  cursor: initial;
}

#s-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46.shg-btn {
  color: #ffffff;
  font-size: 16px;
  
  
  
  display:  inline-block ;
}

#s-8b15ccfa-4dd5-48e5-84cd-62d11a2e8a46.shg-btn.shg-product-atc-error {
  
  
  
  
  
}


}
#s-8081c757-665f-4c99-97b8-8ced05f43088 {
  min-height: 50px;
}








#s-8081c757-665f-4c99-97b8-8ced05f43088 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-8081c757-665f-4c99-97b8-8ced05f43088.shg-box.shg-c {
  justify-content: center;
}

#s-4e383278-cc21-40cc-a742-2c50b2e61f17 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-4e383278-cc21-40cc-a742-2c50b2e61f17 .shg-sld-dot {
  background-color: rgba(113, 113, 113, 1);
}

#s-4e383278-cc21-40cc-a742-2c50b2e61f17 .shg-sld-nav-button.shg-sld-left,
#s-4e383278-cc21-40cc-a742-2c50b2e61f17 .shg-sld-nav-button.shg-sld-right {
  fill: rgba(113, 113, 113, 1);
}

#s-4ecbb5d5-3c19-4bd2-bab4-a7600cf64ea6 {
  text-align: center;
}

#s-4ecbb5d5-3c19-4bd2-bab4-a7600cf64ea6 {
  overflow: hidden;
  
  
}







  #s-4ecbb5d5-3c19-4bd2-bab4-a7600cf64ea6 img.shogun-image {
    

    
    
    
  }


#s-4ecbb5d5-3c19-4bd2-bab4-a7600cf64ea6 .shogun-image-content {
  
    justify-content: center;
  
}

#s-0137982d-9914-4344-a93b-4eea6edc8f62 {
  text-align: center;
}

#s-0137982d-9914-4344-a93b-4eea6edc8f62 {
  overflow: hidden;
  
  
}







  #s-0137982d-9914-4344-a93b-4eea6edc8f62 img.shogun-image {
    

    
    
    
  }


#s-0137982d-9914-4344-a93b-4eea6edc8f62 .shogun-image-content {
  
    justify-content: center;
  
}

#s-47a0b7f3-da52-4697-99a7-4e8a2fcc5edb {
  text-align: center;
}

#s-47a0b7f3-da52-4697-99a7-4e8a2fcc5edb {
  overflow: hidden;
  
  
}







  #s-47a0b7f3-da52-4697-99a7-4e8a2fcc5edb img.shogun-image {
    

    
    
    
  }


#s-47a0b7f3-da52-4697-99a7-4e8a2fcc5edb .shogun-image-content {
  
    justify-content: center;
  
}

#s-309de844-a6af-45d8-8d07-aca8057aa3e5 {
  text-align: center;
}

#s-309de844-a6af-45d8-8d07-aca8057aa3e5 {
  overflow: hidden;
  
  
}







  #s-309de844-a6af-45d8-8d07-aca8057aa3e5 img.shogun-image {
    

    
    
    
  }


#s-309de844-a6af-45d8-8d07-aca8057aa3e5 .shogun-image-content {
  
    justify-content: center;
  
}

#s-a12c804a-eaea-4874-a90e-923fb4597a1a {
  text-align: center;
}

#s-589121a9-9f2b-42f1-90ed-ebe891833640 {
  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-589121a9-9f2b-42f1-90ed-ebe891833640 {
  padding-left: 0em;
padding-right: 0em;
}
}







#s-589121a9-9f2b-42f1-90ed-ebe891833640 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-589121a9-9f2b-42f1-90ed-ebe891833640.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-d0d927cb-6cd8-41e1-aa91-a690110747b1 {
  margin-left: 0.5em;
margin-right: 0.5em;
}
}
#s-95e85f40-3119-4658-aa4d-b996d50883fe {
  padding-left: 0em;
min-height: 50px;
}








#s-95e85f40-3119-4658-aa4d-b996d50883fe > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-95e85f40-3119-4658-aa4d-b996d50883fe.shg-box.shg-c {
  justify-content: center;
}

#s-9dd9d3bb-1c5c-4d76-a207-fefbc3d1eb2c {
  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-9dd9d3bb-1c5c-4d76-a207-fefbc3d1eb2c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9dd9d3bb-1c5c-4d76-a207-fefbc3d1eb2c.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-a929b357-1786-4bfe-a51a-6a192e2c95ff {
  text-align: center;
}



.shg-c#s-a929b357-1786-4bfe-a51a-6a192e2c95ff .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a929b357-1786-4bfe-a51a-6a192e2c95ff img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-a929b357-1786-4bfe-a51a-6a192e2c95ff .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a929b357-1786-4bfe-a51a-6a192e2c95ff img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-a929b357-1786-4bfe-a51a-6a192e2c95ff .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a929b357-1786-4bfe-a51a-6a192e2c95ff img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-a929b357-1786-4bfe-a51a-6a192e2c95ff .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a929b357-1786-4bfe-a51a-6a192e2c95ff img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-a929b357-1786-4bfe-a51a-6a192e2c95ff .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-a929b357-1786-4bfe-a51a-6a192e2c95ff img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-71c59fcd-0b3d-4f77-9130-dae465e9cfae {
  margin-top: 0em;
margin-bottom: 0em;
text-align: left;
}

#s-71c59fcd-0b3d-4f77-9130-dae465e9cfae .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-faedb095-da1b-4511-bf6a-a4a89bb2c221 {
  text-align: right;
}
@media (min-width: 1200px){#s-faedb095-da1b-4511-bf6a-a4a89bb2c221 {
  padding-left: 0%;
padding-right: 0%;
}
}
#s-faedb095-da1b-4511-bf6a-a4a89bb2c221 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-faedb095-da1b-4511-bf6a-a4a89bb2c221 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-faedb095-da1b-4511-bf6a-a4a89bb2c221 .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-49793293-ffda-44df-853d-2fe74a0b6324 {
  padding-left: 0em;
min-height: 50px;
}








#s-49793293-ffda-44df-853d-2fe74a0b6324 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-49793293-ffda-44df-853d-2fe74a0b6324.shg-box.shg-c {
  justify-content: center;
}

#s-571e77cd-4db9-4825-8668-e1fdd4047926 {
  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-571e77cd-4db9-4825-8668-e1fdd4047926 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-571e77cd-4db9-4825-8668-e1fdd4047926.shg-box.shg-c {
  justify-content: center;
}

#s-1099f934-fa5a-421a-839f-f291ceca4a1a {
  text-align: center;
}



.shg-c#s-1099f934-fa5a-421a-839f-f291ceca4a1a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1099f934-fa5a-421a-839f-f291ceca4a1a img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-1099f934-fa5a-421a-839f-f291ceca4a1a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1099f934-fa5a-421a-839f-f291ceca4a1a img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-1099f934-fa5a-421a-839f-f291ceca4a1a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1099f934-fa5a-421a-839f-f291ceca4a1a img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-1099f934-fa5a-421a-839f-f291ceca4a1a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1099f934-fa5a-421a-839f-f291ceca4a1a img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-1099f934-fa5a-421a-839f-f291ceca4a1a .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-1099f934-fa5a-421a-839f-f291ceca4a1a img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-49e33d0c-7b91-48c6-9ea1-3889a47b8f35 {
  margin-top: 0em;
margin-bottom: 0em;
text-align: left;
}

#s-49e33d0c-7b91-48c6-9ea1-3889a47b8f35 .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-f85c718a-7e2e-4ae9-8f94-fbed0e2ba512 {
  text-align: right;
}
@media (min-width: 1200px){#s-f85c718a-7e2e-4ae9-8f94-fbed0e2ba512 {
  padding-left: 0%;
padding-right: 0%;
}
}
#s-f85c718a-7e2e-4ae9-8f94-fbed0e2ba512 .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-f85c718a-7e2e-4ae9-8f94-fbed0e2ba512 .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-f85c718a-7e2e-4ae9-8f94-fbed0e2ba512 .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-609a9b80-f942-4eb4-a68c-38299a08c3e3 {
  padding-left: 0em;
min-height: 50px;
}








#s-609a9b80-f942-4eb4-a68c-38299a08c3e3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-609a9b80-f942-4eb4-a68c-38299a08c3e3.shg-box.shg-c {
  justify-content: center;
}

#s-f5f7f340-56a0-4f7a-99ab-55b5f84fd298 {
  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-f5f7f340-56a0-4f7a-99ab-55b5f84fd298 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-f5f7f340-56a0-4f7a-99ab-55b5f84fd298.shg-box.shg-c {
  justify-content: center;
}

#s-d381335d-f2ba-4786-9880-52c5ec5240f1 {
  text-align: center;
}



.shg-c#s-d381335d-f2ba-4786-9880-52c5ec5240f1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d381335d-f2ba-4786-9880-52c5ec5240f1 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-d381335d-f2ba-4786-9880-52c5ec5240f1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d381335d-f2ba-4786-9880-52c5ec5240f1 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-d381335d-f2ba-4786-9880-52c5ec5240f1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d381335d-f2ba-4786-9880-52c5ec5240f1 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-d381335d-f2ba-4786-9880-52c5ec5240f1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d381335d-f2ba-4786-9880-52c5ec5240f1 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-d381335d-f2ba-4786-9880-52c5ec5240f1 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-d381335d-f2ba-4786-9880-52c5ec5240f1 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-cf92cbdb-3dcb-4e3e-a5b9-d4c770991ad2 {
  margin-top: 0em;
margin-bottom: 0em;
text-align: left;
}

#s-cf92cbdb-3dcb-4e3e-a5b9-d4c770991ad2 .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-ccd689d4-0bc3-46a7-a66a-ed598c9621fe {
  text-align: right;
}
@media (min-width: 1200px){#s-ccd689d4-0bc3-46a7-a66a-ed598c9621fe {
  padding-left: 0%;
padding-right: 0%;
}
}
#s-ccd689d4-0bc3-46a7-a66a-ed598c9621fe .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-ccd689d4-0bc3-46a7-a66a-ed598c9621fe .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-ccd689d4-0bc3-46a7-a66a-ed598c9621fe .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-ce505b39-2991-491e-9182-03506a5e298c {
  padding-left: 0%;
min-height: 50px;
}








#s-ce505b39-2991-491e-9182-03506a5e298c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ce505b39-2991-491e-9182-03506a5e298c.shg-box.shg-c {
  justify-content: center;
}

#s-6bce866d-c4ca-49c7-bbbb-a4cce06701c8 {
  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-6bce866d-c4ca-49c7-bbbb-a4cce06701c8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6bce866d-c4ca-49c7-bbbb-a4cce06701c8.shg-box.shg-c {
  justify-content: center;
}

#s-8ed1298a-cc7e-46c4-9c47-9baef833f562 {
  text-align: center;
}



.shg-c#s-8ed1298a-cc7e-46c4-9c47-9baef833f562 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8ed1298a-cc7e-46c4-9c47-9baef833f562 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
@media (min-width: 1200px){

.shg-c#s-8ed1298a-cc7e-46c4-9c47-9baef833f562 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8ed1298a-cc7e-46c4-9c47-9baef833f562 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 992px) and (max-width: 1199px){

.shg-c#s-8ed1298a-cc7e-46c4-9c47-9baef833f562 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8ed1298a-cc7e-46c4-9c47-9baef833f562 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (min-width: 768px) and (max-width: 991px){

.shg-c#s-8ed1298a-cc7e-46c4-9c47-9baef833f562 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8ed1298a-cc7e-46c4-9c47-9baef833f562 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}@media (max-width: 767px){

.shg-c#s-8ed1298a-cc7e-46c4-9c47-9baef833f562 .shg-image-zoom {
  width:  100%; 
  height:  100%; 
}


.shg-c#s-8ed1298a-cc7e-46c4-9c47-9baef833f562 img.shogun-image {
  width: 100%;
  height: auto;
}





  .shg-product-image-wrapper {
    display: none;
  }
}
#s-df7cc963-be21-4714-9233-01ac9f54a2f6 {
  margin-top: 0em;
margin-bottom: 0em;
text-align: left;
}

#s-df7cc963-be21-4714-9233-01ac9f54a2f6 .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-1417bac1-9522-41e5-84ca-db56c648111e {
  text-align: right;
}
@media (min-width: 1200px){#s-1417bac1-9522-41e5-84ca-db56c648111e {
  padding-left: 0%;
padding-right: 0%;
}
}
#s-1417bac1-9522-41e5-84ca-db56c648111e .shg-product-sold-out {
  display: none;
  color: rgba(0, 0, 0, 1);
  font-size: 18px;
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
}

#s-1417bac1-9522-41e5-84ca-db56c648111e .shg-product-price {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  font-family: ;
  font-style:  normal ;
  font-size: 18px;
}

#s-1417bac1-9522-41e5-84ca-db56c648111e .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-03c40bcd-a1be-48f8-b475-b70e3ca35724 {
  margin-left: 1em;
margin-right: 1em;
min-height: 50px;
}
@media (max-width: 767px){#s-03c40bcd-a1be-48f8-b475-b70e3ca35724 {
  margin-left: 0.5em;
margin-right: 0.5em;
}
}







#s-03c40bcd-a1be-48f8-b475-b70e3ca35724 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-03c40bcd-a1be-48f8-b475-b70e3ca35724.shg-box.shg-c {
  justify-content: center;
}

#s-728f174c-37b2-40f4-b243-10baf5f15d62 {
  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-728f174c-37b2-40f4-b243-10baf5f15d62 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-728f174c-37b2-40f4-b243-10baf5f15d62 .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-728f174c-37b2-40f4-b243-10baf5f15d62 .shogun-heading-component h4 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-0c13f738-bb8d-47f9-b3aa-b3b5fd5d4140 {
  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-0c13f738-bb8d-47f9-b3aa-b3b5fd5d4140 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0c13f738-bb8d-47f9-b3aa-b3b5fd5d4140.shg-box.shg-c {
  justify-content: center;
}

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

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

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

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

#s-72a8e732-6847-4412-b9fb-c473414b3782 {
  margin-top: 12px;
margin-bottom: 0%;
}

#s-fe32e4bc-4a22-4148-be34-73f991652f8d {
  margin-top: 0em;
margin-left: 1em;
margin-bottom: 4em;
margin-right: 1em;
min-height: 50px;
}
@media (max-width: 767px){#s-fe32e4bc-4a22-4148-be34-73f991652f8d {
  margin-left: 0.5em;
margin-right: 0.5em;
}
}







#s-fe32e4bc-4a22-4148-be34-73f991652f8d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-fe32e4bc-4a22-4148-be34-73f991652f8d.shg-box.shg-c {
  justify-content: center;
}

#s-9214082a-514a-40d2-a674-fca14e477894 {
  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-9214082a-514a-40d2-a674-fca14e477894 {
  padding-left: 5em;
padding-right: 5em;
}
}
@media (min-width: 0px) {
[id="s-9214082a-514a-40d2-a674-fca14e477894"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-9214082a-514a-40d2-a674-fca14e477894"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0em);
}

}

@media (min-width: 992px) {
[id="s-9214082a-514a-40d2-a674-fca14e477894"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0em);
}

}

@media (min-width: 1200px) {
[id="s-9214082a-514a-40d2-a674-fca14e477894"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0em);
}

}

#s-6bb880d3-8a3b-48b3-b83e-95b78a5d5cc9 {
  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-6bb880d3-8a3b-48b3-b83e-95b78a5d5cc9 {
  padding-top: 8em;
padding-left: 5em;
padding-bottom: 8em;
padding-right: 0em;
min-height: 50px;
}
}@media (max-width: 767px){#s-6bb880d3-8a3b-48b3-b83e-95b78a5d5cc9 {
  margin-top: 0em;
margin-left: 2em;
margin-right: 2em;
padding-top: 3em;
padding-bottom: 0px;
min-height: 0px;
}
}







#s-6bb880d3-8a3b-48b3-b83e-95b78a5d5cc9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6bb880d3-8a3b-48b3-b83e-95b78a5d5cc9.shg-box.shg-c {
  justify-content: center;
}

#s-d09fb288-f582-4b74-9ce1-d5070ba05803 {
  text-align: left;
}

#s-8c9c1e37-60c9-447d-868a-ebba0912eec4 {
  margin-top: 1em;
margin-bottom: 0em;
}
@media (min-width: 1200px){#s-8c9c1e37-60c9-447d-868a-ebba0912eec4 {
  padding-top: 2em;
padding-bottom: 0em;
}
}@media (max-width: 767px){#s-8c9c1e37-60c9-447d-868a-ebba0912eec4 {
  margin-left: 1em;
margin-right: 1em;
}
}
#s-0af3795e-3f23-4907-b735-b24f89b0a6bf {
  min-height: 50px;
background-color: rgba(239, 239, 239, 1);
}
@media (max-width: 767px){#s-0af3795e-3f23-4907-b735-b24f89b0a6bf {
  min-height: 0px;
}
}







#s-0af3795e-3f23-4907-b735-b24f89b0a6bf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-0af3795e-3f23-4907-b735-b24f89b0a6bf.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 1200px){#s-1ef75ddc-ec40-4289-ad13-25757adec018 {
  padding-top: 0em;
padding-bottom: 0em;
}
}@media (max-width: 767px){#s-1ef75ddc-ec40-4289-ad13-25757adec018 {
  margin-left: 9em;
margin-right: 9em;
}
}
@media (min-width: 0px) {
[id="s-1ef75ddc-ec40-4289-ad13-25757adec018"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1ef75ddc-ec40-4289-ad13-25757adec018"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-1ef75ddc-ec40-4289-ad13-25757adec018"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-1ef75ddc-ec40-4289-ad13-25757adec018"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

}

#s-e3587ff3-c598-41b4-8d5f-0b2d611a728e {
  max-width: 1337px;
text-align: center;
}
@media (max-width: 767px){#s-e3587ff3-c598-41b4-8d5f-0b2d611a728e {
  margin-left: 0px;
margin-right: 0px;
padding-left: 0em;
padding-right: 0em;
}
}
#s-e3587ff3-c598-41b4-8d5f-0b2d611a728e {
  overflow: hidden;
  
  
      max-width: 1337px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-e3587ff3-c598-41b4-8d5f-0b2d611a728e .shogun-image-content {
  
    justify-content: center;
  
}

#s-9bc2c4ef-ca7f-4a57-b1b7-eaea233a0dd2 {
  padding-top: 0em;
padding-left: 5em;
padding-bottom: 2em;
padding-right: 5em;
min-height: 50px;
}
@media (max-width: 767px){#s-9bc2c4ef-ca7f-4a57-b1b7-eaea233a0dd2 {
  padding-left: 1em;
padding-right: 1em;
}
}







#s-9bc2c4ef-ca7f-4a57-b1b7-eaea233a0dd2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9bc2c4ef-ca7f-4a57-b1b7-eaea233a0dd2.shg-box.shg-c {
  justify-content: center;
}

#s-0bfc8529-069e-478a-b72b-8ec480af52aa {
  margin-top: 1em;
margin-bottom: 1em;
padding-top: 0px;
}

@media (min-width: 0px) {
[id="s-0bfc8529-069e-478a-b72b-8ec480af52aa"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.6666666666666666em);
}

}

@media (min-width: 768px) {
[id="s-0bfc8529-069e-478a-b72b-8ec480af52aa"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.6666666666666666em);
}

}

@media (min-width: 992px) {
[id="s-0bfc8529-069e-478a-b72b-8ec480af52aa"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.6666666666666666em);
}

}

@media (min-width: 1200px) {
[id="s-0bfc8529-069e-478a-b72b-8ec480af52aa"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.6666666666666666em);
}

}

#s-6e1509b4-a7e3-4582-be17-6a45ce85434e {
  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-6e1509b4-a7e3-4582-be17-6a45ce85434e {
  padding-top: 0.5em;
padding-left: 0.5em;
padding-bottom: 0.5em;
padding-right: 0.5em;
}
}@media (max-width: 767px){#s-6e1509b4-a7e3-4582-be17-6a45ce85434e {
  padding-top: 0.5em;
padding-left: 0.5em;
padding-bottom: 0.5em;
padding-right: 0.5em;
}
}







#s-6e1509b4-a7e3-4582-be17-6a45ce85434e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-6e1509b4-a7e3-4582-be17-6a45ce85434e.shg-box.shg-c {
  justify-content: flex-start;
}

#s-5479af63-c550-45a3-9654-4a6af9786ad7 {
  margin-top: 10px;
margin-bottom: 10px;
min-height: 0%;
max-width: 80%;
text-align: center;
}
@media (max-width: 767px){#s-5479af63-c550-45a3-9654-4a6af9786ad7 {
  margin-left: 0px;
margin-right: 0px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
padding-right: 10px;
max-width: 70%;
}
}
#s-5479af63-c550-45a3-9654-4a6af9786ad7 {
  overflow: hidden;
  
  
      max-width: 80%;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-5479af63-c550-45a3-9654-4a6af9786ad7 .shogun-image-content {
  
    justify-content: center;
  
}

#s-4858db67-9979-4217-9bab-3d8428a3fe9e {
  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-4858db67-9979-4217-9bab-3d8428a3fe9e {
  padding-top: 0.5em;
padding-left: 0.5em;
padding-bottom: 0.5em;
padding-right: 0.5em;
}
}@media (max-width: 767px){#s-4858db67-9979-4217-9bab-3d8428a3fe9e {
  padding-top: 0.5em;
padding-left: 0.5em;
padding-bottom: 0.5em;
padding-right: 0.5em;
}
}







#s-4858db67-9979-4217-9bab-3d8428a3fe9e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-4858db67-9979-4217-9bab-3d8428a3fe9e.shg-box.shg-c {
  justify-content: flex-start;
}

#s-f628a638-308c-4f09-92f8-aeff5eebbc42 {
  min-height: 0%;
max-width: 300px;
text-align: center;
}

#s-f628a638-308c-4f09-92f8-aeff5eebbc42 {
  overflow: hidden;
  
  
      max-width: 300px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-f628a638-308c-4f09-92f8-aeff5eebbc42 .shogun-image-content {
  
    justify-content: center;
  
}

#s-52fb6508-cd5c-405b-a207-ceeea675448d {
  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-52fb6508-cd5c-405b-a207-ceeea675448d {
  padding-top: 0.5em;
padding-left: 0.5em;
padding-bottom: 0.5em;
padding-right: 0.5em;
}
}@media (max-width: 767px){#s-52fb6508-cd5c-405b-a207-ceeea675448d {
  padding-top: 0.5em;
padding-left: 0.5em;
padding-bottom: 0.5em;
padding-right: 0.5em;
}
}







#s-52fb6508-cd5c-405b-a207-ceeea675448d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-52fb6508-cd5c-405b-a207-ceeea675448d.shg-box.shg-c {
  justify-content: flex-start;
}

#s-bbae448a-500d-4eda-9da6-b1940c99995c {
  min-height: 0%;
max-width: 300px;
text-align: center;
}

#s-bbae448a-500d-4eda-9da6-b1940c99995c {
  overflow: hidden;
  
  
      max-width: 300px;
      
        margin-left: auto;
        margin-right: auto;
      
      
      
  
}








#s-bbae448a-500d-4eda-9da6-b1940c99995c .shogun-image-content {
  
    justify-content: center;
  
}

#s-3b0a332c-55a3-42c6-95e5-c069abc60c10 {
  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-3b0a332c-55a3-42c6-95e5-c069abc60c10 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}
}
#s-3b0a332c-55a3-42c6-95e5-c069abc60c10 .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-3b0a332c-55a3-42c6-95e5-c069abc60c10 .shogun-heading-component h4 {
  color: rgba(99, 23, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  
  
  
  
}


}
#s-9266b93f-5c87-45ef-a959-6fe1d2b459f2 {
  margin-left: 1em;
margin-right: 1em;
text-align: left;
}
@media (max-width: 767px){#s-9266b93f-5c87-45ef-a959-6fe1d2b459f2 {
  margin-left: 0.5em;
margin-bottom: 0.5em;
margin-right: 0.5em;
}
}
#s-469daab3-9bfa-4115-b16b-cc130f15313a {
  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-469daab3-9bfa-4115-b16b-cc130f15313a {
  display: none;
}
#s-469daab3-9bfa-4115-b16b-cc130f15313a, #wrap-s-469daab3-9bfa-4115-b16b-cc130f15313a, #wrap-content-s-469daab3-9bfa-4115-b16b-cc130f15313a { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-469daab3-9bfa-4115-b16b-cc130f15313a {
  display: none;
}
#s-469daab3-9bfa-4115-b16b-cc130f15313a, #wrap-s-469daab3-9bfa-4115-b16b-cc130f15313a, #wrap-content-s-469daab3-9bfa-4115-b16b-cc130f15313a { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-469daab3-9bfa-4115-b16b-cc130f15313a {
  display: none;
}
#s-469daab3-9bfa-4115-b16b-cc130f15313a, #wrap-s-469daab3-9bfa-4115-b16b-cc130f15313a, #wrap-content-s-469daab3-9bfa-4115-b16b-cc130f15313a { display: none !important; }}@media (max-width: 767px){#s-469daab3-9bfa-4115-b16b-cc130f15313a {
  display: none;
}
#s-469daab3-9bfa-4115-b16b-cc130f15313a, #wrap-s-469daab3-9bfa-4115-b16b-cc130f15313a, #wrap-content-s-469daab3-9bfa-4115-b16b-cc130f15313a { display: none !important; }}







#s-469daab3-9bfa-4115-b16b-cc130f15313a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-469daab3-9bfa-4115-b16b-cc130f15313a.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-57e0df9d-1282-4892-8739-84e3e24c8cf4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-57e0df9d-1282-4892-8739-84e3e24c8cf4"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-57e0df9d-1282-4892-8739-84e3e24c8cf4"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-57e0df9d-1282-4892-8739-84e3e24c8cf4"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-57e0df9d-1282-4892-8739-84e3e24c8cf4"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-57e0df9d-1282-4892-8739-84e3e24c8cf4"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-57e0df9d-1282-4892-8739-84e3e24c8cf4"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

#s-e20f9acc-5c6b-49b5-b310-896e12409196 {
  margin-top: 10px;
margin-left: 10%;
margin-bottom: 10px;
margin-right: 10%;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-e20f9acc-5c6b-49b5-b310-896e12409196 .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-515bb1b5-345a-4811-ba1d-583a6636f9fa {
  margin-left: 10%;
margin-right: 10%;
padding-top: 10px;
padding-bottom: 20px;
text-align: left;
}

#s-515bb1b5-345a-4811-ba1d-583a6636f9fa .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  
  
  text-align: left;
}



#s-b4f76155-f100-4da8-8dd3-0eda5804815d {
  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-b4f76155-f100-4da8-8dd3-0eda5804815d: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-b4f76155-f100-4da8-8dd3-0eda5804815d: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-b4f76155-f100-4da8-8dd3-0eda5804815d-root {
    text-align: left;
  }


#s-b4f76155-f100-4da8-8dd3-0eda5804815d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b4f76155-f100-4da8-8dd3-0eda5804815d-root {
    text-align: left;
  }


#s-b4f76155-f100-4da8-8dd3-0eda5804815d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b4f76155-f100-4da8-8dd3-0eda5804815d-root {
    text-align: left;
  }


#s-b4f76155-f100-4da8-8dd3-0eda5804815d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b4f76155-f100-4da8-8dd3-0eda5804815d-root {
    text-align: left;
  }


#s-b4f76155-f100-4da8-8dd3-0eda5804815d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b4f76155-f100-4da8-8dd3-0eda5804815d-root {
    text-align: left;
  }


#s-b4f76155-f100-4da8-8dd3-0eda5804815d.shg-btn {
  color: #ffffff;
  font-size: 14px;
  
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-4f65266d-cf3d-43f5-8c6e-925c224a8a10 {
  padding-top: 50px;
padding-bottom: 50px;
text-align: center;
}

#s-4f65266d-cf3d-43f5-8c6e-925c224a8a10 {
  overflow: hidden;
  
  
}







  #s-4f65266d-cf3d-43f5-8c6e-925c224a8a10 img.shogun-image {
    

    
    
    
  }


#s-4f65266d-cf3d-43f5-8c6e-925c224a8a10 .shogun-image-content {
  
    justify-content: center;
  
}

#s-dd1978af-9ce1-495c-a620-85b87be134f0 {
  margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}

#s-dd1978af-9ce1-495c-a620-85b87be134f0 {
  overflow: hidden;
  
  
}







  #s-dd1978af-9ce1-495c-a620-85b87be134f0 img.shogun-image {
    

    
    
    
  }


#s-dd1978af-9ce1-495c-a620-85b87be134f0 .shogun-image-content {
  
    justify-content: center;
  
}

#s-eb7192cd-d074-41f7-9036-1eb78f645bf6 {
  margin-left: auto;
margin-right: auto;
text-align: left;
}

#s-9b269c94-1190-4eeb-aa6b-8603b0f21e29 {
  padding-top: 1em;
padding-bottom: 20px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-9b269c94-1190-4eeb-aa6b-8603b0f21e29 {
  padding-top: 1em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-9b269c94-1190-4eeb-aa6b-8603b0f21e29 {
  padding-top: 1em;
}
}@media (min-width: 768px) and (max-width: 991px){#s-9b269c94-1190-4eeb-aa6b-8603b0f21e29 {
  padding-top: 1em;
}
}@media (max-width: 767px){#s-9b269c94-1190-4eeb-aa6b-8603b0f21e29 {
  padding-top: 1em;
padding-bottom: 1em;
}
}







#s-9b269c94-1190-4eeb-aa6b-8603b0f21e29 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-9b269c94-1190-4eeb-aa6b-8603b0f21e29.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;
}

#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);
}

#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 {
  padding-left: 1em;
padding-right: 1em;
}
}
@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;
}

#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 {
  
}


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

#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: 2492px;
text-align: center;
}

#s-ebd27c29-4172-40e8-b56f-577353fa17c3 {
  overflow: hidden;
  
  
      max-width: 2492px;
      
        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: 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-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: 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-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 {
  margin-top: 0em;
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: auto;
margin-right: auto;
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: 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-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;
}

#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;

  /* 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%;
  
  
  

  /* 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%;
  
  
  

  /* 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%;
  
  
  

  /* 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%;
  
  
  

  /* 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: 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-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: auto;
margin-right: auto;
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-ad12e565-e60d-47af-993e-208e8f816b77 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (max-width: 767px){#s-ad12e565-e60d-47af-993e-208e8f816b77 {
  min-height: 0px;
}
}







#s-ad12e565-e60d-47af-993e-208e8f816b77 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
  display: block;
}#s-ad12e565-e60d-47af-993e-208e8f816b77.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;
}

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


}
#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%;
}
}
/*
  $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;
}
