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

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

#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;
}

.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: 70px !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;
    width: 300px;
}

.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.webp) 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;
    }
}

.form-label {
    color: #888888;
}

/* section-features scroll */

.scroller {
    /* max-width: 1000px; */
    max-width: 100%;
}

.scroller__inner {
    /* padding-block: 1rem; */
    display: flex;
    flex-wrap: wrap;
    /* gap: 1rem; */
}

.scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient( 90deg, transparent, white 20%, white 80%, transparent);
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
    --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
    --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
    --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
    --_animation-duration: 60s;
}

@keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}

/* general styles */

:root {
    --clr-neutral-100: hsl(0, 0%, 100%);
    --clr-primary-100: hsl(205, 15%, 58%);
    --clr-primary-400: hsl(215, 25%, 27%);
    --clr-primary-800: hsl(217, 33%, 17%);
    --clr-primary-900: hsl(218, 33%, 9%);
}

.tag-list {
    margin: 0;
    padding-inline: 0;
    list-style: none;
}

.tag-list li {
    padding: 50px;
}

.modal-title {
    text-align: center;
}

a.theme-btn:hover,
a.theme-btn:active,
a.theme-btn:focus {
    color: #fff;
}

/* about us section */

.about-section {
    padding: 70px 0 0;
    background-color: #fff;
}

.about-section p {
    text-align: center;
}

.section-title {
    /* text-align: center; */
    margin-bottom: 20px;
}

.about-section-logo img {
    max-width: 215px;
    margin: 0 auto 15px;
    padding-bottom: 20px;
}

.points-section {
    margin-top: 40px;
}

.about-point {
    text-align: center;
    padding: 15px;
    margin: 0px 0;
    background-color: #fffaf03d;
    border-bottom: 2px solid #ab7f2d;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 8px 6px rgba(0, 0, 0, 0.1);
}

.about-point h3 {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    margin: 0;
    padding: 10px 0;
}

/* completed project */

.plan-title h6 {
    display: inline-block;
    padding: 10px 10px 4px 0;
    margin: 0px 20px 0 0px;
    background-color: #fff;
    position: relative;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}

.plan-title.for-project {
    padding: 0 20px;
}

.plan-title.for-project:before {
    position: absolute;
    content: "";
    bottom: 40%;
    left: 20px;
    height: 100%;
    width: calc(100% - 40px);
    border: 0px solid #000 !important;
    z-index: -1;
}

/* testinomial */

.theme-testi-block {
    position: relative;
    display: block;
    border: 1px solid #ddd;
    padding: 45px 30px;
    background: #fffcf7;
}

p.testi-text {
    min-height: 201px;
}

img.auth-img {
    width: 70px;
    margin-right: 20px;
    object-fit: cover;
    border-radius: 8px;
}

.test-author-wrap {
    display: flex;
    margin-top: 50px;
}

img.quote-img {
    width: 40px;
    margin: 0 auto;
    margin-bottom: 20px;
}

p.auth-desig {
    margin-bottom: 0;
}

p.auth-company {
    font-weight: 400;
}

h5.auth-name {
    font-size: 22px;
    margin-bottom: 8px;
}

.d-none {
    display: none;
}

.row.points-section {
    display: flex;
}

@media (max-width: 768px) {
    .amenities-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .row.points-section {
        display: block;
    }
    .about-section {
        padding: 40px 0;
        background-color: #fff;
    }
}

@media screen and (max-width: 768px) {
    section,
    .section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

header#header button.theme-btn {
    padding: 8px 22px;
}

header#header button.theme-btn i {
    padding-left: 8px;
}

.theme-btn .fa-download {
    margin-left: 5px;
    animation: bounce .5s infinite alternate;
    -webkit-animation: bounce .5s infinite alternate;
    animation-timing-function: ease-in;
}

@keyframes bounce {
    from {
        transform: translateY(-8px);
    }
    to {
        transform: translateY(3px);
    }
}

@media (min-width: 1200px) {
    .visible-lg {
        display: block !important;
    }
}

@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}

.mobile-gradient-form {
    border-radius: 30px;
    background: linear-gradient( 135deg, #025150 0%, #054544 50%, #1b7978 100%) !important;
    margin-bottom: 30px;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 30px;
}

#brochure-contact .modal-title {
    color: #fff;
}

#brochure-contact .sm-form-control::placeholder {
    color: white !important;
}

#brochure-contact .sm-form-control {
    border-bottom: 2px solid white;
}

#brochure-contact .sm-form-control:focus {
    border-bottom: 2px solid #ffffff;
}

.theme-btn.sticky-btn-enquire-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.theme-btn .fab.fa-whatsapp {
    margin-right: 10px;
    font-size: 24px;
    color: #25D366;
    margin-left: 6px;
}

@media (min-width: 768px) {
    #brochure-contact {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .mobile-only {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .desktop-only {
        display: none !important;
    }
}

#brochure-contact .sm-form-control {
    display: block;
    width: 100%;
    border: none;
    padding: 24px 15px 0px 2px;
    background-color: transparent;
    border-radius: 0;
    resize: none;
    color: #000;
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
    font-family: "Poppins";
}

@media screen and (max-width: 575px) {
    #brochure-contact .container {
        padding: 0 28px;
    }
}