.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-2dca7cf8-c59b-4eb5-b7bb-9f2ae7616658 {
  min-height: 50px;
}








#s-2dca7cf8-c59b-4eb5-b7bb-9f2ae7616658 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2dca7cf8-c59b-4eb5-b7bb-9f2ae7616658.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-image.hover ~ * {
  z-index: 1;
}

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

#s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315 {
  text-align: center;
}
@media (max-width: 767px){#s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315 {
  display: none;
}
#s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315, #wrap-s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315 { display:none !important; }}






  img.s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315.shogun-image {
    
    
  }


.s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315 .shogun-image-content {
  
    align-items: center;
  
}

.s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315.shogun-image {
    
    
  }


.s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315 .shogun-image-content {
  
    align-items: center;
  
}

.s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315.shogun-image {
  box-sizing: border-box;
}

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





  img.s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315.shogun-image {
    
    
  }


.s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315 .shogun-image-content {
  
    align-items: center;
  
}

.s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315.shogun-image {
  box-sizing: border-box;
}

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





  img.s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315.shogun-image {
    
    
  }


.s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315 .shogun-image-content {
  
    align-items: center;
  
}

.s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315.shogun-image {
  box-sizing: border-box;
}

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





  img.s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315.shogun-image {
    
    
  }


.s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315 .shogun-image-content {
  
    align-items: center;
  
}

.s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315.shg-align-container {
  display: flex;
  justify-content: center
}

.s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-9dbc3b0e-e1b0-4df8-979a-d60d2c324315.shogun-image {
  box-sizing: border-box;
}

}
#s-4bfd95d0-5203-4032-8eb3-19ed3054edc9 {
  min-height: 50px;
max-width: 1092%;
}








#s-4bfd95d0-5203-4032-8eb3-19ed3054edc9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4bfd95d0-5203-4032-8eb3-19ed3054edc9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

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

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

#s-63ebb933-7dd6-42e7-bfc4-7e0dd4bf5e05 {
  margin-top: 0px;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-bottom: 10px;
text-align: right;
}

#s-63ebb933-7dd6-42e7-bfc4-7e0dd4bf5e05 .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  700 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 60px;
  line-height: 1.1em;
  
  
}



#s-e7b21fe5-0504-40cc-a8d2-f7a04a592014 {
  margin-right: 0%;
min-height: 100px;
max-width: 100%;
}








#s-e7b21fe5-0504-40cc-a8d2-f7a04a592014 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e7b21fe5-0504-40cc-a8d2-f7a04a592014.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-41979636-adbb-4eaf-ad87-c131389ec664 {
  margin-right: 0%;
min-height: 100px;
max-width: 1092%;
}








#s-41979636-adbb-4eaf-ad87-c131389ec664 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-41979636-adbb-4eaf-ad87-c131389ec664.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-4a34af0f-d255-4039-9220-8712f02356e9 {
  min-height: 50px;
}








#s-4a34af0f-d255-4039-9220-8712f02356e9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4a34af0f-d255-4039-9220-8712f02356e9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-47bc70cc-d882-4243-951f-208fc848e74c {
  margin-right: 2%;
max-width: 300px;
aspect-ratio: 642/297;
text-align: right;
}





  #s-47bc70cc-d882-4243-951f-208fc848e74c img.shogun-image,
  #s-47bc70cc-d882-4243-951f-208fc848e74c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-47bc70cc-d882-4243-951f-208fc848e74c {
    width: 100%;
    height: auto;
  }

  #s-47bc70cc-d882-4243-951f-208fc848e74c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-47bc70cc-d882-4243-951f-208fc848e74c.shogun-image {
    
    
  }


.s-47bc70cc-d882-4243-951f-208fc848e74c .shogun-image-content {
  
    align-items: center;
  
}

.s-47bc70cc-d882-4243-951f-208fc848e74c.shg-align-container {
  display: flex;
  justify-content: flex-end
}

.s-47bc70cc-d882-4243-951f-208fc848e74c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-47bc70cc-d882-4243-951f-208fc848e74c.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){



  #s-47bc70cc-d882-4243-951f-208fc848e74c img.shogun-image,
  #s-47bc70cc-d882-4243-951f-208fc848e74c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-47bc70cc-d882-4243-951f-208fc848e74c {
    width: 100%;
    height: auto;
  }

  #s-47bc70cc-d882-4243-951f-208fc848e74c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-47bc70cc-d882-4243-951f-208fc848e74c.shogun-image {
    
    
  }


.s-47bc70cc-d882-4243-951f-208fc848e74c .shogun-image-content {
  
    align-items: center;
  
}

.s-47bc70cc-d882-4243-951f-208fc848e74c.shg-align-container {
  display: flex;
  justify-content: flex-end
}

.s-47bc70cc-d882-4243-951f-208fc848e74c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-47bc70cc-d882-4243-951f-208fc848e74c.shogun-image {
  box-sizing: border-box;
}

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



  #s-47bc70cc-d882-4243-951f-208fc848e74c img.shogun-image,
  #s-47bc70cc-d882-4243-951f-208fc848e74c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-47bc70cc-d882-4243-951f-208fc848e74c {
    width: 100%;
    height: auto;
  }

  #s-47bc70cc-d882-4243-951f-208fc848e74c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-47bc70cc-d882-4243-951f-208fc848e74c.shogun-image {
    
    
  }


.s-47bc70cc-d882-4243-951f-208fc848e74c .shogun-image-content {
  
    align-items: center;
  
}

.s-47bc70cc-d882-4243-951f-208fc848e74c.shg-align-container {
  display: flex;
  justify-content: flex-end
}

.s-47bc70cc-d882-4243-951f-208fc848e74c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-47bc70cc-d882-4243-951f-208fc848e74c.shogun-image {
  box-sizing: border-box;
}

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



  #s-47bc70cc-d882-4243-951f-208fc848e74c img.shogun-image,
  #s-47bc70cc-d882-4243-951f-208fc848e74c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-47bc70cc-d882-4243-951f-208fc848e74c {
    width: 100%;
    height: auto;
  }

  #s-47bc70cc-d882-4243-951f-208fc848e74c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-47bc70cc-d882-4243-951f-208fc848e74c.shogun-image {
    
    
  }


.s-47bc70cc-d882-4243-951f-208fc848e74c .shogun-image-content {
  
    align-items: center;
  
}

.s-47bc70cc-d882-4243-951f-208fc848e74c.shg-align-container {
  display: flex;
  justify-content: flex-end
}

.s-47bc70cc-d882-4243-951f-208fc848e74c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-47bc70cc-d882-4243-951f-208fc848e74c.shogun-image {
  box-sizing: border-box;
}

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



  #s-47bc70cc-d882-4243-951f-208fc848e74c img.shogun-image,
  #s-47bc70cc-d882-4243-951f-208fc848e74c .shg-image-content-wrapper {
    height: 100%;
    width: 100%;
  }

  #s-47bc70cc-d882-4243-951f-208fc848e74c {
    width: 100%;
    height: auto;
  }

  #s-47bc70cc-d882-4243-951f-208fc848e74c img.shogun-image {
    position: absolute;
    left: 0;
    top: 0;
  }



  img.s-47bc70cc-d882-4243-951f-208fc848e74c.shogun-image {
    
    
  }


.s-47bc70cc-d882-4243-951f-208fc848e74c .shogun-image-content {
  
    align-items: center;
  
}

.s-47bc70cc-d882-4243-951f-208fc848e74c.shg-align-container {
  display: flex;
  justify-content: flex-end
}

.s-47bc70cc-d882-4243-951f-208fc848e74c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-47bc70cc-d882-4243-951f-208fc848e74c.shogun-image {
  box-sizing: border-box;
}

}
.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-e3fa7796-f725-478f-8317-ef19812cbb9f {
  padding-left: 10%;
padding-right: 10%;
}

@media (min-width: 0px) {
[id="s-e3fa7796-f725-478f-8317-ef19812cbb9f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-e3fa7796-f725-478f-8317-ef19812cbb9f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 992px) {
[id="s-e3fa7796-f725-478f-8317-ef19812cbb9f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 22.5px);
}

}

@media (min-width: 1200px) {
[id="s-e3fa7796-f725-478f-8317-ef19812cbb9f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 22.5px);
}

}

#s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6 {
  margin-left: 76%;
max-width: 393px;
text-align: center;
}
@media (min-width: 1200px){#s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6 {
  display: none;
}
#s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6, #wrap-s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6 {
  display: none;
}
#s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6, #wrap-s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6 {
  display: none;
}
#s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6, #wrap-s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6 { display:none !important; }}






  img.s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6.shogun-image {
    
    
  }


.s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6 .shogun-image-content {
  
    align-items: center;
  
}

.s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6.shogun-image {
    
    
  }


.s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6 .shogun-image-content {
  
    align-items: center;
  
}

.s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6.shogun-image {
  box-sizing: border-box;
}

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





  img.s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6.shogun-image {
    
    
  }


.s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6 .shogun-image-content {
  
    align-items: center;
  
}

.s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6.shogun-image {
  box-sizing: border-box;
}

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





  img.s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6.shogun-image {
    
    
  }


.s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6 .shogun-image-content {
  
    align-items: center;
  
}

.s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6.shogun-image {
  box-sizing: border-box;
}

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





  img.s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6.shogun-image {
    
    
  }


.s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6 .shogun-image-content {
  
    align-items: center;
  
}

.s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6de9929c-7e89-4bc2-9b14-3b186bcc58f6.shogun-image {
  box-sizing: border-box;
}

}
#s-57d57506-776c-4d84-aff5-942b0c236cd8 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #2C2A34;
border-radius: 0px;
text-align: center;
}
@media (min-width: 1200px){#s-57d57506-776c-4d84-aff5-942b0c236cd8 {
  display: none;
}
#s-57d57506-776c-4d84-aff5-942b0c236cd8, #wrap-s-57d57506-776c-4d84-aff5-942b0c236cd8 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-57d57506-776c-4d84-aff5-942b0c236cd8 {
  display: none;
}
#s-57d57506-776c-4d84-aff5-942b0c236cd8, #wrap-s-57d57506-776c-4d84-aff5-942b0c236cd8 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-57d57506-776c-4d84-aff5-942b0c236cd8 {
  display: none;
}
#s-57d57506-776c-4d84-aff5-942b0c236cd8, #wrap-s-57d57506-776c-4d84-aff5-942b0c236cd8 { display:none !important; }}






  img.s-57d57506-776c-4d84-aff5-942b0c236cd8.shogun-image {
    
    
  }


.s-57d57506-776c-4d84-aff5-942b0c236cd8 .shogun-image-content {
  
    align-items: center;
  
}

.s-57d57506-776c-4d84-aff5-942b0c236cd8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-57d57506-776c-4d84-aff5-942b0c236cd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57d57506-776c-4d84-aff5-942b0c236cd8.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-57d57506-776c-4d84-aff5-942b0c236cd8.shogun-image {
    
    
  }


