@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("~/assets/fonts/Inter/Inter-Regular.woff2") format("woff2"), url("~/assets/fonts/Inter/Inter-Regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("~/assets/fonts/Inter/Inter-Medium.woff2") format("woff2"), url("~/assets/fonts/Inter/Inter-Medium.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("~/assets/fonts/Inter/Inter-Bold.woff2") format("woff2"), url("~/assets/fonts/Inter/Inter-Bold.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  src: local(""), url("~/assets/fonts/Inter/Inter-Bold.woff2") format("woff2"), url("~/assets/fonts/Inter/Inter-Bold.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
body {
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: var(--text);
  background: var(--bg);
}

h1 {
  font-weight: 800;
  font-size: 35px;
  line-height: 45px;
}
@media (min-width: 1024px) {
  h1 {
    font-size: 55px;
    line-height: 65px;
  }
}

h2 {
  font-weight: 800;
  font-size: 28px;
  line-height: 38px;
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 40px;
  }
}

h3 {
  font-weight: 800;
  font-size: 22px;
  line-height: 32px;
}

.bold {
  font-weight: 800;
  font-size: 22px;
  line-height: 32px;
}

.small-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}

.section {
  padding-top: 40px;
  padding-bottom: 50px;
}
@media (min-width: 1280px) {
  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.btn {
  min-width: 335px;
  height: 55px;
  background: var(--cta);
  border-radius: 30px;
  cursor: pointer;
  user-select: none;
  color: var(--bg);
  width: 100%;
  box-shadow: 2px 2px 22px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
  .btn {
    width: auto;
  }
}
@media (max-width: 374px) {
  .btn {
    min-width: unset;
  }
}
.btn:hover {
  background: var(--main-horizontal-gradient);
}
.btn:active {
  opacity: 0.9;
  background: var(--main-middle);
}
.btn--disabled {
  background: #C4C4C4;
  pointer-events: none;
}
.btn__text {
  font-weight: 500;
  font-size: 16px;
}

.text-input {
  height: 53px;
  min-width: 335px;
  border: 1px solid var(--bg-light);
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.15);
  border-radius: 30px;
  padding-left: 20px;
  padding-top: 0;
  outline: none;
  width: 100%;
}
@media (min-width: 768px) {
  .text-input {
    width: unset;
  }
}
@media (max-width: 374px) {
  .text-input {
    min-width: unset;
  }
}
.text-input--focused {
  padding-top: 25px;
}
.text-input--focused + .text-input__overlay .text-input__mask__underlines {
  top: -1.5px;
}
.text-input--invalid {
  border: 1px solid var(--error);
  background: #F0F4F8;
  color: #23262B;
  padding-top: 25px;
}
.text-input--invalid::placeholder {
  color: var(--error);
}
.text-input--invalid + .text-input__overlay .text-input__mask__underlines {
  top: -1.5px;
}
.text-input__container {
  position: relative;
}
.text-input__wrapper {
  position: relative;
}
.text-input__overlay {
  display: block;
  position: absolute;
  top: 0;
  left: 20px;
  padding-top: 10px;
}
.text-input__label {
  font-size: 12px;
  color: #000;
  font-weight: 400;
  line-height: 150%;
}
.text-input__mask {
  font-size: 16px;
  display: flex;
  flex-direction: row;
}
.text-input__mask__invisible {
  color: transparent;
}
.text-input__mask__underlines {
  white-space: pre;
  position: relative;
  top: 3.5px;
  left: 1px;
}
.text-input__mask__measure {
  margin-left: 7px;
}
.text-input__placeholder {
  line-height: 24px;
  top: 5px;
  color: #161A22;
}
.text-input__error {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: var(--error);
}

