.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-118bd4d2-781f-471e-9ece-20a451ea3054 {
  padding-top: 30px;
padding-left: 4%;
padding-bottom: 30px;
padding-right: 4%;
min-height: 50px;
}








#s-118bd4d2-781f-471e-9ece-20a451ea3054 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-118bd4d2-781f-471e-9ece-20a451ea3054.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c5a20aae-2535-4804-9bd3-a5aaa9580af5 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
min-height: 50px;
max-width: 1280px;
}








#s-c5a20aae-2535-4804-9bd3-a5aaa9580af5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c5a20aae-2535-4804-9bd3-a5aaa9580af5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bd347ebf-9148-4975-bbd7-b7e4aa09fb13 {
  margin-top: 0%;
margin-bottom: 0%;
padding-top: 4%;
padding-bottom: 10%;
min-height: 50px;
}








#s-bd347ebf-9148-4975-bbd7-b7e4aa09fb13 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bd347ebf-9148-4975-bbd7-b7e4aa09fb13.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-87386298-e502-42b5-b0fe-84a20fe4fcea {
  text-align: center;
}
@media (min-width: 1200px){#s-87386298-e502-42b5-b0fe-84a20fe4fcea {
  display: none;
}
#s-87386298-e502-42b5-b0fe-84a20fe4fcea, #wrap-s-87386298-e502-42b5-b0fe-84a20fe4fcea { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-87386298-e502-42b5-b0fe-84a20fe4fcea {
  display: none;
}
#s-87386298-e502-42b5-b0fe-84a20fe4fcea, #wrap-s-87386298-e502-42b5-b0fe-84a20fe4fcea { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-87386298-e502-42b5-b0fe-84a20fe4fcea {
  display: none;
}
#s-87386298-e502-42b5-b0fe-84a20fe4fcea, #wrap-s-87386298-e502-42b5-b0fe-84a20fe4fcea { display: none !important; }}@media (max-width: 767px){#s-87386298-e502-42b5-b0fe-84a20fe4fcea {
  margin-left: auto;
margin-right: auto;
max-width: 70%;
}
}






  #s-87386298-e502-42b5-b0fe-84a20fe4fcea img.shogun-image {
    

    
    
    
  }


#s-87386298-e502-42b5-b0fe-84a20fe4fcea .shogun-image-content {
  
    align-items: 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-dc18cae5-cd6e-41e7-9bba-990d1862081f {
  padding-top: 10px;
padding-bottom: 10px;
max-width: 42em;
text-align: left;
}

#s-dc18cae5-cd6e-41e7-9bba-990d1862081f .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 72px;
  
  
  text-align: left;
}



#s-949806e4-8f69-4e63-8007-fc7c8c8b41c3 {
  margin-top: 3em;
margin-bottom: 2em;
padding-top: 5px;
padding-bottom: 5px;
max-width: 25em;
text-align: left;
}
@media (max-width: 767px){#s-949806e4-8f69-4e63-8007-fc7c8c8b41c3 {
  margin-top: 0em;
margin-bottom: 0em;
}
}
#s-949806e4-8f69-4e63-8007-fc7c8c8b41c3 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 26px;
  
  
  text-align: left;
}



#s-6d752429-5d95-42c2-8374-7d79a4c66f60 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 5px;
padding-bottom: 5px;
max-width: 18em;
text-align: left;
}

#s-6d752429-5d95-42c2-8374-7d79a4c66f60 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-8469f81d-05e9-4b7e-967a-2b0acd5a2374 {
  margin-top: 2em;
margin-bottom: 2em;
}
@media (max-width: 767px){#s-8469f81d-05e9-4b7e-967a-2b0acd5a2374 {
  margin-top: 0em;
margin-bottom: 0em;
}
}
.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-15b41eef-8240-4b2f-a67c-d81c125cc13c {
  margin-top: 10px;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 8px;
max-width: 100%;
background-color: rgba(227, 56, 77, 1);
text-align: left;
text-decoration: none;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-15b41eef-8240-4b2f-a67c-d81c125cc13c:hover {background-color: rgba(233, 73, 93, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-15b41eef-8240-4b2f-a67c-d81c125cc13c:active {background-color: rgba(233, 73, 93, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (max-width: 767px){#s-15b41eef-8240-4b2f-a67c-d81c125cc13c {
  padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 8px;
max-width: 100%;
text-align: center;
text-decoration: none;
}
}

  #s-15b41eef-8240-4b2f-a67c-d81c125cc13c-root {
    text-align: left;
  }


#s-15b41eef-8240-4b2f-a67c-d81c125cc13c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-15b41eef-8240-4b2f-a67c-d81c125cc13c-root {
    text-align: left;
  }


#s-15b41eef-8240-4b2f-a67c-d81c125cc13c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-15b41eef-8240-4b2f-a67c-d81c125cc13c-root {
    text-align: left;
  }


#s-15b41eef-8240-4b2f-a67c-d81c125cc13c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-15b41eef-8240-4b2f-a67c-d81c125cc13c-root {
    text-align: left;
  }


#s-15b41eef-8240-4b2f-a67c-d81c125cc13c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-15b41eef-8240-4b2f-a67c-d81c125cc13c-root {
    text-align: center;
  }


#s-15b41eef-8240-4b2f-a67c-d81c125cc13c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  block ;
}
}
#s-6ecebca5-57c4-472b-8c75-c65ed7ecdbcd {
  text-align: left;
}

.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-31c0ec4d-ea33-4ae4-8724-f0c424f6a4d1 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
}
@media (max-width: 767px){#s-31c0ec4d-ea33-4ae4-8724-f0c424f6a4d1 {
  display: none;
}
#s-31c0ec4d-ea33-4ae4-8724-f0c424f6a4d1, #wrap-s-31c0ec4d-ea33-4ae4-8724-f0c424f6a4d1 { display: none !important; }}
@media (min-width: 0px) {
[id="s-31c0ec4d-ea33-4ae4-8724-f0c424f6a4d1"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 30.0px);
}

}

@media (min-width: 768px) {
[id="s-31c0ec4d-ea33-4ae4-8724-f0c424f6a4d1"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 45.0px);
}

}

@media (min-width: 992px) {
[id="s-31c0ec4d-ea33-4ae4-8724-f0c424f6a4d1"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 45.0px);
}

}

@media (min-width: 1200px) {
[id="s-31c0ec4d-ea33-4ae4-8724-f0c424f6a4d1"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 45.0px);
}

}

#s-bb97162d-35ce-403a-a6d4-770b268a8499 {
  min-height: 50px;
}
@media (max-width: 767px){#s-bb97162d-35ce-403a-a6d4-770b268a8499 {
  margin-bottom: 20px;
}
}
#s-bb97162d-35ce-403a-a6d4-770b268a8499 {
  background-image: url();
}








#s-bb97162d-35ce-403a-a6d4-770b268a8499 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bb97162d-35ce-403a-a6d4-770b268a8499.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3917198e-1c0e-4e18-b7f3-8856da8fe3e0 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-f759f680-ba6e-411e-bb31-403b7e2e99af {
  margin-top: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-f759f680-ba6e-411e-bb31-403b7e2e99af .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}



#s-1c2388bc-074e-40b0-8e7c-d1daaeb35083 {
  margin-top: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-1c2388bc-074e-40b0-8e7c-d1daaeb35083 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: center;
}



#s-6fc195cb-d691-4d5c-b4d2-481117b4b6b4 {
  min-height: 50px;
}
@media (max-width: 767px){#s-6fc195cb-d691-4d5c-b4d2-481117b4b6b4 {
  margin-bottom: 20px;
}
}
#s-6fc195cb-d691-4d5c-b4d2-481117b4b6b4 {
  background-image: url();
}








#s-6fc195cb-d691-4d5c-b4d2-481117b4b6b4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6fc195cb-d691-4d5c-b4d2-481117b4b6b4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d5279627-3976-49d8-8f9b-41c0afbdb734 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-7961db05-f1ae-458a-8c4e-f8862b321848 {
  margin-top: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-7961db05-f1ae-458a-8c4e-f8862b321848 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}



#s-162d1a37-a5c8-4ac9-a502-dc2ecedf3163 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
max-width: 11em;
text-align: center;
}

#s-162d1a37-a5c8-4ac9-a502-dc2ecedf3163 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: center;
}



#s-ba15ee35-95ac-4b8e-822e-9b2cef45ccf6 {
  min-height: 50px;
}
@media (max-width: 767px){#s-ba15ee35-95ac-4b8e-822e-9b2cef45ccf6 {
  margin-bottom: 20px;
}
}
#s-ba15ee35-95ac-4b8e-822e-9b2cef45ccf6 {
  background-image: url();
}








#s-ba15ee35-95ac-4b8e-822e-9b2cef45ccf6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ba15ee35-95ac-4b8e-822e-9b2cef45ccf6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f18194f1-df84-45da-b141-ccb31b0c45d1 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-5b6c3289-5aa6-4032-b558-23271ec9ca4f {
  margin-top: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-5b6c3289-5aa6-4032-b558-23271ec9ca4f .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}



#s-f22a5957-59cb-421b-ba23-1fdc9218ac14 {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
max-width: 12em;
text-align: center;
}

#s-f22a5957-59cb-421b-ba23-1fdc9218ac14 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: center;
}



#s-e8621485-a975-4b80-a6c6-b92becf76aaa {
  min-height: 50px;
}
@media (max-width: 767px){#s-e8621485-a975-4b80-a6c6-b92becf76aaa {
  margin-bottom: 20px;
}
}
#s-e8621485-a975-4b80-a6c6-b92becf76aaa {
  background-image: url();
}








#s-e8621485-a975-4b80-a6c6-b92becf76aaa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e8621485-a975-4b80-a6c6-b92becf76aaa.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f10938a7-8943-44d4-b186-3fb8d65bd962 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-44a8c821-d1bf-47ca-8cb2-a6b5ef78e7c4 {
  margin-top: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-44a8c821-d1bf-47ca-8cb2-a6b5ef78e7c4 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}



#s-1d8ede13-9512-40e2-8cba-220f71d2abff {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
max-width: 10em;
text-align: center;
}

#s-1d8ede13-9512-40e2-8cba-220f71d2abff .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: center;
}



#s-c658b4e2-10ae-463b-86b5-f0ad684e4516 {
  text-align: center;
}
@media (min-width: 1200px){#s-c658b4e2-10ae-463b-86b5-f0ad684e4516 {
  display: none;
}
#s-c658b4e2-10ae-463b-86b5-f0ad684e4516, #wrap-s-c658b4e2-10ae-463b-86b5-f0ad684e4516 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c658b4e2-10ae-463b-86b5-f0ad684e4516 {
  display: none;
}
#s-c658b4e2-10ae-463b-86b5-f0ad684e4516, #wrap-s-c658b4e2-10ae-463b-86b5-f0ad684e4516 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c658b4e2-10ae-463b-86b5-f0ad684e4516 {
  display: none;
}
#s-c658b4e2-10ae-463b-86b5-f0ad684e4516, #wrap-s-c658b4e2-10ae-463b-86b5-f0ad684e4516 { display: none !important; }}






  #s-c658b4e2-10ae-463b-86b5-f0ad684e4516 img.shogun-image {
    

    
    
    
  }


#s-c658b4e2-10ae-463b-86b5-f0ad684e4516 .shogun-image-content {
  
    align-items: center;
  
}

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

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

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

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

#s-146e618f-5c64-411a-81cc-0b55dd962630 {
  margin-top: 30px;
margin-bottom: 30px;
}

#s-ea66eaa5-e115-4ea6-8675-d5d761436fbb {
  padding-top: 30px;
padding-left: 4%;
padding-bottom: 30px;
padding-right: 4%;
min-height: 50px;
}

#s-ea66eaa5-e115-4ea6-8675-d5d761436fbb {
  background-image: url();
}








#s-ea66eaa5-e115-4ea6-8675-d5d761436fbb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ea66eaa5-e115-4ea6-8675-d5d761436fbb.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-bd33046b-e9e9-408e-8a6b-329c3f612bb6 {
  margin-top: 14%;
margin-left: auto;
margin-bottom: 14%;
margin-right: auto;
min-height: 50px;
max-width: 1280px;
}








#s-bd33046b-e9e9-408e-8a6b-329c3f612bb6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bd33046b-e9e9-408e-8a6b-329c3f612bb6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6f828250-a8bc-400b-8794-d9f9076b3723 {
  margin-bottom: 2em;
max-width: 640px;
}

@media (min-width: 0px) {
[id="s-6f828250-a8bc-400b-8794-d9f9076b3723"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-6f828250-a8bc-400b-8794-d9f9076b3723"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-6f828250-a8bc-400b-8794-d9f9076b3723"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6f828250-a8bc-400b-8794-d9f9076b3723"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-6f828250-a8bc-400b-8794-d9f9076b3723"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6f828250-a8bc-400b-8794-d9f9076b3723"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-6f828250-a8bc-400b-8794-d9f9076b3723"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

#s-a3d47ab3-4d5b-4fe5-a602-2a4032ad667c {
  margin-left: auto;
margin-right: auto;
max-width: 66px;
text-align: center;
}

#s-07c96664-63fb-412b-848e-d95a502fd694 {
  margin-top: 0em;
margin-bottom: 0em;
padding-top: 5px;
padding-bottom: 5px;
max-width: 27em;
text-align: left;
}

#s-07c96664-63fb-412b-848e-d95a502fd694 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 42px;
  
  
  text-align: left;
}



#s-e2826ca6-e6de-43f0-a1c8-d2b832aecadf {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 5px;
padding-bottom: 5px;
max-width: 36em;
text-align: left;
}

#s-e2826ca6-e6de-43f0-a1c8-d2b832aecadf .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}



#s-d9520627-64ab-438b-af30-328ca5862f3c {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 5px;
padding-bottom: 5px;
max-width: 35em;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-d9520627-64ab-438b-af30-328ca5862f3c {
  max-width: 26em;
}
}
#s-d9520627-64ab-438b-af30-328ca5862f3c .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}


@media (min-width: 768px) and (max-width: 991px){#s-d9520627-64ab-438b-af30-328ca5862f3c .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}


}
#s-b4e44512-a2ac-4c23-94a8-8177d9a340c4 {
  padding-top: 30px;
padding-left: 4%;
padding-bottom: 30px;
padding-right: 4%;
min-height: 50px;
}

#s-b4e44512-a2ac-4c23-94a8-8177d9a340c4 {
  background-image: url();
}








#s-b4e44512-a2ac-4c23-94a8-8177d9a340c4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b4e44512-a2ac-4c23-94a8-8177d9a340c4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f2a61d21-87d6-4187-b3bc-024f3c262d59 {
  margin-top: 14%;
margin-left: auto;
margin-bottom: 14%;
margin-right: auto;
min-height: 50px;
max-width: 1280px;
}








#s-f2a61d21-87d6-4187-b3bc-024f3c262d59 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f2a61d21-87d6-4187-b3bc-024f3c262d59.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-564ac94e-08ea-43d5-b03b-520424443d57 {
  margin-left: auto;