.s-57d57506-776c-4d84-aff5-942b0c236cd8 .shogun-image-content {
  
    align-items: center;
  
}

.s-57d57506-776c-4d84-aff5-942b0c236cd8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-57d57506-776c-4d84-aff5-942b0c236cd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57d57506-776c-4d84-aff5-942b0c236cd8.shogun-image {
  box-sizing: border-box;
}

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





  img.s-57d57506-776c-4d84-aff5-942b0c236cd8.shogun-image {
    
    
  }


.s-57d57506-776c-4d84-aff5-942b0c236cd8 .shogun-image-content {
  
    align-items: center;
  
}

.s-57d57506-776c-4d84-aff5-942b0c236cd8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-57d57506-776c-4d84-aff5-942b0c236cd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57d57506-776c-4d84-aff5-942b0c236cd8.shogun-image {
  box-sizing: border-box;
}

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





  img.s-57d57506-776c-4d84-aff5-942b0c236cd8.shogun-image {
    
    
  }


.s-57d57506-776c-4d84-aff5-942b0c236cd8 .shogun-image-content {
  
    align-items: center;
  
}

.s-57d57506-776c-4d84-aff5-942b0c236cd8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-57d57506-776c-4d84-aff5-942b0c236cd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57d57506-776c-4d84-aff5-942b0c236cd8.shogun-image {
  box-sizing: border-box;
}

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





  img.s-57d57506-776c-4d84-aff5-942b0c236cd8.shogun-image {
    
    
  }


.s-57d57506-776c-4d84-aff5-942b0c236cd8 .shogun-image-content {
  
    align-items: center;
  
}

.s-57d57506-776c-4d84-aff5-942b0c236cd8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-57d57506-776c-4d84-aff5-942b0c236cd8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-57d57506-776c-4d84-aff5-942b0c236cd8.shogun-image {
  box-sizing: border-box;
}

}
#s-b8c65013-818c-469a-8da3-0fb1a3d3f2af {
  margin-top: 0px;
margin-bottom: 0px;
margin-right: 2%;
padding-top: 10px;
padding-bottom: 50px;
padding-right: 2%;
text-align: right;
}

#s-b8c65013-818c-469a-8da3-0fb1a3d3f2af .shogun-heading-component h1 {
  color: rgba(255, 255, 255, 1);
  font-weight:  800 ;
  font-family: "Poppins";
  font-style:  normal ;
  font-size: 38px;
  line-height: 1.2em;
  
  
}



#s-4a17212b-b663-42af-b3f0-56573a5b738c {
  margin-left: 0%;
margin-bottom: 0px;
margin-right: 1%;
max-width: 200px;
text-align: right;
}







  img.s-4a17212b-b663-42af-b3f0-56573a5b738c.shogun-image {
    
    
  }


.s-4a17212b-b663-42af-b3f0-56573a5b738c .shogun-image-content {
  
    align-items: center;
  
}

.s-4a17212b-b663-42af-b3f0-56573a5b738c.shg-align-container {
  display: flex;
  justify-content: flex-end
}

.s-4a17212b-b663-42af-b3f0-56573a5b738c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a17212b-b663-42af-b3f0-56573a5b738c.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-4a17212b-b663-42af-b3f0-56573a5b738c.shogun-image {
    
    
  }


.s-4a17212b-b663-42af-b3f0-56573a5b738c .shogun-image-content {
  
    align-items: center;
  
}

.s-4a17212b-b663-42af-b3f0-56573a5b738c.shg-align-container {
  display: flex;
  justify-content: flex-end
}

.s-4a17212b-b663-42af-b3f0-56573a5b738c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a17212b-b663-42af-b3f0-56573a5b738c.shogun-image {
  box-sizing: border-box;
}

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





  img.s-4a17212b-b663-42af-b3f0-56573a5b738c.shogun-image {
    
    
  }


.s-4a17212b-b663-42af-b3f0-56573a5b738c .shogun-image-content {
  
    align-items: center;
  
}

.s-4a17212b-b663-42af-b3f0-56573a5b738c.shg-align-container {
  display: flex;
  justify-content: flex-end
}

.s-4a17212b-b663-42af-b3f0-56573a5b738c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a17212b-b663-42af-b3f0-56573a5b738c.shogun-image {
  box-sizing: border-box;
}

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





  img.s-4a17212b-b663-42af-b3f0-56573a5b738c.shogun-image {
    
    
  }


.s-4a17212b-b663-42af-b3f0-56573a5b738c .shogun-image-content {
  
    align-items: center;
  
}

.s-4a17212b-b663-42af-b3f0-56573a5b738c.shg-align-container {
  display: flex;
  justify-content: flex-end
}

.s-4a17212b-b663-42af-b3f0-56573a5b738c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a17212b-b663-42af-b3f0-56573a5b738c.shogun-image {
  box-sizing: border-box;
}

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





  img.s-4a17212b-b663-42af-b3f0-56573a5b738c.shogun-image {
    
    
  }


.s-4a17212b-b663-42af-b3f0-56573a5b738c .shogun-image-content {
  
    align-items: center;
  
}

.s-4a17212b-b663-42af-b3f0-56573a5b738c.shg-align-container {
  display: flex;
  justify-content: flex-end
}

.s-4a17212b-b663-42af-b3f0-56573a5b738c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4a17212b-b663-42af-b3f0-56573a5b738c.shogun-image {
  box-sizing: border-box;
}

}
.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-6c307f37-bed0-44c7-aaea-e77fcc8b7db7 {
  margin-left: 3%;
margin-bottom: 15px;
margin-right: 3%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(16, 207, 201, 1);
text-align: right;
text-decoration: none;
background-image: none;
hover-type: color;
}
#s-6c307f37-bed0-44c7-aaea-e77fcc8b7db7:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-6c307f37-bed0-44c7-aaea-e77fcc8b7db7:active {background-color: #000000 !important;
text-decoration: none !important;}

  #s-6c307f37-bed0-44c7-aaea-e77fcc8b7db7-root {
    text-align: right;
  }


#s-6c307f37-bed0-44c7-aaea-e77fcc8b7db7.shg-btn {
  color: #ffffff;
  
  font-weight: 500;
  
  font-family: Roboto;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-6c307f37-bed0-44c7-aaea-e77fcc8b7db7-root {
    text-align: right;
  }


#s-6c307f37-bed0-44c7-aaea-e77fcc8b7db7.shg-btn {
  color: #ffffff;
  
  font-weight: 500;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-6c307f37-bed0-44c7-aaea-e77fcc8b7db7-root {
    text-align: right;
  }


#s-6c307f37-bed0-44c7-aaea-e77fcc8b7db7.shg-btn {
  color: #ffffff;
  
  font-weight: 500;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-6c307f37-bed0-44c7-aaea-e77fcc8b7db7-root {
    text-align: right;
  }


#s-6c307f37-bed0-44c7-aaea-e77fcc8b7db7.shg-btn {
  color: #ffffff;
  
  font-weight: 500;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-6c307f37-bed0-44c7-aaea-e77fcc8b7db7-root {
    text-align: right;
  }


#s-6c307f37-bed0-44c7-aaea-e77fcc8b7db7.shg-btn {
  color: #ffffff;
  
  font-weight: 500;
  
  font-family: Roboto;
  display:  inline-block ;
}
}
#s-3f434c81-ec46-4624-821b-fac2abd70241 {
  background-size: cover;
margin-top: 16px;
margin-bottom: 16px;
min-height: 400px;
background-position: center center;
background-attachment: scroll;
}
@media (min-width: 1200px){#s-3f434c81-ec46-4624-821b-fac2abd70241 {
  display: none;
}
#s-3f434c81-ec46-4624-821b-fac2abd70241, #wrap-s-3f434c81-ec46-4624-821b-fac2abd70241 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-3f434c81-ec46-4624-821b-fac2abd70241 {
  display: none;
}
#s-3f434c81-ec46-4624-821b-fac2abd70241, #wrap-s-3f434c81-ec46-4624-821b-fac2abd70241 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-3f434c81-ec46-4624-821b-fac2abd70241 {
  display: none;
}
#s-3f434c81-ec46-4624-821b-fac2abd70241, #wrap-s-3f434c81-ec46-4624-821b-fac2abd70241 { display:none !important; }}







#s-3f434c81-ec46-4624-821b-fac2abd70241 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3f434c81-ec46-4624-821b-fac2abd70241.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-0dd14a18-6b46-4118-b87f-fbcae034dc04 {
  margin-top: 43px;
margin-left: 10%;
margin-bottom: 19px;
margin-right: 43%;
text-align: left;
}







  img.s-0dd14a18-6b46-4118-b87f-fbcae034dc04.shogun-image {
    
    
  }


.s-0dd14a18-6b46-4118-b87f-fbcae034dc04 .shogun-image-content {
  
    align-items: center;
  
}

.s-0dd14a18-6b46-4118-b87f-fbcae034dc04.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-0dd14a18-6b46-4118-b87f-fbcae034dc04.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0dd14a18-6b46-4118-b87f-fbcae034dc04.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-0dd14a18-6b46-4118-b87f-fbcae034dc04.shogun-image {
    
    
  }


.s-0dd14a18-6b46-4118-b87f-fbcae034dc04 .shogun-image-content {
  
    align-items: center;
  
}

.s-0dd14a18-6b46-4118-b87f-fbcae034dc04.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-0dd14a18-6b46-4118-b87f-fbcae034dc04.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0dd14a18-6b46-4118-b87f-fbcae034dc04.shogun-image {
  box-sizing: border-box;
}

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





  img.s-0dd14a18-6b46-4118-b87f-fbcae034dc04.shogun-image {
    
    
  }


.s-0dd14a18-6b46-4118-b87f-fbcae034dc04 .shogun-image-content {
  
    align-items: center;
  
}

.s-0dd14a18-6b46-4118-b87f-fbcae034dc04.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-0dd14a18-6b46-4118-b87f-fbcae034dc04.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0dd14a18-6b46-4118-b87f-fbcae034dc04.shogun-image {
  box-sizing: border-box;
}

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





  img.s-0dd14a18-6b46-4118-b87f-fbcae034dc04.shogun-image {
    
    
  }


.s-0dd14a18-6b46-4118-b87f-fbcae034dc04 .shogun-image-content {
  
    align-items: center;
  
}

.s-0dd14a18-6b46-4118-b87f-fbcae034dc04.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-0dd14a18-6b46-4118-b87f-fbcae034dc04.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0dd14a18-6b46-4118-b87f-fbcae034dc04.shogun-image {
  box-sizing: border-box;
}

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





  img.s-0dd14a18-6b46-4118-b87f-fbcae034dc04.shogun-image {
    
    
  }


.s-0dd14a18-6b46-4118-b87f-fbcae034dc04 .shogun-image-content {
  
    align-items: center;
  
}

.s-0dd14a18-6b46-4118-b87f-fbcae034dc04.shg-align-container {
  display: flex;
  justify-content: flex-start
}

