/* import fonts here */

/* poppins font */

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* poppins font */



/* source-sans-3 font */

@font-face {
    font-family: 'Source Sans 3';
    src: url('../fonts/SourceSans3-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans 3';
    src: url('../fonts/SourceSans3-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans 3';
    src: url('../fonts/SourceSans3-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans 3';
    src: url('../fonts/SourceSans3-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* source-sans-3 font */





/* import fonts here */



/* base css here */

:root {
    --primary-color: #20B65F;
    --secondary-color: #FCBC05;
    --green-secondary: #4DAA66;
    --black-1000: #09090A;
    --dark-gold: #171000;
    --dark-green: #030E01;
    --white-color: #ffffff;
    --black-color: #000000;
    --whitesmoke: #F4F6F8;
    --poppins-font: "Poppins", sans-serif;
    --source-sans-3-font: "Source Sans 3", sans-serif;
    --transition: all 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: 0.3s;
}

body {
    font-family: var(--poppins-font);
    color: var(--black-1000);
}
.display-none {
    display: none;
}
ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
    transition: var(--transition);
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: normal;
    font-family: var(--source-sans-3-font);
}

p {
    font-family: var(--poppins-font);
}

.container {
    max-width: 1366px;
    padding-inline: 16px;
    margin-inline: auto;
}

/* base css here */



/* utility classes */

.text-center {
    text-align: center;
}

.d-flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-col {
    flex-direction: column;
}

.relative {
    position: relative;
}

.padding-80 {
    padding-block: 80px;
}
.padding-40 {
    padding-block: 40px;
}
.padding-custom {
    padding: 5px 0 40px 0;
}
.padding-custom .policy__container, .padding-custom .service__content {
    margin-top: 20px;
}
.pt-10 {
    padding-top: 10px;
}

.pb-10 {
    padding-bottom: 10px;
}

.section__title {
    margin-bottom: 56px;
    max-width: 756px;
    margin-inline: auto;
}

.section__title h4 {
    font-size: 56px;
    line-height: 100%;
    font-weight: 600;
    margin-bottom: 12px;
    text-wrap: balance;
}

.section__title p {
    font-size: 18px;
    line-height: 140%;
    color: #414243;
    max-width: 500px;
    text-wrap: balance;
    margin-inline: auto;
}

.theme__btn {
    font-size: 20px;
    line-height: 32px;
    text-transform: uppercase;
    padding: 16px;
    display: inline-flex;
    background-color: var(--primary-color);
    border-radius: 16px;
    color: var(--white-color);
    gap: 8px;
    margin-top: 40px;
    border: 1px solid transparent;
}

.theme__btn:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.display_web {
    display: block;
}
.display_mob {
    display: none;
}
.text-break {
    display: block;
}

@media (max-width: 480px) {
    .display_web {
        display: none;
    }
    .display_mob {
        display: block;
    }
    .hero__image img {
        width: 100%;
        height: 100%;
        object-fit: none;
        display: block;
        margin-top: -15px;
    }
}
/* utility classes */



/* components */

.phone__icon {
    display: inline-flex;
    background: var(--secondary-color);
    padding: 10px;
    border-radius: 12px;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact__label:hover {
    background-color: var(--black-1000);
}

.contact__label:hover .phone__icon {
    background-color: var(--primary-color);
}

.contact__label {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--primary-color);
    padding: 4px 18px 4px 4px;
    border-radius: 16px;
    font-family: var(--source-sans-3-font);
}

.contact__text span {
    font-size: 16px;
    line-height: 110%;
    color: var(--white-color);
    letter-spacing: -0.3px;
    font-weight: 600;
}

.contact__text p {
    font-size: 12px;
    line-height: 120%;
    color: var(--white-color);
    font-weight: 600;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    font-family: var(--source-sans-3-font);
}

/* components */



/* header area start here */

header {
    border-bottom: 1px solid #DBDBDB;
}

.header__top {
    background-color: var(--secondary-color);
    padding-block: 8px;
}

.header__top__content p {
    font-size: 15px;
    line-height: 147%;
    font-family: var(--source-sans-3-font);
}

.header__top__content p strong {
    font-weight: 600;
}

.header__content {
    padding-block: 16px;
}

.header__logo img {
    width: 160px;
}

.header__navigation ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header__navigation ul li a {
    padding: 5px;
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-gold);
}

.header__navigation ul li a:hover {
    color: var(--primary-color);
}
@media (max-width: 480px) {
    .header__top {
        padding-block: 2px;
    }
}

/* header area end here */



/* hero area start here */

.hero__area {
    background-color: var(--whitesmoke);
}

.hero__content {
    padding-block: 48px;
}

.hero__text {
    width: 42%;
}

.hero__image {
    width: 52.5%;
    border-radius: 16px;
    overflow: hidden;
}


.hero__text h1 {
    font-size: 68px;
    line-height: 100%;
    font-weight: 600;
    text-wrap: balance;
    margin-bottom: 12px;
}

.hero__text h1 span {
    color: var(--primary-color);
    display: inherit;
}

.hero__text p {
    font-size: 18px;
    line-height: 140%;
    color: #414243;
    font-weight: 500;
}

.hero__text p strong {
    display: block;
    font-weight: 600;
}

.hero__text p span {
    color: var(--primary-color);
    font-weight: 600;
}

.hero__contact {
    padding-block: 24px 50px;
}

.hero__contact .contact__label {
    display: inline-flex;
    padding: 6px;
    gap: 15px;
    padding-right: 18px;
}

.hero__contact .contact__label .phone__icon {
    padding: 16px;
    border-radius: 10px;
}

.hero__contact .contact__label .phone__icon img {
    width: 40px;
}

.hero__contact .contact__text span {
    font-size: 32px;
    line-height: 110%;
    margin-bottom: 4px;
    display: block;
}

.hero__contact .contact__text p {
    color: var(--white-color);
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.3px;
    font-weight: 600;
}

.hero__badge__image {
    flex-shrink: 0;
}

.hero__badge__image img {
    width: 55px;
    height: 55px;
}

.hero__badge {
    gap: 16px;
}

.single__hero__badge {
    gap: 12px;
}

.hero__badge__text span,
.hero__badge__text p {
    font-size: 14px;
    line-height: 100%;
    color: #083961;
}

.hero__badge__text p {
    font-weight: 700;
    margin-top: 4px;
    line-height: 16px;
}

.whatsapp__float {
    width: 100px;
    height: 100px;
    background: #05C21B;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    position: fixed;
    right: 60px;
    bottom: 40px;
}

.whatsapp__float:hover {
    background: var(--primary-color);
}


/* hero area end here */



/* google review start here */

.google__review {
    background-color: var(--whitesmoke);
    padding-block: 40px;
}

.google__slider__wrapper .container {
    padding-right: 60px !important;
    padding-left: 0;
}

.google__review .container {
    margin-left: auto;
    margin-right: 0;
    padding-right: 0;
    max-width: 1640px;
}

.google__preview__text h4 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: #6A6A6A;
    font-family: var(--poppins-font);
}

.google__preview__text .review__card__rating span {
    font-size: 28px;
    font-weight: 700;
    color: #FEA500;
    line-height: 28px;
}

.google__preview__text p {
    font-size: 12px;
    color: #868686;
    font-weight: 500;
    margin-top: 8px;
}

.google__preview__text .review__card__rating {
    margin: 0;
    margin-top: 6px;
    align-items: center;
}

.google__preview__text .review__card__rating ul li img {
    width: 26px;
}
.all_reviews a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #083961;
    text-decoration: underline;
}
.all_reviews a:hover {
    color: #05C21B;
}
.google__review__content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.google__review__content .review__slider__container {
    width: 78%;
}

.google__slider__wrapper .reviewSlider__track {
    gap: 16px;
}

.google__review__preview {
    width: 19.3%;
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: start;
    margin-top: 62px;
}
@media (max-width: 675px) {
    .google__review {
        padding-block: 0;
    }
}
/* google review end here */



/* emergency work start here */

.emergency__work__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.single__emergency__work {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid #DFE0E2;
    display: flex;
    gap: 16px;
    transition: 0.3s;
}

.emergency__work__icon img {
    width: 18px;
    height: 18px;
}

.single__emergency__work:hover {
    border-color: var(--green-secondary);
}

.emergency__work__icon {
    background: var(--green-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    flex-shrink: 0;
}

.emergency__work__text h5 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 4px;
    font-weight: 600;
    color: #101828;
}

.emergency__work__text p {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -1%;
    color: #394139;
    text-wrap: balance;
}

.section__bottom {
    gap: 16px;
    margin-top: 40px;
}

.emergency__work__bottom a+p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #1D2530;
}

