.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-e43e2c20-c905-4afa-89ba-4faa9c13355b {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
}
@media (max-width: 767px){#s-e43e2c20-c905-4afa-89ba-4faa9c13355b {
  margin-bottom: 20px;
max-width: 150px;
}
}







#s-e43e2c20-c905-4afa-89ba-4faa9c13355b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e43e2c20-c905-4afa-89ba-4faa9c13355b.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;
}
#s-ee172747-6c46-4b7c-b0e3-d1b8b1972aca {
  margin-top: 15px;
margin-left: auto;
margin-right: auto;
max-width: 250px;
text-align: center;
}







  #s-ee172747-6c46-4b7c-b0e3-d1b8b1972aca img.shogun-image {
    

    
    
    
  }


#s-ee172747-6c46-4b7c-b0e3-d1b8b1972aca .shogun-image-content {
  
    align-items: center;
  
}

#s-628dffe3-aa87-479d-951a-44a94a1fba7b {
  margin-left: auto;
margin-right: auto;
min-height: 350px;
max-width: 1200px;
}








#s-628dffe3-aa87-479d-951a-44a94a1fba7b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-628dffe3-aa87-479d-951a-44a94a1fba7b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

@media (min-width: 0px) {
[id="s-a33b1143-3658-482d-8e1c-ba3c9ec52886"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a33b1143-3658-482d-8e1c-ba3c9ec52886"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-a33b1143-3658-482d-8e1c-ba3c9ec52886"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a33b1143-3658-482d-8e1c-ba3c9ec52886"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-a33b1143-3658-482d-8e1c-ba3c9ec52886"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a33b1143-3658-482d-8e1c-ba3c9ec52886"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-a33b1143-3658-482d-8e1c-ba3c9ec52886"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

}

@media (max-width: 767px) {
  [id="s-a33b1143-3658-482d-8e1c-ba3c9ec52886"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-fabb6cad-2745-4e76-9ebd-ab4010b98238 {
  margin-left: auto;
margin-right: auto;
max-width: 450px;
text-align: right;
}
@media (max-width: 767px){#s-fabb6cad-2745-4e76-9ebd-ab4010b98238 {
  margin-top: -30px;
max-width: 250px;
display: none;
}
#s-fabb6cad-2745-4e76-9ebd-ab4010b98238, #wrap-s-fabb6cad-2745-4e76-9ebd-ab4010b98238 { display:none !important; }}






  #s-fabb6cad-2745-4e76-9ebd-ab4010b98238 img.shogun-image {
    

    
    
    
  }


#s-fabb6cad-2745-4e76-9ebd-ab4010b98238 .shogun-image-content {
  
    align-items: center;
  
}

#s-7a4088ed-8cdd-4c45-be9c-66de88f49ce9 {
  min-height: 300px;
}
@media (min-width: 768px) and (max-width: 991px){#s-7a4088ed-8cdd-4c45-be9c-66de88f49ce9 {
  display: none;
}
#s-7a4088ed-8cdd-4c45-be9c-66de88f49ce9, #wrap-s-7a4088ed-8cdd-4c45-be9c-66de88f49ce9 { display:none !important; }}@media (max-width: 767px){#s-7a4088ed-8cdd-4c45-be9c-66de88f49ce9 {
  display: none;
}
#s-7a4088ed-8cdd-4c45-be9c-66de88f49ce9, #wrap-s-7a4088ed-8cdd-4c45-be9c-66de88f49ce9 { display:none !important; }}







#s-7a4088ed-8cdd-4c45-be9c-66de88f49ce9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7a4088ed-8cdd-4c45-be9c-66de88f49ce9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-30ea009a-9c69-4b4f-912e-4df3a5ff9b96 {
  min-height: 450px;
}
@media (max-width: 767px){#s-30ea009a-9c69-4b4f-912e-4df3a5ff9b96 {
  display: none;
}
#s-30ea009a-9c69-4b4f-912e-4df3a5ff9b96, #wrap-s-30ea009a-9c69-4b4f-912e-4df3a5ff9b96 { display:none !important; }}







#s-30ea009a-9c69-4b4f-912e-4df3a5ff9b96 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-30ea009a-9c69-4b4f-912e-4df3a5ff9b96.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

