.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-f7a99f11-6567-41d9-952a-17bec53e26b7 {
  min-height: 50px;
}








#s-f7a99f11-6567-41d9-952a-17bec53e26b7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f7a99f11-6567-41d9-952a-17bec53e26b7.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.shogun-image-container {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image.hover {
  opacity: 0;
  z-index: 200;
  position: absolute;
  left: 0;
  top: 0;
}

.shogun-image.hover:hover {
  opacity: 1;
}

#s-e08d54e1-3f61-44a5-ab3a-4a2be1679591 {
  text-align: center;
}







  #s-e08d54e1-3f61-44a5-ab3a-4a2be1679591 img.shogun-image {
    

    
    
    
  }


#s-e08d54e1-3f61-44a5-ab3a-4a2be1679591 .shogun-image-content {
  
    align-items: center;
  
}

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

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

#s-25eabf04-ece8-47ee-a3da-7e7c9b01a098 {
  margin-top: 10px;
margin-bottom: 20px;
text-align: center;
}

#s-25eabf04-ece8-47ee-a3da-7e7c9b01a098 .shogun-heading-component h1 {
  color: rgba(5, 5, 5, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 41px;
  
  
  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-18e016cd-aa54-4925-9497-e3cfad28ef27 {
  margin-left: 10%;
margin-right: 10%;
}
@media (min-width: 992px) and (max-width: 1199px){#s-18e016cd-aa54-4925-9497-e3cfad28ef27 {
  
}
}@media (max-width: 767px){#s-18e016cd-aa54-4925-9497-e3cfad28ef27 {
  display: none;
}
#s-18e016cd-aa54-4925-9497-e3cfad28ef27, #wrap-s-18e016cd-aa54-4925-9497-e3cfad28ef27 { display: none !important; }}
@media (min-width: 0px) {
[id="s-18e016cd-aa54-4925-9497-e3cfad28ef27"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-18e016cd-aa54-4925-9497-e3cfad28ef27"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-18e016cd-aa54-4925-9497-e3cfad28ef27"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-18e016cd-aa54-4925-9497-e3cfad28ef27"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-e874b270-41b9-4f15-bfff-ee7edb2817c8 {
  text-align: center;
}







  #s-e874b270-41b9-4f15-bfff-ee7edb2817c8 img.shogun-image {
    

    
    
    
  }


#s-e874b270-41b9-4f15-bfff-ee7edb2817c8 .shogun-image-content {
  
    align-items: center;
  
}

#s-508daf44-8758-463b-9911-7e91c085241f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-508daf44-8758-463b-9911-7e91c085241f .shogun-heading-component h2 {
  color: rgba(252, 249, 249, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



#s-964e8f93-1fb7-4265-b8d4-08172d5e0541 {
  margin-top: -10%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-964e8f93-1fb7-4265-b8d4-08172d5e0541 .shogun-heading-component h2 {
  color: rgba(252, 252, 252, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  
  
  
  
}



#s-165c7b2d-a80e-41e1-bc8d-f0d5e4c62fba {
  text-align: center;
}







  #s-165c7b2d-a80e-41e1-bc8d-f0d5e4c62fba img.shogun-image {
    

    
    
    
  }


#s-165c7b2d-a80e-41e1-bc8d-f0d5e4c62fba .shogun-image-content {
  
    align-items: center;
  
}

#s-b2efc750-f812-4647-89d6-5c25edbb6c52 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-b2efc750-f812-4647-89d6-5c25edbb6c52 .shogun-heading-component h2 {
  color: rgba(252, 248, 248, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



#s-8f0cf2b3-664d-4a5c-ac61-e6c536924dfe {
  margin-top: -10%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8f0cf2b3-664d-4a5c-ac61-e6c536924dfe .shogun-heading-component h2 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  
  
  
  
}



#s-f051f69a-cbb5-473b-b390-93af3a135f35 {
  text-align: center;
}







  #s-f051f69a-cbb5-473b-b390-93af3a135f35 img.shogun-image {
    

    
    
    
  }


#s-f051f69a-cbb5-473b-b390-93af3a135f35 .shogun-image-content {
  
    align-items: center;
  
}

#s-d474c882-289e-488a-b233-d8ed1bc5ea49 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d474c882-289e-488a-b233-d8ed1bc5ea49 .shogun-heading-component h2 {
  color: rgba(248, 248, 248, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



#s-8faafaf1-fb11-41f0-8049-eca7734fe3d5 {
  margin-top: -10%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-8faafaf1-fb11-41f0-8049-eca7734fe3d5 .shogun-heading-component h2 {
  color: rgba(253, 253, 253, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  
  
  
  
}



#s-739fa38b-d63a-4d0e-8075-f8f0fdabbb36 {
  text-align: center;
}







  #s-739fa38b-d63a-4d0e-8075-f8f0fdabbb36 img.shogun-image {
    

    
    
    
  }


#s-739fa38b-d63a-4d0e-8075-f8f0fdabbb36 .shogun-image-content {
  
    align-items: center;
  
}

#s-952f8bd9-b557-4fd9-9bc9-cde0d17fcedb {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-952f8bd9-b557-4fd9-9bc9-cde0d17fcedb .shogun-heading-component h2 {
  color: rgba(248, 248, 248, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



#s-0c171f5d-c339-449f-a50b-949034f679db {
  margin-top: -10%;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0c171f5d-c339-449f-a50b-949034f679db .shogun-heading-component h2 {
  color: rgba(253, 253, 253, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  
  
  
  
}



#s-92719836-8aed-44d9-955a-a84022e3ca02 {
  margin-bottom: 30px;
}








#s-92719836-8aed-44d9-955a-a84022e3ca02 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-92719836-8aed-44d9-955a-a84022e3ca02.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-21e2376f-eeb5-4052-9c94-451702189517 {
  min-height: 50px;
}








#s-21e2376f-eeb5-4052-9c94-451702189517 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-21e2376f-eeb5-4052-9c94-451702189517.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-39230433-7a7c-4536-95fc-a9f7d6d1a617 {
  min-height: 50px;
}








#s-39230433-7a7c-4536-95fc-a9f7d6d1a617 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-39230433-7a7c-4536-95fc-a9f7d6d1a617.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ffe22248-59af-4275-89a8-16587e144de9 {
  margin-top: 10px;