.section__bottom .contact__text span {
    font-size: 24px;
}

.section__bottom .phone__icon {
    width: 56px;
    height: 56px;
    padding: 12px;
}

/* emergency work end here */



/* certification area start here */

.certification__detail {
    width: 43.44%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.single__certification {
    padding: 32px;
    border: 1px solid #D9D8D9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 32px;
    transition: 0.3s;
}

.single__certification:hover {
    border-color: #FCBC05;
}

.certification__image img {
    width: 80px;
}

.certification__image {
    flex-shrink: 0;
}

.certification__group__image {
    width: 53.2%;
    border-radius: 16px;
    overflow: hidden;
}

.certification__group__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.certification__text h4 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 8px;
}

.certification__text p {
    font-size: 16px;
    line-height: 140%;
    color: var(--dark-green);
}

/* certification area end here */



/* step area start here */

.step__area {
    background-color: var(--whitesmoke);
}

.single__step {
    width: 32.3%;
    padding: 24px 20px;
    border-radius: 24px;
    border: 1px solid #DFDFE3;
    background-color: var(--white-color);
}

.single__step:hover {
    border-color: var(--green-secondary);
}

.floating__icon {
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-inline: auto;
    font-size: 28px;
    line-height: 140%;
    font-weight: 600;
    font-family: var(--source-sans-3-font);
    background-color: var(--green-secondary);
    border-radius: 100%;
    color: var(--white-color);
    margin-bottom: 32px;
    box-shadow: 0 0 0 9px #D8ECDD;
}

