.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-35e4c94d-bc5c-4c58-b4a5-cd28d7b0b568 {
  min-height: 50px;
}








#s-35e4c94d-bc5c-4c58-b4a5-cd28d7b0b568 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-35e4c94d-bc5c-4c58-b4a5-cd28d7b0b568.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-e46012da-c1a1-486c-a5d1-e60b8b688c53 {
  text-align: center;
}








#s-e46012da-c1a1-486c-a5d1-e60b8b688c53 .shogun-image-content {
  
    align-items: center;
  
}

#s-d0575020-168f-4bb7-8473-e59cfa8fd61d {
  padding-top: 10px;
padding-left: 50px;
padding-bottom: 10px;
padding-right: 50px;
min-height: 50px;
background-color: rgba(235, 236, 238, 1);
}
@media (min-width: 1200px){#s-d0575020-168f-4bb7-8473-e59cfa8fd61d {
  display: none;
}
#s-d0575020-168f-4bb7-8473-e59cfa8fd61d, #wrap-s-d0575020-168f-4bb7-8473-e59cfa8fd61d { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d0575020-168f-4bb7-8473-e59cfa8fd61d {
  display: none;
}
#s-d0575020-168f-4bb7-8473-e59cfa8fd61d, #wrap-s-d0575020-168f-4bb7-8473-e59cfa8fd61d { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d0575020-168f-4bb7-8473-e59cfa8fd61d {
  display: none;
}
#s-d0575020-168f-4bb7-8473-e59cfa8fd61d, #wrap-s-d0575020-168f-4bb7-8473-e59cfa8fd61d { display:none !important; }}@media (max-width: 767px){#s-d0575020-168f-4bb7-8473-e59cfa8fd61d {
  display: none;
}
#s-d0575020-168f-4bb7-8473-e59cfa8fd61d, #wrap-s-d0575020-168f-4bb7-8473-e59cfa8fd61d { display:none !important; }}







#s-d0575020-168f-4bb7-8473-e59cfa8fd61d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d0575020-168f-4bb7-8473-e59cfa8fd61d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1356d272-6a1e-4b50-987a-a65230fc65a3 {
  margin-top: -25px;
margin-bottom: -25px;
min-height: 50px;
}








#s-1356d272-6a1e-4b50-987a-a65230fc65a3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1356d272-6a1e-4b50-987a-a65230fc65a3.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1200px){#s-02f2089c-db41-4488-a52e-15e6e1311edb {
  display: none;
}
#s-02f2089c-db41-4488-a52e-15e6e1311edb, #wrap-s-02f2089c-db41-4488-a52e-15e6e1311edb { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-02f2089c-db41-4488-a52e-15e6e1311edb {
  display: none;
}
#s-02f2089c-db41-4488-a52e-15e6e1311edb, #wrap-s-02f2089c-db41-4488-a52e-15e6e1311edb { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-02f2089c-db41-4488-a52e-15e6e1311edb {
  display: none;
}
#s-02f2089c-db41-4488-a52e-15e6e1311edb, #wrap-s-02f2089c-db41-4488-a52e-15e6e1311edb { display:none !important; }}@media (max-width: 767px){#s-02f2089c-db41-4488-a52e-15e6e1311edb {
  display: none;
}
#s-02f2089c-db41-4488-a52e-15e6e1311edb, #wrap-s-02f2089c-db41-4488-a52e-15e6e1311edb { display:none !important; }}
#s-973ef5ad-9638-4358-bd00-16ec2e0fb881 {
  margin-top: 35px;
min-height: 50px;
}








#s-973ef5ad-9638-4358-bd00-16ec2e0fb881 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-973ef5ad-9638-4358-bd00-16ec2e0fb881.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-875949bc-0b99-4147-a8c0-2ee25d6c11c2 {
  padding-left: 100px;
padding-right: 100px;
min-height: 48px;
}








#s-875949bc-0b99-4147-a8c0-2ee25d6c11c2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-875949bc-0b99-4147-a8c0-2ee25d6c11c2.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-bc32aa41-9332-407a-9213-89abf2aff3c1 {
  padding-top: 25px;
padding-bottom: 25px;
text-align: center;
}

#s-bc32aa41-9332-407a-9213-89abf2aff3c1 .shogun-heading-component h2 {
  color: rgba(37, 140, 197, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 32px;
  
  
  text-align: 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;
}

#s-32ea3cab-4f0a-4094-97d1-e8ed47ea841f {
  margin-bottom: 30px;
}