#s-bfa5694b-fa26-466e-9d3b-2a2a8f4c3f30 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-bfa5694b-fa26-466e-9d3b-2a2a8f4c3f30 .shogun-heading-component h2 {
  color: rgba(88, 89, 92, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 26px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-50907592-ac46-452d-942a-00996b44f0fb {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-50907592-ac46-452d-942a-00996b44f0fb .shogun-heading-component h1 {
  color: rgba(27, 68, 138, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 41px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-5b76d5e6-670c-489a-8df0-f088fa870421 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-5b76d5e6-670c-489a-8df0-f088fa870421 .shogun-heading-component h2 {
  color: rgba(88, 89, 92, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 26px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



.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-55513237-d79d-4e30-a0e5-53145322c63e {
  border-style: solid;
margin-top: 25px;
margin-bottom: 10px;
padding-top: 13px;
padding-left: 30px;
padding-bottom: 13px;
padding-right: 30px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 0);
border-style: solid;
border-radius: 2px;
background-color: rgba(27, 68, 138, 1);
text-align: left;
text-decoration: none;
letter-spacing: 0px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-55513237-d79d-4e30-a0e5-53145322c63e:hover {background-color: rgba(111, 135, 146, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-55513237-d79d-4e30-a0e5-53145322c63e:active {background-color: rgba(76, 97, 107, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-55513237-d79d-4e30-a0e5-53145322c63e-btn-wrapper {
    text-align: left;
  }


#s-55513237-d79d-4e30-a0e5-53145322c63e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-55513237-d79d-4e30-a0e5-53145322c63e-btn-wrapper {
    text-align: left;
  }


#s-55513237-d79d-4e30-a0e5-53145322c63e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-55513237-d79d-4e30-a0e5-53145322c63e-btn-wrapper {
    text-align: left;
  }


#s-55513237-d79d-4e30-a0e5-53145322c63e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-55513237-d79d-4e30-a0e5-53145322c63e-btn-wrapper {
    text-align: left;
  }


#s-55513237-d79d-4e30-a0e5-53145322c63e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-55513237-d79d-4e30-a0e5-53145322c63e-btn-wrapper {
    text-align: left;
  }


#s-55513237-d79d-4e30-a0e5-53145322c63e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  
  
  
  display:  inline-block ;
}
}
#s-754b1b79-a7d0-472e-b59d-480e35d0337c {
  min-height: 300px;
}
@media (min-width: 1200px){#s-754b1b79-a7d0-472e-b59d-480e35d0337c {
  display: none;
}
#s-754b1b79-a7d0-472e-b59d-480e35d0337c, #wrap-s-754b1b79-a7d0-472e-b59d-480e35d0337c { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-754b1b79-a7d0-472e-b59d-480e35d0337c {
  display: none;
}
#s-754b1b79-a7d0-472e-b59d-480e35d0337c, #wrap-s-754b1b79-a7d0-472e-b59d-480e35d0337c { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-754b1b79-a7d0-472e-b59d-480e35d0337c {
  
}
}@media (max-width: 767px){#s-754b1b79-a7d0-472e-b59d-480e35d0337c {
  display: none;
}
#s-754b1b79-a7d0-472e-b59d-480e35d0337c, #wrap-s-754b1b79-a7d0-472e-b59d-480e35d0337c { display:none !important; }}







#s-754b1b79-a7d0-472e-b59d-480e35d0337c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-754b1b79-a7d0-472e-b59d-480e35d0337c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-0ea32a82-c088-425b-8ea6-6f4a181db1a7 {
  margin-top: -15px;
padding-top: 0px;
padding-bottom: 0px;
text-align: left;
}

#s-0ea32a82-c088-425b-8ea6-6f4a181db1a7 .shogun-heading-component h1 {
  color: rgba(27, 68, 138, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: ;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-acac4b02-a658-428b-ac65-57d4abaa34c9 {
  border-style: solid;
margin-top: 20px;
padding-top: 13px;
padding-left: 30px;
padding-bottom: 13px;
padding-right: 30px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 0);
border-style: solid;
border-radius: 2px;
background-color: rgba(27, 68, 138, 1);
text-align: left;
text-decoration: none;
letter-spacing: 0px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-acac4b02-a658-428b-ac65-57d4abaa34c9:hover {background-color: rgba(111, 135, 146, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-acac4b02-a658-428b-ac65-57d4abaa34c9:active {background-color: rgba(76, 97, 107, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-acac4b02-a658-428b-ac65-57d4abaa34c9-btn-wrapper {
    text-align: left;
  }


#s-acac4b02-a658-428b-ac65-57d4abaa34c9.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-acac4b02-a658-428b-ac65-57d4abaa34c9-btn-wrapper {
    text-align: left;
  }


#s-acac4b02-a658-428b-ac65-57d4abaa34c9.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-acac4b02-a658-428b-ac65-57d4abaa34c9-btn-wrapper {
    text-align: left;
  }


#s-acac4b02-a658-428b-ac65-57d4abaa34c9.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-acac4b02-a658-428b-ac65-57d4abaa34c9-btn-wrapper {
    text-align: left;
  }


#s-acac4b02-a658-428b-ac65-57d4abaa34c9.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-acac4b02-a658-428b-ac65-57d4abaa34c9-btn-wrapper {
    text-align: left;
  }


#s-acac4b02-a658-428b-ac65-57d4abaa34c9.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  
  
  
  display:  inline-block ;
}
}
#s-dcbd41a0-c5c9-463c-bfd3-d0c0b2a1ce75 {
  margin-bottom: 30px;
min-height: 200px;
}
@media (min-width: 1200px){#s-dcbd41a0-c5c9-463c-bfd3-d0c0b2a1ce75 {
  display: none;
}
#s-dcbd41a0-c5c9-463c-bfd3-d0c0b2a1ce75, #wrap-s-dcbd41a0-c5c9-463c-bfd3-d0c0b2a1ce75 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-dcbd41a0-c5c9-463c-bfd3-d0c0b2a1ce75 {
  display: none;
}
#s-dcbd41a0-c5c9-463c-bfd3-d0c0b2a1ce75, #wrap-s-dcbd41a0-c5c9-463c-bfd3-d0c0b2a1ce75 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-dcbd41a0-c5c9-463c-bfd3-d0c0b2a1ce75 {
  display: none;
}
#s-dcbd41a0-c5c9-463c-bfd3-d0c0b2a1ce75, #wrap-s-dcbd41a0-c5c9-463c-bfd3-d0c0b2a1ce75 { display:none !important; }}@media (max-width: 767px){#s-dcbd41a0-c5c9-463c-bfd3-d0c0b2a1ce75 {
  min-height: 150px;
}
}