margin-left: 10%;
margin-bottom: 10px;
margin-right: 10%;
padding-left: 2%;
padding-right: 2%;
}
@media (min-width: 1200px){#s-ffe22248-59af-4275-89a8-16587e144de9 {
  display: none;
}
#s-ffe22248-59af-4275-89a8-16587e144de9, #wrap-s-ffe22248-59af-4275-89a8-16587e144de9 { display: none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ffe22248-59af-4275-89a8-16587e144de9 {
  display: none;
}
#s-ffe22248-59af-4275-89a8-16587e144de9, #wrap-s-ffe22248-59af-4275-89a8-16587e144de9 { display: none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ffe22248-59af-4275-89a8-16587e144de9 {
  display: none;
}
#s-ffe22248-59af-4275-89a8-16587e144de9, #wrap-s-ffe22248-59af-4275-89a8-16587e144de9 { display: none !important; }}@media (max-width: 767px){#s-ffe22248-59af-4275-89a8-16587e144de9 {
  
}
}
@media (min-width: 0px) {
[id="s-ffe22248-59af-4275-89a8-16587e144de9"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-ffe22248-59af-4275-89a8-16587e144de9"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-ffe22248-59af-4275-89a8-16587e144de9"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-ffe22248-59af-4275-89a8-16587e144de9"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-3e495bd7-77c9-47f2-9d5d-73e47b15da79 {
  text-align: center;
}







  #s-3e495bd7-77c9-47f2-9d5d-73e47b15da79 img.shogun-image {
    

    
    
    
  }


#s-3e495bd7-77c9-47f2-9d5d-73e47b15da79 .shogun-image-content {
  
    align-items: center;
  
}

#s-df950526-230a-4839-99f2-06ef22f16d65 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-df950526-230a-4839-99f2-06ef22f16d65 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



#s-84b25ccf-71c7-4a8c-95bd-e63eb9b44dfa {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-84b25ccf-71c7-4a8c-95bd-e63eb9b44dfa .shogun-heading-component h2 {
  color: rgba(3, 3, 3, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  
  
  
  
}



#s-57b52a66-9639-44ef-b31e-182f60630898 {
  text-align: center;
}







  #s-57b52a66-9639-44ef-b31e-182f60630898 img.shogun-image {
    

    
    
    
  }


#s-57b52a66-9639-44ef-b31e-182f60630898 .shogun-image-content {
  
    align-items: center;
  
}

#s-47d4a434-70a6-47b2-a109-36dbb96b3a84 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-47d4a434-70a6-47b2-a109-36dbb96b3a84 .shogun-heading-component h2 {
  color: rgba(7, 7, 7, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



#s-5526ff35-d684-47cf-a52e-8ce13d24ddbf {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-5526ff35-d684-47cf-a52e-8ce13d24ddbf .shogun-heading-component h2 {
  color: rgba(5, 5, 5, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  
  
  
  
}



#s-23e6f64d-6c59-48b8-b0b8-9846266dfd64 {
  text-align: center;
}







  #s-23e6f64d-6c59-48b8-b0b8-9846266dfd64 img.shogun-image {
    

    
    
    
  }


#s-23e6f64d-6c59-48b8-b0b8-9846266dfd64 .shogun-image-content {
  
    align-items: center;
  
}

#s-cbf321c8-a952-49aa-9221-cbf9af02b84f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-cbf321c8-a952-49aa-9221-cbf9af02b84f .shogun-heading-component h2 {
  color: rgba(3, 3, 3, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



#s-3afbaf68-40df-492f-a723-6254ad2711a7 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-3afbaf68-40df-492f-a723-6254ad2711a7 .shogun-heading-component h2 {
  color: rgba(0, 0, 0, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  
  
  
  
}



#s-35f6cd54-cab6-4d67-841d-7d09361e7b19 {
  text-align: center;
}







  #s-35f6cd54-cab6-4d67-841d-7d09361e7b19 img.shogun-image {
    

    
    
    
  }


#s-35f6cd54-cab6-4d67-841d-7d09361e7b19 .shogun-image-content {
  
    align-items: center;
  
}

#s-d9e42d85-97df-475a-b0e8-65dd7712e242 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-d9e42d85-97df-475a-b0e8-65dd7712e242 .shogun-heading-component h2 {
  color: rgba(3, 3, 3, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  font-size: 40px;
  
  
  
}



#s-56d0c874-cbbf-4383-b2ea-b4e17ef2970c {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-56d0c874-cbbf-4383-b2ea-b4e17ef2970c .shogun-heading-component h2 {
  color: rgba(8, 8, 8, 1);
  font-weight:  700 ;
  font-family: "Roboto";
  font-style:  normal ;
  
  
  
  
}



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

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

#s-58e01b97-3a4f-4d35-b193-49eafe61a5a1 hr {
  border-top: 1px solid #ddd;
}

#s-745ba56f-a479-43c1-b007-f0fcc98eb7ee {
  margin-top: 20px;
margin-bottom: -10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-745ba56f-a479-43c1-b007-f0fcc98eb7ee .shogun-heading-component h2 {
  color: #000;
  font-weight:  600 ;
  font-family: "Quicksand";
  font-style:  normal ;
  
  
  
  text-align: center;
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-46da1a54-d348-4698-b368-7387df3f73b1 {
  margin-top: 10px;
margin-bottom: 10px;
}

#s-c8bbff71-b853-4a27-bb19-77168ebf56c6 {
  min-height: 50px;
}








#s-c8bbff71-b853-4a27-bb19-77168ebf56c6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c8bbff71-b853-4a27-bb19-77168ebf56c6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2ed18a41-9d4a-4517-906c-8b6ffb5e5c87 {
  margin-top: 10px;
margin-bottom: 20px;
text-align: center;
}

#s-2ed18a41-9d4a-4517-906c-8b6ffb5e5c87 .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Quicksand";
  font-style:  normal ;
  
  
  
  text-align: center;
}



#s-ad1e40e6-d105-4c24-a8ad-de0764e43346 {
  margin-left: 5%;
margin-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
}

@media (min-width: 0px) {
[id="s-ad1e40e6-d105-4c24-a8ad-de0764e43346"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-ad1e40e6-d105-4c24-a8ad-de0764e43346"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-ad1e40e6-d105-4c24-a8ad-de0764e43346"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-ad1e40e6-d105-4c24-a8ad-de0764e43346"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-9ec4d567-41cd-4d6b-9982-c8fde8a67b38 {
  text-align: center;
}







  #s-9ec4d567-41cd-4d6b-9982-c8fde8a67b38 img.shogun-image {
    

    
    
    
  }


#s-9ec4d567-41cd-4d6b-9982-c8fde8a67b38 .shogun-image-content {
  
    align-items: center;
  
}

