.banner {
  width: calc(100% - 30px);
  height: 100vh;
  margin: 2rem auto;
  position: relative;
  max-width: 1600px;
}
.banner .row {
  height: 100%;
}
.banner h1,
.banner h3 {
  font-size: 1.3rem;
  font-weight: bold;
}
.banner h3 span {
  background-color: #e9f1fe;
  padding: 3px 10px;
  border-radius: 10px;
}
.banner p {
  color: #636060;
  margin: 2rem 0;
  font-size: 1rem;
}
.banner .pages {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.banner .pages a {
  text-decoration: none;
  width: 100%;
  height: 50px;
  line-height: 50px;
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 20px;
  transition:all 0.2s linear;
}
.banner .pages .home{
    background-color: #038a9d;
    border: 2px solid #038a9d;
    color: #ffffff;
}
.banner .pages .contact-us {
    border: 2px solid #038a9d;
    color: #038a9d;
}
.banner .pages .home:hover{
     background-color: transparent;
     color: #038a9d;
}
.banner .pages .contact-us:hover {
    background-color: #038a9d;
    color: #ffffff;
}
.banner img {
  position: absolute;
  width: 60px;
  height:60px;
  top: 0;
}
.banner .tv,
.banner .kitchen {
  top: unset;
  bottom: 7%;
  left: 10%;
}
.banner .kitchen {
  right: 10%;
  left: unset;
}
.banner .bed {
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
}
.banner .dresser1 {
  top: 8%;
  left: 10%;
}
.banner .dresser2 {
  top: 10%;
  right: 10%;
}
@media (min-width: 586px) {
  .banner h1,
  .banner h3 {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .banner h1,
  .banner h3 {
    font-size: 1.8rem;
  }
}
@media (min-width: 992px) {
  .banner {
    width: calc(100% - 8rem);
    margin: 2rem auto;
  }
  .banner h1,
  .banner h3 {
    font-size: 2rem;
  }
  .banner .dresser2 {
    top: 15%;
  }
  .banner .kitchen {
    bottom: 15%;
  }
  .banner .pages {
    flex-direction: row;
  }
  .banner .pages a {
    margin: 0 10px;
    width: 250px;
  }
  .banner img {
    width: 80px;
    height:80px;
  }
}
@media (min-width: 1200px) {
  .banner h1,
  .banner h3 {
    font-size: 2.5rem;
  }
}
