.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-66949f17-15fe-4f99-879d-8ae6b9a8c953 {
  min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-66949f17-15fe-4f99-879d-8ae6b9a8c953 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-66949f17-15fe-4f99-879d-8ae6b9a8c953.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-2b975d38-f647-4236-ae19-3ea2598fd343 {
  margin-left: 2%;
margin-right: 2%;
text-align: left;
}







  #s-2b975d38-f647-4236-ae19-3ea2598fd343 img.shogun-image {
    

    
    
    
  }


#s-2b975d38-f647-4236-ae19-3ea2598fd343 .shogun-image-content {
  
    align-items: 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-b1e78ea8-55d3-4e4e-9887-97bf4d691fa4 {
  margin-left: 0%;
margin-bottom: -17px;
padding-left: 0%;
padding-bottom: 17px;
min-height: 0px;
background-color: rgba(238, 238, 238, 1);
}
@media (max-width: 767px){#s-b1e78ea8-55d3-4e4e-9887-97bf4d691fa4 {
  display: none;
}
#s-b1e78ea8-55d3-4e4e-9887-97bf4d691fa4, #wrap-s-b1e78ea8-55d3-4e4e-9887-97bf4d691fa4 { display:none !important; }}
@media (min-width: 0px) {
[id="s-b1e78ea8-55d3-4e4e-9887-97bf4d691fa4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-b1e78ea8-55d3-4e4e-9887-97bf4d691fa4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-b1e78ea8-55d3-4e4e-9887-97bf4d691fa4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-b1e78ea8-55d3-4e4e-9887-97bf4d691fa4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-c3c6d834-8e4c-40d1-a3de-ae34a24c376d {
  margin-top: 20px;
margin-left: 2%;
margin-bottom: 20px;
margin-right: 2%;
padding-top: 26px;
padding-left: 3%;
padding-bottom: 35px;
padding-right: 3%;
min-height: 670px;
}








#s-c3c6d834-8e4c-40d1-a3de-ae34a24c376d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c3c6d834-8e4c-40d1-a3de-ae34a24c376d.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.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-35e4d146-848a-427d-962b-e7153db7e960 {
  margin-top: 39px;
margin-left: 6%;
margin-bottom: 0px;
margin-right: 6%;
padding-top: 13px;
padding-bottom: 26px;
text-align: left;
}
@media (min-width: 1200px){#s-35e4d146-848a-427d-962b-e7153db7e960 {
  display: none;
}
#s-35e4d146-848a-427d-962b-e7153db7e960, #wrap-s-35e4d146-848a-427d-962b-e7153db7e960 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-35e4d146-848a-427d-962b-e7153db7e960 {
  display: none;
}
#s-35e4d146-848a-427d-962b-e7153db7e960, #wrap-s-35e4d146-848a-427d-962b-e7153db7e960 { display:none !important; }}@media (max-width: 767px){#s-35e4d146-848a-427d-962b-e7153db7e960 {
  display: none;
}
#s-35e4d146-848a-427d-962b-e7153db7e960, #wrap-s-35e4d146-848a-427d-962b-e7153db7e960 { display:none !important; }}
#s-35e4d146-848a-427d-962b-e7153db7e960 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  
  
  text-align: left;
}



#s-7770f3cd-b059-4f98-87f8-b316f8cc3f98 {
  margin-top: -4px;
margin-bottom: -3px;
padding-top: 6px;
padding-left: 6%;
padding-bottom: 6px;
padding-right: 8%;
text-align: left;
}
@media (min-width: 1200px){#s-7770f3cd-b059-4f98-87f8-b316f8cc3f98 {
  display: none;
}
#s-7770f3cd-b059-4f98-87f8-b316f8cc3f98, #wrap-s-7770f3cd-b059-4f98-87f8-b316f8cc3f98 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7770f3cd-b059-4f98-87f8-b316f8cc3f98 {
  display: none;
}
#s-7770f3cd-b059-4f98-87f8-b316f8cc3f98, #wrap-s-7770f3cd-b059-4f98-87f8-b316f8cc3f98 { display:none !important; }}@media (max-width: 767px){#s-7770f3cd-b059-4f98-87f8-b316f8cc3f98 {
  display: none;
}
#s-7770f3cd-b059-4f98-87f8-b316f8cc3f98, #wrap-s-7770f3cd-b059-4f98-87f8-b316f8cc3f98 { display:none !important; }}
#s-7770f3cd-b059-4f98-87f8-b316f8cc3f98 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 18px;
  line-height: 1.5em;
  
  text-align: left;
}



#s-caf63638-ac2f-445a-b015-99526bbe68b0 {
  margin-top: 0px;
margin-left: 3%;
margin-bottom: 0px;
margin-right: 6%;
padding-top: 0px;
padding-bottom: 25px;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-caf63638-ac2f-445a-b015-99526bbe68b0 {
  display: none;
}
#s-caf63638-ac2f-445a-b015-99526bbe68b0, #wrap-s-caf63638-ac2f-445a-b015-99526bbe68b0 { display:none !important; }}
#s-caf63638-ac2f-445a-b015-99526bbe68b0 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  line-height: 1.25em;
  
  text-align: left;
}



#s-55ca1564-975e-4bce-a784-ab68625b4833 {
  margin-top: -4px;
margin-bottom: -3px;
padding-top: 6px;
padding-left: 3%;
padding-bottom: 6px;
padding-right: 8%;
text-align: left;
}
@media (min-width: 1200px){#s-55ca1564-975e-4bce-a784-ab68625b4833 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-55ca1564-975e-4bce-a784-ab68625b4833 {
  
}
}@media (min-width: 768px) and (max-width: 991px){#s-55ca1564-975e-4bce-a784-ab68625b4833 {
  display: none;
}
#s-55ca1564-975e-4bce-a784-ab68625b4833, #wrap-s-55ca1564-975e-4bce-a784-ab68625b4833 { display:none !important; }}@media (max-width: 767px){#s-55ca1564-975e-4bce-a784-ab68625b4833 {
  display: none;
}
#s-55ca1564-975e-4bce-a784-ab68625b4833, #wrap-s-55ca1564-975e-4bce-a784-ab68625b4833 { display:none !important; }}
#s-55ca1564-975e-4bce-a784-ab68625b4833 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  text-align: left;
}



.shg-btn.shg-cse, .shg-btn.shg-cse:hover, .shg-btn.shg-cse:focus {
  color: #FFF;
}

.shg-btn {
  cursor: pointer;
  box-sizing: border-box;
}

.shg-btn-text {
  font-weight: ;
  font-family: ;
}

.shg-btn.shg-btn-stretch {
  display: block;
}

.shg-btn:not(.shg-btn-stretch) {
  display: inline-block;
}

.shg-btn-wrapper.shg-align-left {
  text-align: left;
}

.shg-btn-wrapper.shg-align-center {
  text-align: center;
}

.shg-btn-wrapper.shg-align-right {
  text-align: right;
}

#s-90d04911-2470-4cea-9de3-07e1572d3205 {
  margin-top: 25px;
margin-left: 6%;
margin-bottom: 0px;
margin-right: 4%;
padding-top: 14px;
padding-left: 15px;
padding-bottom: 14px;
padding-right: 15px;
border-radius: 0px;
background-color: rgba(247, 171, 53, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
letter-spacing: 2px;
}
#s-90d04911-2470-4cea-9de3-07e1572d3205:hover {background-color: rgba(247, 171, 53, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-90d04911-2470-4cea-9de3-07e1572d3205:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-90d04911-2470-4cea-9de3-07e1572d3205 {
  display: none;
}
#s-90d04911-2470-4cea-9de3-07e1572d3205, #wrap-s-90d04911-2470-4cea-9de3-07e1572d3205 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-90d04911-2470-4cea-9de3-07e1572d3205 {
  display: none;
}
#s-90d04911-2470-4cea-9de3-07e1572d3205, #wrap-s-90d04911-2470-4cea-9de3-07e1572d3205 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-90d04911-2470-4cea-9de3-07e1572d3205 {
  display: none;
}
#s-90d04911-2470-4cea-9de3-07e1572d3205, #wrap-s-90d04911-2470-4cea-9de3-07e1572d3205 { display:none !important; }}

  #s-90d04911-2470-4cea-9de3-07e1572d3205-root {
    text-align: left;
  }


#s-90d04911-2470-4cea-9de3-07e1572d3205.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-90d04911-2470-4cea-9de3-07e1572d3205-root {
    text-align: left;
  }


#s-90d04911-2470-4cea-9de3-07e1572d3205.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-90d04911-2470-4cea-9de3-07e1572d3205-root {
    text-align: left;
  }


#s-90d04911-2470-4cea-9de3-07e1572d3205.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-90d04911-2470-4cea-9de3-07e1572d3205-root {
    text-align: left;
  }


#s-90d04911-2470-4cea-9de3-07e1572d3205.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-90d04911-2470-4cea-9de3-07e1572d3205-root {
    text-align: left;
  }


