@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1446px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    top: 0;
}


html,
body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Syne", sans-serif;
    background: #F0F8FF;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
    display: inline-block;
}

span {
    display: inline-block;
}

.cmn-head {
    font-weight: 600;
    font-size: 45px;
    color: #122732;
}

.cmn-para {
    font-size: 20px;
    color: rgba(97, 96, 102, 0.8);
}

header {
    padding-top: 13px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.nav-wrpr,
.navbar-collapse,
.navbar-collapse>ul {
    display: flex;
    align-items: center;

}

.navbar-collapse {
    flex-grow: 2;
    z-index: 9998;
}

.navbar-collapse ul {
    margin: 0 auto;
    gap: 85px;
    width: fit-content;
    height: fit-content;
}

/* nav-links effect */

.nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.nav-list a {
    position: relative;
    text-decoration: none;
    font-size: 18px;
    color: #1e1e1e;
    padding: 2px 0;
    transition: color 0.3s ease;
}

/* Hover text color */
.nav-list a:hover {
    color: #7df3f3;
}

/* Underline effect */
.nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: #268391;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-list a:hover::after {
    transform: scaleX(1);
}


.nav-log img {
    max-width: 81px;
    object-fit: contain;
    width: 100%;
}

.nav-toggler {
    display: none;
    color: white;
}

/* toggler effect */
.nav-toggler {
    position: relative;
    z-index: 1001;
    padding: 20px;
    cursor: pointer;
}

.container1 {
    display: block;
    position: relative;
    width: 25px;
    height: 20px;
}

.checkmark {
    position: relative;
    height: 100%;
    width: 100%;
}

.checkmark span {
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
    left: 0;
    transition: all 0.7s ease-in-out;
    pointer-events: none;
}

.checkmark span:nth-child(1) {
    top: 0;
}

.checkmark span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.checkmark span:nth-child(3) {
    bottom: 0;
}

/* Hamburger animation when active */
.container1.active .checkmark span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.container1.active .checkmark span:nth-child(2) {
    opacity: 0;
}

.container1.active .checkmark span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* .active {
    display: flex !important;
} */

.navbar-collapse ul li a {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    color: #FFFFFF;
}

.nav-btn a {
    padding: 18px 35px;
    background-color: #122732;
    border-radius: 8px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 16px;
}

/* button effect 1 */
.btn-hover-effect {
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 1000ms;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
}

.btn-hover-effect:hover {
    color: #ffffff;
    transform: scale(1.1);
    outline: 2px solid #70bdca;
    box-shadow: 4px 5px 17px -4px #268391;
}

.btn-hover-effect::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #2c9caf;
    transform: skewX(45deg);
    z-index: -1;
    transition: width 1000ms;
}

.btn-hover-effect:hover::before {
    width: 250%;
}

.banner-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-swiper,
.swiper-wrapper,
.swiper-slide {
    height: 100%;
}

.hero-swiper {
    width: 100%;
}

.hero-swiper .swiper-slide {
    width: 100%;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    display: flex;
    align-items: center;
}

.banner-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 100px 0;
}

/* .content-1 {
    padding: 217px 0;
}

.content-2,
.content-3 {
    padding: 177px 0;
} */

.banner-content h1 {
    font-weight: 700;
    font-size: 68px;
    line-height: 81px;
    color: white;
}

.banner-content p {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: white;
    max-width: 650px;
}

/* MOST VIEWED */

.most-viewed {
    padding: 75px 0;
}

.viewed-top {
    text-align: center;
    margin-bottom: 50px;

}

.viewed-top .cmn-head {
    margin-bottom: 15px;
}

.viewed-top .cmn-para {
    max-width: 612px;
    margin: 0 auto;
}

.most-viewed>div>div.row {
    justify-content: space-between;
}

.col-4 {
    width: 33%;
    padding: 0 15px;
}

.viewed-img {
    width: 100%;
}

.viewed-img>img {
    /* max-width: 424px; */
    object-fit: contain;
    width: 100%;
}

.text-1 img {
    padding: 3px;
}

.child-viewed {
    background: white;
    border-radius: 25px;
    padding: 18px 15px;
    height: 100%;
    width: 100%;
}



/* .child-viewed:hover span,
.child-viewed:hover h3,
.child-viewed:hover h4 {
    color: #FFFFFF;
}

.child-viewed:hover .view-btn-1 {
    border: 1px solid #FFFFFF;
    border-radius: 8px;
}

.child-viewed:hover .view-btn-2 {
    background-color: #FFFFFF;
}

.child-viewed:hover .text-1 img {
    border-radius: 8px;
    background-color: #FFFFFF;
} */

.text-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 15px 0;
}

.small-txt {
    font-size: 15px;
    color: #616066;
}

.cmn-view-txt {
    font-weight: 600;
    font-size: 30px;
    color: #123344;
    white-space: nowrap;
}

.cmn-view2-txt {
    font-weight: 500;
    font-size: 25px;
    color: #123344;
    margin: 15px 0;
}

.view-btns {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.view-btn-1 {
    padding: 14px 58px;
    background-color: #122732;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    transition: all 1000ms;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    z-index: 1;
    white-space: nowrap;
}

.view-btn-1:hover {
    color: #ffffff;
    /* transform: scale(1.1); */
    outline: 2px solid #70bdca;
    box-shadow: 4px 5px 17px -4px #268391;
}

.view-btn-1::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #2c9caf;
    transform: skewX(45deg);
    z-index: -1;
    transition: width 1000ms;
}

.view-btn-1:hover::before {
    width: 250%;
}


.view-btn-2 {
    padding: 14px 58px;
    border: 1px solid #122732;
    border-radius: 8px;
    color: #122732;
    font-weight: 500;
    transition: all 1000ms;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    z-index: 1;
    white-space: nowrap;
}

