@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    cursor: context-menu;
}


a {
    text-decoration: none;
    color: #000000;
    transition: .2s ease;
    display: inline-block;
}

p {
    /* font-weight: 400; */
    animation-name: fadeIn;
}

img {
    max-width: 100%;
}

.d-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-btn {
    display: inline-block;
    border-radius: 3rem;
    padding: 0.7rem 2.5rem;
    border: 1px solid #18CB96;
    background-color: #18CB96;
    color: white;
    transition: all 0.4s ease;
    animation: leave 0.4s forwards;
    font-weight: 500;
    font-size: 0.9rem;
}

.custom-btn.outline {
    border-color: white;
    background: transparent;
}

.custom-btn.outline.outline-green {
    border-color: #18CB96;
    color: #18CB96;
}

.custom-btn:hover {
    animation: hover 0.4s forwards;
}

.custom-btn-green {
    border-radius: .5rem;
    background-color: #35B049;
    border-color: #35B049;
}

.custom-btn-blue {
    border-radius: .5rem;
    background-color: #18CB96;
    border-color: #18CB96;
}

.custom-btn i {
    padding-right: 0.25rem;
}


@keyframes hover {
    0% {
        box-shadow: inset 0 0 0 0 white;
    }

    100% {
        box-shadow: inset 13em 0 0 0 white;
        color: #18CB96;
    }
}

@keyframes leave {
    0% {
        box-shadow: inset -10em 0 0 0 white;
        color: #18CB96;
    }

    100% {
        box-shadow: inset 0 0 0 0 white;
    }
}


.section {
    padding: 4rem 0;
}

.subtitle {
    color: #18CB96;
    margin-bottom: .5rem;
}

.title {
    margin-bottom: 1rem;
    font-weight: 600;
    animation-name: fadeInUp;
}

.page-banner h1 {
    animation-name: fadeInUp;
}

.bg-1 {
    background-color: #F9F9F9;
}


/* HEADER */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 15;


}

.header {
    padding: 1rem 0;
    transition: .3s ease;
    background: white;
}

.header-links a {
    padding: 1rem;
    position: relative;
    color: black;
}

.header-links a::before {
    content: "\f111";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 50%;
    top: 40px;
    opacity: 0;
    transition: 0.3s ease;
    color: #18CB96;
    transform: translate(-50%, 0px);
    font-size: 0.5rem;
}

.header-links a:hover::before,
.header-links a.active::before {
    opacity: 1;
}

.branch-menu-icon {
    display: none;
}

.header-language {
    position: relative;
    text-align: center;
    padding: 0.5rem;
    cursor: pointer;
}

.language-dp {
    position: absolute;
    background: #fcfcfc;
    width: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    z-index: 1;
    top: 42px;
    gap: 0.5rem;
    display: none;
}

.mobile-menu {
    display: none;
}

.header.sticky {
    /* background: linear-gradient(to right, #29d4df, #065876); */
    /* padding: .5rem 0; */
    box-shadow: 0px 0px 10px 0px #d3d3d3;
}


.logo img {
    width: 200px;
    object-fit: contain;
}

/* footer .logo img {
    width: 200px;
} */

.header-right {
    gap: 1rem;
}

/* PAGE SCROLLBAR */
::-webkit-scrollbar {
    width: 10px;
    height: 3px;
}

::-webkit-scrollbar-track {
    background-color: white;
}

::-webkit-scrollbar-thumb {
    background: #e7e7e7;
}

::-webkit-scrollbar-thumb:hover {
    background: #18CB96;
}

.socials {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: white;
    border: 1px solid transparent;

}

.socials a:hover {
    /* background-color: #18CB96; */
    border-color: white;
    /* color: #18CB96; */
}


/* BANNER */
.banner-slider {
    position: relative;
}


.banner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 0;
}

.banner {
    /* height: 100vh; */
    /* background: linear-gradient(to right, #01B2BE, #065876); */
    color: white;
    position: relative;
}

.banner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0a0a0a8f;
    z-index: -1;

}

:root {
    --header-space: 103.64px;
    --top-gap: 3rem;
}

.header-space {
    padding-top: var(--header-space);
}

.banner-slider {
    position: relative;
}

.banner-slider .swiper-slide {
    position: relative;
    /* background: linear-gradient(to right, #01B2BE, #065876); */
    overflow: hidden;
    background-size: cover !important;
}


