@import url("default.css");

.header {
  background-color: #016cbc;
}

.contact_us_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 100px;
}

.contact_us_inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text_section {
  max-width: 900px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.contact_details_item {
  width: fit-content;
  max-width: 300px;
  margin: 20px;
}

.contact_details_item h3 {
  margin-bottom: 7px;
  font-size: 20px;
  color: #2b2b2b;
}

.contact_details_item p,
.contact_details_item a {
  font-size: 16px;
  color: #747373;
}

.contact_details_item a {
  text-decoration: none;
}

.map_section {
  width: 100%;
  max-width: 1200px;
  height: 100vh;
  max-height: 800px;
}

/* MEDIA */
@media (max-width: 1200px) {
  .contact_us_container {
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .text_section {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 750px) {
  .section_header {
    margin-top: 30px;
    margin-bottom: 50px;
  }
}

@media (max-width: 420px) {
  .section_header {
    margin-bottom: 20px;
  }

  .text_section {
    flex-direction: column;
  }
}

@media (max-width: 350px) {
  .contact_details_item h3 {
    font-size: 16px;
  }
  .contact_details_item p {
    font-size: 12px;
  }
}