#s-90d04911-2470-4cea-9de3-07e1572d3205.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 19px;
  
  
  
  display:  inline-block ;
}
}
#s-25089fb7-cd60-4bc3-80da-3cc478f58d0e {
  margin-top: 25px;
margin-left: 6%;
margin-bottom: 0px;
margin-right: 4%;
padding-top: 14px;
padding-left: 15px;
padding-bottom: 14px;
padding-right: 15px;
border-radius: 0px;
background-color: rgba(247, 171, 53, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
letter-spacing: 2px;
}
#s-25089fb7-cd60-4bc3-80da-3cc478f58d0e:hover {background-color: rgba(247, 171, 53, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-25089fb7-cd60-4bc3-80da-3cc478f58d0e:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-25089fb7-cd60-4bc3-80da-3cc478f58d0e {
  display: none;
}
#s-25089fb7-cd60-4bc3-80da-3cc478f58d0e, #wrap-s-25089fb7-cd60-4bc3-80da-3cc478f58d0e { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-25089fb7-cd60-4bc3-80da-3cc478f58d0e {
  display: none;
}
#s-25089fb7-cd60-4bc3-80da-3cc478f58d0e, #wrap-s-25089fb7-cd60-4bc3-80da-3cc478f58d0e { display:none !important; }}@media (max-width: 767px){#s-25089fb7-cd60-4bc3-80da-3cc478f58d0e {
  display: none;
}
#s-25089fb7-cd60-4bc3-80da-3cc478f58d0e, #wrap-s-25089fb7-cd60-4bc3-80da-3cc478f58d0e { display:none !important; }}

  #s-25089fb7-cd60-4bc3-80da-3cc478f58d0e-root {
    text-align: left;
  }


#s-25089fb7-cd60-4bc3-80da-3cc478f58d0e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-25089fb7-cd60-4bc3-80da-3cc478f58d0e-root {
    text-align: left;
  }


#s-25089fb7-cd60-4bc3-80da-3cc478f58d0e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-25089fb7-cd60-4bc3-80da-3cc478f58d0e-root {
    text-align: left;
  }


#s-25089fb7-cd60-4bc3-80da-3cc478f58d0e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-25089fb7-cd60-4bc3-80da-3cc478f58d0e-root {
    text-align: left;
  }


#s-25089fb7-cd60-4bc3-80da-3cc478f58d0e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-25089fb7-cd60-4bc3-80da-3cc478f58d0e-root {
    text-align: left;
  }


#s-25089fb7-cd60-4bc3-80da-3cc478f58d0e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}
#s-ba3d9e30-31ed-429f-810c-76b2485d9bbc {
  margin-top: 30px;
margin-left: 3%;
margin-bottom: 0px;
margin-right: 4%;
padding-top: 14px;
padding-left: 15px;
padding-bottom: 14px;
padding-right: 15px;
border-radius: 0px;
background-color: rgba(247, 171, 53, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
letter-spacing: 2px;
}
#s-ba3d9e30-31ed-429f-810c-76b2485d9bbc:hover {background-color: rgba(247, 171, 53, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-ba3d9e30-31ed-429f-810c-76b2485d9bbc:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-ba3d9e30-31ed-429f-810c-76b2485d9bbc {
  display: none;
}
#s-ba3d9e30-31ed-429f-810c-76b2485d9bbc, #wrap-s-ba3d9e30-31ed-429f-810c-76b2485d9bbc { display:none !important; }}

  #s-ba3d9e30-31ed-429f-810c-76b2485d9bbc-root {
    text-align: left;
  }


#s-ba3d9e30-31ed-429f-810c-76b2485d9bbc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ba3d9e30-31ed-429f-810c-76b2485d9bbc-root {
    text-align: left;
  }


#s-ba3d9e30-31ed-429f-810c-76b2485d9bbc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ba3d9e30-31ed-429f-810c-76b2485d9bbc-root {
    text-align: left;
  }


#s-ba3d9e30-31ed-429f-810c-76b2485d9bbc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ba3d9e30-31ed-429f-810c-76b2485d9bbc-root {
    text-align: left;
  }


#s-ba3d9e30-31ed-429f-810c-76b2485d9bbc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ba3d9e30-31ed-429f-810c-76b2485d9bbc-root {
    text-align: left;
  }


#s-ba3d9e30-31ed-429f-810c-76b2485d9bbc.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}
#s-92bf3776-58ec-4c39-96f3-160a8ad8fcca {
  background-repeat: no-repeat;
background-size: cover;
margin-left: 0%;
margin-right: 0%;
min-height: 670px;
background-position: center center;
background-attachment: scroll;
}

#s-92bf3776-58ec-4c39-96f3-160a8ad8fcca {
  background-image: url(https://i.shgcdn.com/71024992-5f83-49e5-a66e-9c3a6263d319/-/format/auto/-/preview/3000x3000/-/quality/lighter/);
}








#s-92bf3776-58ec-4c39-96f3-160a8ad8fcca > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-92bf3776-58ec-4c39-96f3-160a8ad8fcca.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e8cbe583-b546-48e1-8932-b85526a79962 {
  margin-bottom: -8px;
padding-bottom: 17px;
min-height: 0px;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-e8cbe583-b546-48e1-8932-b85526a79962 {
  display: none;
}
#s-e8cbe583-b546-48e1-8932-b85526a79962, #wrap-s-e8cbe583-b546-48e1-8932-b85526a79962 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-e8cbe583-b546-48e1-8932-b85526a79962 {
  display: none;
}
#s-e8cbe583-b546-48e1-8932-b85526a79962, #wrap-s-e8cbe583-b546-48e1-8932-b85526a79962 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-e8cbe583-b546-48e1-8932-b85526a79962 {
  display: none;
}
#s-e8cbe583-b546-48e1-8932-b85526a79962, #wrap-s-e8cbe583-b546-48e1-8932-b85526a79962 { display:none !important; }}
@media (min-width: 0px) {
[id="s-e8cbe583-b546-48e1-8932-b85526a79962"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e8cbe583-b546-48e1-8932-b85526a79962"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-e8cbe583-b546-48e1-8932-b85526a79962"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-e8cbe583-b546-48e1-8932-b85526a79962"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-ba445db4-1051-4b06-ba99-d2b0ea6f8822 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: rgba(255, 255, 255, 1);
border-radius: 0px;
text-align: center;
opacity: 1;
}
#s-ba445db4-1051-4b06-ba99-d2b0ea6f8822:hover {border-style: solid !important;
border-top-width: 0px !important;
border-left-width: 0px !important;
border-bottom-width: 0px !important;
border-right-width: 0px !important;
border-color: rgba(44, 42, 52, 0) !important;
border-radius: 0px !important;
opacity: 1 !important;}@media (max-width: 767px){#s-ba445db4-1051-4b06-ba99-d2b0ea6f8822 {
  
}
}






  #s-ba445db4-1051-4b06-ba99-d2b0ea6f8822 img.shogun-image {
    

    
    
    
  }


#s-ba445db4-1051-4b06-ba99-d2b0ea6f8822 .shogun-image-content {
  
    align-items: center;
  
}

#s-520c2f93-c51f-476a-83a1-c82841130db6 {
  margin-left: 6%;
margin-right: 6%;
padding-top: 13px;
padding-bottom: 26px;
text-align: left;
}

#s-520c2f93-c51f-476a-83a1-c82841130db6 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 30px;
  
  
  text-align: left;
}



#s-b55b796a-e44e-4b2b-8fbb-2c0ec6a65714 {
  margin-top: -25px;
margin-left: 6%;
margin-bottom: -8px;
margin-right: 4%;
padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
border-radius: 0px;
background-color: rgba(247, 171, 53, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
letter-spacing: 2px;
}
#s-b55b796a-e44e-4b2b-8fbb-2c0ec6a65714:hover {background-color: rgba(247, 171, 53, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-b55b796a-e44e-4b2b-8fbb-2c0ec6a65714:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-b55b796a-e44e-4b2b-8fbb-2c0ec6a65714-root {
    text-align: left;
  }


#s-b55b796a-e44e-4b2b-8fbb-2c0ec6a65714.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-b55b796a-e44e-4b2b-8fbb-2c0ec6a65714-root {
    text-align: left;
  }


#s-b55b796a-e44e-4b2b-8fbb-2c0ec6a65714.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-b55b796a-e44e-4b2b-8fbb-2c0ec6a65714-root {
    text-align: left;
  }


#s-b55b796a-e44e-4b2b-8fbb-2c0ec6a65714.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-b55b796a-e44e-4b2b-8fbb-2c0ec6a65714-root {
    text-align: left;
  }


#s-b55b796a-e44e-4b2b-8fbb-2c0ec6a65714.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-b55b796a-e44e-4b2b-8fbb-2c0ec6a65714-root {
    text-align: left;
  }