@media (min-width: 0px) {
[id="s-32ea3cab-4f0a-4094-97d1-e8ed47ea841f"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-32ea3cab-4f0a-4094-97d1-e8ed47ea841f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

@media (min-width: 992px) {
[id="s-32ea3cab-4f0a-4094-97d1-e8ed47ea841f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

@media (min-width: 1200px) {
[id="s-32ea3cab-4f0a-4094-97d1-e8ed47ea841f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

#s-7f6beda2-e3fc-4541-87d5-c5c26ff46952 {
  min-height: 50px;
}








#s-7f6beda2-e3fc-4541-87d5-c5c26ff46952 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7f6beda2-e3fc-4541-87d5-c5c26ff46952 {
  cursor: pointer;
}#s-7f6beda2-e3fc-4541-87d5-c5c26ff46952.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-034fbf78-6682-4bc6-a3a3-3a6f25bc7ea6 {
  text-align: center;
}







  img.s-034fbf78-6682-4bc6-a3a3-3a6f25bc7ea6.shogun-image {
    
    
  }


.s-034fbf78-6682-4bc6-a3a3-3a6f25bc7ea6 .shogun-image-content {
  
    align-items: center;
  
}

.s-034fbf78-6682-4bc6-a3a3-3a6f25bc7ea6.shg-align-container {
  text-align: center
}

.s-034fbf78-6682-4bc6-a3a3-3a6f25bc7ea6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-034fbf78-6682-4bc6-a3a3-3a6f25bc7ea6.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-034fbf78-6682-4bc6-a3a3-3a6f25bc7ea6.shogun-image {
    
    
  }


.s-034fbf78-6682-4bc6-a3a3-3a6f25bc7ea6 .shogun-image-content {
  
    align-items: center;
  
}

.s-034fbf78-6682-4bc6-a3a3-3a6f25bc7ea6.shg-align-container {
  text-align: center
}

.s-034fbf78-6682-4bc6-a3a3-3a6f25bc7ea6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-034fbf78-6682-4bc6-a3a3-3a6f25bc7ea6.shogun-image {
  box-sizing: border-box;
}


}@media (min-width: 992px) and (max-width: 1199px){





  img.s-034fbf78-6682-4bc6-a3a3-3a6f25bc7ea6.shogun-image {
    
    
  }


.s-034fbf78-6682-4bc6-a3a3-3a6f25bc7ea6 .shogun-image-content {
  
    align-items: center;
  
}

.s-034fbf78-6682-4bc6-a3a3-3a6f25bc7ea6.shg-align-container {
  text-align: center
}

.s-034fbf78-6682-4bc6-a3a3-3a6f25bc7ea6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-034fbf78-6682-4bc6-a3a3-3a6f25bc7ea6.shogun-image {
  box-sizing: border-box;
}


}@media (min-width: 768px) and (max-width: 991px){





  img.s-034fbf78-6682-4bc6-a3a3-3a6f25bc7ea6.shogun-image {
    
    
  }


.s-034fbf78-6682-4bc6-a3a3-3a6f25bc7ea6 .shogun-image-content {
  
    align-items: center;
  
}

.s-034fbf78-6682-4bc6-a3a3-3a6f25bc7ea6.shg-align-container {
  text-align: center
}

.s-034fbf78-6682-4bc6-a3a3-3a6f25bc7ea6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-034fbf78-6682-4bc6-a3a3-3a6f25bc7ea6.shogun-image {
  box-sizing: border-box;
}


}@media (max-width: 767px){





  img.s-034fbf78-6682-4bc6-a3a3-3a6f25bc7ea6.shogun-image {
    
    
  }


.s-034fbf78-6682-4bc6-a3a3-3a6f25bc7ea6 .shogun-image-content {
  
    align-items: center;
  
}

.s-034fbf78-6682-4bc6-a3a3-3a6f25bc7ea6.shg-align-container {
  text-align: center
}

.s-034fbf78-6682-4bc6-a3a3-3a6f25bc7ea6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-034fbf78-6682-4bc6-a3a3-3a6f25bc7ea6.shogun-image {
  box-sizing: border-box;
}


}
#s-432f108c-fe01-404b-825a-9f77ea47c5c1 {
  padding-bottom: 10px;
text-align: center;
}

#s-432f108c-fe01-404b-825a-9f77ea47c5c1 .shogun-heading-component h2 {
  color: rgba(77, 77, 77, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-432f108c-fe01-404b-825a-9f77ea47c5c1 .shogun-heading-component h2 a {
  color: rgba(77, 77, 77, 1);
}


#s-9c53bdb2-079f-4d02-b487-42297c64c7a9 {
  min-height: 50px;
}








#s-9c53bdb2-079f-4d02-b487-42297c64c7a9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9c53bdb2-079f-4d02-b487-42297c64c7a9 {
  cursor: pointer;
}#s-9c53bdb2-079f-4d02-b487-42297c64c7a9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b7eee129-26b3-49b2-8056-9fdd2d5d261f {
  text-align: center;
}







  #s-b7eee129-26b3-49b2-8056-9fdd2d5d261f img.shogun-image {
    

    
    
    
  }


#s-b7eee129-26b3-49b2-8056-9fdd2d5d261f .shogun-image-content {
  
    align-items: center;
  
}

#s-6e1939ee-f7ae-4697-90e9-2019320cd2e5 {
  padding-bottom: 10px;
text-align: center;
}

#s-6e1939ee-f7ae-4697-90e9-2019320cd2e5 .shogun-heading-component h2 {
  color: rgba(77, 77, 77, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-6e1939ee-f7ae-4697-90e9-2019320cd2e5 .shogun-heading-component h2 a {
  color: rgba(77, 77, 77, 1);
}


#s-143f737c-2176-4b49-a207-bf399b795536 {
  min-height: 50px;
}








#s-143f737c-2176-4b49-a207-bf399b795536 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-143f737c-2176-4b49-a207-bf399b795536 {
  cursor: pointer;
}#s-143f737c-2176-4b49-a207-bf399b795536.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-884730f2-1766-4c40-8433-ef1ef0656066 {
  text-align: center;
}







  #s-884730f2-1766-4c40-8433-ef1ef0656066 img.shogun-image {
    

    
    
    
  }


#s-884730f2-1766-4c40-8433-ef1ef0656066 .shogun-image-content {
  
    align-items: center;
  
}

#s-38b9f4de-ce63-42d1-8ccb-6e6b04d700cf {
  padding-bottom: 10px;
text-align: center;
}

#s-38b9f4de-ce63-42d1-8ccb-6e6b04d700cf .shogun-heading-component h2 {
  color: rgba(77, 77, 77, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-e11a8be7-d353-4122-a4b4-24c8d96b3434 {
  margin-bottom: 30px;
}

@media (min-width: 0px) {
[id="s-e11a8be7-d353-4122-a4b4-24c8d96b3434"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e11a8be7-d353-4122-a4b4-24c8d96b3434"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

@media (min-width: 992px) {
[id="s-e11a8be7-d353-4122-a4b4-24c8d96b3434"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

@media (min-width: 1200px) {
[id="s-e11a8be7-d353-4122-a4b4-24c8d96b3434"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

#s-190c0537-236b-4bb5-b996-7ae2ba61532d {
  min-height: 50px;
}








#s-190c0537-236b-4bb5-b996-7ae2ba61532d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-190c0537-236b-4bb5-b996-7ae2ba61532d {
  cursor: pointer;
}#s-190c0537-236b-4bb5-b996-7ae2ba61532d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-3822c205-3fe4-4c07-8db1-0a2d9af72ce2 {
  text-align: center;
}







  #s-3822c205-3fe4-4c07-8db1-0a2d9af72ce2 img.shogun-image {
    

    
    
    
  }


#s-3822c205-3fe4-4c07-8db1-0a2d9af72ce2 .shogun-image-content {
  
    align-items: center;
  
}

#s-6f68b6e0-e4e3-4c11-af6a-cb86dee87be3 {
  padding-bottom: 10px;
text-align: center;
}

#s-6f68b6e0-e4e3-4c11-af6a-cb86dee87be3 .shogun-heading-component h2 {
  color: rgba(77, 77, 77, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-6f68b6e0-e4e3-4c11-af6a-cb86dee87be3 .shogun-heading-component h2 a {
  color: rgba(77, 77, 77, 1);
}


#s-41c36825-442d-47cd-ad36-8b4407fda41e {
  margin-top: 10px;
padding-top: 20px;
padding-bottom: 20px;
text-align: center;
}







  #s-41c36825-442d-47cd-ad36-8b4407fda41e img.shogun-image {
    

    
    
    
  }


#s-41c36825-442d-47cd-ad36-8b4407fda41e .shogun-image-content {
  
    align-items: center;
  
}