.single__step h4 {
    font-size: 24px;
    line-height: 30px;
    color: var(--dark-gold);
    margin-bottom: 8px;
    font-weight: 600;
}

.single__step p {
    font-size: 16px;
    line-height: 140%;
    color: #394139;
}

/* step area end here */



/* review area start here */

.review__area {
    background-color: var(--whitesmoke);
}

.review__slot__name img {
    width: 20px;
}

.review__slot {
    display: inline-flex;
    border: 2px solid #E0E0E0;
    padding: 14px 18px;
    background: var(--white-color);
    border-radius: 100px;
    margin-bottom: 16px;
    gap: 12px;
}

.mini-dot {
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background: #D9D9D9;
}

.review__slot__name {
    gap: 8px;
}

.review__slot__name h4 {
    font-size: 18px;
    line-height: 110%;
    color: #6A6A6A;
    font-weight: 700;
}

.review__slot__rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.review__slot__rating span {
    display: block;
    font-size: 16px;
    line-height: 110%;
    font-weight: 700;
    color: var(--secondary-color);
}

.review__slot__rating img {
    color: var(--secondary-color);
    margin-top: -7px;
    width: 14px;
}

.review__slot p {
    font-size: 14px;
    line-height: 16px;
    color: #464646;
}

.single__success__block {
    padding: 24px;
    background-color: var(--white-color);
    border: 1px solid #DFE0E2;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 300px;
}

.single__success__block:hover {
    border-color: var(--green-secondary);
}

.review__success__flex {
    gap: 24px;
}

.success__block__icon {
    display: flex;
    height: 46px;
    width: 46px;
    justify-content: center;
    align-items: center;
    background-color: var(--green-secondary);
    color: var(--white-color);
    border-radius: 100%;
    font-size: 28px;
}

.success__block__text {
    text-align: left;
}

.success__block__text h4 {
    font-size: 24px;
    line-height: 24px;
    color: #101828;
    font-weight: var(--poppins-font);
    font-weight: 600;
    margin-bottom: 6px;
}

.success__block__text p {
    font-size: 16px;
    line-height: 16px;
    color: #2F2F2F;
}

.review__wrapper {
    padding-top: 80px;
    padding-inline: 20px;
    margin-inline: auto;
}

.review__wrapper__heading h4 {
    font-size: 32px;
    font-weight: 600;
    color: #222222;
    line-height: 120%;
    margin-bottom: 32px;
}
.review__wrapper__heading {
    position: relative;
    text-align: center;
}

.review__wrapper__heading .all_reviews {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.review__card {
    border-radius: 16px;
    background-color: var(--white-color);
    padding: 16px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.review__card:hover {
    border-color: var(--green-secondary);
}

.review__card__profile {
    gap: 10px;
}

.review__profile__image {
    gap: 12px;
}

.review__card__rating ul {
    display: flex;
    align-items: center;
    gap: 2px;
}

.review__card__rating,
.review__rating__timeline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-block: 12px;
}

.review__rating__info {
    display: flex;
    align-items: center;
    font-size: 22px;
    color: #787878;
}

.google__logo img,
.profile__image img {
    width: 42px;
    /*height: 42px;*/
}

.google__logo,
.profile__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.review__profile__text h4 {
    font-size: 16px;
    line-height: 110%;
    font-family: var(--poppins-font);
    font-weight: 600;
    margin-bottom: 4px;
}

.review__profile__text p {
    font-size: 14px;
    line-height: 140%;
}


.review__card__rating ul li {
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    font-size: 22px;
}

.review__rating__timeline p {
    font-size: 14px;
    line-height: 140%;
    color: #787878;
}

.review__main p {
    font-size: 17px;
    line-height: 140%;
    color: #464646;
    font-weight: 500;
    min-height: 80px;
}

.review__slider__container {
    overflow: hidden;
}

/* review area end here */

/* ── Slider Core ─────────────────────── */
.reviewSlider1 {
    overflow: hidden;
    padding-block: 6px;
}

.reviewSlider__track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.reviewSlide {
    flex: 0 0 calc(25% - 15px);
    min-width: 0;
}

.google__slider__wrapper .reviewSlide {
    flex: 0 0 calc(33.333% - 15px);
    min-width: 0;
}

/* ── Controls ────────────────────────── */
.slider__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
}

.slider__dots {
    display: flex;
    gap: 7px;
    align-items: center;
}

.slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #A9ABAC;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, width 0.25s;
}

.slider__dot.active {
    background: #20B65F;
    width: 24px;
    border-radius: 4px;
}

.slider__arrows {
    display: flex;
    gap: 24px;
}

.slider__arrow--prev,
.slider__arrow--next {
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--green-secondary);
    border-radius: 100%;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.slider__arrow--next:hover,
