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

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

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

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

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

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

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

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

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

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

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

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

#s-f8bb1fa1-1e3c-4bbc-8fcf-a43c7c404bc5 {
  margin-bottom: -80px;
padding-top: 20px;
padding-bottom: 72px;
min-height: 50px;
background-color: rgba(33, 33, 33, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-f8bb1fa1-1e3c-4bbc-8fcf-a43c7c404bc5 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-f8bb1fa1-1e3c-4bbc-8fcf-a43c7c404bc5, #wrap-s-f8bb1fa1-1e3c-4bbc-8fcf-a43c7c404bc5 { display: none !important; }}@media (max-width: 767px){#s-f8bb1fa1-1e3c-4bbc-8fcf-a43c7c404bc5 {
  
}
}@media (max-width: 767px){#s-f8bb1fa1-1e3c-4bbc-8fcf-a43c7c404bc5, #wrap-s-f8bb1fa1-1e3c-4bbc-8fcf-a43c7c404bc5 { display: none !important; }}







#s-f8bb1fa1-1e3c-4bbc-8fcf-a43c7c404bc5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f8bb1fa1-1e3c-4bbc-8fcf-a43c7c404bc5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ddc11da0-af6d-45fb-9991-df15f990ebb8 {
  margin-left: auto;
margin-right: auto;
padding-bottom: 20px;
min-height: 50px;
max-width: 1350px;
background-color: rgba(0, 0, 0, 1);
}








#s-ddc11da0-af6d-45fb-9991-df15f990ebb8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ddc11da0-af6d-45fb-9991-df15f990ebb8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-15a26666-d7ec-4fbb-ada4-28fa9981e58b {
  margin-left: auto;
margin-right: auto;
max-width: 1350px;
aspect-ratio: 1350/767;
text-align: center;
}





  #s-15a26666-d7ec-4fbb-ada4-28fa9981e58b img.shogun-image,
  #s-15a26666-d7ec-4fbb-ada4-28fa9981e58b .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-15a26666-d7ec-4fbb-ada4-28fa9981e58b {
    width: 100%;
    height: auto;
  }



  #s-15a26666-d7ec-4fbb-ada4-28fa9981e58b img.shogun-image {
    

    
    
    
  }


#s-15a26666-d7ec-4fbb-ada4-28fa9981e58b .shogun-image-content {
  
    align-items: center;
  
}

#s-c34aa015-65e3-4b53-a004-d23a547acdde {
  min-height: 50px;
}








#s-c34aa015-65e3-4b53-a004-d23a547acdde > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c34aa015-65e3-4b53-a004-d23a547acdde.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1c99b89a-3c0d-4fbc-8a00-6493df32887b {
  padding-top: 60px;
padding-left: 12%;
padding-bottom: 80px;
padding-right: 12%;
min-height: 50px;
background-color: rgba(20, 20, 20, 1);
}








#s-1c99b89a-3c0d-4fbc-8a00-6493df32887b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1c99b89a-3c0d-4fbc-8a00-6493df32887b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

#s-094e9244-8dd7-4880-afb2-51f52e8edd47 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-094e9244-8dd7-4880-afb2-51f52e8edd47 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 32px;
  
  
  
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-2fe0d7aa-8979-4fb9-933a-64f4b3e9d3e8 {
  padding-bottom: 30px;
}

.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-5e4ae429-e6f7-42a9-94c6-dbb19795a0b5 {
  padding-top: 40px;
padding-bottom: 20px;
text-align: center;
}

#s-5e4ae429-e6f7-42a9-94c6-dbb19795a0b5 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 36px;
  
  
  
}



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

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

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

#s-65f59b4c-6170-426c-998e-182290340cce {
  box-shadow:0px 0px 12px 0px rgba(255, 255, 255, 0.38);
margin-top: 40px;
margin-left: auto;
margin-bottom: 60px;
margin-right: auto;
padding-top: 16px;
padding-left: 16px;
padding-bottom: 16px;
padding-right: 16px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(157, 157, 157, 1);
border-style: solid;
border-radius: 4px;
max-width: 1000px;
}

@media (min-width: 0px) {
[id="s-65f59b4c-6170-426c-998e-182290340cce"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-65f59b4c-6170-426c-998e-182290340cce"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-65f59b4c-6170-426c-998e-182290340cce"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-65f59b4c-6170-426c-998e-182290340cce"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-b01e390d-983d-410f-a5f6-5dcf60d24479 {
  margin-top: -44px;
margin-left: 0px;
margin-bottom: -50px;
margin-right: auto;
max-width: 440px;
text-align: center;
}







  #s-b01e390d-983d-410f-a5f6-5dcf60d24479 img.shogun-image {
    

    
    
    
  }


#s-b01e390d-983d-410f-a5f6-5dcf60d24479 .shogun-image-content {
  
    align-items: center;
  
}

@media (min-width: 0px) {
[id="s-961d974d-0297-411a-9901-fae0476b09a2"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-961d974d-0297-411a-9901-fae0476b09a2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 992px) {
[id="s-961d974d-0297-411a-9901-fae0476b09a2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 4.0px);
}

}

@media (min-width: 1200px) {
[id="s-961d974d-0297-411a-9901-fae0476b09a2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 4.0px);
}

}

#s-4e810143-cab9-4428-9972-027dde0b0165 {
  margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-4e810143-cab9-4428-9972-027dde0b0165 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 44px;
  
  
  text-align: left;
}



#s-d45b3e55-684e-4ae9-a1d4-d65c12cffe3c {
  margin-left: -22px;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-d45b3e55-684e-4ae9-a1d4-d65c12cffe3c .shogun-heading-component h1 {
  color: rgba(118, 185, 0, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: left;
}



#s-b137ff8c-325a-41d5-bd32-ae65e77dd3e6 {
  margin-top: -22px;
margin-bottom: -34px;
padding-top: 10px;
padding-bottom: 28px;
text-align: left;
}

#s-73e8598f-f0b8-49a0-88e3-cae66b1aa230 {
  padding-bottom: 8px;
text-align: left;
}

@media (min-width: 0px) {
[id="s-7ebf4ccb-910d-48d6-8761-050ed1dc9b60"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7ebf4ccb-910d-48d6-8761-050ed1dc9b60"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-7ebf4ccb-910d-48d6-8761-050ed1dc9b60"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-7ebf4ccb-910d-48d6-8761-050ed1dc9b60"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-7ebf4ccb-910d-48d6-8761-050ed1dc9b60"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-7ebf4ccb-910d-48d6-8761-050ed1dc9b60"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-7ebf4ccb-910d-48d6-8761-050ed1dc9b60"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.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-c34c179a-8e64-491b-8d10-d3dab831013c {
  padding-top: 10px;
padding-left: 28px;
padding-bottom: 10px;
padding-right: 28px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 4px;
background-color: rgba(118, 185, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-c34c179a-8e64-491b-8d10-d3dab831013c:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c34c179a-8e64-491b-8d10-d3dab831013c:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-c34c179a-8e64-491b-8d10-d3dab831013c-root {
    text-align: left;
  }


#s-c34c179a-8e64-491b-8d10-d3dab831013c.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c34c179a-8e64-491b-8d10-d3dab831013c-root {
    text-align: left;
  }


#s-c34c179a-8e64-491b-8d10-d3dab831013c.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c34c179a-8e64-491b-8d10-d3dab831013c-root {
    text-align: left;
  }


#s-c34c179a-8e64-491b-8d10-d3dab831013c.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c34c179a-8e64-491b-8d10-d3dab831013c-root {
    text-align: left;
  }


#s-c34c179a-8e64-491b-8d10-d3dab831013c.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c34c179a-8e64-491b-8d10-d3dab831013c-root {
    text-align: left;
  }