#s-acba8519-5c33-4361-b44e-843d46904191 {
  min-height: 50px;
}








#s-acba8519-5c33-4361-b44e-843d46904191 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-acba8519-5c33-4361-b44e-843d46904191 {
  cursor: pointer;
}#s-acba8519-5c33-4361-b44e-843d46904191.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f68fdf7e-1a9c-485c-9b6d-e9b2dd7fd736 {
  padding-bottom: 10px;
text-align: center;
}

#s-f68fdf7e-1a9c-485c-9b6d-e9b2dd7fd736 .shogun-heading-component h2 {
  color: rgba(77, 77, 77, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-f68fdf7e-1a9c-485c-9b6d-e9b2dd7fd736 .shogun-heading-component h2 a {
  color: rgba(77, 77, 77, 1);
}


#s-0febd1c0-9b7e-4b18-b1a8-c111e8bf2d52 {
  min-height: 50px;
}








#s-0febd1c0-9b7e-4b18-b1a8-c111e8bf2d52 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0febd1c0-9b7e-4b18-b1a8-c111e8bf2d52 {
  cursor: pointer;
}#s-0febd1c0-9b7e-4b18-b1a8-c111e8bf2d52.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e886881f-7733-451a-9b05-d287e7003484 {
  text-align: center;
}







  #s-e886881f-7733-451a-9b05-d287e7003484 img.shogun-image {
    

    
    
    
  }


#s-e886881f-7733-451a-9b05-d287e7003484 .shogun-image-content {
  
    align-items: center;
  
}

#s-8e2b867a-2d6f-44bb-be63-0dc5ff6d925a {
  padding-bottom: 10px;
text-align: center;
}

#s-8e2b867a-2d6f-44bb-be63-0dc5ff6d925a .shogun-heading-component h2 {
  color: rgba(77, 77, 77, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-8e2b867a-2d6f-44bb-be63-0dc5ff6d925a .shogun-heading-component h2 a {
  color: rgba(77, 77, 77, 1);
}


#s-07380c12-7b35-4afa-bfb8-b040d3735e87 {
  margin-bottom: 30px;
}

@media (min-width: 0px) {
[id="s-07380c12-7b35-4afa-bfb8-b040d3735e87"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-07380c12-7b35-4afa-bfb8-b040d3735e87"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

@media (min-width: 992px) {
[id="s-07380c12-7b35-4afa-bfb8-b040d3735e87"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

@media (min-width: 1200px) {
[id="s-07380c12-7b35-4afa-bfb8-b040d3735e87"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

#s-250b885b-fe15-4b82-b2f4-a9ea8c53a91e {
  min-height: 50px;
}








#s-250b885b-fe15-4b82-b2f4-a9ea8c53a91e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-250b885b-fe15-4b82-b2f4-a9ea8c53a91e.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9263dad7-e7aa-44b8-b8a6-6fa14675bcfd {
  text-align: center;
}







  #s-9263dad7-e7aa-44b8-b8a6-6fa14675bcfd img.shogun-image {
    

    
    
    
  }


#s-9263dad7-e7aa-44b8-b8a6-6fa14675bcfd .shogun-image-content {
  
    align-items: center;
  
}

#s-7a3ab6fb-1c47-40e8-819f-7c74614a898e {
  padding-bottom: 10px;
text-align: center;
}

#s-7a3ab6fb-1c47-40e8-819f-7c74614a898e .shogun-heading-component h2 {
  color: rgba(77, 77, 77, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-7a3ab6fb-1c47-40e8-819f-7c74614a898e .shogun-heading-component h2 a {
  color: rgba(77, 77, 77, 1);
}


#s-08b88c1b-075c-4547-a596-ad2fb0966de3 {
  text-align: center;
}







  #s-08b88c1b-075c-4547-a596-ad2fb0966de3 img.shogun-image {
    

    
    
    
  }


#s-08b88c1b-075c-4547-a596-ad2fb0966de3 .shogun-image-content {
  
    align-items: center;
  
}

#s-120d3194-5374-45b9-9698-e44cbb97e10c {
  padding-bottom: 10px;
text-align: center;
}

#s-120d3194-5374-45b9-9698-e44cbb97e10c .shogun-heading-component h2 {
  color: rgba(77, 77, 77, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-120d3194-5374-45b9-9698-e44cbb97e10c .shogun-heading-component h2 a {
  color: rgba(77, 77, 77, 1);
}


#s-c783140a-d200-4440-a646-44706361cea7 {
  min-height: 50px;
}








#s-c783140a-d200-4440-a646-44706361cea7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c783140a-d200-4440-a646-44706361cea7 {
  cursor: pointer;
}#s-c783140a-d200-4440-a646-44706361cea7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-c74355e3-ad49-45cf-828e-ede683383cb7 {
  text-align: center;
}







  #s-c74355e3-ad49-45cf-828e-ede683383cb7 img.shogun-image {
    

    
    
    
  }


#s-c74355e3-ad49-45cf-828e-ede683383cb7 .shogun-image-content {
  
    align-items: center;
  
}

#s-bd2f5c48-1022-4b65-9710-06bf595d50af {
  padding-bottom: 10px;
text-align: center;
}

#s-bd2f5c48-1022-4b65-9710-06bf595d50af .shogun-heading-component h2 {
  color: rgba(77, 77, 77, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-bd2f5c48-1022-4b65-9710-06bf595d50af .shogun-heading-component h2 a {
  color: rgba(77, 77, 77, 1);
}


#s-8f1f2b79-86b3-4883-8c6e-72909971acdf {
  margin-bottom: 30px;
}