min-height: 50px;
max-width: 640px;
}
@media (min-width: 768px) and (max-width: 991px){#s-564ac94e-08ea-43d5-b03b-520424443d57 {
  max-width: 400px;
}
}







#s-564ac94e-08ea-43d5-b03b-520424443d57 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-564ac94e-08ea-43d5-b03b-520424443d57.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f3ea5229-7b08-4e86-a324-d1c8c06cb6eb {
  margin-bottom: 2em;
max-width: 640px;
}

@media (min-width: 0px) {
[id="s-f3ea5229-7b08-4e86-a324-d1c8c06cb6eb"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-f3ea5229-7b08-4e86-a324-d1c8c06cb6eb"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-f3ea5229-7b08-4e86-a324-d1c8c06cb6eb"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-f3ea5229-7b08-4e86-a324-d1c8c06cb6eb"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-f3ea5229-7b08-4e86-a324-d1c8c06cb6eb"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-f3ea5229-7b08-4e86-a324-d1c8c06cb6eb"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-f3ea5229-7b08-4e86-a324-d1c8c06cb6eb"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

#s-46550a40-92d8-4262-af8a-40b07a821f30 {
  margin-left: auto;
margin-right: auto;
max-width: 66px;
text-align: center;
}

#s-709f39f7-a45e-4ecb-82a6-2cd0dc2e2a82 {
  margin-top: 0em;
margin-bottom: 0em;
padding-top: 5px;
padding-bottom: 5px;
max-width: 29em;
text-align: left;
}

#s-709f39f7-a45e-4ecb-82a6-2cd0dc2e2a82 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 42px;
  
  
  text-align: left;
}



#s-86958102-96e2-4493-a6d3-85d69faea41c {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 5px;
padding-bottom: 5px;
max-width: 35em;
text-align: left;
}

#s-86958102-96e2-4493-a6d3-85d69faea41c .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}



#s-19a4ecd9-7931-4c2c-8a24-2741388e2c6a {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 5px;
padding-bottom: 5px;
max-width: 35em;
text-align: left;
}

#s-19a4ecd9-7931-4c2c-8a24-2741388e2c6a .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}



#s-934bea8b-60c7-4b58-b6d8-c59f022232a4 {
  padding-top: 30px;
padding-left: 4%;
padding-bottom: 30px;
padding-right: 4%;
min-height: 50px;
background-color: rgba(16, 69, 186, 1);
}








#s-934bea8b-60c7-4b58-b6d8-c59f022232a4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-934bea8b-60c7-4b58-b6d8-c59f022232a4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0053eeff-3a24-4cde-bc26-a0faff119615 {
  margin-top: 8%;
margin-left: auto;
margin-bottom: 8%;
margin-right: auto;
min-height: 50px;
max-width: 1280px;
}








#s-0053eeff-3a24-4cde-bc26-a0faff119615 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0053eeff-3a24-4cde-bc26-a0faff119615.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-6d66f227-edfa-4eb9-9a9b-ddbd8d9754d0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6d66f227-edfa-4eb9-9a9b-ddbd8d9754d0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6d66f227-edfa-4eb9-9a9b-ddbd8d9754d0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6d66f227-edfa-4eb9-9a9b-ddbd8d9754d0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-df6a0b8f-40e8-48ca-810a-d5a89a095af1 {
  margin-bottom: 2em;
max-width: 640px;
}

@media (min-width: 0px) {
[id="s-df6a0b8f-40e8-48ca-810a-d5a89a095af1"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-df6a0b8f-40e8-48ca-810a-d5a89a095af1"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-df6a0b8f-40e8-48ca-810a-d5a89a095af1"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-df6a0b8f-40e8-48ca-810a-d5a89a095af1"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-df6a0b8f-40e8-48ca-810a-d5a89a095af1"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-df6a0b8f-40e8-48ca-810a-d5a89a095af1"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-df6a0b8f-40e8-48ca-810a-d5a89a095af1"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

}

#s-b70dd8a3-84c8-48f2-b752-239a3e617c3f {
  margin-left: auto;
margin-right: auto;
max-width: 66px;
text-align: center;
}

#s-dec972c5-686f-449d-bb86-78574878eeec {
  margin-top: 0em;
margin-bottom: 0em;
padding-top: 5px;
padding-bottom: 5px;
max-width: 34em;
text-align: left;
}

#s-dec972c5-686f-449d-bb86-78574878eeec .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 42px;
  
  
  text-align: left;
}



#s-01582945-2197-41ea-95d1-930eaf772ba7 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 5px;
padding-bottom: 5px;
max-width: 36em;
text-align: left;
}

#s-01582945-2197-41ea-95d1-930eaf772ba7 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}



#s-4ce3a472-2bc9-4412-b695-5fd3f55dfb1b {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 5px;
padding-bottom: 5px;
max-width: 36em;
text-align: left;
}

#s-4ce3a472-2bc9-4412-b695-5fd3f55dfb1b .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}



#s-ef0fd4f3-d831-47a9-8572-5614373d4e23 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 5px;
padding-bottom: 5px;
max-width: 36em;
text-align: left;
}

#s-ef0fd4f3-d831-47a9-8572-5614373d4e23 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}



#s-fb364c82-4ebc-48c6-8fbf-99a83b3a99af {
  margin-top: 3em;
margin-bottom: 3em;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 8px;
max-width: 100%;
background-color: rgba(227, 56, 77, 1);
text-align: left;
text-decoration: none;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-fb364c82-4ebc-48c6-8fbf-99a83b3a99af:hover {background-color: rgba(233, 73, 93, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-fb364c82-4ebc-48c6-8fbf-99a83b3a99af:active {background-color: rgba(233, 73, 93, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (max-width: 767px){#s-fb364c82-4ebc-48c6-8fbf-99a83b3a99af {
  padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 8px;
max-width: 100%;
text-align: center;
text-decoration: none;
}
}

  #s-fb364c82-4ebc-48c6-8fbf-99a83b3a99af-root {
    text-align: left;
  }


#s-fb364c82-4ebc-48c6-8fbf-99a83b3a99af.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-fb364c82-4ebc-48c6-8fbf-99a83b3a99af-root {
    text-align: left;
  }


#s-fb364c82-4ebc-48c6-8fbf-99a83b3a99af.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-fb364c82-4ebc-48c6-8fbf-99a83b3a99af-root {
    text-align: left;
  }


#s-fb364c82-4ebc-48c6-8fbf-99a83b3a99af.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-fb364c82-4ebc-48c6-8fbf-99a83b3a99af-root {
    text-align: left;
  }


#s-fb364c82-4ebc-48c6-8fbf-99a83b3a99af.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-fb364c82-4ebc-48c6-8fbf-99a83b3a99af-root {
    text-align: center;
  }


#s-fb364c82-4ebc-48c6-8fbf-99a83b3a99af.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  block ;
}
}
#s-531d3b7a-97fe-49b9-ac64-78eb9a006c6a {
  text-align: center;
}







  #s-531d3b7a-97fe-49b9-ac64-78eb9a006c6a img.shogun-image {
    

    
    
    
  }


#s-531d3b7a-97fe-49b9-ac64-78eb9a006c6a .shogun-image-content {
  
    align-items: center;
  
}

#s-980688c3-de35-4290-a8c9-bf1a6fb1bf53 {
  padding-top: 30px;
padding-left: 4%;
padding-bottom: 30px;
padding-right: 4%;
min-height: 50px;
background-color: rgba(16, 69, 186, 1);
}








#s-980688c3-de35-4290-a8c9-bf1a6fb1bf53 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-980688c3-de35-4290-a8c9-bf1a6fb1bf53.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a136a645-d70b-460b-adf9-7386a6207478 {
  margin-top: 2%;
margin-left: auto;
margin-bottom: 2%;
margin-right: auto;
min-height: 50px;
max-width: 1280px;
}








#s-a136a645-d70b-460b-adf9-7386a6207478 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a136a645-d70b-460b-adf9-7386a6207478.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8494ac44-fce0-4636-8dc7-c4841a39bdb5 {
  text-align: center;
}
@media (max-width: 767px){#s-8494ac44-fce0-4636-8dc7-c4841a39bdb5 {
  display: none;
}
#s-8494ac44-fce0-4636-8dc7-c4841a39bdb5, #wrap-s-8494ac44-fce0-4636-8dc7-c4841a39bdb5 { display: none !important; }}






  #s-8494ac44-fce0-4636-8dc7-c4841a39bdb5 img.shogun-image {
    

    
    
    
  }


#s-8494ac44-fce0-4636-8dc7-c4841a39bdb5 .shogun-image-content {
  
    align-items: center;
  
}

#s-402a3d74-52cd-44fb-980e-8841a01b4852 {
  text-align: center;
}
@media (min-width: 1200px){#s-402a3d74-52cd-44fb-980e-8841a01b4852 {
  display: none;
}
#s-402a3d74-52cd-44fb-980e-8841a01b4852, #wrap-s-402a3d74-52cd-44fb-980e-8841a01b4852 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-402a3d74-52cd-44fb-980e-8841a01b4852 {
  display: none;
}
#s-402a3d74-52cd-44fb-980e-8841a01b4852, #wrap-s-402a3d74-52cd-44fb-980e-8841a01b4852 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-402a3d74-52cd-44fb-980e-8841a01b4852 {
  display: none;
}
#s-402a3d74-52cd-44fb-980e-8841a01b4852, #wrap-s-402a3d74-52cd-44fb-980e-8841a01b4852 { display: none !important; }}






  #s-402a3d74-52cd-44fb-980e-8841a01b4852 img.shogun-image {
    

    
    
    
  }


#s-402a3d74-52cd-44fb-980e-8841a01b4852 .shogun-image-content {
  
    align-items: center;
  
}

#s-0f967640-b4f0-484c-806c-c5ed73c270b1 {
  padding-top: 30px;
padding-left: 4%;
padding-bottom: 30px;
padding-right: 4%;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}








#s-0f967640-b4f0-484c-806c-c5ed73c270b1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0f967640-b4f0-484c-806c-c5ed73c270b1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-76e2b198-f163-40e8-a451-8ce83896ce12 {
  margin-top: 8%;
margin-left: auto;
margin-bottom: 8%;
margin-right: auto;
min-height: 50px;
max-width: 1280px;
}








#s-76e2b198-f163-40e8-a451-8ce83896ce12 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-76e2b198-f163-40e8-a451-8ce83896ce12.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-222e129e-30ac-425e-b66e-41f8d7a1335c {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 1280px;
text-align: center;
}
@media (max-width: 767px){#s-222e129e-30ac-425e-b66e-41f8d7a1335c {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 1280px;
text-align: left;
}
}
#s-222e129e-30ac-425e-b66e-41f8d7a1335c .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 42px;
  
  
  text-align: center;
}


@media (max-width: 767px){#s-222e129e-30ac-425e-b66e-41f8d7a1335c .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 42px;
  
  
  text-align: left;
}


}
#s-e734195d-6e3b-4124-aa56-3407f22d199c {
  margin-top: 2em;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
max-width: 1280px;
}
@media (max-width: 767px){#s-e734195d-6e3b-4124-aa56-3407f22d199c {
  display: none;
}
#s-e734195d-6e3b-4124-aa56-3407f22d199c, #wrap-s-e734195d-6e3b-4124-aa56-3407f22d199c { display: none !important; }}
@media (min-width: 0px) {
[id="s-e734195d-6e3b-4124-aa56-3407f22d199c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-e734195d-6e3b-4124-aa56-3407f22d199c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-e734195d-6e3b-4124-aa56-3407f22d199c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-e734195d-6e3b-4124-aa56-3407f22d199c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-397bf2ee-e3ad-4313-8a62-26b37352a7fc {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 16px;
text-align: center;
}







  #s-397bf2ee-e3ad-4313-8a62-26b37352a7fc img.shogun-image {
    

    
    
    
  }


#s-397bf2ee-e3ad-4313-8a62-26b37352a7fc .shogun-image-content {
  
    align-items: center;
  
}

#s-2e811c20-3a8c-4acd-9c14-36fc57052ad8 {
  margin-top: 0em;
margin-bottom: 0px;
padding-top: 1em;
padding-bottom: 5px;
max-width: 32em;
text-align: center;
}

#s-2e811c20-3a8c-4acd-9c14-36fc57052ad8 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}



#s-e8b75710-8eee-44da-8a25-68981f978175 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 5px;
padding-bottom: 5px;
max-width: 15em;
text-align: center;
}

#s-e8b75710-8eee-44da-8a25-68981f978175 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: center;
}



#s-eb0e17ff-dbb4-4c9e-9b6a-dc53fd269181 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 16px;
text-align: center;
}







  #s-eb0e17ff-dbb4-4c9e-9b6a-dc53fd269181 img.shogun-image {
    

    
    
    
  }


#s-eb0e17ff-dbb4-4c9e-9b6a-dc53fd269181 .shogun-image-content {
  
    align-items: center;
  
}

#s-bc3eec9b-6e57-4efd-a12b-0e5b304b66e0 {
  margin-top: 0em;
margin-bottom: 0px;
padding-top: 1em;
padding-bottom: 5px;
max-width: 32em;
text-align: center;
}

#s-bc3eec9b-6e57-4efd-a12b-0e5b304b66e0 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}



#s-e771bca3-cdb3-4e89-acff-71b344bd479c {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 5px;
padding-bottom: 5px;
max-width: 13em;
text-align: center;
}

#s-e771bca3-cdb3-4e89-acff-71b344bd479c .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: center;
}



#s-b3890165-695d-41b0-b982-bc89498b0477 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 16px;
text-align: center;
}







  #s-b3890165-695d-41b0-b982-bc89498b0477 img.shogun-image {
    

    
    
    
  }


#s-b3890165-695d-41b0-b982-bc89498b0477 .shogun-image-content {
  
    align-items: center;
  
}

#s-a34cbc9d-76d8-4c23-bbc9-7610cd12b408 {
  margin-top: 0em;
margin-bottom: 0px;
padding-top: 1em;
padding-bottom: 5px;
max-width: 32em;
text-align: center;
}

#s-a34cbc9d-76d8-4c23-bbc9-7610cd12b408 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}



#s-f5c62bad-17f3-412e-943f-5ac78dcaf897 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 5px;
padding-bottom: 5px;
max-width: 14em;
text-align: center;
}

#s-f5c62bad-17f3-412e-943f-5ac78dcaf897 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: center;
}



#s-e6af7d88-32b2-47dd-8145-792e53fd590e {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 16px;
text-align: center;
}







  #s-e6af7d88-32b2-47dd-8145-792e53fd590e img.shogun-image {
    

    
    
    
  }


#s-e6af7d88-32b2-47dd-8145-792e53fd590e .shogun-image-content {
  
    align-items: center;
  
}

#s-7e5b9167-c7bb-4d9a-ac91-9990fe165005 {
  margin-top: 0em;
margin-bottom: 0px;
padding-top: 1em;
padding-bottom: 5px;
max-width: 32em;
text-align: center;
}

#s-7e5b9167-c7bb-4d9a-ac91-9990fe165005 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}



