.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-687f0eda-d653-4248-b944-c675e4160653 {
  min-height: 50px;
}








#s-687f0eda-d653-4248-b944-c675e4160653 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-687f0eda-d653-4248-b944-c675e4160653.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-81bf5a64-e197-4057-900e-90e6c4627c5b {
  min-height: 50px;
}








#s-81bf5a64-e197-4057-900e-90e6c4627c5b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-81bf5a64-e197-4057-900e-90e6c4627c5b.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.hero-banner {
    margin: 0 !important;
}

.hero-banner--m-bottom {
    margin-bottom: 60px;
}


.hero-banner .slick-dots {
    bottom: 35px;
}

.hero-banner .slick-dots > li:only-child {
    display: none;
}


.hero-banner .slick-dots li {
    width:115px;
    height: 4px;
    margin: 0;
    padding: 5px;
}

.hero-banner .slick-dots button {
    width: 100%;
    height: 2px;
    padding: 0;
    background-color: #ffffff;
    color: #cac3c361;
    box-shadow: inset 1px 1px 4px 1px;
}

.hero-banner .slick-dots button:before {
    opacity: 0 !important;
}

.hero-banner .slick-dots .slick-active .dots-btn {
    height: 4px;
    box-shadow: 1px 1px #cac3c361;
    color: #cac3c361 !important;
    background-color: #ffffff !important
}

.hero-banner__inner {
    min-height: 350px;
    opacity: 1;
    position: relative;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-banner__image, .hero-banner__images-box {
    width: 100%;
}

.hero-banner__image--desktop {
    display: flex;
    position: relative;
}

.hero-banner__image--desktop img {
    max-height: calc(100vh - 45px);
}

.hero-banner__image--phone {
    display: none;
}

.hero-banner__image img {
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    object-fit: cover;
}

.hero-banner__texture {
    display: flex;
    position: absolute;
    height: 100%;
    max-width: 14%;
    top: 0;
}

.hero-banner__texture img {
    object-fit: cover;
}

.hero-banner .hero-banner__slide:nth-child(odd) .hero-banner__texture {
    right: 0;
}

.hero-banner .hero-banner__slide:nth-child(even) .hero-banner__texture {
    left: 0;
}

.hero-banner .hero-banner__slide:first-child .hero-banner__texture {
    display: none;
}

.hero-banner__reviews-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFEBE3;
    height: 22px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-family: 'Basic Sans';
    color: #403822;
}

.hero-banner__reviews-banner-stars {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: 20px;
    margin-bottom: 2px;
}

.hero-banner__reviews-banner-stars i {
    line-height: 1;
    margin-right: 2px;
}

.hero-banner__reviews-banner-stars svg {
    width: 14px;
}

@media (min-width: 1024px) {
    .hero-banner__reviews-banner {
        height: 30px;
        font-size: 20px;
    }
    
    .hero-banner__reviews-banner-stars {
        margin-bottom: 3px;
    }
    
    .hero-banner__reviews-banner-stars svg {
        width: 22px;
    }
}

.hero-banner__text-content {
    padding: 65px;
    padding-left: 125px;
    padding-right: 85px;
    max-width: 1090px;
    position: absolute;
}

.hero-banner__title {
    font-family: "Span", sans-serif;
    max-width: 1090px;
    font-weight: bold;
    font-size: 48px;
    line-height: 64px;
    margin-bottom: 20px;
}

.hero-banner__copy {
    max-width: 1090px;
    font-family: "Basic Sans", sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 40px;
}

.hero-banner__cta {
    font-family: "Span", sans-serif;
    font-weight: 300;
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    display: block;
    padding: 12px;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    border: 1px solid #fff;
}

.hero-banner__cta:hover {
    box-shadow: 6px 6px 0px 0px !important;
    transition: all 0.4s;
    text-decoration: none;
}

.hero-banner__cta-container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

@media (max-width: 767px) {
    .hero-banner__cta-container {
        display: block;
        width: 100%;
    }
    
    .hero-banner__cta {
        width: 100%;    
    }
    
    .hero-banner__ctaTwo {
        display: none;
    }
    
    .hero-banner__images-box .hero-banner__ctaTwo {
        display: inline-block;
        position: absolute;
        bottom: 30px;
        left: 15px;
        width: 198px;
        height: 75px;
        background: #ffffff;
        border: 1px solid #403822;
        padding: 6px 15px;
        font-size: 18px;
    }
    
    .hero-banner__ctaTwo span {
        font-size: 14px !important;
    }
}

@media (min-width: 768px) {
 .hero-banner__ctaTwo {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 250px;
        height: 56px;
        background: #ffffff;
        color: #403822;
        border: 1px solid #403822;
        margin-right: 60px;
        font-size: 18px;
        padding: 6px;
        line-height: 1.2;
    }   
    
    .hero-banner__ctaTwo.large {
        width: 350px;
        height: 67px;
        font-size: 24px;
    }
    
    .hero-banner__ctaTwo.large span {
        font-size: 18px;
    }
    
    .hero-banner__ctaTwo span {
        font-size: 14px;    
    }
    
    .hero-banner__cta {
        width: 250px;
    }
    
    .hero-banner__cta.hide-desktop {
        display: none;
    }
}

.hero-banner__ctaTwo span {
    position: relative;
    padding-right: 75px;
}

