body {
    padding: 0;
    margin: 0;
    color: #2c2c2c;
    /* background-color: #fafbfd; */
}

body,
input,
select,
textarea,
button,
.btn {
    font: 16px/1.75em 'Kumbh Sans', sans-serif;
    font-style: normal;
    font-variant-ligatures: normal;
    font-variant-caps: normal;
    font-variant-numeric: normal;
    font-weight: normal;
    font-stretch: normal;
    font-size: 16px;
    line-height: 1.75em
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Kumbh Sans', sans-serif;
    color: #14532D;
    font-weight: bold
}

.h1,
h1 {
    font-size: 50px;
    line-height: 58px;
}

.h3,
h3 {
    font-size: 30px;
}

p {
    font-size: 18px
}

.mt-20 {
    margin-top: 20px;
}

.container {
    max-width: 90rem;
}

cite {
    font-style: normal;
}

a {
    cursor: pointer;
    color: #43a3bc;
    font-weight: bold;
}

a:hover {
    color: #14532D;
    text-decoration: underline;
}

a[href^="tel:"] {
    display: inline-block;
}

::selection {
    background: #322e2f;
    color: #fff;
    text-shadow: none;
}

ion-icon {
    display: inline-block;
    vertical-align: middle;
}

p.intro-text {
    font-size: 20px
}

.mt-1 {
    display: inline-block;
}



#scroll_form .form-group .form-control,
#pre-footer-form .form-group .form-control {
    background-color: #fff;
    border: 2px solid #e1e1e1
}


.form-group .form-control:focus {
    border-color: #22a0c1 !important;
}

.scroll-img {
    margin-top: 40px;
}

.btn-call {
    background-color: #14532D !important;
    width: fit-content !important;
    color: #fff !important;
    transition: all 0.3s;
    border-radius: 0 !important;
}

.btn-call:hover {
    background-color: #171717 !important;
}

#about-us {
    padding: 120px 0;
    /* background: #d1f3c5; */
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(236, 247, 250, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ecf7fa", GradientType=1);
}

.special-headline {
    font-weight: normal;
    font-family: 'Sacramento', cursive;
}

.special-headline span {
    display: block;
    color: #2c2c2c;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Open Sans', serif;
}

h2.special-headline {
    font-size: 70px;
}

h3.special-headline {
    font-size: 55px;
}

hr.style-two {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

#industries {
    padding: 100px 0;
}

@media all and (min-width:1200px) {
    #industries .container-fluid {
        max-width: 1600px;
    }
}

#industries .row {
    gap: 30px 0;
}

#industries .industries-card {
    position: relative;
}

#industries .industries-card .layer {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0.8));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 0 20px 20px;
}

#industries .industries-card .layer h4 {
    font-size: 20px !important;
    margin-bottom: 5px;
}

#industries .industries-card .layer h4,
#industries .industries-card .layer a {
    color: #fff;
}

#industries .industries-card .layer a {
    /* text-decoration: underline; */
    transition: all 0.3s;
    font-size: 14px;
}

#industries .industries-card .layer a:hover {
    color: #FFD000;
    text-decoration: underline;
}


#about-us h2 {
    font-size: 36px;
    font-weight: 700;
    color: #14532D;
    margin-bottom: 15px;
}

#about-us h3 {
    color: #000;
}

#about-us .about-us {
    position: relative;
}

/* #about-us .layer {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
} */


#about-us .thumbnail {
    position: relative;
}

#about-us .icon-wrapper {
    /* color: red; */
    width: 94px;
    height: 94px;
    background: radial-gradient(#13522D 50%,
            color-mix(in srgb, #13522D, transparent 75%) 52%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

#about-us .icon-wrapper::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#about-us .icon-wrapper::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, #046016, transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

#about-us .layer .icon-wrapper ion-icon {
    color: #fff;
    margin: 0 !important;
    padding: 0 !important;
}


#about-us h2 span {
    color: #2b333c;
    font-weight: 600;
    font-size: 15px;
}

#about-us h4 {
    font-weight: normal;
    color: #2c2c2c;
    margin-bottom: 25px;
    font-size: 20px;
}

#about-us p {
    font-size: 16px;
}

#about-us ul.header-list {
    margin-top: 30px;
    margin-bottom: 25px;
}

#about-us ul.header-list li {
    /* width: 48%; */
    /* margin-right: 1%; */
    margin-bottom: 20px;
}

#about-us ul.header-list li .cta-point img {
    max-width: 85px;
    margin-bottom: 0;
    /* color: rgb(241, 251, 237); */
    box-shadow: 2px -2px 0 0 rgb(241 251 237 / 25%), -2px 3px 0 0 rgb(43 51 60 / 20%);
    padding: 2px;
}

#about-us ul.header-list li span {
    display: block;
    font-weight: bold;
    color: #171717;
    margin-bottom: 2px;
    text-transform: capitalize;
}

.inline-cta {
    background-color: #f0f0f0;
    box-shadow: 0px 6px 10px -4px #d1d1d1;
    border-radius: 13px;
    padding: 10px;
}

.inline-cta p {
    border-radius: 5px;
    margin-bottom: 0;
    padding: 12px 17px;
    line-height: 1.5;
}

.image-caption {
    padding: 28px 40px 8px 50px;
    background-color: #f0f0f0;
    border-radius: 13px;
    box-shadow: 0px 6px 10px -4px #d1d1d1;
}

.image-caption p {
    font-size: 15px !important;
    line-height: 1.4;
}

#services {
    padding-top: 50px;
    padding-bottom: 120px;
}

#services h2 {
    font-size: 30px;
    font-style: italic;
    font-weight: normal;
    margin-bottom: 20px;
    text-decoration: underline;
}

