.container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  flex-direction: column-reverse;
  
}
.image {
  width: 100vw;
  height: 200px;
  background-image: url(/img/contact/contact.jpg);
  background-position: center;
  background-size: cover;
  margin-bottom: 20px;
}
h1.hero {
  margin-bottom: 20px;
  text-align: center;
}
.maps-box {
  width: 80vw;
  height: 80vw;
}
.text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.socials-box {
  display: flex;
  align-items: center;
}
p.contact-details {
  text-align: center;
}
iframe {
  width: 80vw;
  height: 80vw;
}
.social-icon {
  width: 50px;
  height: 50px;
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
svg {
  width: 25px;
  height: 25px;
}

@media only screen and (min-width: 1001px) {
  .container {
    flex-direction: row;
    width: 100vw;

    justify-items: center;
    padding-top: 0px;
    margin-bottom: 100px;
  }
  .hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .image {
    width: 900px;
    height: 400px;
  }
  .text-box > p:nth-child(1) {
    padding: 0 50px;
    width: 30vw;
    text-align: left;
  }
  .maps-box {
    width: 800px;
    height: 600px;
  }
  .text-box {
    width: 500px;
    height: 600px;
  }
  .socials-box {
    margin-top: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
  }
  iframe {
    width: 100%;
    height: 100%;
  }
  .contact-details > p {
    font-size: large;
    line-height: 40px;
  }
  h1 {
    padding-bottom: 15px;
  }
}  