.hero-banner__ctaTwo span::after {
    content: '';
    display: block;
    position: absolute;
    top: 7px;
    right: -8px;
    width: 75px;
    height: 6px;
    z-index: 10;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("data:image/svg+xml,%3Csvg width='75' height='7' viewBox='0 0 75 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M74.9453 3.453L69.9648 0.532744L69.926 6.30612L74.9453 3.453ZM0.496643 3.45311L70.4421 3.92278L70.4488 2.9228L0.503357 2.45314L0.496643 3.45311Z' fill='%23403822'/%3E%3C/svg%3E%0A");
}

.hero-banner__text-content--transparent {
    background-color: transparent;
}

.hero-banner__text-content--transparent .hero-banner__title,
.hero-banner__text-content--transparent .hero-banner__copy,
.hero-banner__text-content--transparent .hero-banner__cta {
    color: white;
}



.hero-banner__text-content--black {
    background-color: transparent;
}

.hero-banner__text-content--black .hero-banner__title,
.hero-banner__text-content--black .hero-banner__copy,
.hero-banner__text-content--black .hero-banner__cta {
    color: white;
}

.hero-banner__text-content--white {
    background-color: white;
}

.hero-banner__text-content--white .hero-banner__title,
.hero-banner__text-content--white .hero-banner__copy {
    color: #403822;
}

.hero-banner__text-content--white .hero-banner__cta {
    color: #403822;
    border-color: #403822;
}

.hero-banner__text-content--white .hero-banner__ctaTwo {
    color: #403822;
    border-color: #403822;
}

.hero-banner__text-content--white .hero-banner__ctaTwo span::after {
    background-image: url("data:image/svg+xml,%3Csvg width='75' height='7' viewBox='0 0 75 7' fill='%23788F97' stroke='%23788F97' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M74.9453 3.453L69.9648 0.532744L69.926 6.30612L74.9453 3.453ZM0.496643 3.45311L70.4421 3.92278L70.4488 2.9228L0.503357 2.45314L0.496643 3.45311Z' fill='%23403822'/%3E%3C/svg%3E%0A");
}

.hero-banner__text-content--default {
    background-color: transparent;
}

@media (max-width: 767px) {
    .hero-banner__cta {
        background: #ffffff;
    }
}

.hero-banner__text-content--default .hero-banner__title,
.hero-banner__text-content--default .hero-banner__copy {
    color: #403822;
}

@media only screen and (min-width: 800px) {

    .hero-banner--m-bottom {
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 767px) {

    .hero-banner__text-content--white .hero-banner__cta:hover {
        box-shadow: 6px 6px 0px 0px #DAF7FE !important;
    }
    
    .hero-banner__text-content--transparent .hero-banner__cta:hover {
        box-shadow: 6px 6px 0px 0px #FFEBE3 !important;
    }

}

@media only screen and (max-width: 767px) {
    .hero-banner .hero-banner__slide .hero-banner__text-content {
        align-items: center;
    }
    
    .hero-banner .slick-dots {
        bottom: 25px;
    }
    .hero-banner .slick-dots li {
        width:100px;
    }
    .hero-banner__image--desktop {
        display: none;
    }
    
    .hero-banner__texture {
        max-width: 20%;
    }

    
    .hero-banner__image--phone {
        display: block;
        position: relative;
    }
    
    
    .hero-banner__inner {
        justify-content: flex-end;
    }
    
    .hero-banner__images-box {
        order: 1;
    }
    
    .hero-banner__text-content {
        order: 3;
        padding: 45px;
        padding-left: 55px;
        padding-right: 55px;
        padding-bottom: 65px;
        max-width: 100%;
        width: 100%;
        position: static;
    }
    
    .hero-banner__reviews-banner {
        order: 2;
    }
    
    .hero-banner__slide .hero-banner__text-content .hero-banner__title, .hero-banner__slide .hero-banner__text-content .hero-banner__copy {
        text-align: center;
    }
    
    .hero-banner__cta {
        box-shadow: 6px 6px 0px 0px #FFEBE3 !important;
        margin-bottom: 15px;
    }
}


@media only screen and (max-width: 600px) {
    .hero-banner__text-content {
        padding: 26px;
        padding-bottom: 60px;
    }
    
    .hero-banner__title {
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 12px;
    }
    
    .hero-banner__copy {
        max-width: 315px;
        font-size: 21px;
        line-height: 26px;
        margin-bottom: 30px;
    }
    
    .hero-banner__cta {
        max-width: 315px;
    }
}


/* slick */

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

#s-180cdf54-d53f-46f4-91ce-e39552ce37d6 {
  min-height: 50px;
}








#s-180cdf54-d53f-46f4-91ce-e39552ce37d6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-180cdf54-d53f-46f4-91ce-e39552ce37d6.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}



.row-images--cards .slick-dots {
    display: none !important;
}

.row-images--cards .slick-dots li {
    width:auto;
    flex-grow: 2;
    max-width: 120px;
    height: 4px;
    margin: 0 5px;
}

.row-images--cards .slick-dots button {
    width: 100%;
    height: 2px;
    padding: 0;
    font-size: 0; 
    background-color: #938781;
    color: #cac3c361;
    box-shadow: inset 1px 1px 4px 1px;
}

.row-images--cards .slick-dots li button::before {
    content: none;
}

.row-images--cards .slick-dots .slick-active button {
    height: 4px;
    box-shadow: 1px 1px;
}