.banner-item {
    padding: 4rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.banner-img-container {
    width: 40%;
}

/* .banner-img {
    background: #D3EAEE;
    width: 60vw;
    border-top-left-radius: 17rem;
    border-bottom-left-radius: 17rem;
    border: 1rem solid #065876;
} */

/* .banner-img img {
    height: 450px;
    object-fit: contain;
} */


.banner-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.banner-image img {
    /* width: 100%; */
}

.banner-content {
    width: 60%;
}

.banner-content h1 {
    font-size: calc(1.7vw + 1rem);
    font-weight: 500;
    animation: fadeInUp 1.5s;
    margin-bottom: 1.5rem;
}

.pagination-container {
    width: 100%;
    bottom: 1rem;
    position: absolute;
    left: 0;
}

.pagination {
    overflow: hidden;
    height: 40px;
    position: relative;

}

.pagination .swiper-pagination {
    width: auto;
}

.bullets span {
    width: 15px;
    height: 15px;
    opacity: .5;
    transition: .2s ease;
    background-color: white;
}

.bullets .swiper-pagination-bullet-active {
    opacity: 1;
}

.green-bullets span {
    background-color: #35B049;

}

.b1 {
    bottom: 1rem !important;
}


.banner-socials {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 1rem;
    transform: translate(0px, -50%);
}

.banner-socials .socials {
    flex-direction: column;
}

/* SERVICES */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.services-2{
    grid-template-columns: repeat(2, 1fr);
}

.services-slider {
    overflow: hidden;
    position: relative;
}

.service {
    background-size: cover !important;
    border-radius: 1.2rem;
    padding: 1rem;
    position: relative;
    transition: .2s ease;
    cursor: context-menu;
    z-index: 0;
}

.services .service {
    box-shadow: 0px 0px 10px 0px #c1c1c1;
}


.services .service p {
    max-width: 100%;
}

.service::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: -1;
    left: 0;
    top: 0;
    border-radius: 1rem;
    transition: .2s ease;
}

.service h2 a,
.service h3 a {
    font-size: 1.25rem;
    font-weight: 400;
    margin: 1rem 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    height: 24px;
}

.service img {
    width: 64px;
}

.service p {
    /* font-size: .9rem; */
    /* max-width: 230px; */
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 46.44px;
}

.service-link {
    opacity: 0;
}

.service:hover .service-link {
    opacity: 1;
}

.service:hover::before {
    background-color: #35b049a2;
}

.service:hover,
.service:hover a {
    color: white;
}

.service:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

/* ABOUT */
.square-img {
    display: grid;
    grid-template-areas:
        "img img3"
        "img2 img3";
    gap: .5rem;
    grid-template-columns: 1fr 1fr;
}

.square-img img:nth-child(1) {
    grid-area: img;
}

.square-img img:nth-child(2) {
    grid-area: img2;
}

.square-img img:nth-child(3) {
    grid-area: img3;
}

.square-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .5rem;
}

/* GALLERY */
.bg-2 {
    background-image: url(images/banner3.webp);
    background-size: cover;
}

.bg-3 {
    background-image: url(images/alcimart-bg2.png);
    background-size: cover;
}

.bg-shadow {
    position: relative;
    z-index: 0;
}

.bg-shadow::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #0000005c;
    z-index: -1;
}

.gallery-slider {
    overflow: hidden;
    margin-top: var(--top-gap);
}

.gallery {
    border-radius: 1rem;
    overflow: hidden;
}

.gallery-img {
    position: relative;
    overflow: hidden;
}

.gallery img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    transition: .2s ease;
}

.gallery:hover img {
    scale: 1.1;
}

.gallery h2,
.gallery h3 {
    background-color: #35B049;
    transition: .2s ease;
    text-align: center;
    color: white;
    margin: 0;
    padding: 1rem;
    font-size: 1.15rem;
    font-weight: 400;
}

.gallery:hover h2,
.gallery:hover h3 {
    background-color: #18CB96;
}

/* STEPS */
.steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    row-gap: 3rem;
    margin-top: var(--top-gap);

}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-img {
    min-width: 150px;
    height: 150px;
    border-radius: .5rem;
    border: 2px solid #18CB96;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.step-img span {
    position: absolute;
    left: -12px;
    top: -12px;
    background-color: #18CB96;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-img img {
    filter: brightness(0) saturate(100%) invert(20%) sepia(77%) saturate(448%) hue-rotate(111deg) brightness(95%) contrast(96%);
    width: 80px;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    animation-name: animate__fadeInDown;
}

.step p {
    font-size: .9rem;
    max-width: 410px;
}

/* JUMB */
.jumb {
    display: flex;

}

