.contacts__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.contacts__title {
  margin-bottom: 40px;
}
.contacts__info {
  list-style: none;
  height: -moz-fit-content;
  height: fit-content;
}
.contacts__item {
  list-style: none;
  margin-bottom: 10px;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.contacts__item:last-child {
  margin-bottom: 0;
}
.contacts__item * {
  color: var(--head);
}
.contacts__item-adresses {
  align-items: start;
}
.contacts__item-title {
  color: var(--mainText);
}
.contacts__form {
  background: var(--primary);
  border-radius: 20px;
  overflow: hidden;
  padding: 44px 30px;
  padding-bottom: 10px;
}
.contacts__form-title {
  margin-bottom: 30px;
}
.contacts .map-holder {
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}
.contacts .contact__wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 290px;
}
.contacts__adress {
  text-align: end;
}
.contacts .btn {
  text-align: center;
  height: 50px;
}
.contacts .soc-holder {
  display: flex;
  gap: 10px;
}
.contacts .theme-modal .form .p3 {
  padding: 19px 0;
  color: var(--White);
}
.contacts .form.form-v2 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contacts .form.form-v2 .btn {
  margin-top: 5px;
}
.contacts p {
  color: inherit;
}

@media (max-width: 996px) {
  .contacts {
    padding: 30px 0px !important;
  }
}

@media (max-width: 760px) {
  .contacts__wrapper {
    grid-template-columns: 1fr;
  }
  .contacts__form {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 442px) {
  .contacts .map-holder {
    width: 100%;
  }
}
@media (max-width: 375px) {
  .contacts__item-title {
    font-size: 14px;
    line-height: 1;
  }
  .contacts .soc-holder a {
    width: 40px;
    height: 40px;
  }
  .contacts .soc-holder a svg, .contacts .soc-holder a img {
    width: 100%;
    height: 100%;
  }
  .contacts__item {
    padding: 25px;
  }
}/*# sourceMappingURL=block.css.map */