.view-btn-2:hover {
    color: #ffffff;
    outline: 2px solid #122732;
    box-shadow: 4px 5px 17px -4px #08202c;

}

.view-btn-2::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #123344;
    transform: skewX(45deg);
    z-index: -1;
    transition: width 1000ms;
}

.view-btn-2:hover::before {
    width: 250%;
}

.view-property {
    text-align: center;
    margin-top: 50px;
}

.view-property .btn-hover-effect {
    padding: 15px 26px;
    background-color: #122732;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    font-size: 18px;
}


/*viewed swiper */

.mostViewedSwiper {
    display: none !important;
}

.mostViewedSwiper .swiper-wrapper {
    width: 100%;
}

.mostViewedSwiper .swiper-slide {
    width: 100%;
}

/* find house */

.col-50 {
    width: 50%;
    padding: 0 15px;
}

.find-house {
    padding-bottom: 75px;
}

.find-house>div>div.row {
    align-items: center;
    justify-content: space-between;
}

.child-house img {
    max-width: 696px;
    object-fit: contain;
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.child-house img:hover {
    transform: scale(1.05);
}

.child-house-content .btn-hover-effect {
    padding: 10px 30px;
    border-radius: 8px;
    background-color: #122732;
    color: #FFFFFF;
    width: fit-content;
}

.child-house-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Our Work Section */

.our-work {
    padding-bottom: 75px;
}

.our-work-top {
    text-align: center;
}

.our-work-top .cmn-head {
    margin-bottom: 15px;
}

.our-work-top .cmn-para {
    max-width: 612px;
    margin: 0 auto;
}

.col-23 {
    width: 23.33%;
    padding: 0 15px;
}

.col-15 {
    width: 15%;
    padding: 0 15px;
}

.child-work .img-1 {
    max-width: 50px;
    object-fit: contain;
    width: 100%;

}

.arrow {
    max-width: 183px;
    object-fit: contain;
    width: 100%;
}

.child-work {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 20px 24px 20px 20px;
    background-color: #FFFFFF;
    border-radius: 25px;
    margin-top: 50px;
}

.cmn-work-head {
    font-weight: 500;
    font-size: 25px;
}

.child-work p {
    font-size: 18px;
    color: #616066;
    max-width: 292px;
}

.our-work .row {
    align-items: center;
}

.child-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Numbers Section */

.numbers {
    border-top: 1px solid #122732;
    border-bottom: 1px solid #122732;
    padding: 30px;
}

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

.cmn-number-text {
    font-weight: 700;
    font-size: 45px;
    line-height: 40px;
    color: #122732
}

.stats p {
    font-size: 20px;
    line-height: 40px;
    white-space: nowrap;
}

/* Explore Section */

.explore {
    padding: 75px 0;
}

.explore-top {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

.explore-top .cmn-para {
    max-width: 486px;
    text-align: center;
}

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

.explr-img {
    margin-bottom: 20px;
}

.child-explore {
    transition: transform 0.3s ease-in-out;
    will-change: transform;
    transform-style: preserve-3d;
    perspective: 800px;
}

.child-explore:hover {
    transform: perspective(800px) rotateY(5deg) rotateX(5deg);
}

.explr-img img {
    max-width: 456px;
    object-fit: contain;
    width: 100%;
}

.cmn-expl-txt {
    font-weight: 600;
    font-size: 35px;
    line-height: 40px;
    color: #122732;
    margin-bottom: 20px;
}

.explr-btn {
    text-align: center;
    margin-top: 50px;
}

.explr-btn .btn-hover-effect {
    padding: 15px 26px;
    background-color: #122732;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    font-size: 18px;
}

/* Get-House Section */

.get-house {
    padding-bottom: 75px;
}

.get-house .row {
    align-items: center;
    justify-content: space-between;
}

.top-house-content {
    margin: 35px 0;
}

.top-house-content,
.bottom-house-content {
    display: flex;
    align-items: center;
    gap: 45px;
}

.house-content p {
    max-width: 480px;
}

.house-content img {
    max-width: 50px;
    object-fit: contain;
    width: 100%;
}

.house-img img {
    max-width: 696px;
    object-fit: contain;
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.house-img img:hover {
    transform: scale(1.05);
}


/* testimonial section */

.testimonials {
    padding-bottom: 75px;
}

.testimonialSwiper {
    width: 100% !important;
    margin: 0 auto;
    padding: 40px 0;
    position: relative;
}

.testimonialSwiper .swiper-wrapper {
    margin-bottom: 60px;
    width: 100% !important;
}

.testimonialSwiper .swiper-slide {
    transition: transform 0.3s ease !important;
    transform: scale(0.95) !important;
}

.testimonialSwiper .swiper-slide-active {
    transform: scale(1) !important;
}

.swiper-pagination-bullet {
    width: 13px !important;
    height: 13px !important;
    background-color: rgba(18, 51, 68, 0.5) !important;
    opacity: 0.6;
    margin: 0 5px;
    transition: 0.3s;
    border-radius: 50%;
}

.swiper-pagination-bullet-active {
    background-color: #122732 !important;
    opacity: 1;
    transform: scale(1.3);
}

.testimonial-card {
    background: #fff;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

}

.slide-images {
    display: flex;
    justify-content: space-between;
}

.slide-text h4 {
    font-weight: 500;
    font-size: 20px;
    margin: 10px 0;
}

.slide-text p {
    font-size: 15px;
    line-height: 26.25px;
    color: rgba(37, 37, 37, 0.7);
    max-width: 438px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.stars img {
    max-width: 120px;
    object-fit: contain;
    width: 100%;
}

.test-head {
    margin-bottom: 50px;
    text-align: center;
}

.test-head h2 {
    margin-bottom: 15px;
}

.test-head p {
    max-width: 487px;
    margin: 0 auto;
}

/* Blog Section */

.blogs {
    padding-bottom: 75px;
}

.blogs-top {
    text-align: center;
    margin-bottom: 50px;
}

.blogs-top h2 {
    margin-bottom: 15px;
}

.blogs-top p {
    font-size: 20px;
    color: #616066;
}

.blog-swiper .swiper-slide {
    width: 100%;
    transition: transform 0.3s ease !important;
}

.blog-swiper .swiper-wrapper {
    margin-bottom: 60px;
}

.blog-card {
    width: 100%;
    padding: 16px;
    background: #FFFFFF;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.blog-image {
    width: 100%;
}

.blog-image>img {
    /* max-width: 424px; */
    border-radius: 25px;
    width: 100%;
    object-fit: contain;
}

.cmn-blog-txt {
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    max-width: 401px;
    margin-bottom: 20px;
}

.blog-txt p {
    font-size: 15px;
    color: #616066;
}

.blog-txt a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    font-size: 20px;
    color: #252525;
    margin-top: 20px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.link1 {
    display: inline-block;
}

.link1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #252525;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.blog-txt a:hover .link1::after {
    transform: scaleX(1);
}

.blog-txt a:hover {
    transform: translateY(-2px);
}

.blog-txt a img {
    transition: transform 0.3s ease;
}

/* .blog-txt a:hover img {
    transform: translateX(5px);
} */


/* footer */

footer {
    padding: 50px 0;
    background-color: #122732;
    color: white;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
    /* Required for transform to work correctly */
}

footer a:hover {
    transform: scale(1.2);
}

.child-foot a:hover {
    color: #268391;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.footer-top h2 {
    font-weight: 600;
    font-size: 32px;
    color: #FFFFFF;
}

.footer-top p {
    max-width: 263px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 18px;
    margin-top: 20px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
}

.newsletter-form input {
    padding: 17px 30px;
    max-width: 289px;
    width: 100%;
    border-radius: 8px;
    background-color: #123344;
    color: white;
    outline: none;
    border: none;
}

.newsletter-form input::placeholder {
    color: #ffffff;
    opacity: 0.6;
    font-size: 14px;
}

.bttn {
    padding: 14.5px 30px;
    max-width: 158px;
    border-radius: 10px;
    color: #fff;
    border: none;
    background-color: #000000;
    font-weight: 500;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    background-size: 400%;
}

.bttn:hover::before {
    transform: scaleX(1);
}

.button-content {
    position: relative;
    z-index: 1;
    text-align: center;
    right: 10px;
}

.bttn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: 0 50%;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: #123344;
    transition: all 0.475s;
}



footer .row {
    border-top: 1px solid rgba(255, 255, 255, 0.60);
    border-bottom: 1px solid rgba(255, 255, 255, 0.60);
    padding: 50px 0;
}

.phone {
    display: flex;
    align-items: center;
    gap: 15px;
}

.foot-1 p {
    font-size: 18px;
    font-weight: 700;
}

.email {
    display: flex;
    align-items: center;
    gap: 15px;
}

.col-25 {
    width: 25%;
    padding: 0 15px;
}

.child-foot h3 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
}

.location {
    display: flex;
    align-items: center;
    gap: 15px
}

.location p {
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
}

.foot-images {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
}

.img>img {
    max-width: 96px;
    object-fit: contain;
    width: 100%;
}

.foot-1 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.child-foot ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 17px;
}