@media (min-width: 0px) {
[id="s-8f1f2b79-86b3-4883-8c6e-72909971acdf"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8f1f2b79-86b3-4883-8c6e-72909971acdf"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

@media (min-width: 992px) {
[id="s-8f1f2b79-86b3-4883-8c6e-72909971acdf"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

@media (min-width: 1200px) {
[id="s-8f1f2b79-86b3-4883-8c6e-72909971acdf"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

#s-1024398b-61fb-4b2d-9a37-5b690190da82 {
  text-align: center;
}







  img.s-1024398b-61fb-4b2d-9a37-5b690190da82.shogun-image {
    
    
  }


.s-1024398b-61fb-4b2d-9a37-5b690190da82 .shogun-image-content {
  
    align-items: center;
  
}

.s-1024398b-61fb-4b2d-9a37-5b690190da82.shg-align-container {
  text-align: center
}

.s-1024398b-61fb-4b2d-9a37-5b690190da82.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1024398b-61fb-4b2d-9a37-5b690190da82.shogun-image {
  box-sizing: border-box;
}


@media (min-width: 1200px){





  img.s-1024398b-61fb-4b2d-9a37-5b690190da82.shogun-image {
    
    
  }


.s-1024398b-61fb-4b2d-9a37-5b690190da82 .shogun-image-content {
  
    align-items: center;
  
}

.s-1024398b-61fb-4b2d-9a37-5b690190da82.shg-align-container {
  text-align: center
}

.s-1024398b-61fb-4b2d-9a37-5b690190da82.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1024398b-61fb-4b2d-9a37-5b690190da82.shogun-image {
  box-sizing: border-box;
}


}@media (min-width: 992px) and (max-width: 1199px){





  img.s-1024398b-61fb-4b2d-9a37-5b690190da82.shogun-image {
    
    
  }


.s-1024398b-61fb-4b2d-9a37-5b690190da82 .shogun-image-content {
  
    align-items: center;
  
}

.s-1024398b-61fb-4b2d-9a37-5b690190da82.shg-align-container {
  text-align: center
}

.s-1024398b-61fb-4b2d-9a37-5b690190da82.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1024398b-61fb-4b2d-9a37-5b690190da82.shogun-image {
  box-sizing: border-box;
}


}@media (min-width: 768px) and (max-width: 991px){





  img.s-1024398b-61fb-4b2d-9a37-5b690190da82.shogun-image {
    
    
  }


.s-1024398b-61fb-4b2d-9a37-5b690190da82 .shogun-image-content {
  
    align-items: center;
  
}

.s-1024398b-61fb-4b2d-9a37-5b690190da82.shg-align-container {
  text-align: center
}

.s-1024398b-61fb-4b2d-9a37-5b690190da82.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1024398b-61fb-4b2d-9a37-5b690190da82.shogun-image {
  box-sizing: border-box;
}


}@media (max-width: 767px){





  img.s-1024398b-61fb-4b2d-9a37-5b690190da82.shogun-image {
    
    
  }


.s-1024398b-61fb-4b2d-9a37-5b690190da82 .shogun-image-content {
  
    align-items: center;
  
}

.s-1024398b-61fb-4b2d-9a37-5b690190da82.shg-align-container {
  text-align: center
}

.s-1024398b-61fb-4b2d-9a37-5b690190da82.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-1024398b-61fb-4b2d-9a37-5b690190da82.shogun-image {
  box-sizing: border-box;
}


}
.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-0b2075ee-1b80-4a40-a376-6cb880a9be85 {
  min-height: 50px;
}








#s-0b2075ee-1b80-4a40-a376-6cb880a9be85 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0b2075ee-1b80-4a40-a376-6cb880a9be85 {
  cursor: pointer;
}#s-0b2075ee-1b80-4a40-a376-6cb880a9be85.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9627a3c3-e54c-4994-98df-473659b72cde {
  text-align: center;
}







  #s-9627a3c3-e54c-4994-98df-473659b72cde img.shogun-image {
    

    
    
    
  }


#s-9627a3c3-e54c-4994-98df-473659b72cde .shogun-image-content {
  
    align-items: center;
  
}

#s-3b4de590-9c9a-427f-9885-00e6d01df335 {
  padding-bottom: 10px;
text-align: center;
}

#s-3b4de590-9c9a-427f-9885-00e6d01df335 .shogun-heading-component h2 {
  color: rgba(77, 77, 77, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-3b4de590-9c9a-427f-9885-00e6d01df335 .shogun-heading-component h2 a {
  color: rgba(77, 77, 77, 1);
}


#s-6aff2f4d-5225-4361-a4f9-b6c16087f8ef {
  min-height: 50px;
}








#s-6aff2f4d-5225-4361-a4f9-b6c16087f8ef > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6aff2f4d-5225-4361-a4f9-b6c16087f8ef {
  cursor: pointer;
}#s-6aff2f4d-5225-4361-a4f9-b6c16087f8ef.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a9cbf6b1-857c-4f32-a487-91e50898ee24 {
  text-align: center;
}







  #s-a9cbf6b1-857c-4f32-a487-91e50898ee24 img.shogun-image {
    

    
    
    
  }


#s-a9cbf6b1-857c-4f32-a487-91e50898ee24 .shogun-image-content {
  
    align-items: center;
  
}

#s-bb5b6b2f-84af-45b8-b83b-b98264e3d616 {
  padding-top: 0px;
padding-bottom: 10px;
text-align: center;
}

#s-bb5b6b2f-84af-45b8-b83b-b98264e3d616 .shogun-heading-component h2 {
  color: rgba(77, 77, 77, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-bb5b6b2f-84af-45b8-b83b-b98264e3d616 .shogun-heading-component h2 a {
  color: rgba(77, 77, 77, 1);
}


#s-6db09bf4-8628-4421-8e9c-aa92ed349322 {
  margin-bottom: 30px;
}

@media (min-width: 0px) {
[id="s-6db09bf4-8628-4421-8e9c-aa92ed349322"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-6db09bf4-8628-4421-8e9c-aa92ed349322"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

@media (min-width: 992px) {
[id="s-6db09bf4-8628-4421-8e9c-aa92ed349322"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

@media (min-width: 1200px) {
[id="s-6db09bf4-8628-4421-8e9c-aa92ed349322"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

}

#s-63863334-8af5-4de3-b0e5-0c95ecf14e22 {
  min-height: 50px;
}








#s-63863334-8af5-4de3-b0e5-0c95ecf14e22 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-63863334-8af5-4de3-b0e5-0c95ecf14e22.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-f89ab1f9-bf82-42db-8e27-4f576beaf387 {
  text-align: center;
}







  #s-f89ab1f9-bf82-42db-8e27-4f576beaf387 img.shogun-image {
    

    
    
    
  }


#s-f89ab1f9-bf82-42db-8e27-4f576beaf387 .shogun-image-content {
  
    align-items: center;
  
}

#s-233f1023-3086-4772-9ff3-7ff08cdca238 {
  padding-bottom: 10px;
text-align: center;
}

#s-233f1023-3086-4772-9ff3-7ff08cdca238 .shogun-heading-component h2 {
  color: rgba(77, 77, 77, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}


#s-233f1023-3086-4772-9ff3-7ff08cdca238 .shogun-heading-component h2 a {
  color: rgba(77, 77, 77, 1);
}


#s-d0a5f7d3-80a5-42f0-a407-d23e77cd361c {
  min-height: 50px;
}