#s-b55b796a-e44e-4b2b-8fbb-2c0ec6a65714.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}
#s-0641613b-0400-4391-8256-3fc8a0a3b2e8 {
  margin-top: 11px;
margin-bottom: -3px;
padding-top: 6px;
padding-left: 6%;
padding-bottom: 25px;
padding-right: 8%;
text-align: left;
}
@media (min-width: 1200px){#s-0641613b-0400-4391-8256-3fc8a0a3b2e8 {
  display: none;
}
#s-0641613b-0400-4391-8256-3fc8a0a3b2e8, #wrap-s-0641613b-0400-4391-8256-3fc8a0a3b2e8 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-0641613b-0400-4391-8256-3fc8a0a3b2e8 {
  display: none;
}
#s-0641613b-0400-4391-8256-3fc8a0a3b2e8, #wrap-s-0641613b-0400-4391-8256-3fc8a0a3b2e8 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-0641613b-0400-4391-8256-3fc8a0a3b2e8 {
  display: none;
}
#s-0641613b-0400-4391-8256-3fc8a0a3b2e8, #wrap-s-0641613b-0400-4391-8256-3fc8a0a3b2e8 { display:none !important; }}
#s-0641613b-0400-4391-8256-3fc8a0a3b2e8 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  line-height: 1.45em;
  
  text-align: left;
}



#s-a9f62c5d-2deb-43dc-ac97-57189a23ed2b {
  background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px){#s-a9f62c5d-2deb-43dc-ac97-57189a23ed2b {
  display: none;
}
#s-a9f62c5d-2deb-43dc-ac97-57189a23ed2b, #wrap-s-a9f62c5d-2deb-43dc-ac97-57189a23ed2b { display:none !important; }}
@media (min-width: 0px) {
[id="s-a9f62c5d-2deb-43dc-ac97-57189a23ed2b"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-a9f62c5d-2deb-43dc-ac97-57189a23ed2b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-a9f62c5d-2deb-43dc-ac97-57189a23ed2b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-a9f62c5d-2deb-43dc-ac97-57189a23ed2b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-ba35ce6b-7476-4b18-81c9-0d7f17327c73 {
  background-repeat: no-repeat;
background-size: cover;
margin-left: 0%;
margin-right: 0%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 0px;
padding-right: 0%;
min-height: 600px;
background-position: center center;
}








#s-ba35ce6b-7476-4b18-81c9-0d7f17327c73 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ba35ce6b-7476-4b18-81c9-0d7f17327c73.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b3f755c8-700c-442f-a885-76ab78825c0f {
  margin-top: 20px;
margin-left: 2%;
margin-bottom: 20px;
margin-right: 2%;
padding-top: 19px;
padding-left: 3%;
padding-bottom: 35px;
padding-right: 3%;
min-height: 600px;
}








#s-b3f755c8-700c-442f-a885-76ab78825c0f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b3f755c8-700c-442f-a885-76ab78825c0f.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-1d8ecc2c-f3e4-4f77-9a7d-407f6e1c5777 {
  margin-top: 0px;
margin-left: 3%;
margin-right: 6%;
padding-left: 0%;
padding-bottom: 25px;
padding-right: 0%;
text-align: left;
}

#s-1d8ecc2c-f3e4-4f77-9a7d-407f6e1c5777 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  line-height: 1.25em;
  letter-spacing: 3px;
  text-align: left;
}



#s-97133764-ee17-4a73-91d0-fcbe800e7ddc {
  margin-top: -4px;
margin-bottom: -4px;
margin-right: 0%;
padding-top: 6px;
padding-left: 3%;
padding-bottom: 6px;
padding-right: 8%;
text-align: left;
background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px){#s-97133764-ee17-4a73-91d0-fcbe800e7ddc {
  display: none;
}
#s-97133764-ee17-4a73-91d0-fcbe800e7ddc, #wrap-s-97133764-ee17-4a73-91d0-fcbe800e7ddc { display:none !important; }}
#s-97133764-ee17-4a73-91d0-fcbe800e7ddc .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  text-align: left;
}



#s-ffe12f97-eeee-4ebc-b467-65ef6ca1cf5c {
  margin-top: 25px;
margin-left: 6%;
margin-bottom: 0px;
margin-right: 4%;
padding-top: 14px;
padding-left: 15px;
padding-bottom: 14px;
padding-right: 15px;
border-radius: 0px;
background-color: rgba(247, 171, 53, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
letter-spacing: 2px;
}
#s-ffe12f97-eeee-4ebc-b467-65ef6ca1cf5c:hover {background-color: rgba(247, 171, 53, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-ffe12f97-eeee-4ebc-b467-65ef6ca1cf5c:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-ffe12f97-eeee-4ebc-b467-65ef6ca1cf5c {
  display: none;
}
#s-ffe12f97-eeee-4ebc-b467-65ef6ca1cf5c, #wrap-s-ffe12f97-eeee-4ebc-b467-65ef6ca1cf5c { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ffe12f97-eeee-4ebc-b467-65ef6ca1cf5c {
  display: none;
}
#s-ffe12f97-eeee-4ebc-b467-65ef6ca1cf5c, #wrap-s-ffe12f97-eeee-4ebc-b467-65ef6ca1cf5c { display:none !important; }}@media (max-width: 767px){#s-ffe12f97-eeee-4ebc-b467-65ef6ca1cf5c {
  display: none;
}
#s-ffe12f97-eeee-4ebc-b467-65ef6ca1cf5c, #wrap-s-ffe12f97-eeee-4ebc-b467-65ef6ca1cf5c { display:none !important; }}

  #s-ffe12f97-eeee-4ebc-b467-65ef6ca1cf5c-root {
    text-align: left;
  }


#s-ffe12f97-eeee-4ebc-b467-65ef6ca1cf5c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ffe12f97-eeee-4ebc-b467-65ef6ca1cf5c-root {
    text-align: left;
  }


#s-ffe12f97-eeee-4ebc-b467-65ef6ca1cf5c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ffe12f97-eeee-4ebc-b467-65ef6ca1cf5c-root {
    text-align: left;
  }


#s-ffe12f97-eeee-4ebc-b467-65ef6ca1cf5c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ffe12f97-eeee-4ebc-b467-65ef6ca1cf5c-root {
    text-align: left;
  }


#s-ffe12f97-eeee-4ebc-b467-65ef6ca1cf5c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ffe12f97-eeee-4ebc-b467-65ef6ca1cf5c-root {
    text-align: left;
  }


#s-ffe12f97-eeee-4ebc-b467-65ef6ca1cf5c.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}
#s-d79cfab3-df57-4c80-8ed6-b3d57c1aa001 {
  margin-top: 30px;
margin-left: 3%;
margin-bottom: 0px;
margin-right: 4%;
padding-top: 14px;
padding-left: 15px;
padding-bottom: 14px;
padding-right: 15px;
border-radius: 0px;
background-color: rgba(247, 171, 53, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
letter-spacing: 2px;
}
#s-d79cfab3-df57-4c80-8ed6-b3d57c1aa001:hover {background-color: rgba(247, 171, 53, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-d79cfab3-df57-4c80-8ed6-b3d57c1aa001:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-d79cfab3-df57-4c80-8ed6-b3d57c1aa001 {
  display: none;
}
#s-d79cfab3-df57-4c80-8ed6-b3d57c1aa001, #wrap-s-d79cfab3-df57-4c80-8ed6-b3d57c1aa001 { display:none !important; }}

  #s-d79cfab3-df57-4c80-8ed6-b3d57c1aa001-root {
    text-align: left;
  }


#s-d79cfab3-df57-4c80-8ed6-b3d57c1aa001.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d79cfab3-df57-4c80-8ed6-b3d57c1aa001-root {
    text-align: left;
  }


#s-d79cfab3-df57-4c80-8ed6-b3d57c1aa001.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d79cfab3-df57-4c80-8ed6-b3d57c1aa001-root {
    text-align: left;
  }


#s-d79cfab3-df57-4c80-8ed6-b3d57c1aa001.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d79cfab3-df57-4c80-8ed6-b3d57c1aa001-root {
    text-align: left;
  }


#s-d79cfab3-df57-4c80-8ed6-b3d57c1aa001.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d79cfab3-df57-4c80-8ed6-b3d57c1aa001-root {
    text-align: left;
  }


#s-d79cfab3-df57-4c80-8ed6-b3d57c1aa001.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}
#s-bbb5b9c4-6178-4da9-8908-818802dd2e5b {
  margin-top: 0px;
