
.property{
  width: 100%;
  padding-top: 60px;
  background: var(--gray-3);
}
.property .grid{
    
  justify-content: space-between;

}
.property h2{
    width: 100%;
    color: var(--red);
} 
.property p, .property strong{
    color: var(--gray-2);
}
.property .property-loop{
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.property-card{
    width: 48%;
    position: relative;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    padding-bottom: 60px;
}
.filter{
    width: 28%;
    height: fit-content;
    display: flex;
    background: var(--red);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}
.filter-container {
   width: 100%;
} 
.filter-item {
    margin-bottom: 10px;
}
.filter-item label {
    display: block;
    margin-bottom: 5px;
    color: var(--white);
}
.filter-item input,
.filter-item select {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    border: none;
    padding-left: 10px;
}
.half-width {
    width: 48%;
    display: inline-block;
}
.half-width input {
    width: 100%;
}
.flex-container {
    display: flex;
    justify-content: space-between;
    gap: 4%;
}
.button{
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
    border: 0;
    border-radius: 10px;
    gap:20px;
    background: var(--gray);
    color: var(--white);
    transition: var(--transition);
}
.button:hover{
    background: var(--black);
}

    
@media (max-width: 991px) {
    .property-card{
        width: 100%;
      }
}
 
    
@media (max-width:768px) {
    .property .grid{
        display: flex;
        flex-wrap: wrap;
    }
    .property .property-loop{
        order: 2;
        width: 100%;
    }
    .filter{
        order: 1;
        width: 100%;
    }
}
 