/* utils */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.site-footer {
  padding: clamp(0px, 36px - (36) * (100vw - 375px) / 1065, 36px) 0 16px;
  color: #fff;
  background: var(--text-dark);
}

.footer__title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: clamp(58px, 155 * (100vw - 375px) / 1065 + 58px, 213px);
  line-height: 146%;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(180deg, rgba(248, 255, 252, 0.3) 0%, rgba(248, 255, 252, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: clamp(0px, 13px - (13) * (100vw - 375px) / 1065, 13px);
}

.footer__grid {
  position: relative;
  margin-bottom: clamp(36px, 44 * (100vw - 375px) / 1065 + 36px, 80px);
}
@media screen and (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr minmax(0, clamp(220px, 456 * (100vw - 375px) / 1065 + 220px, 676px));
    display: grid;
    gap: 24px;
  }
}

.footer__left {
  max-width: 409px;
  margin-bottom: 24px;
}

.footer__right {
  margin-bottom: clamp(16px, 36px - (20) * (100vw - 375px) / 1065, 36px);
}

.footer__heading {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: clamp(20px, 12 * (100vw - 375px) / 1065 + 20px, 32px);
  line-height: 100%;
  color: #fff;
  margin-bottom: clamp(8px, 16 * (100vw - 375px) / 1065 + 8px, 24px);
}

.footer__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(14px, 2 * (100vw - 375px) / 1065 + 14px, 16px);
  line-height: 125%;
  letter-spacing: -0.02em;
  color: #fff;
}

.footer__social-label {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(12px, 2 * (100vw - 375px) / 1065 + 12px, 14px);
  line-height: 125%;
  letter-spacing: -0.02em;
  color: #fff;
  opacity: 0.7;
  margin-bottom: 16px;
}

@media screen and (min-width: 768px) {
  .footer__socials {
    position: absolute;
    bottom: 0;
  }
}

.footer__socials-list {
  display: flex;
  gap: 8px;
}

.footer__social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  width: clamp(44px, 8 * (100vw - 375px) / 1065 + 44px, 52px);
  height: clamp(44px, 8 * (100vw - 375px) / 1065 + 44px, 52px);
  background: #414246;
  color: white;
  transition: background var(--time-function), color var(--time-function);
}
.footer__social-link:hover {
  background: #fff;
  color: var(--text-dark);
}

.footer__social-icon {
  width: 16px;
  height: 16px;
  color: inherit;
}

.footer__form-panel .request-form__fields {
  gap: 8px;
}
.footer__form-panel .request-form__control {
  height: 44px;
  border: 0;
  border-radius: 12px;
  padding: 13px 16px;
  background: rgba(248, 255, 252, 0.1);
  color: #fff;
}
.footer__form-panel textarea.request-form__control {
  height: 120px;
}
.footer__form-panel .request-form__control::-moz-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 125%;
  letter-spacing: -0.02em;
  color: #fff;
}
.footer__form-panel .request-form__control::placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 125%;
  letter-spacing: -0.02em;
  color: #fff;
}
.footer__form-panel .js-phone-mask-input::-moz-placeholder {
  opacity: 0.7;
}
.footer__form-panel .js-phone-mask-input::placeholder {
  opacity: 0.7;
}
.footer__form-panel .button-cta svg {
  fill: var(--text-dark);
}
.footer__form-panel .request-form__counter {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 125%;
  letter-spacing: -0.02em;
  color: #f8fffc;
}
.footer__form-panel .request-form__privacy {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 125%;
  letter-spacing: -0.02em;
  color: #f8fffc;
  max-width: 343px;
  margin-bottom: 16px;
}
.footer__form-panel .request-form__submit {
  background: #fff;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 125%;
  letter-spacing: -0.02em;
  color: #1f1e22;
}

.footer__contacts-row {
  border-radius: 12px;
  padding: clamp(16px, 16 * (100vw - 375px) / 1065 + 16px, 32px);
  padding-right: clamp(16px, 174 * (100vw - 375px) / 1065 + 16px, 190px);
  background: linear-gradient(0deg, rgba(65, 66, 70, 0) 0%, #414246 100%);
  margin-bottom: clamp(36px, 44 * (100vw - 375px) / 1065 + 36px, 80px);
}
@media screen and (min-width: 768px) {
  .footer__contacts-row {
    display: flex;
    justify-content: space-between;
  }
}

.footer__contact-card {
  display: grid;
  gap: clamp(16px, 16 * (100vw - 375px) / 1065 + 16px, 32px);
}

.footer__email,
.footer__phone {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: clamp(16px, 16 * (100vw - 375px) / 1065 + 16px, 32px);
  line-height: 100%;
  color: #f8fffc;
}

.footer__phone-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer__messengers {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer__messenger-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  outline: none;
  transition: color 0.25s ease, transform 0.25s ease;
}
.footer__messenger-link:hover, .footer__messenger-link:focus-visible {
  transform: translateY(-2px) scale(1.08);
}
.footer__messenger-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
  border-radius: 999px;
}

.footer__messenger-link--telegram:hover,
.footer__messenger-link--telegram:focus-visible {
  color: #178ec9;
}

.footer__messenger-link--whatsapp:hover,
.footer__messenger-link--whatsapp:focus-visible {
  color: #25d366;
}

.footer__messenger-link--viber:hover,
.footer__messenger-link--viber:focus-visible {
  color: #7360f2;
}

.footer__messenger-icon {
  width: 24px;
  height: 24px;
  color: currentColor;
}

.footer__legal {
  display: grid;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .footer__legal {
    grid-template-columns: 1fr auto;
  }
}

.footer__copyright {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(12px, 2 * (100vw - 375px) / 1065 + 12px, 14px);
  line-height: 125%;
  letter-spacing: -0.02em;
  color: #fff;
  opacity: 0.7;
}

.footer__legal-links {
  display: flex;
  gap: 16px;
}

.footer__legal-item {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(12px, 2 * (100vw - 375px) / 1065 + 12px, 14px);
  line-height: 125%;
  letter-spacing: -0.02em;
  color: #fff;
  opacity: 0.7;
}
.footer__legal-item:visited {
  color: #fff;
  opacity: 0.7;
}
/*# sourceMappingURL=footer.css.map */