#s-7dbfc452-c88f-4faa-835a-4061c759c0fb {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 5px;
padding-bottom: 5px;
max-width: 16em;
text-align: center;
}

#s-7dbfc452-c88f-4faa-835a-4061c759c0fb .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: center;
}



#s-6cfb19f9-105b-45f0-b850-58e33d3346cd {
  margin-top: 15px;
margin-bottom: 15px;
}
@media (min-width: 1200px){#s-6cfb19f9-105b-45f0-b850-58e33d3346cd {
  display: none;
}
#s-6cfb19f9-105b-45f0-b850-58e33d3346cd, #wrap-s-6cfb19f9-105b-45f0-b850-58e33d3346cd { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6cfb19f9-105b-45f0-b850-58e33d3346cd {
  display: none;
}
#s-6cfb19f9-105b-45f0-b850-58e33d3346cd, #wrap-s-6cfb19f9-105b-45f0-b850-58e33d3346cd { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6cfb19f9-105b-45f0-b850-58e33d3346cd {
  display: none;
}
#s-6cfb19f9-105b-45f0-b850-58e33d3346cd, #wrap-s-6cfb19f9-105b-45f0-b850-58e33d3346cd { display: none !important; }}
@media (min-width: 0px) {
[id="s-6cfb19f9-105b-45f0-b850-58e33d3346cd"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-6cfb19f9-105b-45f0-b850-58e33d3346cd"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-6cfb19f9-105b-45f0-b850-58e33d3346cd"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-6cfb19f9-105b-45f0-b850-58e33d3346cd"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-b49ca840-cf4b-473f-bd35-b644efb09102 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 16px;
text-align: center;
}







  #s-b49ca840-cf4b-473f-bd35-b644efb09102 img.shogun-image {
    

    
    
    
  }


#s-b49ca840-cf4b-473f-bd35-b644efb09102 .shogun-image-content {
  
    align-items: center;
  
}

#s-cdf69c58-2576-4b96-8898-006289b33819 {
  margin-top: 0em;
margin-bottom: 0px;
padding-top: 1em;
padding-bottom: 5px;
max-width: 32em;
text-align: left;
}

#s-cdf69c58-2576-4b96-8898-006289b33819 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}



#s-751f99db-4ce3-4c06-a610-8cf7e3ba0065 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 5px;
padding-bottom: 5px;
max-width: 15em;
text-align: left;
}

#s-751f99db-4ce3-4c06-a610-8cf7e3ba0065 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-0d1c90dd-2b21-471e-8aaf-bae6a74f8cdb {
  margin-top: 15px;
margin-bottom: 15px;
}
@media (min-width: 1200px){#s-0d1c90dd-2b21-471e-8aaf-bae6a74f8cdb {
  display: none;
}
#s-0d1c90dd-2b21-471e-8aaf-bae6a74f8cdb, #wrap-s-0d1c90dd-2b21-471e-8aaf-bae6a74f8cdb { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0d1c90dd-2b21-471e-8aaf-bae6a74f8cdb {
  display: none;
}
#s-0d1c90dd-2b21-471e-8aaf-bae6a74f8cdb, #wrap-s-0d1c90dd-2b21-471e-8aaf-bae6a74f8cdb { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-0d1c90dd-2b21-471e-8aaf-bae6a74f8cdb {
  display: none;
}
#s-0d1c90dd-2b21-471e-8aaf-bae6a74f8cdb, #wrap-s-0d1c90dd-2b21-471e-8aaf-bae6a74f8cdb { display: none !important; }}
@media (min-width: 0px) {
[id="s-0d1c90dd-2b21-471e-8aaf-bae6a74f8cdb"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-0d1c90dd-2b21-471e-8aaf-bae6a74f8cdb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0d1c90dd-2b21-471e-8aaf-bae6a74f8cdb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0d1c90dd-2b21-471e-8aaf-bae6a74f8cdb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-05e56a9a-bc22-48b6-bd97-6045ffb5bdc7 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 16px;
text-align: center;
}







  #s-05e56a9a-bc22-48b6-bd97-6045ffb5bdc7 img.shogun-image {
    

    
    
    
  }


#s-05e56a9a-bc22-48b6-bd97-6045ffb5bdc7 .shogun-image-content {
  
    align-items: center;
  
}

#s-c50fd2ce-1655-4efd-97d7-3ed65ee7d339 {
  margin-top: 0em;
margin-bottom: 0px;
padding-top: 1em;
padding-bottom: 5px;
max-width: 32em;
text-align: left;
}

#s-c50fd2ce-1655-4efd-97d7-3ed65ee7d339 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}



#s-d1ffb507-8647-43e6-854a-3f0d91344910 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 5px;
padding-bottom: 5px;
max-width: 13em;
text-align: left;
}

#s-d1ffb507-8647-43e6-854a-3f0d91344910 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-586d7538-67b3-4da3-9811-8844389af336 {
  margin-top: 15px;
margin-bottom: 15px;
}
@media (min-width: 1200px){#s-586d7538-67b3-4da3-9811-8844389af336 {
  display: none;
}
#s-586d7538-67b3-4da3-9811-8844389af336, #wrap-s-586d7538-67b3-4da3-9811-8844389af336 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-586d7538-67b3-4da3-9811-8844389af336 {
  display: none;
}
#s-586d7538-67b3-4da3-9811-8844389af336, #wrap-s-586d7538-67b3-4da3-9811-8844389af336 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-586d7538-67b3-4da3-9811-8844389af336 {
  display: none;
}
#s-586d7538-67b3-4da3-9811-8844389af336, #wrap-s-586d7538-67b3-4da3-9811-8844389af336 { display: none !important; }}
@media (min-width: 0px) {
[id="s-586d7538-67b3-4da3-9811-8844389af336"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-586d7538-67b3-4da3-9811-8844389af336"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-586d7538-67b3-4da3-9811-8844389af336"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-586d7538-67b3-4da3-9811-8844389af336"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-52f9e27f-4529-42e5-8bcf-553165fc0ffe {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 16px;
text-align: center;
}







  #s-52f9e27f-4529-42e5-8bcf-553165fc0ffe img.shogun-image {
    

    
    
    
  }


#s-52f9e27f-4529-42e5-8bcf-553165fc0ffe .shogun-image-content {
  
    align-items: center;
  
}

#s-813a8279-d23b-43db-bdf3-58d51cad6535 {
  margin-top: 0em;
margin-bottom: 0px;
padding-top: 1em;
padding-bottom: 5px;
max-width: 32em;
text-align: left;
}

#s-813a8279-d23b-43db-bdf3-58d51cad6535 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}



#s-22a4fead-b341-46f4-875b-6981ee026cf2 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 5px;
padding-bottom: 5px;
max-width: 14em;
text-align: left;
}

#s-22a4fead-b341-46f4-875b-6981ee026cf2 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-a6acfa36-b6bc-4776-bbb1-c7a8801884fb {
  margin-top: 15px;
margin-bottom: 15px;
}
@media (min-width: 1200px){#s-a6acfa36-b6bc-4776-bbb1-c7a8801884fb {
  display: none;
}
#s-a6acfa36-b6bc-4776-bbb1-c7a8801884fb, #wrap-s-a6acfa36-b6bc-4776-bbb1-c7a8801884fb { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a6acfa36-b6bc-4776-bbb1-c7a8801884fb {
  display: none;
}
#s-a6acfa36-b6bc-4776-bbb1-c7a8801884fb, #wrap-s-a6acfa36-b6bc-4776-bbb1-c7a8801884fb { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a6acfa36-b6bc-4776-bbb1-c7a8801884fb {
  display: none;
}
#s-a6acfa36-b6bc-4776-bbb1-c7a8801884fb, #wrap-s-a6acfa36-b6bc-4776-bbb1-c7a8801884fb { display: none !important; }}
@media (min-width: 0px) {
[id="s-a6acfa36-b6bc-4776-bbb1-c7a8801884fb"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-a6acfa36-b6bc-4776-bbb1-c7a8801884fb"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a6acfa36-b6bc-4776-bbb1-c7a8801884fb"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a6acfa36-b6bc-4776-bbb1-c7a8801884fb"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-d9a36bf9-c629-4f41-a49c-ca53987884a9 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 16px;
text-align: center;
}







  #s-d9a36bf9-c629-4f41-a49c-ca53987884a9 img.shogun-image {
    

    
    
    
  }


#s-d9a36bf9-c629-4f41-a49c-ca53987884a9 .shogun-image-content {
  
    align-items: center;
  
}

#s-d37ea202-6731-4963-ab50-b7c25f18f932 {
  margin-top: 0em;
margin-bottom: 0px;
padding-top: 1em;
padding-bottom: 5px;
max-width: 32em;
text-align: left;
}

#s-d37ea202-6731-4963-ab50-b7c25f18f932 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}



#s-1f2bff52-46b6-4d19-8c79-d7f6c399486e {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 5px;
padding-bottom: 5px;
max-width: 16em;
text-align: left;
}

#s-1f2bff52-46b6-4d19-8c79-d7f6c399486e .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-3183843e-610a-4b04-9e26-1fda0c364151 {
  padding-top: 30px;
padding-left: 4%;
padding-bottom: 30px;
padding-right: 4%;
min-height: 50px;
}

#s-3183843e-610a-4b04-9e26-1fda0c364151 {
  background-image: url();
}








#s-3183843e-610a-4b04-9e26-1fda0c364151 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3183843e-610a-4b04-9e26-1fda0c364151.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6afb5e1f-7339-4268-bdef-2bacb7f0ac45 {
  margin-top: 40px;
margin-left: auto;
margin-bottom: 40px;
margin-right: auto;
min-height: 50px;
max-width: 1280px;
}








#s-6afb5e1f-7339-4268-bdef-2bacb7f0ac45 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6afb5e1f-7339-4268-bdef-2bacb7f0ac45.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-918a34d0-aba5-4509-8795-eaeef7dd9696 {
  margin-left: auto;
margin-bottom: 3em;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 1280px;
text-align: center;
}
@media (max-width: 767px){#s-918a34d0-aba5-4509-8795-eaeef7dd9696 {
  margin-left: auto;
margin-bottom: 3em;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 1280px;
text-align: left;
}
}
#s-918a34d0-aba5-4509-8795-eaeef7dd9696 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 42px;
  
  
  text-align: center;
}


@media (max-width: 767px){#s-918a34d0-aba5-4509-8795-eaeef7dd9696 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 42px;
  
  
  text-align: left;
}


}
#s-8571e5c4-3d94-438c-907a-b879227c9132 {
  margin-top: 25px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
max-width: 1280px;
}

@media (min-width: 0px) {
[id="s-8571e5c4-3d94-438c-907a-b879227c9132"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8571e5c4-3d94-438c-907a-b879227c9132"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 992px) {
[id="s-8571e5c4-3d94-438c-907a-b879227c9132"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 1200px) {
[id="s-8571e5c4-3d94-438c-907a-b879227c9132"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (max-width: 767px) {
  [id="s-8571e5c4-3d94-438c-907a-b879227c9132"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-c5743b3a-3a8b-4244-a061-e655f9e1b786 {
  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;
}
@media (min-width: 768px) and (max-width: 991px){#s-c5743b3a-3a8b-4244-a061-e655f9e1b786 {
  
}
}@media (max-width: 767px){#s-c5743b3a-3a8b-4244-a061-e655f9e1b786 {
  
}
}






  #s-c5743b3a-3a8b-4244-a061-e655f9e1b786 img.shogun-image {
    

    
    
    
  }


#s-c5743b3a-3a8b-4244-a061-e655f9e1b786 .shogun-image-content {
  
    align-items: center;
  
}

#s-ef9ddc17-3391-4d78-8b38-7839ae5a17aa {
  margin-top: 1em;
margin-bottom: 2em;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-ef9ddc17-3391-4d78-8b38-7839ae5a17aa .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 42px;
  line-height: 1em;
  
  text-align: left;
}



#s-6dff91b3-439b-4668-b166-f62af70ce6fd {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-6dff91b3-439b-4668-b166-f62af70ce6fd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6dff91b3-439b-4668-b166-f62af70ce6fd"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-6dff91b3-439b-4668-b166-f62af70ce6fd"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-6dff91b3-439b-4668-b166-f62af70ce6fd"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-6dff91b3-439b-4668-b166-f62af70ce6fd"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-6dff91b3-439b-4668-b166-f62af70ce6fd"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-6dff91b3-439b-4668-b166-f62af70ce6fd"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

#s-637ea0ca-6fb7-46c1-a8ed-9d9d8a543746 {
  padding-top: 10px;
padding-bottom: 10px;
max-width: 16em;
text-align: left;
}

#s-637ea0ca-6fb7-46c1-a8ed-9d9d8a543746 .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-1261a274-3bfe-4de7-8b1f-5a5d87a8c7df {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-1261a274-3bfe-4de7-8b1f-5a5d87a8c7df"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1261a274-3bfe-4de7-8b1f-5a5d87a8c7df"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-1261a274-3bfe-4de7-8b1f-5a5d87a8c7df"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-1261a274-3bfe-4de7-8b1f-5a5d87a8c7df"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-1261a274-3bfe-4de7-8b1f-5a5d87a8c7df"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-1261a274-3bfe-4de7-8b1f-5a5d87a8c7df"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-1261a274-3bfe-4de7-8b1f-5a5d87a8c7df"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

#s-3275bc2b-5f93-4854-95cf-364590aa4161 {
  padding-top: 10px;
padding-bottom: 10px;
max-width: 17.1em;
text-align: left;
}

#s-3275bc2b-5f93-4854-95cf-364590aa4161 .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 19px;
  
  
  text-align: left;
}



#s-1955ca7f-0eae-43e7-a38e-0923d1d940fb {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-1955ca7f-0eae-43e7-a38e-0923d1d940fb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1955ca7f-0eae-43e7-a38e-0923d1d940fb"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-1955ca7f-0eae-43e7-a38e-0923d1d940fb"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-1955ca7f-0eae-43e7-a38e-0923d1d940fb"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-1955ca7f-0eae-43e7-a38e-0923d1d940fb"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-1955ca7f-0eae-43e7-a38e-0923d1d940fb"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-1955ca7f-0eae-43e7-a38e-0923d1d940fb"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

#s-af4f050a-e432-4c30-b9f4-880ce79895c7 {
  padding-top: 10px;
padding-bottom: 10px;
max-width: 20em;
text-align: left;
}

#s-af4f050a-e432-4c30-b9f4-880ce79895c7 .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-e7bb4ceb-1063-44b2-94fc-0a79a0cb9324 {
  margin-top: 25px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
max-width: 1280px;
}

@media (min-width: 0px) {
[id="s-e7bb4ceb-1063-44b2-94fc-0a79a0cb9324"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e7bb4ceb-1063-44b2-94fc-0a79a0cb9324"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 992px) {
[id="s-e7bb4ceb-1063-44b2-94fc-0a79a0cb9324"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 1200px) {
[id="s-e7bb4ceb-1063-44b2-94fc-0a79a0cb9324"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 30.0px);
}

}

#s-6309c8df-24cf-4565-a7ce-24776ea232fd {
  margin-top: 1em;
margin-bottom: 2em;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-6309c8df-24cf-4565-a7ce-24776ea232fd .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 42px;
  line-height: 1em;
  
  text-align: left;
}