#why-quit {
    padding: 100px 0 120px;
    background-image: linear-gradient(to right, rgba(43, 51, 60, 0.6), rgba(43, 51, 60, 0.35)), url('../img/testimonail-bg.webp?v=1.2.0');
    background-repeat: no-repeat;
    background-position: bottom;
    position: relative;
}

#why-quit h2 {
    color: #fff;
    font-size: 33px;
}

.why-headline {
    text-align: center;
    margin-bottom: 80px;
}

.why-headline h2,
.why-headline h4 {
    color: #2c2c2c;
    font-weight: normal;
}

.why-headline h2 {
    margin-bottom: 10px;
    font-size: 26px;
    font-weight: bold;
}

.why-headline h2 span {
    color: #14532D;
    font-weight: 600;
}

.why-headline h4 {
    font-size: 20px;
    line-height: 1.3;
}

.why-headline p {
    margin-bottom: 25px;
}

.section-headline {
    margin-bottom: 50px;
}

.section-headline h2 {
    color: #2c2c2c;
    font-size: 35px;
}

#benefits {
    padding: 100px 0;
    background-color: #F1FBED;
    /* background-color: #F9FAFB; */
}

ul.intro-list,
ul.list {
    list-style-type: none;
    padding: 0;
    margin: 25px 0;
    text-transform: capitalize
}

ul.intro-list li,
ul.list li {
    position: relative;
    padding-left: 34px;
    margin: 6px 0;
    font-size: 18px;
    /* color: #525a6c; */
}

ul.intro-list li:before,
ul.list li:before {
    font-family: "fontello";
    content: '\e98f';
    color: #14532D;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 22px
}

ul.list li:before {
    content: "\f375";
}

.benefits-content h3,
.case-studies h3 {
    color: #030303;
    font-size: 28px;
}

/* .benefits-content h3 span {
    color: #14532D;
} */

.rounded-img {
    border-radius: 30px !important;
}

.case-studies h3 {
    font-size: 25px;
}

.case-studies p {
    font-size: 15px;
    line-height: 1.25;
}

#previous-work {
    padding: 90px 0 100px;
}

ul.gallery li {
    width: 100%;
    /* float: left; */
    position: relative;
    overflow: hidden;
    /* margin: 4px; */
}

ul.videos {
    gap: 0px !important;
    /* margin-top: 50px; */
}

ul.videos li {
    /* width: 24.19999999%; */
    /* float: left; */
    /* position: relative; */
    /* overflow: hidden; */
    /* margin: 4px; */
}

ul.videos li:nth-child(6)~li {
    display: none;
    /* opacity: 0.7; */
}

.gallery-image {
    /* position: relative;
    box-shadow: 0px 0px 19px -1px rgba(12, 126, 126, 0.7);
    -webkit-box-shadow: 0px 0px 19px -1px rgba(132, 126, 126, 0.73);
    -moz-box-shadow: 0px 0px 19px -1px rgba(132, 126, 126, 0.73); */
}

.gallery-image:hover .gallery-overlayer {
    background-color: rgba(0, 0, 0, 0.4);
}

.gallery-overlayer {
    background: rgba(137, 204, 37, 0);

    /* background-color: red; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* opacity: 0; */
    transition: all 0.3s;
}

.load-more {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    width: 200px;
    height: 60px;
    /* text-transform: uppercase; */
    background-color: #14532D;
    color: white;
    margin: 50px auto;
    /* border-radius: 30px; */
    transition: all 0.3s ease-out;
    text-decoration: none;
    padding: 20px 35px;
}

/* .load-more::after{
    content: '';
    background-color: red;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: -1;
  } */
.load-more a {
    color: white;
}

.load-more:hover {
    background-color: #171717;
    color: #fff;
    text-decoration: none;
}

.load-more:focus {
    color: white;
    text-decoration: none;
}

.loaded {
    visibility: hidden;
    opacity: 0;
    height: 0;
    transition: visibility .3s 1s, opacity .3s 1s, height .3s 1s;
}


#previous-work h2 {
    font-size: 42px;
    font-weight: bold;
}

#previous-work h3 {
    font-size: 26px;
    color: #2c2c2c;
    font-weight: 600;
}

ul.videos {
    /* gap: 12px; */
    margin-bottom: 55px;
}

ul.videos li.video-wrapper {
    margin: 15px 0px 15px;
}

@media all and (min-width:991px) {
    ul.videos li.video-wrapper.type-1 {
        width: 32.6529%;
    }

    ul.videos li.video-wrapper.type-2 {
        width: 24.3628%;
    }

    ul.videos li.video-wrapper.type-3 {
        width: auto;
    }
}

a.fancy-video {
    position: relative;
}

a.fancy-video ion-icon {
    font-size: 34px;
    padding: 10px;
    color: #fefefe;
    background: #FF0033;
    border-radius: 50%;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5);
    display: inline-block;
}

.fancy-video .overlay {
    background-color: rgba(0, 0, 0, 0);
    /*opacity: 0.7;*/
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;

}

a.fancy-video:hover .overlay {
    /* color: rgb(10, 96, 22); */
    background-color: rgba(10, 96, 22, .40);
}

section#brands {
    padding: 70px 0;
    background-color: #F9FAFB;
}

#brands h2 {
    font-size: 35px;
}

ul.brands-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px 35px;
    justify-content: center;
}

figure.brand-logo {
    /* margin-bottom: 0; */
    /* transition: filter 0.3s ease; */
    width: 200px;
    /*filter: grayscale(100%);*/
}

.brand-logo img {
    width: 100%;
}

/*figure.brand-logo:hover {*/
/*    filter: grayscale(0%);*/
/*    cursor: pointer;*/
/*}*/