#s-c34c179a-8e64-491b-8d10-d3dab831013c.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-da632b9c-5de7-4f4b-ad7d-365eaf44a999 {
  margin-left: 0%;
padding-top: 8px;
padding-left: 28px;
padding-bottom: 8px;
padding-right: 28px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 4px;
background-color: rgba(118, 185, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-da632b9c-5de7-4f4b-ad7d-365eaf44a999:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-da632b9c-5de7-4f4b-ad7d-365eaf44a999:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-da632b9c-5de7-4f4b-ad7d-365eaf44a999-root {
    text-align: left;
  }


#s-da632b9c-5de7-4f4b-ad7d-365eaf44a999.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-da632b9c-5de7-4f4b-ad7d-365eaf44a999-root {
    text-align: left;
  }


#s-da632b9c-5de7-4f4b-ad7d-365eaf44a999.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-da632b9c-5de7-4f4b-ad7d-365eaf44a999-root {
    text-align: left;
  }


#s-da632b9c-5de7-4f4b-ad7d-365eaf44a999.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-da632b9c-5de7-4f4b-ad7d-365eaf44a999-root {
    text-align: left;
  }


#s-da632b9c-5de7-4f4b-ad7d-365eaf44a999.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-da632b9c-5de7-4f4b-ad7d-365eaf44a999-root {
    text-align: left;
  }


#s-da632b9c-5de7-4f4b-ad7d-365eaf44a999.shg-btn {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-09170ba6-c4bb-45cb-b6be-a8e09debfa63 {
  box-shadow:0px 0px 0px 0px rgba(255, 255, 255, 0.2);
margin-left: auto;
margin-right: auto;
padding-top: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 6px;
max-width: 1000px;
text-align: center;
}







  #s-09170ba6-c4bb-45cb-b6be-a8e09debfa63 img.shogun-image {
    

    
    
    
  }


#s-09170ba6-c4bb-45cb-b6be-a8e09debfa63 .shogun-image-content {
  
    align-items: center;
  
}

#s-33185afd-1d83-4d64-a903-145e2b668120 {
  box-shadow:0px 0px 12px 0px rgba(255, 255, 255, 0.38);
margin-top: 40px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 16px;
padding-left: 16px;
padding-bottom: 16px;
padding-right: 16px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(157, 157, 157, 1);
border-style: solid;
border-radius: 4px;
max-width: 1000px;
}

@media (min-width: 0px) {
[id="s-33185afd-1d83-4d64-a903-145e2b668120"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-33185afd-1d83-4d64-a903-145e2b668120"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-33185afd-1d83-4d64-a903-145e2b668120"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-33185afd-1d83-4d64-a903-145e2b668120"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-cdb4f1bf-0a5d-4b1d-af8e-636fb614c582 {
  margin-left: 0px;
margin-right: auto;
max-width: 440px;
text-align: center;
}







  #s-cdb4f1bf-0a5d-4b1d-af8e-636fb614c582 img.shogun-image {
    

    
    
    
  }


#s-cdb4f1bf-0a5d-4b1d-af8e-636fb614c582 .shogun-image-content {
  
    align-items: center;
  
}

#s-ce70f762-4921-4c61-9304-d3b9593ac2c2 {
  margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-ce70f762-4921-4c61-9304-d3b9593ac2c2 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 44px;
  
  
  text-align: left;
}



#s-24beecd8-2557-47ce-af22-dae04c1122f3 {
  padding-top: 10px;
padding-bottom: 28px;
text-align: left;
}

@media (min-width: 0px) {
[id="s-4c4f294c-7a28-4a91-b68f-bd5e8c788ae4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4c4f294c-7a28-4a91-b68f-bd5e8c788ae4"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-4c4f294c-7a28-4a91-b68f-bd5e8c788ae4"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-4c4f294c-7a28-4a91-b68f-bd5e8c788ae4"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-4c4f294c-7a28-4a91-b68f-bd5e8c788ae4"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-4c4f294c-7a28-4a91-b68f-bd5e8c788ae4"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-4c4f294c-7a28-4a91-b68f-bd5e8c788ae4"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

#s-12e46d68-ba48-47fa-a36a-7db6c302b56f {
  padding-top: 10px;
padding-left: 28px;
padding-bottom: 10px;
padding-right: 28px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 4px;
background-color: rgba(118, 185, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-12e46d68-ba48-47fa-a36a-7db6c302b56f:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-12e46d68-ba48-47fa-a36a-7db6c302b56f:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-12e46d68-ba48-47fa-a36a-7db6c302b56f-root {
    text-align: left;
  }


#s-12e46d68-ba48-47fa-a36a-7db6c302b56f.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-12e46d68-ba48-47fa-a36a-7db6c302b56f-root {
    text-align: left;
  }


#s-12e46d68-ba48-47fa-a36a-7db6c302b56f.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-12e46d68-ba48-47fa-a36a-7db6c302b56f-root {
    text-align: left;
  }


#s-12e46d68-ba48-47fa-a36a-7db6c302b56f.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-12e46d68-ba48-47fa-a36a-7db6c302b56f-root {
    text-align: left;
  }


#s-12e46d68-ba48-47fa-a36a-7db6c302b56f.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-12e46d68-ba48-47fa-a36a-7db6c302b56f-root {
    text-align: left;
  }


#s-12e46d68-ba48-47fa-a36a-7db6c302b56f.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-d1590e33-b1de-44fb-9a8f-a5d1f08c8596 {
  margin-left: 0%;
padding-top: 10px;
padding-left: 28px;
padding-bottom: 10px;
padding-right: 28px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 4px;
background-color: rgba(118, 185, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-d1590e33-b1de-44fb-9a8f-a5d1f08c8596:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-d1590e33-b1de-44fb-9a8f-a5d1f08c8596:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-d1590e33-b1de-44fb-9a8f-a5d1f08c8596-root {
    text-align: left;
  }


#s-d1590e33-b1de-44fb-9a8f-a5d1f08c8596.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d1590e33-b1de-44fb-9a8f-a5d1f08c8596-root {
    text-align: left;
  }


#s-d1590e33-b1de-44fb-9a8f-a5d1f08c8596.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d1590e33-b1de-44fb-9a8f-a5d1f08c8596-root {
    text-align: left;
  }


#s-d1590e33-b1de-44fb-9a8f-a5d1f08c8596.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d1590e33-b1de-44fb-9a8f-a5d1f08c8596-root {
    text-align: left;
  }


#s-d1590e33-b1de-44fb-9a8f-a5d1f08c8596.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d1590e33-b1de-44fb-9a8f-a5d1f08c8596-root {
    text-align: left;
  }


