@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --black: #000;
    --white: #fff;
    --teal: #005B71;
    --lightGray: #667085;
    /* --darkGreen: #40742e; */
    --darkGreen: #1e913a;
    /* --magenta: #c82873; */
    --magenta: #e51368;
    --darkGrey: #575756;
    --lightGreen1: #f3f9f2;
    --lightGreen2: #ecf5ea;
    --lightGreen3: #ddeedf;
}

body {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: var(--black);
    background-color: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.5s;
}

/* Common Style Start */
.container {
    padding: 0 15px;
}

.banner-title * {
    font-family: inherit;
    font-size: 68px;
    line-height: 75px;
    font-weight: 700;
    margin: 0;
}

.banner-title span {
    color: var(--darkGreen);
}

.section-title * {
    font-family: inherit;
    font-size: 48px;
    line-height: 60px;
    font-weight: 700;
    margin: 0;
}

.small-title * {
    font-family: inherit;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin: 0;
}

.large-detail * {
    font-family: inherit;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: #101828;
    margin: 0;
}

.common-detail * {
    font-family: inherit;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #101828;
    margin: 0;
}

.detail * { 
    font-family: inherit;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin: 0;
}

.small-detail * {
    font-family: inherit;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #101828;
    margin: 0;
}

.btn {
    font-size: 16px;
    line-height: 28px;
    font-weight: 700;
    padding: 16px 20px;
    border-radius: 14px;
    border: none;
    position: relative;
}

.btn-teal {
    background-color: var(--magenta);
    color: var(--white);
}    

.btn-teal:hover,
.btn-teal:focus,
.btn-teal:active,
.btn-teal.active {
    background-color: var(--darkGreen) !important;
    color: var(--white) !important;
}

.btn-white {
    background-color: var(--white);
    color: var(--darkGreen);
    box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 10%), 0px 8px 10px -6px rgba(0, 0, 0, 10%);
}    

.btn-white:hover,
.btn-white:focus,
.btn-white:active {
    background-color: var(--magenta) !important;
    color: var(--white) !important;
}

.btn-arrow {
    display: flex;
    align-items: center;
    max-width: max-content;
    margin: 0 auto;
}

.btn-arrow::after {
    content: "";
    background-image: url("../images/right-arrow.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 14px;
    height: 14px;    
    margin: 0 0 0 12px;
}
/* Common Style End */

/* Header Start */
.header {
    background-color: var(--white);
    padding: 17px 0;
    position: relative;
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.header .navbar {
    padding: 0;
}

.header .navbar-brand {
    max-width: 250px;
    padding: 0;
    margin: 0;
}

.header .navbar-nav .nav-item {
    padding: 0 16px;
}

.header .navbar-nav .nav-link {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #4A5565;
    padding: 0;
}

.header .navbar-nav .nav-link:hover,
.header .navbar-nav .nav-link.active {
    color: var(--magenta);
}

.header-btn {
    padding-left: 16px;
}

.header-btn .btn {
    padding: 8px 24px;
    border-radius: 30px;
    box-shadow: 0px 10px 15px -3px rgba(0, 91, 113, 20%), 0px 4px 6px -4px rgba(0, 91, 113, 20%);
}       
/* Header End */

.content {
    padding: 84px 0 0;
}

section {
  scroll-margin-top: 84px; 
}

/* Banner Start */
.bnr-wrp {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 0;
    padding: 132px 0 124px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bnr-wrp::before {
    content: "";
    background-color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0.85;
    z-index: 1;
}

.bnr-img {
    position: absolute;
    inset: 0;
}

.bnr-img img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

.bnr-main {
    position: relative;
    z-index: 9;
}

.bnr-main .banner-title {
    padding: 0 0 24px;}

.bnr-main .banner-text {
    max-width: 860px;
    width: 100%;
    margin: 0 auto 80px;
}

.banner-text p {
    font-size: 24px;
    line-height: 32px;
    color: #101828;
}

.banner-text p:last-child {
    margin-bottom: 0;
}

.contact-number {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 0 0;
}

.contact-number .call-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px 0 0;
    background-color: var(--white);
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 10%), 0px 2px 4px -2px rgba(0, 0, 0, 10%);
    border-radius: 50%;
}

.contact-number a {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: #1E2939;
}

.contact-number a:hover {
    color: var(--magenta);
}
/* Banner End */

/* Benefits Start */
.benefits-wrp {
    background-color: var(--lightGreen3);
    border: 1px solid rgba(0, 91, 113, 0.1);
    padding: 32px 0 2px;
}

.benefits-block {
    display: flex;
    align-items: center;
    margin: 0 0 30px;
}

.benefits-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    margin: 0 12px 0 0;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 10%), 0px 1px 2px -1px rgba(0, 0, 0, 10%);
    border-radius: 10px;
}

