.contacts {
  margin-bottom: 5.75rem;
}
.contacts-header {
  position: relative;
  background-image: url(../../images/contact/contact-new-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (width <= 63.99875rem) {
  .contacts-header {
    background-image: url(../../images/contact/contact-bg-tablet.png);
  }
}
@media (width <= 36.24875rem) {
  .contacts-header {
    background-image: url(../../images/contact/contact-bg-mobile.png);
  }
}

.contacts-header__inner {
  position: relative;
}

.contacts-header__cat {
  position: absolute;
  right: 0;
  bottom: 0;
}

.contacts-header::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 86px;
  background-image: url(../../images/contact/contact-voln.png);
  background-position: center;
  background-repeat: no-repeat;
}

.contacts__form {
  padding: 32px;
  border-radius: 20px;
  background-color: var(--color-white);
  -webkit-box-shadow: var(--shadow-light);
  box-shadow: var(--shadow-light);

}
.contacts__form-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 28px;
}
.contacts__form-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contacts__form-input {
  width: 100%;
  padding: 10px 20px;
  border: 1px solid var(--color-gray-light);
  border-radius: 20px;
  font-size: 15px;
  line-height: 28px;
  outline: none;
  transition: border 0.3s ease;
}
.contacts__form-input.error {
  border: 1px solid var(--color-red-bright);
}
textarea.contacts__form-input {
  height: 82px;
  resize: none;
}
.contacts__form-button {
  margin-top: 8px;
}

.contacts-header__inner {
  padding-block: 6.5rem 10.5rem;
}
@media (width <= 63.99875rem) {
  .contacts-header__cat,
  .contacts-header::after {
    display: none;
  }
  .contacts-header__inner {
    padding-block: 4.5rem 29.5rem;
  }
}
@media (width <= 36.24875rem) {
  .contacts-header__inner {
    padding-block: 3.75rem 20.5rem;
  }
}
.contacts-header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (width <= 36.24875rem) {
  .contacts-header__left {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.contacts-header__button {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 2rem;
  margin-bottom: 2.5rem;
  -ms-flex-item-align: start;
      align-self: start;
}
@media (width <= 36.24875rem) {
  .contacts-header__button {
    -ms-flex-item-align: center;
        align-self: center;
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 3rem;
  }
}
.contacts-header__title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3.5rem;
  margin-bottom: 2.25rem;
  color: var(--color-white);
}
@media (width <= 47.99875rem) {
  .contacts-header__title {
    text-align: center;
    font-size: 2rem;
    line-height: 2.75rem;
  }
}
.contacts__socials-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
.contacts__socials-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contacts__socials-link img {
  width: 2.5rem;
  height: 2.5rem;
}
.contacts__socials_alt .contacts__socials-link img {
  width: 1.75rem;
  height: 1.75rem;
}
.contacts__inner {
  display: grid;
  grid-template-columns: 1fr 550px;
  gap: 2rem;
}
@media (width <= 63.99875rem) {
  .contacts__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  textarea.contacts__form-input {
    height: 217px;
  }
}
.contacts__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 3rem;
  margin-bottom: 3.875rem;
}
@media (width <= 63.99875rem) {
  .contacts__title {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 4.5rem;
  }
}
@media (width <= 36.24875rem) {
  .contacts__title {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 2.5rem;
    margin-bottom: 3rem;
  }
  textarea.contacts__form-input {
    height: 233px;
  }
}
.contacts__title img {
  width: 3rem;
  height: 3rem;
}
@media (width <= 36.24875rem) {
  .contacts__title img {
    width: 2.25rem;
    height: 2.25rem;
  }
}
.contacts__block {
  padding: 3rem;
  background-color: var(--color-white);
  -webkit-box-shadow: var(--shadow-light);
          box-shadow: var(--shadow-light);
  border-radius: 1.25rem;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
}
@media (width <= 36.24875rem) {
  .contacts__block {
    padding: 1.5rem;
  }
}
.contacts__block-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.25rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 0.0625rem solid var(--color-gray-light);
}
@media (width <= 36.24875rem) {
  .contacts__block-title {
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 2rem;
    letter-spacing: -0.66px;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
  }
}
.contacts__block-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.625rem;
  margin-bottom: 2rem;
}
.contacts__block-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 1.25rem;
}

.contacts__block-item .red-link {
  font-size: 16px;
}

.contacts__block-item-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contacts__block-item-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 2rem;
  margin-bottom: 0.5rem;
}
@media (width <= 36.24875rem) {
  .contacts__block-item-title {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
.contacts__block-map {
  width: 100%;
  height: 18.75rem;
  border-radius: 1.25rem;
  overflow: hidden;
}
.contacts__block-map iframe {
  padding: 0;
  background-color: transparent;
  border: none;
  width: 100%;
  height: 100%;
}
.contacts p:not(:last-child) {
  margin-bottom: 0.5rem;
}
.success-popup {
  text-align: center;
}
.success-popup__thanks-image {
  margin-bottom: 1.5rem;
}
.success-popup__thanks-inner {
  align-items: center;
  max-width: 30rem;
  padding: 3.75rem 6.875rem;
}
@media (width <= 36.24875rem) {
  .success-popup__thanks-inner {
    padding: 3.125rem;
  }
}
.success-popup__thanks-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.25rem;
}
@media (width <= 36.24875rem) {
  .success-popup__thanks-title {
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 2rem;
    letter-spacing: -0.66px;
  }
}
/*# sourceMappingURL=contact.css.map */