.contact-section {
  display: flex;
  justify-content: center;
  width: 100vw;
  background: #ccc;
  padding: 0px 50px;
}
.container-flex {
  display: flex;

  width: 50%;
  flex-direction: column;
  padding-top: 40px;
}
.fas {
  font-size: 50px;
  padding-bottom: 20px;
}
.contact-flex {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.contact-flex > h3 {
  font-size: 30px;
}
.contact-flex > p {
  font-size: 18px;
  text-align: center;
}
.map-text {
  font-size: 15px;
}


@media only screen and (max-width: 900px) {
  .contact-section {
    flex-direction: column;
    height: 100%;
  }

  .container-flex{
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

}