#s-d0a5f7d3-80a5-42f0-a407-d23e77cd361c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d0a5f7d3-80a5-42f0-a407-d23e77cd361c {
  cursor: pointer;
}#s-d0a5f7d3-80a5-42f0-a407-d23e77cd361c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-59f38953-be33-4eba-a73b-c95b2fcc3915 {
  text-align: center;
}







  #s-59f38953-be33-4eba-a73b-c95b2fcc3915 img.shogun-image {
    

    
    
    
  }


#s-59f38953-be33-4eba-a73b-c95b2fcc3915 .shogun-image-content {
  
    align-items: center;
  
}

#s-3e3e8d34-1dec-4f07-976b-46eeaccac6a3 {
  padding-bottom: 10px;
text-align: center;
}

#s-3e3e8d34-1dec-4f07-976b-46eeaccac6a3 .shogun-heading-component h2 {
  color: rgba(77, 77, 77, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-26f3dbc3-4aad-45f4-9b6e-2d993c14fca2 {
  min-height: 50px;
}








#s-26f3dbc3-4aad-45f4-9b6e-2d993c14fca2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-26f3dbc3-4aad-45f4-9b6e-2d993c14fca2 {
  cursor: pointer;
}#s-26f3dbc3-4aad-45f4-9b6e-2d993c14fca2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b7381ae0-5063-4a15-8c2c-63a54f946d93 {
  text-align: center;
}







  #s-b7381ae0-5063-4a15-8c2c-63a54f946d93 img.shogun-image {
    

    
    
    
  }


#s-b7381ae0-5063-4a15-8c2c-63a54f946d93 .shogun-image-content {
  
    align-items: center;
  
}

#s-e42e2a76-cf21-4af2-96eb-9e002eea9a70 {
  padding-bottom: 10px;
text-align: center;
}

#s-e42e2a76-cf21-4af2-96eb-9e002eea9a70 .shogun-heading-component h2 {
  color: rgba(77, 77, 77, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  
  
  
}



#s-2d931f75-8841-45fc-a02c-25d1f52796c5 {
  padding-top: 20px;
padding-left: 100px;
padding-right: 100px;
min-height: 50px;
}
@media (min-width: 1200px){#s-2d931f75-8841-45fc-a02c-25d1f52796c5 {
  display: none;
}
#s-2d931f75-8841-45fc-a02c-25d1f52796c5, #wrap-s-2d931f75-8841-45fc-a02c-25d1f52796c5 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2d931f75-8841-45fc-a02c-25d1f52796c5 {
  display: none;
}
#s-2d931f75-8841-45fc-a02c-25d1f52796c5, #wrap-s-2d931f75-8841-45fc-a02c-25d1f52796c5 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2d931f75-8841-45fc-a02c-25d1f52796c5 {
  display: none;
}
#s-2d931f75-8841-45fc-a02c-25d1f52796c5, #wrap-s-2d931f75-8841-45fc-a02c-25d1f52796c5 { display:none !important; }}@media (max-width: 767px){#s-2d931f75-8841-45fc-a02c-25d1f52796c5 {
  display: none;
}
#s-2d931f75-8841-45fc-a02c-25d1f52796c5, #wrap-s-2d931f75-8841-45fc-a02c-25d1f52796c5 { display:none !important; }}







#s-2d931f75-8841-45fc-a02c-25d1f52796c5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2d931f75-8841-45fc-a02c-25d1f52796c5.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8f6c6592-ec3b-47bc-9fc3-639d8901015b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-8f6c6592-ec3b-47bc-9fc3-639d8901015b .shogun-heading-component h2 {
  color: rgba(37, 140, 197, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  text-align: left;
}