#s-b94579f1-2821-4aa9-836c-b5154342b82b {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-b94579f1-2821-4aa9-836c-b5154342b82b .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-ee7f8c0d-18e9-4269-8c80-382d6d232dcc {
  text-align: center;
}







  #s-ee7f8c0d-18e9-4269-8c80-382d6d232dcc img.shogun-image {
    

    
    
    
  }


#s-ee7f8c0d-18e9-4269-8c80-382d6d232dcc .shogun-image-content {
  
    align-items: center;
  
}

#s-02656efe-d45c-4e91-afb8-3ce0d5e2b50c {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-02656efe-d45c-4e91-afb8-3ce0d5e2b50c .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-a31f8f10-c7e7-4fb5-bd5f-a82d3946dbf8 {
  text-align: center;
}







  #s-a31f8f10-c7e7-4fb5-bd5f-a82d3946dbf8 img.shogun-image {
    

    
    
    
  }


#s-a31f8f10-c7e7-4fb5-bd5f-a82d3946dbf8 .shogun-image-content {
  
    align-items: center;
  
}

#s-cee5555c-97f0-4096-bc26-ab5ad06c0c84 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-cee5555c-97f0-4096-bc26-ab5ad06c0c84 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-ee576b8d-2bd5-4c9e-8773-628bae745ed6 {
  text-align: center;
}







  #s-ee576b8d-2bd5-4c9e-8773-628bae745ed6 img.shogun-image {
    

    
    
    
  }


#s-ee576b8d-2bd5-4c9e-8773-628bae745ed6 .shogun-image-content {
  
    align-items: center;
  
}

#s-913afc2f-30a8-411c-86d1-262c3210edb0 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-913afc2f-30a8-411c-86d1-262c3210edb0 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-83df7ebb-f3a5-4f0f-bf77-4287424d96a2 {
  margin-left: 5%;
margin-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
}

@media (min-width: 0px) {
[id="s-83df7ebb-f3a5-4f0f-bf77-4287424d96a2"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-83df7ebb-f3a5-4f0f-bf77-4287424d96a2"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-83df7ebb-f3a5-4f0f-bf77-4287424d96a2"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-83df7ebb-f3a5-4f0f-bf77-4287424d96a2"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-d789b58b-a108-4485-992b-b38c540956f0 {
  text-align: center;
}







  #s-d789b58b-a108-4485-992b-b38c540956f0 img.shogun-image {
    

    
    
    
  }


#s-d789b58b-a108-4485-992b-b38c540956f0 .shogun-image-content {
  
    align-items: center;
  
}

#s-d27cbb61-9aa3-4776-920e-931ec45f5984 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-d27cbb61-9aa3-4776-920e-931ec45f5984 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-b1a4eefe-e9ca-4a5f-9aba-02896dc5edf5 {
  text-align: center;
}







  #s-b1a4eefe-e9ca-4a5f-9aba-02896dc5edf5 img.shogun-image {
    

    
    
    
  }


#s-b1a4eefe-e9ca-4a5f-9aba-02896dc5edf5 .shogun-image-content {
  
    align-items: center;
  
}

#s-4ed091d1-e688-4fd4-8124-7abd2b3dd98f {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-4ed091d1-e688-4fd4-8124-7abd2b3dd98f .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-0c764582-80d4-48af-a41c-c5d02a91f6fa {
  text-align: center;
}







  #s-0c764582-80d4-48af-a41c-c5d02a91f6fa img.shogun-image {
    

    
    
    
  }


#s-0c764582-80d4-48af-a41c-c5d02a91f6fa .shogun-image-content {
  
    align-items: center;
  
}

#s-73a1192f-5e9b-4561-b76d-bfea2115d88f {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-73a1192f-5e9b-4561-b76d-bfea2115d88f .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-be19e3fb-9537-497e-b639-9484f2c4c516 {
  text-align: center;
}







  #s-be19e3fb-9537-497e-b639-9484f2c4c516 img.shogun-image {
    

    
    
    
  }


#s-be19e3fb-9537-497e-b639-9484f2c4c516 .shogun-image-content {
  
    align-items: center;
  
}

#s-56dba3c6-1069-4260-baac-9f73bb9da3a7 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-56dba3c6-1069-4260-baac-9f73bb9da3a7 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-abc7a254-6808-4079-888d-d1e644f17a2b hr {
  border-top: 1px solid #ddd;
}

#s-36ff416c-a69d-4c6f-bf2f-336852941cb8 {
  min-height: 50px;
}








#s-36ff416c-a69d-4c6f-bf2f-336852941cb8 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-36ff416c-a69d-4c6f-bf2f-336852941cb8.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a495893b-11f5-47ba-8e1b-b3aaf7cc5aeb {
  margin-top: 10px;
margin-bottom: 20px;
text-align: center;
}

#s-a495893b-11f5-47ba-8e1b-b3aaf7cc5aeb .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Quicksand";
  font-style:  normal ;
  
  
  
  text-align: center;
}



#s-f3c9e416-d1a0-4fdf-a27e-0e3380f95743 {
  margin-left: 5%;
margin-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
}

@media (min-width: 0px) {
[id="s-f3c9e416-d1a0-4fdf-a27e-0e3380f95743"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-f3c9e416-d1a0-4fdf-a27e-0e3380f95743"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-f3c9e416-d1a0-4fdf-a27e-0e3380f95743"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-f3c9e416-d1a0-4fdf-a27e-0e3380f95743"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-e1e94f67-cc35-480b-93f9-13686c74463b {
  text-align: center;
}







  #s-e1e94f67-cc35-480b-93f9-13686c74463b img.shogun-image {
    

    
    
    
  }


#s-e1e94f67-cc35-480b-93f9-13686c74463b .shogun-image-content {
  
    align-items: center;
  
}

#s-393e2a90-f8a4-4229-993d-ef0a84a92d51 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-393e2a90-f8a4-4229-993d-ef0a84a92d51 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-081b155d-6896-4f6e-8021-40f331749af2 {
  text-align: center;
}







  #s-081b155d-6896-4f6e-8021-40f331749af2 img.shogun-image {
    

    
    
    
  }


#s-081b155d-6896-4f6e-8021-40f331749af2 .shogun-image-content {
  
    align-items: center;
  
}

#s-86313906-ed7a-49d9-af45-712aa5242291 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-86313906-ed7a-49d9-af45-712aa5242291 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-1bfbbf54-13ab-49dd-a2df-51546415307e {
  text-align: center;
}







  #s-1bfbbf54-13ab-49dd-a2df-51546415307e img.shogun-image {
    

    
    
    
  }