margin-bottom: -15px;
padding-top: 0px;
padding-bottom: 0px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-bbb5b9c4-6178-4da9-8908-818802dd2e5b {
  display: none;
}
#s-bbb5b9c4-6178-4da9-8908-818802dd2e5b, #wrap-s-bbb5b9c4-6178-4da9-8908-818802dd2e5b { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-bbb5b9c4-6178-4da9-8908-818802dd2e5b {
  display: none;
}
#s-bbb5b9c4-6178-4da9-8908-818802dd2e5b, #wrap-s-bbb5b9c4-6178-4da9-8908-818802dd2e5b { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-bbb5b9c4-6178-4da9-8908-818802dd2e5b {
  display: none;
}
#s-bbb5b9c4-6178-4da9-8908-818802dd2e5b, #wrap-s-bbb5b9c4-6178-4da9-8908-818802dd2e5b { display:none !important; }}






  #s-bbb5b9c4-6178-4da9-8908-818802dd2e5b img.shogun-image {
    

    
    
    
  }


#s-bbb5b9c4-6178-4da9-8908-818802dd2e5b .shogun-image-content {
  
    align-items: center;
  
}

#s-09299236-9b6e-4f76-b7ef-eadf1fd299ba {
  margin-top: 1px;
margin-bottom: 0px;
padding-top: 59px;
padding-bottom: 0px;
min-height: 50px;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 1200px){#s-09299236-9b6e-4f76-b7ef-eadf1fd299ba {
  display: none;
}
#s-09299236-9b6e-4f76-b7ef-eadf1fd299ba, #wrap-s-09299236-9b6e-4f76-b7ef-eadf1fd299ba { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-09299236-9b6e-4f76-b7ef-eadf1fd299ba {
  display: none;
}
#s-09299236-9b6e-4f76-b7ef-eadf1fd299ba, #wrap-s-09299236-9b6e-4f76-b7ef-eadf1fd299ba { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-09299236-9b6e-4f76-b7ef-eadf1fd299ba {
  display: none;
}
#s-09299236-9b6e-4f76-b7ef-eadf1fd299ba, #wrap-s-09299236-9b6e-4f76-b7ef-eadf1fd299ba { display:none !important; }}







#s-09299236-9b6e-4f76-b7ef-eadf1fd299ba > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-09299236-9b6e-4f76-b7ef-eadf1fd299ba.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9b430725-dac5-42cb-993b-db3d4f9515c4 {
  margin-top: -33px;
padding-top: 4px;
padding-left: 6%;
padding-bottom: 4px;
padding-right: 6%;
text-align: left;
}

#s-9b430725-dac5-42cb-993b-db3d4f9515c4 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  letter-spacing: 0px;
  text-align: left;
}



#s-29c99b4f-a06d-4599-b400-7ee55e2e33c7 {
  margin-bottom: 0px;
padding-top: 16px;
padding-left: 6%;
padding-bottom: 45px;
padding-right: 8%;
text-align: left;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 1200px){#s-29c99b4f-a06d-4599-b400-7ee55e2e33c7 {
  display: none;
}
#s-29c99b4f-a06d-4599-b400-7ee55e2e33c7, #wrap-s-29c99b4f-a06d-4599-b400-7ee55e2e33c7 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-29c99b4f-a06d-4599-b400-7ee55e2e33c7 {
  display: none;
}
#s-29c99b4f-a06d-4599-b400-7ee55e2e33c7, #wrap-s-29c99b4f-a06d-4599-b400-7ee55e2e33c7 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-29c99b4f-a06d-4599-b400-7ee55e2e33c7 {
  display: none;
}
#s-29c99b4f-a06d-4599-b400-7ee55e2e33c7, #wrap-s-29c99b4f-a06d-4599-b400-7ee55e2e33c7 { display:none !important; }}
#s-29c99b4f-a06d-4599-b400-7ee55e2e33c7 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.45em;
  
  text-align: left;
}



#s-44ba088c-62c6-4fa1-b1d9-27e0a05644bc {
  margin-top: -1px;
margin-bottom: -1px;
text-align: center;
}
@media (min-width: 1200px){#s-44ba088c-62c6-4fa1-b1d9-27e0a05644bc {
  display: none;
}
#s-44ba088c-62c6-4fa1-b1d9-27e0a05644bc, #wrap-s-44ba088c-62c6-4fa1-b1d9-27e0a05644bc { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-44ba088c-62c6-4fa1-b1d9-27e0a05644bc {
  display: none;
}
#s-44ba088c-62c6-4fa1-b1d9-27e0a05644bc, #wrap-s-44ba088c-62c6-4fa1-b1d9-27e0a05644bc { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-44ba088c-62c6-4fa1-b1d9-27e0a05644bc {
  display: none;
}
#s-44ba088c-62c6-4fa1-b1d9-27e0a05644bc, #wrap-s-44ba088c-62c6-4fa1-b1d9-27e0a05644bc { display:none !important; }}






  #s-44ba088c-62c6-4fa1-b1d9-27e0a05644bc img.shogun-image {
    

    
    
    
  }


#s-44ba088c-62c6-4fa1-b1d9-27e0a05644bc .shogun-image-content {
  
    align-items: center;
  
}

#s-d0f91357-90e6-4f59-8fa2-711f90f692de {
  min-height: 50px;
}
@media (min-width: 1200px){#s-d0f91357-90e6-4f59-8fa2-711f90f692de {
  display: none;
}
#s-d0f91357-90e6-4f59-8fa2-711f90f692de, #wrap-s-d0f91357-90e6-4f59-8fa2-711f90f692de { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d0f91357-90e6-4f59-8fa2-711f90f692de {
  display: none;
}
#s-d0f91357-90e6-4f59-8fa2-711f90f692de, #wrap-s-d0f91357-90e6-4f59-8fa2-711f90f692de { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d0f91357-90e6-4f59-8fa2-711f90f692de {
  display: none;
}
#s-d0f91357-90e6-4f59-8fa2-711f90f692de, #wrap-s-d0f91357-90e6-4f59-8fa2-711f90f692de { display:none !important; }}@media (max-width: 767px){#s-d0f91357-90e6-4f59-8fa2-711f90f692de {
  
}
}







#s-d0f91357-90e6-4f59-8fa2-711f90f692de > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d0f91357-90e6-4f59-8fa2-711f90f692de.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-7de986ba-1ecd-4fb0-92f4-b77467bfca51 {
  margin-top: -33px;
padding-top: 15px;
padding-left: 6%;
padding-bottom: 0px;
padding-right: 6%;
text-align: left;
background-color: rgba(255, 255, 255, 1);
}
@media (min-width: 1200px){#s-7de986ba-1ecd-4fb0-92f4-b77467bfca51 {
  display: none;
}
#s-7de986ba-1ecd-4fb0-92f4-b77467bfca51, #wrap-s-7de986ba-1ecd-4fb0-92f4-b77467bfca51 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-7de986ba-1ecd-4fb0-92f4-b77467bfca51 {
  display: none;
}
#s-7de986ba-1ecd-4fb0-92f4-b77467bfca51, #wrap-s-7de986ba-1ecd-4fb0-92f4-b77467bfca51 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-7de986ba-1ecd-4fb0-92f4-b77467bfca51 {
  
}
}
#s-7de986ba-1ecd-4fb0-92f4-b77467bfca51 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  
  letter-spacing: 0px;
  text-align: left;
}



#s-f07cadcb-af69-4b48-af34-0c7770298def {
  margin-top: 11px;
margin-bottom: -3px;
padding-top: 6px;
padding-left: 6%;
padding-bottom: 25px;
padding-right: 8%;
text-align: left;
}
@media (min-width: 1200px){#s-f07cadcb-af69-4b48-af34-0c7770298def {
  display: none;
}
#s-f07cadcb-af69-4b48-af34-0c7770298def, #wrap-s-f07cadcb-af69-4b48-af34-0c7770298def { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-f07cadcb-af69-4b48-af34-0c7770298def {
  display: none;
}
#s-f07cadcb-af69-4b48-af34-0c7770298def, #wrap-s-f07cadcb-af69-4b48-af34-0c7770298def { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-f07cadcb-af69-4b48-af34-0c7770298def {
  display: none;
}
#s-f07cadcb-af69-4b48-af34-0c7770298def, #wrap-s-f07cadcb-af69-4b48-af34-0c7770298def { display:none !important; }}
#s-f07cadcb-af69-4b48-af34-0c7770298def .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  line-height: 1.45em;
  
  text-align: left;
}



#s-58f4d6eb-d891-45b9-9012-beb3591e499f {
  margin-top: -25px;
margin-left: 6%;
margin-bottom: -8px;
margin-right: 4%;
padding-top: 15px;
padding-left: 15px;
padding-bottom: 15px;
padding-right: 15px;
border-radius: 0px;
background-color: rgba(247, 171, 53, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
letter-spacing: 2px;
}
#s-58f4d6eb-d891-45b9-9012-beb3591e499f:hover {background-color: rgba(247, 171, 53, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-58f4d6eb-d891-45b9-9012-beb3591e499f:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-58f4d6eb-d891-45b9-9012-beb3591e499f {
  display: none;
}
#s-58f4d6eb-d891-45b9-9012-beb3591e499f, #wrap-s-58f4d6eb-d891-45b9-9012-beb3591e499f { display:none !important; }}

  #s-58f4d6eb-d891-45b9-9012-beb3591e499f-root {
    text-align: left;
  }