.s-0dd14a18-6b46-4118-b87f-fbcae034dc04.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-0dd14a18-6b46-4118-b87f-fbcae034dc04.shogun-image {
  box-sizing: border-box;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#s-1a2dfe8a-b0c5-459e-b310-b8fada1d4ed5 {
  margin-left: 11%;
margin-bottom: 0px;
margin-right: 18%;
}

#s-ff7aa82d-b339-4f70-a125-627512aa8447 {
  margin-top: 19px;
margin-left: 0%;
margin-bottom: 37px;
margin-right: 34%;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(16, 207, 201, 1);
text-align: center;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
}
#s-ff7aa82d-b339-4f70-a125-627512aa8447:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-ff7aa82d-b339-4f70-a125-627512aa8447:active {background-color: rgba(255, 255, 255, 1) !important;
text-decoration: none !important;
background-image: none !important;
hover-type: color !important;}

  #s-ff7aa82d-b339-4f70-a125-627512aa8447-root {
    text-align: center;
  }


#s-ff7aa82d-b339-4f70-a125-627512aa8447.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-ff7aa82d-b339-4f70-a125-627512aa8447-root {
    text-align: center;
  }


#s-ff7aa82d-b339-4f70-a125-627512aa8447.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-ff7aa82d-b339-4f70-a125-627512aa8447-root {
    text-align: center;
  }


#s-ff7aa82d-b339-4f70-a125-627512aa8447.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-ff7aa82d-b339-4f70-a125-627512aa8447-root {
    text-align: center;
  }


#s-ff7aa82d-b339-4f70-a125-627512aa8447.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-ff7aa82d-b339-4f70-a125-627512aa8447-root {
    text-align: center;
  }


#s-ff7aa82d-b339-4f70-a125-627512aa8447.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  inline-block ;
}
}
#s-4687121c-5374-4c06-9555-88bdd48ac7fc {
  text-align: center;
}
@media (max-width: 767px){#s-4687121c-5374-4c06-9555-88bdd48ac7fc {
  display: none;
}
#s-4687121c-5374-4c06-9555-88bdd48ac7fc, #wrap-s-4687121c-5374-4c06-9555-88bdd48ac7fc { display:none !important; }}






  img.s-4687121c-5374-4c06-9555-88bdd48ac7fc.shogun-image {
    
    
  }


.s-4687121c-5374-4c06-9555-88bdd48ac7fc .shogun-image-content {
  
    align-items: center;
  
}

.s-4687121c-5374-4c06-9555-88bdd48ac7fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4687121c-5374-4c06-9555-88bdd48ac7fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4687121c-5374-4c06-9555-88bdd48ac7fc.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-4687121c-5374-4c06-9555-88bdd48ac7fc.shogun-image {
    
    
  }


.s-4687121c-5374-4c06-9555-88bdd48ac7fc .shogun-image-content {
  
    align-items: center;
  
}

.s-4687121c-5374-4c06-9555-88bdd48ac7fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4687121c-5374-4c06-9555-88bdd48ac7fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4687121c-5374-4c06-9555-88bdd48ac7fc.shogun-image {
  box-sizing: border-box;
}

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





  img.s-4687121c-5374-4c06-9555-88bdd48ac7fc.shogun-image {
    
    
  }


.s-4687121c-5374-4c06-9555-88bdd48ac7fc .shogun-image-content {
  
    align-items: center;
  
}

.s-4687121c-5374-4c06-9555-88bdd48ac7fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4687121c-5374-4c06-9555-88bdd48ac7fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4687121c-5374-4c06-9555-88bdd48ac7fc.shogun-image {
  box-sizing: border-box;
}

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





  img.s-4687121c-5374-4c06-9555-88bdd48ac7fc.shogun-image {
    
    
  }


.s-4687121c-5374-4c06-9555-88bdd48ac7fc .shogun-image-content {
  
    align-items: center;
  
}

.s-4687121c-5374-4c06-9555-88bdd48ac7fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4687121c-5374-4c06-9555-88bdd48ac7fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4687121c-5374-4c06-9555-88bdd48ac7fc.shogun-image {
  box-sizing: border-box;
}

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





  img.s-4687121c-5374-4c06-9555-88bdd48ac7fc.shogun-image {
    
    
  }


.s-4687121c-5374-4c06-9555-88bdd48ac7fc .shogun-image-content {
  
    align-items: center;
  
}

.s-4687121c-5374-4c06-9555-88bdd48ac7fc.shg-align-container {
  display: flex;
  justify-content: center
}

.s-4687121c-5374-4c06-9555-88bdd48ac7fc.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-4687121c-5374-4c06-9555-88bdd48ac7fc.shogun-image {
  box-sizing: border-box;
}

}
@media (min-width: 0px) {
[id="s-7da42cbd-973e-48a6-b0cd-ed79514c05a7"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-7da42cbd-973e-48a6-b0cd-ed79514c05a7"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7da42cbd-973e-48a6-b0cd-ed79514c05a7"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-7da42cbd-973e-48a6-b0cd-ed79514c05a7"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7da42cbd-973e-48a6-b0cd-ed79514c05a7"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-7da42cbd-973e-48a6-b0cd-ed79514c05a7"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-7da42cbd-973e-48a6-b0cd-ed79514c05a7"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

}

#s-a00ccb0e-1c04-4bf7-905f-8a090c2ab5d4 {
  min-height: 50px;
}








#s-a00ccb0e-1c04-4bf7-905f-8a090c2ab5d4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a00ccb0e-1c04-4bf7-905f-8a090c2ab5d4.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-1186e734-9860-4807-8e39-a0730e5ad1ef {
  margin-left: 20%;
margin-right: 20%;
min-height: 50px;
}








#s-1186e734-9860-4807-8e39-a0730e5ad1ef > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1186e734-9860-4807-8e39-a0730e5ad1ef.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-2c5ae5e1-c95d-4a9b-9de2-2556a6d9fbc5 {
  text-align: center;
}







  img.s-2c5ae5e1-c95d-4a9b-9de2-2556a6d9fbc5.shogun-image {
    
    
  }


.s-2c5ae5e1-c95d-4a9b-9de2-2556a6d9fbc5 .shogun-image-content {
  
    align-items: center;
  
}

.s-2c5ae5e1-c95d-4a9b-9de2-2556a6d9fbc5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2c5ae5e1-c95d-4a9b-9de2-2556a6d9fbc5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2c5ae5e1-c95d-4a9b-9de2-2556a6d9fbc5.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-2c5ae5e1-c95d-4a9b-9de2-2556a6d9fbc5.shogun-image {
    
    
  }


.s-2c5ae5e1-c95d-4a9b-9de2-2556a6d9fbc5 .shogun-image-content {
  
    align-items: center;
  
}

.s-2c5ae5e1-c95d-4a9b-9de2-2556a6d9fbc5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2c5ae5e1-c95d-4a9b-9de2-2556a6d9fbc5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2c5ae5e1-c95d-4a9b-9de2-2556a6d9fbc5.shogun-image {
  box-sizing: border-box;
}

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





  img.s-2c5ae5e1-c95d-4a9b-9de2-2556a6d9fbc5.shogun-image {
    
    
  }


.s-2c5ae5e1-c95d-4a9b-9de2-2556a6d9fbc5 .shogun-image-content {
  
    align-items: center;
  
}

.s-2c5ae5e1-c95d-4a9b-9de2-2556a6d9fbc5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2c5ae5e1-c95d-4a9b-9de2-2556a6d9fbc5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2c5ae5e1-c95d-4a9b-9de2-2556a6d9fbc5.shogun-image {
  box-sizing: border-box;
}

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





  img.s-2c5ae5e1-c95d-4a9b-9de2-2556a6d9fbc5.shogun-image {
    
    
  }


.s-2c5ae5e1-c95d-4a9b-9de2-2556a6d9fbc5 .shogun-image-content {
  
    align-items: center;
  
}

.s-2c5ae5e1-c95d-4a9b-9de2-2556a6d9fbc5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2c5ae5e1-c95d-4a9b-9de2-2556a6d9fbc5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2c5ae5e1-c95d-4a9b-9de2-2556a6d9fbc5.shogun-image {
  box-sizing: border-box;
}

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





  img.s-2c5ae5e1-c95d-4a9b-9de2-2556a6d9fbc5.shogun-image {
    
    
  }


.s-2c5ae5e1-c95d-4a9b-9de2-2556a6d9fbc5 .shogun-image-content {
  
    align-items: center;
  
}

.s-2c5ae5e1-c95d-4a9b-9de2-2556a6d9fbc5.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2c5ae5e1-c95d-4a9b-9de2-2556a6d9fbc5.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2c5ae5e1-c95d-4a9b-9de2-2556a6d9fbc5.shogun-image {
  box-sizing: border-box;
}

}
#s-c74ee545-744b-4b8e-9622-c876b59af53c {
  margin-top: 21px;
margin-bottom: 21px;
padding-top: 0px;
padding-bottom: 0px;
}

#s-48cfbdd5-f7ff-4f14-9a7e-cb0bd5f106af {
  margin-top: 2px;
margin-left: 0%;
margin-bottom: 2px;
padding-top: 10px;
padding-left: 20px;
padding-bottom: 10px;
padding-right: 20px;
border-radius: 2px;
background-color: rgba(16, 207, 201, 1);
text-align: left;
text-decoration: none;
background-image: none;
hover-type: color;
color: rgba(255, 255, 255, 1);
background-position: left top;
}
#s-48cfbdd5-f7ff-4f14-9a7e-cb0bd5f106af:hover {background-color: #424242 !important;
text-decoration: none !important;}#s-48cfbdd5-f7ff-4f14-9a7e-cb0bd5f106af:active {background-color: #000000 !important;
text-decoration: none !important;}@media (max-width: 767px){#s-48cfbdd5-f7ff-4f14-9a7e-cb0bd5f106af {
  display: none;
}
#s-48cfbdd5-f7ff-4f14-9a7e-cb0bd5f106af, #wrap-s-48cfbdd5-f7ff-4f14-9a7e-cb0bd5f106af { display:none !important; }}

  #s-48cfbdd5-f7ff-4f14-9a7e-cb0bd5f106af-root {
    text-align: left;
  }


#s-48cfbdd5-f7ff-4f14-9a7e-cb0bd5f106af.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  inline-block ;
}
@media (min-width: 1200px){
  #s-48cfbdd5-f7ff-4f14-9a7e-cb0bd5f106af-root {
    text-align: left;
  }


#s-48cfbdd5-f7ff-4f14-9a7e-cb0bd5f106af.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (min-width: 992px) and (max-width: 1199px){
  #s-48cfbdd5-f7ff-4f14-9a7e-cb0bd5f106af-root {
    text-align: left;
  }


#s-48cfbdd5-f7ff-4f14-9a7e-cb0bd5f106af.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (min-width: 768px) and (max-width: 991px){
  #s-48cfbdd5-f7ff-4f14-9a7e-cb0bd5f106af-root {
    text-align: left;
  }


#s-48cfbdd5-f7ff-4f14-9a7e-cb0bd5f106af.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  inline-block ;
}
}@media (max-width: 767px){
  #s-48cfbdd5-f7ff-4f14-9a7e-cb0bd5f106af-root {
    text-align: left;
  }