.header {
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
@media (min-width: 1024px) {
  .header {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
@media (min-width: 1280px) {
  .header {
    background: none;
  }
}
.header a {
  color: #ffffff;
  text-decoration: none;
}

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.brand a {
  text-decoration: none;
}
.brand__logo {
  height: 20px;
  width: 20px;
  filter: invert(1);
}
@media (min-width: 1024px) {
  .brand__logo {
    height: 25px;
    width: 25px;
  }
}
.brand__name {
  font-weight: 800;
  font-size: 22px;
  line-height: 30px;
  color: #fff;
}

.main-screen__section {
  background-color: var(--main);
  background-image: var(--main-bg-pic-m);
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  margin-top: -60px;
  padding-top: 266px;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .main-screen__section {
    padding: 190px 70px 100px;
    margin-top: -80px;
    background-size: cover;
    background-image: var(--main-bg-pic-t);
  }
}
@media (min-width: 1280px) {
  .main-screen__section {
    padding: 102px 0;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 73.19%, #000 104.77%), var(--main-bg-pic-d);
  }
}
@media (min-width: 1920px) {
  .main-screen__section {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 73.19%, #000 104.77%), var(--main-bg-pic-big);
  }
}
.main-screen__section > .container {
  padding: 0;
}
@media (min-width: 1280px) {
  .main-screen__section > .container {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.main-screen__section__sum-input--mobile {
  margin-bottom: 15px;
}
@media (min-width: 1024px) {
  .main-screen__section__sum-input--mobile {
    display: none;
  }
}
@media (min-width: 1024px) {
  .main-screen__section__chips--mobile {
    display: none !important;
  }
}
.main-screen__block {
  width: 100%;
  background: var(--bg);
  padding: 30px 20px 30px;
  border-radius: 30px 30px 0 0;
}
@media (min-width: 768px) {
  .main-screen__block {
    background: var(--bg);
    border-radius: 30px;
    padding: 50px;
  }
}
@media (min-width: 1280px) {
  .main-screen__block {
    width: 500px;
  }
}
.main-screen__block__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.main-screen__heading {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .main-screen__heading {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 1024px) {
  .main-screen__heading {
    margin-bottom: 34px;
  }
}
.main-screen__subheading {
  font-size: 16px;
  line-height: 150%;
}
@media (min-width: 1024px) {
  .main-screen__subheading {
    font-size: 25px;
  }
}
@media (max-width: 374px) {
  .main-screen__subheading.za {
    font-size: 13px;
  }
}
@media (min-width: 479px) {
  .main-screen__subheading.za {
    font-size: 16px;
  }
}
.main-screen__sum {
  display: flex;
  align-items: center;
  background: var(--white);
  font-weight: 800;
  font-size: 22px;
  line-height: 32px;
}
@media (min-width: 1024px) {
  .main-screen__sum {
    height: 40px;
    font-size: 20px;
  }
}
.main-screen__sum div {
  white-space: nowrap;
}
.main-screen__range-input {
  display: block;
  width: 100%;
  -webkit-appearance: none;
  background: transparent;
  border-radius: 10px;
}
.main-screen__range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  box-sizing: content-box;
  border: 8px solid var(--accent-light);
  border-radius: 50%;
  height: 24px;
  width: 24px;
  background: var(--accent);
  cursor: pointer;
  position: relative;
  top: -10px;
  z-index: 1;
}
.main-screen__range-input::-moz-range-thumb {
  -webkit-appearance: none;
  box-sizing: content-box;
  border: 8px solid var(--accent-light);
  border-radius: 50%;
  height: 24px;
  width: 24px;
  background: var(--accent);
  cursor: pointer;
  position: relative;
  top: -10px;
  z-index: 1;
}
.main-screen__range-input::-webkit-slider-runnable-track {
  width: 100%;
  height: 20px;
  cursor: pointer;
  background: linear-gradient(90deg, var(--accent) 0, var(--accent) var(--percent), var(--bg-light) var(--percent));
  border-radius: 10px;
}
.main-screen__range-input::-moz-range-track {
  width: 100%;
  height: 20px;
  cursor: pointer;
  background: linear-gradient(90deg, var(--accent) var(--percent), var(--bg-light) var(--percent));
  border-radius: 10px;
}
.main-screen__range-input:focus {
  outline: none;
}
.main-screen__range-input__wrapper {
  margin: 18px 0;
  position: relative;
  overflow: visible;
}
.main-screen__range__constraints {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: var(--bg-middle);
}
.main-screen__payment-info {
  display: flex;
  align-content: center;
  gap: 73px;
  margin-top: 40px;
}
@media (max-width: 1279px) {
  .main-screen__payment-info {
    display: none;
  }
}
.main-screen__protection {
  max-width: 300px;
}

.chips {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 5px;
  margin-top: 15px;
}
@media (min-width: 1024px) {
  .chips {
    gap: 9px;
    margin-top: 20px;
  }
}

.chip {
  background: var(--accent);
  color: #fff;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-weight: 400;
  cursor: pointer;
  user-select: none;
}
.phone__section {
  padding: 20px;
  margin: 0 -20px;
}
@media (min-width: 768px) {
  .phone__section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
  }
}
@media (min-width: 1024px) {
  .phone__section {
    display: block;
    padding: 0 50px;
    margin: 10px -50px 0;
  }
}
@media (min-width: 1024px) {
  .phone__section--mobile {
    display: none;
  }
}
.phone__section__heading {
  font-size: 25px;
  line-height: 150%;
  font-weight: 500;
  margin-bottom: 10px;
}
.phone__section__input {
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  .phone__section__input {
    margin-bottom: 20px;
  }
}
@media (min-width: 1024px) {
  .phone__section__input .text-input {
    width: 100%;
  }
}
.phone__section__btn {
  margin: 0 0 20px;
  width: 100%;
}
@media (min-width: 1024px) {
  .phone__section__btn {
    width: 100%;
    margin-top: 20px;
  }
}
.phone__section__additional {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.phone__section__protection {
  --background: transparent !important;
}
@media (min-width: 1280px) {
  .phone__section__protection {
    display: none !important;
  }
}
@media (max-width: 1279px) {
  .phone__section__protection {
    --text: var(--main) !important;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .phone__section__protection {
    padding: 5px !important;
    max-width: fit-content !important;
  }
}
.phone__section__payment-methods {
  --background: rgba(27, 27, 27, 0.8) !important;
}
@media (min-width: 1280px) {
  .phone__section__payment-methods {
    display: none !important;
  }
}

.smallest-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
}
.smallest-text--semi-bold {
  font-weight: 600;
  font-size: 12px;
  line-height: 150%;
}

.grey {
  color: var(--bg-middle);
}

.pros__section {
  background: var(--main-vertical-gradient);
  overflow: hidden;
}
.pros__section__cards {
  display: flex;
  flex-direction: row;
}
@media (min-width: 1024px) {
  .pros__section__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
  }
}
.pros__section .swiper-slide {
  opacity: 0.5;
}
@media (min-width: 768px) {
  .pros__section .swiper-slide {
    opacity: 1;
  }
}
.pros__section .swiper-slide-active {
  opacity: 1;
}
.pros__section .pros-swiper__pagination {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 35px;
}
.pros__section .pros-swiper__pagination .swiper-pagination-bullet {
  display: flex;
  align-items: center;
  width: 7px;
  opacity: 0.5;
  height: 7px;
  background-color: var(--bg) !important;
  border-radius: 100px;
  transition: background-color 0.25s ease, width 0.3s ease-out;
}
.pros__section .pros-swiper__pagination .swiper-pagination-bullet-active {
  width: 37px;
  opacity: 1;
  background-color: #fff !important;
}

.pro-card {
  padding: 30px 20px 35px;
  width: 315px;
  min-height: 280px;
  height: 100%;
  border-radius: 30px;
  position: relative;
  cursor: pointer;
  background: var(--bg);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto 280px;
}
@media (min-width: 1024px) {
  .pro-card {
    width: auto;
    min-height: 190px;
    background-size: auto 175px;
  }
}
@media (min-width: 1280px) {
  .pro-card {
    background-size: auto 190px;
  }
}
.pro-card__wrapper:nth-of-type(1) .pro-card {
  background-image: url("/presets/2/pro-card-1-m.webp");
}
@media (min-width: 1024px) {
  .pro-card__wrapper:nth-of-type(1) .pro-card {
    background-image: url("/presets/2/pro-card-1-d.webp");
  }
}
.pro-card__wrapper:nth-of-type(2) .pro-card {
  background-image: url("/presets/2/pro-card-2-m.webp");
}
@media (min-width: 1024px) {
  .pro-card__wrapper:nth-of-type(2) .pro-card {
    background-image: url("/presets/2/pro-card-2-d.webp");
  }
}
.pro-card__wrapper:nth-of-type(3) .pro-card {
  background-image: url("/presets/2/pro-card-3-m.webp");
}
@media (min-width: 1024px) {
  .pro-card__wrapper:nth-of-type(3) .pro-card {
    background-image: url("/presets/2/pro-card-3-d.webp");
  }
}
.pro-card__wrapper:nth-of-type(4) .pro-card {
  background-image: url("/presets/2/pro-card-4-m.webp");
}
@media (min-width: 1024px) {
  .pro-card__wrapper:nth-of-type(4) .pro-card {
    background-image: url("/presets/2/pro-card-4-d.webp");
  }
}
.pro-card__heading {
  margin-bottom: 10px;
}
.pro-card__text {
  width: 150px;
}
@media (min-width: 1024px) {
  .pro-card__text {
    width: 310px;
  }
}
.pro-card__arrow {
  position: absolute;
  bottom: 30px;
  right: 20px;
}
@media (min-width: 1280px) {
  .pro-card__arrow {
    bottom: 50px;
  }
}

.requirements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}
@media (min-width: 768px) {
  .requirements {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
.requirements__section {
  background: var(--main);
}
@media (min-width: 1024px) {
  .requirements__section .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
}
.requirements__section h2 {
  color: var(--bg);
}
@media (min-width: 1024px) {
  .requirements__section h2 {
    margin: 0;
  }
}

.requirement {
  background: var(--bg);
  border: 1px solid var(--bg);
  border-radius: 20px;
  padding: 15px 25px;
  height: 160px;
  text-align: center;
}
@media (min-width: 768px) {
  .requirement {
    width: 170px;
  }
}
.requirement:hover {
  border: 1px solid var(--main);
}
.requirement__icon {
  width: 50px;
  height: 50px;
  display: block;
  margin: 0 auto 10px;
}
.requirement__icon path, .requirement__icon rect {
  stroke: var(--main);
}
@media (min-width: 1024px) {
  .steps {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
.steps__btn {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .steps__btn {
    display: none;
  }
}

.step {
  padding: 0 20px 30px 93px;
  position: relative;
}
@media (min-width: 1024px) {
  .step {
    width: 380px;
  }
}
.step__border {
  position: absolute;
  left: 17px;
  top: 0;
  bottom: 0;
  width: 2px;
}
@media (min-width: 1024px) {
  .step__border {
    display: none;
  }
}
.step__line {
  position: absolute;
  left: 50px;
  top: 16px;
  width: 20px;
  height: 2px;
}
.step:nth-of-type(1) .step__border {
  background: linear-gradient(0deg, var(--main-middle) 0%, var(--main-light) 93.96%);
}
.step:nth-of-type(1) .step__number {
  background: var(--main-light);
}
.step:nth-of-type(1) .step__line {
  background: var(--main-light);
}
.step:nth-of-type(2) .step__border {
  background: linear-gradient(0deg, var(--main) 0%, var(--main-middle) 93.96%);
}
.step:nth-of-type(2) .step__number {
  background: var(--main-middle);
}
.step:nth-of-type(2) .step__line {
  background: var(--main-middle);
}
.step:last-of-type .step__border {
  display: none;
}
.step:last-of-type .step__number {
  background: var(--main);
}
.step:last-of-type .step__line {
  background: var(--main);
}
.step__number {
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  color: var(--bg);
}
.step__heading {
  margin-bottom: 10px;
}

.reviews__section {
  overflow: hidden;
}
@media (min-width: 1440px) {
  .reviews__section__heading {
    max-width: 776px;
  }
}
.reviews__section .swiper-wrapper {
  display: flex;
  flex-direction: row;
}
@media (min-width: 1024px) {
  .reviews__section .swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 20px;
  }
}
.reviews-swiper__pagination {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 35px;
}
.reviews-swiper__pagination .swiper-pagination-bullet {
  display: flex;
  align-items: center;
  width: 7px;
  opacity: 0.5;
  height: 7px;
  background-color: var(--main-middle) !important;
  border-radius: 100px;
  transition: background-color 0.25s ease, width 0.3s ease-out;
}
.reviews-swiper__pagination .swiper-pagination-bullet-active {
  width: 37px;
  opacity: 1;
  background-color: var(--main-middle) !important;
}

.review {
  padding: 35px 35px 40px;
  background: var(--main);
  border-radius: 30px;
  color: var(--text);
  width: 315px;
  flex-shrink: 0;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .review {
    opacity: 1;
  }
}
@media (min-width: 1024px) {
  .review {
    width: auto;
    height: 100%;
    background: var(--main-horizontal-gradient);
  }
}
.review.swiper-slide-active {
  opacity: 1;
}
.review__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.review__name {
  font-weight: 700;
}
.review svg path {
  fill: var(--accent);
}

.countdown {
  background: var(--bg);
  width: 100%;
  padding: 30px 40px 50px;
  font-weight: 500;
  font-size: 80px;
  line-height: 95px;
  border-radius: 30px;
  color: var(--accent-light);
}
@media (min-width: 768px) {
  .countdown {
    width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1024px) {
  .countdown {
    margin: 0;
    flex-grow: 1;
  }
}
.countdown__divider {
  margin: 0 13px;
}
.countdown__minutes {
  color: var(--accent);
}
.countdown__progress-bar {
  height: 100%;
  width: 100%;
  background: var(--accent-gradient);
  border-radius: 8px;
  transition: 3s all;
}
.countdown__progress-bar__bg {
  height: 15px;
  width: 100%;
  background: var(--accent-light);
  border-radius: 8px;
  margin-top: 20px;
  overflow: hidden;
}
.countdown__section {
  background: var(--main);
}
@media (min-width: 768px) {
  .countdown__section {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .countdown__section {
    text-align: left;
  }
}
.countdown__section .container {
  overflow: visible;
}
@media (min-width: 1024px) {
  .countdown__section .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 200px;
  }
}
@media (min-width: 1024px) {
  .countdown__section__col {
    width: 393px;
  }
}
.countdown__section__heading {
  color: var(--bg);
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .countdown__section__heading {
    margin-bottom: 40px;
  }
}
.countdown__section__btn {
  background: var(--accent);
}
.countdown__section__btn:hover {
  background: var(--accent-gradient);
}
.countdown__section__btn:active {
  background: var(--accent-middle);
}
@media (min-width: 1280px) {
  .countdown__section__btn {
    margin: 0;
  }
}
.countdown__section__btn--top {
  display: none;
}
@media (min-width: 1024px) {
  .countdown__section__btn--top {
    display: block;
  }
}
.countdown__section__btn--bottom {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .countdown__section__btn--bottom {
    display: none;
  }
}

.last-cta__section {
  background-color: var(--bg);
  background-image: url("/presets/2/last-cta-bg-m.webp");
  background-position: right bottom;
  background-repeat: no-repeat;
  padding: 50px 0 40px;
}
@media (min-width: 1280px) {
  .last-cta__section {
    background-image: url("/presets/2/last-cta-bg-d.webp");
  }
}
@media (min-width: 1024px) {
  .last-cta__section {
    padding: 80px 0;
  }
}
.last-cta__heading {
  color: var(--text);
  width: 186px;
}
@media (min-width: 768px) {
  .last-cta__heading {
    width: 80%;
  }
}
@media (min-width: 1024px) {
  .last-cta__heading {
    width: 726px;
  }
}

.footer {
  padding-top: 22px;
  padding-bottom: 33px;
  color: var(--bg-middle);
  background: var(--bg-light);
}
@media (min-width: 1280px) {
  .footer .container {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.footer__links-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bg-middle);
  margin-bottom: 20px;
}
@media (min-width: 1280px) {
  .footer__links-container {
    flex-direction: column;
    padding: 18px 0 40px;
  }
}
.footer__links-column {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px;
}
@media (min-width: 1280px) {
  .footer__links-column {
    flex-direction: row;
    gap: 25px;
    flex-grow: 1;
  }
}
.footer__links-column--left {
  width: 50%;
  border-right: 1px solid var(--grey-lines-color);
}
@media (min-width: 1280px) {
  .footer__links-column--left {
    width: auto;
  }
}
.footer__links-column--right {
  width: 50%;
}
@media (min-width: 1280px) {
  .footer__links-column--right {
    width: auto;
    border-right: 1px solid var(--grey-lines-color);
  }
}
.footer__link {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  color: var(--main);
  max-width: 144px;
}
@media (min-width: 1280px) {
  .footer__link {
    white-space: nowrap;
    max-width: unset;
  }
}
@media (min-width: 1280px) {
  .footer__text__container {
    padding-left: 0;
    padding-top: 40px;
  }
}
.footer__text__heading {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 5px;
}
.footer__text__paragraph {
  margin-bottom: 15px;
}
.footer__legals {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--text);
  font-weight: 500;
  margin-top: 32px;
  padding-bottom: 44px;
}
.footer__address {
  display: inline;
}
.footer__copyright {
  display: inline;
}

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 23px;
  background: var(--bg);
  z-index: 9;
}
@media (min-width: 1024px) {
  .cookie-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
  }
}
.cookie-bar__text {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 14px;
}
@media (min-width: 1024px) {
  .cookie-bar__text {
    margin: 0;
    font-size: 18px;
    line-height: 24px;
  }
}
.cookie-bar__link {
  color: var(--accent);
  text-decoration: none;
}
.cookie-bar .btn {
  width: 100%;
}
@media (min-width: 1024px) {
  .cookie-bar .btn {
    width: 253px;
    max-width: 253px;
  }
}

.modal {
  width: fit-content;
  position: absolute;
}
@media (min-width: 1280px) {
  .modal {
    left: 260px;
    top: 75px;
  }
}
.modal__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 10;
}
@media (max-width: 1279px) {
  .modal__overlay {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.modal--1 {
  background: var(--bg);
  border-radius: 20px;
  color: var(--bg-middle);
  width: 437px;
  max-width: 90%;
  padding: 243px 19px 37px;
}
@media (min-width: 1280px) {
  .modal--1 {
    border-radius: 10px;
    width: auto;
  }
}
.modal--1 .modal__pic {
  position: absolute;
  width: 335px;
  top: -88px;
  left: calc(50% - 167px);
}
@media (min-width: 1280px) {
  .modal--1 .modal__pic {
    width: 335px;
  }
}
.modal--1 .modal__text {
  width: 291px;
}
@media (min-width: 1280px) {
  .modal--1 .modal__text {
    width: 291px;
  }
}
@media (min-width: 1280px) {
  .modal--1.modal--right {
    padding: 18px 200px 22px 25px;
  }
  .modal--1.modal--right .modal__pic {
    top: -74px;
    right: -113px;
    left: unset;
  }
  .modal--1.modal--left {
    padding: 18px 33px 22px 200px;
  }
  .modal--1.modal--left .modal__pic {
    top: -74px;
    left: -130px;
  }
}
.modal--1 .modal__heading {
  color: var(--bg-middle);
}
.modal__triangle {
  display: none;
}
@media (min-width: 1280px) {
  .modal__triangle {
    display: block;
    position: absolute;
    top: -22px;
    left: 32px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 22px solid var(--white);
  }
}
.modal__heading {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 3px;
}
@media (min-width: 1280px) {
  .modal__heading {
    font-size: 22px;
    line-height: 33px;
  }
}
.modal__text {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 18px;
}
.modal__actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.modal__btn {
  padding: 10px 20px 12px;
  font-size: 14px;
  line-height: 20px;
  flex-grow: 1;
  min-width: auto;
}
@media (min-width: 1280px) {
  .modal__btn {
    padding: 16px 32px 18px;
    font-size: 18px;
    line-height: 26px;
    flex-grow: 0;
  }
}
.modal__btn--secondary {
  color: #A4A4A4;
  background: transparent !important;
  border: 1px solid #A4A4A4;
}