#s-d1590e33-b1de-44fb-9a8f-a5d1f08c8596.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-c45bb3f9-9560-44d3-81fe-9552d7e2950a {
  box-shadow:0px 0px 12px 0px rgba(255, 255, 255, 0.38);
margin-top: 40px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 16px;
padding-left: 16px;
padding-bottom: 16px;
padding-right: 16px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(157, 157, 157, 1);
border-style: solid;
border-radius: 4px;
max-width: 1000px;
}

@media (min-width: 0px) {
[id="s-c45bb3f9-9560-44d3-81fe-9552d7e2950a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c45bb3f9-9560-44d3-81fe-9552d7e2950a"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c45bb3f9-9560-44d3-81fe-9552d7e2950a"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c45bb3f9-9560-44d3-81fe-9552d7e2950a"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-495908ee-beb7-4276-bb00-f2f614e4cc25 {
  margin-left: 0px;
margin-right: auto;
max-width: 440px;
text-align: center;
}







  #s-495908ee-beb7-4276-bb00-f2f614e4cc25 img.shogun-image {
    

    
    
    
  }


#s-495908ee-beb7-4276-bb00-f2f614e4cc25 .shogun-image-content {
  
    align-items: center;
  
}

#s-c55511bb-56eb-487d-b1ea-8417aaa8f5a2 {
  margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-c55511bb-56eb-487d-b1ea-8417aaa8f5a2 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 44px;
  
  
  text-align: left;
}



#s-945de54b-6c05-4e06-b710-7548cdbb2ed9 {
  padding-top: 10px;
padding-bottom: 28px;
text-align: left;
}

@media (min-width: 0px) {
[id="s-79ad983f-9c4a-4249-97e4-937c7864ee04"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-79ad983f-9c4a-4249-97e4-937c7864ee04"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-79ad983f-9c4a-4249-97e4-937c7864ee04"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-79ad983f-9c4a-4249-97e4-937c7864ee04"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-79ad983f-9c4a-4249-97e4-937c7864ee04"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-79ad983f-9c4a-4249-97e4-937c7864ee04"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-79ad983f-9c4a-4249-97e4-937c7864ee04"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

#s-b4bd4b8b-704b-4257-b0d7-8acfd5cb7ddf {
  padding-top: 10px;
padding-left: 28px;
padding-bottom: 10px;
padding-right: 28px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 4px;
background-color: rgba(118, 185, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-b4bd4b8b-704b-4257-b0d7-8acfd5cb7ddf:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b4bd4b8b-704b-4257-b0d7-8acfd5cb7ddf:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-b4bd4b8b-704b-4257-b0d7-8acfd5cb7ddf-root {
    text-align: left;
  }


#s-b4bd4b8b-704b-4257-b0d7-8acfd5cb7ddf.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b4bd4b8b-704b-4257-b0d7-8acfd5cb7ddf-root {
    text-align: left;
  }


#s-b4bd4b8b-704b-4257-b0d7-8acfd5cb7ddf.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b4bd4b8b-704b-4257-b0d7-8acfd5cb7ddf-root {
    text-align: left;
  }


#s-b4bd4b8b-704b-4257-b0d7-8acfd5cb7ddf.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b4bd4b8b-704b-4257-b0d7-8acfd5cb7ddf-root {
    text-align: left;
  }


#s-b4bd4b8b-704b-4257-b0d7-8acfd5cb7ddf.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b4bd4b8b-704b-4257-b0d7-8acfd5cb7ddf-root {
    text-align: left;
  }


#s-b4bd4b8b-704b-4257-b0d7-8acfd5cb7ddf.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-aceef972-f0a6-47d1-a0d9-dc8082986d58 {
  margin-left: 0%;
padding-top: 10px;
padding-left: 28px;
padding-bottom: 10px;
padding-right: 28px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 4px;
background-color: rgba(118, 185, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-aceef972-f0a6-47d1-a0d9-dc8082986d58:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-aceef972-f0a6-47d1-a0d9-dc8082986d58:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-aceef972-f0a6-47d1-a0d9-dc8082986d58-root {
    text-align: left;
  }


#s-aceef972-f0a6-47d1-a0d9-dc8082986d58.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-aceef972-f0a6-47d1-a0d9-dc8082986d58-root {
    text-align: left;
  }


#s-aceef972-f0a6-47d1-a0d9-dc8082986d58.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-aceef972-f0a6-47d1-a0d9-dc8082986d58-root {
    text-align: left;
  }


#s-aceef972-f0a6-47d1-a0d9-dc8082986d58.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-aceef972-f0a6-47d1-a0d9-dc8082986d58-root {
    text-align: left;
  }


#s-aceef972-f0a6-47d1-a0d9-dc8082986d58.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-aceef972-f0a6-47d1-a0d9-dc8082986d58-root {
    text-align: left;
  }


#s-aceef972-f0a6-47d1-a0d9-dc8082986d58.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-346d17ed-457c-43f3-a59e-1df4b6c58dee {
  box-shadow:0px 0px 12px 0px rgba(255, 255, 255, 0.38);
margin-top: 40px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 14px;
padding-left: 16px;
padding-bottom: 20px;
padding-right: 16px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(157, 157, 157, 1);
border-style: solid;
border-radius: 4px;
max-width: 1000px;
}

@media (min-width: 0px) {
[id="s-346d17ed-457c-43f3-a59e-1df4b6c58dee"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-346d17ed-457c-43f3-a59e-1df4b6c58dee"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-346d17ed-457c-43f3-a59e-1df4b6c58dee"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-346d17ed-457c-43f3-a59e-1df4b6c58dee"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-4cd339c8-d9fc-42db-a523-f45ef6b9a596 {
  margin-left: 0px;
margin-right: auto;
max-width: 440px;
text-align: center;
}







  #s-4cd339c8-d9fc-42db-a523-f45ef6b9a596 img.shogun-image {
    

    
    
    
  }


#s-4cd339c8-d9fc-42db-a523-f45ef6b9a596 .shogun-image-content {
  
    align-items: center;
  
}

#s-691485f1-d91c-4ebf-b629-7ba329702894 {
  margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-691485f1-d91c-4ebf-b629-7ba329702894 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 44px;
  
  
  text-align: left;
}



#s-842a70df-5460-49a0-ba6c-6ab6faf43f81 {
  padding-top: 10px;
padding-bottom: 20px;
text-align: left;
}

@media (min-width: 0px) {
[id="s-555ca82e-4f73-4a24-83c6-d2e3200ec556"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-555ca82e-4f73-4a24-83c6-d2e3200ec556"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-555ca82e-4f73-4a24-83c6-d2e3200ec556"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-555ca82e-4f73-4a24-83c6-d2e3200ec556"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-555ca82e-4f73-4a24-83c6-d2e3200ec556"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-555ca82e-4f73-4a24-83c6-d2e3200ec556"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-555ca82e-4f73-4a24-83c6-d2e3200ec556"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

#s-c6ab0267-610a-40a1-84c1-009fa31e6421 {
  padding-top: 10px;
padding-left: 28px;
padding-bottom: 10px;
padding-right: 28px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 4px;
background-color: rgba(118, 185, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-c6ab0267-610a-40a1-84c1-009fa31e6421:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-c6ab0267-610a-40a1-84c1-009fa31e6421:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-c6ab0267-610a-40a1-84c1-009fa31e6421-root {
    text-align: left;
  }


#s-c6ab0267-610a-40a1-84c1-009fa31e6421.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c6ab0267-610a-40a1-84c1-009fa31e6421-root {
    text-align: left;
  }


#s-c6ab0267-610a-40a1-84c1-009fa31e6421.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c6ab0267-610a-40a1-84c1-009fa31e6421-root {
    text-align: left;
  }


#s-c6ab0267-610a-40a1-84c1-009fa31e6421.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c6ab0267-610a-40a1-84c1-009fa31e6421-root {
    text-align: left;
  }