#s-1d0e6183-814b-425f-b939-c72dc4ba8366 {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-1d0e6183-814b-425f-b939-c72dc4ba8366"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-1d0e6183-814b-425f-b939-c72dc4ba8366"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-1d0e6183-814b-425f-b939-c72dc4ba8366"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-1d0e6183-814b-425f-b939-c72dc4ba8366"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-1d0e6183-814b-425f-b939-c72dc4ba8366"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-1d0e6183-814b-425f-b939-c72dc4ba8366"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-1d0e6183-814b-425f-b939-c72dc4ba8366"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

#s-19486e5c-e744-4b85-b07f-4a1d2b42aee8 {
  padding-top: 10px;
padding-bottom: 10px;
max-width: 15em;
text-align: left;
}

#s-19486e5c-e744-4b85-b07f-4a1d2b42aee8 .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-e5102078-1be9-4342-b3c9-f3b8bd12a77a {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-e5102078-1be9-4342-b3c9-f3b8bd12a77a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e5102078-1be9-4342-b3c9-f3b8bd12a77a"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-e5102078-1be9-4342-b3c9-f3b8bd12a77a"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-e5102078-1be9-4342-b3c9-f3b8bd12a77a"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-e5102078-1be9-4342-b3c9-f3b8bd12a77a"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-e5102078-1be9-4342-b3c9-f3b8bd12a77a"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-e5102078-1be9-4342-b3c9-f3b8bd12a77a"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

#s-52da10da-a781-4c35-8068-820aeffb0bf3 {
  padding-top: 10px;
padding-bottom: 10px;
max-width: 15em;
text-align: left;
}

#s-52da10da-a781-4c35-8068-820aeffb0bf3 .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-4c6f8d3b-1236-4b47-8c07-44985a5b2c86 {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-4c6f8d3b-1236-4b47-8c07-44985a5b2c86"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4c6f8d3b-1236-4b47-8c07-44985a5b2c86"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-4c6f8d3b-1236-4b47-8c07-44985a5b2c86"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-4c6f8d3b-1236-4b47-8c07-44985a5b2c86"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-4c6f8d3b-1236-4b47-8c07-44985a5b2c86"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-4c6f8d3b-1236-4b47-8c07-44985a5b2c86"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-4c6f8d3b-1236-4b47-8c07-44985a5b2c86"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

#s-0583cd5d-c4f9-431c-b510-af69138854cf {
  padding-top: 10px;
padding-bottom: 10px;
max-width: 22em;
text-align: left;
}

#s-0583cd5d-c4f9-431c-b510-af69138854cf .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-da716c8f-610f-4994-853d-d85c4a485d70 {
  margin-top: 1em;
margin-bottom: 1em;
}

@media (min-width: 0px) {
[id="s-da716c8f-610f-4994-853d-d85c4a485d70"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-da716c8f-610f-4994-853d-d85c4a485d70"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-da716c8f-610f-4994-853d-d85c4a485d70"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

@media (min-width: 992px) {
[id="s-da716c8f-610f-4994-853d-d85c4a485d70"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-da716c8f-610f-4994-853d-d85c4a485d70"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

@media (min-width: 1200px) {
[id="s-da716c8f-610f-4994-853d-d85c4a485d70"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 5.0px);
}

[id="s-da716c8f-610f-4994-853d-d85c4a485d70"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 5.0px);
}

}

#s-3557d4a6-8b02-4688-a618-4bb8cbcaad0a {
  padding-top: 10px;
padding-bottom: 10px;
max-width: 16em;
text-align: left;
}

#s-3557d4a6-8b02-4688-a618-4bb8cbcaad0a .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-30c762c2-2dc0-4896-869e-99b87d9b7b92 {
  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;
}
@media (max-width: 767px){#s-30c762c2-2dc0-4896-869e-99b87d9b7b92 {
  
}
}






  #s-30c762c2-2dc0-4896-869e-99b87d9b7b92 img.shogun-image {
    

    
    
    
  }


#s-30c762c2-2dc0-4896-869e-99b87d9b7b92 .shogun-image-content {
  
    align-items: center;
  
}

#s-d6ce6229-4654-48d0-b994-3a49c7bff33a {
  background-repeat: repeat;
background-size: 72px 40px;
margin-top: 40px;
margin-bottom: 40px;
padding-top: 30px;
padding-bottom: 30px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 12px;
min-height: 50px;
background-position: center center;
}
@media (max-width: 767px){#s-d6ce6229-4654-48d0-b994-3a49c7bff33a {
  display: none;
}
#s-d6ce6229-4654-48d0-b994-3a49c7bff33a, #wrap-s-d6ce6229-4654-48d0-b994-3a49c7bff33a { display: none !important; }}







#s-d6ce6229-4654-48d0-b994-3a49c7bff33a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d6ce6229-4654-48d0-b994-3a49c7bff33a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d8e6356b-3219-49de-9870-25d854af7930 {
  margin-left: 4%;
margin-right: 4%;
}
@media (max-width: 767px){#s-d8e6356b-3219-49de-9870-25d854af7930 {
  display: none;
}
#s-d8e6356b-3219-49de-9870-25d854af7930, #wrap-s-d8e6356b-3219-49de-9870-25d854af7930 { display: none !important; }}
@media (min-width: 0px) {
[id="s-d8e6356b-3219-49de-9870-25d854af7930"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-d8e6356b-3219-49de-9870-25d854af7930"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-d8e6356b-3219-49de-9870-25d854af7930"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-d8e6356b-3219-49de-9870-25d854af7930"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-d8e6356b-3219-49de-9870-25d854af7930"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-d8e6356b-3219-49de-9870-25d854af7930"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 20.0px);
}

[id="s-d8e6356b-3219-49de-9870-25d854af7930"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 20.0px);
}

}

#s-50171f00-e937-4ac9-ae83-17524f83883e {
  text-align: center;
}







  #s-50171f00-e937-4ac9-ae83-17524f83883e img.shogun-image {
    

    
    
    
  }


#s-50171f00-e937-4ac9-ae83-17524f83883e .shogun-image-content {
  
    align-items: center;
  
}

#s-da18b011-94a3-4efe-9625-cd69cf2d25b5 {
  margin-bottom: 1em;
text-align: left;
}







  #s-da18b011-94a3-4efe-9625-cd69cf2d25b5 img.shogun-image {
    

    
    
    
  }


#s-da18b011-94a3-4efe-9625-cd69cf2d25b5 .shogun-image-content {
  
    align-items: center;
  
}

#s-e03bc464-fe7a-4989-8e1a-b3489da51ce8 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 5px;
max-width: 32em;
text-align: left;
}

#s-e03bc464-fe7a-4989-8e1a-b3489da51ce8 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}



#s-227a292f-554c-49db-aefa-fe44c3e151dc {
  margin-top: 0px;
margin-bottom: 0px;
padding-bottom: 5px;
max-width: 32em;
text-align: left;
}

#s-227a292f-554c-49db-aefa-fe44c3e151dc .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-8b62464f-ede9-4388-93dc-b61a65f81559 {
  margin-top: 2em;
margin-bottom: 2em;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 8px;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-8b62464f-ede9-4388-93dc-b61a65f81559:hover {background-color: rgba(211, 211, 211, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-8b62464f-ede9-4388-93dc-b61a65f81559:active {background-color: rgba(211, 211, 211, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-8b62464f-ede9-4388-93dc-b61a65f81559-root {
    text-align: center;
  }


#s-8b62464f-ede9-4388-93dc-b61a65f81559.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-8b62464f-ede9-4388-93dc-b61a65f81559-root {
    text-align: center;
  }


#s-8b62464f-ede9-4388-93dc-b61a65f81559.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-8b62464f-ede9-4388-93dc-b61a65f81559-root {
    text-align: center;
  }


#s-8b62464f-ede9-4388-93dc-b61a65f81559.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-8b62464f-ede9-4388-93dc-b61a65f81559-root {
    text-align: center;
  }


#s-8b62464f-ede9-4388-93dc-b61a65f81559.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-8b62464f-ede9-4388-93dc-b61a65f81559-root {
    text-align: center;
  }


#s-8b62464f-ede9-4388-93dc-b61a65f81559.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}
#s-3281f5bb-258a-4a35-9128-6e5f751e438b {
  padding-left: 4%;
padding-right: 4%;
min-height: 50px;
}
@media (min-width: 1200px){#s-3281f5bb-258a-4a35-9128-6e5f751e438b {
  display: none;
}
#s-3281f5bb-258a-4a35-9128-6e5f751e438b, #wrap-s-3281f5bb-258a-4a35-9128-6e5f751e438b { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3281f5bb-258a-4a35-9128-6e5f751e438b {
  display: none;
}
#s-3281f5bb-258a-4a35-9128-6e5f751e438b, #wrap-s-3281f5bb-258a-4a35-9128-6e5f751e438b { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3281f5bb-258a-4a35-9128-6e5f751e438b {
  display: none;
}
#s-3281f5bb-258a-4a35-9128-6e5f751e438b, #wrap-s-3281f5bb-258a-4a35-9128-6e5f751e438b { display: none !important; }}







#s-3281f5bb-258a-4a35-9128-6e5f751e438b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3281f5bb-258a-4a35-9128-6e5f751e438b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2ba7ba65-1217-41f3-9b7e-2232aea84371 {
  margin-bottom: 1em;
text-align: left;
}







  #s-2ba7ba65-1217-41f3-9b7e-2232aea84371 img.shogun-image {
    

    
    
    
  }


#s-2ba7ba65-1217-41f3-9b7e-2232aea84371 .shogun-image-content {
  
    align-items: center;
  
}

#s-662bdc02-c11a-4c13-ade5-71b958487269 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 5px;
max-width: 11em;
text-align: left;
}

#s-662bdc02-c11a-4c13-ade5-71b958487269 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}



#s-dbe27b7d-8ba1-413f-8501-197099ade71e {
  margin-top: 0px;
margin-bottom: 0px;
padding-bottom: 5px;
max-width: 21em;
text-align: left;
}

#s-dbe27b7d-8ba1-413f-8501-197099ade71e .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-80c3c6f9-bff5-40fd-afb6-131864204721 {
  text-align: center;
}







  #s-80c3c6f9-bff5-40fd-afb6-131864204721 img.shogun-image {
    

    
    
    
  }


#s-80c3c6f9-bff5-40fd-afb6-131864204721 .shogun-image-content {
  
    align-items: center;
  
}

#s-f5e0eb63-4276-4519-9e68-7ef86950721b {
  margin-top: 2em;
margin-bottom: 2em;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 8px;
max-width: 100%;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-f5e0eb63-4276-4519-9e68-7ef86950721b:hover {background-color: rgba(211, 211, 211, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-f5e0eb63-4276-4519-9e68-7ef86950721b:active {background-color: rgba(211, 211, 211, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-f5e0eb63-4276-4519-9e68-7ef86950721b-root {
    text-align: center;
  }


#s-f5e0eb63-4276-4519-9e68-7ef86950721b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  block ;
}
@media (min-width: 1200px){
  #s-f5e0eb63-4276-4519-9e68-7ef86950721b-root {
    text-align: center;
  }


#s-f5e0eb63-4276-4519-9e68-7ef86950721b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f5e0eb63-4276-4519-9e68-7ef86950721b-root {
    text-align: center;
  }


#s-f5e0eb63-4276-4519-9e68-7ef86950721b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f5e0eb63-4276-4519-9e68-7ef86950721b-root {
    text-align: center;
  }


#s-f5e0eb63-4276-4519-9e68-7ef86950721b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  block ;
}
}@media (max-width: 767px){
  #s-f5e0eb63-4276-4519-9e68-7ef86950721b-root {
    text-align: center;
  }


#s-f5e0eb63-4276-4519-9e68-7ef86950721b.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  block ;
}
}
#s-28374f4a-f32b-4216-82a8-e0f99c2825e3 {
  margin-top: 1em;
margin-bottom: 2em;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-28374f4a-f32b-4216-82a8-e0f99c2825e3 {
  display: none;
}
#s-28374f4a-f32b-4216-82a8-e0f99c2825e3, #wrap-s-28374f4a-f32b-4216-82a8-e0f99c2825e3 { display: none !important; }}@media (max-width: 767px){#s-28374f4a-f32b-4216-82a8-e0f99c2825e3 {
  display: none;
}
#s-28374f4a-f32b-4216-82a8-e0f99c2825e3, #wrap-s-28374f4a-f32b-4216-82a8-e0f99c2825e3 { display: none !important; }}
#s-28374f4a-f32b-4216-82a8-e0f99c2825e3 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 42px;
  line-height: 1em;
  
  text-align: left;
}



#s-3309eb50-b57b-4f1f-83a6-637091ff31fa {
  margin-top: 25px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
max-width: 1280px;
}
@media (min-width: 768px) and (max-width: 991px){#s-3309eb50-b57b-4f1f-83a6-637091ff31fa {
  
}
}@media (max-width: 767px){#s-3309eb50-b57b-4f1f-83a6-637091ff31fa {
  display: none;
}
#s-3309eb50-b57b-4f1f-83a6-637091ff31fa, #wrap-s-3309eb50-b57b-4f1f-83a6-637091ff31fa { display: none !important; }}
@media (min-width: 0px) {
[id="s-3309eb50-b57b-4f1f-83a6-637091ff31fa"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-3309eb50-b57b-4f1f-83a6-637091ff31fa"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-3309eb50-b57b-4f1f-83a6-637091ff31fa"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-3309eb50-b57b-4f1f-83a6-637091ff31fa"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-421a4036-ddee-4703-88dc-488c2803230f {
  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-421a4036-ddee-4703-88dc-488c2803230f img.shogun-image {
    

    
    
    
  }


#s-421a4036-ddee-4703-88dc-488c2803230f .shogun-image-content {
  
    align-items: center;
  
}

#s-26468f9f-e2e2-4ea3-8f96-2c39b9999eda {
  background-repeat: repeat;
background-size: 72px 40px;
padding-top: 30px;
padding-left: 0%;
padding-bottom: 30px;
padding-right: 0%;
min-height: 50px;
background-position: center center;
}
@media (min-width: 1200px){#s-26468f9f-e2e2-4ea3-8f96-2c39b9999eda {
  display: none;
}
#s-26468f9f-e2e2-4ea3-8f96-2c39b9999eda, #wrap-s-26468f9f-e2e2-4ea3-8f96-2c39b9999eda { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-26468f9f-e2e2-4ea3-8f96-2c39b9999eda {
  display: none;
}
#s-26468f9f-e2e2-4ea3-8f96-2c39b9999eda, #wrap-s-26468f9f-e2e2-4ea3-8f96-2c39b9999eda { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-26468f9f-e2e2-4ea3-8f96-2c39b9999eda {
  display: none;
}
#s-26468f9f-e2e2-4ea3-8f96-2c39b9999eda, #wrap-s-26468f9f-e2e2-4ea3-8f96-2c39b9999eda { display: none !important; }}







