.contacts_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.contacts_form_wrap {
  width: 100%;
}

.input_wrapper {
  width: 100%;
  margin-bottom: 8px;
}

.input_label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #5b5a5f;
  margin-bottom: 8px;
}

.input_wrap {
  position: relative;
}

.input_modal {
  width: 100%;
  height: 40px;
  border: 2px solid #adccf9;
  padding: 0 16px 0 40px;
  outline: transparent;
  color: #040113;
  transition: ease 0.9s;
  background-color: #ffffff;
}

.input_modal:hover,
.input_modal:focus {
  border-color: #fc0307;
}

.input_modal_icon {
  height: 15px;
  width: 15px;
  object-fit: contain;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #adccf9;
  transition: ease 0.9s;
}

.input_modal:focus + .input_modal_icon {
  color: #fc0307;
}

.input_modal_icon {
  height: 15px;
  width: 15px;
  object-fit: contain;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #adccf9;
  transition: ease 0.9s;
}

.input_modal:focus + .input_modal_icon {
  color: #fc0307;
}

.input_textarea_wrapper {
}

.input_textarea {
  width: 100%;
  height: 120px;
  border: 2px solid #adccf9;
  padding: 8px 16px;
  color: #040113;
  font-size: 11px;
  font-weight: 500;
  outline: transparent;
  background-color: transparent;
  resize: none;
  background: #ffffff;
  transition: ease 0.9s;
  margin-bottom: 16px;
}

.input_textarea:hover,
.input_textarea:focus {
  border-color: #fc0307;
}

.input_textarea::placeholder {
  font-size: 12px;
  font-weight: 600;
  color: #5b5a5f;
}

.input_textarea:focus::placeholder {
  opacity: 0;
}

.input_btn {
  cursor: pointer;
  padding: 16px;
  border: none;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d91c21;
  font-size: 14px;
  font-weight: 600;
  color: #ffffffcc;
  text-transform: uppercase;
  margin: 0 auto;
  transition: all 0.9s ease;
}

.input_btn:hover {
  background-color: #fc0307;
  color: #ffffff;
}

.contacts_location_link_wrap {
}

iframe {
  width: 100%;
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  .input_label {
    font-size: 14px;
  }

  .input_textarea::placeholder {
    font-size: 14px;
  }
}

@media screen and (min-width: 1200px) {
  .contacts_wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .contacts_form_wrap {
    width: 50%;
  }

  .contacts_location_link_wrap {
    width: 50%;
  }
}