#s-dcbd41a0-c5c9-463c-bfd3-d0c0b2a1ce75 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dcbd41a0-c5c9-463c-bfd3-d0c0b2a1ce75.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ed9beac4-2100-4016-a441-1a48fb024704 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-ed9beac4-2100-4016-a441-1a48fb024704 .shogun-heading-component h1 {
  color: rgba(27, 68, 138, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: ;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-5510ac45-c93c-4925-a7b5-b32d7398fa5a {
  margin-left: auto;
margin-right: auto;
max-width: 450px;
text-align: right;
}
@media (min-width: 1200px){#s-5510ac45-c93c-4925-a7b5-b32d7398fa5a {
  display: none;
}
#s-5510ac45-c93c-4925-a7b5-b32d7398fa5a, #wrap-s-5510ac45-c93c-4925-a7b5-b32d7398fa5a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-5510ac45-c93c-4925-a7b5-b32d7398fa5a {
  display: none;
}
#s-5510ac45-c93c-4925-a7b5-b32d7398fa5a, #wrap-s-5510ac45-c93c-4925-a7b5-b32d7398fa5a { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-5510ac45-c93c-4925-a7b5-b32d7398fa5a {
  display: none;
}
#s-5510ac45-c93c-4925-a7b5-b32d7398fa5a, #wrap-s-5510ac45-c93c-4925-a7b5-b32d7398fa5a { display:none !important; }}@media (max-width: 767px){#s-5510ac45-c93c-4925-a7b5-b32d7398fa5a {
  max-width: 250px;
}
}






  #s-5510ac45-c93c-4925-a7b5-b32d7398fa5a img.shogun-image {
    

    
    
    
  }


#s-5510ac45-c93c-4925-a7b5-b32d7398fa5a .shogun-image-content {
  
    align-items: center;
  
}

#s-4e5a7a2b-9ba2-4992-9d9e-2de8e9bbd13e {
  border-style: solid;
padding-top: 13px;
padding-left: 30px;
padding-bottom: 13px;
padding-right: 30px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 0);
border-style: solid;
border-radius: 2px;
background-color: rgba(27, 68, 138, 1);
text-align: center;
text-decoration: none;
letter-spacing: 0px;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-4e5a7a2b-9ba2-4992-9d9e-2de8e9bbd13e:hover {background-color: rgba(111, 135, 146, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-4e5a7a2b-9ba2-4992-9d9e-2de8e9bbd13e:active {background-color: rgba(76, 97, 107, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-4e5a7a2b-9ba2-4992-9d9e-2de8e9bbd13e-btn-wrapper {
    text-align: center;
  }


#s-4e5a7a2b-9ba2-4992-9d9e-2de8e9bbd13e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-4e5a7a2b-9ba2-4992-9d9e-2de8e9bbd13e-btn-wrapper {
    text-align: center;
  }


#s-4e5a7a2b-9ba2-4992-9d9e-2de8e9bbd13e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4e5a7a2b-9ba2-4992-9d9e-2de8e9bbd13e-btn-wrapper {
    text-align: center;
  }


#s-4e5a7a2b-9ba2-4992-9d9e-2de8e9bbd13e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4e5a7a2b-9ba2-4992-9d9e-2de8e9bbd13e-btn-wrapper {
    text-align: center;
  }


#s-4e5a7a2b-9ba2-4992-9d9e-2de8e9bbd13e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-4e5a7a2b-9ba2-4992-9d9e-2de8e9bbd13e-btn-wrapper {
    text-align: center;
  }


#s-4e5a7a2b-9ba2-4992-9d9e-2de8e9bbd13e.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  
  
  
  display:  inline-block ;
}
}
#s-f6fbbd60-4875-4116-9b5e-72f76b57a758 {
  min-height: 50px;
}








#s-f6fbbd60-4875-4116-9b5e-72f76b57a758 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f6fbbd60-4875-4116-9b5e-72f76b57a758.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c02754fd-83d5-409e-8c96-fd6d8d3d4adc {
  min-height: 50px;
background-color: rgba(55, 133, 197, 1);
}








#s-c02754fd-83d5-409e-8c96-fd6d8d3d4adc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c02754fd-83d5-409e-8c96-fd6d8d3d4adc.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e1486f6a-10e5-4eac-b8c5-376e281f22a3 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 100px;
padding-left: 10%;
padding-bottom: 100px;
padding-right: 10%;
min-height: 50px;
background-color: rgba(244, 244, 244, 1);
}
@media (min-width: 1200px){#s-e1486f6a-10e5-4eac-b8c5-376e281f22a3 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-e1486f6a-10e5-4eac-b8c5-376e281f22a3 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-e1486f6a-10e5-4eac-b8c5-376e281f22a3 {
  padding-top: 60px;
padding-left: 5%;
padding-bottom: 60px;
padding-right: 5%;
}
}@media (max-width: 767px){#s-e1486f6a-10e5-4eac-b8c5-376e281f22a3 {
  padding-top: 60px;
padding-left: 20px;
padding-bottom: 60px;
padding-right: 20px;
}
}







#s-e1486f6a-10e5-4eac-b8c5-376e281f22a3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e1486f6a-10e5-4eac-b8c5-376e281f22a3.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-df59929f-9e72-49a7-8c37-9ecd7f3d6500 {
  min-height: 50px;
}








#s-df59929f-9e72-49a7-8c37-9ecd7f3d6500 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-df59929f-9e72-49a7-8c37-9ecd7f3d6500.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fee51938-aba7-4946-bdb5-63fee9adaaf4 {
  border-style: solid;
margin-left: auto;
margin-right: auto;
padding-top: 20px;
padding-left: 80px;
padding-bottom: 20px;
padding-right: 80px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 2px;
min-height: 50px;
max-width: 1000px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 992px) and (max-width: 1199px){#s-fee51938-aba7-4946-bdb5-63fee9adaaf4 {
  padding-left: 40px;
padding-right: 40px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-fee51938-aba7-4946-bdb5-63fee9adaaf4 {
  padding-left: 30px;
padding-right: 30px;
}
}@media (max-width: 767px){#s-fee51938-aba7-4946-bdb5-63fee9adaaf4 {
  padding-left: 40px;
padding-right: 40px;
}
}