@media (min-width: 0px) {
[id="s-4003e8ec-26d3-45c1-86c2-ac6976528bef"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-4003e8ec-26d3-45c1-86c2-ac6976528bef"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-4003e8ec-26d3-45c1-86c2-ac6976528bef"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-4003e8ec-26d3-45c1-86c2-ac6976528bef"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-4003e8ec-26d3-45c1-86c2-ac6976528bef"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-4003e8ec-26d3-45c1-86c2-ac6976528bef"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-4003e8ec-26d3-45c1-86c2-ac6976528bef"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-c6cec551-a845-4421-bccc-c9afb81fadbb {
  padding-top: 10px;
padding-bottom: 0px;
text-align: left;
}

#s-c6cec551-a845-4421-bccc-c9afb81fadbb .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



@media (min-width: 0px) {
[id="s-2df367c3-f515-4e96-8d7c-5cad966f462c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-2df367c3-f515-4e96-8d7c-5cad966f462c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-2df367c3-f515-4e96-8d7c-5cad966f462c"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-2df367c3-f515-4e96-8d7c-5cad966f462c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-2df367c3-f515-4e96-8d7c-5cad966f462c"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-2df367c3-f515-4e96-8d7c-5cad966f462c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-2df367c3-f515-4e96-8d7c-5cad966f462c"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-ffa8f5b6-9886-48e5-9116-fc65e202e810 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: left;
}

#s-ffa8f5b6-9886-48e5-9116-fc65e202e810 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



@media (min-width: 0px) {
[id="s-20933d6d-c676-4042-8b6e-d6021d7b9c67"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-20933d6d-c676-4042-8b6e-d6021d7b9c67"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-20933d6d-c676-4042-8b6e-d6021d7b9c67"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-20933d6d-c676-4042-8b6e-d6021d7b9c67"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-20933d6d-c676-4042-8b6e-d6021d7b9c67"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-20933d6d-c676-4042-8b6e-d6021d7b9c67"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-20933d6d-c676-4042-8b6e-d6021d7b9c67"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-e2937d82-a4e0-41ff-9c66-1d50fa14f9f5 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: left;
}

#s-e2937d82-a4e0-41ff-9c66-1d50fa14f9f5 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



@media (min-width: 0px) {
[id="s-b35ff3b3-eb77-4b28-92d8-d47f7f54e4a4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b35ff3b3-eb77-4b28-92d8-d47f7f54e4a4"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-b35ff3b3-eb77-4b28-92d8-d47f7f54e4a4"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b35ff3b3-eb77-4b28-92d8-d47f7f54e4a4"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-b35ff3b3-eb77-4b28-92d8-d47f7f54e4a4"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b35ff3b3-eb77-4b28-92d8-d47f7f54e4a4"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-b35ff3b3-eb77-4b28-92d8-d47f7f54e4a4"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-a51f40bb-0782-425f-b33a-31178570db6b {
  padding-top: 10px;
padding-bottom: 0px;
text-align: left;
}

#s-a51f40bb-0782-425f-b33a-31178570db6b .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



@media (min-width: 0px) {
[id="s-5db82744-dae6-45b2-aa3a-72512b9248bd"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5db82744-dae6-45b2-aa3a-72512b9248bd"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-5db82744-dae6-45b2-aa3a-72512b9248bd"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5db82744-dae6-45b2-aa3a-72512b9248bd"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-5db82744-dae6-45b2-aa3a-72512b9248bd"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5db82744-dae6-45b2-aa3a-72512b9248bd"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-5db82744-dae6-45b2-aa3a-72512b9248bd"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-743d8ae7-081b-4ba0-a77a-bca86ee917f8 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: left;
}

#s-743d8ae7-081b-4ba0-a77a-bca86ee917f8 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



@media (min-width: 0px) {
[id="s-a1f20e3c-c881-4605-9939-ee459e2d318c"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a1f20e3c-c881-4605-9939-ee459e2d318c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-a1f20e3c-c881-4605-9939-ee459e2d318c"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a1f20e3c-c881-4605-9939-ee459e2d318c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-a1f20e3c-c881-4605-9939-ee459e2d318c"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a1f20e3c-c881-4605-9939-ee459e2d318c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-a1f20e3c-c881-4605-9939-ee459e2d318c"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-6d29abce-8244-4806-855a-2d67d589c064 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: left;
}

#s-6d29abce-8244-4806-855a-2d67d589c064 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



@media (min-width: 0px) {
[id="s-8d44acf9-3c1b-4dba-a393-6e6762e515aa"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8d44acf9-3c1b-4dba-a393-6e6762e515aa"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-8d44acf9-3c1b-4dba-a393-6e6762e515aa"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8d44acf9-3c1b-4dba-a393-6e6762e515aa"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-8d44acf9-3c1b-4dba-a393-6e6762e515aa"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8d44acf9-3c1b-4dba-a393-6e6762e515aa"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-8d44acf9-3c1b-4dba-a393-6e6762e515aa"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-e7da2ac8-28b8-42dd-8ca8-aaa1c3b5450e {
  padding-top: 10px;
padding-bottom: 0px;
text-align: left;
}

#s-e7da2ac8-28b8-42dd-8ca8-aaa1c3b5450e .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



@media (min-width: 0px) {
[id="s-96e87c29-1d50-49b7-9203-5a9ab9178483"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-96e87c29-1d50-49b7-9203-5a9ab9178483"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-96e87c29-1d50-49b7-9203-5a9ab9178483"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-96e87c29-1d50-49b7-9203-5a9ab9178483"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-96e87c29-1d50-49b7-9203-5a9ab9178483"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-96e87c29-1d50-49b7-9203-5a9ab9178483"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-96e87c29-1d50-49b7-9203-5a9ab9178483"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-348e836c-d8c0-449a-b04b-249c3902922d {
  padding-top: 10px;
padding-bottom: 0px;
text-align: left;
}

#s-348e836c-d8c0-449a-b04b-249c3902922d .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



@media (min-width: 0px) {
[id="s-7c144998-ba2f-4932-b944-e750bc7a276e"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7c144998-ba2f-4932-b944-e750bc7a276e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-7c144998-ba2f-4932-b944-e750bc7a276e"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7c144998-ba2f-4932-b944-e750bc7a276e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-7c144998-ba2f-4932-b944-e750bc7a276e"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7c144998-ba2f-4932-b944-e750bc7a276e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-7c144998-ba2f-4932-b944-e750bc7a276e"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-2cd833ac-ffde-4274-891c-964b0057d166 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: left;
}

#s-2cd833ac-ffde-4274-891c-964b0057d166 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



@media (min-width: 0px) {
[id="s-b986aa67-3fea-4f36-9ad5-c65605b86289"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b986aa67-3fea-4f36-9ad5-c65605b86289"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-b986aa67-3fea-4f36-9ad5-c65605b86289"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-b986aa67-3fea-4f36-9ad5-c65605b86289"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-b986aa67-3fea-4f36-9ad5-c65605b86289"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-b986aa67-3fea-4f36-9ad5-c65605b86289"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-b986aa67-3fea-4f36-9ad5-c65605b86289"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-72663b24-62d5-4d0d-a795-08fe614b8e86 {
  padding-top: 10px;
padding-bottom: 0px;
text-align: left;
}

#s-72663b24-62d5-4d0d-a795-08fe614b8e86 .shogun-heading-component h2 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 24px;
  
  
  text-align: left;
}



@media (min-width: 0px) {
[id="s-7bbbabae-883b-4c8c-b7e8-829968d9f869"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7bbbabae-883b-4c8c-b7e8-829968d9f869"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-7bbbabae-883b-4c8c-b7e8-829968d9f869"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7bbbabae-883b-4c8c-b7e8-829968d9f869"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-7bbbabae-883b-4c8c-b7e8-829968d9f869"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7bbbabae-883b-4c8c-b7e8-829968d9f869"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-7bbbabae-883b-4c8c-b7e8-829968d9f869"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

}

#s-56a8b793-cbb9-47e3-920a-bdfbafab4f8a {
  max-width: 190px;
text-align: left;
}







  #s-56a8b793-cbb9-47e3-920a-bdfbafab4f8a img.shogun-image {
    

    
    
    
  }


#s-56a8b793-cbb9-47e3-920a-bdfbafab4f8a .shogun-image-content {
  
    align-items: center;
  
}

#s-a2125702-6ad1-4c9e-9653-c045f16e1c06 {
  padding-top: 20px;
padding-left: 100px;
padding-right: 100px;
min-height: 50px;
}








#s-a2125702-6ad1-4c9e-9653-c045f16e1c06 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a2125702-6ad1-4c9e-9653-c045f16e1c06.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-6489391c-5a40-4e2a-887a-52ca77d4038b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-6489391c-5a40-4e2a-887a-52ca77d4038b .shogun-heading-component h2 {
  color: rgba(37, 140, 197, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  text-align: left;
}



#s-1b98175a-180e-4bf6-becf-cb532ace044f {
  padding-top: 20px;
padding-left: 100px;
padding-right: 100px;
min-height: 50px;
}








#s-1b98175a-180e-4bf6-becf-cb532ace044f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1b98175a-180e-4bf6-becf-cb532ace044f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-99d1ac0e-1527-4d00-ad7c-55938023b7fb {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-99d1ac0e-1527-4d00-ad7c-55938023b7fb .shogun-heading-component h2 {
  color: rgba(37, 140, 197, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  text-align: left;
}



#s-49e92b7e-797e-499f-9aee-b5b5768bd03f {
  padding-top: 20px;
padding-left: 100px;
padding-bottom: 25px;
padding-right: 100px;
min-height: 50px;
}








#s-49e92b7e-797e-499f-9aee-b5b5768bd03f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-49e92b7e-797e-499f-9aee-b5b5768bd03f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-64b716e1-f5b7-42c1-9f0b-d74905666372 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: left;
}

#s-64b716e1-f5b7-42c1-9f0b-d74905666372 .shogun-heading-component h2 {
  color: rgba(37, 140, 197, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 28px;
  
  
  text-align: left;
}



#s-8b5ca29b-3cfd-40f6-b2ec-426cc8ff0c16 {
  min-height: 50px;
}








#s-8b5ca29b-3cfd-40f6-b2ec-426cc8ff0c16 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8b5ca29b-3cfd-40f6-b2ec-426cc8ff0c16.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-23cc01b5-db60-4870-8bbd-95e5c674072c {
  background-repeat: no-repeat;
background-size: cover;
margin-bottom: 60px;
padding-top: 10px;
padding-bottom: 10px;
min-height: 50px;
background-position: center center;
}








#s-23cc01b5-db60-4870-8bbd-95e5c674072c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-23cc01b5-db60-4870-8bbd-95e5c674072c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-cde777e9-d3c7-49ff-8c37-cccd2ce9b347 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cde777e9-d3c7-49ff-8c37-cccd2ce9b347 .shogun-heading-component h2 {
  color: rgba(66, 178, 66, 1);
  font-weight:  normal ;
  font-family: "AlternateGotNo1D";
  font-style:  normal ;
  font-size: 60px;
  
  letter-spacing: 2px;
  
}



#s-1f1728ce-c970-4fad-991d-29772b042be5 {
  padding-left: 100px;
padding-bottom: 30px;
padding-right: 100px;
min-height: 50px;
}








#s-1f1728ce-c970-4fad-991d-29772b042be5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1f1728ce-c970-4fad-991d-29772b042be5.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-78104571-8011-43c3-b33e-ace2e66db658"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-78104571-8011-43c3-b33e-ace2e66db658"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-78104571-8011-43c3-b33e-ace2e66db658"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-78104571-8011-43c3-b33e-ace2e66db658"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-78104571-8011-43c3-b33e-ace2e66db658"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-78104571-8011-43c3-b33e-ace2e66db658"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-78104571-8011-43c3-b33e-ace2e66db658"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-2ae8e935-77f5-4544-89da-e561f4d3b910 {
  text-align: center;
}








#s-2ae8e935-77f5-4544-89da-e561f4d3b910 .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-3f3427f4-e679-4376-956f-eb64c776d9fe {
  margin-top: 15px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(29, 144, 215, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-3f3427f4-e679-4376-956f-eb64c776d9fe:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-3f3427f4-e679-4376-956f-eb64c776d9fe:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-3f3427f4-e679-4376-956f-eb64c776d9fe-root {
    text-align: left;
  }


#s-3f3427f4-e679-4376-956f-eb64c776d9fe.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-3f3427f4-e679-4376-956f-eb64c776d9fe-root {
    text-align: left;
  }


#s-3f3427f4-e679-4376-956f-eb64c776d9fe.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3f3427f4-e679-4376-956f-eb64c776d9fe-root {
    text-align: left;
  }


#s-3f3427f4-e679-4376-956f-eb64c776d9fe.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3f3427f4-e679-4376-956f-eb64c776d9fe-root {
    text-align: left;
  }


