@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary-color--: #025555;
    --secondary-color--: #9e8131;
}

a{
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1;
    color: #000;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

html{
    scroll-padding: 80px;
}

body{
    font-family: "Poppins", sans-serif;
    color: #000;
}

h1,h2,h3,h4,h5,h6{
    font-family: "Anton", sans-serif;
    color: #000;
    margin: 0;  
}

p{
    margin: 0;
    font-size: 16px;
}

section{
    overflow: hidden;
}

.prealoader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999999;
    background-color: #fff;
    display: grid;
    place-items: center;
}

.prealoader img{
    width: 200px;
    animation: zoomInOut 3s infinite;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1); /* Original size */
    }
    50% {
        transform: scale(1.2); /* Zoomed in */
    }
    100% {
        transform: scale(1); /* Back to original size */
    }
}

header{
    background: #fff;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 5px 20px;
    position: sticky;
    top: 0;
    z-index: 99;
}

header .logo{
    width: 200px;
}

header .logo p{
    font-size: 20px;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
}

header .header_r{
    display: flex;
    align-items: center;
    gap: 30px;
}

header nav ul{
    display: flex;
    gap: 30px;
}

header nav ul li a{
    color: #000;
    transition: 0.3s;
    font-size: 18px;
}

header nav ul li a:hover, header nav ul li a.active{
    color: var(--secondary-color--);
}

header .menu_btn{
    margin-left: 20px;
    display: none;
}
header .menu_btn i{
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #000;
    border: 1px solid #000;
    font-size: 20px;
    margin-left: auto;
    /* border-radius: 50%; */
    cursor: pointer;
}
header nav .close_btn{
    text-align: end;
    padding: 10px 20px;
    display: none;
}

header nav .close_btn i{
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    color: var(--primary-color--);
    border: 1px solid var(--primary-color--);
    font-size: 20px;
    margin-left: auto;
    border-radius: 50%;
    cursor: pointer;
}

.heading h2{
    font-size: 32px;
    color: var(--primary-color--);
}

.font_20{
    font-size: 20px;
} 

.font_w_600{
    font-weight: 600;
}

.content p:not(:last-child){
    margin-bottom: 10px;
}

.download_btn{
    display: inline-block;
    padding: 8px 20px;
    color: var(--secondary-color--);
    border: 1px solid var(--secondary-color--);
    border-radius: 50px;
    transition: 0.3s;
    background: none;
}

.download_btn i{
    padding-left: 10px;
}

.download_btn:hover{
    background: var(--secondary-color--);
    color: #fff;
}

.about_img{
    position: relative;
    padding: 0 30px 30px 0;
    z-index: 2;
}

.about_img::before{
    content: '';
    position: absolute;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    right: 0;
    bottom: 0;
    background: var(--primary-color--);
    z-index: -1;
}

.about_section{
    position: relative;
}

.about_section::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../images/bg_pattern.avif) repeat;
    opacity: 0.3;
    z-index: -1;
}

.banner_slider{
    line-height: 1;
}

.product_features_card{
    padding: 10px 20px;
    /* border: 1px solid var(--secondary-color--); */
    height: 100%;
    background: rgb(234, 234, 234);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-radius: 10px;
}

.product_features_card img {
    width: 50px;
    flex: 0 0 auto;
  }

.product_features_card p{
    font-size: 18px;
    /* color: var(--secondary-color--); */
    color: #000;
}

.carpet_pricing_details{
    background: #f3f3f1;
}

.carpet_pricing_details_card{
    padding: 20px 10px;
    border: 1px solid var(--secondary-color--);
    border-radius: 5px;
    background: #003c3c;
    height: 100%;
}

.carpet_pricing_details_card h3{
    font-size: 42px;
    color: var(--secondary-color--);
    padding-bottom: 15px;
}

.carpet_pricing_details_card p{
    font-size: 28px;
    font-weight: 600;
    color: #fff;
}

.carpet_pricing_details_card span{
    font-size: 20px;
    color: #fff;
}

.product_features_card_new{
    background: #003c3c;
}

.location_features_card{
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 10px;
    border: 2px dashed var(--secondary-color--);
    border-radius: 10px;
    height: 100%;
}

.location_features_card img{
    width: 50px;
    flex: 0 0 auto;
}

.location_features_card p{
    font-size: 18px;
}

.text_b{
    color: var(--secondary-color--) !important; 
}

.text_a{
    /* color: var(--primary-color--) !important;  */
}

.enquire_now{
    background: #f3f3f1;
    height: 100vh;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form-control{
    /* border-color: var(--primary-color--); */
    padding: 5px 10px;
}

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

.enquire_now_btns a{
    width: 50%;
    padding: 20px 10px;
    background: var(--secondary-color--);
    color: #fff;
    text-align: center;
}

.enquire_now_btns a:not(:last-child){
    border-right: 1px solid #fff;
}

.amenities_card{
    text-align: center;
}

.amenities_card img{
/*     width: 80px; */
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.amenities_card p{
    font-size: 14px;
/*     margin-top: 15px; */
	margin-top: -25px;
    font-weight: 400;
}

footer{
    background: #F9F9F9;
}

.border_1{
    border-bottom: 1px solid #C3C3C3;
}

.copy_right{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.copy_right p{
    font-size: 12px;
    display: flex;
    gap: 10px;
}

.copy_right p a{
    color: #000 !important;
    font-size: 12px;
}

.f_border_left {
    border-left: 1px solid #C3C3C3;
}

.gallery_img{
    position: relative;
}

.gallery_img .gallery_img_content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    top: 0;
    left: 0;
    background: #02555591;
    opacity: 0;
    transition: .3s;
}

.gallery_img .gallery_img_content i {
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;
    color: #fff;
    border: 1px solid #fff;
}

.gallery_img:hover .gallery_img_content {
    opacity: 1;
}

.gallery_img img {
    aspect-ratio: 3/2;
    object-fit: cover;
}

.gallery_slider{
    position: relative;
}

.gallery_slider .slick-arrow{
    position: absolute;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--secondary-color--);
    border-radius: 50%;
    border: 1px solid var(--secondary-color--);
    transition: 0.3s;
    z-index: 2;
    top: 45%;
}

.gallery_slider .slick-arrow.slick-disabled{
    display: none !important;
}

.gallery_slider .slick-arrow:hover{
    background: none;
    color: var(--secondary-color--);
}

.gallery_slider .slick-arrow.slick-prev{
    left: 0;
}

.gallery_slider .slick-arrow.slick-next{
    right: 0;
}

.floor_plan_slider{
    position: relative;
}

.floor_plan_slider .slick-arrow{
    position: absolute;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--secondary-color--);
    border-radius: 50%;
    border: 1px solid var(--secondary-color--);
    transition: 0.3s;
    z-index: 2;
    top: 45%;
}

.floor_plan_slider .slick-arrow.slick-disabled{
    display: none !important;
}

.floor_plan_slider .slick-arrow:hover{
    background: none;
    color: var(--secondary-color--);
}

.floor_plan_slider .slick-arrow.slick-prev{
    left: 0;
}

.floor_plan_slider .slick-arrow.slick-next{
    right: 0;
}

.modal-content {
    border-radius: 20px;
}

.floor_plan_slider img{
    aspect-ratio: 3/2;
    object-fit: contain;
}