.benefits-content .detail {
    padding: 0 0 4px;
}

.benefits-content .detail * {
    line-height: 20px;
    font-weight: 700;
    color: var(--darkGreen);
}

.benefits-content .small-detail * {
    line-height: 16px;
}
/* Benefits End */

/* Consultation Start */
.consultation-wrp {
    padding: 96px 0 120px;
}

.consultation-main .section-title {
    text-align: center;
    margin: 0 0 64px;
}

.consultation-main .section-title::after {
    content: "";
    background-color: var(--darkGreen);
    width: 80px;
    height: 6px;
    border-radius: 100px;
    display: block;
    margin: 16px auto 0;
}

.consultation-row .row {
    margin: 0 -16px;
}

.consultation-row .row>* {
    padding: 0 16px;
}

.consultation-block {
    padding: 20px 24px 49px;
    background-color: var(--lightGreen1);
    border-radius: 16px;
    margin: 0 0 32px;
    height: calc(100% - 32px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.consultation-block .detail {
    display: flex;
}

.consultation-block .detail span {
    display: block;
    flex: 0 0 auto;
    margin: 0 0 0 20px;
}

.consultation-block .detail * {
    line-height: 26px;
    font-style: italic;
    color: #101828;
}

.consultation-block .small-detail {
    padding: 16px 0 0;
}

.consultation-block .small-detail * {
    font-weight: 700;
    color: var(--magenta);
}

.consultation-main .common-detail {
    max-width: 736px;
    width: 100%;
    margin: 0 auto;
    padding: 12px 0 0;
    text-align: center;
    color: #101828;
}
/* Consultation End */

/* Services Start */
.services-wrp {
    padding: 96px 0 72px;
    background-color: var(--lightGreen1);
} 

.services-main .section-title {
    margin: 0 0 16px;
}

.services-main .large-detail {
    margin: 0 0 34px;
}

.services-block {
    padding: 24px;
    background-color: var(--white);
    border-radius: 16px;
    margin: 0 0 24px;
    height: calc(100% - 24px);
}

.services-icon {
    width: 56px;
    height: 56px;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--lightGreen3);
    border-radius: 14px;
}

.services-content .common-detail {
    margin: 0 0 12px;
}

.services-content .common-detail * {
    font-weight: 700;
    line-height: 22px;
    color: var(--black);
}
/* Services End */

/* Steps Start */
.steps-wrp {
    padding: 95px 0;
}

.steps-row {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 0 0;
}

.steps-block {
    position: relative;
}

.steps-block::after {
    content: "";
    border: 2px dashed rgba(30, 145, 58, 0.2);
    position: absolute;
    left: 50%;
    width: 100%;
    top: 32px;
    z-index: -1;
}

.steps-row .row>*:last-child .steps-block::after {
    display: none;
}

.step-number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background-color: var(--darkGreen);
    color: var(--white);
    border-radius: 50%;
    box-shadow: 0px 20px 25px -5px rgba(0, 91, 113, 30%), 0px 8px 10px -6px rgba(0, 91, 113, 30%);
}

.step-number * {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin: 0;
}

.steps-content .small-title {
    padding: 0 0 12px;
}   

.steps-content .detail {
    color: #101828;
}
/* Steps End */

/* Result Start */
.result-wrp {
    background-color: var(--lightGreen2);
    padding: 96px 0 80px;
}

.result-main .section-title {
    margin: 0 0 16px;
}

.result-inner {
    max-width: 1096px;
    width: 100%;
    margin: 0 auto;
    padding: 64px 0 0;
}

.result-block {
    padding: 32px 36px;
    background-color: var(--white);
    border-radius: 16px;
    border-left: 4px solid #4D8076;
    margin: 0 0 16px;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 10%), 0px 1px 2px -1px rgba(0, 0, 0, 10%);
}

.result-block .small-title {
    color: var(--darkGreen);
    margin: 0 0 16px;
}

.result-block .small-detail *:not(p) {
    letter-spacing: 0.35px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 4px;
}

.before .small-detail *:not(p) {
    color: #E7000B;
}

.after .small-detail *:not(p) {
    color: #4D8076;
}

.result-before-after {
    display: flex;
}

.result-icon {
    width: 20px;
    height: 20px;
    margin: 0 12px 0 0;
    flex: 0 0 auto;
}
/* Result End */

/* Schedule Appointment Start */
.appointment-wrp {
    background-color: var(--darkGreen);
    padding: 80px 0;
}

.appointment-main {
    color: var(--white);
}

.appointment-main .section-title {
    max-width: 857px;
    width: 100%;
    margin: 0 auto 24px;
}

