.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-503f408c-384f-41cd-8cba-d948bcf1391a {
  text-align: center;
}







  #s-503f408c-384f-41cd-8cba-d948bcf1391a img.shogun-image {
    

    
    
    
  }


#s-503f408c-384f-41cd-8cba-d948bcf1391a .shogun-image-content {
  
    align-items: center;
  
}

.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-dbe05691-b6d1-4917-8884-d5299a122c65 {
  min-height: 50px;
}








#s-dbe05691-b6d1-4917-8884-d5299a122c65 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dbe05691-b6d1-4917-8884-d5299a122c65.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c7ba0337-5a12-4282-8e5a-b42249b498b4 {
  min-height: 50px;
}








#s-c7ba0337-5a12-4282-8e5a-b42249b498b4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c7ba0337-5a12-4282-8e5a-b42249b498b4.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-1bfdf724-89cb-4dcf-a205-49d95df324ea {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
background-color: rgba(192, 192, 192, 1);
}

#s-1bfdf724-89cb-4dcf-a205-49d95df324ea .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 64px;
  
  
  
}



#s-527bfccc-7e06-4ef7-b9b2-04e1a36a750e {
  min-height: 50px;
}








#s-527bfccc-7e06-4ef7-b9b2-04e1a36a750e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-527bfccc-7e06-4ef7-b9b2-04e1a36a750e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shg-hr-wrapper {
  padding: 30px 0;
}

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

#s-cf6efaf1-d2cd-4717-8615-0003f2bae419 hr {
  border-top: 2px solid #ddd;
}

.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-585962f0-c13f-4c04-be7f-794e60e128fc {
  padding-left: 10%;
padding-right: 10%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-585962f0-c13f-4c04-be7f-794e60e128fc"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-585962f0-c13f-4c04-be7f-794e60e128fc"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-585962f0-c13f-4c04-be7f-794e60e128fc"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-585962f0-c13f-4c04-be7f-794e60e128fc"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-852a2baf-de64-411b-ab57-06ff0ac227a1 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-852a2baf-de64-411b-ab57-06ff0ac227a1 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


#s-852a2baf-de64-411b-ab57-06ff0ac227a1 .shogun-heading-component h2 a {
  color: #000;
}


#s-d53b4a01-7cd6-4057-a5ce-10e199bbc4a7 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-d53b4a01-7cd6-4057-a5ce-10e199bbc4a7 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


#s-d53b4a01-7cd6-4057-a5ce-10e199bbc4a7 .shogun-heading-component h3 a {
  color: #000;
}


#s-11f09e92-1c4e-4a9e-81dc-ff3b5222943d {
  padding-top: 10px;
padding-bottom: 10px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-11f09e92-1c4e-4a9e-81dc-ff3b5222943d img.shogun-image,
  #s-11f09e92-1c4e-4a9e-81dc-ff3b5222943d .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-11f09e92-1c4e-4a9e-81dc-ff3b5222943d {
    width: 100%;
    height: auto;
  }



  #s-11f09e92-1c4e-4a9e-81dc-ff3b5222943d img.shogun-image {
    

    
    
    
  }


#s-11f09e92-1c4e-4a9e-81dc-ff3b5222943d .shogun-image-content {
  
    align-items: center;
  
}

.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-c61a8c23-37ba-497c-bd0a-5cee346fe5bf {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(31, 64, 119, 1);
background-color: rgba(31, 64, 119, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-c61a8c23-37ba-497c-bd0a-5cee346fe5bf:hover {border-style: solid !important;
border-color: rgba(40, 40, 114, 1) !important;
background-color: rgba(44, 91, 171, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-c61a8c23-37ba-497c-bd0a-5cee346fe5bf:active {background-color: rgba(40, 40, 114, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-c61a8c23-37ba-497c-bd0a-5cee346fe5bf-root {
    text-align: center;
  }


#s-c61a8c23-37ba-497c-bd0a-5cee346fe5bf.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c61a8c23-37ba-497c-bd0a-5cee346fe5bf-root {
    text-align: center;
  }


#s-c61a8c23-37ba-497c-bd0a-5cee346fe5bf.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c61a8c23-37ba-497c-bd0a-5cee346fe5bf-root {
    text-align: center;
  }


#s-c61a8c23-37ba-497c-bd0a-5cee346fe5bf.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c61a8c23-37ba-497c-bd0a-5cee346fe5bf-root {
    text-align: center;
  }


#s-c61a8c23-37ba-497c-bd0a-5cee346fe5bf.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c61a8c23-37ba-497c-bd0a-5cee346fe5bf-root {
    text-align: center;
  }


#s-c61a8c23-37ba-497c-bd0a-5cee346fe5bf.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
.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-27bf851c-a508-40ae-8860-0aaa2df46ac7 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-a0608cc0-791e-47e4-8fda-4e048aa542c1 hr {
  border-top: 2px solid #ddd;
}

#s-4f8b2631-ccec-42ca-bcd8-0a4311834adb {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-4f8b2631-ccec-42ca-bcd8-0a4311834adb .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


#s-4f8b2631-ccec-42ca-bcd8-0a4311834adb .shogun-heading-component h2 a {
  color: #000;
}


#s-9b19d062-614d-4a12-b8b2-7515c132c7d9 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-9b19d062-614d-4a12-b8b2-7515c132c7d9 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


#s-9b19d062-614d-4a12-b8b2-7515c132c7d9 .shogun-heading-component h3 a {
  color: #000;
}


