.contacts_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.contacts_title {
  font-size: 16px;
  font-weight: 700;
  color: #666;
  text-align: center;
}

.contacts_address_item {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.contacts_address_item:last-child {
  margin-bottom: 0;
}

strong {
  color: #666;
}

.contacts_address_link {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  transition: all 0.9s ease;
}

.contacts_address_link:hover {
  color: #0099ff;
}

.input_wrapper {
  width: 100%;
  margin-bottom: 8px;
}

.input_label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #999;
  margin-bottom: 8px;
}

.input_wrap {
  position: relative;
}

.input_modal {
  width: 100%;
  height: 40px;
  background-color: #f4f4f4;
  border: 1px solid #dadada;
  padding: 0 16px 0 40px;
  outline: transparent;
  color: #666;
  transition: ease 0.9s;
}

.input_modal:hover,
.input_modal:focus {
  background-color: #dadada;
}

.input_modal_icon {
  width: 15px;
  height: 15px;
  object-fit: contain;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  transition: ease 0.9s;
}

.input_modal:focus + .input_modal_icon {
  color: #0099ff;
}

.input_textarea_wrapper {
  width: 100%;
  margin-bottom: 16px;
}

.input_textarea {
  width: 100%;
  height: 120px;
  background-color: #f4f4f4;
  border: 1px solid #dadada;
  padding: 8px 16px;
  color: #666;
  font-size: 11px;
  font-weight: 500;
  outline: transparent;
  resize: none;
  transition: ease 0.9s;
}

.input_textarea:hover,
.input_textarea:focus {
  background-color: #dadada;
}

.input_textarea::placeholder {
  font-size: 12px;
  font-weight: 600;
  color: #999;
}

.input_textarea:focus::placeholder {
  opacity: 0;
}

.input_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: linear-gradient(
    to bottom,
    rgb(0, 153, 255) 0%,
    rgb(0, 82, 150) 100%
  );
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  min-width: 140px;
  margin: 0 auto;
  transition: all 0.9s ease;
}

.input_btn:hover {
  background: linear-gradient(
    to bottom,
    rgb(0, 82, 150) 0%,
    rgb(0, 153, 255) 100%
  );
}

.contacts_location_link_wrap {
  border-radius: 2px;
  overflow: hidden;
}

iframe {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .contacts_title {
    font-size: 18px;
  }

  .contacts_address_link {
    font-size: 14px;
  }

  .contacts_address_link {
    font-size: 14px;
  }

  .input_label {
    font-size: 14px;
  }

  .input_textarea {
    font-size: 13px;
  }

  .input_textarea::placeholder {
    font-size: 14px;
  }
}

@media screen and (min-width: 1200px) {
  .contacts_wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .contacts_title {
    text-align: start;
  }

  .contacts_address_item {
    justify-content: flex-start;
    margin-bottom: 16px;
  }
}

@media screen and (min-width: 1440px) {
  .contacts_title {
    font-size: 20px;
  }

  .contacts_address_link {
    font-size: 16px;
  }

  .input_textarea {
    font-size: 15px;
  }

  .input_textarea::placeholder {
    font-size: 16px;
  }
}