#s-fee51938-aba7-4946-bdb5-63fee9adaaf4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fee51938-aba7-4946-bdb5-63fee9adaaf4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6d1bf2a2-9d23-43bf-ba5f-6444e1b92ef6 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-6d1bf2a2-9d23-43bf-ba5f-6444e1b92ef6 .shogun-heading-component h3 {
  color: rgba(84, 86, 90, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 20px;
  line-height: 1.5em;
  letter-spacing: ;
  text-align: center;
}



#s-ce2bc930-4819-4ed5-ac6e-7402705cb168 {
  min-height: 50px;
}








#s-ce2bc930-4819-4ed5-ac6e-7402705cb168 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ce2bc930-4819-4ed5-ac6e-7402705cb168.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c3690219-b511-4800-91fd-2b8a842116a5 {
  margin-top: 50px;
margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
min-height: 50px;
max-width: 1200px;
}








#s-c3690219-b511-4800-91fd-2b8a842116a5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c3690219-b511-4800-91fd-2b8a842116a5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c5480c8a-4bf9-4d0c-8ea5-eb216e27fbda {
  padding-left: 5%;
padding-right: 5%;
}

@media (min-width: 0px) {
[id="s-c5480c8a-4bf9-4d0c-8ea5-eb216e27fbda"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c5480c8a-4bf9-4d0c-8ea5-eb216e27fbda"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-c5480c8a-4bf9-4d0c-8ea5-eb216e27fbda"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-c5480c8a-4bf9-4d0c-8ea5-eb216e27fbda"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-c5480c8a-4bf9-4d0c-8ea5-eb216e27fbda"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-c5480c8a-4bf9-4d0c-8ea5-eb216e27fbda"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-c5480c8a-4bf9-4d0c-8ea5-eb216e27fbda"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-1342c327-edb8-477f-9e73-7b6a4281729b {
  margin-bottom: 30px;
min-height: 50px;
}








#s-1342c327-edb8-477f-9e73-7b6a4281729b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1342c327-edb8-477f-9e73-7b6a4281729b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0d2c89e7-c921-4d70-ab6e-2eefbf53fe85 {
  margin-left: 25%;
margin-right: 25%;
max-width: 400px;
text-align: center;
}
@media (min-width: 1200px){#s-0d2c89e7-c921-4d70-ab6e-2eefbf53fe85 {
  display: none;
}
#s-0d2c89e7-c921-4d70-ab6e-2eefbf53fe85, #wrap-s-0d2c89e7-c921-4d70-ab6e-2eefbf53fe85 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0d2c89e7-c921-4d70-ab6e-2eefbf53fe85 {
  display: none;
}
#s-0d2c89e7-c921-4d70-ab6e-2eefbf53fe85, #wrap-s-0d2c89e7-c921-4d70-ab6e-2eefbf53fe85 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-0d2c89e7-c921-4d70-ab6e-2eefbf53fe85 {
  display: none;
}
#s-0d2c89e7-c921-4d70-ab6e-2eefbf53fe85, #wrap-s-0d2c89e7-c921-4d70-ab6e-2eefbf53fe85 { display:none !important; }}@media (max-width: 767px){#s-0d2c89e7-c921-4d70-ab6e-2eefbf53fe85 {
  display: none;
}
#s-0d2c89e7-c921-4d70-ab6e-2eefbf53fe85, #wrap-s-0d2c89e7-c921-4d70-ab6e-2eefbf53fe85 { display:none !important; }}






  #s-0d2c89e7-c921-4d70-ab6e-2eefbf53fe85 img.shogun-image {
    

    
    
    
  }


#s-0d2c89e7-c921-4d70-ab6e-2eefbf53fe85 .shogun-image-content {
  
    align-items: center;
  
}

#s-9d24b2da-7209-4803-8c84-7f0bf238214b {
  margin-left: 25%;
margin-right: 25%;
max-width: 400px;
text-align: center;
}
@media (min-width: 1200px){#s-9d24b2da-7209-4803-8c84-7f0bf238214b {
  display: none;
}
#s-9d24b2da-7209-4803-8c84-7f0bf238214b, #wrap-s-9d24b2da-7209-4803-8c84-7f0bf238214b { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9d24b2da-7209-4803-8c84-7f0bf238214b {
  display: none;
}
#s-9d24b2da-7209-4803-8c84-7f0bf238214b, #wrap-s-9d24b2da-7209-4803-8c84-7f0bf238214b { display:none !important; }}






  #s-9d24b2da-7209-4803-8c84-7f0bf238214b img.shogun-image {
    

    
    
    
  }


#s-9d24b2da-7209-4803-8c84-7f0bf238214b .shogun-image-content {
  
    align-items: center;
  
}

#s-d4c34c37-06ef-40e5-8844-b87d92981f8e {
  margin-left: 10%;
max-width: 400px;
text-align: center;
}
@media (min-width: 768px) and (max-width: 991px){#s-d4c34c37-06ef-40e5-8844-b87d92981f8e {
  display: none;
}
#s-d4c34c37-06ef-40e5-8844-b87d92981f8e, #wrap-s-d4c34c37-06ef-40e5-8844-b87d92981f8e { display:none !important; }}@media (max-width: 767px){#s-d4c34c37-06ef-40e5-8844-b87d92981f8e {
  display: none;
}
#s-d4c34c37-06ef-40e5-8844-b87d92981f8e, #wrap-s-d4c34c37-06ef-40e5-8844-b87d92981f8e { display:none !important; }}






  #s-d4c34c37-06ef-40e5-8844-b87d92981f8e img.shogun-image {
    

    
    
    
  }


#s-d4c34c37-06ef-40e5-8844-b87d92981f8e .shogun-image-content {
  
    align-items: center;
  
}

#s-db878dcf-3bf1-425c-a2b6-ef05fce5253f {
  min-height: 300px;
}