#s-58f4d6eb-d891-45b9-9012-beb3591e499f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-58f4d6eb-d891-45b9-9012-beb3591e499f-root {
    text-align: left;
  }


#s-58f4d6eb-d891-45b9-9012-beb3591e499f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-58f4d6eb-d891-45b9-9012-beb3591e499f-root {
    text-align: left;
  }


#s-58f4d6eb-d891-45b9-9012-beb3591e499f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-58f4d6eb-d891-45b9-9012-beb3591e499f-root {
    text-align: left;
  }


#s-58f4d6eb-d891-45b9-9012-beb3591e499f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-58f4d6eb-d891-45b9-9012-beb3591e499f-root {
    text-align: left;
  }


#s-58f4d6eb-d891-45b9-9012-beb3591e499f.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}
#s-dd2992be-a3f0-41ed-a6fe-559deae09dc1 {
  margin-left: 0%;
padding-left: 0%;
padding-right: 0%;
background-color: rgba(238, 238, 238, 1);
}
@media (max-width: 767px){#s-dd2992be-a3f0-41ed-a6fe-559deae09dc1 {
  display: none;
}
#s-dd2992be-a3f0-41ed-a6fe-559deae09dc1, #wrap-s-dd2992be-a3f0-41ed-a6fe-559deae09dc1 { display:none !important; }}
@media (min-width: 0px) {
[id="s-dd2992be-a3f0-41ed-a6fe-559deae09dc1"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-dd2992be-a3f0-41ed-a6fe-559deae09dc1"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-dd2992be-a3f0-41ed-a6fe-559deae09dc1"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-dd2992be-a3f0-41ed-a6fe-559deae09dc1"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-2f7e3916-ef6e-4cbe-99bb-cc82ecdbca81 {
  box-shadow:0px 0px 0px 0px rgba(255, 255, 255, 1);
margin-top: 0px;
margin-left: 0%;
margin-bottom: 0px;
margin-right: 0%;
padding-top: 35px;
padding-left: 5%;
padding-bottom: 45px;
padding-right: 3%;
min-height: 400px;
background-color: rgba(238, 238, 238, 1);
}
@media (max-width: 767px){#s-2f7e3916-ef6e-4cbe-99bb-cc82ecdbca81 {
  display: none;
}
#s-2f7e3916-ef6e-4cbe-99bb-cc82ecdbca81, #wrap-s-2f7e3916-ef6e-4cbe-99bb-cc82ecdbca81 { display:none !important; }}







#s-2f7e3916-ef6e-4cbe-99bb-cc82ecdbca81 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2f7e3916-ef6e-4cbe-99bb-cc82ecdbca81.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-b263b5b7-4970-4a07-b55c-70e009d66951 {
  margin-top: 0px;
margin-left: 3%;
margin-bottom: 0px;
margin-right: 6%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 25px;
padding-right: 0%;
text-align: left;
}
@media (max-width: 767px){#s-b263b5b7-4970-4a07-b55c-70e009d66951 {
  display: none;
}
#s-b263b5b7-4970-4a07-b55c-70e009d66951, #wrap-s-b263b5b7-4970-4a07-b55c-70e009d66951 { display:none !important; }}
#s-b263b5b7-4970-4a07-b55c-70e009d66951 .shogun-heading-component h1 {
  color: #000;
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  line-height: 1.25em;
  letter-spacing: 0px;
  text-align: left;
}



#s-d2d3da08-8902-48f5-9a46-0736db801fba {
  margin-bottom: 6px;
padding-top: 8px;
padding-left: 3%;
padding-bottom: 8px;
padding-right: 3%;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-d2d3da08-8902-48f5-9a46-0736db801fba {
  display: none;
}
#s-d2d3da08-8902-48f5-9a46-0736db801fba, #wrap-s-d2d3da08-8902-48f5-9a46-0736db801fba { display:none !important; }}
#s-d2d3da08-8902-48f5-9a46-0736db801fba .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  text-align: left;
}



#s-2224c42e-58f4-46f1-b0c2-8d52a8c04da9 {
  margin-bottom: 6px;
padding-top: 8px;
padding-left: 3%;
padding-bottom: 8px;
padding-right: 3%;
text-align: left;
}
@media (min-width: 1200px){#s-2224c42e-58f4-46f1-b0c2-8d52a8c04da9 {
  display: none;
}
#s-2224c42e-58f4-46f1-b0c2-8d52a8c04da9, #wrap-s-2224c42e-58f4-46f1-b0c2-8d52a8c04da9 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2224c42e-58f4-46f1-b0c2-8d52a8c04da9 {
  display: none;
}
#s-2224c42e-58f4-46f1-b0c2-8d52a8c04da9, #wrap-s-2224c42e-58f4-46f1-b0c2-8d52a8c04da9 { display:none !important; }}@media (max-width: 767px){#s-2224c42e-58f4-46f1-b0c2-8d52a8c04da9 {
  display: none;
}
#s-2224c42e-58f4-46f1-b0c2-8d52a8c04da9, #wrap-s-2224c42e-58f4-46f1-b0c2-8d52a8c04da9 { display:none !important; }}
#s-2224c42e-58f4-46f1-b0c2-8d52a8c04da9 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 19px;
  line-height: 1.5em;
  
  text-align: left;
}



#s-a77bdd23-1b9a-4488-9c4f-4131cbcf3a81 {
  margin-top: 25px;
margin-left: 3%;
margin-bottom: 0px;
margin-right: 4%;
padding-top: 14px;
padding-left: 15px;
padding-bottom: 14px;
padding-right: 15px;
border-radius: 0px;
background-color: rgba(247, 171, 53, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
letter-spacing: 2px;
}
#s-a77bdd23-1b9a-4488-9c4f-4131cbcf3a81:hover {background-color: rgba(247, 171, 53, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-a77bdd23-1b9a-4488-9c4f-4131cbcf3a81:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-a77bdd23-1b9a-4488-9c4f-4131cbcf3a81 {
  display: none;
}
#s-a77bdd23-1b9a-4488-9c4f-4131cbcf3a81, #wrap-s-a77bdd23-1b9a-4488-9c4f-4131cbcf3a81 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a77bdd23-1b9a-4488-9c4f-4131cbcf3a81 {
  display: none;
}
#s-a77bdd23-1b9a-4488-9c4f-4131cbcf3a81, #wrap-s-a77bdd23-1b9a-4488-9c4f-4131cbcf3a81 { display:none !important; }}@media (max-width: 767px){#s-a77bdd23-1b9a-4488-9c4f-4131cbcf3a81 {
  display: none;
}
#s-a77bdd23-1b9a-4488-9c4f-4131cbcf3a81, #wrap-s-a77bdd23-1b9a-4488-9c4f-4131cbcf3a81 { display:none !important; }}

  #s-a77bdd23-1b9a-4488-9c4f-4131cbcf3a81-root {
    text-align: left;
  }


#s-a77bdd23-1b9a-4488-9c4f-4131cbcf3a81.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-a77bdd23-1b9a-4488-9c4f-4131cbcf3a81-root {
    text-align: left;
  }


#s-a77bdd23-1b9a-4488-9c4f-4131cbcf3a81.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-a77bdd23-1b9a-4488-9c4f-4131cbcf3a81-root {
    text-align: left;
  }


#s-a77bdd23-1b9a-4488-9c4f-4131cbcf3a81.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-a77bdd23-1b9a-4488-9c4f-4131cbcf3a81-root {
    text-align: left;
  }


#s-a77bdd23-1b9a-4488-9c4f-4131cbcf3a81.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-a77bdd23-1b9a-4488-9c4f-4131cbcf3a81-root {
    text-align: left;
  }


#s-a77bdd23-1b9a-4488-9c4f-4131cbcf3a81.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}
#s-0dc64274-3314-4bea-b663-12676073d451 {
  margin-top: 30px;
margin-left: 3%;
margin-bottom: 0px;
margin-right: 4%;
padding-top: 14px;
padding-left: 15px;
padding-bottom: 14px;
padding-right: 15px;
border-radius: 0px;
background-color: rgba(247, 171, 53, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
letter-spacing: 2px;
}
#s-0dc64274-3314-4bea-b663-12676073d451:hover {background-color: rgba(247, 171, 53, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-0dc64274-3314-4bea-b663-12676073d451:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-0dc64274-3314-4bea-b663-12676073d451 {
  display: none;
}
#s-0dc64274-3314-4bea-b663-12676073d451, #wrap-s-0dc64274-3314-4bea-b663-12676073d451 { display:none !important; }}

  #s-0dc64274-3314-4bea-b663-12676073d451-root {
    text-align: left;
  }