.slider__arrow--prev:hover {
    background: transparent;
    border-color: var(--green-secondary);
}

.slider__arrow--next:hover svg path,
.slider__arrow--prev:hover svg path {
    fill: var(--primary-color);
}

.slider__arrow svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 1200px) {
    .reviewSlide {
        flex: 0 0 calc(33.333% - 14px);
    }

    .google__slider__wrapper .reviewSlide {
        flex: 0 0 calc(40% - 15px);
    }
}

@media (max-width: 991px) {
    .reviewSlide {
        flex: 0 0 calc(50% - 10px);
    }

    .reviewSlider__track {
        gap: 20px;
    }

    .google__slider__wrapper .reviewSlide {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 675px) {
    .reviewSlide {
        flex: 0 0 100%;
    }

    .google__slider__wrapper .reviewSlide {
        flex: 0 0 100%;
    }
    .review__wrapper__heading .all_reviews {
        position: initial;
    }
}

/* brand area start here */

.brand__area {
    padding-block: 60px;
}

.brand__content .section__title {
    padding-inline: 20px;
}

.brand__content .section__title p {
    max-width: 100%;
}

.brand__marquee {
    display: flex;
    overflow: hidden;
}

.marquee__track {
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
    flex-wrap: nowrap;
    flex: 1 0 auto;
    animation: marquee 20s linear infinite;
}

.brand__marquee:hover .marquee__track {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.brand__marquee .marquee__track li {
    padding-inline: 28px;
}

/* brand area end here */



/* pricing policy start here */

.pricing__policy {
    background-color: var(--whitesmoke);
}

.pricing__policy__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.single__pricing__policy {
    background-color: var(--white-color);
    padding: 24px 20px;
    border-radius: 16px;
    border: 1px solid #DFDFE3;
}

.single__pricing__policy:hover {
    border-color: var(--green-secondary);
}

.pricing__policy__icon {
    background-color: var(--green-secondary);
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    margin-bottom: 24px;
}

.pricing__policy__icon img {
    width: 24px;
    height: 24px;
}

.pricing__policy__text h4 {
    font-size: 24px;
    line-height: 140%;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-gold);
    max-width: 199px;
    text-wrap: balance;
}

.pricing__policy__text p {
    font-size: 16px;
    line-height: 140%;
    color: #394139;
}

.policy__container {
    align-items: end;
    background: linear-gradient(45deg, #0E6327 0%, #239945 100%);
    padding: 40px 60px;
    border-radius: 24px;
    margin-top: 40px;
}

.policy__left {
    width: 65%;
}

.policy__left h4 {
    font-size: 48px;
    font-weight: 600;
    line-height: 120%;
    color: var(--white-color);
    margin-bottom: 14px;
}

.policy__left p {
    font-size: 18px;
    line-height: 140%;
    color: var(--white-color);
    margin-bottom: 32px;
    text-wrap: balance;
}

.policy__left p strong {
    font-weight: 600;
}

.single__policy__block {
    border: 1px solid #E0E0E0;
    border-radius: 100px;
    background-color: var(--white-color);
    padding: 10px;
    gap: 5px;
}

.single__policy__block span {
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
    color: #414243;
    display: block;
}

.policy__block__group {
    gap: 12px;
}

.contact__label.contact__label__white {
    background-color: var(--white-color);
}

.contact__label.contact__label__white .contact__text span,
.contact__label.contact__label__white .contact__text p {
    color: #1F1F1F;
}

.contact__label.contact__label__white .phone__icon img {
    width: 40px;
    height: 40px;
}

.contact__label.contact__label__white .phone__icon {
    padding: 16px;
}

.contact__label.contact__label__white {
    padding: 6px;
    padding-right: 18px;
}

.contact__label.contact__label__white .contact__text span {
    font-size: 32px;
    line-height: 110%;
}

.contact__label.contact__label__white .contact__text p {
    font-size: 16px;
    line-height: 120%;
}

/* pricing policy end here */

/* custom page area start here */
.custom_page__area {
    padding-block: 40px;
    background-color: var(--whitesmoke);
}
.custom_page__content p {
    text-align: justify;
    padding-bottom: 10px;
}
.custom_page__content p.pb-0 {
    padding-bottom: 0;
}
/** UL/OL **/
.custom_page__content .ul-list {
    padding-left: 20px;
    padding-top: 7px;
    padding-bottom: 7px;
}

.custom_page__content ol.ul-list {
    list-style: decimal;
    padding-left: 20px;
}

.custom_page__content ol.ul-list li {
    padding-left: 5px;
}

.custom_page__content ol.ul-list li ol {
    list-style: decimal;
    padding-left: 20px;
}

.custom_page__content ol.ul-list li ol li ol {
    list-style: decimal;
    padding-left: 20px;
}

.custom_page__content ul.ul-list li {
    list-style: none;
    padding-left: 20px;
    position: relative;
}

.custom_page__content ul.ul-list li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: #000;
}

.custom_page__content ul.ul-list li {
    list-style: none;
    padding-left: 20px;
    position: relative;
}

.custom_page__content ul.ul-list > li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: #000;
}