#s-db878dcf-3bf1-425c-a2b6-ef05fce5253f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-db878dcf-3bf1-425c-a2b6-ef05fce5253f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e98cdb34-ce2d-41bc-8028-a3eaa022bdf8 {
  margin-left: auto;
margin-right: auto;
}

#s-54938950-ce1a-4b42-ba99-02ec06b79051 {
  margin-left: auto;
margin-right: auto;
}

#s-d39b95bf-4a66-4d7e-8eb4-3e1a92d8ef7d {
  min-height: 200px;
background-color: rgba(55, 133, 197, 1);
}








#s-d39b95bf-4a66-4d7e-8eb4-3e1a92d8ef7d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d39b95bf-4a66-4d7e-8eb4-3e1a92d8ef7d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-822f59a4-8f92-4b8b-9b5a-97364bbcfb01 {
  margin-left: auto;
margin-right: auto;
max-width: 800px;
}
@media (max-width: 767px){#s-822f59a4-8f92-4b8b-9b5a-97364bbcfb01 {
  margin-left: 5%;
margin-right: 5%;
min-height: 300px;
}
}
#s-c977c7ba-3c8b-4b66-bf64-f0cb3a7b9150 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1200px;
}








#s-c977c7ba-3c8b-4b66-bf64-f0cb3a7b9150 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c977c7ba-3c8b-4b66-bf64-f0cb3a7b9150.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-34a1dc7e-4fc8-4066-902b-9d1ff7c5747e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-34a1dc7e-4fc8-4066-902b-9d1ff7c5747e"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-34a1dc7e-4fc8-4066-902b-9d1ff7c5747e"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-34a1dc7e-4fc8-4066-902b-9d1ff7c5747e"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (max-width: 767px) {
  [id="s-34a1dc7e-4fc8-4066-902b-9d1ff7c5747e"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-9866d0a6-e455-42b6-a2f8-c9aa05ea3db1 {
  border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 500px;
}








#s-9866d0a6-e455-42b6-a2f8-c9aa05ea3db1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9866d0a6-e455-42b6-a2f8-c9aa05ea3db1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ac756cac-9b6a-4cdc-9ad4-cbed385a259b {
  margin-left: 50px;
margin-right: 50px;
}

#s-a61d5642-90f6-4f64-9c65-23b7a6b4518c {
  background-repeat: no-repeat;
background-size: cover;
border-style: solid;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0.57);
min-height: 500px;
background-position: center center;
}
@media (max-width: 767px){#s-a61d5642-90f6-4f64-9c65-23b7a6b4518c {
  min-height: 300px;
}
}







#s-a61d5642-90f6-4f64-9c65-23b7a6b4518c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a61d5642-90f6-4f64-9c65-23b7a6b4518c.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-6142f441-0581-45c2-8b0a-b5886674ee5a {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1200px;
}








#s-6142f441-0581-45c2-8b0a-b5886674ee5a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6142f441-0581-45c2-8b0a-b5886674ee5a.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-40cc0a5a-56ab-41d2-ac7b-461e09df9983"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-40cc0a5a-56ab-41d2-ac7b-461e09df9983"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-40cc0a5a-56ab-41d2-ac7b-461e09df9983"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-40cc0a5a-56ab-41d2-ac7b-461e09df9983"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-8479ce2f-aa63-474b-aa56-a66db1096aaf {
  background-repeat: no-repeat;
background-size: cover;
border-style: solid;
margin-top: 0px;
margin-left: 0px;
margin-bottom: 0px;
margin-right: 0px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0.57);
min-height: 500px;
background-position: center center;
}
@media (max-width: 767px){#s-8479ce2f-aa63-474b-aa56-a66db1096aaf {
  min-height: 300px;
}
}







#s-8479ce2f-aa63-474b-aa56-a66db1096aaf > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8479ce2f-aa63-474b-aa56-a66db1096aaf.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-30b745fd-2e29-4134-84f0-042432b0e118 {
  border-style: solid;
margin-top: 20px;
margin-bottom: 20px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(0, 0, 0, 0);
min-height: 500px;
}








#s-30b745fd-2e29-4134-84f0-042432b0e118 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-30b745fd-2e29-4134-84f0-042432b0e118.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e0529172-3487-4ef1-9292-2ca30eeaedbc {
  margin-left: 50px;
margin-right: 50px;
}

#s-17aaf82c-45ed-4945-a8f8-6faa747b3553 {
  margin-left: 50px;
margin-right: 50px;
}

#s-2c4d56a2-36d6-4a16-b55d-2f344ebd4d16 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 100px;
padding-left: 10%;
padding-bottom: 100px;
padding-right: 10%;
min-height: 50px;
background-color: rgba(244, 244, 244, 1);
}
@media (min-width: 1200px){#s-2c4d56a2-36d6-4a16-b55d-2f344ebd4d16 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2c4d56a2-36d6-4a16-b55d-2f344ebd4d16 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-2c4d56a2-36d6-4a16-b55d-2f344ebd4d16 {
  padding-top: 60px;
padding-left: 5%;
padding-bottom: 60px;
padding-right: 5%;
}
}@media (max-width: 767px){#s-2c4d56a2-36d6-4a16-b55d-2f344ebd4d16 {
  padding-top: 60px;
padding-left: 20px;
padding-bottom: 60px;
padding-right: 20px;
}
}







#s-2c4d56a2-36d6-4a16-b55d-2f344ebd4d16 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2c4d56a2-36d6-4a16-b55d-2f344ebd4d16.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-7fa7b22e-1bfc-48ff-a379-526c4f0ab5f7 {
  padding-top: 40px;
