ul, li, ol{
    list-style: none;
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4, h5, h6, p{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
}
body{
    font-family: 'Lato', sans-serif;
    background-color: #FAF7F4;
}


.btn-primary{
    width: 210px;
    height: 52px;
    background: #D9BFA9;
    border: 1px solid #fff;
    outline: none;
    border-radius: 100px;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;

}

.btn-primary::after{
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    border-radius: 30px;
    background-color: #fff;
    transition: all 0.5s;
}
.btn-primary:hover::after{
    left: 0%;
}
.btn-primary .btn-arrow{
    position: absolute;
    top: 50%;
    left: 4px;
    width: 42px;
    height: 42px;
    background: #fff;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    z-index: 1;
    /* transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); */
    transition: all 0.45s;

}
.btn-primary:hover .btn-arrow{
    left: calc(100% - 46px);
    background-color: #D9BFA9;
    transform: translateY(-50%);
}
.btn-primary .btn-arrow svg{
    width: 30px;
    height: 30px;
    transition: all 0.5s;
    color: #D9BFA9;
}
.btn-primary:hover .btn-arrow svg{
    color: #fff;
}
.btn-primary span{
    position: absolute;
    top: 50%;
    width: calc(100% - 46px);
    z-index: 1;
    right: 0px;
    justify-content: center;
    display: flex;
    position: absolute;
    transition: all 0.5s;
    transform: translateY(-50%);
}
.btn-primary:hover span{
    right: 46px;
    color: #D9BFA9;
}

/* ========================================================== header ========================================================== */
.navbar{
    position: absolute;
    width: 100%;
    top: 0px;
    z-index: 99;
    padding: 16px 0;
}
.navbar-brand{
    display: flex;
    margin: 0px;
    padding: 0px;
}
.navbar-brand img{
    height: 60px;
    width: auto;
}
.navbar-nav{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
}
.navbar-nav .nav-link,
.navbar-nav .nav-link.active{
    font-size: 20px;
    position: relative;
    font-weight: 400 !important;
    color: #fff;
    letter-spacing: -0.5px;
}
.navbar-nav .nav-link::after{
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    height: 1px;
    background-color: #fff;
    width: 0px;
    transition: all 0.5s;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{
    width: 100%;
}
.toggler-btn{
    border: none;
    outline: none;
    background-color: transparent;
    box-shadow: none;
    display: none;
}
.toggler-btn svg{
    width: 30px;
    height: 30px;
    color: #fff;
}

/* ========================================================== hero-section ========================================================== */
.hero-section{
    background: url('../src/img/home-page-hero-1.jpg') no-repeat center center/cover;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
}
.hero-section::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,rgba(0, 0, 0, .56) 50%, rgba(255, 255, 255, 0) 100%);
}
.hero-section::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, .56) 100%);
}
.hero-section-inner{
    z-index: 1;
}
.hero-title{
    font-family: 'Manrope';
    font-size: 96px;
    font-weight: 400;
    letter-spacing: -5px;
    color: #fff;
}
.hero-subtitle{
    font-size: 46px;
    color: #fff;
    letter-spacing: -0.5px;
    font-weight: 300;
    margin-top: -20px;
    padding-bottom: 20px;
}

/* ========================================================== counter-section ========================================================== */
.counter-section{
    padding-top: 150px;
}
.counter-heading h2{
    font-size: 84px;
    line-height: 85px;
    font-weight: 200;
    font-family: 'Manrope';
    color: #2E2E2E;
    letter-spacing: -3px;
}
.counter-heading h2 span{
    font-weight: 300;
    color: #D9BFA9;
    letter-spacing: -6px;
}
.counter-content{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.counter-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
}
.counter-item .counter-number{
    font-size: 56px;
    font-family: 'Manrope';
    font-weight: 500;
    color: #2E2E2E;
    line-height: 62px;
    letter-spacing: -1px;
}
.counter-item  .counter-label{
    font-size: 18px;
    letter-spacing: -0.5px;
    line-height: 25px;
    font-weight: 300;
    color: #3F3F3F;
    padding: 0px 40px;
    text-transform: uppercase;
}
.counter-text{
    padding-top: 90px;
    text-align: center;
}
.counter-text p{
    font-size: 30px;
    font-weight: 300;
    line-height: 32px;
    color: #2E2E2E;
    letter-spacing: -0.5px;
}