@media all and (max-width:820px) {
    ul.brands-container {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 25px 35px;

    }
}

@media all and (max-width:575px) {
    .section-headline {
        margin-bottom: 30px;
    }

    ul.brands-container {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 25px 35px;

    }

    figure.brand-logo {
        /* margin: auto; */
    }

    figure.brand-logo img {
        max-width: 165px;
    }
}



#book-session-cta {
    padding: 110px 0;
}

#testimonials-extension {
    padding: 100px 0;
    background-image: url('../img/testimonials-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

#faq {
    padding: 80px 0;
    /* background-color: #ecf7fa; */
    background: rgb(255, 255, 255);
    background: -moz-linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(236, 247, 250, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(236, 247, 250, 1) 100%);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(236, 247, 250, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ecf7fa", GradientType=1);
}

.panel-title {
    font-weight: normal;
    font-size: 19px;
    margin-bottom: 0;
}

.panel-group .panel-heading+.panel-collapse>.panel-body {
    border-top: 1px solid #ddd;
    background-color: #fff;
    font-size: 15px;
}

.panel-group .panel-heading+.panel-collapse>.panel-body p {
    font-size: 15px;
}

.panel-group .panel-heading+.panel-collapse>.panel-body p:last-child {
    margin-bottom: 0;
}

.panel-group .panel {
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
    border-radius: 7px;
}

.panel-group .panel .panel-body {
    padding: 15px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}

.panel-group .panel .panel-title>a.collapsed {
    font-weight: normal;
    color: #2c2c2c;

    border-radius: 7px;
}

.panel-group .panel .panel-title>a {
    background-color: #fff;
    font-weight: normal;
    color: #14532D;
    padding: 15px 18px 16px;
    display: block;
    font-size: 17px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.panel-group .panel .panel-title>a ion-icon {
    color: #2c2c2c;
    padding: 0;
}

ul.list.m-sm li {
    margin-bottom: 5px;
}

.panel-group .panel+.panel {
    margin-top: 10px;
}


#booking-form {
    padding: 100px 0 80px;
    background-image: url('../img/bg-2.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.service-box.box-fix {
    margin-top: 60px;
}

.service-box {
    padding: 14px 16px;
    border: 10px solid #e6ebf2;
    margin-bottom: 30px;
    background-color: #fafbfd;
}

.service-box img {
    margin-bottom: 30px;
    border-radius: 50%;
}

.service-content {
    border: 3px solid #e6ebf2;
    text-align: center;
    padding: 10px;
    padding-bottom: 25px;
}

.service-content h4 {
    color: #2c2c2c;
    text-transform: uppercase;
    font-size: 18px;
}

.service-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
}

#navigation {
    /* padding: 15px 0; */
    margin-bottom: -19px;
    z-index: 99;
    position: relative;
}

#navigation img {
    margin-top: 15px;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
    outline: none;
}

.header-cta {
    font-family: 'Kumbh Sans', sans-serif;
    position: relative;
}

.header-cta .cta-text {
    text-transform: uppercase;
    background-color: #14532D;
    /* font-weight: 600; */
    color: #fff;
    box-shadow: inset 0 -1px 3px 0 rgb(0, 0, 0, 0.22);
    position: relative;
    font-size: 13px;
    padding-top: 3px;
}

.header-cta .cta-text span {
    position: relative;
    z-index: 1;
}

.header-cta .cta-phone-number {
    position: relative;
    font-size: 30px;
    font-weight: 600;
    background-color: #14532D;
    padding: 5px 25px 5px 0;
}

.header-cta .cta-phone-number:hover {
    background-color: #008aab;
}

.header-cta .cta-phone-number:before,
.header-cta .cta-phone-number:after,
.cta-text:before {
    content: "";
    position: absolute;
    left: -1.6rem;
    width: 3.125rem;
    height: 60%;
    border-radius: inherit;
    background-color: inherit;
}

.header-cta .cta-phone-number:after {
    top: 0;
}

.header-cta .cta-phone-number:before {
    bottom: .45rem;
    width: 1.813rem;
    transform: skewY(38deg);
    border-radius: .25rem;
    border-bottom-right-radius: 9px;
}

.cta-text:before {
    top: 0;
    height: 100%;
    box-shadow: inset 0 -1px 3px 0 rgb(0, 0, 0, 0.22);
}

.header-cta .cta-phone-number a {
    padding: 10px 0;
    color: #fff;
    position: relative;
    z-index: 1;
}

.header-cta .cta-phone-number a:hover {
    text-decoration: none;
}

.navigation-subtext {
    background-color: #14532D;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    z-index: 1;
}

#header .navigation-subtext p {
    margin-bottom: 0 !important;
    font-size: 15px;
    line-height: 1;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .2);
}



.navigation-subtext ion-icon {
    color: #fff;
    font-size: 18px;
    margin-top: -4px;
}

#header {
    position: relative;
    background-image: url("../img/header-bg.webp?v=1.2.0");
    background-position: center center;
    background-size: cover;
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.overlay:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.65), rgb(54 53 50 / 15%) 50.5%);
}

#header video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#header .header-identity {
    margin-bottom: 70px;
}

#header img {
    /* margin-bottom: 35px; */
    max-height: 120px;
}



#header h1,
#header p {
    color: #fff9f9;
}

#header h1 {
    font-size: 42px;
    /* line-height: 45px; */
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .4);
}

#header p {
    margin-bottom: 40px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .4);
}

#header h3 {
    font-size: 25px;
    font-weight: normal;
    margin-bottom: 15px;
    color: #fecd0e;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .4);
}


.lp-header-cta p b {
    color: #88e7ff;
}