#s-0dc64274-3314-4bea-b663-12676073d451.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-0dc64274-3314-4bea-b663-12676073d451-root {
    text-align: left;
  }


#s-0dc64274-3314-4bea-b663-12676073d451.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-0dc64274-3314-4bea-b663-12676073d451-root {
    text-align: left;
  }


#s-0dc64274-3314-4bea-b663-12676073d451.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-0dc64274-3314-4bea-b663-12676073d451-root {
    text-align: left;
  }


#s-0dc64274-3314-4bea-b663-12676073d451.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-0dc64274-3314-4bea-b663-12676073d451-root {
    text-align: left;
  }


#s-0dc64274-3314-4bea-b663-12676073d451.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}
#s-2bbd0a49-1bf5-4c1a-a912-bd5ef68001d1 {
  background-repeat: no-repeat;
background-size: cover;
margin-left: 0%;
margin-right: 0px;
min-height: 400px;
background-position: center center;
}








#s-2bbd0a49-1bf5-4c1a-a912-bd5ef68001d1 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2bbd0a49-1bf5-4c1a-a912-bd5ef68001d1.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d06cbc3c-a0d0-423a-9fb7-892788ed7720 {
  margin-top: 0px;
margin-bottom: -8px;
padding-top: 21px;
padding-bottom: 21px;
text-align: center;
}
@media (min-width: 1200px){#s-d06cbc3c-a0d0-423a-9fb7-892788ed7720 {
  display: none;
}
#s-d06cbc3c-a0d0-423a-9fb7-892788ed7720, #wrap-s-d06cbc3c-a0d0-423a-9fb7-892788ed7720 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d06cbc3c-a0d0-423a-9fb7-892788ed7720 {
  display: none;
}
#s-d06cbc3c-a0d0-423a-9fb7-892788ed7720, #wrap-s-d06cbc3c-a0d0-423a-9fb7-892788ed7720 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d06cbc3c-a0d0-423a-9fb7-892788ed7720 {
  display: none;
}
#s-d06cbc3c-a0d0-423a-9fb7-892788ed7720, #wrap-s-d06cbc3c-a0d0-423a-9fb7-892788ed7720 { display:none !important; }}






  #s-d06cbc3c-a0d0-423a-9fb7-892788ed7720 img.shogun-image {
    

    
    
    
  }


#s-d06cbc3c-a0d0-423a-9fb7-892788ed7720 .shogun-image-content {
  
    align-items: center;
  
}

#s-91024797-1dc8-47f1-8483-a18885d1d337 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 1px;
padding-bottom: 0px;
min-height: 0px;
background-color: rgba(238, 238, 238, 1);
}
@media (min-width: 1200px){#s-91024797-1dc8-47f1-8483-a18885d1d337 {
  display: none;
}
#s-91024797-1dc8-47f1-8483-a18885d1d337, #wrap-s-91024797-1dc8-47f1-8483-a18885d1d337 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-91024797-1dc8-47f1-8483-a18885d1d337 {
  display: none;
}
#s-91024797-1dc8-47f1-8483-a18885d1d337, #wrap-s-91024797-1dc8-47f1-8483-a18885d1d337 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-91024797-1dc8-47f1-8483-a18885d1d337 {
  display: none;
}
#s-91024797-1dc8-47f1-8483-a18885d1d337, #wrap-s-91024797-1dc8-47f1-8483-a18885d1d337 { display:none !important; }}
@media (min-width: 0px) {
[id="s-91024797-1dc8-47f1-8483-a18885d1d337"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-91024797-1dc8-47f1-8483-a18885d1d337"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.5px);
}

}

@media (min-width: 992px) {
[id="s-91024797-1dc8-47f1-8483-a18885d1d337"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.5px);
}

}

@media (min-width: 1200px) {
[id="s-91024797-1dc8-47f1-8483-a18885d1d337"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.5px);
}

}

@media (max-width: 767px) {
  [id="s-91024797-1dc8-47f1-8483-a18885d1d337"] > .shg-row {
    flex-flow: column-reverse;
  }
}

#s-323ce278-c341-419f-b0ba-a4e4c9764170 {
  margin-top: 25px;
padding-top: 10px;
padding-left: 6%;
padding-bottom: 10px;
padding-right: 6%;
text-align: left;
background-color: rgba(255, 255, 255, 0);
}

#s-323ce278-c341-419f-b0ba-a4e4c9764170 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 25px;
  line-height: 1.15em;
  
  text-align: left;
}



#s-35cff3c2-f26c-48ea-abc7-65b41b9805f9 {
  margin-bottom: 6px;
padding-top: 8px;
padding-left: 6%;
padding-bottom: 8px;
padding-right: 6%;
text-align: left;
}

#s-35cff3c2-f26c-48ea-abc7-65b41b9805f9 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 15px;
  line-height: 1.45em;
  
  text-align: left;
}



#s-edbe1fef-6fcb-4382-b98e-e994ec4acfc4 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 0px;
padding-bottom: 0px;
min-height: 0px;
background-color: rgba(238, 238, 238, 1);
}
@media (max-width: 767px){#s-edbe1fef-6fcb-4382-b98e-e994ec4acfc4 {
  display: none;
}
#s-edbe1fef-6fcb-4382-b98e-e994ec4acfc4, #wrap-s-edbe1fef-6fcb-4382-b98e-e994ec4acfc4 { display:none !important; }}
@media (min-width: 0px) {
[id="s-edbe1fef-6fcb-4382-b98e-e994ec4acfc4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-edbe1fef-6fcb-4382-b98e-e994ec4acfc4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-edbe1fef-6fcb-4382-b98e-e994ec4acfc4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-edbe1fef-6fcb-4382-b98e-e994ec4acfc4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-bc35754a-9ec9-4464-a643-0ec02f76a5ff {
  background-repeat: no-repeat;
background-size: cover;
min-height: 700px;
background-position: center center;
}








#s-bc35754a-9ec9-4464-a643-0ec02f76a5ff > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bc35754a-9ec9-4464-a643-0ec02f76a5ff.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9b220769-0aea-4aa3-8503-213f7d75d8a0 {
  margin-top: 20px;
margin-left: 2%;
margin-bottom: 20px;
margin-right: 2%;
}








#s-9b220769-0aea-4aa3-8503-213f7d75d8a0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9b220769-0aea-4aa3-8503-213f7d75d8a0.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a1d44474-099a-4bfd-b3ec-9c42e088a453 {
  margin-top: 25px;
padding-top: 10px;
padding-left: 6%;
padding-bottom: 10px;
padding-right: 6%;
text-align: left;
background-color: rgba(255, 255, 255, 0);
}

#s-a1d44474-099a-4bfd-b3ec-9c42e088a453 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  line-height: 1.15em;
  
  text-align: left;
}



#s-419b8c10-011c-46d9-9113-fee050874a1f {
  margin-bottom: 6px;
padding-top: 8px;
padding-left: 6%;
padding-bottom: 8px;
padding-right: 6%;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-419b8c10-011c-46d9-9113-fee050874a1f {
  display: none;
}
#s-419b8c10-011c-46d9-9113-fee050874a1f, #wrap-s-419b8c10-011c-46d9-9113-fee050874a1f { display:none !important; }}
#s-419b8c10-011c-46d9-9113-fee050874a1f .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  text-align: left;
}



#s-6901474e-f65f-4ff3-b529-b3176992376e {
  margin-top: 30px;
margin-left: 6%;
margin-bottom: 0px;
margin-right: 4%;
padding-top: 14px;
padding-left: 15px;
padding-bottom: 14px;
padding-right: 15px;
border-radius: 0px;
background-color: rgba(247, 171, 53, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
letter-spacing: 2px;
}
#s-6901474e-f65f-4ff3-b529-b3176992376e:hover {background-color: rgba(247, 171, 53, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-6901474e-f65f-4ff3-b529-b3176992376e:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-6901474e-f65f-4ff3-b529-b3176992376e {
  display: none;
}
#s-6901474e-f65f-4ff3-b529-b3176992376e, #wrap-s-6901474e-f65f-4ff3-b529-b3176992376e { display:none !important; }}

  #s-6901474e-f65f-4ff3-b529-b3176992376e-root {
    text-align: left;
  }


#s-6901474e-f65f-4ff3-b529-b3176992376e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6901474e-f65f-4ff3-b529-b3176992376e-root {
    text-align: left;
  }


#s-6901474e-f65f-4ff3-b529-b3176992376e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6901474e-f65f-4ff3-b529-b3176992376e-root {
    text-align: left;
  }


#s-6901474e-f65f-4ff3-b529-b3176992376e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6901474e-f65f-4ff3-b529-b3176992376e-root {
    text-align: left;
  }


#s-6901474e-f65f-4ff3-b529-b3176992376e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6901474e-f65f-4ff3-b529-b3176992376e-root {
    text-align: left;
  }