.custom_page__content ul.ul-list li > ol.ul-list {
    list-style: decimal;
    padding-left: 20px;
}

.custom_page__content ul.ul-list li > ol.ul-list > li {
    list-style: decimal;
    padding-left: 5px;
}

.custom_page__content ul.ul-list li > ol.ul-list > li::before {
    content: none;
}

.custom_page__content ul.ul-list li ol.ul-list li > ol {
    list-style: circle;
    padding-left: 20px;
}

.custom_page__content ul.ul-list li ol.ul-list li > ol > li {
    list-style: circle;
    padding-left: 5px;
}

.custom_page__content ul.ul-list li ol.ul-list li > ol > li::before {
    content: none;
}

/* custom page area end here */

/* contact area start here */
.contact__area {
    background-color: #fff;
}
.contact__content {
    background: #fff;
    border: 1px solid #fff;
    border-radius: 24px;
    padding: 32px;
}
.contact__flex {
    gap: 32px;
    align-items: flex-start;
}
.contact__detail {
    width: 46%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact__detail h2 {
    font-family: var(--source-sans-3-font);
    font-size: 56px;
    line-height: 100%;
    font-weight: 600;
    color: #09090A;
}
.contact__detail h2 span.color {
    color: var(--primary-color);
}
.contact__lead {
    font-size: 18px;
    line-height: 140%;
    color: #414243;
    max-width: 520px;
}
.contact__lead span.color {
    color: var(--primary-color);
}
.contact__lead span.semi-bold {
    font-weight: 600;
}
.contact__rating {
    align-self: flex-start;
    margin-bottom: 6px;
    background: var(--white-color);
}
.contact__rating .review__slot__name h4 {
    color: #111827;
}
.contact__rating p {
    color: #6B7280;
}
.contact__chips {
    gap: 12px;
    margin-top: 6px;
}
.contact__chip {
    background: var(--white-color);
    border: 1px solid #E0E0E0;
    border-radius: 999px;
    padding: 8px 12px;
    gap: 8px;
}
.contact__chip span {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}
.contact__chip-icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
}
.contact__chip-icon img {
    width: 22px;
    height: 22px;
}
.contact__cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}
.contact__card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white-color);
    border: 1px solid #E4E7EB;
    border-radius: 16px;
    padding: 14px 16px;
}
.contact__card:hover {
    border-color: var(--green-secondary);
}
.contact__card-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #EEF2FF;
}
.contact__card-icon img {
    width: 28px;
    height: 28px;
}
.contact__card-icon--whatsapp {
    background: #4DAA66;
}
.contact__card-icon--whatsapp img {
    filter: brightness(0) invert(1);
}
.contact__card-icon--email {
    background: #4DAA66;
}
.contact__card-icon--phone {
    background: #4DAA66;
}
.contact__card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.contact__card-text strong {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}
.contact__card-text span {
    font-size: 14px;
    color: #6B7280;
}
.contact__detail h3 {
    font-size: 20px;
    line-height: 140%;
    font-weight: 600;
    color: #003867;
}
.contact__detail h3 a {
    color: inherit;
}
.contact__phone {
    margin-top: 8px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #E3E8EE;
    border-radius: 12px;
}
.contact__phone-number {
    font-size: 24px;
    line-height: 120%;
    font-weight: 700;
    color: #003867;
    display: block;
}
.contact__phone-link {
    color: inherit;
}
.contact__phone-note {
    font-size: 14px;
    color: #667085;
    margin-top: 6px;
}
.whatsapp-contact {
    margin-top: 16px;
    border: 1px solid rgba(37, 211, 102, 0.35);
    background: rgba(37, 211, 102, 0.08);
    padding: 18px;
    border-radius: 12px;
}
.whatsapp-contact__title {
    font-size: 18px;
    line-height: 140%;
    font-weight: 700;
    color: #1D9B50;
    margin-bottom: 8px;
}
.whatsapp-contact__text {
    font-size: 14px;
    line-height: 150%;
    color: #344054;
    margin-bottom: 14px;
}
.whatsapp-contact__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    border: 1px solid #25D366;
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.25);
}
.whatsapp-contact__button:hover {
    background: #1EBE5D;
    border-color: #1EBE5D;
}
.contact__form {
    flex-shrink: 0;
}
.contact__group__form {
    width: 50%;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #f4f6f8;
    box-shadow: none;
}
.contact_form {
    padding: 24px;
    background-color: #F4F6F8;
}
.contact_form .error h1 {
    text-align: center;
    color: firebrick;
    padding-bottom: 10px;
    font-size: 20px;
}
.contact_form .success h1 {
    text-align: center;
    color: #20b65f;
    padding-bottom: 10px;
    font-size: 20px;
}