#s-29b7135d-3a61-4873-8a33-0d946d546dec {
  padding-top: 10px;
padding-bottom: 10px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-29b7135d-3a61-4873-8a33-0d946d546dec img.shogun-image,
  #s-29b7135d-3a61-4873-8a33-0d946d546dec .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-29b7135d-3a61-4873-8a33-0d946d546dec {
    width: 100%;
    height: auto;
  }



  #s-29b7135d-3a61-4873-8a33-0d946d546dec img.shogun-image {
    

    
    
    
  }


#s-29b7135d-3a61-4873-8a33-0d946d546dec .shogun-image-content {
  
    align-items: center;
  
}

#s-190e76ac-4d65-44c0-84d8-c38c0af031d5 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(31, 64, 119, 1);
background-color: rgba(31, 64, 119, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-190e76ac-4d65-44c0-84d8-c38c0af031d5:hover {border-style: solid !important;
border-color: rgba(40, 40, 114, 1) !important;
background-color: rgba(44, 91, 171, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-190e76ac-4d65-44c0-84d8-c38c0af031d5:active {background-color: rgba(40, 40, 114, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-190e76ac-4d65-44c0-84d8-c38c0af031d5-root {
    text-align: center;
  }


#s-190e76ac-4d65-44c0-84d8-c38c0af031d5.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-190e76ac-4d65-44c0-84d8-c38c0af031d5-root {
    text-align: center;
  }


#s-190e76ac-4d65-44c0-84d8-c38c0af031d5.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-190e76ac-4d65-44c0-84d8-c38c0af031d5-root {
    text-align: center;
  }


#s-190e76ac-4d65-44c0-84d8-c38c0af031d5.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-190e76ac-4d65-44c0-84d8-c38c0af031d5-root {
    text-align: center;
  }


#s-190e76ac-4d65-44c0-84d8-c38c0af031d5.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-190e76ac-4d65-44c0-84d8-c38c0af031d5-root {
    text-align: center;
  }


#s-190e76ac-4d65-44c0-84d8-c38c0af031d5.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-a9881b0a-5736-4417-bed0-d4cb0ddd6674 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-cec3994e-bb7d-4c8a-a930-2d947db2e017 hr {
  border-top: 2px solid #ddd;
}

#s-481f4d71-f43e-437d-a055-e41d315b58c4 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-481f4d71-f43e-437d-a055-e41d315b58c4 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


#s-481f4d71-f43e-437d-a055-e41d315b58c4 .shogun-heading-component h2 a {
  color: #000;
}


#s-fdb780d0-9ffc-4e28-ba2d-6c621bea2eea {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-fdb780d0-9ffc-4e28-ba2d-6c621bea2eea .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


#s-fdb780d0-9ffc-4e28-ba2d-6c621bea2eea .shogun-heading-component h3 a {
  color: #000;
}


#s-02b8b699-cbed-4aed-95ad-c705bcbe7971 {
  padding-top: 10px;
padding-bottom: 10px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-02b8b699-cbed-4aed-95ad-c705bcbe7971 img.shogun-image,
  #s-02b8b699-cbed-4aed-95ad-c705bcbe7971 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-02b8b699-cbed-4aed-95ad-c705bcbe7971 {
    width: 100%;
    height: auto;
  }



  #s-02b8b699-cbed-4aed-95ad-c705bcbe7971 img.shogun-image {
    

    
    
    
  }


#s-02b8b699-cbed-4aed-95ad-c705bcbe7971 .shogun-image-content {
  
    align-items: center;
  
}

#s-9f808017-5e9c-4f6c-a844-d924c50284be {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(31, 64, 119, 1);
background-color: rgba(31, 64, 119, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-9f808017-5e9c-4f6c-a844-d924c50284be:hover {border-style: solid !important;
border-color: rgba(40, 40, 114, 1) !important;
background-color: rgba(44, 91, 171, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-9f808017-5e9c-4f6c-a844-d924c50284be:active {background-color: rgba(40, 40, 114, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-9f808017-5e9c-4f6c-a844-d924c50284be-root {
    text-align: center;
  }


#s-9f808017-5e9c-4f6c-a844-d924c50284be.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-9f808017-5e9c-4f6c-a844-d924c50284be-root {
    text-align: center;
  }


#s-9f808017-5e9c-4f6c-a844-d924c50284be.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9f808017-5e9c-4f6c-a844-d924c50284be-root {
    text-align: center;
  }


#s-9f808017-5e9c-4f6c-a844-d924c50284be.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9f808017-5e9c-4f6c-a844-d924c50284be-root {
    text-align: center;
  }


#s-9f808017-5e9c-4f6c-a844-d924c50284be.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-9f808017-5e9c-4f6c-a844-d924c50284be-root {
    text-align: center;
  }


#s-9f808017-5e9c-4f6c-a844-d924c50284be.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-e0c677d5-063c-48e5-8ad5-0d299e1148f5 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-a0f03228-388d-481b-8de4-c6b9420d5676 hr {
  border-top: 2px solid #ddd;
}