padding-bottom: 40px;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-7fa7b22e-1bfc-48ff-a379-526c4f0ab5f7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7fa7b22e-1bfc-48ff-a379-526c4f0ab5f7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7fa7b22e-1bfc-48ff-a379-526c4f0ab5f7"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7fa7b22e-1bfc-48ff-a379-526c4f0ab5f7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7fa7b22e-1bfc-48ff-a379-526c4f0ab5f7"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7fa7b22e-1bfc-48ff-a379-526c4f0ab5f7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7fa7b22e-1bfc-48ff-a379-526c4f0ab5f7"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-641574c0-81d1-4507-83a5-4d94c1ea00e0 {
  margin-left: auto;
margin-right: auto;
max-width: 450px;
text-align: center;
}







  #s-641574c0-81d1-4507-83a5-4d94c1ea00e0 img.shogun-image {
    

    
    
    
  }


#s-641574c0-81d1-4507-83a5-4d94c1ea00e0 .shogun-image-content {
  
    align-items: center;
  
}

#s-9cd3d20d-e597-40cd-be5f-91fee653a2c5 {
  margin-left: 5%;
margin-right: 5%;
min-height: 50px;
}








#s-9cd3d20d-e597-40cd-be5f-91fee653a2c5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9cd3d20d-e597-40cd-be5f-91fee653a2c5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2381582a-f4cd-4c4b-bbf5-184b1e42bacd {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-2381582a-f4cd-4c4b-bbf5-184b1e42bacd .shogun-heading-component h1 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 32px;
  line-height: ;
  letter-spacing: ;
  text-align: left;
}



#s-4e7e07cd-10a4-4d2e-afea-c188903cfc15 {
  margin-top: 20px;
margin-bottom: 20px;
}

#s-4a60477e-b00a-4a97-aa00-a6e773b01d44 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 100px;
padding-left: 10%;
padding-bottom: 100px;
padding-right: 10%;
min-height: 50px;
background-color: rgba(55, 133, 197, 1);
}
@media (min-width: 1200px){#s-4a60477e-b00a-4a97-aa00-a6e773b01d44 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-4a60477e-b00a-4a97-aa00-a6e773b01d44 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-4a60477e-b00a-4a97-aa00-a6e773b01d44 {
  padding-top: 60px;
padding-left: 5%;
padding-bottom: 60px;
padding-right: 5%;
}
}@media (max-width: 767px){#s-4a60477e-b00a-4a97-aa00-a6e773b01d44 {
  padding-top: 60px;
padding-left: 20px;
padding-bottom: 60px;
padding-right: 20px;
}
}







#s-4a60477e-b00a-4a97-aa00-a6e773b01d44 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4a60477e-b00a-4a97-aa00-a6e773b01d44.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-527cc788-f46b-4b0a-ba86-21871dcba0e5 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-527cc788-f46b-4b0a-ba86-21871dcba0e5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-527cc788-f46b-4b0a-ba86-21871dcba0e5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-fb7fa3b6-46fc-4978-bc0a-69142ad8cb19 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 900px;
}








#s-fb7fa3b6-46fc-4978-bc0a-69142ad8cb19 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fb7fa3b6-46fc-4978-bc0a-69142ad8cb19.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0cf66cc9-e1be-474b-a836-ffe7bea85fcc {
  margin-top: 40px;
margin-left: 50px;
margin-right: 50px;
padding-top: 10px;
padding-bottom: 0px;
text-align: center;
}

#s-0cf66cc9-e1be-474b-a836-ffe7bea85fcc .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 26px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-d02f947d-61f0-429c-b7df-46a998d3992d {
  margin-top: 20px;
margin-bottom: 40px;
}
@media (max-width: 767px){#s-d02f947d-61f0-429c-b7df-46a998d3992d {
  margin-left: 5%;
margin-right: 5%;
}
}
#s-7708cea6-2f01-45e5-b89e-cbeffb64efc9 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-7708cea6-2f01-45e5-b89e-cbeffb64efc9 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-7708cea6-2f01-45e5-b89e-cbeffb64efc9 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-7708cea6-2f01-45e5-b89e-cbeffb64efc9 {
  
}
}@media (max-width: 767px){#s-7708cea6-2f01-45e5-b89e-cbeffb64efc9 {
  
}
}







#s-7708cea6-2f01-45e5-b89e-cbeffb64efc9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7708cea6-2f01-45e5-b89e-cbeffb64efc9.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-1773fc4c-c124-49d2-8287-fab6dded3c47 {
  padding-top: 20px;
padding-bottom: 40px;
}

#s-1daad50b-e47f-4ba3-afac-552668397d1a {
  border-style: solid;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(235, 235, 235, 1);
min-height: 50px;
max-width: 600px;
background-color: rgba(244, 244, 244, 0.01);
}








#s-1daad50b-e47f-4ba3-afac-552668397d1a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1daad50b-e47f-4ba3-afac-552668397d1a.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-c2300b4a-8fcf-4604-b9c9-a361231d2d4b {
  margin-top: 40px;
margin-left: 20px;
margin-right: 20px;
}

#s-c2300b4a-8fcf-4604-b9c9-a361231d2d4b .shogun-icon-wrapper {
  text-align: center;
}


#s-c2300b4a-8fcf-4604-b9c9-a361231d2d4b .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(0, 0, 0, 1);
}

#s-aa8c3eb2-eb6f-42d6-92aa-783195df9536 {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 40px;
margin-right: 20px;
opacity: 1;
}
@media (min-width: 1200px){#s-aa8c3eb2-eb6f-42d6-92aa-783195df9536 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-aa8c3eb2-eb6f-42d6-92aa-783195df9536 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-aa8c3eb2-eb6f-42d6-92aa-783195df9536 {
  
}
}@media (max-width: 767px){#s-aa8c3eb2-eb6f-42d6-92aa-783195df9536 {
  
}
}
#s-a647267a-e9b8-44e2-8c6a-cf5e1dd33f9c {
  border-style: solid;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(235, 235, 235, 1);