.form-inputs {
    display: grid;
    gap: 12px;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-label {
    font-size: 14px;
    font-weight: 400;
    color: #111827;
}
.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
}
.form-inputs--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
}
.form-inputs--grid .wide-textarea {
    grid-column: 1 / -1;
}
.form-actions {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.form-actions--stack {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-top: 25px;
}
.form-actions--stack .form-captcha {
    justify-content: center;
}
.form-captcha {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #475467;
}
.inp,
.inp_captcha,
.wide-textarea {
    width: 100%;
    background: #F9FAFB;
    border: 1px solid #D0D5DD;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    line-height: 20px;
    color: #111827;
}
.wide-textarea {
    min-height: 150px;
    resize: vertical;
}
.inp:focus,
.inp_captcha:focus,
.wide-textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(32, 182, 95, 0.15);
    background: #fff;
}
.inp_captcha {
    max-width: 140px;
    display: inline-block;
}
.blue-btn {
    margin-top: 12px;
    padding: 12px 18px;
    border-radius: 12px;
    background: #003867;
    color: #fff;
    font-weight: 600;
    border: 1px solid #003867;
    cursor: pointer;
}
.form-actions .blue-btn {
    margin-top: 0;
}
.blue-btn:hover {
    background: #002B4D;
    border-color: #002B4D;
}
.contact__submit {
    padding: 14px 18px;
    border-radius: 12px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.contact__submit:hover {
    background: #18A955;
}
.contact_form .contact__text h4 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 8px;
}
.contact_form .contact__text p {
    font-size: 16px;
    line-height: 140%;
    color: var(--dark-green);
}

@media (max-width: 1024px) {
    .contact__content {
        padding: 24px;
    }
    .contact__detail,
    .contact__group__form {
        width: 100%;
    }
    .contact__flex {
        gap: 24px;
    }
    .contact__detail h2 {
        font-size: 36px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-inputs--grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .contact__content {
        padding: 0;
    }
    .contact__detail h2 {
        font-size: 40px;
    }
    .contact__lead {
        font-size: 14px;
    }
    .contact__phone-number {
        font-size: 20px;
    }
    .contact_form {
        padding: 18px;
    }
    .contact__chips {
        gap: 6px;
    }
    .contact__chip {
        padding: 0 9px 0 1px;
        gap: 0;
    }
    .contact__chip span {
        font-size: 11px;
    }
    .contact__chip-icon img {
        width: 18px;
        height: 18px;
    }
    .contact__card-text strong, .contact__card-text span {
        font-size: 16px;
    }
    .form-actions--stack {
        padding-top: 10px;
    }
    .contact__group__form {
        box-shadow: none;
    }
    .review__slot__rating img {
        margin-top: 0;
        width: 13px;
    }
}
/* contact area end here */



/* sidebar page area start here */
.sidebar__content {

}
.sidebar__flex {

}
.sidebar__left {
    width: 25%;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar__right {
    width: 71.3%;
    border-radius: 16px;
    overflow: hidden;
}


/* service area start here */

.service__area {
    background: var(--whitesmoke);
}

.service__flex {
    gap: 24px;
}

.single__service {
    background-color: var(--white-color);
    border: 1px solid #DFDFE3;
    padding: 32px;
    border-radius: 16px;
    flex: 32% 0 0;
}

.single__service:hover {
    border-color: var(--green-secondary);
}

.service__text h4 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 4px;
    font-family: var(--poppins-font);
    font-weight: 500;
    color: var(--dark-green);
}

.service__text p {
    font-size: 16px;
    line-height: 24px;
    max-width: 340px;
    text-wrap: balance;
    color: var(--dark-green);
}

/* service area end here */



/* latest area start here */

.latest__news {
    background-color: #F4F6F8;
}

.news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.news__cell {
    padding: 24px;
    border-radius: 16px;
    background-color: var(--white-color);
    border: 1px solid #E5E6E9;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news__cell:hover {
    border-color: var(--green-secondary);
}

.news__cell .post__time {
    font-size: 14px;
    line-height: 140%;
    color: #464646;
    display: block;
    margin-bottom: 16px;
}

.news__cell h4 {
    font-size: 24px;
    line-height: 120%;
    font-weight: 600;
    margin-bottom: 12px;
}

.news__cell p {
    font-size: 14px;
    line-height: 140%;
    color: #394139;
    margin-bottom: 30px;
}

.news__cell a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    margin-top: auto;
}

.news__cell a:hover img {
    transform: translateX(8px);
}


.hidden-post {
    display: none;
}