#s-48cfbdd5-f7ff-4f14-9a7e-cb0bd5f106af.shg-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-weight: 700;
  
  font-family: Roboto;
  display:  inline-block ;
}
}
#s-c6d7bae6-d628-4073-b8d4-3b5636d8769f {
  margin-top: 0px;
}
@media (max-width: 767px){#s-c6d7bae6-d628-4073-b8d4-3b5636d8769f {
  display: none;
}
#s-c6d7bae6-d628-4073-b8d4-3b5636d8769f, #wrap-s-c6d7bae6-d628-4073-b8d4-3b5636d8769f { display:none !important; }}
@media (min-width: 0px) {
[id="s-c6d7bae6-d628-4073-b8d4-3b5636d8769f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50% - 17.0px);
}

}

@media (min-width: 768px) {
[id="s-c6d7bae6-d628-4073-b8d4-3b5636d8769f"] > .shg-row > .shg-c-sm-2_4 {
  width: calc(20.0% - 27.2px);
}

}

@media (min-width: 992px) {
[id="s-c6d7bae6-d628-4073-b8d4-3b5636d8769f"] > .shg-row > .shg-c-md-2_4 {
  width: calc(20.0% - 27.2px);
}

}

@media (min-width: 1200px) {
[id="s-c6d7bae6-d628-4073-b8d4-3b5636d8769f"] > .shg-row > .shg-c-lg-2_4 {
  width: calc(20.0% - 27.2px);
}

}

#s-a1d63f6a-5845-4d51-bf0a-5451d10b18a9 {
  min-height: 425px;
background-color: rgba(247, 166, 135, 1);
}








#s-a1d63f6a-5845-4d51-bf0a-5451d10b18a9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a1d63f6a-5845-4d51-bf0a-5451d10b18a9.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-2a05abff-c87d-4a2c-ad03-a57aeb88f706 {
  margin-left: 10%;
margin-right: 10%;
max-width: 200px;
text-align: center;
background-color: rgba(189, 195, 226, 0);
}







  img.s-2a05abff-c87d-4a2c-ad03-a57aeb88f706.shogun-image {
    
    
  }


.s-2a05abff-c87d-4a2c-ad03-a57aeb88f706 .shogun-image-content {
  
    align-items: center;
  
}

.s-2a05abff-c87d-4a2c-ad03-a57aeb88f706.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a05abff-c87d-4a2c-ad03-a57aeb88f706.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a05abff-c87d-4a2c-ad03-a57aeb88f706.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-2a05abff-c87d-4a2c-ad03-a57aeb88f706.shogun-image {
    
    
  }


.s-2a05abff-c87d-4a2c-ad03-a57aeb88f706 .shogun-image-content {
  
    align-items: center;
  
}

.s-2a05abff-c87d-4a2c-ad03-a57aeb88f706.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a05abff-c87d-4a2c-ad03-a57aeb88f706.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a05abff-c87d-4a2c-ad03-a57aeb88f706.shogun-image {
  box-sizing: border-box;
}

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





  img.s-2a05abff-c87d-4a2c-ad03-a57aeb88f706.shogun-image {
    
    
  }


.s-2a05abff-c87d-4a2c-ad03-a57aeb88f706 .shogun-image-content {
  
    align-items: center;
  
}

.s-2a05abff-c87d-4a2c-ad03-a57aeb88f706.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a05abff-c87d-4a2c-ad03-a57aeb88f706.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a05abff-c87d-4a2c-ad03-a57aeb88f706.shogun-image {
  box-sizing: border-box;
}

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





  img.s-2a05abff-c87d-4a2c-ad03-a57aeb88f706.shogun-image {
    
    
  }


.s-2a05abff-c87d-4a2c-ad03-a57aeb88f706 .shogun-image-content {
  
    align-items: center;
  
}

.s-2a05abff-c87d-4a2c-ad03-a57aeb88f706.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a05abff-c87d-4a2c-ad03-a57aeb88f706.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a05abff-c87d-4a2c-ad03-a57aeb88f706.shogun-image {
  box-sizing: border-box;
}

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





  img.s-2a05abff-c87d-4a2c-ad03-a57aeb88f706.shogun-image {
    
    
  }


.s-2a05abff-c87d-4a2c-ad03-a57aeb88f706 .shogun-image-content {
  
    align-items: center;
  
}

.s-2a05abff-c87d-4a2c-ad03-a57aeb88f706.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2a05abff-c87d-4a2c-ad03-a57aeb88f706.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2a05abff-c87d-4a2c-ad03-a57aeb88f706.shogun-image {
  box-sizing: border-box;
}

}
#s-2e507ab6-8629-41a4-9cfb-dc748f95bde5 {
  box-shadow:0px 0px 0px 0px rgba(189, 195, 226, 0);
margin-top: 0px;
margin-left: 5%;
margin-bottom: 0px;
margin-right: 5%;
background-color: rgba(189, 195, 226, 0);
}

#s-9c10f95e-7025-4b4c-a62e-ca4ae74b9395 {
  min-height: 425px;
background-color: rgba(133, 210, 225, 1);
}








#s-9c10f95e-7025-4b4c-a62e-ca4ae74b9395 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9c10f95e-7025-4b4c-a62e-ca4ae74b9395.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-2b313d08-6140-4928-8527-2d62a683609c {
  margin-left: 10%;
margin-right: 10%;
max-width: 200px;
text-align: center;
background-color: rgba(189, 195, 226, 0);
}







  img.s-2b313d08-6140-4928-8527-2d62a683609c.shogun-image {
    
    
  }


.s-2b313d08-6140-4928-8527-2d62a683609c .shogun-image-content {
  
    align-items: center;
  
}

.s-2b313d08-6140-4928-8527-2d62a683609c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b313d08-6140-4928-8527-2d62a683609c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b313d08-6140-4928-8527-2d62a683609c.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-2b313d08-6140-4928-8527-2d62a683609c.shogun-image {
    
    
  }


.s-2b313d08-6140-4928-8527-2d62a683609c .shogun-image-content {
  
    align-items: center;
  
}

.s-2b313d08-6140-4928-8527-2d62a683609c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b313d08-6140-4928-8527-2d62a683609c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b313d08-6140-4928-8527-2d62a683609c.shogun-image {
  box-sizing: border-box;
}

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





  img.s-2b313d08-6140-4928-8527-2d62a683609c.shogun-image {
    
    
  }


.s-2b313d08-6140-4928-8527-2d62a683609c .shogun-image-content {
  
    align-items: center;
  
}

.s-2b313d08-6140-4928-8527-2d62a683609c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b313d08-6140-4928-8527-2d62a683609c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b313d08-6140-4928-8527-2d62a683609c.shogun-image {
  box-sizing: border-box;
}

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





  img.s-2b313d08-6140-4928-8527-2d62a683609c.shogun-image {
    
    
  }


.s-2b313d08-6140-4928-8527-2d62a683609c .shogun-image-content {
  
    align-items: center;
  
}

.s-2b313d08-6140-4928-8527-2d62a683609c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b313d08-6140-4928-8527-2d62a683609c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b313d08-6140-4928-8527-2d62a683609c.shogun-image {
  box-sizing: border-box;
}

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





  img.s-2b313d08-6140-4928-8527-2d62a683609c.shogun-image {
    
    
  }


.s-2b313d08-6140-4928-8527-2d62a683609c .shogun-image-content {
  
    align-items: center;
  
}

.s-2b313d08-6140-4928-8527-2d62a683609c.shg-align-container {
  display: flex;
  justify-content: center
}

.s-2b313d08-6140-4928-8527-2d62a683609c.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-2b313d08-6140-4928-8527-2d62a683609c.shogun-image {
  box-sizing: border-box;
}

}
#s-791c95b3-9d1b-4194-9311-7ce926d14671 {
  box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 1);
margin-top: 0px;
margin-left: 5%;
margin-bottom: 0px;
margin-right: 5%;
background-color: rgba(189, 195, 226, 0);
}

#s-3642410f-ee64-4f18-a655-843472387884 {
  min-height: 425px;
background-color: rgba(198, 220, 125, 1);
}








#s-3642410f-ee64-4f18-a655-843472387884 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3642410f-ee64-4f18-a655-843472387884.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-97e7f0a2-1569-410b-91d6-fcd45f3aff5b {
  margin-left: 10%;
margin-bottom: 0px;
margin-right: 10%;
max-width: 200px;
text-align: center;
background-color: rgba(189, 195, 226, 0);
}







  img.s-97e7f0a2-1569-410b-91d6-fcd45f3aff5b.shogun-image {
    
    
  }


.s-97e7f0a2-1569-410b-91d6-fcd45f3aff5b .shogun-image-content {
  
    align-items: center;
  
}

.s-97e7f0a2-1569-410b-91d6-fcd45f3aff5b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97e7f0a2-1569-410b-91d6-fcd45f3aff5b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97e7f0a2-1569-410b-91d6-fcd45f3aff5b.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-97e7f0a2-1569-410b-91d6-fcd45f3aff5b.shogun-image {
    
    
  }


.s-97e7f0a2-1569-410b-91d6-fcd45f3aff5b .shogun-image-content {
  
    align-items: center;
  
}

.s-97e7f0a2-1569-410b-91d6-fcd45f3aff5b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97e7f0a2-1569-410b-91d6-fcd45f3aff5b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97e7f0a2-1569-410b-91d6-fcd45f3aff5b.shogun-image {
  box-sizing: border-box;
}

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





  img.s-97e7f0a2-1569-410b-91d6-fcd45f3aff5b.shogun-image {
    
    
  }


.s-97e7f0a2-1569-410b-91d6-fcd45f3aff5b .shogun-image-content {
  
    align-items: center;
  
}

.s-97e7f0a2-1569-410b-91d6-fcd45f3aff5b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97e7f0a2-1569-410b-91d6-fcd45f3aff5b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97e7f0a2-1569-410b-91d6-fcd45f3aff5b.shogun-image {
  box-sizing: border-box;
}

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





  img.s-97e7f0a2-1569-410b-91d6-fcd45f3aff5b.shogun-image {
    
    
  }


.s-97e7f0a2-1569-410b-91d6-fcd45f3aff5b .shogun-image-content {
  
    align-items: center;
  
}

.s-97e7f0a2-1569-410b-91d6-fcd45f3aff5b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97e7f0a2-1569-410b-91d6-fcd45f3aff5b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97e7f0a2-1569-410b-91d6-fcd45f3aff5b.shogun-image {
  box-sizing: border-box;
}

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





  img.s-97e7f0a2-1569-410b-91d6-fcd45f3aff5b.shogun-image {
    
    
  }


.s-97e7f0a2-1569-410b-91d6-fcd45f3aff5b .shogun-image-content {
  
    align-items: center;
  
}

.s-97e7f0a2-1569-410b-91d6-fcd45f3aff5b.shg-align-container {
  display: flex;
  justify-content: center
}