#s-3f3427f4-e679-4376-956f-eb64c776d9fe.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-3f3427f4-e679-4376-956f-eb64c776d9fe-root {
    text-align: left;
  }


#s-3f3427f4-e679-4376-956f-eb64c776d9fe.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}
#s-c7592e01-550f-4ff2-8a17-ce6402473656 {
  padding-left: 100px;
padding-bottom: 30px;
padding-right: 100px;
min-height: 50px;
}








#s-c7592e01-550f-4ff2-8a17-ce6402473656 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c7592e01-550f-4ff2-8a17-ce6402473656.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-0704a963-5c64-469c-984f-7e74488d392a"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0704a963-5c64-469c-984f-7e74488d392a"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0704a963-5c64-469c-984f-7e74488d392a"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0704a963-5c64-469c-984f-7e74488d392a"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0704a963-5c64-469c-984f-7e74488d392a"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0704a963-5c64-469c-984f-7e74488d392a"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0704a963-5c64-469c-984f-7e74488d392a"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-3f4a16fc-cfa4-410f-b19a-7661c08e8934 {
  text-align: center;
}







  #s-3f4a16fc-cfa4-410f-b19a-7661c08e8934 img.shogun-image {
    

    
    
    
  }


#s-3f4a16fc-cfa4-410f-b19a-7661c08e8934 .shogun-image-content {
  
    align-items: center;
  
}

#s-71c90fd9-051b-4418-8e96-4fb7221894f9 {
  margin-top: 15px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(29, 144, 215, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-71c90fd9-051b-4418-8e96-4fb7221894f9:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-71c90fd9-051b-4418-8e96-4fb7221894f9:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-71c90fd9-051b-4418-8e96-4fb7221894f9-root {
    text-align: left;
  }


#s-71c90fd9-051b-4418-8e96-4fb7221894f9.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-71c90fd9-051b-4418-8e96-4fb7221894f9-root {
    text-align: left;
  }


#s-71c90fd9-051b-4418-8e96-4fb7221894f9.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-71c90fd9-051b-4418-8e96-4fb7221894f9-root {
    text-align: left;
  }


#s-71c90fd9-051b-4418-8e96-4fb7221894f9.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-71c90fd9-051b-4418-8e96-4fb7221894f9-root {
    text-align: left;
  }


#s-71c90fd9-051b-4418-8e96-4fb7221894f9.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-71c90fd9-051b-4418-8e96-4fb7221894f9-root {
    text-align: left;
  }


#s-71c90fd9-051b-4418-8e96-4fb7221894f9.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}
#s-bf771fd0-72df-4805-85ee-c302acbe451d {
  padding-left: 100px;
padding-bottom: 30px;
padding-right: 100px;
min-height: 50px;
}








#s-bf771fd0-72df-4805-85ee-c302acbe451d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bf771fd0-72df-4805-85ee-c302acbe451d.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-bff35401-1a86-41f8-9d38-6fd6b5e5ec2d"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-bff35401-1a86-41f8-9d38-6fd6b5e5ec2d"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bff35401-1a86-41f8-9d38-6fd6b5e5ec2d"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-bff35401-1a86-41f8-9d38-6fd6b5e5ec2d"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bff35401-1a86-41f8-9d38-6fd6b5e5ec2d"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-bff35401-1a86-41f8-9d38-6fd6b5e5ec2d"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-bff35401-1a86-41f8-9d38-6fd6b5e5ec2d"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-a6c54cc8-1656-4d71-bcf7-3d02e31f43b0 {
  text-align: center;
}







  #s-a6c54cc8-1656-4d71-bcf7-3d02e31f43b0 img.shogun-image {
    

    
    
    
  }