#s-c6ab0267-610a-40a1-84c1-009fa31e6421.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c6ab0267-610a-40a1-84c1-009fa31e6421-root {
    text-align: left;
  }


#s-c6ab0267-610a-40a1-84c1-009fa31e6421.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-f6d070aa-4e1c-4ad9-84be-0e8a7a936a03 {
  margin-left: 0%;
padding-top: 10px;
padding-left: 28px;
padding-bottom: 10px;
padding-right: 28px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 4px;
background-color: rgba(118, 185, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-f6d070aa-4e1c-4ad9-84be-0e8a7a936a03:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-f6d070aa-4e1c-4ad9-84be-0e8a7a936a03:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-f6d070aa-4e1c-4ad9-84be-0e8a7a936a03-root {
    text-align: left;
  }


#s-f6d070aa-4e1c-4ad9-84be-0e8a7a936a03.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-f6d070aa-4e1c-4ad9-84be-0e8a7a936a03-root {
    text-align: left;
  }


#s-f6d070aa-4e1c-4ad9-84be-0e8a7a936a03.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f6d070aa-4e1c-4ad9-84be-0e8a7a936a03-root {
    text-align: left;
  }


#s-f6d070aa-4e1c-4ad9-84be-0e8a7a936a03.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f6d070aa-4e1c-4ad9-84be-0e8a7a936a03-root {
    text-align: left;
  }


#s-f6d070aa-4e1c-4ad9-84be-0e8a7a936a03.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-f6d070aa-4e1c-4ad9-84be-0e8a7a936a03-root {
    text-align: left;
  }


#s-f6d070aa-4e1c-4ad9-84be-0e8a7a936a03.shg-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
.shg-hr-wrapper {
  padding: 30px 0;
}

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

#s-50b74fe9-5568-43a1-a4f2-7eaa5f2c836a {
  margin-left: 2%;
margin-right: 2%;
padding-top: 10px;
}

#s-50b74fe9-5568-43a1-a4f2-7eaa5f2c836a hr {
  border-top: 1px solid rgba(157, 157, 157, 1);
}

#s-d0d1a4c1-5cd4-406f-9772-e0cca19f4fda {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-bottom: 20px;
border-top-width: 0px;
border-left-width: 2px;
border-bottom-width: 0px;
border-right-width: 2px;
border-color: rgba(0, 0, 0, 1);
border-style: solid;
max-width: 1000px;
}

@media (min-width: 0px) {
[id="s-d0d1a4c1-5cd4-406f-9772-e0cca19f4fda"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d0d1a4c1-5cd4-406f-9772-e0cca19f4fda"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d0d1a4c1-5cd4-406f-9772-e0cca19f4fda"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d0d1a4c1-5cd4-406f-9772-e0cca19f4fda"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-8ef04f1d-578b-4170-8c31-5aa07025e52c {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 2px;
border-color: rgba(157, 157, 157, 1);
border-style: solid;
min-height: 50px;
}








#s-8ef04f1d-578b-4170-8c31-5aa07025e52c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8ef04f1d-578b-4170-8c31-5aa07025e52c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ac96c1ac-7ec6-4fc3-affe-566f8fe2e135 {
  padding-top: 10px;
padding-bottom: 10px;
padding-right: 60px;
text-align: right;
}

#s-ac96c1ac-7ec6-4fc3-affe-566f8fe2e135 .shogun-heading-component h1 {
  color: rgba(118, 185, 0, 1);
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: right;
}


#s-ac96c1ac-7ec6-4fc3-affe-566f8fe2e135 .shogun-heading-component h1 a {
  color: rgba(118, 185, 0, 1);
}


#s-3e277a8a-2fc4-4245-a88d-23894b782f43 {
  min-height: 50px;
}








#s-3e277a8a-2fc4-4245-a88d-23894b782f43 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3e277a8a-2fc4-4245-a88d-23894b782f43.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cdb30b83-f0bc-4dff-85a9-b604606d066e {
  padding-top: 10px;
padding-left: 60px;
padding-bottom: 10px;
text-align: left;
}

#s-cdb30b83-f0bc-4dff-85a9-b604606d066e .shogun-heading-component h1 {
  color: rgba(118, 185, 0, 1);
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}


#s-cdb30b83-f0bc-4dff-85a9-b604606d066e .shogun-heading-component h1 a {
  color: rgba(118, 185, 0, 1);
}


#s-1ec576d7-e0b5-4ec5-bbc2-78f09ef4cd79 {
  margin-left: auto;
margin-right: auto;
max-width: 1350px;
aspect-ratio: 1350/198;
text-align: center;
}





  #s-1ec576d7-e0b5-4ec5-bbc2-78f09ef4cd79 img.shogun-image,
  #s-1ec576d7-e0b5-4ec5-bbc2-78f09ef4cd79 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-1ec576d7-e0b5-4ec5-bbc2-78f09ef4cd79 {
    width: 100%;
    height: auto;
  }



  #s-1ec576d7-e0b5-4ec5-bbc2-78f09ef4cd79 img.shogun-image {
    

    
    
    
  }


#s-1ec576d7-e0b5-4ec5-bbc2-78f09ef4cd79 .shogun-image-content {
  
    align-items: center;
  
}

#s-4d2bf1bd-0672-4630-aee5-445dfca67f10 {
  margin-left: auto;
margin-right: auto;
max-width: 1000px;
}

#s-2fb7c815-ad86-423b-9bfc-4a5646a67a45 {
  margin-bottom: -52px;
padding-top: 0px;
padding-bottom: 30px;
min-height: 50px;
background-color: rgba(44, 44, 44, 1);
}
@media (min-width: 1200px){#s-2fb7c815-ad86-423b-9bfc-4a5646a67a45 {
  
}
}@media (min-width: 1200px){#s-2fb7c815-ad86-423b-9bfc-4a5646a67a45, #wrap-s-2fb7c815-ad86-423b-9bfc-4a5646a67a45 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2fb7c815-ad86-423b-9bfc-4a5646a67a45 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2fb7c815-ad86-423b-9bfc-4a5646a67a45, #wrap-s-2fb7c815-ad86-423b-9bfc-4a5646a67a45 { display: none !important; }}@media (max-width: 767px){#s-2fb7c815-ad86-423b-9bfc-4a5646a67a45 {
  
}
}







#s-2fb7c815-ad86-423b-9bfc-4a5646a67a45 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2fb7c815-ad86-423b-9bfc-4a5646a67a45.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a82889dd-33ad-4614-aa12-915aef17e306 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 640px;
background-color: rgba(0, 0, 0, 1);
}