#s-1bfbbf54-13ab-49dd-a2df-51546415307e .shogun-image-content {
  
    align-items: center;
  
}

#s-fc73194e-081d-4f7b-b773-f5847164ae44 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-fc73194e-081d-4f7b-b773-f5847164ae44 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-8373c6f0-3df8-466b-b2ae-09654d8526a3 {
  text-align: center;
}







  #s-8373c6f0-3df8-466b-b2ae-09654d8526a3 img.shogun-image {
    

    
    
    
  }


#s-8373c6f0-3df8-466b-b2ae-09654d8526a3 .shogun-image-content {
  
    align-items: center;
  
}

#s-8365ee25-227a-4e27-8cec-f115d1a54f6f {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-8365ee25-227a-4e27-8cec-f115d1a54f6f .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-a5ae5d3a-9897-4216-a034-9394aaffa373 {
  margin-left: 5%;
margin-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
}

@media (min-width: 0px) {
[id="s-a5ae5d3a-9897-4216-a034-9394aaffa373"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-a5ae5d3a-9897-4216-a034-9394aaffa373"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-a5ae5d3a-9897-4216-a034-9394aaffa373"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-a5ae5d3a-9897-4216-a034-9394aaffa373"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-fe889b33-13d1-4e05-98f4-942f31fe5cc1 {
  text-align: center;
}







  #s-fe889b33-13d1-4e05-98f4-942f31fe5cc1 img.shogun-image {
    

    
    
    
  }


#s-fe889b33-13d1-4e05-98f4-942f31fe5cc1 .shogun-image-content {
  
    align-items: center;
  
}

#s-f4ec7a8a-c008-4fdc-98a1-d3c6548c6b65 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-f4ec7a8a-c008-4fdc-98a1-d3c6548c6b65 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-1fb60889-11e5-4d82-a6c5-303e0866abf5 {
  text-align: center;
}







  #s-1fb60889-11e5-4d82-a6c5-303e0866abf5 img.shogun-image {
    

    
    
    
  }


#s-1fb60889-11e5-4d82-a6c5-303e0866abf5 .shogun-image-content {
  
    align-items: center;
  
}

#s-b1a0fa03-f0a9-4745-9c60-cd71cb997790 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-b1a0fa03-f0a9-4745-9c60-cd71cb997790 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-7fac6483-698f-4b4b-8271-36bc45cbe97e {
  text-align: center;
}







  #s-7fac6483-698f-4b4b-8271-36bc45cbe97e img.shogun-image {
    

    
    
    
  }


#s-7fac6483-698f-4b4b-8271-36bc45cbe97e .shogun-image-content {
  
    align-items: center;
  
}

#s-2048cc9b-83fb-425c-887d-6e20578b6ed6 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-2048cc9b-83fb-425c-887d-6e20578b6ed6 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-30c201b8-45a2-40d3-87f7-0768eee3b186 {
  text-align: center;
}







  #s-30c201b8-45a2-40d3-87f7-0768eee3b186 img.shogun-image {
    

    
    
    
  }


#s-30c201b8-45a2-40d3-87f7-0768eee3b186 .shogun-image-content {
  
    align-items: center;
  
}

#s-56c2387e-9449-48a8-a558-5ccbcc392244 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-56c2387e-9449-48a8-a558-5ccbcc392244 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-60d718d6-f494-4193-9de3-a7a612001b10 hr {
  border-top: 1px solid #ddd;
}

#s-3e27e814-2a9f-42d6-ba36-45079a2f3b0c {
  min-height: 50px;
}








#s-3e27e814-2a9f-42d6-ba36-45079a2f3b0c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3e27e814-2a9f-42d6-ba36-45079a2f3b0c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-e86dda31-cea0-4ca1-89f4-364ce5c4a2fd {
  margin-top: 10px;
margin-bottom: 20px;
text-align: center;
}

#s-e86dda31-cea0-4ca1-89f4-364ce5c4a2fd .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Quicksand";
  font-style:  normal ;
  
  
  
  text-align: center;
}



#s-0323c7f8-7088-42ab-9609-2c54faf9f950 {
  margin-left: 5%;
margin-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
}

@media (min-width: 0px) {
[id="s-0323c7f8-7088-42ab-9609-2c54faf9f950"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-0323c7f8-7088-42ab-9609-2c54faf9f950"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-0323c7f8-7088-42ab-9609-2c54faf9f950"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-0323c7f8-7088-42ab-9609-2c54faf9f950"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-cf3f52cf-13a0-463b-b628-de1b017446b2 {
  text-align: center;
}







  #s-cf3f52cf-13a0-463b-b628-de1b017446b2 img.shogun-image {
    

    
    
    
  }


#s-cf3f52cf-13a0-463b-b628-de1b017446b2 .shogun-image-content {
  
    align-items: center;
  
}

#s-9d152251-aabb-447a-977d-7e262dd74522 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-9d152251-aabb-447a-977d-7e262dd74522 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-aa1ab596-d629-443a-94b4-3564a03da2f4 {
  text-align: center;
}







  #s-aa1ab596-d629-443a-94b4-3564a03da2f4 img.shogun-image {
    

    
    
    
  }


#s-aa1ab596-d629-443a-94b4-3564a03da2f4 .shogun-image-content {
  
    align-items: center;
  
}

#s-5e7e1112-638d-4de0-8fb2-d06974706b36 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-5e7e1112-638d-4de0-8fb2-d06974706b36 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-22711e6d-6a64-4ac2-bb53-a0f6c70f06cf {
  text-align: center;
}







  #s-22711e6d-6a64-4ac2-bb53-a0f6c70f06cf img.shogun-image {
    

    
    
    
  }


#s-22711e6d-6a64-4ac2-bb53-a0f6c70f06cf .shogun-image-content {
  
    align-items: center;
  
}

#s-073e02f9-8460-49d0-9eea-a4f28a7307ae {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-073e02f9-8460-49d0-9eea-a4f28a7307ae .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-4db6169f-7f67-4d88-a0d5-391da84bb5b0 {
  text-align: center;
}







  #s-4db6169f-7f67-4d88-a0d5-391da84bb5b0 img.shogun-image {
    

    
    
    
  }


#s-4db6169f-7f67-4d88-a0d5-391da84bb5b0 .shogun-image-content {
  
    align-items: center;
  
}

#s-95880e25-6615-41b9-9d0f-d62382f6e3bc {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-95880e25-6615-41b9-9d0f-d62382f6e3bc .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-82a09426-176a-4017-96ae-3c5d32b88aab {
  margin-left: 5%;
