.mobile-agent-before-description {
    display: none;
}

@media (max-width: 991px) {
    .mobile-agent-before-description {
        display: block;
        margin-bottom: 30px;
    }
}






    .new-property-tag {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 18px; 
        padding: 0 6px; 
        background-color: rgba(33, 37, 41, 0.75);
        color: #ffffff;
        border-radius: 3px;
        font-weight: 600;
        font-size: 11px;
        text-transform: uppercase;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