#s-a82889dd-33ad-4614-aa12-915aef17e306 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a82889dd-33ad-4614-aa12-915aef17e306.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5ed9d82f-bd96-4310-84cc-21b681fc81e1 {
  max-width: 640px;
aspect-ratio: 640/550;
text-align: center;
}





  #s-5ed9d82f-bd96-4310-84cc-21b681fc81e1 img.shogun-image,
  #s-5ed9d82f-bd96-4310-84cc-21b681fc81e1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-5ed9d82f-bd96-4310-84cc-21b681fc81e1 {
    width: 100%;
    height: auto;
  }



  #s-5ed9d82f-bd96-4310-84cc-21b681fc81e1 img.shogun-image {
    

    
    
    
  }


#s-5ed9d82f-bd96-4310-84cc-21b681fc81e1 .shogun-image-content {
  
    align-items: center;
  
}

#s-856b0d88-b08a-479c-ae17-cabe2cd17019 {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-left: 24px;
padding-bottom: 10px;
padding-right: 24px;
min-height: 50px;
}








#s-856b0d88-b08a-479c-ae17-cabe2cd17019 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-856b0d88-b08a-479c-ae17-cabe2cd17019.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8b2d2242-11ff-4fb8-9c10-2938537b3894 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-8b2d2242-11ff-4fb8-9c10-2938537b3894 .shogun-heading-component h1 {
  color: rgba(254, 254, 254, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 36px;
  line-height: 1.4em;
  
  text-align: left;
}



#s-c5d5932b-8cb8-444d-bed0-8a3788beb1f5 {
  padding-top: 4px;
padding-bottom: 4px;
text-align: left;
}

#s-c5d5932b-8cb8-444d-bed0-8a3788beb1f5 .shogun-heading-component h1 {
  color: rgba(254, 254, 254, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 26px;
  line-height: 1.4em;
  
  text-align: left;
}



#s-5e7c2c4d-4904-4885-81ff-baff79a8cd1f {
  padding-bottom: 16px;
text-align: center;
}







  #s-5e7c2c4d-4904-4885-81ff-baff79a8cd1f img.shogun-image {
    

    
    
    
  }


#s-5e7c2c4d-4904-4885-81ff-baff79a8cd1f .shogun-image-content {
  
    align-items: center;
  
}

#s-1471ef6e-672b-4f62-bb38-f77594e25209 {
  padding-top: 30px;
padding-left: 5%;
padding-bottom: 60px;
padding-right: 5%;
min-height: 50px;
background-color: rgba(20, 20, 20, 1);
}








#s-1471ef6e-672b-4f62-bb38-f77594e25209 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1471ef6e-672b-4f62-bb38-f77594e25209.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-75df4651-23fc-4b87-b5fa-4b1905519794 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-75df4651-23fc-4b87-b5fa-4b1905519794 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 30px;
  
  
  
}



#s-acbb4c47-086a-402f-95b2-ce3a43490f77 {
  padding-bottom: 30px;
}

#s-d1844a37-631e-4086-938e-a79cac64356e {
  margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-left: 20px;
padding-bottom: 0px;
padding-right: 24px;
min-height: 50px;
}








#s-d1844a37-631e-4086-938e-a79cac64356e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d1844a37-631e-4086-938e-a79cac64356e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-596f5541-8d37-4c85-a057-0760aad67282 {
  padding-top: 10px;
padding-bottom: 20px;
text-align: center;
}

#s-596f5541-8d37-4c85-a057-0760aad67282 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: center;
}



#s-acabf159-95f2-46d0-a948-b6c7b9384c64 {
  box-shadow:0px 0px 16px 6px ;
margin-top: 20px;
margin-left: auto;
margin-bottom: 40px;
margin-right: auto;
padding-top: 15px;
padding-left: 10px;
padding-bottom: 20px;
padding-right: 10px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(157, 157, 157, 1);
border-style: solid;
border-radius: 4px;
min-height: 50px;
max-width: 450px;
background-color: rgba(20, 20, 20, 0);
}








#s-acabf159-95f2-46d0-a948-b6c7b9384c64 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-acabf159-95f2-46d0-a948-b6c7b9384c64.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8d0f1bff-2780-42e1-b7b5-3cdc9fde8fad {
  margin-top: -40px;
margin-left: 0px;
margin-bottom: -42px;
margin-right: auto;
max-width: 300px;
text-align: center;
}







  #s-8d0f1bff-2780-42e1-b7b5-3cdc9fde8fad img.shogun-image {
    

    
    
    
  }


#s-8d0f1bff-2780-42e1-b7b5-3cdc9fde8fad .shogun-image-content {
  
    align-items: center;
  
}

#s-c90c52aa-19b2-4037-8e27-cdcea7242db4 {
  margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 2px;
text-align: left;
}

#s-c90c52aa-19b2-4037-8e27-cdcea7242db4 .shogun-heading-component h1 {
  color: rgba(118, 185, 0, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}



#s-4e56f68d-069c-4043-a797-b189ec77d04c {
  margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-4e56f68d-069c-4043-a797-b189ec77d04c .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 40px;
  
  
  text-align: left;
}



#s-0f9ed7fe-e1d6-42d5-bf7a-df67353cb2a4 {
  padding-bottom: 0px;
text-align: left;
}

#s-b15c893a-8fad-4f3c-956a-b4c260e888f6 {
  padding-bottom: 10px;
text-align: left;
}

@media (min-width: 0px) {
[id="s-5232e4c0-6c52-46bf-86c4-66b9bc903e74"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-5232e4c0-6c52-46bf-86c4-66b9bc903e74"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-5232e4c0-6c52-46bf-86c4-66b9bc903e74"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-5232e4c0-6c52-46bf-86c4-66b9bc903e74"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-5232e4c0-6c52-46bf-86c4-66b9bc903e74"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-5232e4c0-6c52-46bf-86c4-66b9bc903e74"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-5232e4c0-6c52-46bf-86c4-66b9bc903e74"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

#s-b113eeaf-8d70-4f20-b485-b66283a45ca2 {
  padding-top: 10px;
padding-left: 28px;
padding-bottom: 10px;
padding-right: 28px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 4px;
background-color: rgba(118, 185, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-b113eeaf-8d70-4f20-b485-b66283a45ca2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-b113eeaf-8d70-4f20-b485-b66283a45ca2:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-b113eeaf-8d70-4f20-b485-b66283a45ca2-root {
    text-align: left;
  }


#s-b113eeaf-8d70-4f20-b485-b66283a45ca2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b113eeaf-8d70-4f20-b485-b66283a45ca2-root {
    text-align: left;
  }


#s-b113eeaf-8d70-4f20-b485-b66283a45ca2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b113eeaf-8d70-4f20-b485-b66283a45ca2-root {
    text-align: left;
  }


#s-b113eeaf-8d70-4f20-b485-b66283a45ca2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b113eeaf-8d70-4f20-b485-b66283a45ca2-root {
    text-align: left;
  }


#s-b113eeaf-8d70-4f20-b485-b66283a45ca2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b113eeaf-8d70-4f20-b485-b66283a45ca2-root {
    text-align: left;
  }


#s-b113eeaf-8d70-4f20-b485-b66283a45ca2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-554a6de7-6a12-426f-ba39-d38f686c2476 {
  margin-left: 0%;
