.contacts {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 80vh;
  background-color: #36bedd;
}

.contacts-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 100%;
  max-width: 1000px;
}

.contacts-info {
  width: 40%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.contacts-info div {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  color: #fff;
}

.contacts-info div:last-child {
  margin: 0;
}

.contacts-info div > div {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
}

.contacts-info div p {
  font-family: "HK Grotesk", sans-serif;
  font-weight: 600;
}

.contacts-info div > div {
  padding-top: 0.5rem;
  width: 25%;
  display: flex;
  justify-content: space-between;
}

.contacts-info div > div a {
  color: #fff;
}

.contacts-form {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contacts-form form {
  width: 100%;
}

.contacts-input-group {
  display: flex;
  justify-content: center;
  width: 100%;
}

.contacts-input-group input,
textarea {
  width: 100%;
  margin: 1rem;
  padding: 0.75rem;
  border: none;
  border-radius: 1.5rem;
  resize: none;
}

.contacts-input-group input:focus,
textarea:focus {
  outline: none;
}

.contacts-input-horizontal {
  display: flex;
  width: 100%;
}

.contacts-form .button {
  background-color: #fff;
  margin-top: 0.5rem;
  padding: 0.25rem 1.25rem;
  border: 0;
  border-radius: 1rem;
}

@media only screen and (max-width: 1024px) {
  .contacts-container {
    flex-direction: column;
  }

  .contacts-info {
    width: 80%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .contacts-info div {
    margin-bottom: 0.75rem;
  }

  .contacts-form {
    width: 80%;
  }

  .contacts-input-group {
    display: flex;
    justify-content: center;
    margin: 0;
  }

  .contacts-info div > div a {
    margin: 0 0.25rem;
  }
}