body .row-images .slick-dots .slick-active button:focus {
    background-color: #938781 !important;
}

.row-images--cards {
    padding: 40px 0;
    background: #F2F2F2;
}

.row-images--cards .row-images__header {
    margin-bottom: 34px;
}

.row-images--cards .row-images__sectionTitle {
    color: #201E1E;
    font-size: 45px;
    line-height: 60px;
    font-family: "Span", sans-serif;
    font-weight: normal;
    text-align: center;
}

.row-images--cards .row-images__sectionSubTitle {
    color: #201E1E;
    font-size: 20px;
    line-height: 1.3;
    font-family: "Span", sans-serif;
    font-weight: normal;
    text-align: center;
    padding: 0 40px;
}

.images-list {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1184px;
    width: 100%;
    margin: 0 auto;
}


.images-list__item {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

.images-list__item--over {
    padding:0 10px;
    justify-content: center;
}

.images-list__item--over .images-list__image {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}


.images-list--fourth .images-list__item {
    max-width: 25%;
    width: 100%;
}

.images-list__image > img, .images-list__texture > img {
    width: 100%;
}

.images-list__texture {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    display: flex;
    transition: all 0.4s;
}

.images-list__item:hover .images-list__texture {
    transform: translate(10px, 10px);
}

.images-list__title {
    margin-bottom: 15px;
}

.images-list__title h3 *, .images-list__title h3 {
    color: #403822;
    font-size: 28px;
    line-height: 37px;
    font-family: "Span", sans-serif;
    font-weight: bold;
}

@media only screen and (max-width: 768px) {
    .row-images--cards.row-images {
        padding: 50px 5px;
        padding-right: 0;
        padding-bottom: 60px;
    }
    
   .images-list .images-list__item--over.images-list__item {
       max-width: 260px;
   }
   
   .row-images--cards .images-list.images-list--slider {
       max-width: 100%;
       margin: 0 auto;
   }
   
    .images-list .images-list__item--under.images-list__item {
       max-width: 100%;
   }
   
   .images-list--slider .images-list__item {
       margin-bottom: 20px;
   }
   
}

@media only screen and (max-width: 550px) {
    .row-images--cards .row-images__header {
        margin-bottom: 41px;
    }

    .row-images--cards .row-images__sectionTitle {
        font-size: 32px;
        line-height: 43px;
    }
    
    .row-images--cards .row-images__sectionSubTitle {
        font-size: 14px;
    }
    
    .images-list--slider .images-list__item {
       margin-bottom: 25px;
   }
}
@media only screen and (max-width: 480px) {
    .row-images--cards .slick-track {
        margin-left: -50px;
    }
}

/* slick */

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

.row-images__sectionSubTitle {
    font-family: "Basic Sans", sans-serif !important;
}

.images-list__title h3 {
    margin-top: 12px;
}

.images-list__title p {
    font-family: "Basic Sans", sans-serif;
    font-size: 14px;
}

@media (min-width: 551px) {
    .images-list__title p {
        font-size: 16px;
    }
}

.images-list__viewAll {
    text-decoration: underline !important;
    color: #403822;
    font-size: 14px;
}

@media (min-width: 551px) {
    .images-list__viewAll {
        font-size: 16px;
    }
}

.images-list__viewAll:hover,
.images-list__viewAll:focus {
    opacity: 0.7;
}

.row-images__footer {
    text-align: center;
}

.footer-cta {
    display: block;
    font-family: "Span", sans-serif;
    font-weight: bold;
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    color: #403823;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 45px;
    padding: 12px 10px;
    max-width: 360px;
    width: 100%;
    border: 1px solid #403823;
    text-transform: capitalize;
}

.footer-cta:hover,
.footer-cta:focus {
    box-shadow: 6px 6px 1px 1px #403822;
    transition: all 0.7s ease;
    text-decoration: none;
}

.footer-text-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-text-flex p {
    margin-bottom: 0;
    margin-right: 1rem;
    font-family: "Basic Sans", sans-serif;
    font-size: 14px;
    color: #403823;
}

.footer-text-flex a {
    background: none;
    border: none;
    margin: 0;
    padding: 0;
    font-family: "Basic Sans", sans-serif;
    font-size: 14px;
    color: #403823;
    font-weight: 600;
    text-decoration: underline;
}

.footer-text-flex a:hover,
.footer-text-flex a:focus {
    opacity: 0.7;
}

@media (min-width: 551px) {
    .footer-text-flex p {
        font-size: 16px;
    }

    .footer-text-flex a {
        font-size: 16px;
    }
}

.row-images--icons {
    padding: 40px 0;
    padding-bottom: 50px;
}

.images-list {
    display: flex;
    flex-wrap: wrap;
    max-width: 1162px;
    width: 100%;
    margin: 0 auto;
}

.row-images--combo .images-list {
    padding: 0 20px;
    max-width: 1285px;
}


.images-list__item {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

.row-images--combo .images-list__item {
    margin-bottom: 0px;
}

.images-list__item--under {
    align-items: flex-start;
    padding: 0 35px;
}

.row-images--combo .images-list__item--under {
    padding: 0 10px;
}

.row-images--icons .images-list__item--under {
    align-items: center;
}

.images-list__item-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 2;
}

.row-images--combo .images-list__item-inner {
    flex-direction: row;
    align-items: center;
}



@media only screen and (min-width: 740px) {
    .row-images--icons .images-list {
        justify-content: center;
    }
}

.images-list--half .images-list__item {
    max-width: 50%;
    width: 100%;
}

.images-list--third .images-list__item {
    max-width: 33.333333%;
    width: 100%;
}


.images-list--fourth .images-list__item {
    max-width: 25%;
    width: 100%;
}

.images-list--fifth .images-list__item {
    max-width: 20%;
    width: 100%;
}


.row-images--icons .images-list__item--under .images-list__image {
    margin-bottom: 35px;
    margin-left: auto;
    margin-right: auto;
}


.row-images--icons.row-images--combo .images-list__item--under .images-list__image {
     margin-bottom: 0px;
     margin-right: 28px;
}

.images-list__item--under .images-list__image:nth-child(2) {
    margin-top: 14px;
    margin-bottom: 16px;
}


.row-images--icons .images-list__text-box {
    margin-top: 0;
}

.row-images--icons .images-list__text-box {
    margin-top: 0;
}

.row-images--combo .images-list__title {
    max-width: 170px;
}


.images-list__title h3 *, .images-list__title h3 {
    color: #403822;
    font-size: 26px;
    line-height: 1;
    font-weight: 400;
    font-family: "Span", sans-serif;
}

.images-list__text {
    margin-bottom: 25px;
    max-width: 185px;
    color: #201E1E;
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    font-family: "Basic Sans", sans-serif;
}

.row-images--combo .images-list__text {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0px;
    max-width: 130px;
}


@media only screen and (max-width: 768px) {
    .row-images--icons {
        padding: 40px 0px;
    }

   .row-images--icons .images-list.images-list--slider {
       max-width: 100%;
       margin: 0 auto;
   }
   
   .row-images--icons .images-list__item--under {
        padding: 0px;
    }
   
   .row-images--icons .images-list .images-list__item--under.images-list__item {
       max-width: none;
       display: flex;
       justify-content: center;
       align-items: center;
   }
   
   .row-images--icons.row-images--combo .images-list .images-list__item--under.images-list__item { 
       max-width: 50%;
       width: 100%;
   }
   
   .row-images--icons .images-list__item-inner {
       display: flex;
       justify-content: flex-start;
       align-items: center;
    }
    
    .row-images--icons.row-images--combo .images-list__item-inner {
        flex-direction: column;
    }
   
   .row-images--icons .images-list--slider .images-list__item {
       margin-bottom: 0px;
   }
   
   .row-images--combo .images-list__item {
        margin-top: 32px;
    }
    .row-images--combo .images-list__item:nth-child(1), .row-images--combo .images-list__item:nth-child(2) {
        margin-top: 0px;
    }
   
   .row-images--icons .images-list--slider .slick-track {
       display: flex;
   }
   
   .row-images--icons .images-list--slider .slick-slide {
       height: inherit !important;
   }
   
   .row-images--icons .images-list--slider .slick-dots {
       margin-top: 20px;
   }
   
    .row-images--icons .images-list__item--under .images-list__image {
        margin-bottom: 25px;
    }
    
    .images-list__item--under .images-list__image:nth-child(2) {
        margin-top: 14px;
        margin-bottom: 8px;
    }
    
    .row-images--icons.row-images--combo .images-list__item--under .images-list__image {
        margin-right: 0px;
        margin-left: 0px;
        margin-bottom: 3px;
        flex-grow: 2;
        display: flex;
        align-items: center;
    }
    
    .row-images--icons .images-list__title {
        margin-bottom: 8px;
    }

    .row-images--icons .images-list__title h3 *, .images-list__title h3 {
        font-size: 22px;
        line-height: 1;
    }
    
    .row-images--icons .images-list__text {
        margin-bottom: 12px;
        font-size: 14px;
        line-height: 16px;
        max-width: 145px;
    }
    
    .row-images--combo .images-list__text {
        text-align: center;
    }
    
    .row-images--icons.row-images--combo .images-list__text-box {
        margin-top: auto;
        padding: 0 10px;
    }
   
}


@media only screen and (max-width: 600px) { 
    .row-images--icons .slick-dots {
        justify-content: center;
        position: static;
        padding: 0 25px;
    }
}

@media only screen and (max-width: 500px) { 
    .image-text-section__icons {
        padding: 45px 20px;
    }
    
    .image-text-section__icon {
        margin: 0 20px;
    }
    
    .row-images--combo .images-list__text {
        max-width: 140px;
    }
}

@media only screen and (max-width: 400px) {
    .row-images .slick-dots li {
        margin: 0;
    }
    
    .row-images--icons .images-list__item--under {
        padding: 0px;
    }
}

#s-3537b2b1-6f9b-4ba5-a4d9-33821d184455 {
  margin-bottom: 0px;
min-height: 50px;
}