/* ========================================================== we-work-section ========================================================== */
.work-section{
    padding-top: 310px;
    position: relative;
}
.work-section-inner{
   position: absolute;
    top: 200px;
    left: 0;
    width: 100%;
    height: 100%;
}
.work-heading{
    display: flex;
    justify-content: flex-start;
}
.work-heading h2{
    font-size: 108px;
    width: 33.33%;
    font-family: 'Manrope';
    line-height: 67px;
    font-weight: 400;
    padding-bottom: 60px;
    color: #2E2E2E;
    letter-spacing: -6px;
}
.work-discription p{
    font-size: 20px;
    line-height: 32px;
    text-align: justify;
    font-weight: 300;
    letter-spacing: -0.5px;
    color: #3F3F3F;
    padding-bottom: 50px;
}
.work-section .btn-primary{
    border-color: #D9BFA9;
}

.work-section-image{
    width: 100%;
    display: flex;
    justify-content: end;
}
.work-section-image img{
    width: calc(100% - 40%);
    height: 750px;
    object-fit: cover;
    object-position: center;
}

/* ========================================================== we-work-section-2 ========================================================== */
.work-section-2 .work-section-image{
    justify-content: start;
}
.work-section-2 .work-heading h2{
    padding-left: 12px;
}
.work-discription.mobile-work-discription{
    display: none;
}

/* ========================================================== offer-section ========================================================== */
.offer-section{
    padding: 200px 0px 130px;
}
.main-heading{
    padding-bottom: 80px;
}
.main-heading h2{
    font-size: 104px;
    font-family: 'Manrope';
    line-height: 67px;
    font-weight: 400;
    color: #2E2E2E;
    padding-bottom: 10px;
    letter-spacing: -6px;
}
.main-heading h2 span{
    color: #D9BFA9;
}
.main-heading p{
    font-size: 36px;
    line-height: 67px;
    text-align: justify;
    font-weight: 300;
    letter-spacing: -0.5px;
    color: #2e2e2e;
}

.offer-item{
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    gap: 30px;
    /*background-color: #F7E9D5;*/
    background-color: rgba(247, 233, 213, 0.6);
    border-radius: 14px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}
.offer-margin{
    margin-top: 200px;
    display: flex;
}
.offer-number{
     font-size: 42px;
    font-family: 'Manrope';
    line-height: 67px;
    font-weight: 600;
    color: #2E2E2E;
    letter-spacing: -2px;
}
.offer-item h6{
    padding-top: 20px;
    padding-bottom: 5px;
    font-size: 30px;
    font-family: 'Manrope';
    font-weight: 600;
    color: #2E2E2E;
    letter-spacing: -2px;
}
.offer-item p{
    font-size: 20px;
    font-weight: 300;
    letter-spacing: -1px;
    color: #3F3F3F;
}

/* ========================================================== project-section ========================================================== */
.project-item{
    overflow: hidden;
    border-radius: 30px;
    position: relative;
}
.project-section-slider{
    display: none !important;
}
.project-image{
    position: relative;
    aspect-ratio: 1/1.4;
}
.project-image-hover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: all 0.5s;
}
.project-item:hover .project-image-hover{
    opacity: 1;
}
.project-image::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.8) 0%, rgba(114, 114, 114, 0.23) 100%);
}
.project-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.project-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 24px 24px 90px;
    justify-content: end;
    z-index: 1;
    color: #fff;
    transform: scale(1);
    filter: blur(0px);
    transition: all 0.5s ;
    opacity: 1;
}
.project-item:hover .project-content{
    filter: blur(5px);
    transform: scale(0.9);
    opacity: 0;
}
.project-content h6{
    letter-spacing: -1px;
    font-family: 'Manrope';
    font-size: 22px;
    font-weight: 600;
}
.project-content p{
    font-size: 14px;
    color: #FAF7F4;
    font-weight: 300;
    line-height: 1.5;
}
.project-hover-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 24px 24px 90px;
    justify-content: space-between;
    z-index: 2;
    color: #fff;
    filter: blur(5px);
     transform: scale(0.9);
    opacity: 0;
    transition: all 0.5s ;
}
.project-item:hover .project-hover-content{
    filter: blur(0px);
    opacity: 1;
    transform: scale(1);
}
.project-name{
    display: flex;
    flex-direction: column;
}
.project-name h6{
    letter-spacing: -1px;
    font-family: 'Manrope';
    font-size: 28px;
    font-weight: 800;
    text-shadow:  2px 2px 10px rgba(0, 0, 0, 0.15);
}
.project-name p{
    letter-spacing: -0.5px;
    text-shadow:  2px 2px 10px rgba(0, 0, 0, 0.15);
    font-family: 'Manrope';
    font-size: 18px;
    font-weight: 400;
}
.project-details{
 display: flex;
 flex-direction: column;
 gap: 14px;
}
.project-status-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5px;
}
.project-status-list li{
    display: flex;
    flex-direction: column;
    color: #fff;
}
.project-status-list li p{
    font-size: 14px;
    font-weight: 600;
    font-family: 'Manrope';
    text-shadow:  2px 2px 10px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.05px;
}
.project-status-list li span{
    font-size: 12px;
    font-family: 'Manrope';
    font-weight: 300;
    letter-spacing: -0.05px;
    text-shadow:  2px 2px 10px rgba(0, 0, 0, 0.15);

}
.project-details-list p, .project-details-list ul li{
    font-size: 12px;
    font-weight: 300;
    letter-spacing: -0.05px;
    color: #FAF7F4;
    text-shadow:  2px 2px 10px rgba(0, 0, 0, 0.15);
}
.project-details-list ul{
    padding-left: 16px;
}
.project-details-list ul, .project-details-list ul li{
    list-style: disc;
}
.project-btn{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    z-index: 3;
    padding: 16px;
}
.project-btn .explore, .explore-more-btn .explore{
    width: 100%;
    border: 1px solid #fff;
    line-height: 24px;
    background-color: #D9BFA9;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
    outline: none !important;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #4B4B4B;
    transition: all 0.5s;
    border-radius: 30px;
    letter-spacing: -1px;
    font-family: 'Manrope';
}
.project-btn .explore:hover,
.explore-more-btn .explore:hover{
    background-color: #fff;
    transform: scale(1.05);
    color: #D9BFA9;
}
.explore-more-btn{
    padding-top: 54px;
}
.explore-more-btn .explore{
    width: fit-content;
    padding: 10px 40px;
    font-size: 22px;
    line-height: unset;
    color: #fff;
}
.explore-more-btn .explore:hover{
    border-color: #D9BFA9;
}

