.corporate-logo img {
    height: 46px;
}


@media screen and (max-width: 1216px) {
    .corporate-logo img {
        height: 26px;
    }
}

#section-banner, .section-cms {
    margin-top: 65px !important;
}

 
.amenities-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
    /* padding: 20px; */
}

.amenities-grid-item {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: flex-start;
}

.amenities-grid-item img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    margin-bottom: 10px;
}

.amenities-grid-item h4 {
    margin-left: 10px;
    font-size: 16px;
    font-weight: 600;
}

.amenities-grid-item h4:hover {
    color: var(--primary-color);
    cursor: pointer;
}


@media (max-width: 768px) {
    .amenities-grid-container {
        grid-template-columns: repeat(2, 1fr); 
    }
}



  .load-more-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: 20px auto;
    padding: 10px 20px;
    color: var(--primary-color);
    cursor: pointer;
  }

  .load-more-btn img {
    width: 10px;
    height: 10px;
    fill: var(--primary-color);
  }

  .load-more-btn:hover {
    color: var(--border-color-1);
  }


.features-detail h3 {
    font-size: 80px;
}

@media screen and (max-width: 420px) {
    .features-detail h3 {
        font-size: 34px;
        line-height: 38px;
    }
}


.theme-img-animation > picture:nth-child(n+2) > img {
    filter: blur(12px);
}

.get-code-sheet{
    padding: 5px 14px;
}

@media (max-width: 768px) {
    #section-banner{
        margin-top: 60px !important;
    }
}

@media screen and (max-width: 1216px) {
    header {
        padding: 18px 30px;
    }
}


.section-title h1,.section-title h2{
    font-size: 75px;
}

@media screen and (max-width: 480px) {
    .section-title h1, .section-title h2 {
        font-size: 34px;
        line-height: 40px;
    }
}

#section-highlights {
    padding-top: 50px;
}

@media screen and (max-width: 768px) {
    #section-highlights {
        padding-top: 40px;
        padding-bottom: 40px !important;
    }
}


.get-code-sheet {
    padding: 5px 5px;
}


@media screen and (max-width: 1216px) {
    .theme-logo {
        margin-right: 25px;
    }
}


/* Amenities */
.amenities-grid-item h4 {
    margin-left: 10px;
    font-size: 20px;
    font-weight: 400;
}

.amenities-grid-item {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.amenities-grid-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}


@media (max-width: 768px) {
    .amenities-grid-item img {
        width: 32px;
        height: 32px;
    }

    .amenities-grid-item h4 {
        font-size: 16px;
    }
}








/* Project Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.features-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* background-color: #fff; */
    border: 2px solid rgb(255, 255, 255);
    /* border-radius: 10px; */
    padding: 40px 20px;
    box-shadow: 0 8px 24px rgba(149, 157, 165, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.features-grid-item:hover {
    box-shadow: 0 12px 30px rgba(149, 157, 165, 0.3);
}

.features-grid-item .icon-container {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
}

.features-grid-item:hover .icon-container {
    /* background-color: #c2a77f; */
}

.features-grid-item .icon-container i {
    font-size: 40px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.features-grid-item:hover .icon-container i {
    color: #fff;
}

.features-grid-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.features-grid-item h4 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 5px;
    color: #ffffff;
}

.features-grid-item p {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}


.gold-block::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    background: var(--primary-color);
}

@media screen and (max-width: 768px) {
    .gold-block::before{
        width: 100%;
    }
}

.gold-block-title-container h2{
    color: #fff;
}

.gold-block-title-container p{
    color: #fff;
}

.get-in-touch-wrapper .form-label{
    color: #fff;
}

.get-in-touch-wrapper .sm-form-control{
    background: #fff;
}

.get-in-touch-wrapper .theme-btn.btn-lg{
    background: #fff;
    color: var(--primary-color);
    border: 1px solid #fff;
}

.get-in-touch-wrapper .theme-btn.btn-lg:hover{
    background: var(--primary-color);
    color: #fff;
    border: 1px solid #fff;
}


#section-amenities{
    padding-bottom: 0px;
}

#section-amenities-carousel{
    padding-top: 20px;
}



#footer{
    background: url(../../media/images-2/footer.png) no-repeat center center;
    background-size: cover;
}

/* #footer .footer-logo img{
    width: 100px;
} */



.elementor-video-iframe{
    height: 640px;
}

@media screen and (max-width: 768px) {
    .elementor-video-iframe{
        /* height: 300px; */
        height: 100%;
    }
}


.footer-by-text-container a{
    color: #fff;
}

.footer-by-text-container a:hover{
    color: #ccc;
}

.sticky-btn-enquire-whatsapp{
    display: none;
}


.overlay-image{
    padding: 10px;
}

.rera-title{
    font-size: 20px;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .rera-title{
        font-size: 16px;
    }

    .sticky-btn-enquire-whatsapp {
        display: block;
    }
}