#s-3537b2b1-6f9b-4ba5-a4d9-33821d184455 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3537b2b1-6f9b-4ba5-a4d9-33821d184455.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-da38d35d-f71d-4557-b2dc-b2b020c79370 {
  min-height: 50px;
}








#s-da38d35d-f71d-4557-b2dc-b2b020c79370 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-da38d35d-f71d-4557-b2dc-b2b020c79370.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#s-b8e2ea03-abb5-4cec-943e-53b9340cd480 {
  min-height: 50px;
}








#s-b8e2ea03-abb5-4cec-943e-53b9340cd480 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b8e2ea03-abb5-4cec-943e-53b9340cd480.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.size-fit-section {
    background: #435256;
}

.size-fit-section .container {
    max-width: 1330px;
}

.size-fit-top {
    padding: 30px;
    text-align: center;
    color: #ffffff;
}

.size-fit-top h5 {
    color: #F2F2F2;
    font-size: 40px;
    margin-bottom: 20px;
}

.size-fit-top p {
    font-size: 18px;
    font-weight: 300;
    font-family: 'Basic Sans', sans-serif;
    max-width: 615px;
    margin: 0 auto;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.size-fit-mid {
    background-repeat: repeat;
}

.size-fit-image-text {
    padding: 20px 0;
}

.size-fit-text {
    background: #DAF7FD;
    padding: 24px 72px;
    text-align: center;
}

.size-fit-text-heading {
    color: #403822;
    font-family: 'Span';
    font-size: 20px;
    margin-bottom: 16px;
}

.size-fit-text-items {
    list-style-type: none;
    padding: 0;
    max-width: 170px;
    margin: 0 auto;
    text-align: left;
}

.size-fit-text-item {
    position: relative;
    font-size: 12px;
    color: #403822;
    font-weight: 300;
    font-family: 'Basic Sans', sans-serif;
    margin-bottom: 15px;
}

.size-fit-text-item::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 2px;
    display: block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7 14C3.13433 14 0 10.8657 0 7.00004C0 3.13438 3.13433 7.18425e-05 7 7.18425e-05C10.8657 -0.0172972 14 3.11697 14 6.98262C14 10.8483 10.8657 14 7 14ZM7 1.02743C3.70896 1.02743 1.04478 3.6916 1.04478 6.98262C1.04478 10.2737 3.70896 12.9378 7 12.9378C10.291 12.9378 12.9552 10.2737 12.9552 6.98262C12.9552 3.6916 10.291 1.02743 7 1.02743ZM6.61692 9.10699C6.408 9.31591 6.05964 9.31591 5.85072 9.10699L3.8134 7.10445C3.60448 6.89553 3.60448 6.56468 3.8134 6.35576C4.02232 6.14684 4.37068 6.14684 4.5796 6.35576L6.2338 7.97509L9.40295 4.85819C9.61187 4.64928 9.96023 4.64928 10.1692 4.85819C10.3781 5.06711 10.3781 5.39796 10.1692 5.60688L6.61692 9.10699Z' fill='%23403822'/%3E%3C/svg%3E%0A");}

.size-fit-bottom {
    padding: 20px 30px;
    text-align: center;
    color: #ffffff;
}

.size-fit-bottom h6 {
    color: #FFEBE3;
    font-size: 18px;
    font-family: 'Basic Sans', sans-serif;
    margin-bottom: 12px;
}

.size-fit-bottom p {
    font-family: 'Basic Sans', sans-serif;
        font-weight: 300;
    font-size: 15px;
    max-width: 440px;
    margin: 0 auto;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.size-fit-bottom a {
    text-decoration: underline;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Basic Sans', sans-serif;
    color: #F2F2F2;
}

.size-fit-bottom a:hover,
.size-fit-bottom a:focus {
    opacity: 0.7;
}

@media (min-width: 940px) {
    
    .size-fit-top {
        padding: 60px 0;
    }
    
    .size-fit-top h5 {
        color: #F2F2F2;
        font-size: 45px;
        margin-bottom: 10px;
    }
    
    .size-fit-image-text {
        display: flex;
        padding: 32px 0;
    }
    
    .size-fit-image {
        display: flex;
        flex-direction: column;
        width: 60%;
    }
    
    .size-fit-image img {
        height: 100%;
        object-fit: cover;
    }
    
    .size-fit-text {
        display: flex;
        flex-direction: column;
        width: 40%;
        padding-top: 130px;
        padding-bottom: 70px;
    }
    
    .size-fit-text-heading {
        font-size: 36px;
        margin-bottom: 32px;
    }
    
    .size-fit-text-items {
        padding: 0;
            max-width: 350px;
    }
    
    .size-fit-text-item {
        font-size: 21px;
        margin-bottom: 26px;
    }
    
    .size-fit-text-item::before {
        left: -43px;
        top: 3px;
        width: 26px;
        height: 26px;
        background-image: url("data:image/svg+xml,%3Csvg width='27' height='26' viewBox='0 0 27 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.6153 25.8846C6.62733 25.8846 0.961426 20.2187 0.961426 13.2308C0.961426 6.24291 6.62733 0.577034 13.6153 0.577034C20.6032 0.545636 26.2691 6.21143 26.2691 13.1993C26.2691 20.1872 20.6032 25.8846 13.6153 25.8846ZM13.6153 2.43418C7.66608 2.43418 2.85006 7.25017 2.85006 13.1993C2.85006 19.1485 7.66608 23.9645 13.6153 23.9645C19.5645 23.9645 24.3805 19.1485 24.3805 13.1993C24.3805 7.25017 19.5645 2.43418 13.6153 2.43418ZM12.9228 17.0395C12.5451 17.4172 11.9154 17.4172 11.5377 17.0395L7.85488 13.4196C7.47722 13.0419 7.47722 12.4438 7.85488 12.0662C8.23254 11.6885 8.86227 11.6885 9.23994 12.0662L12.2302 14.9934L17.9591 9.35902C18.3367 8.98137 18.9665 8.98137 19.3441 9.35902C19.7218 9.73668 19.7218 10.3348 19.3441 10.7124L12.9228 17.0395Z' fill='%23403822'/%3E%3C/svg%3E%0A");
    }
    
    .size-fit-bottom {
        padding: 40px 0;
    }
    
    .size-fit-bottom h6 {
        font-size: 24px;
    }
    
    .size-fit-bottom p {
        font-size: 20px;
        margin-bottom: 26px;
    }
    
    .size-fit-bottom a {
        font-size: 18px;
    }
}
#s-410e7b8c-6f5a-4bdc-941c-3c998bb2ea3c {
  min-height: 50px;
}








#s-410e7b8c-6f5a-4bdc-941c-3c998bb2ea3c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-410e7b8c-6f5a-4bdc-941c-3c998bb2ea3c.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.as-seen-on-container {
    padding: 60px 30px;
    text-align: center;
}