.bg-gradient {
    background-image: linear-gradient(75deg, #43927b, #094936) !important;
}

.jumb-img {
    width: 47%;
    position: relative;
    background-image: url(images/banner1.webp);
    background-size: cover;
}

.jumb-content {
    width: 53%;
    padding: 5rem;
    color: white;
    position: relative;
    z-index: 0;
}

.mask {
    position: absolute;
    top: 0;
    right: 0;
    /* width: 100%; */
    height: 100%;
    object-fit: contain;
    z-index: -1;
}

.mask img {}

.service-item {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.service-item:not(:last-child) {
    margin-bottom: 1rem;
}

.service-item img {
    width: 52px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);

}

.service-item h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
}

.service-item a {
    color: white;
    text-decoration: underline !important;
}


.abs-img {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0px, -50%);
    background: white;
    padding: 1.2rem;
    border-top-left-radius: 5rem;
    border-bottom-left-radius: 5rem;
}

.abs-img img {
    width: 180px;
}

/* FAQS */
.faq-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: var(--top-gap);
}

.faq-categories {
    width: 35%;
}

.faqs {
    width: 65%;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.faq {
    background-color: #F8F8F8;
    padding: 1rem;
    border-radius: .75rem;
    border: 1px solid #F8F8F8;
    transition: .2s ease;
    cursor: pointer;
}

.faq h3 {
    margin: 0;
    font-size: 1.05rem;
    transition: .2s ease;
    font-weight: 400;
}

.faq.show:not(:last-child) {
    margin-bottom: 1rem;
}

.faq.active {
    border-color: #18CB96;
}

.faq.active h3 {
    color: #18CB96;
}

.faq p {
    margin: 0;
    color: #717171;
    font-size: .9rem;
}

.faq-answer {
    display: none;
    padding-top: 1rem;
}

/* FORM */
.custom-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.custom-form>div {
    width: 100%;
}

.custom-form .half-input {
    width: 48%;
}

.custom-form input:not([type='file']),
.custom-form textarea {
    width: 100%;
    padding: .5rem .75rem;
    outline: none !important;
    border: 1px solid #FBFBFA;
    border-radius: .25rem;
    transition: .2s ease;
    resize: none;
    background-color: #FBFBFA;
}

.custom-form input::placeholder,
.custom-form textarea::placeholder {
    color: #B8B8B8;
}

.custom-form input:focus,
.custom-form textarea:focus {
    border-color: #35B049;
}

.form-container {
    background-color: white;
    padding: 2rem !important;
    border-radius: 1rem;
}

.form-right {
    max-width: 750px;
    margin-left: auto;
}

.contact-form {
    margin-top: var(--top-gap);
    position: relative;
}

.custom-form .custom-btn {
    width: 100%;
    animation: none;
}

.contact-form .form-container {
    padding: 2rem 4rem;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    background-color: #464646;
    width: 70px;
    min-width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #18CB96;
    font-size: 1.75rem;
    border-radius: .5rem;
}

.contact-icon:not(:last-child) {
    margin-bottom: 1rem;
}

.contact-item:not(:last-child) {
    margin-bottom: 1rem;
}

.contact-link>div {
    margin-bottom: .2rem;
}

.pos-contact {
    position: absolute;
    width: 35%;
    top: 50%;
    transform: translate(0px, -50%);
    right: 720px;
}

/* TESTIMONIALS */
.testimonial-slider {
    padding-top: 4rem;
    overflow: hidden;
}

.testimonial {
    text-align: center;
    background-color: #F9F9F9;
    padding: 3rem 2rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid #F9F9F9;
    position: relative;
    transition: .2s ease;
}

/* .testimonial::before{
    content: "";
    background-image: url(images/test-mask.png);
    position: absolute;
    width: 100%;
    height: 200px;
    bottom: 0;
    left: 0;
} */

.testimonial i {
    font-size: 4.5rem;
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translate(-50%, 0);
}

.testimonial p {
    font-size: .9rem;
}

.testimonial h3 {
    font-size: 1.2rem;
    font-weight: 400;
}

.testimonial:hover {
    border-color: #18CB96;
}

/* FOOTER */
footer {
    color: white;
    position: relative;
}

footer a {
    color: white;
}

.footer-top {
    padding: 3rem 0 3rem;
}

footer .logo img {
    width: 200px;
    margin-bottom: 1rem;
}

footer p {
    font-size: .9rem;
}

.footer-title {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-title-2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: bold;
}


.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid white;
}

.link-col {
    padding-left: 8rem;
}

.footer-links>div {
    margin-bottom: .5rem;
}

.footer-contact {
    margin-top: 1.2rem;
}