.s-97e7f0a2-1569-410b-91d6-fcd45f3aff5b.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-97e7f0a2-1569-410b-91d6-fcd45f3aff5b.shogun-image {
  box-sizing: border-box;
}

}
#s-be1c91d1-153b-4e60-ba59-248506dcf3a5 {
  box-shadow:1px 1px 1px 1px rgba(189, 195, 226, 0);
margin-top: 0px;
margin-left: 5%;
margin-bottom: 0px;
margin-right: 5%;
background-color: rgba(198, 220, 125, 1);
}

#s-012f44a4-06c9-405c-89a3-d2bf09daae0e {
  min-height: 425px;
background-color: rgba(189, 195, 226, 1);
}








#s-012f44a4-06c9-405c-89a3-d2bf09daae0e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-012f44a4-06c9-405c-89a3-d2bf09daae0e.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-a5867fe0-d5fa-4022-bf2d-3c9e0e0a7bbf {
  margin-left: 10%;
margin-right: 10%;
max-width: 200px;
text-align: center;
background-color: rgba(189, 195, 226, 0);
}







  img.s-a5867fe0-d5fa-4022-bf2d-3c9e0e0a7bbf.shogun-image {
    
    
  }


.s-a5867fe0-d5fa-4022-bf2d-3c9e0e0a7bbf .shogun-image-content {
  
    align-items: center;
  
}

.s-a5867fe0-d5fa-4022-bf2d-3c9e0e0a7bbf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5867fe0-d5fa-4022-bf2d-3c9e0e0a7bbf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5867fe0-d5fa-4022-bf2d-3c9e0e0a7bbf.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-a5867fe0-d5fa-4022-bf2d-3c9e0e0a7bbf.shogun-image {
    
    
  }


.s-a5867fe0-d5fa-4022-bf2d-3c9e0e0a7bbf .shogun-image-content {
  
    align-items: center;
  
}

.s-a5867fe0-d5fa-4022-bf2d-3c9e0e0a7bbf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5867fe0-d5fa-4022-bf2d-3c9e0e0a7bbf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5867fe0-d5fa-4022-bf2d-3c9e0e0a7bbf.shogun-image {
  box-sizing: border-box;
}

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





  img.s-a5867fe0-d5fa-4022-bf2d-3c9e0e0a7bbf.shogun-image {
    
    
  }


.s-a5867fe0-d5fa-4022-bf2d-3c9e0e0a7bbf .shogun-image-content {
  
    align-items: center;
  
}

.s-a5867fe0-d5fa-4022-bf2d-3c9e0e0a7bbf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5867fe0-d5fa-4022-bf2d-3c9e0e0a7bbf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5867fe0-d5fa-4022-bf2d-3c9e0e0a7bbf.shogun-image {
  box-sizing: border-box;
}

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





  img.s-a5867fe0-d5fa-4022-bf2d-3c9e0e0a7bbf.shogun-image {
    
    
  }


.s-a5867fe0-d5fa-4022-bf2d-3c9e0e0a7bbf .shogun-image-content {
  
    align-items: center;
  
}

.s-a5867fe0-d5fa-4022-bf2d-3c9e0e0a7bbf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5867fe0-d5fa-4022-bf2d-3c9e0e0a7bbf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5867fe0-d5fa-4022-bf2d-3c9e0e0a7bbf.shogun-image {
  box-sizing: border-box;
}

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





  img.s-a5867fe0-d5fa-4022-bf2d-3c9e0e0a7bbf.shogun-image {
    
    
  }


.s-a5867fe0-d5fa-4022-bf2d-3c9e0e0a7bbf .shogun-image-content {
  
    align-items: center;
  
}

.s-a5867fe0-d5fa-4022-bf2d-3c9e0e0a7bbf.shg-align-container {
  display: flex;
  justify-content: center
}

.s-a5867fe0-d5fa-4022-bf2d-3c9e0e0a7bbf.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-a5867fe0-d5fa-4022-bf2d-3c9e0e0a7bbf.shogun-image {
  box-sizing: border-box;
}

}
#s-43a8ca16-82a5-41e6-aef5-a1cdc2445a0f {
  box-shadow:1px 1px 1px 1px rgba(189, 195, 226, 1);
margin-top: 0px;
margin-left: 5%;
margin-bottom: 0px;
margin-right: 5%;
background-color: rgba(189, 195, 226, 1);
}

#s-4cbae245-a022-4cd3-abe3-6212519884ec {
  min-height: 425px;
background-color: rgba(247, 208, 61, 1);
}








#s-4cbae245-a022-4cd3-abe3-6212519884ec > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4cbae245-a022-4cd3-abe3-6212519884ec.shg-box.shg-c {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#s-6d23a225-652e-4ee0-b6c2-5d0edd97716d {
  margin-left: 10%;
margin-right: 10%;
max-width: 200px;
text-align: center;
background-color: rgba(189, 195, 226, 0);
}







  img.s-6d23a225-652e-4ee0-b6c2-5d0edd97716d.shogun-image {
    
    
  }


.s-6d23a225-652e-4ee0-b6c2-5d0edd97716d .shogun-image-content {
  
    align-items: center;
  
}

.s-6d23a225-652e-4ee0-b6c2-5d0edd97716d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d23a225-652e-4ee0-b6c2-5d0edd97716d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d23a225-652e-4ee0-b6c2-5d0edd97716d.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-6d23a225-652e-4ee0-b6c2-5d0edd97716d.shogun-image {
    
    
  }


.s-6d23a225-652e-4ee0-b6c2-5d0edd97716d .shogun-image-content {
  
    align-items: center;
  
}

.s-6d23a225-652e-4ee0-b6c2-5d0edd97716d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d23a225-652e-4ee0-b6c2-5d0edd97716d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d23a225-652e-4ee0-b6c2-5d0edd97716d.shogun-image {
  box-sizing: border-box;
}

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





  img.s-6d23a225-652e-4ee0-b6c2-5d0edd97716d.shogun-image {
    
    
  }


.s-6d23a225-652e-4ee0-b6c2-5d0edd97716d .shogun-image-content {
  
    align-items: center;
  
}

.s-6d23a225-652e-4ee0-b6c2-5d0edd97716d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d23a225-652e-4ee0-b6c2-5d0edd97716d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d23a225-652e-4ee0-b6c2-5d0edd97716d.shogun-image {
  box-sizing: border-box;
}

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





  img.s-6d23a225-652e-4ee0-b6c2-5d0edd97716d.shogun-image {
    
    
  }


.s-6d23a225-652e-4ee0-b6c2-5d0edd97716d .shogun-image-content {
  
    align-items: center;
  
}

.s-6d23a225-652e-4ee0-b6c2-5d0edd97716d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d23a225-652e-4ee0-b6c2-5d0edd97716d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d23a225-652e-4ee0-b6c2-5d0edd97716d.shogun-image {
  box-sizing: border-box;
}

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





  img.s-6d23a225-652e-4ee0-b6c2-5d0edd97716d.shogun-image {
    
    
  }


.s-6d23a225-652e-4ee0-b6c2-5d0edd97716d .shogun-image-content {
  
    align-items: center;
  
}

.s-6d23a225-652e-4ee0-b6c2-5d0edd97716d.shg-align-container {
  display: flex;
  justify-content: center
}

.s-6d23a225-652e-4ee0-b6c2-5d0edd97716d.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-6d23a225-652e-4ee0-b6c2-5d0edd97716d.shogun-image {
  box-sizing: border-box;
}

}
#s-c49f78dc-a889-4eb0-aa2e-a296918a081d {
  box-shadow:1px 1px 1px 1px rgba(189, 195, 226, 0);
margin-top: 0px;
margin-left: 5%;
margin-bottom: 0px;
margin-right: 5%;
background-color: rgba(189, 195, 226, 0);
}

#s-b1d14fa5-510b-4194-965a-aa7165ff25e9 {
  min-height: 50px;
}








#s-b1d14fa5-510b-4194-965a-aa7165ff25e9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b1d14fa5-510b-4194-965a-aa7165ff25e9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-8d2015fa-ec4e-4873-aae4-6d69d0f1bab9 {
  min-height: 150px;
background-color: rgba(247, 166, 135, 1);
}
@media (min-width: 1200px){#s-8d2015fa-ec4e-4873-aae4-6d69d0f1bab9 {
  display: none;
}
#s-8d2015fa-ec4e-4873-aae4-6d69d0f1bab9, #wrap-s-8d2015fa-ec4e-4873-aae4-6d69d0f1bab9 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-8d2015fa-ec4e-4873-aae4-6d69d0f1bab9 {
  display: none;
}
#s-8d2015fa-ec4e-4873-aae4-6d69d0f1bab9, #wrap-s-8d2015fa-ec4e-4873-aae4-6d69d0f1bab9 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-8d2015fa-ec4e-4873-aae4-6d69d0f1bab9 {
  display: none;
}
#s-8d2015fa-ec4e-4873-aae4-6d69d0f1bab9, #wrap-s-8d2015fa-ec4e-4873-aae4-6d69d0f1bab9 { display:none !important; }}