.as-seen-on-topSection h5 {
    color: #201E1E;
    font-size: 32px;
    margin-bottom: 20px;
}

.as-seen-on-topSection img {
    max-width: 33px;
    margin-bottom: 20px;
}

.as-seen-on-textCarousel p {
    font-size: 18px;
    line-height: 1.3;
    font-family: 'Basic Sans', sans-serif;
    color: #403822;
    margin-bottom: 40px;
}

.as-seen-on-logoCarousel {
    margin-bottom: 20px;
}

.as-seen-on-logoCarouselItem {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 30px !important;
}

.as-seen-on-logoCarouselItem img {
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    height: 100% !important;
}

.as-seen-on-logoCarouselItem.slick-center img {
    border-bottom: 2px solid #403822;
}

.as-seen-on-logoCarouselItem:focus {
    outline-style: none !important;
}

.as-seen-on-logoCarouselItem:not(.slick-center) img {
    opacity: 0.4;
}

.as-seen-on-container .slick-next,
.as-seen-on-container .slick-prev {
    top: 25%;
    width: 20px;
    height: 36px;
}

.as-seen-on-container .slick-next::before {
    content: '';
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg width='21' height='38' viewBox='0 0 21 38' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.999996 37L19 19L0.999999 0.999999' stroke='%23403822' stroke-width='2'/%3E%3C/svg%3E%0A");    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    opacity: 1;
}