#s-26468f9f-e2e2-4ea3-8f96-2c39b9999eda > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-26468f9f-e2e2-4ea3-8f96-2c39b9999eda.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-44ca23b3-2a3e-40fe-a28d-3363138197cd {
  margin-left: 6%;
margin-right: 6%;
min-height: 50px;
}








#s-44ca23b3-2a3e-40fe-a28d-3363138197cd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-44ca23b3-2a3e-40fe-a28d-3363138197cd.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-07d7c808-2352-4567-9a22-df33e8f1939a {
  margin-bottom: 1em;
text-align: left;
}







  #s-07d7c808-2352-4567-9a22-df33e8f1939a img.shogun-image {
    

    
    
    
  }


#s-07d7c808-2352-4567-9a22-df33e8f1939a .shogun-image-content {
  
    align-items: center;
  
}

#s-7102b270-34ff-4053-a95d-aaaed3aec693 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 5px;
max-width: 21em;
text-align: left;
}

#s-7102b270-34ff-4053-a95d-aaaed3aec693 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  500 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}



#s-c72e07f3-2fcc-431e-a83e-98f1d1ce0467 {
  margin-top: 0px;
margin-bottom: 0px;
padding-bottom: 5px;
max-width: 21em;
text-align: left;
}

#s-c72e07f3-2fcc-431e-a83e-98f1d1ce0467 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-c60adcc6-4c6c-4583-8091-4a07c13c5b6e {
  text-align: center;
}







  #s-c60adcc6-4c6c-4583-8091-4a07c13c5b6e img.shogun-image {
    

    
    
    
  }


#s-c60adcc6-4c6c-4583-8091-4a07c13c5b6e .shogun-image-content {
  
    align-items: center;
  
}

#s-24d4ebad-f846-4261-bef8-4d6d48ae8446 {
  margin-top: 2em;
margin-left: 6%;
margin-bottom: 2em;
margin-right: 6%;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 8px;
max-width: 100%;
background-color: rgba(255, 255, 255, 1);
text-align: center;
text-decoration: none;
color: rgba(0, 0, 0, 1);
background-image: none;
hover-type: color;
}
#s-24d4ebad-f846-4261-bef8-4d6d48ae8446:hover {background-color: rgba(211, 211, 211, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-24d4ebad-f846-4261-bef8-4d6d48ae8446:active {background-color: rgba(211, 211, 211, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-24d4ebad-f846-4261-bef8-4d6d48ae8446-root {
    text-align: center;
  }


#s-24d4ebad-f846-4261-bef8-4d6d48ae8446.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  block ;
}
@media (min-width: 1200px){
  #s-24d4ebad-f846-4261-bef8-4d6d48ae8446-root {
    text-align: center;
  }


#s-24d4ebad-f846-4261-bef8-4d6d48ae8446.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-24d4ebad-f846-4261-bef8-4d6d48ae8446-root {
    text-align: center;
  }


#s-24d4ebad-f846-4261-bef8-4d6d48ae8446.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-24d4ebad-f846-4261-bef8-4d6d48ae8446-root {
    text-align: center;
  }


#s-24d4ebad-f846-4261-bef8-4d6d48ae8446.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  block ;
}
}@media (max-width: 767px){
  #s-24d4ebad-f846-4261-bef8-4d6d48ae8446-root {
    text-align: center;
  }


#s-24d4ebad-f846-4261-bef8-4d6d48ae8446.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  block ;
}
}
#s-dc0d447d-cfcb-46a8-bbfe-095748b8c3e3 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-top: 40px;
padding-left: 4%;
padding-bottom: 40px;
padding-right: 4%;
min-height: 50px;
}
@media (min-width: 1200px){#s-dc0d447d-cfcb-46a8-bbfe-095748b8c3e3 {
  display: none;
}
#s-dc0d447d-cfcb-46a8-bbfe-095748b8c3e3, #wrap-s-dc0d447d-cfcb-46a8-bbfe-095748b8c3e3 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-dc0d447d-cfcb-46a8-bbfe-095748b8c3e3 {
  display: none;
}
#s-dc0d447d-cfcb-46a8-bbfe-095748b8c3e3, #wrap-s-dc0d447d-cfcb-46a8-bbfe-095748b8c3e3 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-dc0d447d-cfcb-46a8-bbfe-095748b8c3e3 {
  display: none;
}
#s-dc0d447d-cfcb-46a8-bbfe-095748b8c3e3, #wrap-s-dc0d447d-cfcb-46a8-bbfe-095748b8c3e3 { display: none !important; }}
#s-dc0d447d-cfcb-46a8-bbfe-095748b8c3e3 {
  background-image: url();
}








#s-dc0d447d-cfcb-46a8-bbfe-095748b8c3e3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dc0d447d-cfcb-46a8-bbfe-095748b8c3e3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-220ae4c0-c14f-41bd-a932-13f29562ea8a {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 1280px;
text-align: left;
}

#s-220ae4c0-c14f-41bd-a932-13f29562ea8a .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 42px;
  
  
  text-align: left;
}



#s-829a1f65-5bf9-42a6-9724-b92ea37732ab {
  margin-top: 25px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
max-width: 1280px;
}
@media (min-width: 1200px){#s-829a1f65-5bf9-42a6-9724-b92ea37732ab {
  display: none;
}
#s-829a1f65-5bf9-42a6-9724-b92ea37732ab, #wrap-s-829a1f65-5bf9-42a6-9724-b92ea37732ab { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-829a1f65-5bf9-42a6-9724-b92ea37732ab {
  display: none;
}
#s-829a1f65-5bf9-42a6-9724-b92ea37732ab, #wrap-s-829a1f65-5bf9-42a6-9724-b92ea37732ab { display: none !important; }}
@media (min-width: 0px) {
[id="s-829a1f65-5bf9-42a6-9724-b92ea37732ab"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-829a1f65-5bf9-42a6-9724-b92ea37732ab"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-829a1f65-5bf9-42a6-9724-b92ea37732ab"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-829a1f65-5bf9-42a6-9724-b92ea37732ab"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-08eb0b68-aba2-454e-b5d1-0a6de98be69e {
  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-08eb0b68-aba2-454e-b5d1-0a6de98be69e img.shogun-image {
    

    
    
    
  }


#s-08eb0b68-aba2-454e-b5d1-0a6de98be69e .shogun-image-content {
  
    align-items: center;
  
}

#s-2f091ae8-b128-4353-98a1-e7b1a64cfc0f {
  text-align: center;
}
@media (min-width: 1200px){#s-2f091ae8-b128-4353-98a1-e7b1a64cfc0f {
  display: none;
}
#s-2f091ae8-b128-4353-98a1-e7b1a64cfc0f, #wrap-s-2f091ae8-b128-4353-98a1-e7b1a64cfc0f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2f091ae8-b128-4353-98a1-e7b1a64cfc0f {
  display: none;
}
#s-2f091ae8-b128-4353-98a1-e7b1a64cfc0f, #wrap-s-2f091ae8-b128-4353-98a1-e7b1a64cfc0f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2f091ae8-b128-4353-98a1-e7b1a64cfc0f {
  display: none;
}
#s-2f091ae8-b128-4353-98a1-e7b1a64cfc0f, #wrap-s-2f091ae8-b128-4353-98a1-e7b1a64cfc0f { display: none !important; }}






  #s-2f091ae8-b128-4353-98a1-e7b1a64cfc0f img.shogun-image {
    

    
    
    
  }


#s-2f091ae8-b128-4353-98a1-e7b1a64cfc0f .shogun-image-content {
  
    align-items: center;
  
}

#s-48ed9d72-954d-4c1a-815b-ba34a59f3bd1 {
  margin-bottom: 30px;
padding-left: 4%;
padding-bottom: 30px;
padding-right: 4%;
min-height: 50px;
}

#s-48ed9d72-954d-4c1a-815b-ba34a59f3bd1 {
  background-image: url();
}








#s-48ed9d72-954d-4c1a-815b-ba34a59f3bd1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-48ed9d72-954d-4c1a-815b-ba34a59f3bd1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-aba115ae-2747-4a9e-9c7c-97f1d8899dac {
  margin-top: 40px;
margin-left: auto;
margin-bottom: 40px;
margin-right: auto;
min-height: 50px;
max-width: 1280px;
}
@media (max-width: 767px){#s-aba115ae-2747-4a9e-9c7c-97f1d8899dac {
  margin-bottom: 40px;
}
}







#s-aba115ae-2747-4a9e-9c7c-97f1d8899dac > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-aba115ae-2747-4a9e-9c7c-97f1d8899dac.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b76a2875-e988-4bbd-9ded-de1148536cc3 {
  margin-top: 25px;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
max-width: 1280px;
}
@media (max-width: 767px){#s-b76a2875-e988-4bbd-9ded-de1148536cc3 {
  margin-top: 0px;
margin-bottom: 25px;
}
}
@media (min-width: 0px) {
[id="s-b76a2875-e988-4bbd-9ded-de1148536cc3"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b76a2875-e988-4bbd-9ded-de1148536cc3"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 992px) {
[id="s-b76a2875-e988-4bbd-9ded-de1148536cc3"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (min-width: 1200px) {
[id="s-b76a2875-e988-4bbd-9ded-de1148536cc3"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 30.0px);
}

}

@media (max-width: 767px) {
  [id="s-b76a2875-e988-4bbd-9ded-de1148536cc3"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-b7d2d04a-8485-4207-b4e2-06cfd92d19a4 {
  margin-top: 1em;
margin-bottom: 2em;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}
@media (max-width: 767px){#s-b7d2d04a-8485-4207-b4e2-06cfd92d19a4 {
  margin-top: 0em;
}
}
#s-b7d2d04a-8485-4207-b4e2-06cfd92d19a4 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 42px;
  line-height: 1em;
  
  text-align: left;
}



#s-57531ec3-a9e4-4678-a70a-a5a6f93885b8 {
  padding-top: 10px;
padding-bottom: 10px;
max-width: 32em;
text-align: left;
}

#s-57531ec3-a9e4-4678-a70a-a5a6f93885b8 .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-db992652-0dfb-4bcd-a80c-f4851954f8ba {
  padding-top: 10px;
padding-bottom: 10px;
max-width: 32em;
text-align: left;
}

#s-db992652-0dfb-4bcd-a80c-f4851954f8ba .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-478deadb-5dfd-4c23-b476-b04646d406af {
  margin-top: 2em;
margin-bottom: 2em;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 8px;
max-width: 100%;
background-color: rgba(227, 56, 77, 1);
text-align: left;
text-decoration: none;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-478deadb-5dfd-4c23-b476-b04646d406af:hover {background-color: rgba(233, 73, 93, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-478deadb-5dfd-4c23-b476-b04646d406af:active {background-color: rgba(233, 73, 93, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (max-width: 767px){#s-478deadb-5dfd-4c23-b476-b04646d406af {
  margin-top: 2em;
margin-bottom: 2em;
padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 8px;
max-width: 100%;
text-align: center;
text-decoration: none;
}
}

  #s-478deadb-5dfd-4c23-b476-b04646d406af-root {
    text-align: left;
  }


#s-478deadb-5dfd-4c23-b476-b04646d406af.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-478deadb-5dfd-4c23-b476-b04646d406af-root {
    text-align: left;
  }


#s-478deadb-5dfd-4c23-b476-b04646d406af.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-478deadb-5dfd-4c23-b476-b04646d406af-root {
    text-align: left;
  }


#s-478deadb-5dfd-4c23-b476-b04646d406af.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-478deadb-5dfd-4c23-b476-b04646d406af-root {
    text-align: left;
  }


#s-478deadb-5dfd-4c23-b476-b04646d406af.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-478deadb-5dfd-4c23-b476-b04646d406af-root {
    text-align: center;
  }


#s-478deadb-5dfd-4c23-b476-b04646d406af.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  block ;
}
}
#s-8a2fd100-face-4e6e-9ab4-f400bab8aa37 {
  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;
}
@media (max-width: 767px){#s-8a2fd100-face-4e6e-9ab4-f400bab8aa37 {
  display: none;
}
#s-8a2fd100-face-4e6e-9ab4-f400bab8aa37, #wrap-s-8a2fd100-face-4e6e-9ab4-f400bab8aa37 { display: none !important; }}






  #s-8a2fd100-face-4e6e-9ab4-f400bab8aa37 img.shogun-image {
    

    
    
    
  }


#s-8a2fd100-face-4e6e-9ab4-f400bab8aa37 .shogun-image-content {
  
    align-items: center;
  
}

#s-39e5ade2-ef60-4717-8e0d-901e4a4b1852 {
  padding-top: 30px;
padding-left: 4%;
padding-bottom: 30px;
padding-right: 4%;
min-height: 50px;
}








#s-39e5ade2-ef60-4717-8e0d-901e4a4b1852 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-39e5ade2-ef60-4717-8e0d-901e4a4b1852.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6a657920-b5c8-456d-a1ec-10a6eb5147ad {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
min-height: 50px;
max-width: 1280px;
}








#s-6a657920-b5c8-456d-a1ec-10a6eb5147ad > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6a657920-b5c8-456d-a1ec-10a6eb5147ad.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-23dab0e8-d075-45fb-8892-4ea1d1ee8ab0 {
  margin-top: 0%;
margin-bottom: 0%;
padding-top: 4%;
padding-bottom: 10%;
min-height: 50px;
}








#s-23dab0e8-d075-45fb-8892-4ea1d1ee8ab0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-23dab0e8-d075-45fb-8892-4ea1d1ee8ab0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2b9199d5-af19-42c6-b244-8920e97c806d {
  text-align: center;
}
@media (min-width: 1200px){#s-2b9199d5-af19-42c6-b244-8920e97c806d {
  display: none;
}
#s-2b9199d5-af19-42c6-b244-8920e97c806d, #wrap-s-2b9199d5-af19-42c6-b244-8920e97c806d { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2b9199d5-af19-42c6-b244-8920e97c806d {
  display: none;
}
#s-2b9199d5-af19-42c6-b244-8920e97c806d, #wrap-s-2b9199d5-af19-42c6-b244-8920e97c806d { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2b9199d5-af19-42c6-b244-8920e97c806d {
  display: none;
}
#s-2b9199d5-af19-42c6-b244-8920e97c806d, #wrap-s-2b9199d5-af19-42c6-b244-8920e97c806d { display: none !important; }}






  #s-2b9199d5-af19-42c6-b244-8920e97c806d img.shogun-image {
    

    
    
    
  }


#s-2b9199d5-af19-42c6-b244-8920e97c806d .shogun-image-content {
  
    align-items: center;
  
}

#s-1ab3a63a-9766-4383-b570-e7fd2c48fe1a {
  padding-top: 10px;
padding-bottom: 10px;
max-width: 42em;
text-align: left;
}

#s-1ab3a63a-9766-4383-b570-e7fd2c48fe1a .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 72px;
  
  
  text-align: left;
}