#s-8d2015fa-ec4e-4873-aae4-6d69d0f1bab9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8d2015fa-ec4e-4873-aae4-6d69d0f1bab9.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-da3bca98-9318-4431-9b94-ffebae297407 {
  min-height: 225px;
}
@media (min-width: 1200px){#s-da3bca98-9318-4431-9b94-ffebae297407 {
  display: none;
}
#s-da3bca98-9318-4431-9b94-ffebae297407, #wrap-s-da3bca98-9318-4431-9b94-ffebae297407 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-da3bca98-9318-4431-9b94-ffebae297407 {
  display: none;
}
#s-da3bca98-9318-4431-9b94-ffebae297407, #wrap-s-da3bca98-9318-4431-9b94-ffebae297407 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-da3bca98-9318-4431-9b94-ffebae297407 {
  display: none;
}
#s-da3bca98-9318-4431-9b94-ffebae297407, #wrap-s-da3bca98-9318-4431-9b94-ffebae297407 { display:none !important; }}
@media (min-width: 0px) {
[id="s-da3bca98-9318-4431-9b94-ffebae297407"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-da3bca98-9318-4431-9b94-ffebae297407"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-da3bca98-9318-4431-9b94-ffebae297407"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-da3bca98-9318-4431-9b94-ffebae297407"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-d216449f-7eb8-4e36-8d98-4b217b0f756a {
  margin-top: 17%;
margin-bottom: 17%;
max-width: 150px;
text-align: center;
background-color: rgba(189, 195, 226, 0);
}







  img.s-d216449f-7eb8-4e36-8d98-4b217b0f756a.shogun-image {
    
    
  }


.s-d216449f-7eb8-4e36-8d98-4b217b0f756a .shogun-image-content {
  
    align-items: center;
  
}

.s-d216449f-7eb8-4e36-8d98-4b217b0f756a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d216449f-7eb8-4e36-8d98-4b217b0f756a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d216449f-7eb8-4e36-8d98-4b217b0f756a.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-d216449f-7eb8-4e36-8d98-4b217b0f756a.shogun-image {
    
    
  }


.s-d216449f-7eb8-4e36-8d98-4b217b0f756a .shogun-image-content {
  
    align-items: center;
  
}

.s-d216449f-7eb8-4e36-8d98-4b217b0f756a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d216449f-7eb8-4e36-8d98-4b217b0f756a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d216449f-7eb8-4e36-8d98-4b217b0f756a.shogun-image {
  box-sizing: border-box;
}

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





  img.s-d216449f-7eb8-4e36-8d98-4b217b0f756a.shogun-image {
    
    
  }


.s-d216449f-7eb8-4e36-8d98-4b217b0f756a .shogun-image-content {
  
    align-items: center;
  
}

.s-d216449f-7eb8-4e36-8d98-4b217b0f756a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d216449f-7eb8-4e36-8d98-4b217b0f756a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d216449f-7eb8-4e36-8d98-4b217b0f756a.shogun-image {
  box-sizing: border-box;
}

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





  img.s-d216449f-7eb8-4e36-8d98-4b217b0f756a.shogun-image {
    
    
  }


.s-d216449f-7eb8-4e36-8d98-4b217b0f756a .shogun-image-content {
  
    align-items: center;
  
}

.s-d216449f-7eb8-4e36-8d98-4b217b0f756a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d216449f-7eb8-4e36-8d98-4b217b0f756a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d216449f-7eb8-4e36-8d98-4b217b0f756a.shogun-image {
  box-sizing: border-box;
}

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





  img.s-d216449f-7eb8-4e36-8d98-4b217b0f756a.shogun-image {
    
    
  }


.s-d216449f-7eb8-4e36-8d98-4b217b0f756a .shogun-image-content {
  
    align-items: center;
  
}

.s-d216449f-7eb8-4e36-8d98-4b217b0f756a.shg-align-container {
  display: flex;
  justify-content: center
}

.s-d216449f-7eb8-4e36-8d98-4b217b0f756a.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-d216449f-7eb8-4e36-8d98-4b217b0f756a.shogun-image {
  box-sizing: border-box;
}

}
#s-5236debf-35a6-4f8c-827a-007e9856428e {
  box-shadow:0px 0px 0px 0px rgba(189, 195, 226, 0);
margin-top: 30%;
margin-left: -25%;
margin-bottom: 0px;
margin-right: 9%;
padding-top: 3%;
padding-bottom: 3%;
background-color: rgba(189, 195, 226, 0);
}

#s-bd9a9097-b706-45a1-8a92-41d600a9d0af {
  min-height: 50px;
}








#s-bd9a9097-b706-45a1-8a92-41d600a9d0af > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bd9a9097-b706-45a1-8a92-41d600a9d0af.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-9b92181d-61cd-48b7-9887-0ee1c359780a {
  min-height: 150px;
background-color: rgba(133, 210, 225, 1);
}
@media (min-width: 1200px){#s-9b92181d-61cd-48b7-9887-0ee1c359780a {
  display: none;
}
#s-9b92181d-61cd-48b7-9887-0ee1c359780a, #wrap-s-9b92181d-61cd-48b7-9887-0ee1c359780a { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-9b92181d-61cd-48b7-9887-0ee1c359780a {
  display: none;
}
#s-9b92181d-61cd-48b7-9887-0ee1c359780a, #wrap-s-9b92181d-61cd-48b7-9887-0ee1c359780a { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-9b92181d-61cd-48b7-9887-0ee1c359780a {
  display: none;
}
#s-9b92181d-61cd-48b7-9887-0ee1c359780a, #wrap-s-9b92181d-61cd-48b7-9887-0ee1c359780a { display:none !important; }}







#s-9b92181d-61cd-48b7-9887-0ee1c359780a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-9b92181d-61cd-48b7-9887-0ee1c359780a.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ac12267a-b39c-4fd5-9808-42eb48f5bf04 {
  min-height: 225px;
}
@media (min-width: 1200px){#s-ac12267a-b39c-4fd5-9808-42eb48f5bf04 {
  display: none;
}
#s-ac12267a-b39c-4fd5-9808-42eb48f5bf04, #wrap-s-ac12267a-b39c-4fd5-9808-42eb48f5bf04 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ac12267a-b39c-4fd5-9808-42eb48f5bf04 {
  display: none;
}
#s-ac12267a-b39c-4fd5-9808-42eb48f5bf04, #wrap-s-ac12267a-b39c-4fd5-9808-42eb48f5bf04 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ac12267a-b39c-4fd5-9808-42eb48f5bf04 {
  display: none;
}
#s-ac12267a-b39c-4fd5-9808-42eb48f5bf04, #wrap-s-ac12267a-b39c-4fd5-9808-42eb48f5bf04 { display:none !important; }}
@media (min-width: 0px) {
[id="s-ac12267a-b39c-4fd5-9808-42eb48f5bf04"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-ac12267a-b39c-4fd5-9808-42eb48f5bf04"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ac12267a-b39c-4fd5-9808-42eb48f5bf04"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ac12267a-b39c-4fd5-9808-42eb48f5bf04"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-937d5501-5a72-4357-ac0c-01d0ab5029e8 {
  margin-top: 17%;
margin-bottom: 17%;
max-width: 150px;
text-align: center;
background-color: rgba(189, 195, 226, 0);
}







  img.s-937d5501-5a72-4357-ac0c-01d0ab5029e8.shogun-image {
    
    
  }


.s-937d5501-5a72-4357-ac0c-01d0ab5029e8 .shogun-image-content {
  
    align-items: center;
  
}

.s-937d5501-5a72-4357-ac0c-01d0ab5029e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-937d5501-5a72-4357-ac0c-01d0ab5029e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-937d5501-5a72-4357-ac0c-01d0ab5029e8.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-937d5501-5a72-4357-ac0c-01d0ab5029e8.shogun-image {
    
    
  }


.s-937d5501-5a72-4357-ac0c-01d0ab5029e8 .shogun-image-content {
  
    align-items: center;
  
}

.s-937d5501-5a72-4357-ac0c-01d0ab5029e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-937d5501-5a72-4357-ac0c-01d0ab5029e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-937d5501-5a72-4357-ac0c-01d0ab5029e8.shogun-image {
  box-sizing: border-box;
}

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





  img.s-937d5501-5a72-4357-ac0c-01d0ab5029e8.shogun-image {
    
    
  }


.s-937d5501-5a72-4357-ac0c-01d0ab5029e8 .shogun-image-content {
  
    align-items: center;
  
}

.s-937d5501-5a72-4357-ac0c-01d0ab5029e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-937d5501-5a72-4357-ac0c-01d0ab5029e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-937d5501-5a72-4357-ac0c-01d0ab5029e8.shogun-image {
  box-sizing: border-box;
}

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





  img.s-937d5501-5a72-4357-ac0c-01d0ab5029e8.shogun-image {
    
    
  }


.s-937d5501-5a72-4357-ac0c-01d0ab5029e8 .shogun-image-content {
  
    align-items: center;
  
}

.s-937d5501-5a72-4357-ac0c-01d0ab5029e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-937d5501-5a72-4357-ac0c-01d0ab5029e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-937d5501-5a72-4357-ac0c-01d0ab5029e8.shogun-image {
  box-sizing: border-box;
}

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





  img.s-937d5501-5a72-4357-ac0c-01d0ab5029e8.shogun-image {
    
    
  }


.s-937d5501-5a72-4357-ac0c-01d0ab5029e8 .shogun-image-content {
  
    align-items: center;
  
}

.s-937d5501-5a72-4357-ac0c-01d0ab5029e8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-937d5501-5a72-4357-ac0c-01d0ab5029e8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-937d5501-5a72-4357-ac0c-01d0ab5029e8.shogun-image {
  box-sizing: border-box;
}

}
#s-39416b92-ed6c-4e02-8583-446baf29fe57 {
  box-shadow:0px 0px 0px 0px rgba(189, 195, 226, 0);
margin-top: 17%;
margin-left: -25%;
margin-bottom: 0px;
margin-right: 9%;
padding-top: 3%;
padding-bottom: 3%;
background-color: rgba(189, 195, 226, 0);
}

#s-a9b20418-e5f4-4348-820b-072550d5f4b6 {
  min-height: 150px;
background-color: rgba(198, 220, 125, 1);
}
@media (min-width: 1200px){#s-a9b20418-e5f4-4348-820b-072550d5f4b6 {
  display: none;
}
#s-a9b20418-e5f4-4348-820b-072550d5f4b6, #wrap-s-a9b20418-e5f4-4348-820b-072550d5f4b6 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a9b20418-e5f4-4348-820b-072550d5f4b6 {
  display: none;
}
#s-a9b20418-e5f4-4348-820b-072550d5f4b6, #wrap-s-a9b20418-e5f4-4348-820b-072550d5f4b6 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a9b20418-e5f4-4348-820b-072550d5f4b6 {
  display: none;
}
#s-a9b20418-e5f4-4348-820b-072550d5f4b6, #wrap-s-a9b20418-e5f4-4348-820b-072550d5f4b6 { display:none !important; }}







