/** current-property-box **/
.property-row hr {
    border: none;
    height: 2px;
    background-color: var(--primary-color);
    width: 100px;
}
.property-row h2 {
    font-size: 29px;
    font-weight: 400;
}
.property-row h3 {
    line-height: 26px;
    font-size: 20px;
    font-weight: 500;
}
.property-row p {
    font-size: 18px;
    font-weight: 300;
    line-height: 26px;
}
.property-row {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin: 0 150px;
    flex-wrap: wrap;
}
.property {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
    text-align: center;
    max-width: 370px;
}
.property img {
    width: 370px;
    height: 250px;
    transition: filter 0.3s ease;
}
.property img:hover {
    filter: brightness(0.8);
}
.property a {
    position: relative;
    overflow: hidden;
}
/** filter **/

.filter-section {
    margin-top: 50px;
}
.label {
    position: absolute;
    top: 30px;
    left: -60px;
    transform: rotate(-35deg);
    font-size: 20px;
    font-weight: 400;
    color: var(--white-color);
    background-color: var(--primary-color);
    padding: 10px 80px;
    transition: all 0.3s ease;
    z-index: 100;
}


/** responsivity **/
@media screen and (max-width: 1500px) {
    .property-row .property-row {
        margin: 0 50px;
    }
}

@media screen and (max-width: 980px) {
    .property-row .property-row {
        flex-direction: column;
        gap: 50px;
        margin: 0;
    }
}
@media screen and (max-width: 570px) {
    .filter-section {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
        flex-wrap: wrap;
    }

}
@media screen and (max-width: 437px) {
    .property img {
        width: 300px;
        height: 200px;
    }
}