#s-6901474e-f65f-4ff3-b529-b3176992376e.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}
#s-3b3e4a61-581e-46d4-8b69-d5a43e721d09 {
  margin-bottom: 6px;
padding-top: 8px;
padding-left: 6%;
padding-bottom: 8px;
padding-right: 6%;
text-align: left;
}
@media (min-width: 1200px){#s-3b3e4a61-581e-46d4-8b69-d5a43e721d09 {
  display: none;
}
#s-3b3e4a61-581e-46d4-8b69-d5a43e721d09, #wrap-s-3b3e4a61-581e-46d4-8b69-d5a43e721d09 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3b3e4a61-581e-46d4-8b69-d5a43e721d09 {
  display: none;
}
#s-3b3e4a61-581e-46d4-8b69-d5a43e721d09, #wrap-s-3b3e4a61-581e-46d4-8b69-d5a43e721d09 { display:none !important; }}@media (max-width: 767px){#s-3b3e4a61-581e-46d4-8b69-d5a43e721d09 {
  display: none;
}
#s-3b3e4a61-581e-46d4-8b69-d5a43e721d09, #wrap-s-3b3e4a61-581e-46d4-8b69-d5a43e721d09 { display:none !important; }}
#s-3b3e4a61-581e-46d4-8b69-d5a43e721d09 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 19px;
  line-height: 1.5em;
  
  text-align: left;
}



#s-d9feb426-fdba-408a-92aa-2bc3f0c3adb7 {
  margin-top: 25px;
margin-left: 6%;
margin-bottom: 0px;
margin-right: 4%;
padding-top: 14px;
padding-left: 15px;
padding-bottom: 14px;
padding-right: 15px;
border-radius: 0px;
background-color: rgba(247, 171, 53, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
letter-spacing: 2px;
}
#s-d9feb426-fdba-408a-92aa-2bc3f0c3adb7:hover {background-color: rgba(247, 171, 53, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-d9feb426-fdba-408a-92aa-2bc3f0c3adb7:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 1200px){#s-d9feb426-fdba-408a-92aa-2bc3f0c3adb7 {
  display: none;
}
#s-d9feb426-fdba-408a-92aa-2bc3f0c3adb7, #wrap-s-d9feb426-fdba-408a-92aa-2bc3f0c3adb7 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d9feb426-fdba-408a-92aa-2bc3f0c3adb7 {
  display: none;
}
#s-d9feb426-fdba-408a-92aa-2bc3f0c3adb7, #wrap-s-d9feb426-fdba-408a-92aa-2bc3f0c3adb7 { display:none !important; }}@media (max-width: 767px){#s-d9feb426-fdba-408a-92aa-2bc3f0c3adb7 {
  display: none;
}
#s-d9feb426-fdba-408a-92aa-2bc3f0c3adb7, #wrap-s-d9feb426-fdba-408a-92aa-2bc3f0c3adb7 { display:none !important; }}

  #s-d9feb426-fdba-408a-92aa-2bc3f0c3adb7-root {
    text-align: left;
  }


#s-d9feb426-fdba-408a-92aa-2bc3f0c3adb7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-d9feb426-fdba-408a-92aa-2bc3f0c3adb7-root {
    text-align: left;
  }


#s-d9feb426-fdba-408a-92aa-2bc3f0c3adb7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-d9feb426-fdba-408a-92aa-2bc3f0c3adb7-root {
    text-align: left;
  }


#s-d9feb426-fdba-408a-92aa-2bc3f0c3adb7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-d9feb426-fdba-408a-92aa-2bc3f0c3adb7-root {
    text-align: left;
  }


#s-d9feb426-fdba-408a-92aa-2bc3f0c3adb7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-d9feb426-fdba-408a-92aa-2bc3f0c3adb7-root {
    text-align: left;
  }


#s-d9feb426-fdba-408a-92aa-2bc3f0c3adb7.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 15px;
  
  
  
  display:  inline-block ;
}
}
#s-89bca9a1-4c37-44d5-9575-834b031d73db {
  background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-89bca9a1-4c37-44d5-9575-834b031d73db {
  display: none;
}
#s-89bca9a1-4c37-44d5-9575-834b031d73db, #wrap-s-89bca9a1-4c37-44d5-9575-834b031d73db { display:none !important; }}
@media (min-width: 0px) {
[id="s-89bca9a1-4c37-44d5-9575-834b031d73db"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-89bca9a1-4c37-44d5-9575-834b031d73db"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-89bca9a1-4c37-44d5-9575-834b031d73db"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-89bca9a1-4c37-44d5-9575-834b031d73db"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-dbfc28ea-5870-4ff9-bb84-03481389041c {
  margin-top: 20px;
margin-left: 2%;
margin-bottom: 20px;
margin-right: 2%;
padding-top: 19px;
padding-left: 3%;
padding-bottom: 35px;
padding-right: 3%;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-dbfc28ea-5870-4ff9-bb84-03481389041c {
  display: none;
}
#s-dbfc28ea-5870-4ff9-bb84-03481389041c, #wrap-s-dbfc28ea-5870-4ff9-bb84-03481389041c { display:none !important; }}







#s-dbfc28ea-5870-4ff9-bb84-03481389041c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-dbfc28ea-5870-4ff9-bb84-03481389041c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-64937917-8a29-4d40-a28c-16aa0631fc8d {
  margin-top: 0px;
margin-left: 3%;
margin-bottom: 0px;
margin-right: 6%;
padding-top: 0px;
padding-left: 0px;
padding-bottom: 25px;
padding-right: 0%;
text-align: left;
}

#s-64937917-8a29-4d40-a28c-16aa0631fc8d .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  line-height: 1.25em;
  
  text-align: left;
}



#s-96fdbd5f-e9b2-4135-822e-4299ae778fd7 {
  margin-bottom: 6px;
padding-top: 8px;
padding-left: 3%;
padding-bottom: 8px;
padding-right: 3%;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-96fdbd5f-e9b2-4135-822e-4299ae778fd7 {
  
}
}
#s-96fdbd5f-e9b2-4135-822e-4299ae778fd7 .shogun-heading-component h1 {
  color: rgba(0, 0, 0, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  text-align: left;
}



#s-3b62ceb0-35a0-455f-96c8-a24c0b5de550 {
  margin-top: 30px;
margin-left: 3%;
margin-bottom: 0px;
margin-right: 4%;
padding-top: 14px;
padding-left: 15px;
padding-bottom: 14px;
padding-right: 15px;
border-radius: 0px;
background-color: rgba(247, 171, 53, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(0, 0, 0, 1);
letter-spacing: 2px;
}
#s-3b62ceb0-35a0-455f-96c8-a24c0b5de550:hover {background-color: rgba(247, 171, 53, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;
color: rgba(0, 0, 0, 1) !important;}#s-3b62ceb0-35a0-455f-96c8-a24c0b5de550:active {background-color: #000000 !important;
text-decoration: none !important;}@media (min-width: 768px) and (max-width: 991px){#s-3b62ceb0-35a0-455f-96c8-a24c0b5de550 {
  display: none;
}
#s-3b62ceb0-35a0-455f-96c8-a24c0b5de550, #wrap-s-3b62ceb0-35a0-455f-96c8-a24c0b5de550 { display:none !important; }}

  #s-3b62ceb0-35a0-455f-96c8-a24c0b5de550-root {
    text-align: left;
  }


#s-3b62ceb0-35a0-455f-96c8-a24c0b5de550.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-3b62ceb0-35a0-455f-96c8-a24c0b5de550-root {
    text-align: left;
  }


#s-3b62ceb0-35a0-455f-96c8-a24c0b5de550.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-3b62ceb0-35a0-455f-96c8-a24c0b5de550-root {
    text-align: left;
  }


#s-3b62ceb0-35a0-455f-96c8-a24c0b5de550.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-3b62ceb0-35a0-455f-96c8-a24c0b5de550-root {
    text-align: left;
  }


#s-3b62ceb0-35a0-455f-96c8-a24c0b5de550.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-3b62ceb0-35a0-455f-96c8-a24c0b5de550-root {
    text-align: left;
  }


#s-3b62ceb0-35a0-455f-96c8-a24c0b5de550.shg-btn {
  color: rgba(0, 0, 0, 1);
  font-size: 13px;
  
  
  
  display:  inline-block ;
}
}
#s-5b85857f-975d-4402-b052-8e354e5ffba8 {
  background-repeat: no-repeat;
background-size: cover;
margin-left: 0%;
margin-right: 0%;
min-height: 890px;
background-position: center center;
}