.lp-header-cta p {
    font-size: 14px;
    line-height: 1.3em;
    font-weight: normal;
    /* margin-bottom: 0 !important; */
    /* color: #61656d !important; */
}

.circle-logo {
    /* background-color: teal; */
    /* border: solid 4px #fff; */
    background-color: #fff;
    padding: 10px;
    border-radius: 50%;
    width: fit-content;
    margin: auto;
}


.header-content {
    padding: 90px 0 120px;
    /*padding: 110px 0;*/
}

.header-phone-number {
    margin-bottom: 10px;
}

.header-phone-number ion-icon {
    color: #14532D;
    font-size: 55px;
    margin-right: 11px;
}

.header-phone-number a {
    color: #2c2c2c;
    font-weight: 600;
    font-family: 'Kumbh Sans', sans-serif;
    /* line-height: 44px; */
    line-height: 19px;
    font-weight: normal;
}

.header-phone-number a:hover {
    /* color: #14532D; */
    text-decoration: underline;
}

.header-phone-number a span {
    font-weight: bold;
    font-size: 38px;
    display: block;
    /* margin-bottom: 7px; */
    line-height: 44px;
}

ul.header-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
}

ul.header-list li {
    /* width: 44%; */
    /* display: inline-block; */
    margin-bottom: 10px;
    /* margin-right: 4%; */
}

ul.header-list li .cta-point p {
    font-size: 16px;
    line-height: 1.4em;
    margin-bottom: 0;
}

ul.header-list li .cta-point p b,
b.highlight {
    background: #fad28e;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 15px;
    color: #302c23;
}

ul.header-list li .cta-point img {
    border-radius: 55px;
    display: block;
    max-width: 70px;
    margin-bottom: 5px;
    margin-right: 15px;
}

.review-block {
    background-color: #fff;
    /* text-align: center; */
    padding: 16px;
    /* -webkit-box-shadow: 0px 2px 6px 0 rgba(230, 235, 240, 0.7); */
    /* box-shadow: 0px 2px 6px 0 rgba(230, 235, 240, 0.7); */
    margin-bottom: 32px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 24px;
}

/* .review-block img {
    margin: 0 auto;
    margin-bottom: 10px;
} */

.review-content {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.review-content p {
    height: 100px;
    overflow: auto;
    padding-right: 8px;
    margin-bottom: 0;
}

.review-content p::-webkit-scrollbar {
    width: 4px;
    border-radius: 3px;
}

.review-content p::-webkit-scrollbar-track {
    background: rgba(85, 85, 85, 0.1);
}

.review-content p::-webkit-scrollbar-thumb {
    background: rgba(85, 85, 85, 0.6);
}

.review-content p::-webkit-scrollbar-thumb:hover {
    background: rgba(85, 85, 85, 0.9);
}

.review-content h5 {
    font-size: 19px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1;
}

.review-puppy {
    border-radius: 6px;
}

.review-block p {
    font-size: 15px;
    color: #1d1d1d;
    line-height: 24px;
}

.review-block h5.author {
    font-size: 18px;
    margin-bottom: 0;
    margin-left: 8px;
    font-family: 'Quicksand', sans-serif;
}

.google-logo {
    width: 42px;
}

.review-block h5.author span {
    display: block;
    color: #92969f;
    font-weight: normal;
    font-size: 16px;
    margin-top: 5px;
}

/* .review-block img.rating {
    margin-bottom: 25px;
} */

.review-badges {
    margin-bottom: 25px;
}

.brdr-top {
    width: 100% !important;
    height: 6px !important;
    background: #4fce6a !important;
    border-radius: 2px 2px 0 0 !important;
}

.badge-content {
    padding: 10px;
}

.review-badge {
    background-color: #fff;
    /* box-shadow: 0 10px 15px -3px rgb(0 0 0 / 10%), 0 4px 6px -4px rgb(0 0 0 / 10%); */
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .26) !important;
}

.review-badges p {
    line-height: 1;
    font-size: 14px;
    color: #333;
}

.review-badge .logo img {
    border-radius: 50%;
    width: 44px;
}

.review-badge .score {
    margin-left: 8px;
}

.review-badge .rating span {
    font-size: 20px;
    font-weight: normal;
    color: #fbbc00;
    line-height: 1;
    display: inline-block;
}

.yelp-badge .rating img {
    width: 22px;
    margin: 0 2px;
}


.form-wrapper {
    background-color: #fff;
    color: #171717;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
}

.form-wrapper h3 {
    color: #171717;
}

.form-group .form-label {
    line-height: 1;
    font-size: 14px;
    color: #14532D;
    font-weight: 600;
    /* background-color: #f97e2b; */
    /* color: #fff; */
    /* font-weight: 500; */
    /* padding: 0.2rem 1.25rem; */
    /* display: inline-block; */
    /* border-radius: 40px; */
    font-size: 0.75rem;
    margin: 0;
    padding: 2px 14px;
    position: absolute;
    top: 8px;
    z-index: 1;
}

.form-group .form-label span {
    color: red;
}

form .disclaimer {
    color: #939598;
    text-align: right;
    font-size: 11px;
    display: block;
    margin-top: 5px
}

form .disclaimer ion-icon {
    font-size: 13px;
    margin-right: 1px;
}

.form-group .form-control {
    height: 3.9rem;
    padding-left: 2.5rem;
    padding-top: 1.5rem;
    background-color: #ecf4f6;
    border-color: transparent;
    box-shadow: none;
    transition: 0.5s all;
    font-size: 0.875rem;
    font-weight: normal;
    color: #424546;
    border: 2px solid #d4d4d4;
}

.form-group textarea.form-control {
    height: 7.5rem;
}

