.header-section-blue {
  background-color: #e5f0f6;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}

.left {
  padding: 50px;
  width: 50%;
}
.left > h1 {
  display: block;
  width: max-content;
  margin: 0px;
  margin-left: auto;
  margin-right: auto;
}

.right {
  background-image: url("../images/houses.png");
  width: 50%;
  background-size: cover;
}
@media screen and (max-width: 1815px) {
  #houses {
    height: 100%;
  }
}
@media screen and (max-width: 576px) {
  .right {
    width: 40%;
    background-position: center;
  }
  .left {
    width: 60%;
    padding: 15px;
  }
}
@media screen and (max-width: 400px) {
  .right {
    display: none;
  }
  .left {
    width: 100%;
  }
  .left > h1 {
    padding: 0px;
    padding-left: 0.25rem;
  }
}

/*

Extra small
<576px	
Small
≥576px	
Medium
≥768px	
Large
≥992px	
Extra large
≥1200px

*/