.disclaimer{
    font-size: 12px;
    color: lightgray;
}
/* ========================================================== why-choose-section ========================================================== */
.why-choose-section{
    padding-top: 250px;
}
.why-choose-item{
    margin-bottom: 24px;
    padding: 40px;
    display: flex;
    height: auto;
    flex-direction: column;
    gap: 20px;
    /*background-color: #F7E9D5;*/
    background-color: rgba(247, 233, 213,0.6);
    border-radius: 20px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}
.why-choose-item h6{
    font-size: 32px;
    font-weight: 500;
    color: #2E2E2E;
    letter-spacing: -2px;
}
.why-choose-item p{
    font-size: 18px;
    line-height: 24px;
    font-weight: 300;
    color: #2E2E2E;
}

/* ========================================================== company-section ========================================================== */
.company-section{
    padding: 200px 0px 150px;
}
.company-section .slick-list{
    padding-top: 165px !important;
}
.company-item{
    transition: all 0.5s;
    transform: translateY(0) scale(0.7);
    filter: blur(5px);
}
.company-item.slick-active{
    transform: translateY(-100px) scale(0.8);
    filter: blur(3px);
}
.company-item.slick-active.slick-current{
    transform: translateY(-220px);
    filter: blur(0px);
}
.company-item img{
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    object-position: center;
}