.form-group .input-wrapper {
    position: relative;
}

.form-group ion-icon {
    color: #14532D;
    position: absolute;
    top: 30px;
    left: 13px;
    font-size: 18px;
}

.form-group .form-control:focus {
    border-color: #14532D;
}

.btn {
    width: 100%;
    font-size: 14px;
    font-weight: bold;
    padding: 17px 30px 14px;

    background: #fddb85;
    text-transform: uppercase;
    color: #302c23;
    color: #69491D;
    text-shadow: 0 1px 0 hsl(0deg 0% 100% / 40%);
    text-align: center;
    border-radius: 7px;

    border: 0;
}

.btn ion-icon {
    color: #302c23;
    font-size: 16px;
    margin: -4px 0 0 5px;
}

.btn span {
    display: block;
    font-weight: normal;
}

.btn-primary {
    background: #fddb85;
    background: -webkit-gradient(linear, left top, left bottom, from(#fddb85), to(#fec132));
    background: linear-gradient(180deg, #fddb85 0, #fec132);

    box-shadow: 0 3px 0px #d79a23;
}

.btn.btn-primary:hover {
    background: #ffe093;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffe093), to(#ffcd57));
    background: linear-gradient(180deg, #ffe093 0, #ffcd57);

    text-decoration: none;

    box-shadow: 0 1px 0px #d79a23;
}

.btn.btn-primary:active {
    box-shadow: inset 0 1px 3px 0px #d79a23;
}

.btn-primary:not(:disabled):not(.disabled):active:focus {
    color: #302c23;
    box-shadow: inset 0 1px 3px 0px #d79a23;
}

.btn.focus,
.btn:focus {
    outline: none;
}

.btn-warning {
    color: #fff;
    background-color: #f97e2b;
    border-color: #f97e2b;
}

.btn:active,
.btn:focus {
    color: #302c23;
}

.btn:hover {
    color: #302c23;
    background-color: #01061e;
    border-color: #01061e;
}

.btn-label {
    position: relative;
    /* left: -12px; */
    display: inline-block;
    padding: 24px 26px 25px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 3px 0 0 3px;
    margin-right: 22px;
    font-size: 27px;
}

.btn-labeled {
    padding-top: 0;
    padding-bottom: 0;
    width: auto;
    padding-left: 0;
    text-transform: uppercase;
    font-size: 16px;
    padding-right: 60px;
}

#navBar {
    background: #171717;
    padding: 0;
    flex-direction: column;
}

#navBar.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

#navBar .navbar-nav .nav-link {
    font-weight: normal;
    color: #fff;
    padding: 20px 25px;
    -webkit-transition: background-color .3s 0s;
    -moz-transition: background-color .3s 0s;
    transition: background-color .3s 0s;
    position: relative;
}

#navBar .navbar-nav .nav-link span {
    /* background-color: #fad28e; */
    background-color: #ffd000;
    padding: 3px 7px;
    /* border-radius: 50px; */
    font-size: 12px;
    position: absolute;
    display: block;
    line-height: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: #302c23;
    font-weight: 600;
}

#navBar .navbar-nav .nav-link:hover,
#navBar .navbar-nav .nav-link.active {
    background-color: #14532D;
    color: #fff;
}

#navBar .navbar-cta {
    width: 100%;
    background-color: #14532D;
    text-align: center;
    position: relative;

    margin-bottom: 0;
    padding: 13px 0;
    line-height: 1;
    color: #fff;
    font-weight: 100;
    display: none;
}

#navBar .navbar-cta p {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.2
}

#navBar .navbar-cta a {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
}

#navBar.fixed-top .navbar-cta {
    display: block;
}

#products {
    padding: 120px 0;
    background: #fcfefe;
    /* background: rgb(255,255,255); */
    background: -moz-linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(236, 247, 250, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(236, 247, 250, 1) 100%);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(236, 247, 250, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ecf7fa", GradientType=1);

}

#products .section-headline {
    margin-bottom: 80px;
}

#products .section-headline h2 {
    margin-bottom: 0;
    padding-right: 20px;
    margin-right: 20px;
    border-right: 2px solid #f0f0f0;
}

#products .section-headline p {
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 15px;
}

#products .product-card {
    background-color: #fff;
    /* box-shadow: 0px 6px 10px -4px #d1d1d1; */
    box-shadow: 0px 6px 25px -2px #e9e9e9;
    border-radius: 20px;
    text-align: center;
    padding: 40px;
    margin-top: 100px;
}

#products .product-card img {
    margin-top: -50%;
    margin-bottom: 25px;
    max-height: 327px;
}

#products .product-card h4 {
    color: #2c2c2c;
    font-weight: normal;
    margin-bottom: 20px;
}

.products-group {
    margin-top: 30px;
    background-color: #fff;
    /* box-shadow: 0px 6px 10px -4px #d1d1d1; */
    box-shadow: 0px 6px 25px -2px #e9e9e9;
    border-radius: 20px;
    padding: 40px;
}

ul.products-images {
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-right: 40px;
}

ul.products-images li {
    margin-right: 15px;
}

ul.products-images li:last-child {
    margin-right: 0;
}

.products-group .group-product {
    text-align: center;
}

.products-group .group-product img {
    max-width: 128px;
    padding: 5px;
    box-shadow: 2px -2px 0 0 rgb(255 184 75 / 25%), -2px 3px 0 0 rgb(30 213 234 / 22%);
    border-radius: 50%;
    margin-bottom: 5px;
}

.products-group .group-product span {
    font-size: 14px;
}

.products-group h4 {
    color: #d31a1a;
    font-weight: normal;
    margin-bottom: 10px;
}

.products-group p {
    font-size: 15px;
    line-height: 1.5;
}