#s-41464811-b8b2-416f-9b29-dfd013dc03c1 {
  padding-left: 10%;
padding-right: 10%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-41464811-b8b2-416f-9b29-dfd013dc03c1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-41464811-b8b2-416f-9b29-dfd013dc03c1"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-41464811-b8b2-416f-9b29-dfd013dc03c1"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-41464811-b8b2-416f-9b29-dfd013dc03c1"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-f1a58435-f830-4efa-a261-20ec52b823ec {
  text-align: center;
}

#s-f1a58435-f830-4efa-a261-20ec52b823ec .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


#s-f1a58435-f830-4efa-a261-20ec52b823ec .shogun-heading-component h2 a {
  color: #000;
}


#s-3386a129-90b6-4c0f-8bac-2eb82e011d19 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-3386a129-90b6-4c0f-8bac-2eb82e011d19 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


#s-3386a129-90b6-4c0f-8bac-2eb82e011d19 .shogun-heading-component h3 a {
  color: #000;
}


#s-68b489f1-582a-4b8d-88e1-e44ea01066c6 {
  padding-top: 10px;
padding-bottom: 10px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-68b489f1-582a-4b8d-88e1-e44ea01066c6 img.shogun-image,
  #s-68b489f1-582a-4b8d-88e1-e44ea01066c6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-68b489f1-582a-4b8d-88e1-e44ea01066c6 {
    width: 100%;
    height: auto;
  }



  #s-68b489f1-582a-4b8d-88e1-e44ea01066c6 img.shogun-image {
    

    
    
    
  }


#s-68b489f1-582a-4b8d-88e1-e44ea01066c6 .shogun-image-content {
  
    align-items: center;
  
}

#s-51ef337b-d172-4e1c-b4cd-ed41a63ab840 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(31, 64, 119, 1);
background-color: rgba(31, 64, 119, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-51ef337b-d172-4e1c-b4cd-ed41a63ab840:hover {border-style: solid !important;
border-color: rgba(40, 40, 114, 1) !important;
background-color: rgba(44, 91, 171, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-51ef337b-d172-4e1c-b4cd-ed41a63ab840:active {background-color: rgba(40, 40, 114, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-51ef337b-d172-4e1c-b4cd-ed41a63ab840-root {
    text-align: center;
  }


#s-51ef337b-d172-4e1c-b4cd-ed41a63ab840.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-51ef337b-d172-4e1c-b4cd-ed41a63ab840-root {
    text-align: center;
  }


#s-51ef337b-d172-4e1c-b4cd-ed41a63ab840.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-51ef337b-d172-4e1c-b4cd-ed41a63ab840-root {
    text-align: center;
  }


#s-51ef337b-d172-4e1c-b4cd-ed41a63ab840.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-51ef337b-d172-4e1c-b4cd-ed41a63ab840-root {
    text-align: center;
  }


#s-51ef337b-d172-4e1c-b4cd-ed41a63ab840.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-51ef337b-d172-4e1c-b4cd-ed41a63ab840-root {
    text-align: center;
  }


#s-51ef337b-d172-4e1c-b4cd-ed41a63ab840.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-6643092c-4e28-4f3e-9206-89e59bdb8b0d {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-f71ca7c2-3aaf-445f-b981-5ae1a94886ea hr {
  border-top: 2px solid #ddd;
}

#s-a0d1d806-521a-4969-a29a-476fd16020be {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-a0d1d806-521a-4969-a29a-476fd16020be .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


#s-a0d1d806-521a-4969-a29a-476fd16020be .shogun-heading-component h2 a {
  color: #000;
}


#s-e512232f-9c90-4219-9153-279e44eadc90 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-e512232f-9c90-4219-9153-279e44eadc90 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


#s-e512232f-9c90-4219-9153-279e44eadc90 .shogun-heading-component h3 a {
  color: #000;
}


#s-69f06d79-aa3d-4b69-adc7-eccbdcafa3f9 {
  padding-top: 10px;
padding-bottom: 10px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-69f06d79-aa3d-4b69-adc7-eccbdcafa3f9 img.shogun-image,
  #s-69f06d79-aa3d-4b69-adc7-eccbdcafa3f9 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-69f06d79-aa3d-4b69-adc7-eccbdcafa3f9 {
    width: 100%;
    height: auto;
  }



  #s-69f06d79-aa3d-4b69-adc7-eccbdcafa3f9 img.shogun-image {
    

    
    
    
  }


#s-69f06d79-aa3d-4b69-adc7-eccbdcafa3f9 .shogun-image-content {
  
    align-items: center;
  
}