.child-foot ul li a {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 18px;
}

.bottom-foot {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px;
}

.bottom-right-foot {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bottom-right-foot p {
    font-weight: 500;
    font-size: 18px;
}

.foot-txt {
    font-weight: 700;
    font-size: 20px;
}

.fa-brands {
    display: inline-block;
    font-size: 25px;
    border-radius: 50%;
    padding: 13px;
    background-color: #123344;
    transition: all 0.4s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.fa-brands:hover {
    transform: scale(1.2);
    border-radius: 15px;
}

.fa-facebook:hover {
    background-color: #1877F2;
}

.fa-x-twitter:hover {
    background-color: #000000;
}

.fa-instagram:hover {
    background-color: #d62976;
}

.fa-linkedin:hover {
    background-color: #0072b1;
}

/* Header Section */
/* @media screen and (min-width: 992px) {
    .navbar-collapse {
        transform: none !important;
        position: static;
        display: flex !important;
        flex-direction: row;
        background: none;
        min-height: auto;
        padding: 0;
    }

    .container1.active .checkmark span:nth-child(1),
    .container1.active .checkmark span:nth-child(2),
    .container1.active .checkmark span:nth-child(3) {
        all: unset;
        background-color: white;
        position: absolute;
    }
} */

@media screen and (max-width : 991px) {
    .nav-toggler {
        display: block;
        margin-left: auto;
        z-index: 9999;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        width: 70%;
        height: 100vh;
        background-color: #123344;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translate(100%, -100%) scale(0.8);
        opacity: 0;
        pointer-events: none;
        padding-top: 80px;
        z-index: 9998;
        
    }

    .navbar-collapse.active1 {
        transform: translate(0, 0) scale(1);
        transition: transform 0.6s ease, opacity 0.6s ease;
        opacity: 1;
        pointer-events: auto;
    }

    .navbar-collapse ul {
        flex-direction: column;
        gap: 10px;
    }

    .navbar-collapse .nav-btn {
        margin-top: 20px;
    }

    .navbar-collapse ul li a {
        color: white;
    }

    /* .navbar-collapse,
    .navbar-collapse ul {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        background-color: #123344;
        padding-top: 100px;

    }

    .navbar-collapse .nav-btn {
        text-align: center;
        margin-top: 10px;
    } */

    /* .banner-content {
        padding: 100px 0;
    } */

    .banner-content h1 {
        font-size: 40px;
        line-height: 60px;
    }

    .banner-content p {
        font-size: 16px;
    }

    /* .container1 input:checked~.nav-list {
        right: 0;
    } */

}

@media screen and (max-width : 768px) {

    .navbar-collapse,
    .navbar-collapse ul {
        gap: 6px;
    }

    .navbar-collapse ul li a {
        font-size: 14px;
    }

    .nav-btn a {
        font-size: 14px;
        padding: 13px 25px;
    }

    .banner-content {
        padding: 70px 0;
    }



    .banner-content h1 {
        font-size: 35px;
        line-height: 50px;
    }

    /* .content-1 h1 {
        width: 70vw;
    } */

    .banner-content p {
        font-size: 14px;
        line-height: 17px;
    }

    .most-viewed .row {
        display: none;
    }

    .mostViewedSwiper {
        display: block !important;
    }


}

/* @media (max-width: 576px) {
    /* .banner-content {
        padding: 80px 0;
    } */

/* .banner-section {
        height: 70vh;
    }

    .banner-content h1 {
        font-size: 24px;
        line-height: 32px;
    }

    .banner-content p {
        font-size: 13px;
        line-height: 18px;
    }

    .nav-btn a {
        padding: 10px 20px;
        font-size: 14px;
    }

} */

@media screen and (max-width : 576px) {

    .navbar-collapse,
    .navbar-collapse ul {
        gap: 4px;
    }

    .navbar-collapse {
        width: 100%;
    }

    .navbar-collapse ul li a {
        font-size: 10px;
    }

    .nav-btn a {
        font-size: 12px;
        padding: 12px 23px;
    }

    .banner-section {
        height: 90vh;
    }

    .banner-content {
        padding: 60px 0;
    }

    .hero-swiper {
        padding-top: 100px;
    }

    .banner-content h1 {
        font-size: 20px;
        line-height: 25px;
    }

    .banner-content p {
        font-size: 12px;
        line-height: 15px;
    }

}

@media screen and (max-width : 1400px) {
    .view-btns {
        gap: 10px;
    }
}

@media screen and (max-width : 1360px) {
    .view-btns {
        flex-direction: column;
        row-gap: 10px;
    }

    .view-btn-1,
    .view-btn-2 {
        width: 100%;
    }
}

@media screen and (max-width : 1024px) {
    .cmn-head {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .cmn-para {
        font-size: 15px;
    }

    .cmn-view-txt {
        font-size: 20px;
    }

    .cmn-view2-txt {
        font-size: 20px;
        margin: 10px 0;
    }

    .small-txt {
        font-size: 9px;
    }

    .text-1 {
        margin: 8px 0 10px 0;
    }

    .most-viewed {
        padding: 50px 0;
    }

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

    .viewed-top {
        margin-bottom: 30px;
    }

    .find-house {
        padding-bottom: 50px;
    }

    .child-house-content {
        gap: 20px;
    }

    .our-work {
        padding-bottom: 50px;
    }

    .col-23 {
        width: 25%;
    }

    .col-15 {
        width: 12.5%;
    }

    .child-work {
        gap: 20px;
        margin-top: 30px;
    }

    .cmn-work-head {
        font-size: 20px;
    }

    .child-work p {
        font-size: 15px;
    }

    .our-work .row {
        justify-content: space-between;
    }

    .numbers {
        padding: 28px;
    }

    .cmn-number-text {
        font-size: 40px;
        line-height: 38px;
    }

    .stats p {
        font-size: 18px;
        line-height: 38px;
    }


    .explore {
        padding: 50px 0;
    }

    .explore-top {
        gap: 10px;
        margin-bottom: 30px;
    }

    .explore-top .cmn-para {
        max-width: 486px;
        text-align: center;
    }

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

    .explr-img {
        margin-bottom: 18px;
    }

    .cmn-expl-txt {
        font-size: 35px;
        line-height: 38px;
        color: #122732;
        margin-bottom: 18px;
    }

    .explr-btn {
        text-align: center;
        margin-top: 30px;
    }


    .get-house {
        padding-bottom: 50px;
    }


    .top-house-content {
        margin: 30px 0;
    }

    .top-house-content,
    .bottom-house-content {
        gap: 40px;
    }

    .house-content p {
        max-width: 480px;
    }

    .house-content img {
        max-width: 50px;
        object-fit: contain;
        width: 100%;
    }

    .house-img img {
        max-width: 696px;
        object-fit: contain;
        width: 100%;
    }

    .testimonials {
        padding-bottom: 50px;
    }

    .testimonialSwiper {
        padding: 38px 0;

    }

    .testimonialSwiper .swiper-wrapper {
        margin-bottom: 50px;
        width: 100% !important;
    }

    .swiper-pagination-bullet {
        width: 12px !important;
        height: 12px !important;
        margin: 0 4px;
    }

    .testimonial-card {
        padding: 14px 28px;
    }

    .slide-text h4 {
        font-size: 18px;
        margin: 8px 0;
    }

    .slide-text p {
        font-size: 14px;
        line-height: 25px;
    }

    .avatar {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
    }

    .stars img {
        max-width: 110px;
    }

    .test-head {
        margin-bottom: 27px;
        text-align: center;
    }

    .test-head h2 {
        margin-bottom: 10px;
    }


    .blogs {
        padding-bottom: 50px;
    }

    .blogs-top {
        margin-bottom: 30px;
    }

    .blogs-top h2 {
        margin-bottom: 14px;
    }

    .blogs-top p {
        font-size: 18px;
    }

    .blog-card {
        padding: 14px;
    }

    .cmn-blog-txt {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 15px;
    }

    .blog-txt p {
        font-size: 14px;
    }

    .blog-txt a {
        gap: 5px;
        font-weight: 500;
        font-size: 20px;
        color: #252525;
        margin-top: 18px;
    }

    .blog-swiper .swiper-wrapper {
        margin-bottom: 40px;
    }


    footer {
        padding: 50px 0;
    }

    .footer-top {
        margin-bottom: 40px;
    }

    .footer-top h2 {
        font-weight: 600;
        font-size: 30px;
        color: #FFFFFF;
    }

    .footer-top p {
        font-size: 16px;
        margin-top: 18px;
    }

    .newsletter-form {
        gap: 6px;
        margin-top: 18px;
    }

    .newsletter-form input {
        padding: 16px 29px;
    }

    .newsletter-form input::placeholder {
        font-size: 14px;
    }

    .newsletter-form button {
        padding: 14px 29px;
        font-size: 17px;
    }

    footer .row {
        padding: 45px 0;
    }

    .phone {
        gap: 14px;
    }

    .foot-1 p {
        font-size: 16px;
    }

    .email {
        gap: 14px;
    }

    .child-foot h3 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .location {
        gap: 14px
    }

    .location p {
        font-size: 16px;
        line-height: 23px;
    }

    .foot-images {
        gap: 18px;
    }

    .foot-images img {
        max-width: 70px;
    }

    .foot-1 {
        gap: 29px;
    }

    .child-foot ul {
        gap: 16px;
    }

    .child-foot ul li a {
        font-size: 16px;
    }

    .bottom-foot {
        padding-top: 45px;
    }

    .bottom-right-foot {
        display: flex;
        align-items: center;
        gap: 19px;
    }

    .bottom-right-foot p {
        font-size: 16px;
    }

    .foot-txt {
        font-size: 18px;
    }

    .fa-brands {
        font-size: 24px;
        padding: 12px;
    }

}

@media screen and (max-width: 768px) {
    .cmn-head {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .cmn-para {
        font-size: 14px;
    }

    .cmn-view-txt {
        font-size: 20px;
    }

    .cmn-view2-txt {
        font-size: 18px;
        margin: 8px 0;
    }

    .small-txt {
        font-size: 10px;
    }

    .text-1 {
        margin: 6px 0 8px 0;
    }

    .most-viewed {
        padding: 40px 0;
    }

    .viewed-top {
        margin-bottom: 25px;
    }

    .view-btn-1,
    .view-btn-2,
    .view-property .btn-hover-effect {
        padding: 10px 20px;
        font-size: 12px;
        text-align: center;
    }

    .view-property {
        margin-top: 30px;
    }

    .find-house {
        padding-bottom: 30px;
    }

    .child-house-content {
        gap: 10px;
    }

    .child-house-content .btn-hover-effect {
        padding: 10px 30px;
        font-size: 12px;
    }

    .our-work {
        padding-bottom: 30px;
    }

    .col-23 {
        width: 50%;
    }

    .col-15 {
        display: none;
    }

    .child-work {
        gap: 15px;
        margin-top: 25px;
    }

    .cmn-work-head {
        font-size: 15px;
    }

    .child-work p {
        font-size: 12px;
    }

    .numbers {
        padding: 25px;
    }

    .cmn-number-text {
        font-size: 35px;
        line-height: 35px;
    }

    .stats p {
        font-size: 15px;
        line-height: 35px;
    }

    .explore {
        padding: 30px 0;
    }

    .explore-top {
        gap: 8px;
        margin-bottom: 25px;
    }

    .explr-img {
        margin-bottom: 15px;
    }

    .cmn-expl-txt {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 10px;
    }

    .explr-btn {
        margin-top: 20px;
    }

    .explr-btn .btn-hover-effect {
        padding: 10px 25px;
        font-size: 12px;
    }

    .get-house {
        padding-bottom: 30px;
    }


    .top-house-content {
        margin: 22px 0;
    }

    .top-house-content,
    .bottom-house-content {
        gap: 30px;
    }

    .house-content p {
        max-width: 480px;
    }

    .house-content img {
        max-width: 45px;
    }

    .house-img img {
        max-width: 696px;
        object-fit: contain;
        width: 100%;
    }

    .house-content .cmn-para {
        font-size: 12px;
    }

    .testimonials {
        padding-bottom: 30px;
    }

    .testimonialSwiper {
        padding: 35px 0;

    }

    .testimonialSwiper .swiper-wrapper {
        margin-bottom: 40px;
    }

    .swiper-pagination-bullet {
        width: 10px !important;
        height: 10px !important;
    }

    .testimonial-card {
        padding: 12px 24px;
    }

    .slide-text h4 {
        font-size: 15px;
        margin: 6px 0;
    }

    .slide-text p {
        font-size: 12px;
        line-height: 18px;
        max-width: 50vw;
    }

    .avatar {
        width: 40px;
        height: 40px;
        margin-bottom: 6px;
    }

    .stars img {
        max-width: 100px;
    }

    .test-head {
        margin-bottom: 22px;
        text-align: center;
    }

    .test-head h2 {
        margin-bottom: 8px;
    }

    .blogs {
        padding-bottom: 30px;
    }

    .blogs-top {
        margin-bottom: 25px;
    }

    .blogs-top h2 {
        margin-bottom: 10px;
    }

    .blogs-top p {
        font-size: 14px;
    }

    .blog-card {
        padding: 10px;
    }

    .cmn-blog-txt {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 10px;
    }

    .blog-txt p {
        font-size: 12px;
    }

    .blog-txt a {
        gap: 5px;
        font-size: 16px;
        margin-top: 14px;
    }

    .blog-swiper .swiper-wrapper {
        margin-bottom: 35px;
    }

    .footer {
        padding: 25px 0;
    }

    .footer-top {
        margin-bottom: 30px;
    }

    .footer-top h2 {
        font-size: 25px;
    }

    .footer-top p {
        font-size: 14px;
        margin-top: 15px;
    }

    .newsletter-form {
        gap: 5px;
        margin-top: 15px;
    }

    .newsletter-form input {
        padding: 15px 25px;
    }

    .newsletter-form input::placeholder {
        font-size: 12px;
    }

    .newsletter-form button {
        padding: 12px 25px;
        font-size: 14px;
    }

    footer .row {
        padding: 35px 0;
    }

    .phone {
        gap: 12px;
    }

    .foot-1 p {
        font-size: 14px;
    }

    .email {
        gap: 10px;
    }

    .col-25 {
        width: 50%;
    }

    .child-foot h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .location {
        gap: 10px
    }

    .location p {
        font-size: 14px;
        line-height: 20px;
    }

    .foot-images {
        gap: 15px;
    }

    .foot-images img {
        max-width: 60px;
    }

    .foot-1 {
        gap: 20px;
    }

    .child-foot ul {
        gap: 12px;
    }

    .child-foot ul li a {
        font-size: 14px;
    }

    .bottom-foot {
        padding-top: 45px;

    }

    .bottom-right-foot {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .bottom-right-foot p {
        font-size: 14px;
    }

    .foot-txt {
        font-size: 14px;
    }

    .fa-brands {
        font-size: 20px;
        padding: 10px;
    }

    footer .row {
        row-gap: 20px;
    }
}

@media screen and (max-width: 576px) {
    .cmn-head {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .cmn-para {
        font-size: 12px;
        line-height: 1.5;
    }

    .cmn-view-txt {
        font-size: 16px;
    }

    .cmn-view2-txt {
        font-size: 14px;
        margin: 5px 0;
    }

    .small-txt {
        font-size: 9px;
    }

    .text-1 {
        margin: 4px 0 5px 0;
    }

    .most-viewed {
        padding: 20px 0;
    }

    .viewed-top {
        margin-bottom: 15px;
    }

    .view-btn-1,
    .view-btn-2,
    .view-property .btn-hover-effect {
        padding: 6px 18px;
        font-size: 10px;
    }

    .view-property {
        margin-top: 20px;
    }

    .col-50,
    .col-23,
    .col-4,
    .col-25 {
        width: 100%;
    }

    .find-house,
    .our-work,
    .get-house,
    .testimonials,
    .blogs {
        padding-bottom: 25px;
    }

    .child-house-content,
    .child-work {
        gap: 8px;
        align-items: center;
        margin-top: 20px;
    }

    .child-house-content .btn-hover-effect,
    .explr-btn .btn-hover-effect {
        padding: 8px 25px;
        font-size: 11px;
        margin: 0 auto;
    }

    .cmn-work-head {
        font-size: 14px;
    }

    .child-work p {
        font-size: 10px;
        text-align: center;
    }

    .numbers {
        padding: 20px;
        text-align: center;
    }

    .numbers .row {
        justify-content: space-evenly;
    }

    .stats {
        width: 50%;
    }

    .cmn-number-text {
        font-size: 35px;
        line-height: 35px;
    }

    .stats p {
        font-size: 15px;
        line-height: 35px;
    }

    .explore {
        padding: 25px 0;
    }

    .col-4 {
        display: flex;
        justify-content: center;
    }

    .explr-img img {
        max-width: 200px;
    }

    .explore-top {
        gap: 5px;
        margin-bottom: 15px;
    }

    .explr-img {
        margin-bottom: 8px;
    }

    .cmn-expl-txt {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 5px;
    }

    .explr-btn {
        margin-top: 10px;
    }

    .top-house-content,
    .bottom-house-content {
        gap: 20px;
        margin: 15px 0;
    }

    .house-content img {
        max-width: 40px;
    }

    .house-content .cmn-para {
        font-size: 10px;
    }

    .get-house .row {
        gap: 10px;
    }

    .get-house .cmn-head {
        text-align: center;
    }

    .testimonialSwiper {
        padding: 25px 0;
    }

    .testimonialSwiper .swiper-wrapper {
        margin-bottom: 30px;
    }

    .swiper-pagination-bullet {
        width: 8px !important;
        height: 8px !important;
    }

    .testimonial-card {
        padding: 10px 20px;
    }

    .slide-text h4 {
        font-size: 14px;
        margin: 5px 0;
    }

    .slide-text p {
        font-size: 10px;
        line-height: 18px;
        max-width: 100vw;
    }

    .avatar {
        width: 40px;
        height: 40px;
        margin-bottom: 6px;
    }

    .stars img {
        max-width: 100px;
    }

    .test-head {
        margin-bottom: 22px;
        text-align: center;
    }

    .test-head h2,
    .blogs-top h2 {
        margin-bottom: 8px;
    }

    .blogs-top {
        margin-bottom: 18px;
    }

    .blogs-top p {
        font-size: 12px;
    }

    .blog-card {
        padding: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cmn-blog-txt {
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 8px;
    }

    .blog-txt p {
        font-size: 10px;
    }

    .blog-txt a {
        gap: 4px;
        font-size: 14px;
        margin-top: 10px;
    }

    .blog-swiper .swiper-wrapper {
        margin-bottom: 30px;
    }

    /* .blog-image>img {
        width: 100%;
    } */

    .footer {
        padding: 20px 0;
    }

    .footer-top {
        margin-bottom: 25px;
        text-align: center;
        justify-content: center;
        row-gap: 5px;
    }

    .footer-top h2 {
        font-size: 15px;
    }

    .footer-top p,
    .foot-1 p,
    .location p,
    .child-foot ul li a,
    .bottom-right-foot p,
    .foot-txt {
        font-size: 10px;
    }

    .newsletter-form {
        gap: 5px;
        margin-top: 10px;
    }

    .newsletter-form input {
        padding: 13px 22px;
    }

    .newsletter-form input::placeholder {
        font-size: 10px;
    }

    .newsletter-form button {
        padding: 10px 20px;
        font-size: 10px;
    }

    footer .row {
        padding: 30px 0;
        row-gap: 15px;
        text-align: center;
    }

    .phone,
    .email,
    .location,
    .foot-images,
    .bottom-right-foot {
        gap: 8px;
    }

    .location {
        justify-content: center;
    }

    .foot-images {
        justify-content: space-evenly;
    }

    .foot-images img,
    .foot-1 img {
        max-width: 35px;
    }

    .fa-brands {
        font-size: 15px;
        padding: 8px;
    }

    .child-foot h3 {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .child-foot ul {
        gap: 10px;
    }

    .bottom-foot {
        padding-top: 35px;
    }

    .foot-1 {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
    }
}

/* @media screen and (max-width: 576px) {
    .cmn-head {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .cmn-para {
        font-size: 13px;
    }

    .cmn-view-txt {
        font-size: 18px;
    }

    .cmn-view2-txt {
        font-size: 16px;
        margin: 6px 0;
    }

    .small-txt {
        font-size: 10px;
    }

    .text-1 {
        margin: 5px 0 6px 0;
    }

    .most-viewed {
        padding: 30px 0;
    }

    .viewed-top {
        margin-bottom: 20px;
    }

    .view-btn-1,
    .view-btn-2,
    .view-property .btn-hover-effect {
        padding: 8px 25px;
        font-size: 11px;
    }

    .view-property {
        margin-top: 25px;
    }

    .col-50 {
        width: 100%;
    }

    .find-house {
        padding-bottom: 25px;
    }

    .child-house-content {
        gap: 8px;
    }

    .child-house-content .btn-hover-effect {
        padding: 8px 25px;
        font-size: 11px;
        margin: 0 auto;
    }


    .our-work {
        padding-bottom: 25px;
    }

    .col-23 {
        width: 100%;
    }

    .child-work {
        gap: 13px;
        margin-top: 20px;
        align-items: center;
    }

    .cmn-work-head {
        font-size: 14px;
    }

    .child-work p {
        font-size: 10px;
        text-align: center;
    }

    .numbers {
        padding: 20px;
    }

    .numbers .row {
        justify-content: space-evenly;
        text-align: center;
    }

    .stats {
        width: 50%;
    }

    .cmn-number-text {
        font-size: 35px;
        line-height: 35px;
    }

    .stats p {
        font-size: 15px;
        line-height: 35px;
    }

    .explore {
        padding: 25px 0;
    }

    .col-4 {
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .explr-img img {
        max-width: 300px;
    }

    .explore-top {
        gap: 6px;
        margin-bottom: 20px;
    }

    .explore .row {
        gap: 10px;
    }

    .explr-img {
        margin-bottom: 10px;
    }

    .cmn-expl-txt {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 8px;
    }

    .explr-btn {
        margin-top: 15px;
    }

    .explr-btn .btn-hover-effect {
        padding: 8px 20px;
        font-size: 11px;
    }

    .get-house {
        padding-bottom: 25px;
    }


    .top-house-content {
        margin: 20px 0;
    }

    .top-house-content,
    .bottom-house-content {
        gap: 25px;
    }

    .house-content img {
        max-width: 40px;
    }

    .house-content .cmn-para {
        font-size: 12px;
    }

    .get-house .row {
        gap: 15px
    }

    .get-house .cmn-head {
        text-align: center;
    }


    .testimonials {
        padding-bottom: 25px;
    }

    .testimonialSwiper {
        padding: 30px 0;

    }

    .testimonialSwiper .swiper-wrapper {
        margin-bottom: 35px;
    }

    .swiper-pagination-bullet {
        width: 8px !important;
        height: 8px !important;
    }

    .testimonial-card {
        padding: 10px 20px;
    }

    .slide-text h4 {
        font-size: 14px;
        margin: 5px 0;
    }

    .slide-text p {
        font-size: 10px;
        line-height: 18px;
        max-width: 100vw;
    }

    .avatar {
        width: 40px;
        height: 40px;
        margin-bottom: 6px;
    }

    .stars img {
        max-width: 100px;
    }

    .test-head {
        margin-bottom: 22px;
        text-align: center;
    }

    .test-head h2 {
        margin-bottom: 8px;
    }


    .blogs {
        padding-bottom: 25px;
    }

    .blogs-top {
        margin-bottom: 18px;
    }

    .blogs-top h2 {
        margin-bottom: 8px;
    }

    .blogs-top p {
        font-size: 12px;
    }

    .blog-card {
        padding: 8px;
    }

    .cmn-blog-txt {
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 8px;
    }

    .blog-txt p {
        font-size: 10px;
    }

    .blog-txt a {
        gap: 4px;
        font-size: 14px;
        margin-top: 10px;
    }

    .blog-swiper .swiper-wrapper {
        margin-bottom: 30px;
    }

    
    .blog-card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .blog-image>img {
        max-width: 100%;
    }


    .footer {
        padding: 20px 0;
    }

    .footer-top {
        margin-bottom: 25px;
        text-align: center;
        justify-content: center;
        row-gap: 5px;
    }

    .footer-top h2 {
        font-size: 20px;
    }

    .footer-top p {
        font-size: 12px;
        margin-top: 10px;
    }

    .newsletter-form {
        gap: 5px;
        margin-top: 10px;
    }

    .newsletter-form input {
        padding: 13px 22px;
    }

    .newsletter-form input::placeholder {
        font-size: 10px;
    }

    .newsletter-form button {
        padding: 10px 20px;
        font-size: 10px;
    }

    footer .row {
        padding: 30px 0;
    }

    .phone {
        gap: 10px;
    }

    .foot-1 p {
        font-size: 10px;
    }

    .email {
        gap: 8px;
    }

    .col-25 {
        width: 50%;
    }

    .child-foot h3 {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .location {
        gap: 8px
    }

    .location p {
        font-size: 10px;
        line-height: 16px;
    }

    .foot-images {
        gap: 10px;
    }

    .foot-images img {
        max-width: 40px;
    }

    .foot-1 {
        gap: 18px;
    }

    .child-foot ul {
        gap: 10px;
    }

    .child-foot ul li a {
        font-size: 10px;
    }

    .bottom-foot {
        padding-top: 35px;

    }

    .bottom-right-foot {
        gap: 10px;
    }

    .bottom-right-foot p {
        font-size: 10px;
    }

    .foot-txt {
        font-size: 10px;
    }

    .fa-brands {
        font-size: 15px;
        padding: 8px;
    }

    footer .row {
        row-gap: 15px;
    }

} */


/* @media screen and (max-width: 320px) {
    .cmn-head {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .cmn-para {
        font-size: 12px;
        line-height: 1.5;
    }

    .cmn-view-txt {
        font-size: 16px;
    }

    .cmn-view2-txt {
        font-size: 14px;
        margin: 5px 0;
    }

    .small-txt {
        font-size: 9px;
    }

    .text-1 {
        margin: 4px 0 5px 0;
    }

    .most-viewed {
        padding: 20px 0;
    }

    .viewed-top {
        margin-bottom: 15px;
    }

    .view-btn-1,
    .view-btn-2,
    .view-property .btn-hover-effect {
        padding: 6px 18px;
        font-size: 10px;
    }

    .view-property {
        margin-top: 20px;
    }

    .child-house-content .btn-hover-effect {
        padding: 6px 18px;
        font-size: 10px;
    }

    .numbers {
        padding: 15px;
    }

    .cmn-number-text {
        font-size: 30px;
        line-height: 30px;
    }

    .stats p {
        font-size: 12px;
        line-height: 30px;
    }

    .explore {
        padding: 20px 0;
    }

    .explr-img img {
        max-width: 200px;
    }

    .explore-top {
        gap: 5px;
        margin-bottom: 15px;
    }

    .explr-img {
        margin-bottom: 8px;
    }

    .cmn-expl-txt {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 5px;
    }

    .explr-btn {
        margin-top: 10px;
    }

    .explr-btn .btn-hover-effect {
        padding: 6px 18px;
        font-size: 10px;
    }

    .get-house {
        padding-bottom: 20px;
    }


    .top-house-content {
        margin: 15px 0;
    }

    .top-house-content,
    .bottom-house-content {
        gap: 20px;
    }

    .house-content img {
        max-width: 40px;
    }

    .house-content .cmn-para {
        font-size: 10px;
    }

    .get-house .row {
        gap: 10px
    }


    .testimonials {
        padding-bottom: 20px;
    }

    .testimonialSwiper {
        padding: 25px 0;

    }

    .testimonialSwiper .swiper-wrapper {
        margin-bottom: 30px;
    }

    .swiper-pagination-bullet {
        width: 8px !important;
        height: 8px !important;
    }

    .testimonial-card {
        padding: 10px 20px;
    }

    .slide-text h4 {
        font-size: 14px;
        margin: 5px 0;
    }

    .slide-text p {
        font-size: 10px;
        line-height: 18px;
        max-width: 100vw;
    }

    .avatar {
        width: 40px;
        height: 40px;
        margin-bottom: 6px;
    }

    .stars img {
        max-width: 100px;
    }

    .test-head {
        margin-bottom: 10px;
        text-align: center;
    }


    .footer {
        padding: 15px 0;
    }

    .footer-top {
        margin-bottom: 20px;
    }

    .footer-top h2 {
        font-size: 15px;
    }

    .footer-top p {
        font-size: 10px;
        margin-top: 10px;
    }

    .newsletter-form {
        gap: 5px;
        margin-top: 8px;
    }

    .newsletter-form input {
        padding: 13px 22px;
    }

    .newsletter-form input::placeholder {
        font-size: 10px;
    }

    .newsletter-form button {
        padding: 10px 20px;
        font-size: 10px;
    }

    footer .row {
        padding: 28px 0;
    }

    .phone {
        gap: 10px;
    }

    .foot-1 p {
        font-size: 10px;
    }

    .email {
        gap: 8px;
    }

    .col-25 {
        width: 100%;
    }

    .child-foot h3 {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .location {
        gap: 8px
    }

    .location p {
        font-size: 10px;
        line-height: 16px;
    }

    .foot-images {
        gap: 10px;
        justify-content: space-evenly;
    }

    .foot-1 {
        gap: 18px;
    }

    .child-foot ul {
        gap: 5px;

    }

    .child-foot ul li a {
        font-size: 10px;
    }

    .bottom-foot {
        padding-top: 35px;

    }

    .bottom-right-foot {
        gap: 8px;
    }

    .bottom-right-foot p {
        font-size: 10px;
    }

    .foot-txt {
        font-size: 10px;
    }

    .fa-brands {
        font-size: 15px;
        padding: 8px;
    }

    footer .row {
        row-gap: 12px;
        text-align: center;
    }

    .foot-images img {
        max-width: 35px;
    }

    .foot-1 {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .foot-1 img {
        max-width: 35px;
    }
} */