.contacts_content_wrapper {
  background: #f6f6f6;
  padding: 16px;
  /* border-radius: 5px; */
  /* box-shadow: 0px 0px 5px rgba(254, 89, 0, 0.5); */
}

.contacts_content_wrap {
  width: 100%;
}

.contacts_title_container {
  font-size: 18px;
  letter-spacing: 1px;
  text-align: center;
  width: 78%;
  margin: 0 auto;
  line-height: 30px;
}

.contacts_title_border_bottom_container {
  width: 100%;
}

.contacts_text {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: rgb(3, 5, 35);
  width: 85%;
  margin: 0 auto;
  margin-bottom: 15px;
}

.contacts_subtitle {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: rgb(3, 5, 35);
  margin-bottom: 15px;
}

.contacts_address_list_wrap {
  margin-bottom: 15px;
}

.contacts_address_list_mb_0 {
  margin-bottom: 0;
}

.contacts_address_list_title {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
  color: rgb(3, 5, 35);
}

.contacts_address_item {
  margin-bottom: 5px;
}

.contacts_address_item:last-child {
  margin-bottom: 0;
}

.contacts_address_link {
  font-size: 11px;
  font-weight: normal;
  display: flex;
  justify-content: center;
  text-align: center;
  color: rgb(3, 5, 35);
  transition: ease 0.5s;
}

.contacts_address_link:hover {
  color: rgb(218, 165, 32);
}

.input_wrapper {
  width: 100%;
  margin-bottom: 8px;
}

.input_label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgb(165, 165, 165);
  margin-bottom: 8px;
}

.input_wrap {
  position: relative;
}

.input_modal {
  width: 100%;
  height: 40px;
  border: 1px solid rgba(0, 0, 64, 0.5);
  padding: 0 16px 0 40px;
  outline: transparent;
  color: rgb(26, 49, 60);
  transition: ease 0.9s;
  border-radius: 16px;
  background-color: #ffffff;
}

.input_modal:hover,
.input_modal:focus {
  border-color: rgb(218, 165, 32);
}

.input_modal_icon {
  height: 15px;
  width: 15px;
  object-fit: contain;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgb(165, 165, 165);
  transition: ease 0.9s;
}

.input_modal:focus + .input_modal_icon {
  color: rgb(218, 165, 32);
}
.input_textarea {
  width: 100%;
  height: 120px;
  border: 1px solid rgba(0, 0, 64, 0.5);
  padding: 8px 16px;
  color: rgb(26, 49, 60);
  font-size: 11px;
  font-weight: 500;
  outline: transparent;
  background-color: transparent;
  resize: none;
  background: #ffffff;
  transition: ease 0.9s;
  border-radius: 16px;
  margin-bottom: 16px;
}

.input_textarea:hover,
.input_textarea:focus {
  border-color: rgb(218, 165, 32);
}

.input_textarea::placeholder {
  font-size: 12px;
  font-weight: 600;
  color: rgb(165, 165, 165);
}

.input_textarea:focus::placeholder {
  opacity: 0;
}

.input_btn {
  background: rgb(218, 165, 32);
  border-radius: 16px;
  border: 1px solid rgb(218, 165, 32);
  box-shadow: 0px 0px 5px rgba(0, 0, 64, 0.5);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  margin: 0 auto;
  min-width: 140px;
  transition: ease 0.9s;
}

.input_btn:hover {
  box-shadow: 0px 0px 25px rgba(0, 0, 64, 0.5);
}

.contacts_location_link_wrap {
  border-radius: 5px;
  overflow: hidden;
  height: 250px;
  transition: ease 0.5s;
  /* box-shadow: 0px 0px 5px rgba(254, 89, 0, 0.5); */
}

.contacts_location_link_wrap:hover {
  /* box-shadow: 0px 0px 25px rgba(254, 89, 0, 0.5); */
}

.contacts_location_link {
  cursor: grab;
  display: block;
  height: 100%;
  position: relative;
}

@media screen and (min-width: 576px) {
  .contacts_location_link_wrap {
    height: 350px;
  }
}

@media screen and (min-width: 768px) {
  .contacts_content_wrapper {
    padding: 20px;
  }

  .contacts_title_container {
    font-size: 20px;
    width: 49%;
  }

  .contacts_text {
    font-size: 16px;
    width: 70%;
    margin-bottom: 20px;
  }

  .contacts_subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .contancts_address_list_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .contacts_address_list_wrap {
    margin-bottom: 20px;
  }

  .contacts_address_list_mb_0 {
    margin-bottom: 0;
  }

  .contacts_address_list_title {
    font-size: 16px;
  }

  .contacts_address_link {
    font-size: 13px;
  }

  .contacts_location_link_wrap {
    height: 450px;
  }
}

@media screen and (min-width: 1024px) {
  .contacts_content_wrapper {
    display: flex;
    justify-content: space-between;
  }

  .contacts_content_wrap {
    width: 60%;
  }

  .contacts_title_container {
    width: 45%;
    margin: 0;
    text-align: left;
  }

  .contacts_title_border_bottom_container {
    width: 7%;
  }

  .contacts_text {
    text-align: left;
    width: 70%;
    margin: 0;
  }

  .contacts_subtitle {
    text-align: left;
  }

  .contancts_address_list_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .contacts_address_list_title {
    text-align: left;
  }

  .contacts_address_link {
    text-align: left;
    justify-content: flex-start;
  }

  .contacts_form_wrap {
    width: 40%;
  }
}

@media screen and (min-width: 1200px) {
  .contacts_content_wrapper {
    padding: 24px;
  }

  .contacts_title_container {
    font-size: 25px;
  }

  .contacts_text {
    font-size: 18px;
  }

  .contacts_subtitle {
    font-size: 20px;
  }

  .contacts_address_list_title {
    font-size: 18px;
  }

  .contacts_address_link {
    font-size: 15px;
  }

  .input_label {
    font-size: 14px;
  }

  .input_textarea::placeholder {
    font-size: 14px;
  }
}

@media screen and (min-width: 1440px) {
  .contacts_location_link_wrap {
    height: 550px;
  }
}
