.block_contacts_content {
  /* display: flex;
  justify-content: space-between; */
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 16px;
}

.block_contacts_info {
  /* width: 49%; */
  /* width: 100%; */
  padding-bottom: 18px;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 18px;
}

.block_section_title {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.section_subtitle {
  /* font-size: 13px; */
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: rgb(140, 140, 140);
  text-align: center;
}

.section_title {
  /* font-size: 40px; */
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgb(13, 13, 13);
  text-align: center;
}

.contacts_text {
  /* font-size: 14px; */
  font-size: 12px;
  font-weight: 400;
  color: rgb(138, 138, 138);
  text-align: center;
  margin: 0 auto;
}

.contacts_subtitle {
  /* font-size: 25px; */
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgb(13, 13, 13);
  text-align: center;
}

.contacts_list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contacts_item {
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  column-gap: 10px;
}

.contacts_item:last-child {
  margin-bottom: 0;
}

.contacts_item_img {
  /* height: 18px;
  width: 18px; */
  height: 15px;
  width: 15px;
  object-fit: contain;
}

.block_contacts_item_link {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}

.contacts_item_link {
  /* font-size: 18px; */
  font-size: 14px;
  font-weight: 400;
  transition: ease 0.5s;
  color: rgb(138, 138, 138);
}

.contacts_item_link:hover {
  color: rgb(254, 89, 0);
}

.block_input_wrapper {
  width: 100%;
  position: relative;
  margin-bottom: 16px;
}

.input_label {
  display: block;

  color: rgb(18, 18, 18);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.17;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.block_input_wrap {
  /* position: relative; */
}

.input_modal {
  width: 100%;
  height: 40px;
  border: 1px solid rgba(46, 47, 66, 0.4);
  padding: 0 16px 0 40px;
  outline: transparent;
  background-color: transparent;
  color: #434455;
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);

  background-color: #fff;
}

.input_modal_icon {
  position: absolute;
  left: 16px;
  top: 50%;
  /* transform: translateY(-50%); */
  color: #fcb900;
}

.block_input_wrapper_label {
}

.input_textarea {
  width: 100%;
  height: 120px;
  border: 1px solid rgba(46, 47, 66, 0.4);
  padding: 8px 16px;
  color: rgb(18, 18, 18);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.17;
  letter-spacing: 0.04em;
  outline: transparent;
  background-color: transparent;
  resize: none;
  background: #fff;
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.input_modal::placeholder,
.input_textarea {
  color: rgb(18, 18, 18);
}

.input_textarea:hover,
.input_textarea:focus {
  border-color: #fcb900;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.input_modal:hover,
.input_modal:focus {
  border-color: #fcb900;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.input_btn {
  color: #fff;
  font-size: 16px;

  font-weight: 500;

  background-color: #fcb900;
  cursor: pointer;
  display: block;
  /* padding: 16px 32px; */
  padding: 16px;

  border: none;
  margin: 0 auto;
  min-width: 169px;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.contacts_local_map_link {
  /* width: 49%; */
  display: flex;
  height: auto;
  cursor: grab;
}
.contacts_local_map_link_img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media screen and (min-width: 576px) {
}

@media screen and (min-width: 768px) {
  .section_subtitle {
    font-size: 13px;
  }

  .section_title {
    font-size: 25px;
  }

  .contacts_text {
    font-size: 14px;
  }

  .contacts_subtitle {
    font-size: 20px;
  }

  .contacts_item_img {
    height: 18px;
    width: 18px;
  }

  .contacts_item_link {
    font-size: 18px;
  }
}

@media screen and (min-width: 1024px) {
  .block_contacts_content {
    grid-template-columns: repeat(2, 1fr);
  }

  .section_subtitle {
    text-align: left;
  }

  .section_title {
    font-size: 30px;
    text-align: left;
  }

  .contacts_text {
    margin: 0;
    text-align: left;
  }

  .contacts_subtitle {
    font-size: 25px;
    text-align: left;
  }

  .contacts_list {
    align-items: start;
  }

  /* .block_contacts_form {
    width: 39%;
  } */
}

@media screen and (min-width: 1200px) {
  .section_title {
    font-size: 35px;
  }
}

@media screen and (min-width: 1440px) {
  .section_title {
    font-size: 40px;
  }
}