.single__news__cell.fade-in {
    display: block;
    animation: fadeIn 0.4s ease-in forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* latest area end here */



/* location area start here */

.place__block__group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.location__detail {
    width: 35%;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location__map {
    width: 61.3%;
    border-radius: 16px;
    overflow: hidden;
}

.location__map img {
    width: 100%;
}

.single__place__list h5 {
    font-size: 18px;
    line-height: 140%;
    font-weight: 500;
    font-family: var(--poppins-font);
    margin-bottom: 16px;
}

.single__place__block {
    border: 1px solid #E9E9EB;
    border-radius: 12px;
    padding: 8px 10px;
    gap: 6px;
    display: inline-flex;
    align-items: center;
}

.single__place__block:hover {
    border-color: var(--secondary-color);
}

.single__place__block span {
    color: var(--black-1000);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

/* location area end here */



/* faq area start here */

.faq__area {
    background-color: var(--whitesmoke);
}

.faq__block__list {
    max-width: 848px;
    margin-inline: auto;
}

.faq__block__list ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__block__list ul li {
    background-color: var(--white-color);
    border-radius: 24px;
    border: 1px solid #ECEDEE;
    transition: var(--transition);
}

.faq__block__list ul li:hover {
    border-color: var(--green-secondary);
}

.faq__item {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    padding: 24px;
    transition: var(--transition);
}

.faq__collapse__item p {
    font-size: 16px;
    line-height: 150%;
    color: #505050;
    padding: 24px;
    padding-top: 0;
}

.faq__item.active {
    padding-bottom: 16px;
}

.faq__item::after {
    content: '';
    position: absolute;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M18 12.998h-5v5a1 1 0 0 1-2 0v-5H6a1 1 0 0 1 0-2h5v-5a1 1 0 0 1 2 0v5h5a1 1 0 0 1 0 2'/%3E%3C/svg%3E") center no-repeat;
    background-size: 24px;
    width: 32px;
    height: 32px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--green-secondary);
    transition: var(--transition);
}

.faq__item.active::after {
    transform: rotate(-180deg);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M18 12.998H6a1 1 0 0 1 0-2h12a1 1 0 0 1 0 2'/%3E%3C/svg%3E") center no-repeat;
    background-size: 24px;
    background-color: #989898;
}

.faq__collapse__item {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    max-width: 700px;
}

.faq__item p {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: var(--dark-green);
    font-family: var(--source-sans-3-font);
}

.section__bottom h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 100%;
    color: #003A19;
}

/* faq area end here */



/* cta area start here */

.cta__content {
    align-items: end;
}

.cta__area.policy__container {
    padding: 60px;
    border-radius: 0;
    margin-top: 0;
}

.cta__content .policy__block__group {
    margin-top: 32px;
}

.cta__content p {
    margin: 0;
}

/* cta area end here */

/* cta with form area start here */



.cta__form__area {
    background: linear-gradient(120deg, #0E6327 0%, #239945 100%);
    padding-block: 70px;
}
.cta__form__content {
    gap: 32px;
    align-items: stretch;
}
.cta__form__left {
    width: 46%;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cta__form__left h2 {
    font-size: 56px;
    line-height: 110%;
    font-weight: 700;
}
/*.cta__form__left h2 span {*/
/*    color: var(--secondary-color);*/
/*}*/
.cta__form__lead {
    font-size: 16px;
    line-height: 150%;
    color: #E6F4EA;
}
.cta__form__lead span {
    font-weight: 600;
}
.cta__call-card {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--white-color);
    border-radius: 14px;
    padding: 12px 16px;
    color: #111827;
    max-width: 320px;
}
.cta__call-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #FCBC05;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta__call-icon img {
    width: 22px;
    height: 22px;
}
.cta__call-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cta__call-text strong {
    font-size: 18px;
    font-weight: 700;
}
.cta__call-text span {
    font-size: 12px;
    text-transform: uppercase;
    color: #242424;
    letter-spacing: 0.4px;
}
.cta__form__chips {
    gap: 10px;
    margin-top: 6px;
}
.cta__form__chip {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 32px;
    padding: 8px 12px;
    gap: 8px;
    color: var(--white-color);
}
.cta__form__chip img {
    width: 16px;
    height: 16px;
}
.cta__form__chip span {
    font-size: 14px;
    font-weight: 400;
}
.cta__form__cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 50px;
}
.cta__form__card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(9, 9, 10, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white-color);
}
.cta__form__card:hover {
    border-color: rgba(255, 255, 255, 0.4);
}
.cta__form__card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cta__form__card-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}
.cta__form__card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cta__form__card-text strong {
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
}
.cta__form__card-text span {
    font-size: 16px;
    color: #fff;
}
.cta__form__divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.25);
    align-self: stretch;
    position: relative;
}
.cta__form__divider span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #187e36;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    padding: 4px 8px;
    border-radius: 999px;
}
.cta__form__right {
    width: 46%;
}
.cta__form__box {
    background: #F7F9FB;
    border-radius: 20px;
    padding: 22px 24px;
    box-shadow: 0 20px 45px rgba(16, 24, 40, 0.18);
}
.cta__form__box h4 {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 14px;
    letter-spacing: 0.4px;
}
.cta__form__box .contact__submit {
    background: #8ED9A8;
    color: #0B3D1D;
}
.cta__form__box .contact__submit:hover {
    background: #78CD97;
}