.assurences {
    padding: 70px 0;
    background-image: url('../img/bg-1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.assurences .group img {
    max-height: 85px;
    margin-right: 20px;
}

.assurences .group h4 {
    margin-bottom: 0;
    color: #141414;
    font-size: 16px;
}

.promo-product {
    /* width: 537px; */
    /* height: 537px; */
    position: relative;
    z-index: 1;
}

.promo-product:before {
    /* content: ""; */
    background-image: url('../img/product-inner.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

.promo-product-circles {
    position: absolute;
    width: -webkit-calc(100% + 100px);
    width: calc(100% + 100px);
    height: -webkit-calc(100% + 100px);
    height: calc(100% + 100px);
    top: 50%;
    margin-top: -5px;
    margin-left: -5px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -2;
}

.promo-product-circles__item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* border: 5px solid #f1f6fd; */
    border: 5px solid #f7d5d5;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    z-index: -1;
}

.promo-product-circles__item:nth-child(2) {
    width: -webkit-calc(100% - 50px);
    width: calc(100% - 50px);
    height: -webkit-calc(100% - 50px);
    height: calc(100% - 50px);
    margin-left: 25px;
    margin-top: 25px;
}

.promo-product__product {
    background-image: url('../img/product-showcase.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 600px;
    height: 595px;
    top: -30px;
    left: 0;
    margin-left: -32px;
    max-width: -webkit-calc(100% + 64px);
    max-width: calc(100% + 64px);
    position: absolute;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

.mb-25 {
    margin-bottom: 25px;
}

.reviews {
    padding: 60px 0 40px;
}

.reviews .business-profile {
    margin-top: 5px;
}

.reviews .business-profile p {
    color: #171717;
    font-size: 15px;
    line-height: 19px;
}

.reviews .business-profile img {
    margin-bottom: 12px;
}

.reviews .business-logo {
    max-width: 250px;
}

.reviews .business-profile a {
    display: block;
    color: #315aac;
    margin-top: 5px;
    font-weight: 600;
}

.testimonial-card {
    margin-bottom: 40px;
}

.testimonial-body {
    padding: 15px;
    border-radius: 3px;
    background-color: #e6ebf2 !important;
    position: relative;
}

.testimonial-body:before {
    position: absolute;
    content: "";
    width: 0;
    bottom: -10px;
    left: 17px;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #e6ebf2 transparent transparent transparent;
}

.testimonial-body p {
    height: 120px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: inherit !important;
    overflow: auto !important;
    padding-right: 10px;
    scrollbar-color: #8d8d8d #e0e0e0;
    scrollbar-width: thin;
}

.testimonial-body p::-webkit-scrollbar {
    width: 4px;
    border-radius: 3px
}

.testimonial-body p::-webkit-scrollbar-track {
    background: rgba(85, 85, 85, 0.1)
}

.testimonial-body p::-webkit-scrollbar-thumb {
    background: rgba(85, 85, 85, 0.6)
}

.testimonial-body p::-webkit-scrollbar-thumb:hover {
    background: #555
}

.testimonial-card .rating {
    margin-bottom: 7px;
}

.testimonial-card .rating .stars-indicator {
    margin: 4px 0;
}

.testimonial-card .testimonial-body .google-icon {
    width: 24px;
    float: right;
}

.testimonial-author {
    padding: 14px 8px 0;
}

.testimonial-author * {
    display: inline-block;
    vertical-align: middle;
}

.testimonial-author h6 {
    margin: 0;
    font-size: 12px;
    line-height: 1;
    font-weight: bold;
    font-family: 'Kumbh Sans', sans-serif;
}

.testimonial-author img {
    margin-right: 5px;
}

.testimonial-author h6 span {
    display: block;
    font-weight: normal;
    color: #171717;
    opacity: 0.8;
    margin-top: 5px;
}

.testimonial-card p {
    font-size: 14px;
    line-height: 20px;
    color: #171717;
    margin-bottom: 0;
}

.cta {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#14532D+0,0095bd+100 */
    background: #14532D;
    /* Old browsers */
    /* background: -moz-linear-gradient(left,  #14532D 0%, #0095bd 100%);
    background: -webkit-linear-gradient(left,  #14532D 0%,#0095bd 100%);
    background: linear-gradient(to right,  #14532D 0%,#0095bd 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#14532D', endColorstr='#0095bd',GradientType=1 ); IE6-9 */
    padding: 40px 20px;
}

.cta {
    background-image: url('../img/carpet-cleaning.png');
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
}

.cta h3,
.cta p {
    color: #fff;
}

.cta a {
    color: #fff;
    text-decoration: underline;
}

.form-group {
    line-height: 1;
    border-radius: .25rem;
    position: relative;
}

#why-us {
    /* padding: 80px 0;
    background-image: url(../img/bg_only-body.jpg);
    background-position: center center;
    background-repeat: no-repeat; */
    position: relative;
    /* overflow: hidden; */
    margin-bottom: 30px;
    background-size: cover;
}

#why-us h2 {
    font-style: italic;
    font-weight: normal;
    text-decoration: underline;
    margin-bottom: 20px;
}

#why-us p {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 30px;
}

#why-us ul.list li {
    line-height: 1.4;
}

#why-us .floating-decor {
    position: absolute;
    top: 0;
    z-index: 55;
}

#why-us .btn.inline-btn {
    position: absolute;
    bottom: -110px;
    width: auto;
    left: 50%;
    margin-left: -150px;
}

.why-us-block {
    height: 100%;
    background-color: #fff;
}

.cta-content {
    padding: 2rem 1rem;
}

.cta-content h3 {
    color: #191919;
    font-size: 1.375rem;
    font-weight: bold;
    margin-bottom: 10px;
}