#s-a6d5bf9a-225e-4e72-b8e7-d0de1ecba93c {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(31, 64, 119, 1);
background-color: rgba(31, 64, 119, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-a6d5bf9a-225e-4e72-b8e7-d0de1ecba93c:hover {border-style: solid !important;
border-color: rgba(40, 40, 114, 1) !important;
background-color: rgba(44, 91, 171, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-a6d5bf9a-225e-4e72-b8e7-d0de1ecba93c:active {background-color: rgba(40, 40, 114, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-a6d5bf9a-225e-4e72-b8e7-d0de1ecba93c-root {
    text-align: center;
  }


#s-a6d5bf9a-225e-4e72-b8e7-d0de1ecba93c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-a6d5bf9a-225e-4e72-b8e7-d0de1ecba93c-root {
    text-align: center;
  }


#s-a6d5bf9a-225e-4e72-b8e7-d0de1ecba93c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a6d5bf9a-225e-4e72-b8e7-d0de1ecba93c-root {
    text-align: center;
  }


#s-a6d5bf9a-225e-4e72-b8e7-d0de1ecba93c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a6d5bf9a-225e-4e72-b8e7-d0de1ecba93c-root {
    text-align: center;
  }


#s-a6d5bf9a-225e-4e72-b8e7-d0de1ecba93c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-a6d5bf9a-225e-4e72-b8e7-d0de1ecba93c-root {
    text-align: center;
  }


#s-a6d5bf9a-225e-4e72-b8e7-d0de1ecba93c.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-e3954b14-9b1b-449c-8aa2-000cf1266ea9 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-8c180226-13a7-4b85-8682-12e90d995995 hr {
  border-top: 2px solid #ddd;
}

#s-fbdea20b-fce1-467a-af6f-0a742997293b {
  text-align: center;
}

#s-fbdea20b-fce1-467a-af6f-0a742997293b .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


#s-fbdea20b-fce1-467a-af6f-0a742997293b .shogun-heading-component h2 a {
  color: #000;
}


#s-d66cd234-0119-458a-9817-e4a3a8daa6e7 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-d66cd234-0119-458a-9817-e4a3a8daa6e7 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


#s-d66cd234-0119-458a-9817-e4a3a8daa6e7 .shogun-heading-component h3 a {
  color: #000;
}


#s-d866cf7d-372b-437e-9e3c-96bec49d5414 {
  padding-top: 10px;
padding-bottom: 10px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-d866cf7d-372b-437e-9e3c-96bec49d5414 img.shogun-image,
  #s-d866cf7d-372b-437e-9e3c-96bec49d5414 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-d866cf7d-372b-437e-9e3c-96bec49d5414 {
    width: 100%;
    height: auto;
  }



  #s-d866cf7d-372b-437e-9e3c-96bec49d5414 img.shogun-image {
    

    
    
    
  }


#s-d866cf7d-372b-437e-9e3c-96bec49d5414 .shogun-image-content {
  
    align-items: center;
  
}

#s-44a85622-1036-46ac-8e84-4451cdaff766 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(31, 64, 119, 1);
background-color: rgba(31, 64, 119, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-44a85622-1036-46ac-8e84-4451cdaff766:hover {border-style: solid !important;
border-color: rgba(40, 40, 114, 1) !important;
background-color: rgba(44, 91, 171, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-44a85622-1036-46ac-8e84-4451cdaff766:active {background-color: rgba(40, 40, 114, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-44a85622-1036-46ac-8e84-4451cdaff766-root {
    text-align: center;
  }


#s-44a85622-1036-46ac-8e84-4451cdaff766.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-44a85622-1036-46ac-8e84-4451cdaff766-root {
    text-align: center;
  }


#s-44a85622-1036-46ac-8e84-4451cdaff766.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-44a85622-1036-46ac-8e84-4451cdaff766-root {
    text-align: center;
  }


#s-44a85622-1036-46ac-8e84-4451cdaff766.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-44a85622-1036-46ac-8e84-4451cdaff766-root {
    text-align: center;
  }


#s-44a85622-1036-46ac-8e84-4451cdaff766.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-44a85622-1036-46ac-8e84-4451cdaff766-root {
    text-align: center;
  }


#s-44a85622-1036-46ac-8e84-4451cdaff766.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-e08499d2-61f7-4dbe-9c02-61aa3f5f931e {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-a9d541a7-6379-40e0-8298-90952f37eeb6 hr {
  border-top: 2px solid #ddd;
}

#s-fa49e1fd-0709-450c-95be-b213ba95c3cf {
  padding-left: 10%;
padding-right: 10%;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-fa49e1fd-0709-450c-95be-b213ba95c3cf"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-fa49e1fd-0709-450c-95be-b213ba95c3cf"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-fa49e1fd-0709-450c-95be-b213ba95c3cf"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-fa49e1fd-0709-450c-95be-b213ba95c3cf"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-45c9351e-3a04-44b9-9891-26f9f4262ca4 {
  text-align: center;
}

#s-45c9351e-3a04-44b9-9891-26f9f4262ca4 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


#s-45c9351e-3a04-44b9-9891-26f9f4262ca4 .shogun-heading-component h2 a {
  color: #000;
}


#s-32779be4-558d-4752-a131-1af97fe4474f {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-32779be4-558d-4752-a131-1af97fe4474f .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


#s-32779be4-558d-4752-a131-1af97fe4474f .shogun-heading-component h3 a {
  color: #000;
}


#s-32eb9e5d-b396-4e29-b8be-6dbed1eaac74 {
  padding-top: 10px;
padding-bottom: 10px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-32eb9e5d-b396-4e29-b8be-6dbed1eaac74 img.shogun-image,
  #s-32eb9e5d-b396-4e29-b8be-6dbed1eaac74 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-32eb9e5d-b396-4e29-b8be-6dbed1eaac74 {
    width: 100%;
    height: auto;
  }



  #s-32eb9e5d-b396-4e29-b8be-6dbed1eaac74 img.shogun-image {
    

    
    
    
  }