.appointment-main .large-detail {
    margin: 0 0 40px;
}

.appointment-main .large-detail * {
    color: var(--white);
    opacity: 0.9;
}

.appointment-btns {
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointment-btns .btn-teal:hover,
.appointment-btns .btn-teal:focus,
.appointment-btns .btn-teal:active {
    background-color: var(--white) !important;
    color: var(--magenta) !important;
}

.appointment-btns .call-btn {
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin: 0 0 0 33px;
}

.appointment-btns .call-btn img {
    margin: 0 9px 0 0;
    flex: 0 0 auto;
}

.appointment-btns .call-btn a:hover {
    color: var(--black);
}
/* Schedule Appointment End */

/* Testimonial Start */
.testimonal-wrp {
    padding: 96px 0 32px;
    background-color: var(--lightGreen1);
}

.star-rating {
    padding: 8px 0;
}

.testimonal-title .large-detail {
    font-style: italic;
}

.testimonal-title {
    margin: 0 0 64px;
}

.testimonal-inner {
    max-width: 946px;
    width: 100%;
    margin: 0 auto;
}

.testimonal-item {
    position: relative;
    text-align: center;
    padding: 77px 56px;
    background-color: var(--white);
    border-radius: 24px;
    margin: 0 25px 40px;
    box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 10%), 0px 8px 10px -6px rgba(0, 0, 0, 10%);
}

.quote-icon {
    position: absolute;
    left: 24px;
    top: 16px;
}

.testimonal-item .large-detail {
    margin: 0 0 32px;
    font-style: italic;
}

.testimonal-content .common-detail * {
    font-weight: 700;
    color: var(--magenta);
    padding: 0 0 4px;
}

.testimonal-slider  .slick-dots {
    padding: 12px 0 0;
}

.testimonial-details {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-img {
    width: 70px;
    height: 70px;
    overflow: hidden;
    margin: 0 20px 0 0;
    border-radius: 50%;
    flex: 0 0 auto;
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonal-content {
    text-align: left;
}

.slick-dots {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-dots li {
    font-size: 0;
    line-height: 0;
    padding: 0 4px;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    width: 12px;
    height: 12px;
    border: none;
    background-color: #D1D5DC;
    border-radius: 50%;
}

.slick-dots li.slick-active button {
    width: 32px;
    background-color: var(--darkGreen);
    border-radius: 100px;
}
/* Testimonial End */

/* Faq Start */
.faq-wrp {
    padding: 86px 0 96px;
}

.faq-main .section-title {
    margin: 0 0 54px;
}

.faq-inner {
    max-width: 896px;
    width: 100%;
    margin: 0 auto;
}

.faq-inner .accordion-button {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    padding: 16px 0;
    color: #1E2939;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
}

.faq-inner .accordion-button::after {
    background-image: url("../images/down-angle.svg");
    background-size: 12px;
    width: 15px;
    height: 9px;
}

.faq-inner .accordion-item {
    margin: 0 0 8px;
    border: none;
    border-bottom: 1px solid #E5E7EB;
    border-radius: 0;
}

.faq-inner .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-inner .accordion-body {
    padding: 10px 0 20px;
}

.faq-inner .accordion-body .detail {
    color: #101828;
}

.faq-inner .accordion-body .detail p {
    margin: 0 0 15px;
}

.faq-inner .accordion-body .detail p:last-child {
    margin-bottom: 0;
}

/* Faq End */

/* Contact Us Start */
.contact-wrp {
    background-color: var(--lightGreen2);
    padding: 96px 0;
}

.contact-main .section-title {
    margin: 0 0 6px;
}

.contact-main .large-detail {
    color: #101828;
}

.contact-row {
    max-width: 1248px;
    width: 100%;
    margin: 0 auto;
}

.contact-row > .row {
    margin: 0 -24px;
}

.contact-row > .row>* {
    padding: 0 24px;
}

.contact-left {
    background-color: var(--white);
    padding: 40px;
    border-radius: 40px;
    box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 10%), 0px 8px 10px -6px rgba(0, 0, 0, 10%);
}

.contact-form p {
    margin: 0;
}

.contact-form .form-group {
    margin: 0 0 22px;
}

.contact-form .form-label {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    margin: 0 0 10px;
}

.contact-form .form-control {
    resize: none;
    padding: 12px;
    background-color: var(--lightGreen1);
    border: 1px solid #E5E7EB;
    box-shadow: none;
    border-radius: 14px;
}

.contact-form .form-check {
    padding: 13px 0 23px;
    margin: 0;
    display: flex;
    align-items: center;
}

.contact-form .form-check .form-check-label {
    font-size: 14px;
    line-height: 20px;
    color: #101828;
}

.contact-form .form-check input {
    display: none;
}
.contact-form .form-check .wpcf7-list-item-label {background: url(../images/un-check.png) no-repeat top left; padding: 0 0 0 30px;}
.contact-form .form-check .wpcf7-list-item {margin: 0px;}

.contact-form .form-check input:checked + .wpcf7-list-item-label  {
background: url(../images/check.png) no-repeat top left;
}

.form-btn {
    position: relative;
}

.form-btn .wpcf7-spinner {
    position: absolute;
    margin: 0 auto;
    display: block;
    right: 0;
    left: 0;
}

.form-btn .btn {
    display: block;
    width: 100%;
    box-shadow: 0px 20px 25px -5px rgba(0, 91, 113, 20%), 0px 8px 10px -6px rgba(0, 91, 113, 20%);
}

.contact-info-main {
    padding: 32px;
    background-color: var(--white);
    margin: 0 0 32px;
    border-radius: 24px;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 10%), 0px 1px 2px -1px rgba(0, 0, 0, 10%);
}

.contact-info-block {
    display: flex;
    align-items: center;
    margin: 0 0 22px;
}

.contact-info-block:last-child {
    margin-bottom: 0;
}

.contact-row {
    padding: 64px 0 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--lightGreen3);
    margin: 0 16px 0 0;
    flex:  0 0 auto;
    border-radius: 50%;
}