.as-seen-on-container .slick-prev::before {
    content: '';
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg width='21' height='38' viewBox='0 0 21 38' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 1L2 19L20 37' stroke='%23403822' stroke-width='2'/%3E%3C/svg%3E%0A");    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    opacity: 1;
}

 .as-seen-on-container .slick-slide {
     cursor: pointer;
     padding: 0 20px;
 }

.as-seen-on-container .slick-list.dragging, .slick-list.draggable:active:hover .slick-slide
  {
  cursor: grabbing;
  }
  
@media (min-width: 768px) {
    .as-seen-on-container {
        padding: 60px;
    }

    .as-seen-on-topSection h5 {
        font-size: 45px;
        margin-bottom: 30px;
    }
    
    .as-seen-on-logoCarouselItem {
        height: 100% !important;
    }
    
    .as-seen-on-topSection img {
        max-width: none;
        margin-bottom: 60px;
    }
    
    .as-seen-on-textCarousel p {
        font-size: 24px;
        margin-bottom: 120px;
    }
    
    .as-seen-on-logoCarouselItem img {
        height: auto !important;
    }
    
    .as-seen-on-container .slick-next,
    .as-seen-on-container .slick-prev {
        top: 5%;
        width: 20px;
        height: 36px;
    }

}
#s-5027364d-698c-409b-8fb8-22d0b45d53dc {
  box-shadow:5px 0px 0px 0px ;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
}

#s-732fa598-4dac-400d-9cf0-bc06bea81357 {
  min-height: 50px;
}








#s-732fa598-4dac-400d-9cf0-bc06bea81357 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-732fa598-4dac-400d-9cf0-bc06bea81357.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.review-carousel-heading {
    color: #201E1E;
    font-size: 32px;
    text-align: center;
    max-width: 535px;
    margin: 40px auto 24px auto;
    padding: 0 24px;
    text-transform: capitalize;
}

.review-carousel-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
}

.review-carousel-banner p {
    text-align: center;
    margin: 0;
    padding: 0 24px;
    font-size: 20px;
}

.review-carousel-reviews {
    padding: 40px 0 0 0;
}

.review-carousel-cards {
    padding: 0;
    margin: 0;
}

.review-carousel-card {
    background: #F2F2F2;
    border: 1px solid #788F97;
    padding: 24px;
    margin: 36px 12px;
}

.review-carousel-card.slick-slide {
     cursor: pointer;
 }

.review-carousel-card .slick-list.dragging, .slick-list.draggable:active:hover .slick-slide
  {
  cursor: grabbing;
  }
  

@media (min-width: 768px) {
    .review-carousel-section .slick-prev {
        left: 36%;
    }
    
    .review-carousel-section .slick-next {
        right: 36%;
    }
}
  