#s-a6c54cc8-1656-4d71-bcf7-3d02e31f43b0 .shogun-image-content {
  
    align-items: center;
  
}

#s-f8e27fe8-d2a8-4b4e-a168-e33512c4a701 {
  margin-top: 15px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(29, 144, 215, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-f8e27fe8-d2a8-4b4e-a168-e33512c4a701:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-f8e27fe8-d2a8-4b4e-a168-e33512c4a701:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-f8e27fe8-d2a8-4b4e-a168-e33512c4a701-root {
    text-align: left;
  }


#s-f8e27fe8-d2a8-4b4e-a168-e33512c4a701.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-f8e27fe8-d2a8-4b4e-a168-e33512c4a701-root {
    text-align: left;
  }


#s-f8e27fe8-d2a8-4b4e-a168-e33512c4a701.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-f8e27fe8-d2a8-4b4e-a168-e33512c4a701-root {
    text-align: left;
  }


#s-f8e27fe8-d2a8-4b4e-a168-e33512c4a701.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-f8e27fe8-d2a8-4b4e-a168-e33512c4a701-root {
    text-align: left;
  }


#s-f8e27fe8-d2a8-4b4e-a168-e33512c4a701.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-f8e27fe8-d2a8-4b4e-a168-e33512c4a701-root {
    text-align: left;
  }


#s-f8e27fe8-d2a8-4b4e-a168-e33512c4a701.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}
#s-b488d817-02ea-44af-ad1e-7d62c90be06e {
  padding-left: 100px;
padding-bottom: 30px;
padding-right: 100px;
min-height: 50px;
}








#s-b488d817-02ea-44af-ad1e-7d62c90be06e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b488d817-02ea-44af-ad1e-7d62c90be06e.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-a7372134-47fa-4196-a278-83e61b9ad519"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a7372134-47fa-4196-a278-83e61b9ad519"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a7372134-47fa-4196-a278-83e61b9ad519"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a7372134-47fa-4196-a278-83e61b9ad519"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a7372134-47fa-4196-a278-83e61b9ad519"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a7372134-47fa-4196-a278-83e61b9ad519"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-a7372134-47fa-4196-a278-83e61b9ad519"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-f02d6a79-46e4-4f97-aa9a-76dba780b6f6 {
  text-align: center;
}







  #s-f02d6a79-46e4-4f97-aa9a-76dba780b6f6 img.shogun-image {
    

    
    
    
  }


#s-f02d6a79-46e4-4f97-aa9a-76dba780b6f6 .shogun-image-content {
  
    align-items: center;
  
}

#s-9fc2e522-9194-470d-92d8-89856817fd0e {
  margin-top: 15px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(29, 144, 215, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-9fc2e522-9194-470d-92d8-89856817fd0e:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-9fc2e522-9194-470d-92d8-89856817fd0e:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-9fc2e522-9194-470d-92d8-89856817fd0e-root {
    text-align: left;
  }


#s-9fc2e522-9194-470d-92d8-89856817fd0e.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-9fc2e522-9194-470d-92d8-89856817fd0e-root {
    text-align: left;
  }


#s-9fc2e522-9194-470d-92d8-89856817fd0e.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-9fc2e522-9194-470d-92d8-89856817fd0e-root {
    text-align: left;
  }


#s-9fc2e522-9194-470d-92d8-89856817fd0e.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-9fc2e522-9194-470d-92d8-89856817fd0e-root {
    text-align: left;
  }


#s-9fc2e522-9194-470d-92d8-89856817fd0e.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-9fc2e522-9194-470d-92d8-89856817fd0e-root {
    text-align: left;
  }


#s-9fc2e522-9194-470d-92d8-89856817fd0e.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}
#s-e3aff83b-de9c-4dff-b5ad-59e6249b80fd {
  padding-left: 100px;
padding-bottom: 50px;
padding-right: 100px;
min-height: 50px;
}








#s-e3aff83b-de9c-4dff-b5ad-59e6249b80fd > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e3aff83b-de9c-4dff-b5ad-59e6249b80fd.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-697e5935-93f2-4a0a-a0ae-8141c0d027cb"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-697e5935-93f2-4a0a-a0ae-8141c0d027cb"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-697e5935-93f2-4a0a-a0ae-8141c0d027cb"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-697e5935-93f2-4a0a-a0ae-8141c0d027cb"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-697e5935-93f2-4a0a-a0ae-8141c0d027cb"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-697e5935-93f2-4a0a-a0ae-8141c0d027cb"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-697e5935-93f2-4a0a-a0ae-8141c0d027cb"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-cd4d2081-33b3-4e34-b38c-06843a7d2ac2 {
  text-align: center;
}







  #s-cd4d2081-33b3-4e34-b38c-06843a7d2ac2 img.shogun-image {
    

    
    
    
  }


#s-cd4d2081-33b3-4e34-b38c-06843a7d2ac2 .shogun-image-content {
  
    align-items: center;
  
}

#s-0c803e92-4a12-4307-adc6-d4bc64ce5caa {
  margin-top: 15px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 5px;
background-color: rgba(29, 144, 215, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-0c803e92-4a12-4307-adc6-d4bc64ce5caa:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-0c803e92-4a12-4307-adc6-d4bc64ce5caa:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-0c803e92-4a12-4307-adc6-d4bc64ce5caa-root {
    text-align: left;
  }


#s-0c803e92-4a12-4307-adc6-d4bc64ce5caa.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-0c803e92-4a12-4307-adc6-d4bc64ce5caa-root {
    text-align: left;
  }


#s-0c803e92-4a12-4307-adc6-d4bc64ce5caa.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0c803e92-4a12-4307-adc6-d4bc64ce5caa-root {
    text-align: left;
  }


#s-0c803e92-4a12-4307-adc6-d4bc64ce5caa.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0c803e92-4a12-4307-adc6-d4bc64ce5caa-root {
    text-align: left;
  }


#s-0c803e92-4a12-4307-adc6-d4bc64ce5caa.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-0c803e92-4a12-4307-adc6-d4bc64ce5caa-root {
    text-align: left;
  }


#s-0c803e92-4a12-4307-adc6-d4bc64ce5caa.shg-btn {
  color: #ffffff;
  font-size: 17px;
  
  
  
  display:  inline-block ;
}
}
/*
  $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}