.footer-contact i {
    font-size: 1.25rem;
    width: 30px;
    text-align: center;
}

.footer-contact>div {
    margin-bottom: 1rem;
}





/* ABOUT PAGE */
.page-banner {
    padding: 5rem 0;
    text-align: center;
    color: white;
    position: relative;
    z-index: 0;
}

.page-banner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #00000030;
    z-index: -1;
}

.page-banner a {
    color: white;
}

.square-img1 {
    grid-template-areas:
        "img img"
        "img img";
}

.contact-img {
    width: 100%;
    border-radius: .5rem;
    object-fit: cover;
}

.map iframe {
    width: 100%;
    height: 40vh;
    border-radius: .5rem;
}

/*  */

.sticky-wp {
    position: fixed;
    font-size: 2rem;
    right: 42px;
    bottom: 2rem;
    z-index: 999;
    transition: .3s ease
}

.sticky-wp-icon {
    background: #25d366;
    padding: 1rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 red;
    animation: wpAnimation 1.5s linear infinite
}

.sticky-wp a {
    color: #fff
}

.sticky-phone{
    bottom: 5.9rem;
    font-size: 1.5rem;
}

.sticky-phone a{
    background: #1c1c1c;
}

@media screen and (max-width:1400px) {
    /* .logo img {
        width: 250px;
    } */

    .header-links a {
        padding: 1rem 0.2rem;
    }

}

@media screen and (max-width:1200px) {

    /* :root {
        --header-space: 80.63px;
    } */

    /* .mobile-menu.sticky {
        height: calc(100vh - 64.63px);
        top: 64.63px;
    } */

    .link-col {
        padding-left: 3rem;
    }

    /* JUMB */
    .jumb-content {
        padding: 2rem;
    }

    /* CONTACT */

    .form-right {
        max-width: 630px;
    }

    .pos-contact {
        right: 600px;
    }
}