#s-32eb9e5d-b396-4e29-b8be-6dbed1eaac74 .shogun-image-content {
  
    align-items: center;
  
}

#s-4023d779-f141-45fa-921c-1249d2a1ee3f {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(31, 64, 119, 1);
background-color: rgba(31, 64, 119, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-4023d779-f141-45fa-921c-1249d2a1ee3f:hover {border-style: solid !important;
border-color: rgba(40, 40, 114, 1) !important;
background-color: rgba(44, 91, 171, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-4023d779-f141-45fa-921c-1249d2a1ee3f:active {background-color: rgba(40, 40, 114, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-4023d779-f141-45fa-921c-1249d2a1ee3f-root {
    text-align: center;
  }


#s-4023d779-f141-45fa-921c-1249d2a1ee3f.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-4023d779-f141-45fa-921c-1249d2a1ee3f-root {
    text-align: center;
  }


#s-4023d779-f141-45fa-921c-1249d2a1ee3f.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-4023d779-f141-45fa-921c-1249d2a1ee3f-root {
    text-align: center;
  }


#s-4023d779-f141-45fa-921c-1249d2a1ee3f.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-4023d779-f141-45fa-921c-1249d2a1ee3f-root {
    text-align: center;
  }


#s-4023d779-f141-45fa-921c-1249d2a1ee3f.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-4023d779-f141-45fa-921c-1249d2a1ee3f-root {
    text-align: center;
  }


#s-4023d779-f141-45fa-921c-1249d2a1ee3f.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-c43c9fa8-eb1f-4e72-9ea6-e90798add047 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-3bebfdfc-30c9-4d59-b6d3-cc5e6c21f010 hr {
  border-top: 2px solid #ddd;
}

#s-e10066e9-b14d-40bb-9bbb-fa14c5546fbe {
  text-align: center;
}

#s-e10066e9-b14d-40bb-9bbb-fa14c5546fbe .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


#s-e10066e9-b14d-40bb-9bbb-fa14c5546fbe .shogun-heading-component h2 a {
  color: #000;
}


#s-c07a268b-ebb8-47ea-9e5f-7f7ed3d0bf9c {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-c07a268b-ebb8-47ea-9e5f-7f7ed3d0bf9c .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


#s-c07a268b-ebb8-47ea-9e5f-7f7ed3d0bf9c .shogun-heading-component h3 a {
  color: #000;
}


#s-066341b4-f7db-42ba-8b8b-705a5b36a3ff {
  padding-top: 10px;
padding-bottom: 10px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-066341b4-f7db-42ba-8b8b-705a5b36a3ff img.shogun-image,
  #s-066341b4-f7db-42ba-8b8b-705a5b36a3ff .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-066341b4-f7db-42ba-8b8b-705a5b36a3ff {
    width: 100%;
    height: auto;
  }



  #s-066341b4-f7db-42ba-8b8b-705a5b36a3ff img.shogun-image {
    

    
    
    
  }


#s-066341b4-f7db-42ba-8b8b-705a5b36a3ff .shogun-image-content {
  
    align-items: center;
  
}

#s-a2fd8849-79ef-4ab1-bc6d-3c85b462acbb {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(31, 64, 119, 1);
background-color: rgba(31, 64, 119, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-a2fd8849-79ef-4ab1-bc6d-3c85b462acbb:hover {border-style: solid !important;
border-color: rgba(40, 40, 114, 1) !important;
background-color: rgba(44, 91, 171, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-a2fd8849-79ef-4ab1-bc6d-3c85b462acbb:active {background-color: rgba(40, 40, 114, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-a2fd8849-79ef-4ab1-bc6d-3c85b462acbb-root {
    text-align: center;
  }


#s-a2fd8849-79ef-4ab1-bc6d-3c85b462acbb.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-a2fd8849-79ef-4ab1-bc6d-3c85b462acbb-root {
    text-align: center;
  }


#s-a2fd8849-79ef-4ab1-bc6d-3c85b462acbb.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a2fd8849-79ef-4ab1-bc6d-3c85b462acbb-root {
    text-align: center;
  }


#s-a2fd8849-79ef-4ab1-bc6d-3c85b462acbb.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a2fd8849-79ef-4ab1-bc6d-3c85b462acbb-root {
    text-align: center;
  }


#s-a2fd8849-79ef-4ab1-bc6d-3c85b462acbb.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-a2fd8849-79ef-4ab1-bc6d-3c85b462acbb-root {
    text-align: center;
  }


#s-a2fd8849-79ef-4ab1-bc6d-3c85b462acbb.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-6fb45fa8-d0ed-4bd1-9d6c-b39afe118bb0 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-f0089e01-af06-4eb8-b572-13620f3cc579 hr {
  border-top: 2px solid #ddd;
}

#s-9b769293-40da-4711-8432-2cb32a497e44 {
  text-align: center;
}

#s-9b769293-40da-4711-8432-2cb32a497e44 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


#s-9b769293-40da-4711-8432-2cb32a497e44 .shogun-heading-component h2 a {
  color: #000;
}


