.contact-modal {
  background-color: rgba(255, 255, 255, 0.88);
  border-radius: 30px;
  display: none;
}

.contacts-form {
  background-color: #fff;
  border: 2px solid #1e1e1e;
  padding: 40px;
  border-radius: 20px;
}

.contact-modal h2 {
  font-weight: 400;
  font-size: 43px;
  line-height: 91px;
  color: #1e1e1e;
  text-align: center;
}

.contacts-form__input {
  border-radius: 20px;
  border: 2px solid #1e1e1e;
  background-color: #fff;
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 16px;
  width: 100%;
}

.contact-modal__description {
  margin-bottom: 14px;
  color: #1e1e1e;
  font-size: 24px;
  text-align: center;
}

.contacts-form__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contacts-form__btn {
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  border-radius: 40px;
  box-shadow: none;
  background-color: #1e1e1e;
}

.contacts-form__label {
  display: block;
  margin-bottom: 6px;
}

.mb-2 {
  margin-bottom: 20px;
}

.contacts-form__textarea {
  height: 100px;
}

@media (max-width: 560px) {
  .contacts-form__wrapper {
    grid-template-columns: 1fr;
  }
  .contact-modal__description {
    font-size: 16px;
    line-height: 1.1;
  }
  .contact-modal h2 {
    font-size: 24px;
    line-height: 1.1;
  }
  .contacts-form {
    padding: 20px 10px;
  }
  .contacts-form__wrapper {
    gap: 10px;
  }
  .contacts-form__input {
    height: 40px;
  }
}