margin-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
}

@media (min-width: 0px) {
[id="s-82a09426-176a-4017-96ae-3c5d32b88aab"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-82a09426-176a-4017-96ae-3c5d32b88aab"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-82a09426-176a-4017-96ae-3c5d32b88aab"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-82a09426-176a-4017-96ae-3c5d32b88aab"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-4b16b7c1-d059-4eae-94d1-4645f746425b {
  text-align: center;
}







  #s-4b16b7c1-d059-4eae-94d1-4645f746425b img.shogun-image {
    

    
    
    
  }


#s-4b16b7c1-d059-4eae-94d1-4645f746425b .shogun-image-content {
  
    align-items: center;
  
}

#s-6b7a6d5f-5c93-4f62-a3ea-f299f4cfb9ab {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-6b7a6d5f-5c93-4f62-a3ea-f299f4cfb9ab .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-9ceeadb3-f448-47f8-9aa8-2d3263329bf5 {
  text-align: center;
}







  #s-9ceeadb3-f448-47f8-9aa8-2d3263329bf5 img.shogun-image {
    

    
    
    
  }


#s-9ceeadb3-f448-47f8-9aa8-2d3263329bf5 .shogun-image-content {
  
    align-items: center;
  
}

#s-12763983-1f7e-4ba5-bd55-a024c2447300 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-12763983-1f7e-4ba5-bd55-a024c2447300 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-90f987f4-8942-4ac7-9c72-87a8f309ba14 {
  text-align: center;
}







  #s-90f987f4-8942-4ac7-9c72-87a8f309ba14 img.shogun-image {
    

    
    
    
  }


#s-90f987f4-8942-4ac7-9c72-87a8f309ba14 .shogun-image-content {
  
    align-items: center;
  
}

#s-69b90062-2ef7-4cbb-b55e-3846c347afb9 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-69b90062-2ef7-4cbb-b55e-3846c347afb9 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-15c0e33d-44fb-428d-8e50-a23fbe2b253a {
  text-align: center;
}







  #s-15c0e33d-44fb-428d-8e50-a23fbe2b253a img.shogun-image {
    

    
    
    
  }


#s-15c0e33d-44fb-428d-8e50-a23fbe2b253a .shogun-image-content {
  
    align-items: center;
  
}

#s-e46b898c-63f7-4188-b144-10362ef30721 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-e46b898c-63f7-4188-b144-10362ef30721 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-06fc914d-e6bb-4ff7-85a1-a22a64e05260 hr {
  border-top: 1px solid #ddd;
}

#s-c067849b-0fb3-408f-8c44-d07c50e2c812 {
  min-height: 50px;
}








#s-c067849b-0fb3-408f-8c44-d07c50e2c812 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c067849b-0fb3-408f-8c44-d07c50e2c812.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-d4bf8ae8-933c-4f9a-86e6-c3b99f9ec6e6 {
  margin-top: 10px;
margin-bottom: 20px;
text-align: center;
}

#s-d4bf8ae8-933c-4f9a-86e6-c3b99f9ec6e6 .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Quicksand";
  font-style:  normal ;
  
  
  
  text-align: center;
}



#s-e7505f62-887d-4678-a2e3-0b660b476632 {
  margin-left: 5%;
margin-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
}

@media (min-width: 0px) {
[id="s-e7505f62-887d-4678-a2e3-0b660b476632"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-e7505f62-887d-4678-a2e3-0b660b476632"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-e7505f62-887d-4678-a2e3-0b660b476632"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-e7505f62-887d-4678-a2e3-0b660b476632"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-02a202aa-a42e-4902-b20b-83ccc6527ffe {
  text-align: center;
}







  #s-02a202aa-a42e-4902-b20b-83ccc6527ffe img.shogun-image {
    

    
    
    
  }


#s-02a202aa-a42e-4902-b20b-83ccc6527ffe .shogun-image-content {
  
    align-items: center;
  
}

#s-86fb39cb-dc9d-465b-a804-ab705bde8213 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-86fb39cb-dc9d-465b-a804-ab705bde8213 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-77e0d125-0d19-48a1-a8aa-8a3cf674fb6c {
  text-align: center;
}







  #s-77e0d125-0d19-48a1-a8aa-8a3cf674fb6c img.shogun-image {
    

    
    
    
  }


#s-77e0d125-0d19-48a1-a8aa-8a3cf674fb6c .shogun-image-content {
  
    align-items: center;
  
}

#s-e01592dd-9bdb-42c1-b33a-c7d5ddc642b6 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-e01592dd-9bdb-42c1-b33a-c7d5ddc642b6 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-a5c741b4-f539-499f-9fcc-f547be5f119e {
  text-align: center;
}







  #s-a5c741b4-f539-499f-9fcc-f547be5f119e img.shogun-image {
    

    
    
    
  }


#s-a5c741b4-f539-499f-9fcc-f547be5f119e .shogun-image-content {
  
    align-items: center;
  
}

#s-e478b415-e5e8-4cae-8388-acfeefecba1e {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-e478b415-e5e8-4cae-8388-acfeefecba1e .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-c92aee43-7cfe-4e61-a8fa-2c8885022bf0 {
  text-align: center;
}







  #s-c92aee43-7cfe-4e61-a8fa-2c8885022bf0 img.shogun-image {
    

    
    
    
  }


#s-c92aee43-7cfe-4e61-a8fa-2c8885022bf0 .shogun-image-content {
  
    align-items: center;
  
}

#s-d0b8e84b-b800-495d-9e9e-dd0078daeeb6 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-d0b8e84b-b800-495d-9e9e-dd0078daeeb6 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-62eeafb1-f185-4e3e-84c5-5472c4ca5507 {
  margin-left: 5%;
margin-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
}

@media (min-width: 0px) {
[id="s-62eeafb1-f185-4e3e-84c5-5472c4ca5507"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-62eeafb1-f185-4e3e-84c5-5472c4ca5507"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-62eeafb1-f185-4e3e-84c5-5472c4ca5507"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-62eeafb1-f185-4e3e-84c5-5472c4ca5507"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-3e82a985-d26a-44b3-9ff0-60ba28c4867d {
  text-align: center;
}







  #s-3e82a985-d26a-44b3-9ff0-60ba28c4867d img.shogun-image {
    

    
    
    
  }


#s-3e82a985-d26a-44b3-9ff0-60ba28c4867d .shogun-image-content {
  
    align-items: center;
  
}