padding-top: 8px;
padding-left: 28px;
padding-bottom: 8px;
padding-right: 28px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 4px;
background-color: rgba(118, 185, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-554a6de7-6a12-426f-ba39-d38f686c2476:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-554a6de7-6a12-426f-ba39-d38f686c2476:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-554a6de7-6a12-426f-ba39-d38f686c2476-root {
    text-align: left;
  }


#s-554a6de7-6a12-426f-ba39-d38f686c2476.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-554a6de7-6a12-426f-ba39-d38f686c2476-root {
    text-align: left;
  }


#s-554a6de7-6a12-426f-ba39-d38f686c2476.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-554a6de7-6a12-426f-ba39-d38f686c2476-root {
    text-align: left;
  }


#s-554a6de7-6a12-426f-ba39-d38f686c2476.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-554a6de7-6a12-426f-ba39-d38f686c2476-root {
    text-align: left;
  }


#s-554a6de7-6a12-426f-ba39-d38f686c2476.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-554a6de7-6a12-426f-ba39-d38f686c2476-root {
    text-align: left;
  }


#s-554a6de7-6a12-426f-ba39-d38f686c2476.shg-btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-388faf1e-e52a-476b-a233-6ae4413694a8 {
  box-shadow:0px 0px 0px 0px rgba(255, 255, 255, 0.2);
margin-left: auto;
margin-right: auto;
padding-top: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
max-width: 1000px;
text-align: center;
}







  #s-388faf1e-e52a-476b-a233-6ae4413694a8 img.shogun-image {
    

    
    
    
  }


#s-388faf1e-e52a-476b-a233-6ae4413694a8 .shogun-image-content {
  
    align-items: center;
  
}

#s-a69c60a2-e06e-4cfb-af2a-35d86d10f41f {
  box-shadow:0px 0px 16px 6px ;
margin-top: 20px;
margin-left: auto;
margin-bottom: 16px;
margin-right: auto;
padding-top: 15px;
padding-left: 10px;
padding-bottom: 20px;
padding-right: 10px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(157, 157, 157, 1);
border-style: solid;
border-radius: 4px;
min-height: 50px;
max-width: 450px;
background-color: rgba(20, 20, 20, 0);
}








#s-a69c60a2-e06e-4cfb-af2a-35d86d10f41f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a69c60a2-e06e-4cfb-af2a-35d86d10f41f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-463290b5-55d1-4ef3-b7f6-d363d1c4e191 {
  margin-left: 0px;
margin-right: auto;
max-width: 300px;
text-align: center;
}







  #s-463290b5-55d1-4ef3-b7f6-d363d1c4e191 img.shogun-image {
    

    
    
    
  }


#s-463290b5-55d1-4ef3-b7f6-d363d1c4e191 .shogun-image-content {
  
    align-items: center;
  
}

#s-8a0153be-c1c2-4baf-8a6c-fa2d215b5661 {
  margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-8a0153be-c1c2-4baf-8a6c-fa2d215b5661 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 38px;
  
  
  text-align: left;
}



#s-6afb4e58-2bce-48aa-ba44-a7616942bd91 {
  padding-bottom: 20px;
text-align: left;
}

@media (min-width: 0px) {
[id="s-d54f8951-d9e2-4261-8c30-61f81cba0a13"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-d54f8951-d9e2-4261-8c30-61f81cba0a13"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-d54f8951-d9e2-4261-8c30-61f81cba0a13"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d54f8951-d9e2-4261-8c30-61f81cba0a13"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-d54f8951-d9e2-4261-8c30-61f81cba0a13"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d54f8951-d9e2-4261-8c30-61f81cba0a13"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-d54f8951-d9e2-4261-8c30-61f81cba0a13"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

#s-857544eb-cbf8-4341-b300-2a0a60e58a81 {
  padding-top: 10px;
padding-left: 28px;
padding-bottom: 10px;
padding-right: 28px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 4px;
background-color: rgba(118, 185, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-857544eb-cbf8-4341-b300-2a0a60e58a81:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-857544eb-cbf8-4341-b300-2a0a60e58a81:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-857544eb-cbf8-4341-b300-2a0a60e58a81-root {
    text-align: left;
  }


#s-857544eb-cbf8-4341-b300-2a0a60e58a81.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-857544eb-cbf8-4341-b300-2a0a60e58a81-root {
    text-align: left;
  }


#s-857544eb-cbf8-4341-b300-2a0a60e58a81.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-857544eb-cbf8-4341-b300-2a0a60e58a81-root {
    text-align: left;
  }


#s-857544eb-cbf8-4341-b300-2a0a60e58a81.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-857544eb-cbf8-4341-b300-2a0a60e58a81-root {
    text-align: left;
  }


#s-857544eb-cbf8-4341-b300-2a0a60e58a81.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-857544eb-cbf8-4341-b300-2a0a60e58a81-root {
    text-align: left;
  }


#s-857544eb-cbf8-4341-b300-2a0a60e58a81.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-66f50da7-21b8-4ed3-955a-f420fe660e08 {
  margin-left: 0%;
padding-top: 10px;
padding-left: 28px;
padding-bottom: 10px;
padding-right: 28px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 4px;
background-color: rgba(118, 185, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-66f50da7-21b8-4ed3-955a-f420fe660e08:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-66f50da7-21b8-4ed3-955a-f420fe660e08:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-66f50da7-21b8-4ed3-955a-f420fe660e08-root {
    text-align: left;
  }


#s-66f50da7-21b8-4ed3-955a-f420fe660e08.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-66f50da7-21b8-4ed3-955a-f420fe660e08-root {
    text-align: left;
  }


#s-66f50da7-21b8-4ed3-955a-f420fe660e08.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-66f50da7-21b8-4ed3-955a-f420fe660e08-root {
    text-align: left;
  }


#s-66f50da7-21b8-4ed3-955a-f420fe660e08.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-66f50da7-21b8-4ed3-955a-f420fe660e08-root {
    text-align: left;
  }


#s-66f50da7-21b8-4ed3-955a-f420fe660e08.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-66f50da7-21b8-4ed3-955a-f420fe660e08-root {
    text-align: left;
  }


#s-66f50da7-21b8-4ed3-955a-f420fe660e08.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-289bf937-2dff-4c89-8d30-333e4d3367bb {
  box-shadow:0px 0px 16px 6px ;
margin-top: 20px;
margin-left: auto;
margin-bottom: 16px;
margin-right: auto;
padding-top: 15px;
padding-left: 10px;
padding-bottom: 20px;
padding-right: 10px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(157, 157, 157, 1);
border-style: solid;
border-radius: 4px;
min-height: 50px;
max-width: 450px;
background-color: rgba(20, 20, 20, 0);
}








#s-289bf937-2dff-4c89-8d30-333e4d3367bb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-289bf937-2dff-4c89-8d30-333e4d3367bb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e2c3243e-3f1d-4525-a0fc-118ed6499eeb {
  margin-left: 0px;
margin-right: auto;
max-width: 300px;
text-align: center;
}







  #s-e2c3243e-3f1d-4525-a0fc-118ed6499eeb img.shogun-image {
    

    
    
    
  }