#s-c03df9ed-c835-4559-8bd0-500ca6a69d47 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-c03df9ed-c835-4559-8bd0-500ca6a69d47 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


#s-c03df9ed-c835-4559-8bd0-500ca6a69d47 .shogun-heading-component h3 a {
  color: #000;
}


#s-92bba697-3f48-4d05-90ec-53ce22774c26 {
  padding-top: 10px;
padding-bottom: 10px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-92bba697-3f48-4d05-90ec-53ce22774c26 img.shogun-image,
  #s-92bba697-3f48-4d05-90ec-53ce22774c26 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-92bba697-3f48-4d05-90ec-53ce22774c26 {
    width: 100%;
    height: auto;
  }



  #s-92bba697-3f48-4d05-90ec-53ce22774c26 img.shogun-image {
    

    
    
    
  }


#s-92bba697-3f48-4d05-90ec-53ce22774c26 .shogun-image-content {
  
    align-items: center;
  
}

#s-5ef54e00-8182-4308-9871-7e26a7f20ac3 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(31, 64, 119, 1);
background-color: rgba(31, 64, 119, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-5ef54e00-8182-4308-9871-7e26a7f20ac3:hover {border-style: solid !important;
border-color: rgba(40, 40, 114, 1) !important;
background-color: rgba(44, 91, 171, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-5ef54e00-8182-4308-9871-7e26a7f20ac3:active {background-color: rgba(40, 40, 114, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-5ef54e00-8182-4308-9871-7e26a7f20ac3-root {
    text-align: center;
  }


#s-5ef54e00-8182-4308-9871-7e26a7f20ac3.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-5ef54e00-8182-4308-9871-7e26a7f20ac3-root {
    text-align: center;
  }


#s-5ef54e00-8182-4308-9871-7e26a7f20ac3.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-5ef54e00-8182-4308-9871-7e26a7f20ac3-root {
    text-align: center;
  }


#s-5ef54e00-8182-4308-9871-7e26a7f20ac3.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-5ef54e00-8182-4308-9871-7e26a7f20ac3-root {
    text-align: center;
  }


#s-5ef54e00-8182-4308-9871-7e26a7f20ac3.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-5ef54e00-8182-4308-9871-7e26a7f20ac3-root {
    text-align: center;
  }


#s-5ef54e00-8182-4308-9871-7e26a7f20ac3.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-2d815d2d-2b3c-4f42-b624-e80416c20f33 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-0a24fcca-8349-4230-8d43-8db8c032d173 hr {
  border-top: 2px solid #ddd;
}

#s-cb5f1ce9-5288-475f-a450-2558250d06fe {
  padding-left: 10%;
padding-right: 10%;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-cb5f1ce9-5288-475f-a450-2558250d06fe"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-cb5f1ce9-5288-475f-a450-2558250d06fe"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-cb5f1ce9-5288-475f-a450-2558250d06fe"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-cb5f1ce9-5288-475f-a450-2558250d06fe"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-156b1519-66b8-44d2-bc2e-8231071aafc4 {
  text-align: center;
}

#s-156b1519-66b8-44d2-bc2e-8231071aafc4 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


#s-156b1519-66b8-44d2-bc2e-8231071aafc4 .shogun-heading-component h2 a {
  color: #000;
}


#s-2130a73f-b422-4bb4-af17-408f21e3851c {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-2130a73f-b422-4bb4-af17-408f21e3851c .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


#s-2130a73f-b422-4bb4-af17-408f21e3851c .shogun-heading-component h3 a {
  color: #000;
}


#s-849c7681-3e99-4ec1-9650-3207064e20d6 {
  padding-top: 10px;
padding-bottom: 10px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-849c7681-3e99-4ec1-9650-3207064e20d6 img.shogun-image,
  #s-849c7681-3e99-4ec1-9650-3207064e20d6 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-849c7681-3e99-4ec1-9650-3207064e20d6 {
    width: 100%;
    height: auto;
  }



  #s-849c7681-3e99-4ec1-9650-3207064e20d6 img.shogun-image {
    

    
    
    
  }


#s-849c7681-3e99-4ec1-9650-3207064e20d6 .shogun-image-content {
  
    align-items: center;
  
}

#s-c65d55be-11fd-4551-a59a-2f233f4a4d05 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(31, 64, 119, 1);
background-color: rgba(31, 64, 119, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-c65d55be-11fd-4551-a59a-2f233f4a4d05:hover {border-style: solid !important;
border-color: rgba(40, 40, 114, 1) !important;
background-color: rgba(44, 91, 171, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-c65d55be-11fd-4551-a59a-2f233f4a4d05:active {background-color: rgba(40, 40, 114, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-c65d55be-11fd-4551-a59a-2f233f4a4d05-root {
    text-align: center;
  }


#s-c65d55be-11fd-4551-a59a-2f233f4a4d05.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-c65d55be-11fd-4551-a59a-2f233f4a4d05-root {
    text-align: center;
  }


#s-c65d55be-11fd-4551-a59a-2f233f4a4d05.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-c65d55be-11fd-4551-a59a-2f233f4a4d05-root {
    text-align: center;
  }


#s-c65d55be-11fd-4551-a59a-2f233f4a4d05.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-c65d55be-11fd-4551-a59a-2f233f4a4d05-root {
    text-align: center;
  }


#s-c65d55be-11fd-4551-a59a-2f233f4a4d05.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-c65d55be-11fd-4551-a59a-2f233f4a4d05-root {
    text-align: center;
  }


#s-c65d55be-11fd-4551-a59a-2f233f4a4d05.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-7d9d0d01-8f5d-4733-b6b1-f5712adf57ea {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-36de766f-960d-437d-a625-2e194a4b684b hr {
  border-top: 2px solid #ddd;
}