.contact-details .small-detail {
    margin: 0 0 2px;
}

.contact-details .small-detail * {
    font-weight: 700;
    color: #101828;
    text-transform: uppercase;
}

.contact-details .detail * {
    line-height: 28px;
    font-weight: 400;
    color: #101828;
}

.contact-details .detail a:hover {
    color: var(--magenta);
}

.contact-map {
    border: 4px solid var(--white);
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 10%), 0px 4px 6px -4px rgba(0, 0, 0, 10%);
    border-radius: 24px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 273px;
}

.contact-form .wpcf7-response-output {
    border: none;
    padding: 20px 0 0;
    margin: 0;
    color: red;
}
/* Contact Us End */

/* Footer Start */
.footer {
    background-color: var(--darkGreen);
    color: var(--white);
}

.footer-top {
    padding: 59px 0 48px;
}

.footer-left {
    max-width: 268px;
    width: 100%;
}

.footer-logo {
    margin: 0 0 20px;
}

.footer-logo a {
    display: block;
    max-width: 200px;
    width: 100%;
}

.footer-left .small-detail * {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
}

.footer-links .common-detail * {
    font-weight: 700;
    color: var(--white);
    margin: 0 0 24px;
}

.footer-links ul {
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    list-style-type: none;
    padding: 0 0 16px;
}

.footer-links ul li a {
    border-bottom: 1px solid transparent;
}

.footer-links ul li:last-child {
    padding-bottom: 0;
}

.footer-links ul li a:hover,
.footer-links ul li a.active {
    color: var(--white);
    border-color: var(--white);
}

.footer-bottom {
    padding: 48px 0 44px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-detail {
    max-width: 337px;
    width: 100%;
}

.copyright-detail .small-detail * {
    font-size: 16px;
    line-height: 22px;
    color: rgba(255, 255, 255, 1);
}

.copyright-detail .small-detail span {
    font-weight: 500;
    font-style: italic;
    display: block;
    padding: 4px 0 0;
}

.certified-block {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 12px 0 0;
}

.certified-block img {
    margin: 0 13px 0 0;
}

.certified-block .small-detail * {
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
}
/* Footer End */

/* Cookie Banner Style Start */
.cky-btn-revisit-wrapper {
    background-color: var(--magenta) !important;
}

.cky-btn-customize,
.cky-btn-reject,
.cky-btn-preferences {
    color: var(--magenta) !important;
    border-color: var(--magenta) !important;
    border-radius: 10px !important;
}

.cky-btn-customize:hover,
.cky-btn-reject:hover,
.cky-btn-preferences:hover {
    opacity: 1 !important;
    color: var(--darkGreen) !important;
    border-color: var(--darkGreen) !important;
}

.cky-btn-accept {
    border-color: var(--magenta) !important;
    background-color: var(--magenta) !important;
    border-radius: 10px !important;
}

.cky-btn-accept:hover {
    opacity: 1 !important;
    border-color: var(--darkGreen) !important;
    background-color: var(--darkGreen) !important;
}

.cky-preference-content-wrapper .cky-show-desc-btn {
    color: var(--magenta) !important;
}

.cky-preference-content-wrapper .cky-show-desc-btn:hover {
    color: var(--darkGreen) !important;
}
/* Cookie Banner Style End */

/* style="background-image: url('<?php echo esc_url($bg['url']); ?>');" */