.review-carousel-section .slick-prev::before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='29.5' y='29.5' width='29' height='29' transform='rotate(-180 29.5 29.5)' fill='white'/%3E%3Cg clip-path='url(%23clip0_1213_57)'%3E%3Cpath d='M20.7377 5.02344L10.2617 15.4994' stroke='black' stroke-linecap='square'/%3E%3Cpath d='M20.7377 25.9755L10.2617 15.4995' stroke='black' stroke-linecap='square'/%3E%3C/g%3E%3Crect x='29.5' y='29.5' width='29' height='29' transform='rotate(-180 29.5 29.5)' stroke='%23333E48'/%3E%3Cdefs%3E%3CclipPath id='clip0_1213_57'%3E%3Crect width='11.89' height='22.367' fill='white' transform='translate(21.4448 26.6836) rotate(-180)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.review-carousel-section .slick-next::before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='29' height='29' fill='white'/%3E%3Cg clip-path='url(%23clip0_1213_50)'%3E%3Cpath d='M9.26228 24.9766L19.7383 14.5006' stroke='black' stroke-linecap='square'/%3E%3Cpath d='M9.26228 4.02449L19.7383 14.5005' stroke='black' stroke-linecap='square'/%3E%3C/g%3E%3Crect x='0.5' y='0.5' width='29' height='29' stroke='%23333E48'/%3E%3Cdefs%3E%3CclipPath id='clip0_1213_50'%3E%3Crect width='11.89' height='22.367' fill='white' transform='translate(8.55518 3.31641)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.review-carousel-section .slick-arrow {
    top: auto;
    bottom: -40px;
    z-index: 1000;
    width: 30px;
    height: 30px;
}

.review-carousel-card-stars {
    margin-bottom: 24px;
}

.review-carousel-card svg {
    width: 15px;
}

.review-carousel-card-content {
    font-family: 'Basic Sans', 'sans-serif';
    font-size: 14px;
    margin-bottom: 20px;
}

.review-carousel-card-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.review-carousel-card-info-left {
    margin-right: 16px;
}

.review-carousel-card-info-right p {
    margin: 0;
    margin-bottom: 8px;
    font-family: 'Basic Sans', 'sans-serif';
    color: #403822;
    font-size: 14px;
}

.review-carousel-card-info-right a {
    display: block;
    text-decoration: underline;
    color: #403822;
    font-size: 14px;
    font-family: 'Basic Sans', 'sans-serif';
    padding-right: 24px;
}

.review-carousel-footer {
    text-align: center;
    margin: 40px 0;
}

.review-carousel-footer a {
    text-decoration: underline;
    color: #201E1E;
    font-size: 20px;
}

.review-carousel-card-info-right a:hover,
.review-carousel-card-info-right a:focus {
    opacity: 0.7;
}

.review-carousel-footer a:hover,
.review-carousel-footer a:focus {
    opacity: 0.7;
}

.review-carousel-section .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F2F2F2;
    width: auto;
    left: 39%;
    right: auto;
    padding: 10px 20px;
}

@media (min-width: 551px) {
    .review-carousel-section .slick-dots {
        left: 44%;
    }
}

@media (min-width: 768px) {
    .review-carousel-section .slick-dots {
        left: 44%;
    }
}

.review-carousel-section .slick-dots button {
    border: 1px solid #788F97;
    border-radius: 50%;
}

.review-carousel-section .slick-dots li,
.review-carousel-section .slick-dots button,
.review-carousel-section .slick-dots button::before {
    width: 10px;
    height: 10px;
}

.review-carousel-section .slick-dots .slick-active button {
    background: #788F97;
}

.review-carousel-section .slick-dots button::before {
    content: '' !important;
}

@media (min-width: 1024px) {
    
    .review-carousel-heading {
        font-size: 45px;
        padding: 0;
    }
    
    .review-carousel-banner p {
        padding: 0;
        color: #201E1E;
    }
    
    .review-carousel-card {
        margin: 32px 24px;
    }
    
    .review-carousel-section .slick-dots {
        left: 45%;
    }
    
    .review-carousel-section .slick-prev {
        left: 38%;
    }
    
    .review-carousel-section .slick-next {
        right: 38%;
    }
    
    .review-carousel-card svg {
        width: 25px;
    }
    
    .review-carousel-card-content {
        font-size: 20px;
    }
    
    .review-carousel-card-info-left {
        margin-right: 24px;
    }

    .review-carousel-card-info-right p {
        font-size: 20px;
    }
    
    .review-carousel-card-info-right a {
        font-size: 20px;
    }
}

@media (min-width: 1200px) {
    .review-carousel-section .slick-dots {
        left: 46%;
    }
    
    .review-carousel-section .slick-prev {
        left: 40%;
    }
    
    .review-carousel-section .slick-next {
        right: 40%;
    }
}

@media (min-width: 1400px) {
    .review-carousel-section .slick-dots {
        left: 47%;
    }
    
    .review-carousel-section .slick-prev {
        left: 42%;
    }
    
    .review-carousel-section .slick-next {
        right: 42%;
    }
}

/*@media (min-width: 1600px) {*/
/*    .review-carousel-section .slick-dots {*/
/*        left: 48%;*/
/*    }*/
    
/*    .review-carousel-section .slick-prev {*/
/*        left: 44%;*/
/*    }*/
    
/*    .review-carousel-section .slick-next {*/
/*        right: 44%;*/
/*    }*/
/*}*/

/*@media (min-width: 1800px) {*/
/*    .review-carousel-section .slick-dots {*/
/*        left: 49%;*/
/*    }*/
    