#s-88cb752b-a79d-4ea2-b34c-ad6d2669b143 {
  margin-top: 3em;
margin-bottom: 2em;
padding-top: 5px;
padding-bottom: 5px;
max-width: 25em;
text-align: left;
}

#s-88cb752b-a79d-4ea2-b34c-ad6d2669b143 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 26px;
  
  
  text-align: left;
}



#s-3fbb33fb-96af-4e29-bf5f-5d0f8e93c842 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 5px;
padding-bottom: 5px;
max-width: 18em;
text-align: left;
}

#s-3fbb33fb-96af-4e29-bf5f-5d0f8e93c842 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 18px;
  
  
  text-align: left;
}



#s-c10ff110-918b-459b-9f6f-1f3b71ad4c55 {
  margin-top: 2em;
margin-bottom: 2em;
}

#s-bbe93f56-057a-4902-8972-bab6d44898a8 {
  padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 8px;
max-width: 100%;
background-color: rgba(227, 56, 77, 1);
text-align: left;
text-decoration: none;
color: rgba(255, 255, 255, 1);
background-image: none;
hover-type: color;
}
#s-bbe93f56-057a-4902-8972-bab6d44898a8:hover {background-color: rgba(233, 73, 93, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-bbe93f56-057a-4902-8972-bab6d44898a8:active {background-color: rgba(233, 73, 93, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (max-width: 767px){#s-bbe93f56-057a-4902-8972-bab6d44898a8 {
  padding-top: 15px;
padding-left: 35px;
padding-bottom: 15px;
padding-right: 35px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 8px;
max-width: 100%;
text-align: center;
text-decoration: none;
}
}

  #s-bbe93f56-057a-4902-8972-bab6d44898a8-root {
    text-align: left;
  }


#s-bbe93f56-057a-4902-8972-bab6d44898a8.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-bbe93f56-057a-4902-8972-bab6d44898a8-root {
    text-align: left;
  }


#s-bbe93f56-057a-4902-8972-bab6d44898a8.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-bbe93f56-057a-4902-8972-bab6d44898a8-root {
    text-align: left;
  }


#s-bbe93f56-057a-4902-8972-bab6d44898a8.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-bbe93f56-057a-4902-8972-bab6d44898a8-root {
    text-align: left;
  }


#s-bbe93f56-057a-4902-8972-bab6d44898a8.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-bbe93f56-057a-4902-8972-bab6d44898a8-root {
    text-align: center;
  }


#s-bbe93f56-057a-4902-8972-bab6d44898a8.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  block ;
}
}
#s-1e344de0-112d-4201-9ed0-2f1d079e7fd7 {
  margin-top: 0px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
padding-left: 0%;
padding-right: 0%;
}
@media (max-width: 767px){#s-1e344de0-112d-4201-9ed0-2f1d079e7fd7 {
  display: none;
}
#s-1e344de0-112d-4201-9ed0-2f1d079e7fd7, #wrap-s-1e344de0-112d-4201-9ed0-2f1d079e7fd7 { display: none !important; }}
@media (min-width: 0px) {
[id="s-1e344de0-112d-4201-9ed0-2f1d079e7fd7"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 30.0px);
}

}

@media (min-width: 768px) {
[id="s-1e344de0-112d-4201-9ed0-2f1d079e7fd7"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 45.0px);
}

}

@media (min-width: 992px) {
[id="s-1e344de0-112d-4201-9ed0-2f1d079e7fd7"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 45.0px);
}

}

@media (min-width: 1200px) {
[id="s-1e344de0-112d-4201-9ed0-2f1d079e7fd7"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 45.0px);
}

}

#s-162547b4-de33-4ae2-bcfb-631a559e0361 {
  min-height: 50px;
}
@media (max-width: 767px){#s-162547b4-de33-4ae2-bcfb-631a559e0361 {
  margin-bottom: 20px;
}
}
#s-162547b4-de33-4ae2-bcfb-631a559e0361 {
  background-image: url();
}








#s-162547b4-de33-4ae2-bcfb-631a559e0361 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-162547b4-de33-4ae2-bcfb-631a559e0361.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3fba3c6d-9f4f-4fa8-9fa3-8028a9926c38 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-1328ee6b-5bc3-4ef1-955b-18f1553d3dce {
  margin-top: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-1328ee6b-5bc3-4ef1-955b-18f1553d3dce .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}



#s-d9133bb0-0b01-49bf-b6cf-37a435238d66 {
  margin-top: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-d9133bb0-0b01-49bf-b6cf-37a435238d66 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: center;
}



#s-0d9ae538-56fe-436e-8cee-194ef1043dbe {
  min-height: 50px;
}
@media (max-width: 767px){#s-0d9ae538-56fe-436e-8cee-194ef1043dbe {
  margin-bottom: 20px;
}
}
#s-0d9ae538-56fe-436e-8cee-194ef1043dbe {
  background-image: url();
}








#s-0d9ae538-56fe-436e-8cee-194ef1043dbe > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0d9ae538-56fe-436e-8cee-194ef1043dbe.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d4794b4a-54bd-47f9-beb7-132d8de59ebc {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-8c87ebdf-0246-4ab0-b45c-6f8d08657f76 {
  margin-top: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-8c87ebdf-0246-4ab0-b45c-6f8d08657f76 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}



#s-024681dc-8a54-4763-ab1c-14befbc9006f {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
max-width: 11em;
text-align: center;
}

#s-024681dc-8a54-4763-ab1c-14befbc9006f .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: center;
}



#s-553bc880-77db-4e5c-b3a0-139f56cb0b9c {
  min-height: 50px;
}
@media (max-width: 767px){#s-553bc880-77db-4e5c-b3a0-139f56cb0b9c {
  margin-bottom: 20px;
}
}
#s-553bc880-77db-4e5c-b3a0-139f56cb0b9c {
  background-image: url();
}








#s-553bc880-77db-4e5c-b3a0-139f56cb0b9c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-553bc880-77db-4e5c-b3a0-139f56cb0b9c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8fd6bdd1-1f3f-4d94-b17a-3b7fbbf2576c {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-c82dfa1f-af18-4587-aea5-6f53a0e42989 {
  margin-top: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-c82dfa1f-af18-4587-aea5-6f53a0e42989 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}



#s-7cb5bbac-82ca-43d3-86e9-e12f400b4d2a {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
max-width: 12em;
text-align: center;
}

#s-7cb5bbac-82ca-43d3-86e9-e12f400b4d2a .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: center;
}



#s-2d74741f-bd86-4099-8f11-8431c8156efc {
  min-height: 50px;
}
@media (max-width: 767px){#s-2d74741f-bd86-4099-8f11-8431c8156efc {
  margin-bottom: 20px;
}
}
#s-2d74741f-bd86-4099-8f11-8431c8156efc {
  background-image: url();
}








#s-2d74741f-bd86-4099-8f11-8431c8156efc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2d74741f-bd86-4099-8f11-8431c8156efc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ce7eb3fa-6c9a-455c-b09d-acc4e3c24b68 {
  margin-left: auto;
margin-right: auto;
text-align: center;
}

#s-dfb52601-5cbb-42ee-96df-2a036a01fdfa {
  margin-top: 10px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-dfb52601-5cbb-42ee-96df-2a036a01fdfa .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  600 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: center;
}



#s-bfe7b448-75b2-45dc-a85f-b9cbe4e8bbbc {
  margin-top: 10px;
margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-bottom: 0px;
max-width: 10em;
text-align: center;
}

#s-bfe7b448-75b2-45dc-a85f-b9cbe4e8bbbc .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: center;
}



#s-260c0dd0-f44c-488d-864b-f4d6b66b9fb1 {
  text-align: center;
}
@media (min-width: 1200px){#s-260c0dd0-f44c-488d-864b-f4d6b66b9fb1 {
  display: none;
}
#s-260c0dd0-f44c-488d-864b-f4d6b66b9fb1, #wrap-s-260c0dd0-f44c-488d-864b-f4d6b66b9fb1 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-260c0dd0-f44c-488d-864b-f4d6b66b9fb1 {
  display: none;
}
#s-260c0dd0-f44c-488d-864b-f4d6b66b9fb1, #wrap-s-260c0dd0-f44c-488d-864b-f4d6b66b9fb1 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-260c0dd0-f44c-488d-864b-f4d6b66b9fb1 {
  display: none;
}
#s-260c0dd0-f44c-488d-864b-f4d6b66b9fb1, #wrap-s-260c0dd0-f44c-488d-864b-f4d6b66b9fb1 { display: none !important; }}






  #s-260c0dd0-f44c-488d-864b-f4d6b66b9fb1 img.shogun-image {
    

    
    
    
  }


#s-260c0dd0-f44c-488d-864b-f4d6b66b9fb1 .shogun-image-content {
  
    align-items: center;
  
}

#s-941a5137-f9b7-45a9-9630-b6cbb9b0958a {
  margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 70px;
padding-left: 2%;
padding-bottom: 70px;
padding-right: 2%;
min-height: 50px;
background-color: rgba(16, 69, 186, 1);
}








#s-941a5137-f9b7-45a9-9630-b6cbb9b0958a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-941a5137-f9b7-45a9-9630-b6cbb9b0958a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a231de9a-88d6-4f42-8302-5c95a33ec4a8 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1280px;
}








#s-a231de9a-88d6-4f42-8302-5c95a33ec4a8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a231de9a-88d6-4f42-8302-5c95a33ec4a8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8ec59a41-7f5c-49d4-944e-a85afdb4c870 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 33em;
text-align: center;
}

#s-8ec59a41-7f5c-49d4-944e-a85afdb4c870 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 42px;
  
  
  text-align: center;
}



#s-f6cf5cab-734c-436f-8c50-1c3d32c3a320 {
  margin-top: 20px;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-left: 2%;
padding-right: 2%;
max-width: 1280px;
}

@media (min-width: 0px) {
[id="s-f6cf5cab-734c-436f-8c50-1c3d32c3a320"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f6cf5cab-734c-436f-8c50-1c3d32c3a320"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 992px) {
[id="s-f6cf5cab-734c-436f-8c50-1c3d32c3a320"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

@media (min-width: 1200px) {
[id="s-f6cf5cab-734c-436f-8c50-1c3d32c3a320"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 10.0px);
}

}

#s-0ee8f894-a03f-484f-ad87-ed91ff02802d {
  box-shadow:1px 1px 15px 1px rgba(0, 0, 0, 0.5);
margin-top: 10px;
margin-left: 5px;
margin-bottom: 10px;
margin-right: 5px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-style: solid;
border-radius: 16px;
min-height: 500px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-0ee8f894-a03f-484f-ad87-ed91ff02802d {
  display: none;
}
#s-0ee8f894-a03f-484f-ad87-ed91ff02802d, #wrap-s-0ee8f894-a03f-484f-ad87-ed91ff02802d { display: none !important; }}







#s-0ee8f894-a03f-484f-ad87-ed91ff02802d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0ee8f894-a03f-484f-ad87-ed91ff02802d {
  cursor: pointer;
}#s-0ee8f894-a03f-484f-ad87-ed91ff02802d.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-2cdb3b96-92c8-4b56-8a59-ca359ca175e2 {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 8px;
text-align: center;
background-color: rgba(227, 56, 77, 1);
}







  #s-2cdb3b96-92c8-4b56-8a59-ca359ca175e2 img.shogun-image {
    

    
    
    
  }


#s-2cdb3b96-92c8-4b56-8a59-ca359ca175e2 .shogun-image-content {
  
    align-items: center;
  
}

#s-7c1dd93b-984a-4275-8806-4af02af83304 {
  margin-left: 15px;
margin-right: 15px;
max-width: 170px;
}

#s-6ca9d074-8d2c-4751-a0c7-f1ce795cd1e3 {
  margin-top: 1em;
margin-left: 15px;
margin-right: 15px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-6ca9d074-8d2c-4751-a0c7-f1ce795cd1e3 .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-3b761dc2-e95d-443d-ab38-814c020fd373 {
  margin-top: 1em;
margin-left: 15px;
margin-bottom: 1em;
margin-right: 15px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-3b761dc2-e95d-443d-ab38-814c020fd373 .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-90014efa-7211-428d-afba-46b9619b2dc7 {
  box-shadow:1px 1px 15px 1px rgba(0, 0, 0, 0.5);
margin-top: 10px;
margin-left: 5px;
margin-bottom: 10px;
margin-right: 5px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-style: solid;
border-radius: 16px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-90014efa-7211-428d-afba-46b9619b2dc7 {
  display: none;
}
#s-90014efa-7211-428d-afba-46b9619b2dc7, #wrap-s-90014efa-7211-428d-afba-46b9619b2dc7 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-90014efa-7211-428d-afba-46b9619b2dc7 {
  display: none;
}
#s-90014efa-7211-428d-afba-46b9619b2dc7, #wrap-s-90014efa-7211-428d-afba-46b9619b2dc7 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-90014efa-7211-428d-afba-46b9619b2dc7 {
  display: none;
}
#s-90014efa-7211-428d-afba-46b9619b2dc7, #wrap-s-90014efa-7211-428d-afba-46b9619b2dc7 { display: none !important; }}







#s-90014efa-7211-428d-afba-46b9619b2dc7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-90014efa-7211-428d-afba-46b9619b2dc7 {
  cursor: pointer;
}#s-90014efa-7211-428d-afba-46b9619b2dc7.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-4415ef7e-302c-4d0e-ab93-4f03a89d39f7 {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
}

@media (min-width: 0px) {
[id="s-4415ef7e-302c-4d0e-ab93-4f03a89d39f7"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-4415ef7e-302c-4d0e-ab93-4f03a89d39f7"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-4415ef7e-302c-4d0e-ab93-4f03a89d39f7"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-4415ef7e-302c-4d0e-ab93-4f03a89d39f7"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 7.5px);
}

}

#s-997553f7-f5a0-40e7-99fe-55097cf4a537 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 8px;
text-align: center;
background-color: rgba(241, 89, 42, 1);
}







  #s-997553f7-f5a0-40e7-99fe-55097cf4a537 img.shogun-image {
    

    
    
    
  }


#s-997553f7-f5a0-40e7-99fe-55097cf4a537 .shogun-image-content {
  
    align-items: center;
  
}

#s-603b7688-6b1f-405a-85e1-5be823ac333e {
  max-width: 150px;
}

#s-82780f62-7f38-42d2-9301-2c133f2f255f {
  margin-top: 1em;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-82780f62-7f38-42d2-9301-2c133f2f255f .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}



#s-303fa81e-e4be-438a-8a45-6c6304fed428 {
  margin-top: 1em;
margin-bottom: 1em;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-303fa81e-e4be-438a-8a45-6c6304fed428 .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}



#s-80ce8cc7-5a4d-4445-ba4b-61fd35975f36 {
  box-shadow:1px 1px 15px 1px rgba(0, 0, 0, 0.5);
margin-top: 10px;
margin-left: 5px;
margin-bottom: 10px;
margin-right: 5px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 16px;
min-height: 500px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-80ce8cc7-5a4d-4445-ba4b-61fd35975f36 {
  display: none;
}
#s-80ce8cc7-5a4d-4445-ba4b-61fd35975f36, #wrap-s-80ce8cc7-5a4d-4445-ba4b-61fd35975f36 { display: none !important; }}