#s-ea128c34-1523-4492-b682-21cbde9c189c {
  text-align: center;
}

#s-ea128c34-1523-4492-b682-21cbde9c189c .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


#s-ea128c34-1523-4492-b682-21cbde9c189c .shogun-heading-component h2 a {
  color: #000;
}


#s-5d9a1588-f429-4a2e-ad62-e03d41aac4d7 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-5d9a1588-f429-4a2e-ad62-e03d41aac4d7 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


#s-5d9a1588-f429-4a2e-ad62-e03d41aac4d7 .shogun-heading-component h3 a {
  color: #000;
}


#s-7cdc3097-6671-491a-b0fa-c88512cbb0ad {
  padding-top: 10px;
padding-bottom: 10px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-7cdc3097-6671-491a-b0fa-c88512cbb0ad img.shogun-image,
  #s-7cdc3097-6671-491a-b0fa-c88512cbb0ad .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-7cdc3097-6671-491a-b0fa-c88512cbb0ad {
    width: 100%;
    height: auto;
  }



  #s-7cdc3097-6671-491a-b0fa-c88512cbb0ad img.shogun-image {
    

    
    
    
  }


#s-7cdc3097-6671-491a-b0fa-c88512cbb0ad .shogun-image-content {
  
    align-items: center;
  
}

#s-613cd84e-5168-40a7-99c8-b68ee5b9476d {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(31, 64, 119, 1);
background-color: rgba(31, 64, 119, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-613cd84e-5168-40a7-99c8-b68ee5b9476d:hover {border-style: solid !important;
border-color: rgba(40, 40, 114, 1) !important;
background-color: rgba(44, 91, 171, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-613cd84e-5168-40a7-99c8-b68ee5b9476d:active {background-color: rgba(40, 40, 114, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-613cd84e-5168-40a7-99c8-b68ee5b9476d-root {
    text-align: center;
  }


#s-613cd84e-5168-40a7-99c8-b68ee5b9476d.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-613cd84e-5168-40a7-99c8-b68ee5b9476d-root {
    text-align: center;
  }


#s-613cd84e-5168-40a7-99c8-b68ee5b9476d.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-613cd84e-5168-40a7-99c8-b68ee5b9476d-root {
    text-align: center;
  }


#s-613cd84e-5168-40a7-99c8-b68ee5b9476d.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-613cd84e-5168-40a7-99c8-b68ee5b9476d-root {
    text-align: center;
  }


#s-613cd84e-5168-40a7-99c8-b68ee5b9476d.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-613cd84e-5168-40a7-99c8-b68ee5b9476d-root {
    text-align: center;
  }


#s-613cd84e-5168-40a7-99c8-b68ee5b9476d.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-fa74b697-1e5f-478c-bad7-ff70ad919e43 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-0cb34598-9f9a-4e47-84e6-64a14573dcc9 hr {
  border-top: 2px solid #ddd;
}

#s-28dfe502-bafd-4245-a5b0-b0c600a1f81a {
  text-align: center;
}

#s-28dfe502-bafd-4245-a5b0-b0c600a1f81a .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


#s-28dfe502-bafd-4245-a5b0-b0c600a1f81a .shogun-heading-component h2 a {
  color: #000;
}


#s-950ca0d8-3e50-46b7-ada0-d6330671683f {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-950ca0d8-3e50-46b7-ada0-d6330671683f .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


#s-950ca0d8-3e50-46b7-ada0-d6330671683f .shogun-heading-component h3 a {
  color: #000;
}


#s-6fe8c5ea-aad3-43bc-800e-0ddc25f96bb1 {
  padding-top: 10px;
padding-bottom: 10px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-6fe8c5ea-aad3-43bc-800e-0ddc25f96bb1 img.shogun-image,
  #s-6fe8c5ea-aad3-43bc-800e-0ddc25f96bb1 .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-6fe8c5ea-aad3-43bc-800e-0ddc25f96bb1 {
    width: 100%;
    height: auto;
  }



  #s-6fe8c5ea-aad3-43bc-800e-0ddc25f96bb1 img.shogun-image {
    

    
    
    
  }


#s-6fe8c5ea-aad3-43bc-800e-0ddc25f96bb1 .shogun-image-content {
  
    align-items: center;
  
}