/* ========================================================== testimonial-section ========================================================== */
.testimonial-section{
    padding-bottom: 150px;
}
.testimonial-section .main-heading{
    padding-bottom: 120px;
}
.testimonial-item{
    padding: 30px;
    /*background-color: #F7E9D5;*/
    background-color: rgba(247, 233, 213,0.6);
    border-radius: 20px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.08);
}
.testimonial-slider .slick-slide{
    padding: 40px 12px 50px;
}
.testimonial-image{
    padding-bottom: 24px;
}
.testimonial-image img{
    width: 45px;
    height: 45px;
}
.star-list{
    display: flex;
    align-items: center;
    gap: 2px;
}
.star-list li{
    display: flex;
}
.star-list li svg{
    width: 20px;
    height: 20px;
    color: #D9BFA9;
}
.star-list li:not(:last-child) svg{
    color: #FFCB45;
}
.testimonial-item p{
    font-size: 18px;
    line-height: 27px;
    font-family: 'Manrope';
    font-weight: 300;
    color: #3F3F3F;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    letter-spacing: -0.5px;
}
.testimonial-item h6{
    font-size: 18px;
    font-weight: 600;
    padding-top: 20px;
    font-family: 'Manrope';
    text-align: end;
    color: #545454;
    letter-spacing: -1px;
}
.project-section .slick-dotted.slick-slider, .testimonial-section .slick-dotted.slick-slider{
    margin: 0px !important;
}
.project-section .slick-dots, .testimonial-section .slick-dots, .product-images-section .slick-dots{
    display: flex !important;
    position: unset;
    justify-content: center;
    gap: 24px;
}
.project-section .slick-dots li, .testimonial-section .slick-dots li, .product-images-section .slick-dots li{
    margin: 0px;
    width: 12px;
    height: 12px;
    border: 1px solid #C6C6C6;
    border-radius: 50%;
    transition: all 0.5s;
}
.project-section .slick-dots li.slick-active, .testimonial-section .slick-dots li.slick-active, .product-images-section .slick-dots li.slick-active{
    background-color: #C6C6C6;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}
.project-section .slick-dots li button, .testimonial-section .slick-dots li button, .product-images-section .slick-dots li button{
    display: none;
}

/* ========================================================== footer-section ========================================================== */
.footer{
    background: url('../src/img/footer-bg.png') no-repeat center center/cover;
    position: relative;
}
.footer-logo, .footer-mobile-logo{
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: auto;
    position: absolute;
    z-index: 1;
}
.footer-mobile-logo{
    display: none;
}
.footer::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,rgba(0, 0, 0, 1) 20%,rgba(48, 47, 47, 0.5) 100%, rgba(114, 114, 114, 0.1) 100%);
}
.site-visit{
    padding: 100px 0px 150px;
}
.footer-main, .site-visit, .footer-bottom{
    position: relative;
    z-index: 2;
}
.footer-main{
    padding-bottom: 40px;
}
.site-visit h6{
    font-size: 104px;
    font-weight: 400;
    color: #FAF7F4;
    line-height: 67px;
    font-family: 'Manrope';
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15);
    letter-spacing: -3px;
}
.site-visit p{
    font-size: 30px;
    padding: 50px 110px;
    font-weight: 400;
    color: #FAF7F4;
    line-height: 30px;
    font-family: 'Manrope';
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15);
    letter-spacing: -1px;
}
.site-visit-book{
    border: 1px solid #fff;
    background-color: #D9BFA9;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    outline: none !important;
    text-align: center;
    font-weight: 600;
    color: #4B4B4B;
    transition: all 0.5s;
    border-radius: 10px;
    letter-spacing: -1px;
    font-family: 'Manrope';
    width: fit-content;
    padding: 10px 60px;
    font-size: 22px;
    line-height: unset;
    color: #fff;
    transition: all 0.5s;
}
.site-visit-book:hover{
    background-color: #fff;
    transform: scale(1.05);
    color: #D9BFA9;
}
.footer-heading{
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    padding-bottom: 20px;
    letter-spacing: -1px;
    font-family: 'Manrope';
}
.footer-disc, .footer-links ul li a{
    font-size: 18px;
    line-height: 30px;
    padding-right: 50px;
    letter-spacing: -0.5px;
    color: #BABABA;
}
.footer-links ul li a{
    padding: 0px;
    position: relative;
    text-transform: capitalize;

}
.footer-links ul li a::after {
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    height: 1px;
    background-color: #fff;
    width: 0px;
    transition: all 0.5s;
}
.footer-links ul li a:hover::after {
    width: 100%;
}
.footer-links ul, .social-links ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.social-links ul{
    flex-direction: row;
    gap: 14px;
}
.social-links ul li a{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition: all 0.35s;
}
.social-links ul li a:hover{
    border-color: rgba(255, 255, 255, 1);
    background-color: #fff;
    transform: scale(1.08);

}
.social-links ul li a img{
    width: 20px;
    filter: invert(1);
    height: 20px;
    opacity: 0.7;
    transition: all 0.35s;
}
.social-links ul li a:hover img{
filter: invert(0);
opacity: 0.9;
}
.newsletter-form{
    display: flex;
    position: relative;
}
.newsletter-form input{
    height: 43px;
    width: 100%;
    border-radius: 5px;
    background-color: #fff;
    font-size: 17px;
    padding: 0px 20px;
    border: none;
    outline: none;
    letter-spacing: -0.5px;
    color: #2E2E2E;
}
.newsletter-form input::placeholder{
    color: #B4B4B4;
}
.newsletter-form button{
    position: absolute;
    right: 0px;
    top: 0px;
    padding: 0px 19px;
    height: 100%;
    border: none;
    outline: none;
    border: none;
    outline: none;
    background-color: transparent;
    border-radius: 5px;
    color: #515151;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.5s;
}
.footer-bottom{
    padding-bottom: 100px;
}
.footer-bottom ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-bottom ul li a, .Copyright{
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    color: #BABABA;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-bottom ul li a img{
    width: 24px;
    height: 24px;
    filter: invert(1);
}
.Copyright{
    justify-content: end;
}

/* ========================================================== sub-hero-section ========================================================== */
.sub-hero-section{
    padding: 250px 0px 100px;
    position: relative;
    overflow: hidden;
    border-radius: 0px 0px 50px 50px;
}
.sub-hero-section::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,rgba(0, 0, 0, .56) 0%, rgba(255, 255, 255, 0) 100%);
}
.sub-hero-content{
    position: relative;
    z-index: 1;
}
.sub-hero-content h1{
    font-size: 96px;
    font-weight: 400;
    color: #fff;
    letter-spacing: -3px;
    font-family: 'Manrope';
}

.br-hidden{
    display: none;
}