ul.list {
    list-style-type: none;
    padding: 0;
}

ul.list li {
    color: #2c2c2c;
    font-weight: 600;
    margin-bottom: 20px;
    font-weight: normal;

}

ul.list li ion-icon,
ion-icon {
    color: #14532D;
    font-size: 26px;
    padding: 1px;
    margin-right: 2px;
}

.scroll-down {
    margin-top: 20px;
}

.scroll-down img {
    margin-bottom: 10px;
}

.scroll-down h5 {
    font-size: 11px;
    text-transform: uppercase;
    color: #8299ae;
    font-weight: 600;
}

#service {
    padding: 90px 0;
    background-image: url('../img/carpet-cleaning-service.jpg');
    background-size: cover;
    background-position: bottom;
}

#service a.btn {
    margin-top: 10px;
    margin-bottom: 20px;
    display: inline-block;
    width: auto;
}

.content-card {
    padding: 15px 30px;
    background-color: #fff;
    text-align: center;
    margin-top: 70px;
}

.content-card img {
    margin-top: -77px;
    margin-bottom: 20px;
}

.content-card h3 {
    color: #252835;
}

.content-card p {
    font-size: 16px;
    color: #252835;
}

#before_after {
    padding: 50px 0;
}

#before_after .preview {
    position: relative;
    border: 2px solid #e1e1e1
}

#before_after .preview:before,
#before_after .preview:after {
    position: absolute;
    bottom: 20px;
    background-color: #14532D;
    padding: 8px 25px;
    line-height: 1;
    color: #fff;
    font-weight: 600;
}

#before_after .preview:after {
    content: "After";
    right: 0;
    border-radius: 15px 0 0 15px;
}

#before_after .preview:before {
    content: "Before";
    left: 0;
    border-radius: 0 15px 15px 0;
}

#before_after h2,
#testimonials h2 {
    font-style: italic;
}

#testimonials {
    padding: 20px 0 50px;
}

#footer-strip {
    padding: 2rem 0;
    background: #171717;
}

#footer-strip img {
    max-height: 100px;
}

#footer-strip .phone-number a {
    color: #fff;
    transition: all 0.3s;
}

#footer-strip .phone-number a:hover {
    /* color: #14532D; */
    text-decoration: underline;
}

#footer {
    color: #fff;
    background-color: #171717;
    padding: 1rem 0;
}

#footer p {
    margin-bottom: 0;
    font-size: 14px;
}

.modal-content {
    border-radius: 0;
}

.modal h5 {
    color: #f97e2b;
    margin-bottom: 2px;
}

.modal p {
    font-size: 15px;
    line-height: 1.5;
}

.modal .modal-bg {
    background-image: url('../img/modal-img.jpg');
    background-size: cover;
    background-position: center;
}

.modal .modal-display {
    position: relative;
}

.btn.btn-sm {
    width: auto;
    padding: 14px 25px 10px;
    font-size: 14px;
}

a.muted_link {
    font-size: 14px;
    margin-right: 10px;
    font-weight: normal;
    color: #636363e0;
    font-style: italic;
}

button.close {
    background-color: rgba(248, 125, 42, 0.8);
    opacity: 1;
}

button.close span {
    font-size: 32px;
    font-weight: normal;
    line-height: 1;
    padding: 0 7px;
    /* background-color: #f97e2b; */
    /* overflow: hidden; */
    color: #fff;
    text-shadow: none;
    opacity: 1;
}

#pre-footer-form {
    padding: 100px 0;
    background-image: url('../img/form_bg.jpg');
    background-position: center;
    background-size: cover;
}

#pre-footer-form h2,
#pre-footer-form p {
    color: #fafbfc;
}

#pre-footer-form .headline {
    margin-bottom: 40px;
}

.body-sec {
    background-image: url('../img/bg_transform.jpg');
    background-repeat: no-repeat;
    background-position: center bottom;
}

#about-me {
    background-image: url('../img/decor_transform-1.png'), url('../img/decor_transform-2.png');
    background-position: 0 100%, 100% 20%;
    background-repeat: no-repeat;
    padding: 100px 0;
}

#about-me p {
    font-size: 17px;
}

.about-img {
    border: 3px solid #e6ebf2;
    text-align: center;
    padding: 10px;
}

#gallery {
    padding: 50px 0 100px;
}

ul.gallery {
    list-style-type: none;
    margin: 0;
    padding: 0
}

ul.gallery li ion-icon {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 55;
    padding: 6px 6px;
    background-color: #14532D;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    border-top-right-radius: 7px;
}

ul.gallery li {
    width: 24.6%;
    float: left;
    position: relative;
    overflow: hidden;
    margin: 0.2%;
}

ul.gallery li a:after {
    content: '';
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding-top: 95px;
    text-align: center;
    color: rgba(255, 255, 255, 0);
    font-size: 25px;
    background: rgba(137, 204, 37, 0);
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    display: block;
    background-repeat: no-repeat;
    background-position: center
}

ul.gallery li a:hover:after {
    color: #fff;
    background-color: rgb(228, 37, 101, 59%);
    z-index: 5;
    border: 2px solid #e42565;
}

ul.gallery li img {
    width: 100%;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

ul.gallery li a:hover img {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    position: relative;
}

.together-mobile {
    display: none;
}

#back-to-top {
    position: fixed;
    bottom: 25px;
    right: 100px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 1;
    display: block;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    cursor: pointer;
    border: 0;
    border-radius: 2px;
    text-decoration: none;
    -webkit-transition: opacity .3s 0s;
    -moz-transition: opacity .3s 0s;
    transition: opacity .3s 0s;
    opacity: 0;
    font-weight: normal;
    padding: 10px 9px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0.5rem;
    font-size: 30px;
}