#s-e7074d7f-1242-4728-8e51-0f9fefea5cae {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(31, 64, 119, 1);
background-color: rgba(31, 64, 119, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-e7074d7f-1242-4728-8e51-0f9fefea5cae:hover {border-style: solid !important;
border-color: rgba(40, 40, 114, 1) !important;
background-color: rgba(44, 91, 171, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-e7074d7f-1242-4728-8e51-0f9fefea5cae:active {background-color: rgba(40, 40, 114, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-e7074d7f-1242-4728-8e51-0f9fefea5cae-root {
    text-align: center;
  }


#s-e7074d7f-1242-4728-8e51-0f9fefea5cae.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-e7074d7f-1242-4728-8e51-0f9fefea5cae-root {
    text-align: center;
  }


#s-e7074d7f-1242-4728-8e51-0f9fefea5cae.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-e7074d7f-1242-4728-8e51-0f9fefea5cae-root {
    text-align: center;
  }


#s-e7074d7f-1242-4728-8e51-0f9fefea5cae.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-e7074d7f-1242-4728-8e51-0f9fefea5cae-root {
    text-align: center;
  }


#s-e7074d7f-1242-4728-8e51-0f9fefea5cae.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-e7074d7f-1242-4728-8e51-0f9fefea5cae-root {
    text-align: center;
  }


#s-e7074d7f-1242-4728-8e51-0f9fefea5cae.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-16c10cfb-0f2b-4d40-b247-acf26339f800 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-726d3b43-e470-4fdb-ae5e-0cf2bcf6a124 hr {
  border-top: 2px solid #ddd;
}

#s-42bf7050-3c66-42c1-a205-b38812711b12 {
  padding-left: 10%;
padding-right: 10%;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 0px) {
[id="s-42bf7050-3c66-42c1-a205-b38812711b12"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-42bf7050-3c66-42c1-a205-b38812711b12"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-42bf7050-3c66-42c1-a205-b38812711b12"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-42bf7050-3c66-42c1-a205-b38812711b12"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-66bf6d0e-9d25-4c83-b5f8-a206d43fcc4b {
  text-align: center;
}

#s-66bf6d0e-9d25-4c83-b5f8-a206d43fcc4b .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  
}


#s-66bf6d0e-9d25-4c83-b5f8-a206d43fcc4b .shogun-heading-component h2 a {
  color: #000;
}


#s-37b28bd6-b4ab-4fe4-ae97-b24dd4a95f94 {
  padding-top: 0px;
padding-bottom: 0px;
text-align: center;
}

#s-37b28bd6-b4ab-4fe4-ae97-b24dd4a95f94 .shogun-heading-component h3 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  
  
  
}


#s-37b28bd6-b4ab-4fe4-ae97-b24dd4a95f94 .shogun-heading-component h3 a {
  color: #000;
}


#s-cb140e7e-72b0-4dcc-a1f6-d6050c732fbc {
  padding-top: 10px;
padding-bottom: 10px;
aspect-ratio: 1/1;
text-align: center;
}





  #s-cb140e7e-72b0-4dcc-a1f6-d6050c732fbc img.shogun-image,
  #s-cb140e7e-72b0-4dcc-a1f6-d6050c732fbc .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-cb140e7e-72b0-4dcc-a1f6-d6050c732fbc {
    width: 100%;
    height: auto;
  }



  #s-cb140e7e-72b0-4dcc-a1f6-d6050c732fbc img.shogun-image {
    

    
    
    
  }


#s-cb140e7e-72b0-4dcc-a1f6-d6050c732fbc .shogun-image-content {
  
    align-items: center;
  
}

#s-d0330ca2-fd60-44c5-b3ed-47167fafb4f0 {
  border-style: solid;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(31, 64, 119, 1);
background-color: rgba(31, 64, 119, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-d0330ca2-fd60-44c5-b3ed-47167fafb4f0:hover {border-style: solid !important;
border-color: rgba(40, 40, 114, 1) !important;
background-color: rgba(44, 91, 171, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}#s-d0330ca2-fd60-44c5-b3ed-47167fafb4f0:active {background-color: rgba(40, 40, 114, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-d0330ca2-fd60-44c5-b3ed-47167fafb4f0-root {
    text-align: center;
  }


#s-d0330ca2-fd60-44c5-b3ed-47167fafb4f0.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d0330ca2-fd60-44c5-b3ed-47167fafb4f0-root {
    text-align: center;
  }


#s-d0330ca2-fd60-44c5-b3ed-47167fafb4f0.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d0330ca2-fd60-44c5-b3ed-47167fafb4f0-root {
    text-align: center;
  }


#s-d0330ca2-fd60-44c5-b3ed-47167fafb4f0.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d0330ca2-fd60-44c5-b3ed-47167fafb4f0-root {
    text-align: center;
  }


#s-d0330ca2-fd60-44c5-b3ed-47167fafb4f0.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d0330ca2-fd60-44c5-b3ed-47167fafb4f0-root {
    text-align: center;
  }


#s-d0330ca2-fd60-44c5-b3ed-47167fafb4f0.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  
  
  
  display:  inline-block ;
}
}
#s-141b04fd-c78f-423b-bba8-2619f904f3f5 {
  padding-top: 10px;
padding-bottom: 10px;
}

#s-148bae1b-7520-4ca7-a668-1d6afc9e57b8 hr {
  border-top: 2px solid #ddd;
}

/*
  $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:after,.shg-c:before{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width:1024px){.shg-box,.shg-c{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,.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:focus,.shg-lightbox .shg-lightbox-close:hover{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 .3s}.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}