#s-e2c3243e-3f1d-4525-a0fc-118ed6499eeb .shogun-image-content {
  
    align-items: center;
  
}

#s-05c1dfb6-1ffc-4aa9-a4b2-a18fce5caea8 {
  margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-05c1dfb6-1ffc-4aa9-a4b2-a18fce5caea8 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 38px;
  
  
  text-align: left;
}



#s-8573960d-7864-4276-8bb3-8516e3053ba7 {
  padding-bottom: 20px;
text-align: left;
}

@media (min-width: 0px) {
[id="s-f6f3cbf2-9632-4ac5-b321-e9c658f2a68e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-f6f3cbf2-9632-4ac5-b321-e9c658f2a68e"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-f6f3cbf2-9632-4ac5-b321-e9c658f2a68e"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-f6f3cbf2-9632-4ac5-b321-e9c658f2a68e"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-f6f3cbf2-9632-4ac5-b321-e9c658f2a68e"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-f6f3cbf2-9632-4ac5-b321-e9c658f2a68e"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-f6f3cbf2-9632-4ac5-b321-e9c658f2a68e"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

#s-fcd667a8-5c53-4ed2-8e79-11e1196558e3 {
  padding-top: 10px;
padding-left: 28px;
padding-bottom: 10px;
padding-right: 28px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 4px;
background-color: rgba(118, 185, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-fcd667a8-5c53-4ed2-8e79-11e1196558e3:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-fcd667a8-5c53-4ed2-8e79-11e1196558e3:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-fcd667a8-5c53-4ed2-8e79-11e1196558e3-root {
    text-align: left;
  }


#s-fcd667a8-5c53-4ed2-8e79-11e1196558e3.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-fcd667a8-5c53-4ed2-8e79-11e1196558e3-root {
    text-align: left;
  }


#s-fcd667a8-5c53-4ed2-8e79-11e1196558e3.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-fcd667a8-5c53-4ed2-8e79-11e1196558e3-root {
    text-align: left;
  }


#s-fcd667a8-5c53-4ed2-8e79-11e1196558e3.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-fcd667a8-5c53-4ed2-8e79-11e1196558e3-root {
    text-align: left;
  }


#s-fcd667a8-5c53-4ed2-8e79-11e1196558e3.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-fcd667a8-5c53-4ed2-8e79-11e1196558e3-root {
    text-align: left;
  }


#s-fcd667a8-5c53-4ed2-8e79-11e1196558e3.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-80faf853-54a5-4acb-96d2-6e84ef86b8f2 {
  margin-left: 0%;
padding-top: 10px;
padding-left: 28px;
padding-bottom: 10px;
padding-right: 28px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 4px;
background-color: rgba(118, 185, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-80faf853-54a5-4acb-96d2-6e84ef86b8f2:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-80faf853-54a5-4acb-96d2-6e84ef86b8f2:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-80faf853-54a5-4acb-96d2-6e84ef86b8f2-root {
    text-align: left;
  }


#s-80faf853-54a5-4acb-96d2-6e84ef86b8f2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-80faf853-54a5-4acb-96d2-6e84ef86b8f2-root {
    text-align: left;
  }


#s-80faf853-54a5-4acb-96d2-6e84ef86b8f2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-80faf853-54a5-4acb-96d2-6e84ef86b8f2-root {
    text-align: left;
  }


#s-80faf853-54a5-4acb-96d2-6e84ef86b8f2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-80faf853-54a5-4acb-96d2-6e84ef86b8f2-root {
    text-align: left;
  }


#s-80faf853-54a5-4acb-96d2-6e84ef86b8f2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-80faf853-54a5-4acb-96d2-6e84ef86b8f2-root {
    text-align: left;
  }


#s-80faf853-54a5-4acb-96d2-6e84ef86b8f2.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-fc24045f-cb40-4c17-b280-595cb3a12e9d {
  box-shadow:0px 0px 16px 6px ;
margin-top: 16px;
margin-left: auto;
margin-bottom: 26px;
margin-right: auto;
padding-top: 15px;
padding-left: 10px;
padding-bottom: 20px;
padding-right: 10px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(157, 157, 157, 1);
border-style: solid;
border-radius: 4px;
min-height: 50px;
max-width: 450px;
background-color: rgba(0, 0, 0, 0.7);
}








#s-fc24045f-cb40-4c17-b280-595cb3a12e9d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fc24045f-cb40-4c17-b280-595cb3a12e9d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ea44b736-b42e-4bf9-9c08-ed6a2ed2cb93 {
  margin-left: 0px;
margin-right: auto;
max-width: 300px;
text-align: center;
}







  #s-ea44b736-b42e-4bf9-9c08-ed6a2ed2cb93 img.shogun-image {
    

    
    
    
  }


#s-ea44b736-b42e-4bf9-9c08-ed6a2ed2cb93 .shogun-image-content {
  
    align-items: center;
  
}

#s-b932eece-d852-4054-b468-6a747c51e61d {
  margin-bottom: -10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-b932eece-d852-4054-b468-6a747c51e61d .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 38px;
  
  
  text-align: left;
}



#s-e90a807b-c0f6-461d-950e-bdbb62c31449 {
  padding-bottom: 10px;
text-align: left;
}

@media (min-width: 0px) {
[id="s-abf62d26-7490-4d8c-b8e0-fde333495e69"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-abf62d26-7490-4d8c-b8e0-fde333495e69"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-abf62d26-7490-4d8c-b8e0-fde333495e69"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-abf62d26-7490-4d8c-b8e0-fde333495e69"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-abf62d26-7490-4d8c-b8e0-fde333495e69"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-abf62d26-7490-4d8c-b8e0-fde333495e69"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-abf62d26-7490-4d8c-b8e0-fde333495e69"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

}

#s-63073fab-f443-48cf-bbf8-f07b1c086f46 {
  padding-top: 10px;
padding-left: 28px;
padding-bottom: 10px;
padding-right: 28px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 4px;
background-color: rgba(118, 185, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-63073fab-f443-48cf-bbf8-f07b1c086f46:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-63073fab-f443-48cf-bbf8-f07b1c086f46:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-63073fab-f443-48cf-bbf8-f07b1c086f46-root {
    text-align: left;
  }


#s-63073fab-f443-48cf-bbf8-f07b1c086f46.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-63073fab-f443-48cf-bbf8-f07b1c086f46-root {
    text-align: left;
  }


#s-63073fab-f443-48cf-bbf8-f07b1c086f46.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-63073fab-f443-48cf-bbf8-f07b1c086f46-root {
    text-align: left;
  }


#s-63073fab-f443-48cf-bbf8-f07b1c086f46.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-63073fab-f443-48cf-bbf8-f07b1c086f46-root {
    text-align: left;
  }


#s-63073fab-f443-48cf-bbf8-f07b1c086f46.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-63073fab-f443-48cf-bbf8-f07b1c086f46-root {
    text-align: left;
  }


#s-63073fab-f443-48cf-bbf8-f07b1c086f46.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-daccac62-de19-45ea-ab18-1c8bc3225667 {
  margin-left: 0%;