#s-e827a672-1738-49b7-903d-8fa534769d7b {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-e827a672-1738-49b7-903d-8fa534769d7b .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-14f931ce-f4c0-4b53-ab24-844137d210f0 {
  text-align: center;
}







  #s-14f931ce-f4c0-4b53-ab24-844137d210f0 img.shogun-image {
    

    
    
    
  }


#s-14f931ce-f4c0-4b53-ab24-844137d210f0 .shogun-image-content {
  
    align-items: center;
  
}

#s-a2dd23a5-0d94-48e4-8d23-7ff5be742b45 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-a2dd23a5-0d94-48e4-8d23-7ff5be742b45 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-6c787bfe-4401-45e7-863e-b6ec90398b00 {
  text-align: center;
}







  #s-6c787bfe-4401-45e7-863e-b6ec90398b00 img.shogun-image {
    

    
    
    
  }


#s-6c787bfe-4401-45e7-863e-b6ec90398b00 .shogun-image-content {
  
    align-items: center;
  
}

#s-8014133b-05ce-4325-8649-782adeb73358 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-8014133b-05ce-4325-8649-782adeb73358 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-6af935e0-a125-4f0d-a55c-4274de488b79 {
  text-align: center;
}







  #s-6af935e0-a125-4f0d-a55c-4274de488b79 img.shogun-image {
    

    
    
    
  }


#s-6af935e0-a125-4f0d-a55c-4274de488b79 .shogun-image-content {
  
    align-items: center;
  
}

#s-63cb1b7f-8ecc-4a12-8ab4-114b6392ee6b {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-63cb1b7f-8ecc-4a12-8ab4-114b6392ee6b .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-b0421d24-aa1e-44f1-96be-8f77c20480b2 {
  min-height: 50px;
}








#s-b0421d24-aa1e-44f1-96be-8f77c20480b2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b0421d24-aa1e-44f1-96be-8f77c20480b2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8de9fd28-353f-4532-af01-f7795db2b778 hr {
  border-top: 1px solid #ddd;
}

#s-a07f0223-f840-40bd-8655-b3ca495f743a {
  margin-top: 10px;
margin-bottom: 20px;
text-align: center;
}

#s-a07f0223-f840-40bd-8655-b3ca495f743a .shogun-heading-component h2 {
  color: #000;
  font-weight:  700 ;
  font-family: "Quicksand";
  font-style:  normal ;
  
  
  
  text-align: center;
}



#s-b50b99df-3dd4-4be9-bcb6-19d654423c08 {
  margin-left: 5%;
margin-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
}

@media (min-width: 0px) {
[id="s-b50b99df-3dd4-4be9-bcb6-19d654423c08"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-b50b99df-3dd4-4be9-bcb6-19d654423c08"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-b50b99df-3dd4-4be9-bcb6-19d654423c08"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-b50b99df-3dd4-4be9-bcb6-19d654423c08"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-4f46e42f-64a3-4dad-a097-1042a932165c {
  text-align: center;
}







  #s-4f46e42f-64a3-4dad-a097-1042a932165c img.shogun-image {
    

    
    
    
  }


#s-4f46e42f-64a3-4dad-a097-1042a932165c .shogun-image-content {
  
    align-items: center;
  
}

#s-fc980afd-2f5f-4260-81ed-ec5025f9d1a2 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-fc980afd-2f5f-4260-81ed-ec5025f9d1a2 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-a7e59639-8e6b-411c-a929-9ceb7884b4cc {
  text-align: center;
}







  #s-a7e59639-8e6b-411c-a929-9ceb7884b4cc img.shogun-image {
    

    
    
    
  }


#s-a7e59639-8e6b-411c-a929-9ceb7884b4cc .shogun-image-content {
  
    align-items: center;
  
}

#s-e8215f39-4a26-495b-8339-4f15a5a6e7c0 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-e8215f39-4a26-495b-8339-4f15a5a6e7c0 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-4c76abdf-5c48-4338-a9b2-0f2886ff4eb4 {
  text-align: center;
}







  #s-4c76abdf-5c48-4338-a9b2-0f2886ff4eb4 img.shogun-image {
    

    
    
    
  }


#s-4c76abdf-5c48-4338-a9b2-0f2886ff4eb4 .shogun-image-content {
  
    align-items: center;
  
}

#s-0f3e12ae-dca2-4db3-987a-8bd28a6fb594 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-0f3e12ae-dca2-4db3-987a-8bd28a6fb594 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-e8434ff7-51b8-4cd5-bc4d-7983a075433c {
  text-align: center;
}







  #s-e8434ff7-51b8-4cd5-bc4d-7983a075433c img.shogun-image {
    

    
    
    
  }


#s-e8434ff7-51b8-4cd5-bc4d-7983a075433c .shogun-image-content {
  
    align-items: center;
  
}

#s-89e008cf-c114-431e-8073-ceef153483b2 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-89e008cf-c114-431e-8073-ceef153483b2 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-71a7e816-7bf7-4f6e-a44d-18a1669a096e {
  margin-left: 5%;
margin-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
}

@media (min-width: 0px) {
[id="s-71a7e816-7bf7-4f6e-a44d-18a1669a096e"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-71a7e816-7bf7-4f6e-a44d-18a1669a096e"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-71a7e816-7bf7-4f6e-a44d-18a1669a096e"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-71a7e816-7bf7-4f6e-a44d-18a1669a096e"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-03a2d916-ebea-4859-885a-8b7510447a0b {
  text-align: center;
}







  #s-03a2d916-ebea-4859-885a-8b7510447a0b img.shogun-image {
    

    
    
    
  }


#s-03a2d916-ebea-4859-885a-8b7510447a0b .shogun-image-content {
  
    align-items: center;
  
}

#s-13cc3f45-7ef2-47db-a0a5-37598d07e7d6 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-13cc3f45-7ef2-47db-a0a5-37598d07e7d6 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-ecfeddf7-e17d-4f80-9b9c-44b288d4e111 {
  text-align: center;
}







  #s-ecfeddf7-e17d-4f80-9b9c-44b288d4e111 img.shogun-image {
    

    
    
    
  }


#s-ecfeddf7-e17d-4f80-9b9c-44b288d4e111 .shogun-image-content {
  
    align-items: center;
  
}

#s-8022c31d-7324-40c4-95ac-1b6505b652a8 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-8022c31d-7324-40c4-95ac-1b6505b652a8 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-e2a6bc83-9d18-4e7d-88d6-c327f057ccf2 {
  text-align: center;
}







  #s-e2a6bc83-9d18-4e7d-88d6-c327f057ccf2 img.shogun-image {
    

    
    
    
  }