min-height: 50px;
max-width: 600px;
background-color: rgba(244, 244, 244, 0);
}








#s-a647267a-e9b8-44e2-8c6a-cf5e1dd33f9c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a647267a-e9b8-44e2-8c6a-cf5e1dd33f9c.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-3f979081-f829-4a65-a49d-6613417cde7e {
  margin-top: 40px;
margin-left: 20px;
margin-right: 20px;
}

#s-3f979081-f829-4a65-a49d-6613417cde7e .shogun-icon-wrapper {
  text-align: center;
}


#s-3f979081-f829-4a65-a49d-6613417cde7e .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(0, 0, 0, 1);
}

#s-2fbb86bf-e3d1-45a8-87a3-7144206b68a8 {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 40px;
margin-right: 20px;
opacity: 1;
}
@media (min-width: 1200px){#s-2fbb86bf-e3d1-45a8-87a3-7144206b68a8 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2fbb86bf-e3d1-45a8-87a3-7144206b68a8 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-2fbb86bf-e3d1-45a8-87a3-7144206b68a8 {
  
}
}@media (max-width: 767px){#s-2fbb86bf-e3d1-45a8-87a3-7144206b68a8 {
  
}
}
#s-b8278734-16f6-47c9-afe9-f0ac38abd20f {
  border-style: solid;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(235, 235, 235, 1);
min-height: 50px;
max-width: 600px;
background-color: rgba(255, 255, 255, 1);
}








#s-b8278734-16f6-47c9-afe9-f0ac38abd20f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b8278734-16f6-47c9-afe9-f0ac38abd20f.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-b8f13275-1ea0-4615-9976-8e1321c96feb {
  margin-top: 40px;
margin-left: 20px;
margin-right: 20px;
}

#s-b8f13275-1ea0-4615-9976-8e1321c96feb .shogun-icon-wrapper {
  text-align: center;
}


#s-b8f13275-1ea0-4615-9976-8e1321c96feb .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(0, 0, 0, 1);
}

#s-100a8a2b-ab0c-4225-9344-23d8a5b4d3d7 {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 40px;
margin-right: 20px;
opacity: 1;
}
@media (min-width: 1200px){#s-100a8a2b-ab0c-4225-9344-23d8a5b4d3d7 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-100a8a2b-ab0c-4225-9344-23d8a5b4d3d7 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-100a8a2b-ab0c-4225-9344-23d8a5b4d3d7 {
  
}
}@media (max-width: 767px){#s-100a8a2b-ab0c-4225-9344-23d8a5b4d3d7 {
  
}
}
#s-448c6ded-ecca-43b1-80ad-0f7e23b626ff {
  border-style: solid;
margin-left: auto;
margin-bottom: 25px;
margin-right: auto;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(235, 235, 235, 1);
min-height: 50px;
max-width: 600px;
background-color: rgba(255, 255, 255, 1);
}








#s-448c6ded-ecca-43b1-80ad-0f7e23b626ff > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-448c6ded-ecca-43b1-80ad-0f7e23b626ff.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-c664b510-0a57-41ff-8bad-c9cc742dced8 {
  margin-top: 40px;
margin-left: 20px;
margin-right: 20px;
}

#s-c664b510-0a57-41ff-8bad-c9cc742dced8 .shogun-icon-wrapper {
  text-align: center;
}


#s-c664b510-0a57-41ff-8bad-c9cc742dced8 .shogun-icon-wrapper > .shogun-icon {

  font-size: 32px !important;
  color: rgba(0, 0, 0, 1);
}

#s-81a3a469-11a7-4a5c-9470-9bb0e244b1a6 {
  margin-top: 20px;
margin-left: 20px;
margin-bottom: 40px;
margin-right: 20px;
opacity: 1;
}
@media (min-width: 1200px){#s-81a3a469-11a7-4a5c-9470-9bb0e244b1a6 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-81a3a469-11a7-4a5c-9470-9bb0e244b1a6 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-81a3a469-11a7-4a5c-9470-9bb0e244b1a6 {
  
}
}@media (max-width: 767px){#s-81a3a469-11a7-4a5c-9470-9bb0e244b1a6 {
  
}
}
#s-108c52ff-46d4-4b9c-8fd0-29d34b50d565 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-108c52ff-46d4-4b9c-8fd0-29d34b50d565 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-108c52ff-46d4-4b9c-8fd0-29d34b50d565 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-108c52ff-46d4-4b9c-8fd0-29d34b50d565 {
  
}
}@media (max-width: 767px){#s-108c52ff-46d4-4b9c-8fd0-29d34b50d565 {
  
}
}







#s-108c52ff-46d4-4b9c-8fd0-29d34b50d565 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-108c52ff-46d4-4b9c-8fd0-29d34b50d565.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-a0d1b7ca-c352-4b45-9195-9de2b2f87238 {
  box-shadow:0px 10px 100px 0px rgba(69, 78, 149, 0.33);
border-style: solid;
margin-top: 50px;
margin-left: auto;
margin-bottom: 50px;
margin-right: auto;
border-top-width: 4px;
border-left-width: 4px;
border-bottom-width: 4px;
border-right-width: 4px;
border-color: rgba(69, 78, 149, 1);
border-radius: 0px;
min-height: 350px;
max-width: 900px;
opacity: 1;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-a0d1b7ca-c352-4b45-9195-9de2b2f87238 {
  max-width: 350px;
}
}







#s-a0d1b7ca-c352-4b45-9195-9de2b2f87238 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a0d1b7ca-c352-4b45-9195-9de2b2f87238.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2b39cb16-3fb6-4c82-b3f1-3d3752d6f24e {
  margin-top: 30px;