/*    .review-carousel-section .slick-prev {*/
/*        left: 46%;*/
/*    }*/
    
/*    .review-carousel-section .slick-next {*/
/*        right: 46%;*/
/*    }*/
/*}*/
#s-d62d337d-ff8a-40b1-931e-5bba5639d80d {
  margin-left: auto;
margin-right: auto;
padding-top: 35px;
padding-left: 10%;
padding-bottom: 0px;
padding-right: 10%;
min-height: 50px;
}
@media (min-width: 1200px){#s-d62d337d-ff8a-40b1-931e-5bba5639d80d {
  max-width: 100%;
}
}@media (min-width: 992px) and (max-width: 1199px){#s-d62d337d-ff8a-40b1-931e-5bba5639d80d {
  max-width: 1199px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-d62d337d-ff8a-40b1-931e-5bba5639d80d {
  max-width: 991px;
}
}@media (max-width: 767px){#s-d62d337d-ff8a-40b1-931e-5bba5639d80d {
  padding-left: 0%;
padding-right: 0%;
max-width: 767px;
}
}







#s-d62d337d-ff8a-40b1-931e-5bba5639d80d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d62d337d-ff8a-40b1-931e-5bba5639d80d.shg-box.shg-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 992px) and (max-width: 1199px){#s-c7b78e9a-607c-42e5-99c9-9d53e13a1e3c {
  max-width: 1199px;
}
}@media (min-width: 768px) and (max-width: 991px){#s-c7b78e9a-607c-42e5-99c9-9d53e13a1e3c {
  max-width: 991px;
}
}@media (max-width: 767px){#s-c7b78e9a-607c-42e5-99c9-9d53e13a1e3c {
  max-width: 767px;
}
}
/*
  $vgutter : 20px
  $hgutter : 10px;
*/

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

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

.shogun-root iframe {
  display: initial;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shogun-badge-container {
  position: fixed;
  right: 0;
  bottom: 0;
  margin-bottom: -10px;
}

.shg-c:before,.shg-c:after{content:" ";display:table}.shogun-root{z-index:1;position:relative;isolation:isolate}.shogun-root iframe{display:initial}@media (max-width: 1024px){.shg-c,.shg-box{background-attachment:scroll !important}}@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none) and (orientation: landscape){.shg-box{background-attachment:scroll !important}}#mc_embed_signup .clear{width:auto !important;height:auto !important;visibility:visible !important}.shg-clearfix:after{content:"";display:block;clear:both}.shogun-image{max-width:100%;min-height:inherit;max-height:inherit;display:inline !important;border:0;vertical-align:middle}.shg-fw{margin-left:calc(50% - 50vw);width:100vw}.shg-fw .shg-fw{margin-left:auto;margin-right:auto;width:100%}div[data-shg-lightbox-switch]{cursor:pointer}.shg-lightbox{position:fixed;z-index:999999;left:0;top:0;width:100%;height:100%;overflow:hidden;background-color:#000;background-color:rgba(0,0,0,0.85)}.shg-lightbox.hidden{display:none !important}.shg-lightbox .shg-lightbox-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;text-align:center}.shg-lightbox .shg-lightbox-close{position:absolute;right:0;padding:5px 0;color:#fff;font-size:45px;margin-right:10px;line-height:30px;user-select:none;cursor:pointer;z-index:1}.shg-lightbox .shg-lightbox-image-container{padding:25px}.shg-lightbox .shg-lightbox-image{margin:auto;max-height:90vh;max-width:100%}.shg-lightbox .shg-lightbox-close:hover,.shg-lightbox .shg-lightbox-close:focus{color:#a2a2a2;text-decoration:none;cursor:pointer}.shg-lightbox .shg-lightbox-nav{cursor:pointer;position:absolute;top:50%;width:35px;height:100px;background-size:contain;background-repeat:no-repeat;background-position:center;transform:translate(0%, -50%);z-index:1}.shg-lightbox .shg-lightbox-nav.hidden{display:none !important}.shg-lightbox .shg-lightbox-nav.shg-nav-left{left:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==)}.shg-lightbox .shg-lightbox-nav.shg-nav-right{right:0;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+)}@media screen and (min-width: 769px){.shg-lightbox .shg-lightbox-image-container{padding:50px}}.shogun-lazyload:not([src]),.shogun-lazyloading:not([src]){opacity:0}.shogun-lazyloaded{opacity:1;transition:opacity 300ms}.shogun-lazyload-bg-image{display:none}.shogun-root a:empty,.shogun-root article:empty,.shogun-root dl:empty,.shogun-root h1:empty,.shogun-root h2:empty,.shogun-root h3:empty,.shogun-root h4:empty,.shogun-root h5:empty,.shogun-root h6:empty,.shogun-root p:empty,.shogun-root section:empty,.shogun-root ul:empty{display:unset}.shogun-root div:empty{display:inline-block}[data-animations*="enterviewport"][data-animations*="fadeIn"],[data-animations*="enterviewport"][data-animations*="zoomIn"]{opacity:0}.shogun-form-error-msg,.shogun-form-field-error-msg{display:flex;align-items:center;color:#dc143c}.shogun-badge{margin-bottom:50px}.shogun-badge-container{position:fixed;right:0;bottom:0;margin-bottom:-10px}