#s-e2a6bc83-9d18-4e7d-88d6-c327f057ccf2 .shogun-image-content {
  
    align-items: center;
  
}

#s-783cf6cd-37de-438d-a707-033fc45785a3 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-783cf6cd-37de-438d-a707-033fc45785a3 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-34a30f54-1d5f-4123-b244-bba620953d29 {
  text-align: center;
}







  #s-34a30f54-1d5f-4123-b244-bba620953d29 img.shogun-image {
    

    
    
    
  }


#s-34a30f54-1d5f-4123-b244-bba620953d29 .shogun-image-content {
  
    align-items: center;
  
}

#s-dce0b7d1-978e-4854-91cf-9bbd34e60f57 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-dce0b7d1-978e-4854-91cf-9bbd34e60f57 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-24882c44-6c3c-4deb-9bdc-6682fccdf69c {
  margin-left: 5%;
margin-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
}

@media (min-width: 0px) {
[id="s-24882c44-6c3c-4deb-9bdc-6682fccdf69c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-24882c44-6c3c-4deb-9bdc-6682fccdf69c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-24882c44-6c3c-4deb-9bdc-6682fccdf69c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-24882c44-6c3c-4deb-9bdc-6682fccdf69c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-da20eebc-f4e9-400d-b637-36c30f21b892 {
  text-align: center;
}







  #s-da20eebc-f4e9-400d-b637-36c30f21b892 img.shogun-image {
    

    
    
    
  }


#s-da20eebc-f4e9-400d-b637-36c30f21b892 .shogun-image-content {
  
    align-items: center;
  
}

#s-bc61c865-aa50-447a-b380-7d1aac86be7f {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-bc61c865-aa50-447a-b380-7d1aac86be7f .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-995554c5-24b4-4edc-b020-e9fbda77d3e0 {
  text-align: center;
}







  #s-995554c5-24b4-4edc-b020-e9fbda77d3e0 img.shogun-image {
    

    
    
    
  }


#s-995554c5-24b4-4edc-b020-e9fbda77d3e0 .shogun-image-content {
  
    align-items: center;
  
}

#s-aabe0d93-a67c-44f0-8a59-c053b97777fa {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-aabe0d93-a67c-44f0-8a59-c053b97777fa .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-7b2847fb-d55b-4a1d-9e0f-8a0026bf16a3 {
  text-align: center;
}







  #s-7b2847fb-d55b-4a1d-9e0f-8a0026bf16a3 img.shogun-image {
    

    
    
    
  }


#s-7b2847fb-d55b-4a1d-9e0f-8a0026bf16a3 .shogun-image-content {
  
    align-items: center;
  
}

#s-e26f415a-99ce-48e1-9a81-15ffcfd4c988 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-e26f415a-99ce-48e1-9a81-15ffcfd4c988 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-cbb04134-f36b-4ed9-bc7d-1914d0e5cca4 {
  text-align: center;
}







  #s-cbb04134-f36b-4ed9-bc7d-1914d0e5cca4 img.shogun-image {
    

    
    
    
  }


#s-cbb04134-f36b-4ed9-bc7d-1914d0e5cca4 .shogun-image-content {
  
    align-items: center;
  
}

#s-23ef062b-6d45-4f7b-8964-5572affac60f {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-23ef062b-6d45-4f7b-8964-5572affac60f .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-2ed753b0-a44f-429b-84e3-3d5f3b875e60 {
  margin-left: 5%;
margin-right: 5%;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
}

@media (min-width: 0px) {
[id="s-2ed753b0-a44f-429b-84e3-3d5f3b875e60"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-2ed753b0-a44f-429b-84e3-3d5f3b875e60"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-2ed753b0-a44f-429b-84e3-3d5f3b875e60"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-2ed753b0-a44f-429b-84e3-3d5f3b875e60"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-ec646010-3254-46f3-8c31-a7d70521a610 {
  text-align: center;
}







  #s-ec646010-3254-46f3-8c31-a7d70521a610 img.shogun-image {
    

    
    
    
  }


#s-ec646010-3254-46f3-8c31-a7d70521a610 .shogun-image-content {
  
    align-items: center;
  
}

#s-88934a23-e17e-4e9d-9f77-30900ee2684c {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-88934a23-e17e-4e9d-9f77-30900ee2684c .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-a31f7220-eee6-491d-adcf-e44a5ef7bd6c {
  text-align: center;
}







  #s-a31f7220-eee6-491d-adcf-e44a5ef7bd6c img.shogun-image {
    

    
    
    
  }


#s-a31f7220-eee6-491d-adcf-e44a5ef7bd6c .shogun-image-content {
  
    align-items: center;
  
}

#s-6db91a3e-1266-480b-afe2-34cf7421d573 {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-6db91a3e-1266-480b-afe2-34cf7421d573 .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-6ffb0e60-723c-4ba9-a6d4-cca8ce7fe004 {
  text-align: center;
}







  #s-6ffb0e60-723c-4ba9-a6d4-cca8ce7fe004 img.shogun-image {
    

    
    
    
  }


#s-6ffb0e60-723c-4ba9-a6d4-cca8ce7fe004 .shogun-image-content {
  
    align-items: center;
  
}

#s-e24c53d9-b368-4e9b-acf2-01b108a5d86d {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-e24c53d9-b368-4e9b-acf2-01b108a5d86d .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-f6e28b6e-8f46-4977-93c9-e7003a60ffc1 {
  text-align: center;
}







  #s-f6e28b6e-8f46-4977-93c9-e7003a60ffc1 img.shogun-image {
    

    
    
    
  }


#s-f6e28b6e-8f46-4977-93c9-e7003a60ffc1 .shogun-image-content {
  
    align-items: center;
  
}

#s-b33a3742-31a9-486e-841f-601ecb1bef1d {
  margin-top: 5px;
margin-bottom: 10px;
text-align: center;
}

#s-b33a3742-31a9-486e-841f-601ecb1bef1d .shogun-heading-component h4 {
  color: #000;
  font-weight:  500 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 16px;
  
  
  text-align: center;
}



#s-fdcbe4d9-6390-4439-87ef-07cc9e3f6231 {
  min-height: 50px;
}








#s-fdcbe4d9-6390-4439-87ef-07cc9e3f6231 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fdcbe4d9-6390-4439-87ef-07cc9e3f6231.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9341bec3-614f-4fb2-922e-4addabd3de51 hr {
  border-top: 1px solid #ddd;
}