#s-5b85857f-975d-4402-b052-8e354e5ffba8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5b85857f-975d-4402-b052-8e354e5ffba8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1d9567cd-daff-40ac-9581-72ba57b1f797 {
  min-height: 50px;
}
@media (min-width: 1200px){#s-1d9567cd-daff-40ac-9581-72ba57b1f797 {
  display: none;
}
#s-1d9567cd-daff-40ac-9581-72ba57b1f797, #wrap-s-1d9567cd-daff-40ac-9581-72ba57b1f797 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-1d9567cd-daff-40ac-9581-72ba57b1f797 {
  display: none;
}
#s-1d9567cd-daff-40ac-9581-72ba57b1f797, #wrap-s-1d9567cd-daff-40ac-9581-72ba57b1f797 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-1d9567cd-daff-40ac-9581-72ba57b1f797 {
  display: none;
}
#s-1d9567cd-daff-40ac-9581-72ba57b1f797, #wrap-s-1d9567cd-daff-40ac-9581-72ba57b1f797 { display:none !important; }}@media (max-width: 767px){#s-1d9567cd-daff-40ac-9581-72ba57b1f797 {
  display: none;
}
#s-1d9567cd-daff-40ac-9581-72ba57b1f797, #wrap-s-1d9567cd-daff-40ac-9581-72ba57b1f797 { display:none !important; }}







#s-1d9567cd-daff-40ac-9581-72ba57b1f797 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1d9567cd-daff-40ac-9581-72ba57b1f797.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-934bb5c2-75dc-41bb-be14-100840acb479 {
  min-height: 50px;
}
@media (min-width: 768px) and (max-width: 991px){#s-934bb5c2-75dc-41bb-be14-100840acb479 {
  
}
}@media (max-width: 767px){#s-934bb5c2-75dc-41bb-be14-100840acb479 {
  
}
}







#s-934bb5c2-75dc-41bb-be14-100840acb479 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-934bb5c2-75dc-41bb-be14-100840acb479.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-083df01f-c10a-4685-9df6-98bf602c7e21 {
  margin-bottom: 0px;
padding-bottom: 0px;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-083df01f-c10a-4685-9df6-98bf602c7e21 {
  
}
}@media (max-width: 767px){#s-083df01f-c10a-4685-9df6-98bf602c7e21 {
  
}
}
@media (min-width: 0px) {
[id="s-083df01f-c10a-4685-9df6-98bf602c7e21"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-083df01f-c10a-4685-9df6-98bf602c7e21"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-083df01f-c10a-4685-9df6-98bf602c7e21"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-083df01f-c10a-4685-9df6-98bf602c7e21"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

}

#s-bfe37086-c328-42ea-b279-947dc91a4d0f {
  background-repeat: no-repeat;
background-size: cover;
min-height: 737px;
background-position: center center;
}
@media (min-width: 768px) and (max-width: 991px){#s-bfe37086-c328-42ea-b279-947dc91a4d0f {
  
}
}@media (max-width: 767px){#s-bfe37086-c328-42ea-b279-947dc91a4d0f {
  display: none;
}
#s-bfe37086-c328-42ea-b279-947dc91a4d0f, #wrap-s-bfe37086-c328-42ea-b279-947dc91a4d0f { display:none !important; }}







#s-bfe37086-c328-42ea-b279-947dc91a4d0f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bfe37086-c328-42ea-b279-947dc91a4d0f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d5abb264-ace5-4660-a447-2e4e5c968786 {
  text-align: center;
}
@media (min-width: 1200px){#s-d5abb264-ace5-4660-a447-2e4e5c968786 {
  display: none;
}
#s-d5abb264-ace5-4660-a447-2e4e5c968786, #wrap-s-d5abb264-ace5-4660-a447-2e4e5c968786 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-d5abb264-ace5-4660-a447-2e4e5c968786 {
  display: none;
}
#s-d5abb264-ace5-4660-a447-2e4e5c968786, #wrap-s-d5abb264-ace5-4660-a447-2e4e5c968786 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-d5abb264-ace5-4660-a447-2e4e5c968786 {
  display: none;
}
#s-d5abb264-ace5-4660-a447-2e4e5c968786, #wrap-s-d5abb264-ace5-4660-a447-2e4e5c968786 { display:none !important; }}@media (max-width: 767px){#s-d5abb264-ace5-4660-a447-2e4e5c968786 {
  
}
}






  #s-d5abb264-ace5-4660-a447-2e4e5c968786 img.shogun-image {
    

    
    
    
  }


#s-d5abb264-ace5-4660-a447-2e4e5c968786 .shogun-image-content {
  
    align-items: center;
  
}

#s-b8f6c505-ba13-4d0e-9d4d-9c915dfedb2b {
  margin-top: 10px;
margin-left: 2%;
margin-bottom: 10px;
margin-right: 2%;
padding-top: 19px;
padding-left: 3%;
padding-bottom: 35px;
padding-right: 3%;
min-height: 0px;
}
@media (min-width: 768px) and (max-width: 991px){#s-b8f6c505-ba13-4d0e-9d4d-9c915dfedb2b {
  
}
}







#s-b8f6c505-ba13-4d0e-9d4d-9c915dfedb2b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b8f6c505-ba13-4d0e-9d4d-9c915dfedb2b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-101f126b-81f5-47cc-a2e1-16a144edf6c4 {
  margin-top: 0px;
margin-left: 3%;
margin-bottom: 0px;
margin-right: 6%;
padding-top: 0px;
padding-left: 0%;
padding-bottom: 25px;
padding-right: 0%;
text-align: left;
background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px){#s-101f126b-81f5-47cc-a2e1-16a144edf6c4 {
  
}
}
#s-101f126b-81f5-47cc-a2e1-16a144edf6c4 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 40px;
  line-height: 1.15em;
  
  text-align: left;
}



#s-c3c908f3-ca70-4bb4-b3dc-474252e6979a {
  margin-bottom: 0px;
padding-top: 8px;
padding-left: 3%;
padding-bottom: 0px;
padding-right: 6%;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-c3c908f3-ca70-4bb4-b3dc-474252e6979a {
  
}
}
#s-c3c908f3-ca70-4bb4-b3dc-474252e6979a .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 20px;
  line-height: 1.5em;
  
  text-align: left;
}



#s-d0351cdb-0502-40cd-9a8f-8d0e43b3ffa9 {
  margin-bottom: 0px;
padding-top: 8px;
padding-left: 9%;
padding-bottom: 0px;
padding-right: 6%;
text-align: left;
}
@media (min-width: 768px) and (max-width: 991px){#s-d0351cdb-0502-40cd-9a8f-8d0e43b3ffa9 {
  
}
}
#s-d0351cdb-0502-40cd-9a8f-8d0e43b3ffa9 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 16px;
  line-height: 1.5em;
  
  text-align: left;
}



#s-16080e00-f4e8-424c-aad5-7985452c77a5 {
  padding-left: 0.5%;
padding-right: 0.5%;
}
@media (min-width: 768px) and (max-width: 991px){#s-16080e00-f4e8-424c-aad5-7985452c77a5 {
  
}
}@media (max-width: 767px){#s-16080e00-f4e8-424c-aad5-7985452c77a5 {
  
}
}
#s-63d7c553-79e1-4070-baa7-7762047349da {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 20px;
padding-bottom: 20px;
text-align: center;
background-color: rgba(0, 0, 0, 1);
}
@media (min-width: 1200px){#s-63d7c553-79e1-4070-baa7-7762047349da {
  display: none;
}
#s-63d7c553-79e1-4070-baa7-7762047349da, #wrap-s-63d7c553-79e1-4070-baa7-7762047349da { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-63d7c553-79e1-4070-baa7-7762047349da {
  display: none;
}
#s-63d7c553-79e1-4070-baa7-7762047349da, #wrap-s-63d7c553-79e1-4070-baa7-7762047349da { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-63d7c553-79e1-4070-baa7-7762047349da {
  display: none;
}
#s-63d7c553-79e1-4070-baa7-7762047349da, #wrap-s-63d7c553-79e1-4070-baa7-7762047349da { display:none !important; }}
#s-63d7c553-79e1-4070-baa7-7762047349da .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 12px;
  
  letter-spacing: 6px;
  text-align: center;
}



#s-6119f869-2e04-4ee4-b26d-e80ba23e4057 {
  margin-top: 0px;
margin-bottom: 0px;
padding-top: 20px;
padding-bottom: 20px;
text-align: center;
background-color: rgba(0, 0, 0, 1);
}
@media (max-width: 767px){#s-6119f869-2e04-4ee4-b26d-e80ba23e4057 {
  display: none;
}
#s-6119f869-2e04-4ee4-b26d-e80ba23e4057, #wrap-s-6119f869-2e04-4ee4-b26d-e80ba23e4057 { display:none !important; }}
#s-6119f869-2e04-4ee4-b26d-e80ba23e4057 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  normal ;
  
  font-style:  normal ;
  font-size: 22px;
  
  letter-spacing: 6px;
  text-align: center;
}



@media (min-width: 1200px){#s-5c58f46d-4b67-4ed4-b817-a575185dafa0 {
  
}
}@media (min-width: 992px) and (max-width: 1199px){#s-5c58f46d-4b67-4ed4-b817-a575185dafa0 {
  
}
}
/*
  $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}