#s-80ce8cc7-5a4d-4445-ba4b-61fd35975f36 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-80ce8cc7-5a4d-4445-ba4b-61fd35975f36 {
  cursor: pointer;
}#s-80ce8cc7-5a4d-4445-ba4b-61fd35975f36.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-0776f654-4700-4e06-85c8-3f16162edfe1 {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 8px;
text-align: center;
background-color: rgba(227, 56, 77, 1);
}







  #s-0776f654-4700-4e06-85c8-3f16162edfe1 img.shogun-image {
    

    
    
    
  }


#s-0776f654-4700-4e06-85c8-3f16162edfe1 .shogun-image-content {
  
    align-items: center;
  
}

#s-980a400f-d52b-4584-96be-bf285c554ab0 {
  margin-left: 15px;
margin-right: 15px;
max-width: 170px;
}

#s-4000dadb-4b00-4307-90f3-49edc8a76800 {
  margin-top: 1em;
margin-left: 15px;
margin-right: 15px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-4000dadb-4b00-4307-90f3-49edc8a76800 .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-7ff3dd47-6482-4a3a-8ade-e7eafeb1c96a {
  margin-top: 1em;
margin-left: 15px;
margin-bottom: 1em;
margin-right: 15px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-7ff3dd47-6482-4a3a-8ade-e7eafeb1c96a .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-41dfcb87-e4c2-47e8-9ab8-53b6a8fbafbd {
  box-shadow:1px 1px 15px 1px rgba(0, 0, 0, 0.5);
margin-top: 10px;
margin-left: 5px;
margin-bottom: 10px;
margin-right: 5px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-style: solid;
border-radius: 16px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-41dfcb87-e4c2-47e8-9ab8-53b6a8fbafbd {
  display: none;
}
#s-41dfcb87-e4c2-47e8-9ab8-53b6a8fbafbd, #wrap-s-41dfcb87-e4c2-47e8-9ab8-53b6a8fbafbd { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-41dfcb87-e4c2-47e8-9ab8-53b6a8fbafbd {
  display: none;
}
#s-41dfcb87-e4c2-47e8-9ab8-53b6a8fbafbd, #wrap-s-41dfcb87-e4c2-47e8-9ab8-53b6a8fbafbd { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-41dfcb87-e4c2-47e8-9ab8-53b6a8fbafbd {
  display: none;
}
#s-41dfcb87-e4c2-47e8-9ab8-53b6a8fbafbd, #wrap-s-41dfcb87-e4c2-47e8-9ab8-53b6a8fbafbd { display: none !important; }}







#s-41dfcb87-e4c2-47e8-9ab8-53b6a8fbafbd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-41dfcb87-e4c2-47e8-9ab8-53b6a8fbafbd {
  cursor: pointer;
}#s-41dfcb87-e4c2-47e8-9ab8-53b6a8fbafbd.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-f3ca9239-769c-4fd2-b59c-f507ef92868b {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
}

@media (min-width: 0px) {
[id="s-f3ca9239-769c-4fd2-b59c-f507ef92868b"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-f3ca9239-769c-4fd2-b59c-f507ef92868b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-f3ca9239-769c-4fd2-b59c-f507ef92868b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-f3ca9239-769c-4fd2-b59c-f507ef92868b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 7.5px);
}

}

#s-430a9761-8f0b-45d3-b1be-2b1c1a437818 {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 8px;
text-align: center;
background-color: rgba(241, 89, 42, 1);
}







  #s-430a9761-8f0b-45d3-b1be-2b1c1a437818 img.shogun-image {
    

    
    
    
  }


#s-430a9761-8f0b-45d3-b1be-2b1c1a437818 .shogun-image-content {
  
    align-items: center;
  
}

#s-5b1642bb-f7e6-4e5a-b739-5fd53284a205 {
  max-width: 150px;
}

#s-ccefdf13-27b3-4b0a-b025-66fb073d9b16 {
  margin-top: 1em;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-ccefdf13-27b3-4b0a-b025-66fb073d9b16 .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}



#s-6dc7f5b1-2cc1-4d6a-bb7b-fd7a32e1a4ec {
  margin-top: 1em;
margin-bottom: 1em;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-6dc7f5b1-2cc1-4d6a-bb7b-fd7a32e1a4ec .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}



#s-8b79111b-5cad-4d63-b231-710df678721c {
  box-shadow:1px 1px 15px 1px rgba(0, 0, 0, 0.5);
margin-top: 10px;
margin-left: 5px;
margin-bottom: 10px;
margin-right: 5px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 16px;
min-height: 500px;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-8b79111b-5cad-4d63-b231-710df678721c {
  display: none;
}
#s-8b79111b-5cad-4d63-b231-710df678721c, #wrap-s-8b79111b-5cad-4d63-b231-710df678721c { display: none !important; }}







#s-8b79111b-5cad-4d63-b231-710df678721c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8b79111b-5cad-4d63-b231-710df678721c {
  cursor: pointer;
}#s-8b79111b-5cad-4d63-b231-710df678721c.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-09c4b55e-5b09-4198-b92a-e6114b25444b {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 8px;
text-align: center;
background-color: rgba(227, 56, 77, 1);
}







  #s-09c4b55e-5b09-4198-b92a-e6114b25444b img.shogun-image {
    

    
    
    
  }


#s-09c4b55e-5b09-4198-b92a-e6114b25444b .shogun-image-content {
  
    align-items: center;
  
}

#s-9a8a5632-881e-43fb-8cac-49c4b18db5ae {
  margin-left: 15px;
margin-right: 15px;
max-width: 170px;
}

#s-6445f91b-31e3-486d-82ea-5d42b227edc4 {
  margin-top: 1em;
margin-left: 15px;
margin-right: 15px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-6445f91b-31e3-486d-82ea-5d42b227edc4 .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-f33f8a2f-254f-4f2f-847f-051e1ca24425 {
  margin-top: 1em;
margin-left: 15px;
margin-bottom: 1em;
margin-right: 15px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-f33f8a2f-254f-4f2f-847f-051e1ca24425 .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 14px;
  
  
  text-align: left;
}



#s-e90318ca-8c47-4d2a-9da6-779f9a56d04f {
  box-shadow:1px 1px 15px 1px rgba(0, 0, 0, 0.5);
margin-top: 10px;
margin-left: 5px;
margin-bottom: 10px;
margin-right: 5px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 1);
border-style: solid;
border-radius: 16px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-e90318ca-8c47-4d2a-9da6-779f9a56d04f {
  display: none;
}
#s-e90318ca-8c47-4d2a-9da6-779f9a56d04f, #wrap-s-e90318ca-8c47-4d2a-9da6-779f9a56d04f { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e90318ca-8c47-4d2a-9da6-779f9a56d04f {
  display: none;
}
#s-e90318ca-8c47-4d2a-9da6-779f9a56d04f, #wrap-s-e90318ca-8c47-4d2a-9da6-779f9a56d04f { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e90318ca-8c47-4d2a-9da6-779f9a56d04f {
  display: none;
}
#s-e90318ca-8c47-4d2a-9da6-779f9a56d04f, #wrap-s-e90318ca-8c47-4d2a-9da6-779f9a56d04f { display: none !important; }}







#s-e90318ca-8c47-4d2a-9da6-779f9a56d04f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e90318ca-8c47-4d2a-9da6-779f9a56d04f {
  cursor: pointer;
}#s-e90318ca-8c47-4d2a-9da6-779f9a56d04f.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-9b3305a7-f32a-4aa6-a135-900f9f5daf12 {
  margin-top: 15px;
margin-left: 15px;
margin-bottom: 15px;
margin-right: 15px;
}

@media (min-width: 0px) {
[id="s-9b3305a7-f32a-4aa6-a135-900f9f5daf12"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 768px) {
[id="s-9b3305a7-f32a-4aa6-a135-900f9f5daf12"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 992px) {
[id="s-9b3305a7-f32a-4aa6-a135-900f9f5daf12"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 7.5px);
}

}

@media (min-width: 1200px) {
[id="s-9b3305a7-f32a-4aa6-a135-900f9f5daf12"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 7.5px);
}

}

#s-86638eb4-b79c-4587-a65e-9ddf977d538f {
  border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 8px;
text-align: center;
background-color: rgba(241, 89, 42, 1);
}







  #s-86638eb4-b79c-4587-a65e-9ddf977d538f img.shogun-image {
    

    
    
    
  }


#s-86638eb4-b79c-4587-a65e-9ddf977d538f .shogun-image-content {
  
    align-items: center;
  
}

#s-5f4fc244-3d54-4abb-952f-0fc282c1321e {
  max-width: 150px;
}

#s-86f5667a-80a8-4eae-8b9f-753af4350e03 {
  margin-top: 1em;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-86f5667a-80a8-4eae-8b9f-753af4350e03 .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}



#s-621cab52-5aa5-4b9f-a971-d155bddf3fe1 {
  margin-top: 1em;
margin-bottom: 1em;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-621cab52-5aa5-4b9f-a971-d155bddf3fe1 .shogun-heading-component h4 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 12px;
  
  
  text-align: left;
}



#s-58b926b0-c035-4316-a136-a8ad5d5bd8e2 {
  margin-top: 0.5em;
margin-left: 6px;
margin-bottom: 0.5em;
margin-right: 6px;
padding-top: 15px;
padding-left: 6em;
padding-bottom: 15px;
padding-right: 6em;
border-radius: 8px;
max-width: 95%;
background-color: rgba(227, 56, 77, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-58b926b0-c035-4316-a136-a8ad5d5bd8e2:hover {background-color: rgba(233, 73, 93, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-58b926b0-c035-4316-a136-a8ad5d5bd8e2:active {background-color: rgba(233, 73, 93, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}@media (max-width: 767px){#s-58b926b0-c035-4316-a136-a8ad5d5bd8e2 {
  padding-left: 3em;
padding-right: 3em;
max-width: 100%;
}
}

  #s-58b926b0-c035-4316-a136-a8ad5d5bd8e2-root {
    text-align: center;
  }


#s-58b926b0-c035-4316-a136-a8ad5d5bd8e2.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-58b926b0-c035-4316-a136-a8ad5d5bd8e2-root {
    text-align: center;
  }


#s-58b926b0-c035-4316-a136-a8ad5d5bd8e2.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-58b926b0-c035-4316-a136-a8ad5d5bd8e2-root {
    text-align: center;
  }


#s-58b926b0-c035-4316-a136-a8ad5d5bd8e2.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-58b926b0-c035-4316-a136-a8ad5d5bd8e2-root {
    text-align: center;
  }


#s-58b926b0-c035-4316-a136-a8ad5d5bd8e2.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-58b926b0-c035-4316-a136-a8ad5d5bd8e2-root {
    text-align: center;
  }


#s-58b926b0-c035-4316-a136-a8ad5d5bd8e2.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 600;
  
  font-family: Poppins;
  display:  block ;
}
}
#s-5190c9a4-340f-491f-851c-d6cfe92176a2 {
  margin-top: 2em;
margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 12px;
max-width: 1280px;
text-align: left;
background-color: rgba(255, 255, 255, 1);
}

#s-9b32f376-0062-42fb-b626-7a465af46481 {
  margin-left: 0%;
margin-right: 0%;
padding-top: 10%;
padding-left: 4%;
padding-bottom: 10%;
padding-right: 4%;
min-height: 50px;
}

#s-9b32f376-0062-42fb-b626-7a465af46481 {
  background-image: url();
}








#s-9b32f376-0062-42fb-b626-7a465af46481 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9b32f376-0062-42fb-b626-7a465af46481.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-adb72c35-fb72-4733-b173-081e678f62cf {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1280px;
}








#s-adb72c35-fb72-4733-b173-081e678f62cf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-adb72c35-fb72-4733-b173-081e678f62cf.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f1ab7571-cb71-4ff3-8238-918b7f38bff6 {
  margin-top: 20px;
margin-bottom: 20px;
padding-top: 10px;
padding-bottom: 10px;
max-width: 35em;
text-align: left;
}

#s-f1ab7571-cb71-4ff3-8238-918b7f38bff6 .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 42px;
  
  
  text-align: left;
}



#s-6b454df0-54b7-49d9-9d43-e19a1df82995 {
  margin-top: 10px;
padding-top: 0px;
padding-bottom: 0px;
max-width: 35em;
text-align: left;
}

#s-6b454df0-54b7-49d9-9d43-e19a1df82995 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}



#s-b2ae62d9-8ab6-4fdb-9585-956121ee3cb2 {
  margin-top: 10px;
padding-top: 0px;
padding-bottom: 0px;
max-width: 28em;
text-align: left;
}

#s-b2ae62d9-8ab6-4fdb-9585-956121ee3cb2 .shogun-heading-component h3 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 20px;
  
  
  text-align: left;
}



#s-267108ff-7c5d-4249-8af0-c60c76d98e43 {
  padding-top: 10px;
padding-bottom: 10px;
min-height: 50px;
}
@media (min-width: 1200px){#s-267108ff-7c5d-4249-8af0-c60c76d98e43 {
  margin-top: 0em;
margin-bottom: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-267108ff-7c5d-4249-8af0-c60c76d98e43 {
  margin-top: 0em;
margin-bottom: 0em;
}
}







#s-267108ff-7c5d-4249-8af0-c60c76d98e43 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-267108ff-7c5d-4249-8af0-c60c76d98e43.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a21b1963-6163-404e-9196-69fc611acf07 {
  padding-top: 10px;
padding-left: 2%;
padding-bottom: 10px;
padding-right: 2%;
min-height: 50px;
}

#s-a21b1963-6163-404e-9196-69fc611acf07 {
  background-image: url();
}








#s-a21b1963-6163-404e-9196-69fc611acf07 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a21b1963-6163-404e-9196-69fc611acf07.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f963d8e7-c64a-41f5-b884-59a29273f941 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 0px;
margin-right: auto;
min-height: 50px;
max-width: 1440px;
}








#s-f963d8e7-c64a-41f5-b884-59a29273f941 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f963d8e7-c64a-41f5-b884-59a29273f941.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e90c1ecd-400d-425a-b6fc-1ba8f13fab2b {
  text-align: left;
}
@media (min-width: 1200px){#s-e90c1ecd-400d-425a-b6fc-1ba8f13fab2b {
  margin-top: 2em;
margin-bottom: 2em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e90c1ecd-400d-425a-b6fc-1ba8f13fab2b {
  margin-top: 2em;
margin-bottom: 2em;
}
}
#s-b43f827f-3d54-4df0-9874-9245a28b88e1 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 1280px;
text-align: left;
}
@media (max-width: 767px){#s-b43f827f-3d54-4df0-9874-9245a28b88e1 {
  margin-top: 5px;
margin-bottom: 5px;
}
}
#s-b43f827f-3d54-4df0-9874-9245a28b88e1 .shogun-heading-component h4 {
  color: rgba(255, 255, 255, 0.5);
  font-weight:  normal ;
  font-family: "Clash Grotesk";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-846946cd-4c3e-4207-8fcc-fd8da367e128 {
  margin-left: auto;
margin-right: auto;
max-width: 1280px;
}

