body{
    background-image: url(../img/residential.jpg);
    background-size: cover;
}
.header-buffer{
    height: 120px;
    width: 100%;
}
#properties-main{
    height: 110vh;
    
}
.main-page{
    display: flex;
    gap: 3rem;
    justify-content: center;
    padding: 2rem 5rem;
    width: 100%;
}
.page-left{
    width: 25%;
}
.page-right{
    width: 50%;
}
.page-left-list{
    color: #fff;
    width: 90%;
    height: 135px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    backdrop-filter: blur(5px);
    background-color: rgba(0,0,0, .4);
    margin-top: 1.2rem;
    padding: 1rem;
    border: 1px solid rgb(250, 250, 250);
    border-radius: 5px;
    font-size: 1.3rem;
    cursor: pointer;
}
.page-left .active-page-link{
    background-color: #fff;
    color: #000;
}
.page-left-list p{
    padding: 0;
    margin: 0;
}
.page-right > div{
    display: none;
}
.page-right .active-content{
    display: block;
}
.page-right h1{
    color: #fff;
    padding: 2.5rem 3rem;
    font-size: 3.5rem;
    background-color: rgba(0,0,0, .4);
    backdrop-filter: blur(5px);
}
.page-right-writ{
    background-color: rgb(240, 240, 240);
    padding: 1rem;
    color: rgb(90, 90, 90)
}
#photo-section{
    padding: 2rem 0;
    background-color: #fafafa;
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}
#photo-section > div{
    width: 22%;
}
#photo-section img{
    max-width: 100%;
}

@media screen and (max-width: 600px){
    #properties-main{
        height: auto;
        
    }
    .main-page{
        display: flex;
        flex-direction: column-reverse;
        padding: 2rem 1rem;
    }
    .page-left{
        width: 100%;
    }
    .page-left-list{
        color: #fff;
        width: 95%;
    }
    .page-right{
        width: 100%;
    }
    .page-right h1{
        font-size: 2.5rem;
    }
    #photo-section{
        display: block;
    }
    #photo-section > div{
        width: 95%;
        margin: 1rem auto;
    }
}