#contacts__heading {
  margin: 2rem auto;
}

.contact__cards__container {
  padding: 2rem;
  gap: 1.5rem;
  display: flex;
  box-sizing: content-box;
  justify-content: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.contact__cards__container::-webkit-scrollbar {
  display: none;
  width: 0;
}
section {
  overflow: hidden;
  flex-direction: column;
}
section .container {
  padding-block: 2rem;
}

.contact__card {
  width: 16rem;
  aspect-ratio: 1/1;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: var(--drop-shadow-dark);
}

.contact__card__img {
  max-width: 4rem;
  padding-bottom: 1rem;
}

.contact__card__title {
  padding-bottom: 0.5rem;
  font-size: var(--fs-h5);
}

.get-in-touch__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  min-width: 600px;
  width: 80%;
  margin: 2rem auto 8rem auto;
  padding: 0.5rem;
}

#get-in-touch__map {
  flex: 1 1 0;
  border-radius: 1rem;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.2);
  align-self: stretch;
  max-width: 60rem;
  min-height: 32rem;
}

.get-in-touch__form {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  /* max-width: 20rem; */
}

#get-in-touch__message {
  height: 10rem;
  resize: none;
  overflow: auto;
}

.get-in-touch__input {
  padding: 0.5rem;
  background-color: #e7e7e7;
  box-shadow: inset 0 0 0.3rem #d2d2d2;
  border: 1px solid transparent;
  border-radius: 5px;
}

.get-in-touch__input:focus {
  outline: 1px solid gray;
}

#get-in-touch__button {
  height: 2rem;
  color: white;
  background-color: #ef233c;
  border-radius: 5px;
}

#get-in-touch__button:active {
  color: #ef233c;
  background-color: white;
  outline: 1px solid #ef233c;
}

@media screen and (max-width: 27.75rem) {
  .get-in-touch__info {
    min-width: unset;
    width: min(100%, 27.75rem);
    flex-direction: column-reverse;
  }
}