margin-left: 100px;
margin-right: 100px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-2b39cb16-3fb6-4c82-b3f1-3d3752d6f24e {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-2b39cb16-3fb6-4c82-b3f1-3d3752d6f24e {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-2b39cb16-3fb6-4c82-b3f1-3d3752d6f24e {
  
}
}@media (max-width: 767px){#s-2b39cb16-3fb6-4c82-b3f1-3d3752d6f24e {
  margin-left: 25px;
margin-right: 25px;
}
}
#s-2b39cb16-3fb6-4c82-b3f1-3d3752d6f24e .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  
}



#s-bdc8a601-5ac3-4902-91b1-58ea040f1308 {
  margin-top: 15px;
margin-left: 100px;
margin-bottom: 20px;
margin-right: 100px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-bdc8a601-5ac3-4902-91b1-58ea040f1308 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-bdc8a601-5ac3-4902-91b1-58ea040f1308 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-bdc8a601-5ac3-4902-91b1-58ea040f1308 {
  
}
}@media (max-width: 767px){#s-bdc8a601-5ac3-4902-91b1-58ea040f1308 {
  margin-left: 25px;
margin-right: 25px;
}
}
#s-bdc8a601-5ac3-4902-91b1-58ea040f1308 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:   ;
  
  font-style:   ;
  font-size: 22px;
  line-height: ;
  letter-spacing: ;
  
}



#s-45e154ba-cb1e-4566-9e9d-166de8447268 {
  border-style: solid;
margin-left: auto;
margin-bottom: 20px;
margin-right: auto;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 2px;
border-left-width: 2px;
border-bottom-width: 2px;
border-right-width: 2px;
border-color: rgba(69, 78, 149, 1);
border-radius: 0px;
max-width: 300px;
opacity: 1;
text-align: center;
background-color: rgba(69, 78, 149, 1);
text-decoration: none;
}
#s-45e154ba-cb1e-4566-9e9d-166de8447268:hover {border-style: solid !important;
border-color: rgba(0, 0, 0, 1) !important;
opacity: 1 !important;
background-color: rgba(69, 78, 149, 1) !important;
text-decoration: none !important;}#s-45e154ba-cb1e-4566-9e9d-166de8447268:active {border-style: solid !important;
border-color: rgba(69, 78, 149, 1) !important;
background-color: rgba(69, 78, 149, 1) !important;
text-decoration: none !important;}

  #s-45e154ba-cb1e-4566-9e9d-166de8447268-btn-wrapper {
    text-align: center;
  }


#s-45e154ba-cb1e-4566-9e9d-166de8447268.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  
  
  
  display:  block ;
}
@media (min-width: 1200px){
  #s-45e154ba-cb1e-4566-9e9d-166de8447268-btn-wrapper {
    text-align: center;
  }


#s-45e154ba-cb1e-4566-9e9d-166de8447268.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  
  
  
  display:  block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-45e154ba-cb1e-4566-9e9d-166de8447268-btn-wrapper {
    text-align: center;
  }


#s-45e154ba-cb1e-4566-9e9d-166de8447268.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  
  
  
  display:  block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-45e154ba-cb1e-4566-9e9d-166de8447268-btn-wrapper {
    text-align: center;
  }


#s-45e154ba-cb1e-4566-9e9d-166de8447268.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  
  
  
  display:  block ;
}
}@media (max-width: 767px){
  #s-45e154ba-cb1e-4566-9e9d-166de8447268-btn-wrapper {
    text-align: center;
  }


#s-45e154ba-cb1e-4566-9e9d-166de8447268.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: ;
  
  
  
  display:  block ;
}
}
#s-0ceac6bb-989e-459a-a60d-c767a2b03aa0 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 700px;
}








#s-0ceac6bb-989e-459a-a60d-c767a2b03aa0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0ceac6bb-989e-459a-a60d-c767a2b03aa0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-25f23ec5-2da4-4102-8bd8-b1ab52c97268 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-25f23ec5-2da4-4102-8bd8-b1ab52c97268 .shogun-heading-component h2 {
  color: #000;
  font-weight:   ;
  
  font-style:   ;
  font-size: 24px;
  line-height: ;
  letter-spacing: ;
  
}



#s-9805010f-bdcd-4fd3-8c1f-13273b592c6e {
  padding-top: 5%;
padding-bottom: 5%;
min-height: 50px;
}








#s-9805010f-bdcd-4fd3-8c1f-13273b592c6e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9805010f-bdcd-4fd3-8c1f-13273b592c6e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-078da25c-57e6-4030-924a-9e943011714c {
  margin-top: 2%;
margin-bottom: 2%;
min-height: 50px;
}








#s-078da25c-57e6-4030-924a-9e943011714c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-078da25c-57e6-4030-924a-9e943011714c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0854db83-a2bb-4af6-9599-4ea1927a1df2 {
  margin-top: 0%;
margin-bottom: 0%;
padding-top: 5%;
padding-bottom: 5%;
min-height: 50px;
background-color: rgba(27, 68, 138, 1);
}
@media (max-width: 767px){#s-0854db83-a2bb-4af6-9599-4ea1927a1df2 {
  margin-left: -1%;
margin-right: -1%;
padding-left: 5%;
padding-right: 5%;
}
}







#s-0854db83-a2bb-4af6-9599-4ea1927a1df2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0854db83-a2bb-4af6-9599-4ea1927a1df2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-5d3bc58c-7f3c-4d74-8914-532d13ad3396 {
  margin-left: auto;
margin-right: auto;
max-width: 1200px;
}

@media (min-width: 0px) {
[id="s-5d3bc58c-7f3c-4d74-8914-532d13ad3396"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5d3bc58c-7f3c-4d74-8914-532d13ad3396"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5d3bc58c-7f3c-4d74-8914-532d13ad3396"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5d3bc58c-7f3c-4d74-8914-532d13ad3396"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

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