#back-to-top:hover {
    background: #171717;
}

#back-to-top:active {
    background: #171717;
}

#back-to-top.show {
    opacity: 1;
}

#back-to-top ion-icon {
    color: #fff;
    margin-right: 0;
    font-size: 40px;
}

#header_bar {
    background-color: #141414;
    text-align: center;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.33);
}

#header_bar h3 {
    font-family: 'open sans', sans-serif;
    margin-bottom: 0;
    font-size: 17px;
    padding: 14px 0;
    line-height: 1;
    margin-top: 0;
    color: #fff;
    font-weight: 100;
}

#header_bar h3 a {
    color: #fff;
    font-weight: 600;
    display: inline-block;
    text-decoration: underline;
}

#header_bar.show {
    display: block;
}

.blue-bg {
    background-color: #14532D;
}

label.error {
    font-size: 13px;
    color: red;
    margin: 0;
    text-shadow: none;
    line-height: 17px;
    padding-left: 5px;
    text-align: left;
    display: block;
    font-weight: normal;
    margin-top: 3px;
}

.navbar-toggler {
    width: 100%;
    padding: 5px 15px;

    border-bottom: 1px solid #4d545b;
    border-radius: 0;
}

.navbar-toggler span {
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    font-size: 15px;
}

.navbar-toggler ion-icon {
    font-weight: bold;
    color: #fff;
    font-size: 40px;
}

@media (max-width: 414px) {
    .lp-header-cta p {
        margin-top: 15px;
        text-align: center;
    }

    .massage-intensity {
        margin-top: 20px;
    }

    #navBar .navbar-nav .nav-link {
        padding: 15px 18px;
    }

    #navBar .navbar-nav .nav-link span {
        text-align: left;
        padding-left: 18px;
    }

    .products-group {
        flex-direction: column;
        padding: 30px;
    }

    .products-group .group-product img {
        max-width: 75px;
    }

    .products-group .group-product span {
        font-size: 12px;
        font-weight: bold;
    }

    ul.products-images {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .header-phone-number a span {
        font-size: 34px;
        line-height: 38px;
    }

    .header-phone-number {
        margin-bottom: 20px;
    }

    ul.header-list li {
        width: 100%;
    }

    .assurences {
        padding: 50px 0;
    }

    .assurences .group {
        margin-bottom: 30px;
        flex-direction: column;
        text-align: center;
    }

    .assurences .group img {
        margin-right: 0;
        margin-bottom: 15px;
    }

    #header .testimonial-single {
        margin-bottom: 30px;
    }

    .image-caption {
        padding: 18px 20px 8px 20px;
        margin-bottom: 50px;
    }

    .scroll-down {
        text-align: center;
    }

    #about-us ul.header-list li {
        width: 100%;
    }

    .why-headline {
        margin-bottom: 40px;
    }

    #why-quit h2 {
        color: #2c2c2c;
    }

    #why-quit {
        background: #e9f0f8;
    }

    #why-quit ul.header-list {
        margin-bottom: 70px;
    }

    .hidden-xs {
        display: none;
    }

    #booking-form {
        /* padding-bottom: 0; */
        position: relative;
        z-index: 9999;
    }

    #footer-strip {
        position: relative;
        z-index: 9999;
    }

    .h1,
    h1 {
        font-size: 37px;
        line-height: 40px;
    }

    .header-content {
        padding-bottom: 40px;
    }

    .together-pc {
        display: none;
    }

    .together-mobile {
        display: block;
    }

    form .disclaimer {
        text-align: left;
        line-height: 14px;
    }

    ul.list li {
        font-weight: normal;
        margin-bottom: 10px;
        display: inline-block;
    }

    .cta {
        background-image: none;
    }

    .content-card {
        margin-top: 45px;
    }

    .content-card img {
        margin-top: -55px;
    }

    #before_after .preview {
        margin-bottom: 5px;
    }

    .footer-ctas {
        display: none;
    }

    #header .header-identity {
        margin-bottom: 20px;
    }

    #header h1 {
        font-size: 31px;
        line-height: 1.1;
        margin-bottom: 10px;
    }

    #header h3 {
        margin-bottom: 20px;
        font-size: 25px;
    }

    .service-box.box-fix {
        margin-top: 0;
    }

    h2.special-headline {
        font-size: 55px;
    }

    h3.special-headline {
        font-size: 48px;
    }

    #about-us {
        padding: 100px 0 50px;
        /* background-image: url('../img/decor_effects-3.png'); */
        background-position: 100% 80%;
    }

    #why-us .floating-decor {
        display: none;
    }

    #about-me {
        background-image: url('../img/decor_transform-1.png');
        background-position: 0 100%;
    }

    #back-to-top {
        right: 25px;
    }
}

@media (max-width: 576px) {

    #footer-strip img {
        margin-bottom: 20px;
    }

    .nav-phone {
        position: fixed;
        bottom: 13px;
        left: calc(50% - 129px);
        padding: 10px 20px 10px 23px;
        border-radius: 56px;
        background-color: #171717;
        visibility: visible;
        z-index: 999;
    }

    .nav-phone i {
        color: #fff;
        font-size: 25px;
    }

    .nav-phone__link {
        margin-left: 10px;
        color: #fff;
        font-size: 16px;
        font-size: 21px;
        font-weight: bold;
        line-height: 25px;
        display: inline-block;
    }
}

@media (max-width: 768px) {
    #header {
        background-image: none;
    }

    .header-content {
        padding: 30px 0 70px;
    }

    ul.gallery li {
        width: 48%;
    }

}

@media (max-width: 992px) {}