#s-a9b20418-e5f4-4348-820b-072550d5f4b6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a9b20418-e5f4-4348-820b-072550d5f4b6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-88ee6c97-88c7-430e-bf15-a0f2a29d0360 {
  min-height: 225px;
}
@media (min-width: 1200px){#s-88ee6c97-88c7-430e-bf15-a0f2a29d0360 {
  display: none;
}
#s-88ee6c97-88c7-430e-bf15-a0f2a29d0360, #wrap-s-88ee6c97-88c7-430e-bf15-a0f2a29d0360 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-88ee6c97-88c7-430e-bf15-a0f2a29d0360 {
  display: none;
}
#s-88ee6c97-88c7-430e-bf15-a0f2a29d0360, #wrap-s-88ee6c97-88c7-430e-bf15-a0f2a29d0360 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-88ee6c97-88c7-430e-bf15-a0f2a29d0360 {
  display: none;
}
#s-88ee6c97-88c7-430e-bf15-a0f2a29d0360, #wrap-s-88ee6c97-88c7-430e-bf15-a0f2a29d0360 { display:none !important; }}
@media (min-width: 0px) {
[id="s-88ee6c97-88c7-430e-bf15-a0f2a29d0360"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-88ee6c97-88c7-430e-bf15-a0f2a29d0360"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-88ee6c97-88c7-430e-bf15-a0f2a29d0360"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-88ee6c97-88c7-430e-bf15-a0f2a29d0360"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-c4887bf7-c778-4c4f-a6a1-5bbbf4608b79 {
  margin-top: 18%;
margin-bottom: 18%;
max-width: 150px;
text-align: center;
background-color: rgba(189, 195, 226, 0);
}







  img.s-c4887bf7-c778-4c4f-a6a1-5bbbf4608b79.shogun-image {
    
    
  }


.s-c4887bf7-c778-4c4f-a6a1-5bbbf4608b79 .shogun-image-content {
  
    align-items: center;
  
}

.s-c4887bf7-c778-4c4f-a6a1-5bbbf4608b79.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4887bf7-c778-4c4f-a6a1-5bbbf4608b79.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4887bf7-c778-4c4f-a6a1-5bbbf4608b79.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-c4887bf7-c778-4c4f-a6a1-5bbbf4608b79.shogun-image {
    
    
  }


.s-c4887bf7-c778-4c4f-a6a1-5bbbf4608b79 .shogun-image-content {
  
    align-items: center;
  
}

.s-c4887bf7-c778-4c4f-a6a1-5bbbf4608b79.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4887bf7-c778-4c4f-a6a1-5bbbf4608b79.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4887bf7-c778-4c4f-a6a1-5bbbf4608b79.shogun-image {
  box-sizing: border-box;
}

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





  img.s-c4887bf7-c778-4c4f-a6a1-5bbbf4608b79.shogun-image {
    
    
  }


.s-c4887bf7-c778-4c4f-a6a1-5bbbf4608b79 .shogun-image-content {
  
    align-items: center;
  
}

.s-c4887bf7-c778-4c4f-a6a1-5bbbf4608b79.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4887bf7-c778-4c4f-a6a1-5bbbf4608b79.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4887bf7-c778-4c4f-a6a1-5bbbf4608b79.shogun-image {
  box-sizing: border-box;
}

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





  img.s-c4887bf7-c778-4c4f-a6a1-5bbbf4608b79.shogun-image {
    
    
  }


.s-c4887bf7-c778-4c4f-a6a1-5bbbf4608b79 .shogun-image-content {
  
    align-items: center;
  
}

.s-c4887bf7-c778-4c4f-a6a1-5bbbf4608b79.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4887bf7-c778-4c4f-a6a1-5bbbf4608b79.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4887bf7-c778-4c4f-a6a1-5bbbf4608b79.shogun-image {
  box-sizing: border-box;
}

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





  img.s-c4887bf7-c778-4c4f-a6a1-5bbbf4608b79.shogun-image {
    
    
  }


.s-c4887bf7-c778-4c4f-a6a1-5bbbf4608b79 .shogun-image-content {
  
    align-items: center;
  
}

.s-c4887bf7-c778-4c4f-a6a1-5bbbf4608b79.shg-align-container {
  display: flex;
  justify-content: center
}

.s-c4887bf7-c778-4c4f-a6a1-5bbbf4608b79.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-c4887bf7-c778-4c4f-a6a1-5bbbf4608b79.shogun-image {
  box-sizing: border-box;
}

}
#s-46428794-106c-4de7-b7af-c44bca010fec {
  box-shadow:0px 0px 0px 0px rgba(189, 195, 226, 0);
margin-top: 10px;
margin-left: -25%;
margin-bottom: 10px;
margin-right: 9%;
padding-top: 3%;
padding-bottom: 3%;
background-color: rgba(189, 195, 226, 0);
}

#s-2502212b-be6e-44bc-866b-387b26314dce {
  min-height: 150px;
background-color: rgba(189, 195, 226, 1);
}
@media (min-width: 1200px){#s-2502212b-be6e-44bc-866b-387b26314dce {
  display: none;
}
#s-2502212b-be6e-44bc-866b-387b26314dce, #wrap-s-2502212b-be6e-44bc-866b-387b26314dce { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-2502212b-be6e-44bc-866b-387b26314dce {
  display: none;
}
#s-2502212b-be6e-44bc-866b-387b26314dce, #wrap-s-2502212b-be6e-44bc-866b-387b26314dce { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-2502212b-be6e-44bc-866b-387b26314dce {
  display: none;
}
#s-2502212b-be6e-44bc-866b-387b26314dce, #wrap-s-2502212b-be6e-44bc-866b-387b26314dce { display:none !important; }}







#s-2502212b-be6e-44bc-866b-387b26314dce > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2502212b-be6e-44bc-866b-387b26314dce.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-ec8f2485-601b-46d5-9315-a44425d1f1b9 {
  min-height: 225px;
}
@media (min-width: 1200px){#s-ec8f2485-601b-46d5-9315-a44425d1f1b9 {
  display: none;
}
#s-ec8f2485-601b-46d5-9315-a44425d1f1b9, #wrap-s-ec8f2485-601b-46d5-9315-a44425d1f1b9 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-ec8f2485-601b-46d5-9315-a44425d1f1b9 {
  display: none;
}
#s-ec8f2485-601b-46d5-9315-a44425d1f1b9, #wrap-s-ec8f2485-601b-46d5-9315-a44425d1f1b9 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-ec8f2485-601b-46d5-9315-a44425d1f1b9 {
  display: none;
}
#s-ec8f2485-601b-46d5-9315-a44425d1f1b9, #wrap-s-ec8f2485-601b-46d5-9315-a44425d1f1b9 { display:none !important; }}
@media (min-width: 0px) {
[id="s-ec8f2485-601b-46d5-9315-a44425d1f1b9"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-ec8f2485-601b-46d5-9315-a44425d1f1b9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ec8f2485-601b-46d5-9315-a44425d1f1b9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ec8f2485-601b-46d5-9315-a44425d1f1b9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-139421d6-433e-4e9b-876f-54cfc7f8e0c8 {
  margin-top: 17%;
margin-bottom: 17%;
max-width: 150px;
text-align: center;
background-color: rgba(189, 195, 226, 0);
}







  img.s-139421d6-433e-4e9b-876f-54cfc7f8e0c8.shogun-image {
    
    
  }


.s-139421d6-433e-4e9b-876f-54cfc7f8e0c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-139421d6-433e-4e9b-876f-54cfc7f8e0c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-139421d6-433e-4e9b-876f-54cfc7f8e0c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-139421d6-433e-4e9b-876f-54cfc7f8e0c8.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-139421d6-433e-4e9b-876f-54cfc7f8e0c8.shogun-image {
    
    
  }


.s-139421d6-433e-4e9b-876f-54cfc7f8e0c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-139421d6-433e-4e9b-876f-54cfc7f8e0c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-139421d6-433e-4e9b-876f-54cfc7f8e0c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-139421d6-433e-4e9b-876f-54cfc7f8e0c8.shogun-image {
  box-sizing: border-box;
}

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





  img.s-139421d6-433e-4e9b-876f-54cfc7f8e0c8.shogun-image {
    
    
  }


.s-139421d6-433e-4e9b-876f-54cfc7f8e0c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-139421d6-433e-4e9b-876f-54cfc7f8e0c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-139421d6-433e-4e9b-876f-54cfc7f8e0c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-139421d6-433e-4e9b-876f-54cfc7f8e0c8.shogun-image {
  box-sizing: border-box;
}

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





  img.s-139421d6-433e-4e9b-876f-54cfc7f8e0c8.shogun-image {
    
    
  }


.s-139421d6-433e-4e9b-876f-54cfc7f8e0c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-139421d6-433e-4e9b-876f-54cfc7f8e0c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-139421d6-433e-4e9b-876f-54cfc7f8e0c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-139421d6-433e-4e9b-876f-54cfc7f8e0c8.shogun-image {
  box-sizing: border-box;
}

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





  img.s-139421d6-433e-4e9b-876f-54cfc7f8e0c8.shogun-image {
    
    
  }


.s-139421d6-433e-4e9b-876f-54cfc7f8e0c8 .shogun-image-content {
  
    align-items: center;
  
}

.s-139421d6-433e-4e9b-876f-54cfc7f8e0c8.shg-align-container {
  display: flex;
  justify-content: center
}

.s-139421d6-433e-4e9b-876f-54cfc7f8e0c8.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-139421d6-433e-4e9b-876f-54cfc7f8e0c8.shogun-image {
  box-sizing: border-box;
}

}
#s-db46cafd-d626-4547-8ed9-93679e5a84a1 {
  box-shadow:0px 0px 0px 0px rgba(189, 195, 226, 0);
margin-top: 27%;
margin-left: -25%;
margin-bottom: 0px;
margin-right: 9%;
padding-top: 3%;
padding-bottom: 3%;
background-color: rgba(189, 195, 226, 0);
}

#s-c82acb80-f07e-4d20-8064-4054b484255f {
  min-height: 150px;
background-color: rgba(247, 208, 61, 1);
}
@media (min-width: 1200px){#s-c82acb80-f07e-4d20-8064-4054b484255f {
  display: none;
}
#s-c82acb80-f07e-4d20-8064-4054b484255f, #wrap-s-c82acb80-f07e-4d20-8064-4054b484255f { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-c82acb80-f07e-4d20-8064-4054b484255f {
  display: none;
}
#s-c82acb80-f07e-4d20-8064-4054b484255f, #wrap-s-c82acb80-f07e-4d20-8064-4054b484255f { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-c82acb80-f07e-4d20-8064-4054b484255f {
  display: none;
}
#s-c82acb80-f07e-4d20-8064-4054b484255f, #wrap-s-c82acb80-f07e-4d20-8064-4054b484255f { display:none !important; }}







