/*Global*/ 
*{
    margin:0;
    padding:0;
}
body{
    font-family: arial;
}
p{
    line-height: 2;
}
a{
    text-decoration: none;
    color:white;
}
img{
    max-width: 100%;
}
/*Utilities*/
.container{
    width:80%;
    margin-left: auto;
    margin-right: auto;
}
.flex-parent-between{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.btn-details{
    display: block;
    background-color: orange;
    padding:10px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 3px;
    text-align: center;
}
/*Header*/
.init-header {
  background-image: url(/Real-Estate/img/header.jpg);
  background-size: cover;
  background-position: center;
  height: 300px;
  color: white;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.init-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* translucent black */
  z-index: 1;
}

.init-header .container {
  position: relative;
  z-index: 2;
}


/*Main*/

/*Houses section*/
.houses-container{
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.house-item{
    background-color: #dedede;
    
}
.house-item-img{

}
.house-item-text{
    padding: 20px;
}

.text-price{
    color: green;
}

.houses-items-details{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 20px;
    gap: 12px;
}

.icon-container{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 20px;
    gap: 12px;
}