@media (max-width: 1024px) {
    .cta__form__left,
    .cta__form__right {
        width: 100%;
    }
    .cta__form__divider {
        display: none;
    }
    .cta__form__left h2 {
        font-size: 36px;
        text-align: center;
    }
    .cta__form__lead {
        text-align: center;
    }
    .cta__call-card {
        width: 100%;
    }
    .cta__call-text {
        gap: 0;
    }
}
@media (max-width: 600px) {
    .cta__form__area {
        padding-block: 50px;
    }
    .cta__form__left h2 {
        font-size: 30px;
    }
    .cta__form__box {
        padding: 18px;
    }
    .cta__call-text strong {
        font-size: 24px;
        line-height: 24px;
        font-weight: 500;
    }
    .cta__form__cards {
        margin-top: 10px;
    }
    .cta__form__chips {
        justify-content: center;
        padding: 8px 10px;
    }

    .cta__form__card-text strong {
        font-size: 16px;
    }
    .cta__form__card-text span {
        font-size: 12px;
    }
    .cta_contact_form {
        padding: 0;
    }
}
/* cta with form area end here */



/* footer area start here */

footer {
    padding-top: 60px;
}

.footer__left {
    width: 45%;
}

.footer__right {
    width: 55%;
}

.footer__links {
    gap: 20px;
}

.footer__logo a {
    display: inline-block;
    margin-bottom: 40px;
}

.footer__address address {
    font-style: normal;
}

.footer__address address+p {
    margin-block: 32px 16px;
}

.footer__address p,
.footer__address address p,
.footer__address address ul li {
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.2px;
    font-family: var(--source-sans-3-font);
}

.footer__address ul {
    margin-block: 16px;
}

.footer__address p span {
    display: block;
}

.footer__nav h5 {
    font-size: 20px;
    line-height: 120%;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer__nav nav ul li a, .footer__nav nav ul li span {
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.2px;
    color: var(--black-color);
    font-family: var(--source-sans-3-font);
}

.footer__nav nav ul li a:hover {
    color: #019937;
}

.footer__nav nav ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__payment__method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer__payment__method a:hover {
    transform: scale(1.1);
}

.footer__social ul {
    display: flex;
    gap: 12px;
}

.footer__social ul li a {
    width: 55px;
    height: 55px;
    padding: 11.67px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #019937;
    border-radius: 12px;
    color: var(--white-color);
    font-size: 30px;
}

.footer__social ul li a:hover {
    background-color: var(--primary-color);
}

.footer__copyright p {
    text-align: center;
    font-size: 14px;
    line-height: 140%;
    color: #5F5F5F;
    font-family: var(--source-sans-3-font);
}

.footer__copyright {
    padding: 24px;
    border-top: 1px solid #E5E5E5;
    margin-top: 66px;
}

.footer__copyright p a:hover {
    color: #019937;
}

/* footer area end here */









/* cta mobile css start here */

.cta__mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    padding: 16px;
    display: none;
    align-items: center;
    gap: 6px;
    justify-content: space-between;
    border-radius: 16px 16px 0 0;
    flex-wrap: wrap;
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.cta__mobile:not(.is-hidden) {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cta__mobile .cta__button {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 600;
    font-family: var(--source-sans-3-font);
}

.cta__mobile .cta__button img {
    width: 20px;
}

.cta__button.cta__call {
    background-color: var(--white-color);
}

.cta__button.cta__whatsapp {
    border: 1px solid var(--white-color);
    color: var(--white-color);
}

/* cta mobile css end here */



/* menu css start here */

.header__hamburger {
    display: none;
}

.close__icon {
    display: none;
}

.mobile__menu__button {
    padding: 16px;
    background-color: var(--whitesmoke);
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 32px;
    border-bottom: 1px solid #949697;
}

.mobile__menu__button a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.mobile__menu__button .transparent__bg:hover {
    border-color: var(--primary-color);
    background: transparent;
}

.mobile__menu__button a {
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 16px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--source-sans-3-font);
    font-size: 20px;
    line-height: 32px;
}

.mobile__menu__button a:hover {
    background: var(--green-secondary);
}

.mobile__menu__button .transparent__bg {
    border: 2px solid #1D1D1D;
    background: right;
    color: #1D1D1D;
}

.mobile__menu {
    height: calc(100vh - 97.55px);
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: all 0.35s ease;
}

.menu__trigger.active .hamburger__icon {
    display: none;
}

.menu__trigger.active .close__icon {
    display: block;
}

.mobile__menu__nav {
    padding: 32px 16px 32px 16px;
}

.mobile__menu__nav ul li a {
    font-size: 20px;
    line-height: 110%;
    color: var(--dark-gold);
    padding-block: 20px;
    display: block;
    border-bottom: 1px solid #ECEDEE;
}

.mobile__menu__nav ul li a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding-left: 20px;
}

.mobile__menu__nav ul li:last-child a {
    border: none;
}

.mobile__menu__nav ul li:first-child a {
    padding-top: 0;
}

.mobile__menu__container.active {
    max-height: calc(100vh - 97.55px);
}

.mobile__menu__container {
    max-height: 0px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    z-index: 222;
}

/* menu css end here */