#s-c82acb80-f07e-4d20-8064-4054b484255f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c82acb80-f07e-4d20-8064-4054b484255f.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-a0abec25-b045-41d4-9888-86b1bccf5706 {
  min-height: 225px;
}
@media (min-width: 1200px){#s-a0abec25-b045-41d4-9888-86b1bccf5706 {
  display: none;
}
#s-a0abec25-b045-41d4-9888-86b1bccf5706, #wrap-s-a0abec25-b045-41d4-9888-86b1bccf5706 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-a0abec25-b045-41d4-9888-86b1bccf5706 {
  display: none;
}
#s-a0abec25-b045-41d4-9888-86b1bccf5706, #wrap-s-a0abec25-b045-41d4-9888-86b1bccf5706 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-a0abec25-b045-41d4-9888-86b1bccf5706 {
  display: none;
}
#s-a0abec25-b045-41d4-9888-86b1bccf5706, #wrap-s-a0abec25-b045-41d4-9888-86b1bccf5706 { display:none !important; }}
@media (min-width: 0px) {
[id="s-a0abec25-b045-41d4-9888-86b1bccf5706"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 768px) {
[id="s-a0abec25-b045-41d4-9888-86b1bccf5706"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-a0abec25-b045-41d4-9888-86b1bccf5706"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-a0abec25-b045-41d4-9888-86b1bccf5706"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

}

#s-041a91ae-6887-4793-a475-67d7e4f4f7ac {
  margin-top: 17%;
margin-bottom: 17%;
max-width: 150px;
text-align: center;
background-color: rgba(189, 195, 226, 0);
}







  img.s-041a91ae-6887-4793-a475-67d7e4f4f7ac.shogun-image {
    
    
  }


.s-041a91ae-6887-4793-a475-67d7e4f4f7ac .shogun-image-content {
  
    align-items: center;
  
}

.s-041a91ae-6887-4793-a475-67d7e4f4f7ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-041a91ae-6887-4793-a475-67d7e4f4f7ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-041a91ae-6887-4793-a475-67d7e4f4f7ac.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-041a91ae-6887-4793-a475-67d7e4f4f7ac.shogun-image {
    
    
  }


.s-041a91ae-6887-4793-a475-67d7e4f4f7ac .shogun-image-content {
  
    align-items: center;
  
}

.s-041a91ae-6887-4793-a475-67d7e4f4f7ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-041a91ae-6887-4793-a475-67d7e4f4f7ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-041a91ae-6887-4793-a475-67d7e4f4f7ac.shogun-image {
  box-sizing: border-box;
}

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





  img.s-041a91ae-6887-4793-a475-67d7e4f4f7ac.shogun-image {
    
    
  }


.s-041a91ae-6887-4793-a475-67d7e4f4f7ac .shogun-image-content {
  
    align-items: center;
  
}

.s-041a91ae-6887-4793-a475-67d7e4f4f7ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-041a91ae-6887-4793-a475-67d7e4f4f7ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-041a91ae-6887-4793-a475-67d7e4f4f7ac.shogun-image {
  box-sizing: border-box;
}

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





  img.s-041a91ae-6887-4793-a475-67d7e4f4f7ac.shogun-image {
    
    
  }


.s-041a91ae-6887-4793-a475-67d7e4f4f7ac .shogun-image-content {
  
    align-items: center;
  
}

.s-041a91ae-6887-4793-a475-67d7e4f4f7ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-041a91ae-6887-4793-a475-67d7e4f4f7ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-041a91ae-6887-4793-a475-67d7e4f4f7ac.shogun-image {
  box-sizing: border-box;
}

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





  img.s-041a91ae-6887-4793-a475-67d7e4f4f7ac.shogun-image {
    
    
  }


.s-041a91ae-6887-4793-a475-67d7e4f4f7ac .shogun-image-content {
  
    align-items: center;
  
}

.s-041a91ae-6887-4793-a475-67d7e4f4f7ac.shg-align-container {
  display: flex;
  justify-content: center
}

.s-041a91ae-6887-4793-a475-67d7e4f4f7ac.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-041a91ae-6887-4793-a475-67d7e4f4f7ac.shogun-image {
  box-sizing: border-box;
}

}
#s-acd31824-4e3a-401e-8768-b6730f751525 {
  box-shadow:0px 0px 0px 0px rgba(189, 195, 226, 0);
margin-top: 25%;
margin-left: -25%;
margin-bottom: 0px;
margin-right: 9%;
padding-top: 3%;
padding-bottom: 3%;
background-color: rgba(189, 195, 226, 0);
}

#s-7efc1f99-d65d-4054-b93d-f5e8453afca2 {
  min-height: 50px;
}








#s-7efc1f99-d65d-4054-b93d-f5e8453afca2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7efc1f99-d65d-4054-b93d-f5e8453afca2.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7 {
  margin-top: 5%;
margin-left: 11%;
margin-bottom: 5%;
margin-right: 11%;
text-align: center;
}
@media (min-width: 1200px){#s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7 {
  display: none;
}
#s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7, #wrap-s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7 {
  display: none;
}
#s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7, #wrap-s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7 { display:none !important; }}@media (min-width: 768px) and (max-width: 991px){#s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7 {
  display: none;
}
#s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7, #wrap-s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7 { display:none !important; }}






  img.s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7.shogun-image {
    
    
  }


.s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7 .shogun-image-content {
  
    align-items: center;
  
}

.s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7.shogun-image {
    
    
  }


.s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7 .shogun-image-content {
  
    align-items: center;
  
}

.s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7.shogun-image {
  box-sizing: border-box;
}

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





  img.s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7.shogun-image {
    
    
  }


.s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7 .shogun-image-content {
  
    align-items: center;
  
}

.s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7.shogun-image {
  box-sizing: border-box;
}

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





  img.s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7.shogun-image {
    
    
  }


.s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7 .shogun-image-content {
  
    align-items: center;
  
}

.s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7.shogun-image {
  box-sizing: border-box;
}

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





  img.s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7.shogun-image {
    
    
  }


.s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7 .shogun-image-content {
  
    align-items: center;
  
}

.s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7.shg-align-container {
  display: flex;
  justify-content: center
}

.s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-89c487d8-3b93-4f63-aeed-ed2d2e3be9a7.shogun-image {
  box-sizing: border-box;
}

}
#s-64c2b85e-7697-4290-81bf-00023e800e64 {
  margin-left: 10%;
margin-right: 10%;
text-align: center;
}
@media (max-width: 767px){#s-64c2b85e-7697-4290-81bf-00023e800e64 {
  display: none;
}
#s-64c2b85e-7697-4290-81bf-00023e800e64, #wrap-s-64c2b85e-7697-4290-81bf-00023e800e64 { display:none !important; }}






  img.s-64c2b85e-7697-4290-81bf-00023e800e64.shogun-image {
    
    
  }


.s-64c2b85e-7697-4290-81bf-00023e800e64 .shogun-image-content {
  
    align-items: center;
  
}

.s-64c2b85e-7697-4290-81bf-00023e800e64.shg-align-container {
  display: flex;
  justify-content: center
}

.s-64c2b85e-7697-4290-81bf-00023e800e64.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-64c2b85e-7697-4290-81bf-00023e800e64.shogun-image {
  box-sizing: border-box;
}

@media (min-width: 1200px){





  img.s-64c2b85e-7697-4290-81bf-00023e800e64.shogun-image {
    
    
  }


.s-64c2b85e-7697-4290-81bf-00023e800e64 .shogun-image-content {
  
    align-items: center;
  
}

.s-64c2b85e-7697-4290-81bf-00023e800e64.shg-align-container {
  display: flex;
  justify-content: center
}

.s-64c2b85e-7697-4290-81bf-00023e800e64.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-64c2b85e-7697-4290-81bf-00023e800e64.shogun-image {
  box-sizing: border-box;
}

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





  img.s-64c2b85e-7697-4290-81bf-00023e800e64.shogun-image {
    
    
  }


.s-64c2b85e-7697-4290-81bf-00023e800e64 .shogun-image-content {
  
    align-items: center;
  
}

.s-64c2b85e-7697-4290-81bf-00023e800e64.shg-align-container {
  display: flex;
  justify-content: center
}

.s-64c2b85e-7697-4290-81bf-00023e800e64.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-64c2b85e-7697-4290-81bf-00023e800e64.shogun-image {
  box-sizing: border-box;
}

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





  img.s-64c2b85e-7697-4290-81bf-00023e800e64.shogun-image {
    
    
  }


.s-64c2b85e-7697-4290-81bf-00023e800e64 .shogun-image-content {
  
    align-items: center;
  
}

.s-64c2b85e-7697-4290-81bf-00023e800e64.shg-align-container {
  display: flex;
  justify-content: center
}

.s-64c2b85e-7697-4290-81bf-00023e800e64.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-64c2b85e-7697-4290-81bf-00023e800e64.shogun-image {
  box-sizing: border-box;
}

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





  img.s-64c2b85e-7697-4290-81bf-00023e800e64.shogun-image {
    
    
  }


.s-64c2b85e-7697-4290-81bf-00023e800e64 .shogun-image-content {
  
    align-items: center;
  
}

.s-64c2b85e-7697-4290-81bf-00023e800e64.shg-align-container {
  display: flex;
  justify-content: center
}

.s-64c2b85e-7697-4290-81bf-00023e800e64.shogun-image-container {
  display: inline-block;
  box-sizing: border-box;
}

#s-64c2b85e-7697-4290-81bf-00023e800e64.shogun-image {
  box-sizing: border-box;
}

}
/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
  opacity: 0;
}
.shogun-lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.shogun-lazyload-bg-image {
  display: none;
}

.shogun-root a:empty,
.shogun-root article:empty,
.shogun-root dl:empty,
.shogun-root h1:empty,
.shogun-root h2:empty,
.shogun-root h3:empty,
.shogun-root h4:empty,
.shogun-root h5:empty,
.shogun-root h6:empty,
.shogun-root p:empty,
.shogun-root section:empty,
.shogun-root ul:empty {
  display: unset;
}

.shogun-root div:empty {
  display: inline-block;
}

/* User Content Animations --> */
[data-animations*="enterviewport"][data-animations*="fadeIn"],
[data-animations*="enterviewport"][data-animations*="zoomIn"] {
  opacity: 0;
}
/* <-- User Content Animations */

.shogun-form-error-msg, .shogun-form-field-error-msg {
  display: flex;
  align-items: center;
  color: #dc143c;
}

.shogun-badge {
  margin-bottom: 50px;
}

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

.shg-c:after,.shg-c:before{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width:1024px){.shg-box,.shg-c{background-attachment:scroll!important}}@media only screen and (min-width:1024px) and (max-height:1366px) and (-webkit-min-device-pixel-ratio:1.5) and (hover:none) and (orientation:landscape){.shg-box{background-attachment:scroll!important}}#mc_embed_signup .clear{width:auto!important;height:auto!important;visibility:visible!important}.shg-clearfix:after{content:"";display:block;clear:both}.shogun-image{max-width:100%;min-height:inherit;max-height:inherit;display:inline!important;border:0;vertical-align:middle}.shg-fw{margin-left:calc(50% - 50vw);width:100vw}.shg-fw .shg-fw{margin-left:auto;margin-right:auto;width:100%}div[data-shg-lightbox-switch]{cursor:pointer}.shg-lightbox{position:fixed;z-index:999999;left:0;top:0;width:100%;height:100%;overflow:hidden;background-color:#000;background-color:rgba(0,0,0,.85)}.shg-lightbox.hidden{display:none!important}.shg-lightbox .shg-lightbox-content{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:100%;text-align:center}.shg-lightbox .shg-lightbox-close{position:absolute;right:0;padding:5px 0;color:#fff;font-size:45px;margin-right:10px;line-height:30px;user-select:none;cursor:pointer;z-index:1}.shg-lightbox .shg-lightbox-image-container{padding:25px}.shg-lightbox .shg-lightbox-image{margin:auto;max-height:90vh;max-width:100%}.shg-lightbox .shg-lightbox-close:focus,.shg-lightbox .shg-lightbox-close:hover{color:#a2a2a2;text-decoration:none;cursor:pointer}.shg-lightbox .shg-lightbox-nav{cursor:pointer;position:absolute;top:50%;width:35px;height:100px;background-size:contain;background-repeat:no-repeat;background-position:center;transform:translate(0,-50%);z-index:1}.shg-lightbox .shg-lightbox-nav.hidden{display:none!important}.shg-lightbox .shg-lightbox-nav.shg-nav-left{left:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==)}.shg-lightbox .shg-lightbox-nav.shg-nav-right{right:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+)}@media screen and (min-width:769px){.shg-lightbox .shg-lightbox-image-container{padding:50px}}.shogun-lazyload:not([src]),.shogun-lazyloading:not([src]){opacity:0}.shogun-lazyloaded{opacity:1;transition:opacity .3s}.shogun-lazyload-bg-image{display:none}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{display:inline-block}[data-animations*=enterviewport][data-animations*=fadeIn],[data-animations*=enterviewport][data-animations*=zoomIn]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}