#s-27691c09-cc70-45a6-94ba-bf511dd80b77 {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-27691c09-cc70-45a6-94ba-bf511dd80b77 .shogun-heading-component h2 {
  color: #000;
  font-weight:  600 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-686043a1-5982-43d3-9fb1-6d395ba329fd {
  margin-top: 0px;
margin-left: 5%;
margin-right: 5%;
}

#s-9c731916-6212-4cb4-9fe7-661d267c1dc5 {
  margin-left: 5%;
margin-right: 5%;
}

#s-e22d179a-06f1-4b40-bdd0-cc12d29030f0 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(0, 0, 0, 0.34);
border-style: solid;
border-radius: 10px;
}

@media (min-width: 0px) {
[id="s-e22d179a-06f1-4b40-bdd0-cc12d29030f0"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e22d179a-06f1-4b40-bdd0-cc12d29030f0"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-e22d179a-06f1-4b40-bdd0-cc12d29030f0"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-e22d179a-06f1-4b40-bdd0-cc12d29030f0"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-523beac1-0c3b-41f2-ad26-aa66c6333947 {
  text-align: center;
}







  #s-523beac1-0c3b-41f2-ad26-aa66c6333947 img.shogun-image {
    

    
    
    
  }


#s-523beac1-0c3b-41f2-ad26-aa66c6333947 .shogun-image-content {
  
    align-items: center;
  
}

#s-cd322d14-691e-47db-9d66-4efa1d850084 {
  text-align: center;
}







  #s-cd322d14-691e-47db-9d66-4efa1d850084 img.shogun-image {
    

    
    
    
  }


#s-cd322d14-691e-47db-9d66-4efa1d850084 .shogun-image-content {
  
    align-items: center;
  
}

#s-0073fb60-9666-4ce7-bbf1-9fb31c398a1f {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-0073fb60-9666-4ce7-bbf1-9fb31c398a1f .shogun-heading-component h2 {
  color: #000;
  font-weight:  600 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-eba1045c-53c0-441a-a617-e124938df91f {
  margin-left: 5%;
margin-right: 5%;
}

#s-93a332ee-f79f-49b9-a603-4c84f95bfa8b {
  padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-93a332ee-f79f-49b9-a603-4c84f95bfa8b .shogun-heading-component h2 {
  color: #000;
  font-weight:  600 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



#s-c824601c-f93e-4103-9403-bdd62d765c68 {
  padding-left: 5%;
padding-right: 5%;
}

#s-ede8308d-4cca-4ae9-abd3-fd107cc77691 {
  margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}

#s-ede8308d-4cca-4ae9-abd3-fd107cc77691 .shogun-heading-component h2 {
  color: #000;
  font-weight:  600 ;
  font-family: "Quicksand";
  font-style:  normal ;
  font-size: 24px;
  
  
  
}



@media (min-width: 0px) {
[id="s-8dc4fc2c-dfaf-4b0c-87bc-5737d972bbce"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8dc4fc2c-dfaf-4b0c-87bc-5737d972bbce"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-8dc4fc2c-dfaf-4b0c-87bc-5737d972bbce"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-8dc4fc2c-dfaf-4b0c-87bc-5737d972bbce"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-7a8b7070-af47-430a-8d01-5c04e6770422 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 0);
border-style: solid;
border-radius: 10px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}







  #s-7a8b7070-af47-430a-8d01-5c04e6770422 img.shogun-image {
    

    
    
    
  }


#s-7a8b7070-af47-430a-8d01-5c04e6770422 .shogun-image-content {
  
    align-items: center;
  
}

#s-d8d0907e-9bd7-4618-89c3-bf32fa238fed {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 0);
border-style: solid;
border-radius: 10px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-d8d0907e-9bd7-4618-89c3-bf32fa238fed {
  margin-top: 10px;
margin-bottom: 10px;
}
}






  #s-d8d0907e-9bd7-4618-89c3-bf32fa238fed img.shogun-image {
    

    
    
    
  }


#s-d8d0907e-9bd7-4618-89c3-bf32fa238fed .shogun-image-content {
  
    align-items: center;
  
}

#s-27cda041-defe-421e-98d7-0d7cd091116a {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 10px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}







  #s-27cda041-defe-421e-98d7-0d7cd091116a img.shogun-image {
    

    
    
    
  }


#s-27cda041-defe-421e-98d7-0d7cd091116a .shogun-image-content {
  
    align-items: center;
  
}

#s-f32cf0ef-d45c-46a9-9fb8-2a9a865fc076 {
  margin-top: 20px;
margin-bottom: 20px;
}

@media (min-width: 0px) {
[id="s-f32cf0ef-d45c-46a9-9fb8-2a9a865fc076"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-f32cf0ef-d45c-46a9-9fb8-2a9a865fc076"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 992px) {
[id="s-f32cf0ef-d45c-46a9-9fb8-2a9a865fc076"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

@media (min-width: 1200px) {
[id="s-f32cf0ef-d45c-46a9-9fb8-2a9a865fc076"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 20.0px);
}

}

#s-f4bbb896-55c9-4380-af63-c487372bfbb6 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(249, 249, 249, 1);
border-style: solid;
border-radius: 10px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}







  #s-f4bbb896-55c9-4380-af63-c487372bfbb6 img.shogun-image {
    

    
    
    
  }


#s-f4bbb896-55c9-4380-af63-c487372bfbb6 .shogun-image-content {
  
    align-items: center;
  
}

#s-0deeca16-484e-46f9-b005-74413a8a02e6 {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(255, 255, 255, 1);
border-style: solid;
border-radius: 10px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px){#s-0deeca16-484e-46f9-b005-74413a8a02e6 {
  margin-top: 10px;
margin-bottom: 10px;
}
}






  #s-0deeca16-484e-46f9-b005-74413a8a02e6 img.shogun-image {
    

    
    
    
  }


#s-0deeca16-484e-46f9-b005-74413a8a02e6 .shogun-image-content {
  
    align-items: center;
  
}

#s-79ec94e7-fa65-420b-9ea1-10774c4b7bec {
  border-top-width: 1px;
border-left-width: 1px;
border-bottom-width: 1px;
border-right-width: 1px;
border-color: rgba(249, 249, 249, 1);
border-style: solid;
border-radius: 10px;
text-align: center;
background-color: rgba(255, 255, 255, 1);
}







  #s-79ec94e7-fa65-420b-9ea1-10774c4b7bec img.shogun-image {
    

    
    
    
  }


#s-79ec94e7-fa65-420b-9ea1-10774c4b7bec .shogun-image-content {
  
    align-items: center;
  
}

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