.footer {
  position: relative;
  z-index: 2;
  background: #1a1a1a;
  border-radius: 64px 64px 0 0;
  padding: 80px;
}
@media (max-width: 1800px) {
  .footer {
    padding: 80px 40px;
  }
}
@media (max-width: 1440px) {
  .footer {
    padding: 60px 20px;
  }
}
@media (max-width: 990px) {
  .footer {
    border-radius: 24px 24px 0 0;
  }
}
@media (max-width: 576px) {
  .footer {
    border-radius: 20px 20px 0 0;
    padding: 60px 15px;
  }
}
.footer__wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 90px;
}
@media (max-width: 1600px) {
  .footer__wrap {
    gap: 60px;
  }
}
@media (max-width: 1440px) {
  .footer__wrap {
    gap: 50px;
  }
}
@media (max-width: 990px) {
  .footer__wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 576px) {
  .footer__wrap {
    gap: 40px;
  }
}
.footer__cta {
  display: flex;
  flex-direction: column;
}
.footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 75px;
  height: 28px;
}
@media (max-width: 1440px) {
  .footer__logo {
    margin-bottom: 45px;
  }
}
@media (max-width: 1200px) {
  .footer__logo {
    margin-bottom: 30px;
  }
}
@media (max-width: 990px) {
  .footer__logo {
    margin-bottom: 40px;
    height: 26px;
  }
}
.footer__logo img {
  max-width: 100%;
  height: 28px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 990px) {
  .footer__logo img {
    height: 26px;
  }
}
.footer__text {
  margin: 0 0 5px 0;
  color: #ffffff;
  font-family: "TT Hoves", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 1440px) {
  .footer__text {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .footer__text {
    font-size: 14px;
  }
}
.footer__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}
@media (max-width: 576px) {
  .footer__form {
    gap: 10px;
    margin-top: 10px;
  }
}
.footer__field {
  display: block;
  width: 100%;
}
.footer__input {
  width: 100%;
  box-sizing: border-box;
  padding: 17px 18px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #ffffff;
  font-family: "TT Hoves", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 1440px) {
  .footer__input {
    padding: 10px 14px;
  }
}
.footer__input::placeholder {
  color: #fff;
}
.footer__btn-group {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.footer__btn {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 5px;
  padding: 0;
  background: transparent;
  border-radius: 4px;
  color: #ffffff;
  font-family: "TT Hoves", sans-serif;
  transition: opacity 0.3s;
}
@media (max-width: 576px) {
  .footer__btn {
    font-size: 15px;
  }
}
.footer__btn-text {
  text-align: center;
  padding: 0 12px;
  height: 44px;
  background: #ff3a28;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 120%;
  font-weight: 400;
}
@media (max-width: 1440px) {
  .footer__btn-text {
    padding: 0 10px;
    font-size: 16px;
  }
}
.footer__btn-icon {
  background: #ff3a28;
  color: #ffffff;
  height: 44px;
  width: 44px;
  min-height: 44px;
  min-width: 44px;
  border-radius: 4px;
}
.footer__btn-arrow {
  color: inherit;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 1800px) {
  .footer__nav {
    gap: 10px;
  }
}
@media (max-width: 990px) {
  .footer__nav {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .footer__nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.footer__col {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
@media (max-width: 1440px) {
  .footer__col {
    gap: 40px;
  }
}
@media (max-width: 990px) {
  .footer__col {
    gap: 20px;
  }
}
.footer__col-solutions {
  padding-left: 24px;
}
@media (max-width: 990px) {
  .footer__col-solutions {
    padding: 0;
  }
}
.footer__col-solutions::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
}
@media (max-width: 990px) {
  .footer__col-solutions::before {
    display: none;
  }
}
.footer__col-title {
  margin: 0;
  color: #ffffff;
  font-family: "TT Hoves", sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 120%;
}
@media (max-width: 1440px) {
  .footer__col-title {
    font-size: 24px;
  }
}
@media (max-width: 990px) {
  .footer__col-title {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .footer__col-title {
    font-size: 16px;
  }
}
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1440px) {
  .footer ul {
    gap: 15px;
  }
}
@media (max-width: 990px) {
  .footer ul {
    gap: 10px;
  }
}
.footer ul a {
  color: #fff;
  font-family: "TT Hoves", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  transition: 0.3s;
}
@media (max-width: 1800px) {
  .footer ul a {
    font-size: 19px;
  }
}
@media (max-width: 1440px) {
  .footer ul a {
    font-size: 16px;
  }
}
@media (max-width: 990px) {
  .footer ul a {
    font-size: 14px;
  }
}
.footer ul a:hover {
  color: #ed3026;
}

.footer-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.footer-modal--visible {
  opacity: 1;
  pointer-events: auto;
}
.footer-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.footer-modal__dialog {
  position: relative;
  z-index: 1;
  max-width: 420px;
  width: 100%;
  padding: 32px 32px 28px;
  border-radius: 16px;
  background: #1a1a1a;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
}
.footer-modal__title {
  color: #ffffff;
  font-family: "TT Hoves", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
}
@media (max-width: 990px) {
  .footer-modal__title {
    font-size: 16px;
  }
}
.footer-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-modal__close img {
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
}
.footer-modal__close:hover {
  border-color: #ff3a28;
}

.bitrix-modal-open {
  overflow: hidden;
}

.bitrix-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.bitrix-modal--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.bitrix-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.bitrix-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow: auto;
  padding: 48px 32px 32px;
  border-radius: 4px;
  background: #1a1a1a;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
}
@media (max-width: 576px) {
  .bitrix-modal__dialog {
    padding: 44px 16px 20px;
  }
}
.bitrix-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.bitrix-modal__close img {
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.bitrix-modal__close:hover {
  border-color: #ED3026;
}
.bitrix-modal__form {
  min-height: 240px;
}
.bitrix-modal__form .b24-form,
.bitrix-modal__form .b24-form-wrapper,
.bitrix-modal__form .b24-form-inner,
.bitrix-modal__form .b24-form-content,
.bitrix-modal__form .b24-form-padding-side {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
.bitrix-modal__form .b24-form-header,
.bitrix-modal__form .b24-form-header-title,
.bitrix-modal__form .b24-form-sign,
.bitrix-modal__form .b24-form-sign-info,
.bitrix-modal__form .b24-form-copyright,
.bitrix-modal__form a.b24-form-resource {
  display: none !important;
}
.bitrix-modal__form .b24-form-control-label,
.bitrix-modal__form .b24-form-control-alert,
.bitrix-modal__form .b24-form-field-label,
.bitrix-modal__form .b24-form-control-description {
  color: rgba(255, 255, 255, 0.85) !important;
  font-family: "TT Hoves", sans-serif !important;
}
.bitrix-modal__form .b24-form-field-agreement,
.bitrix-modal__form .b24-form-control-agreement,
.bitrix-modal__form .b24-form-field-bool {
  color: #fff !important;
  font-size: 16px !important;
  line-height: 140% !important;
  font-family: "TT Hoves", sans-serif !important;
}
.bitrix-modal__form .b24-form-field-agreement span,
.bitrix-modal__form .b24-form-field-agreement label,
.bitrix-modal__form .b24-form-field-agreement p,
.bitrix-modal__form .b24-form-field-agreement div,
.bitrix-modal__form .b24-form-field-agreement a,
.bitrix-modal__form .b24-form-control-agreement span,
.bitrix-modal__form .b24-form-control-agreement label,
.bitrix-modal__form .b24-form-control-agreement p,
.bitrix-modal__form .b24-form-control-agreement div,
.bitrix-modal__form .b24-form-control-agreement a,
.bitrix-modal__form .b24-form-field-bool span,
.bitrix-modal__form .b24-form-field-bool label,
.bitrix-modal__form .b24-form-field-bool p,
.bitrix-modal__form .b24-form-field-bool div,
.bitrix-modal__form .b24-form-field-bool a {
  color: #fff !important;
  font-size: 16px !important;
  line-height: 140% !important;
}
.bitrix-modal__form .b24-form-field-agreement a,
.bitrix-modal__form .b24-form-control-agreement a,
.bitrix-modal__form .b24-form-field-bool a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.bitrix-modal__form input[type=checkbox],
.bitrix-modal__form input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin: 0 10px 0 0;
  border: 2px solid #fff !important;
  border-radius: 4px !important;
  background: #fff !important;
  opacity: 1 !important;
  cursor: pointer;
  vertical-align: middle;
}
.bitrix-modal__form input[type=checkbox]:checked,
.bitrix-modal__form input[type=radio]:checked {
  background: #ED3026 !important;
  border-color: #ED3026 !important;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5L4.5 8.5L11 1.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 12px 10px !important;
}
.bitrix-modal__form input:not([type=checkbox]):not([type=radio]):not([type=submit]),
.bitrix-modal__form textarea,
.bitrix-modal__form select {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 4px !important;
  color: #fff !important;
  box-shadow: none !important;
  font-family: "TT Hoves", sans-serif !important;
  font-size: 16px !important;
}
.bitrix-modal__form input::placeholder,
.bitrix-modal__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}
.bitrix-modal__form .b24-form-btn,
.bitrix-modal__form .b24-form-btn-white,
.bitrix-modal__form button[type=submit],
.bitrix-modal__form input[type=submit] {
  background: #ED3026 !important;
  border: 0 !important;
  border-radius: 4px !important;
  color: #fff !important;
  box-shadow: none !important;
  font-family: "TT Hoves", sans-serif !important;
  font-size: 16px !important;
  min-height: 44px !important;
}

body > .b24-form,
body > .b24-form-wrapper {
  display: none !important;
}

.b24-form-popup,
.b24-form-popup-window,
.b24-window,
.b24-form-content-popup {
  color: #1e1e1e !important;
}
.b24-form-popup p,
.b24-form-popup span,
.b24-form-popup li,
.b24-form-popup div,
.b24-form-popup a,
.b24-form-popup h1,
.b24-form-popup h2,
.b24-form-popup h3,
.b24-form-popup h4,
.b24-form-popup ul,
.b24-form-popup ol,
.b24-form-popup-window p,
.b24-form-popup-window span,
.b24-form-popup-window li,
.b24-form-popup-window div,
.b24-form-popup-window a,
.b24-form-popup-window h1,
.b24-form-popup-window h2,
.b24-form-popup-window h3,
.b24-form-popup-window h4,
.b24-form-popup-window ul,
.b24-form-popup-window ol,
.b24-window p,
.b24-window span,
.b24-window li,
.b24-window div,
.b24-window a,
.b24-window h1,
.b24-window h2,
.b24-window h3,
.b24-window h4,
.b24-window ul,
.b24-window ol,
.b24-form-content-popup p,
.b24-form-content-popup span,
.b24-form-content-popup li,
.b24-form-content-popup div,
.b24-form-content-popup a,
.b24-form-content-popup h1,
.b24-form-content-popup h2,
.b24-form-content-popup h3,
.b24-form-content-popup h4,
.b24-form-content-popup ul,
.b24-form-content-popup ol {
  color: #1e1e1e !important;
}

/*# sourceMappingURL=footer.css.map */