@media screen and (max-width:1200px) {

    /* HEADER */
    /* MOBILE MENU */
    .mobile-menu {
        display: block;
        width: 100%;
        height: calc(100vh - var(--header-space));
        top: var(--header-space);
        background: #ffffff;
        z-index: 11;
        position: fixed;
        padding: 15px 0;
        left: 100%;
        transition: 1s ease;
        transition: top .3s ease;
    }

    .mobile-menu::before,
    .mobile-menu::after,
    .mobile-shutter {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #18CB96;
        top: 0;
        left: 0;
        z-index: 3;
        left: 100%;
    }

    .mobile-menu::before {
        transition: 1s ease;
    }

    .mobile-shutter {
        transition: 0.6s ease;
        left: 0;
        z-index: 3;
        background-color: #111111;
    }

    .mobile-menu::after {
        z-index: 2;
        background-color: black;
        transition: 1.5s ease;
        transform: translateX(-100%);
    }

    .mobile-menu.active::after {
        transform: translateX(-200%);
        /* transition: 1s ease; */
    }

    .mobile-menu.active::before {
        transform: translateX(-200%);
        /* transition: 2s ease; */
    }

    .mobile-menu.active {
        transform: translateX(-100%);
    }

    .mobile-menu.active .mobile-shutter {
        transform: translateX(-100%);
    }

    /* .mobile-menu .social-item span {
        opacity: 1;
    }

    .mobile-menu .social-item:not(:last-child) {
        margin-bottom: 0.5rem;
    }

    .mobile-menu .social-item:hover {
        transform: none;
    } */

    .header .header-links {
        display: none;
    }

    .header-links {
        gap: 0.25rem;
        flex-direction: column;
        align-items: baseline;
        max-height: 360px;
        overflow: auto;
    }

    .header-links a {
        width: 100%;
        font-size: 1.25rem;
        padding: 0.5rem 1.5rem;
        color: black;
    }

    .header-links a::before {
        left: 8px;
        top: 50%;
        transform: translate(0, -50%);
    }

    /* .header-space {
        margin-top: var(--header-space);
    } */

    /* MENU ICON */
    .branch-menu-icon {
        border-color: transparent;
        outline: none !important;
        position: relative;
        width: 35px;
        height: 35px;
        padding: 0;
        text-align: center;
        display: flex;
        align-items: center;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .burger-icon {
        display: block;
        width: 2rem;
        height: 3px;
        border-radius: 1rem;
        background: black;
        transition: 0.3s ease;
    }

    .burger-icon::before,
    .burger-icon::after {
        content: "";
        width: 2rem;
        height: 3px;
        border-radius: 1rem;
        background: black;
        position: absolute;
        transition: 0.3s ease;
        left: 0;
    }

    .burger-icon::before {
        top: 1.5rem;
    }

    .burger-icon::after {
        bottom: 1.5rem;
    }

    .branch-menu-icon.active .burger-icon {
        background-color: transparent;
    }

    .branch-menu-icon.active .burger-icon::before {
        transform: rotateZ(-45deg) scaleX(1.25) translate(3.5px, -3.5px);
    }

    .branch-menu-icon.active .burger-icon::after {
        transform: rotateZ(45deg) scaleX(1.25) translate(6.5px, 7.5px);
    }

    .header .socials {
        display: none;
    }

}

@media screen and (max-width:992px) {

    .section {
        padding: 2rem 0;
    }

    .b1 {
        bottom: 0.2rem !important;
    }

    .faq-container {
        margin-top: 2rem;
    }

    :root {
        --top-gap: 2rem;
    }





    /* BANNER */
    .banner-container {
        flex-direction: column-reverse;
        justify-content: start;
        text-align: center;
        padding: 2rem 0 3rem;
    }

    .banner-img-container {
        width: 100%;
    }

    .banner-content {
        width: 100%;
    }

    .banner-img {
        height: 300px;
        margin-bottom: 1rem;
    }

    .banner-img img {
        object-fit: contain;
    }

    .pagination .swiper-pagination {
        width: 100%;
    }

    .pagination-container {
        bottom: 0rem;
    }

    /*  */
    .mobile-flex {
        flex-direction: column-reverse !important;
        gap: 1rem;
    }

    .square-img {
        grid-template-rows: 180px 180px;
    }

    .services {
        grid-template-columns: repeat(2, 1fr);
    }

    /* STEPS */
    .steps {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 1.5rem;
    }

    .step p {
        max-width: 100%;
    }

    /* JUMB */
    .jumb-content {
        width: 63%;
    }

    .jumb-img {
        width: 37%;
    }

    /* CONTACT */
    .form-right {
        margin: auto;
        max-width: 100%;
    }

    .pos-contact {
        position: static;
        transform: none;
        width: 100%;

    }

    .contact-form {
        display: flex;
        flex-direction: column-reverse;
        gap: 1rem;
    }

    /* FOOTER */
    .link-col {
        padding-left: 15px;
    }

    .footer-title,
    .footer-title-2 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        font-weight: 500;
    }

    .footer-top .row {
        row-gap: 1rem;
    }

    .footer-top {
        padding: 1rem 0 1rem;
        margin-top: 0rem;
    }


    /* CONTACT */
    .contactt {
        gap: 1rem;
        flex-direction: column-reverse;
    }

    .contact-img {
        height: 200px;
    }
}

@media screen and (max-width:768px) {

    /* JUMB */
    .jumb {
        flex-direction: column;
    }

    .jumb-content {
        width: 100%;
    }

    .jumb-img {
        width: 100%;
        height: 200px;
        background-position: center;
    }

    .abs-img img {
        width: 120px;
    }

    /* FOOTER */


    .footer-contact-2 {
        display: none;
    }


    /* footer .logo img {
        width: 160px;
    } */



}

@media screen and (max-width:576px) {
    /* .logo img {
        width: 200px;
    } */

    /* :root {
        --header-space: 77.98px;
    } */

    .banner-img {
        height: 240px;
    }

    .custom-btn {
        padding: 0.7rem 1.5rem;
    }


    .square-img {
        grid-template-rows: 120px 120px;
    }

    /* STEPS */
    .step {
        align-items: start;
    }

    .step-img img {
        width: 50px;
    }

    .step-img {
        min-width: 80px;
        height: 100%;
    }

    /* FAQS */

    .faq h3 {
        font-size: 1rem;
    }

    .faq-container {
        flex-direction: column;
    }

    .faq-categories,
    .faqs {
        width: 100%;
    }

    .faq-categories {
        border-bottom: 2px solid #18CB96;
        padding-bottom: 1.5rem;
    }
}

@media screen and (max-width:480px) {
    .logo img {
        width: 160px;
    }

    :root {
        --header-space: 89.31px;
    }


    .custom-form .half-input {
        width: 100%;
    }

    .header-right {
        gap: 0.5rem;
    }

    .services {
        grid-template-columns: repeat(1, 1fr);
    }

    .service p {
        height: auto;
    }

    .sticky-wp {
        bottom: 0.8rem;
        right: 10px;
    }

    .sticky-phone {
        bottom: 4.5rem;
       
        font-size: 1.5rem;
    }



}