padding-top: 10px;
padding-left: 28px;
padding-bottom: 10px;
padding-right: 28px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 4px;
background-color: rgba(118, 185, 0, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-daccac62-de19-45ea-ab18-1c8bc3225667:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-daccac62-de19-45ea-ab18-1c8bc3225667:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-daccac62-de19-45ea-ab18-1c8bc3225667-root {
    text-align: left;
  }


#s-daccac62-de19-45ea-ab18-1c8bc3225667.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-daccac62-de19-45ea-ab18-1c8bc3225667-root {
    text-align: left;
  }


#s-daccac62-de19-45ea-ab18-1c8bc3225667.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-daccac62-de19-45ea-ab18-1c8bc3225667-root {
    text-align: left;
  }


#s-daccac62-de19-45ea-ab18-1c8bc3225667.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-daccac62-de19-45ea-ab18-1c8bc3225667-root {
    text-align: left;
  }


#s-daccac62-de19-45ea-ab18-1c8bc3225667.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-daccac62-de19-45ea-ab18-1c8bc3225667-root {
    text-align: left;
  }


#s-daccac62-de19-45ea-ab18-1c8bc3225667.shg-btn {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-2cf945b2-abaa-4bb6-a89e-161d5ec01f11 {
  margin-top: 0px;
margin-left: 16px;
margin-bottom: 0px;
margin-right: 16px;
}

#s-2cf945b2-abaa-4bb6-a89e-161d5ec01f11 hr {
  border-top: 1px solid rgba(157, 157, 157, 1);
}

#s-edcaf94f-fccf-4737-be0f-f075ee27c69d {
  margin-left: auto;
margin-right: auto;
padding-top: 12px;
padding-bottom: 12px;
border-top-width: 0px;
border-left-width: 2px;
border-bottom-width: 0px;
border-right-width: 2px;
border-color: rgba(0, 0, 0, 1);
border-style: solid;
max-width: 1000px;
}

@media (min-width: 0px) {
[id="s-edcaf94f-fccf-4737-be0f-f075ee27c69d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-edcaf94f-fccf-4737-be0f-f075ee27c69d"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-edcaf94f-fccf-4737-be0f-f075ee27c69d"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-edcaf94f-fccf-4737-be0f-f075ee27c69d"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-36979e8f-5bab-4902-9b7f-b0053138d3cd {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 2px;
border-color: rgba(157, 157, 157, 1);
border-style: solid;
min-height: 50px;
}








#s-36979e8f-5bab-4902-9b7f-b0053138d3cd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-36979e8f-5bab-4902-9b7f-b0053138d3cd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-231ccea5-aecf-4075-bce4-722742e71584 {
  padding-top: 12px;
padding-bottom: 14px;
padding-right: 0px;
text-align: center;
}

#s-231ccea5-aecf-4075-bce4-722742e71584 .shogun-heading-component h1 {
  color: rgba(118, 185, 0, 1);
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}


#s-231ccea5-aecf-4075-bce4-722742e71584 .shogun-heading-component h1 a {
  color: rgba(118, 185, 0, 1);
}


#s-99c9a2b9-a4fd-414c-b23f-7c0472bec975 {
  min-height: 50px;
}








#s-99c9a2b9-a4fd-414c-b23f-7c0472bec975 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-99c9a2b9-a4fd-414c-b23f-7c0472bec975.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1b339a74-c9eb-4749-92d4-f99bbafcda30 {
  padding-top: 14px;
padding-left: 0px;
padding-bottom: 14px;
text-align: center;
}

#s-1b339a74-c9eb-4749-92d4-f99bbafcda30 .shogun-heading-component h1 {
  color: rgba(118, 185, 0, 1);
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}


#s-1b339a74-c9eb-4749-92d4-f99bbafcda30 .shogun-heading-component h1 a {
  color: rgba(118, 185, 0, 1);
}


#s-828de9fb-3dac-4bcf-adc4-3c1f03ba16d6 {
  margin-left: auto;
margin-right: auto;
max-width: 640px;
aspect-ratio: 640/451;
text-align: center;
}





  #s-828de9fb-3dac-4bcf-adc4-3c1f03ba16d6 img.shogun-image,
  #s-828de9fb-3dac-4bcf-adc4-3c1f03ba16d6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-828de9fb-3dac-4bcf-adc4-3c1f03ba16d6 {
    width: 100%;
    height: auto;
  }



  #s-828de9fb-3dac-4bcf-adc4-3c1f03ba16d6 img.shogun-image {
    

    
    
    
  }


#s-828de9fb-3dac-4bcf-adc4-3c1f03ba16d6 .shogun-image-content {
  
    align-items: center;
  
}

#s-98814617-1510-4fb2-b2be-2b15847c2265 {
  margin-left: auto;
margin-right: auto;
padding-left: 20px;
padding-right: 20px;
max-width: 1000px;
}

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

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

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

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}
.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-lazyload-bg-image {
  display: none;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}
/* <-- User Content Animations */

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

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

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

.shg-c:before,.shg-c:after{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width: 1024px){.shg-c,.shg-box{background-attachment:scroll !important}}@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape){.shg-box{background-attachment:scroll !important}}#mc_embed_signup .clear{width:auto !important;height:auto !important;visibility:visible !important}.shg-clearfix:after{content:"";display:block;clear:both}.shogun-image{max-width:100%;min-height:inherit;max-height:inherit;display:inline !important;border:0;vertical-align:middle}.shg-fw{margin-left:calc(50% - 50vw);width:100vw}.shg-fw .shg-fw{margin-left:auto;margin-right:auto;width:100%}div[data-shg-lightbox-switch]{cursor:pointer}.shg-lightbox{position:fixed;z-index:999999;left:0;top:0;width:100%;height:100%;overflow:hidden;background-color:#000;background-color:rgba(0,0,0,0.85)}.shg-lightbox.hidden{display:none !important}.shg-lightbox .shg-lightbox-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;text-align:center}.shg-lightbox .shg-lightbox-close{position:absolute;right:0;padding:5px 0;color:#fff;font-size:45px;margin-right:10px;line-height:30px;user-select:none;cursor:pointer;z-index:1}.shg-lightbox .shg-lightbox-image-container{padding:25px}.shg-lightbox .shg-lightbox-image{margin:auto;max-height:90vh;max-width:100%}.shg-lightbox .shg-lightbox-close:hover,.shg-lightbox .shg-lightbox-close:focus{color:#a2a2a2;text-decoration:none;cursor:pointer}.shg-lightbox .shg-lightbox-nav{cursor:pointer;position:absolute;top:50%;width:35px;height:100px;background-size:contain;background-repeat:no-repeat;background-position:center;transform:translate(0%, -50%);z-index:1}.shg-lightbox .shg-lightbox-nav.hidden{display:none !important}.shg-lightbox .shg-lightbox-nav.shg-nav-left{left:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==)}.shg-lightbox .shg-lightbox-nav.shg-nav-right{right:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+)}@media screen and (min-width: 769px){.shg-lightbox .shg-lightbox-image-container{padding:50px}}.shogun-lazyload:not([src]),.shogun-lazyloading:not([src]){opacity:0}.shogun-lazyloaded{opacity:1;transition:opacity 300ms}.shogun-lazyload-bg-image{display:none}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{display:inline-block}[data-animations*="enterviewport"][data-animations*="fadeIn"],[data-animations*="enterviewport"][data-animations*="zoomIn"]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}