@media (min-width: 0px) {
[id="s-846946cd-4c3e-4207-8fcc-fd8da367e128"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-846946cd-4c3e-4207-8fcc-fd8da367e128"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-846946cd-4c3e-4207-8fcc-fd8da367e128"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-846946cd-4c3e-4207-8fcc-fd8da367e128"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-846946cd-4c3e-4207-8fcc-fd8da367e128"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-846946cd-4c3e-4207-8fcc-fd8da367e128"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-846946cd-4c3e-4207-8fcc-fd8da367e128"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

}

#s-8dd88805-58bb-495d-b696-e7278e89e649 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-8dd88805-58bb-495d-b696-e7278e89e649 .shogun-heading-component h2 {
  color: rgba(252, 252, 252, 1);
  font-weight:  normal ;
  font-family: "Clash Grotesk";
  font-style:  normal ;
  font-size: 42px;
  
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-8dd88805-58bb-495d-b696-e7278e89e649 .shogun-heading-component h2 {
  color: rgba(252, 252, 252, 1);
  font-weight:  normal ;
  font-family: "Clash Grotesk";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


}@media (max-width: 767px){#s-8dd88805-58bb-495d-b696-e7278e89e649 .shogun-heading-component h2 {
  color: rgba(252, 252, 252, 1);
  font-weight:  normal ;
  font-family: "Clash Grotesk";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


}
#s-98ed6bee-102a-4ac7-b868-ccdd42699e90 {
  margin-top: 24px;
margin-bottom: 24px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-98ed6bee-102a-4ac7-b868-ccdd42699e90 {
  display: none;
}
#s-98ed6bee-102a-4ac7-b868-ccdd42699e90, #wrap-s-98ed6bee-102a-4ac7-b868-ccdd42699e90 { display: none !important; }}@media (max-width: 767px){#s-98ed6bee-102a-4ac7-b868-ccdd42699e90 {
  margin-top: 10px;
margin-bottom: 10px;
}
}
#s-98d010f7-f46b-4835-a414-269db1a19e30 {
  text-align: left;
}

#s-3e391386-3bc8-4a3d-a0ff-eacf9d3f6b0a {
  padding-top: 10px;
padding-bottom: 10px;
max-width: 52em;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-3e391386-3bc8-4a3d-a0ff-eacf9d3f6b0a {
  display: none;
}
#s-3e391386-3bc8-4a3d-a0ff-eacf9d3f6b0a, #wrap-s-3e391386-3bc8-4a3d-a0ff-eacf9d3f6b0a { display: none !important; }}
#s-3e391386-3bc8-4a3d-a0ff-eacf9d3f6b0a .shogun-heading-component h5 {
  color: rgba(252, 252, 252, 1);
  font-weight:  normal ;
  font-family: "Figtree";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.35em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-3e391386-3bc8-4a3d-a0ff-eacf9d3f6b0a .shogun-heading-component h5 {
  color: rgba(252, 252, 252, 1);
  font-weight:  normal ;
  font-family: "Figtree";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.35em;
  
  
}


}@media (max-width: 767px){#s-3e391386-3bc8-4a3d-a0ff-eacf9d3f6b0a .shogun-heading-component h5 {
  color: rgba(252, 252, 252, 1);
  font-weight:  normal ;
  font-family: "Figtree";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.35em;
  
  
}


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

.shg-image-content-wrapper {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shg-image-content-wrapper .shogun-image.hover~* {
  z-index: 1;
}
#s-faf5b6dc-721c-4370-b442-b18efc864190 {
  margin-top: 2em;
margin-bottom: 2em;
max-width: 238px;
aspect-ratio: 238/110;
text-align: center;
}
@media (min-width: 1200px){#s-faf5b6dc-721c-4370-b442-b18efc864190 {
  margin-top: 0px;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-faf5b6dc-721c-4370-b442-b18efc864190 {
  margin-top: 0px;
margin-bottom: 2px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-faf5b6dc-721c-4370-b442-b18efc864190 {
  margin-top: 0em;
}
}@media (max-width: 767px){#s-faf5b6dc-721c-4370-b442-b18efc864190 {
  margin-top: 1em;
margin-bottom: 1em;
}
}




  #s-faf5b6dc-721c-4370-b442-b18efc864190 img.shogun-image,
  #s-faf5b6dc-721c-4370-b442-b18efc864190 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-faf5b6dc-721c-4370-b442-b18efc864190 {
    width: 100%;
    height: auto;
  }

  #s-faf5b6dc-721c-4370-b442-b18efc864190 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image {
    
    
  }


.s-faf5b6dc-721c-4370-b442-b18efc864190 .shogun-image-content {
  
    align-items: center;
  
}

.s-faf5b6dc-721c-4370-b442-b18efc864190.shg-align-container {
  display: flex;
  justify-content: center
}

.s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-faf5b6dc-721c-4370-b442-b18efc864190 {
      --shg-aspect-ratio: calc(238/110); 
    }

    .s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image-container {
      position: relative;
    }

    .s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-faf5b6dc-721c-4370-b442-b18efc864190 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
@media (min-width: 1200px){



  #s-faf5b6dc-721c-4370-b442-b18efc864190 img.shogun-image,
  #s-faf5b6dc-721c-4370-b442-b18efc864190 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-faf5b6dc-721c-4370-b442-b18efc864190 {
    width: 100%;
    height: auto;
  }

  #s-faf5b6dc-721c-4370-b442-b18efc864190 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image {
    
    
  }


.s-faf5b6dc-721c-4370-b442-b18efc864190 .shogun-image-content {
  
    align-items: center;
  
}

.s-faf5b6dc-721c-4370-b442-b18efc864190.shg-align-container {
  display: flex;
  justify-content: center
}

.s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-faf5b6dc-721c-4370-b442-b18efc864190 {
      --shg-aspect-ratio: calc(238/110); 
    }

    .s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image-container {
      position: relative;
    }

    .s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-faf5b6dc-721c-4370-b442-b18efc864190 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 992px) and (max-width: 1199px){



  #s-faf5b6dc-721c-4370-b442-b18efc864190 img.shogun-image,
  #s-faf5b6dc-721c-4370-b442-b18efc864190 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-faf5b6dc-721c-4370-b442-b18efc864190 {
    width: 100%;
    height: auto;
  }

  #s-faf5b6dc-721c-4370-b442-b18efc864190 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image {
    
    
  }


.s-faf5b6dc-721c-4370-b442-b18efc864190 .shogun-image-content {
  
    align-items: center;
  
}

.s-faf5b6dc-721c-4370-b442-b18efc864190.shg-align-container {
  display: flex;
  justify-content: center
}

.s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-faf5b6dc-721c-4370-b442-b18efc864190 {
      --shg-aspect-ratio: calc(238/110); 
    }

    .s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image-container {
      position: relative;
    }

    .s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-faf5b6dc-721c-4370-b442-b18efc864190 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (min-width: 768px) and (max-width: 991px){



  #s-faf5b6dc-721c-4370-b442-b18efc864190 img.shogun-image,
  #s-faf5b6dc-721c-4370-b442-b18efc864190 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-faf5b6dc-721c-4370-b442-b18efc864190 {
    width: 100%;
    height: auto;
  }

  #s-faf5b6dc-721c-4370-b442-b18efc864190 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image {
    
    
  }


.s-faf5b6dc-721c-4370-b442-b18efc864190 .shogun-image-content {
  
    align-items: center;
  
}

.s-faf5b6dc-721c-4370-b442-b18efc864190.shg-align-container {
  display: flex;
  justify-content: center
}

.s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-faf5b6dc-721c-4370-b442-b18efc864190 {
      --shg-aspect-ratio: calc(238/110); 
    }

    .s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image-container {
      position: relative;
    }

    .s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-faf5b6dc-721c-4370-b442-b18efc864190 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}@media (max-width: 767px){



  #s-faf5b6dc-721c-4370-b442-b18efc864190 img.shogun-image,
  #s-faf5b6dc-721c-4370-b442-b18efc864190 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-faf5b6dc-721c-4370-b442-b18efc864190 {
    width: 100%;
    height: auto;
  }

  #s-faf5b6dc-721c-4370-b442-b18efc864190 img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image {
    
    
  }


.s-faf5b6dc-721c-4370-b442-b18efc864190 .shogun-image-content {
  
    align-items: center;
  
}

.s-faf5b6dc-721c-4370-b442-b18efc864190.shg-align-container {
  display: flex;
  justify-content: center
}

.s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image {
  box-sizing: border-box;
}




  @supports not (aspect-ratio: 1/1) {
    .s-faf5b6dc-721c-4370-b442-b18efc864190 {
      --shg-aspect-ratio: calc(238/110); 
    }

    .s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image-container {
      position: relative;
    }

    .s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image-container::before {
      float: left;
      padding-top: calc(1 / var(--shg-aspect-ratio) * 100%);
      content: '';
    }

    .s-faf5b6dc-721c-4370-b442-b18efc864190.shogun-image-container::after {
      display: block;
      content: '';
      clear: both;
    }

    .s-faf5b6dc-721c-4370-b442-b18efc864190 img.shogun-image{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }
}
#s-63cafffc-1276-48f6-a0cd-3d83fe7cbd10 {
  margin-top: 24px;
margin-bottom: 24px;
text-align: left;
}
@media (min-width: 1200px){#s-63cafffc-1276-48f6-a0cd-3d83fe7cbd10 {
  display: none;
}
#s-63cafffc-1276-48f6-a0cd-3d83fe7cbd10, #wrap-s-63cafffc-1276-48f6-a0cd-3d83fe7cbd10 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-63cafffc-1276-48f6-a0cd-3d83fe7cbd10 {
  display: none;
}
#s-63cafffc-1276-48f6-a0cd-3d83fe7cbd10, #wrap-s-63cafffc-1276-48f6-a0cd-3d83fe7cbd10 { display: none !important; }}@media (max-width: 767px){#s-63cafffc-1276-48f6-a0cd-3d83fe7cbd10 {
  margin-top: 10px;
margin-bottom: 10px;
display: none;
}
#s-63cafffc-1276-48f6-a0cd-3d83fe7cbd10, #wrap-s-63cafffc-1276-48f6-a0cd-3d83fe7cbd10 { display: none !important; }}
#s-8a206bdf-e7b7-4dbc-89e9-0c3758ec59c3 {
  padding-top: 10px;
padding-bottom: 10px;
max-width: 52em;
text-align: left;
}
@media (min-width: 1200px){#s-8a206bdf-e7b7-4dbc-89e9-0c3758ec59c3 {
  display: none;
}
#s-8a206bdf-e7b7-4dbc-89e9-0c3758ec59c3, #wrap-s-8a206bdf-e7b7-4dbc-89e9-0c3758ec59c3 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8a206bdf-e7b7-4dbc-89e9-0c3758ec59c3 {
  display: none;
}
#s-8a206bdf-e7b7-4dbc-89e9-0c3758ec59c3, #wrap-s-8a206bdf-e7b7-4dbc-89e9-0c3758ec59c3 { display: none !important; }}@media (max-width: 767px){#s-8a206bdf-e7b7-4dbc-89e9-0c3758ec59c3 {
  display: none;
}
#s-8a206bdf-e7b7-4dbc-89e9-0c3758ec59c3, #wrap-s-8a206bdf-e7b7-4dbc-89e9-0c3758ec59c3 { display: none !important; }}
#s-8a206bdf-e7b7-4dbc-89e9-0c3758ec59c3 .shogun-heading-component h5 {
  color: rgba(252, 252, 252, 1);
  font-weight:  normal ;
  font-family: "Figtree";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.35em;
  
  
}


@media (min-width: 768px) and (max-width: 991px){#s-8a206bdf-e7b7-4dbc-89e9-0c3758ec59c3 .shogun-heading-component h5 {
  color: rgba(252, 252, 252, 1);
  font-weight:  normal ;
  font-family: "Figtree";
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.35em;
  
  
}


}@media (max-width: 767px){#s-8a206bdf-e7b7-4dbc-89e9-0c3758ec59c3 .shogun-heading-component h5 {
  color: rgba(252, 252, 252, 1);
  font-weight:  normal ;
  font-family: "Figtree";
  font-style:  normal ;
  font-size: 14px;
  line-height: 1.35em;
  
  
}


}
#s-60abe880-f404-4bc4-88d7-b0a2e3d1972c {
  padding-top: 10px;
padding-left: 0%;
padding-bottom: 10px;
padding-right: 0%;
min-height: 50px;
}

#s-60abe880-f404-4bc4-88d7-b0a2e3d1972c {
  background-image: url();
}








#s-60abe880-f404-4bc4-88d7-b0a2e3d1972c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-60abe880-f404-4bc4-88d7-b0a2e3d1972c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1a534f21-cb60-4f66-8931-6b85e00a766c {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
min-height: 50px;
max-width: 1440px;
}








#s-1a534f21-cb60-4f66-8931-6b85e00a766c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1a534f21-cb60-4f66-8931-6b85e00a766c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ca59c3ce-3eff-4245-abba-ffc79297eb8b {
  text-align: left;
}
@media (min-width: 1200px){#s-ca59c3ce-3eff-4245-abba-ffc79297eb8b {
  margin-top: 3em;
margin-bottom: 0em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-ca59c3ce-3eff-4245-abba-ffc79297eb8b {
  margin-top: 3em;
}
}
#s-193a7614-aaa2-4435-a8da-2aad4999bb92 {
  text-align: left;
}

#s-1b4aa677-e2ea-47b3-b73b-78dd066cae77 {
  text-align: left;
}

#s-4f82dd60-26ed-4f80-8b90-7777878546d7 {
  text-align: left;
}

#s-f5c547fa-3479-40dd-b22e-749aca31094a {
  text-align: left;
}

#s-92c34777-5b97-4a0a-842c-4bf268054d24 {
  margin-top: 2em;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 38em;
text-align: center;
}
@media (max-width: 767px){#s-92c34777-5b97-4a0a-842c-4bf268054d24 {
  padding-left: 2%;
padding-right: 2%;
}
}
#s-92c34777-5b97-4a0a-842c-4bf268054d24 .shogun-heading-component h5 {
  color: rgba(255, 255, 255, 0.5);
  font-weight:  normal ;
  font-family: "Figtree";
  font-style:  normal ;
  font-size: 16px;
  
  
  
}



#s-72f66fcc-05a4-4800-bef4-3d53583b1054 {
  text-align: left;
}

#s-de3abc2b-2ba6-4c2e-8a93-ddecdd678e60 {
  text-align: left;
}
@media (min-width: 1200px){#s-de3abc2b-2ba6-4c2e-8a93-ddecdd678e60 {
  margin-top: 2em;
margin-bottom: 2em;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-de3abc2b-2ba6-4c2e-8a93-ddecdd678e60 {
  margin-top: 2em;
margin-bottom: 2em;
}
}
/*
  $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}
