:root {
    --text-white: #ffffff;
}

.desktop_layout {
    display: block;
}

.mobile_layout {
    display: none;
}

@media (max-width: 767px) {
    .desktop_layout {
        display: none;
    }

    .mobile_layout {
        display: block;
    }
}

.latest-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.our-panle {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-block: 4px;
    padding-bottom: 50px;
}

    .our-panle .our-property:first-of-type {
        grid-row: span 2;
    }

.our-property {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, .08);
    position: relative;
}

    .our-property figure {
        margin: 0;
        height: 660px;
        overflow: hidden;
    }

        .our-property figure img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }

.emaar-pnl {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(176deg, rgba(0, 0, 0, 0) 1.28%, rgb(0, 0, 0) 100%);
}

.e-property-content {
    padding: 40px;
}

    .e-property-content h3,
    .e-property-content h4 {
        font-size: 30px;
        color: var(--text-white);
    }

    .e-property-content p {
        color: var(--text-white);
    }

.emaar-logo {
    max-height: 136px;
    margin-bottom: 12px;
}

.emaar-project {
    position: absolute;
    bottom: 0;
    color: var(--text-white);
    width: 100%;
    padding: 40px;
}

.emaar-1 h4 {
    color: var(--text-white);
}

.emaar-1 p {
    color: var(--text-white);
    font-size: 13px;
}

.emaar-1:nth-child(2) {
    border-left: 1px solid #fff;
    padding: 0 0 0 20px;
    margin-left: 17px;
}

.our-p-grid {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

    .our-p-grid h3,
    .our-p-grid h4 {
        font-size: 20px;
        margin-bottom: 0;
        font-weight: 600;
    }

.our-logo {
    border: 1px solid #ccc;
    border-radius: 6px;
    height: 60px;
    width: 160px;
    padding: 13px;
    margin: auto auto 20px;
}

    .our-logo img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

.line-border {
    border-color: rgba(255, 255, 255, .35);
    margin: 0.75rem 0;
}

.our-p-grid .line-border {
    border-color: #dee2e6;
}

.b-read {
    margin-top: 12px;
}

.Shortlist-btn {
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
}

.our-panle-m {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
    padding-bottom: 20px;
}

@media (min-width: 1280px) and (max-width: 1440px) {
    .our-logo {
        height: 150px;
        width: 250px;
        /*padding: 8px;*/
        margin-bottom: 10px;
    }

    hr {
        margin: .5rem 0;
    }
}

@media (max-width: 767px) {
    .our-logo {
        height: 100px;
        width: 300px;
        padding: 10px;
        margin-bottom: 7px;
    }

    .our-p-grid h3,
    .our-p-grid h4 {
        font-size: 15px !important;
    }

    .our-p-grid {
        padding: 11px;
    }

    hr {
        margin: .5rem 0;
    }

    .our-property figure {
        height: 400px;
    }

    .emaar-1 p {
        font-size: 12px;
    }

    .emaar-project .d-flex {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .full-width-section {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    .tlp-filter-row-1 {
        flex-direction: column !important;
    }

    .tlp-filter-row-1 {
        gap: 10px;
        align-items: normal;
    }
}

.know-more-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: fit-content;
    padding: 6px 18px;
    border: 1px solid #000;
    border-radius: 50px;
    background-color: #fff;
    color: #000;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    margin: 16px auto 0;
    transition: background-color 0.2s ease, color 0.2s ease;
}

    .know-more-button::after {
        content: '→';
        font-size: 14px;
        transition: transform 0.2s ease;
    }

    .know-more-button:hover {
        background-color: #000;
        color: #fff;
    }

        .know-more-button:hover::after {
            transform: translateX(3px);
        }

@media (max-width: 768px) {
    .know-more-button {
        font-size: 12px;
        padding: 5px 14px;
    }
}