/* HEADER */

.header {
  background: var(--primary-dark, #32175a);
  position: relative;
  width: 100%;
  z-index: 999;
}

.header__text {
  color: var(--standarts-white, #fff);
  font-size: 32px!important;
  font-style: normal;
  font-weight: 600!important;
  line-height: 20px; /* 125% */
  letter-spacing: -0.48px;
}

.header__top {
  background: var(--primary-light, #8345dd);
  padding: 12px 0;
}

.header__top .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.header__top a,
.footer__link {
  text-decoration: underline;
  color: var(--standarts-white, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
  letter-spacing: -0.48px;
}

.footer__link {
  text-decoration: none;
}

.footer__links{
  display:flex;
  gap:16px;
}

.header__top-text {
  display: flex;
  flex-direction: row;
  gap: 8px;
  text-align: center;
}

.header__top-text p {
  color: var(--standarts-white, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
  letter-spacing: -0.48px;
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.header__mid {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.header__select {
  position: relative;
}

@media screen and (max-width: 1199px) {
  .header__select {
    display: none;
  }

  .header__mid {
    display: none;
  }
}

.header__select-title {
  color: var(--standarts-white, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
  letter-spacing: -0.8px;
  position: relative;
  cursor: pointer;
  margin-right: 20px;
}

.header__select-title.desk::after {
  content: url("../images/icon/chevron-down.svg");
  display: flex;
  position: absolute;
  right: -20px;
  top: 1px;
  transition: all 250ms ease;
}

.header__select-title.active::after {
  transform: rotate(-90deg);
  transition: all 250ms ease;
}

.header__list {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 260px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--primary-dark, #32175a);
  transition: all 250ms ease;
}

.header__list.active {
  opacity: 1;
  visibility: visible;
  transition: all 250ms ease;
}

.header__sub-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.header__item a,
.header__link {
  color: var(--standarts-white, #fff);

  /* navigation/link */
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
  letter-spacing: -0.8px;
}

.btn {
  border-radius: 16px;
  background: var(--primary-light, #8345dd);
  color: var(--standarts-white, #fff);
  font-family: Arial;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 120% */
  letter-spacing: -1px;
  padding: 16px 28px;
  text-align: center;
  transition: all 250ms ease;
}

.btn:hover {
  background: #32175a;
}

.btn:active {
  background: var(--primary-light, #8345dd);
}
.header__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 28px;
  background: #fff;
  color: var(--primary-dark, #32175a);

  /* navigation/button */
  font-family: Arial;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 120% */
  letter-spacing: -1px;
}
.header__button:hover {
  background: var(--primary-light, #8345dd);
}
.header__button:active {
  background: var(--standarts-white, #fff);
}
@media screen and (max-width: 991px) {
  .header__button {
    display: none;
  }
}

.header__button-mobile {
  display: none;
}

/* Language Selector Styles */
.header__lang,
.header__lang-mobile {
  color: var(--texts-black, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 125% */
  letter-spacing: -0.32px;
  position: relative;
  z-index: 100000;
}

.header__current-lang {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__current-lang svg {
  transition: transform 0.3s ease;
}

.header__lang.active .header__current-lang svg {
  transform: rotate(180deg);
}

.header__list-lang,
.header__list-lang-mobile {
  position: absolute;
  top: 25px;
  left: -24px;
  display: inline-flex;
  padding: 12px 24px !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  z-index: -1;
  border-radius: 0px 0px 16px 16px;
  background: var(--primary-dark, #32175a);
  box-shadow: 0px 24px 24px 0px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 250ms ease;
}

.header__list-lang a {
  text-decoration: none;
  color: #fff;
  transition: opacity 0.3s ease;
}

.header__list-lang a:hover {
  opacity: 0.8;
}

.header__item-lang {
  list-style: none;
}

.header__list-lang.active {
  opacity: 1;
  visibility: visible;
  transition: all 250ms ease;
  z-index: 99;
}

@media (max-width: 700px) {
  .header__list-lang {
    left: -12px;
    padding: 8px 12px !important;
    gap: 12px;
  }
}

/* Mobile menu language selector */
.header__mobile-menu .header__lang-mobile {
  margin-right: auto;
  margin-bottom: 32px;
}

.header__mobile-menu .header__list-lang {
  position: static;
  opacity: 1;
  visibility: visible;
  background: transparent;
  box-shadow: none;
  padding: 0 !important;
  margin-top: 10px;
  display: none;
}

.header__mobile-menu .header__lang.active .header__list-lang {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header__mobile-menu .header__list-lang a {
  color: var(--texts-black, #28261b);
  padding: 8px 0;
  display: block;
  border-bottom: 1px solid #f0f0f0;
}

.header__mobile-menu .header__list-lang a:last-child {
  border-bottom: none;
}

.header__mobile-menu .header__list-lang a {
  color: var(--texts-black, #28261b);
  padding: 8px 0;
  display: block;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  text-decoration: none;
}

.header__mobile-menu .header__list-lang a:hover {
  background-color: #f8f8f8;
  padding-left: 10px;
  color: var(--primary-yellow, #fff);
  text-decoration: none;
}

.header__mobile-menu .header__current-lang {
  transition: all 0.3s ease;
  cursor: pointer;
}

.header__mobile-menu .header__current-lang:hover {
  opacity: 0.8;
  color: var(--primary-yellow, #fff);
}

.header__mobile-menu .header__current-lang svg path {
  transition: stroke 0.3s ease;
}

.header__mobile-menu .header__current-lang:hover svg path {
  stroke: var(--primary-yellow, #fff);
}

.header__mobile-menu .header__lang.active .header__current-lang svg {
  transform: rotate(180deg);
}

@media screen and (max-width: 1291px) {
  .header__button {
    display: none;
  }
  .header__mobile-menu.active .container {
    max-width: 300px;
    padding: 0;
  }
  .header__list {
    width: 300px;
    padding: 0 0 32px;
  }
  .header__button-mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 0;
  }
  .header__mobile-menu .header__list {
    gap: 32px;
    text-align: left;
    align-items: flex-start;
  }
  .header__list-lang-mobile {
    flex-direction: row;
    left: 50px;
    top: -12px;
  }
  .header__list-lang-mobile.active {
    flex-direction: row;
    opacity: 1;
    visibility: visible;
    transition: all 250ms ease;
    z-index: 99;
    left: 50px;
    top: -12px;
  }
  .header__item-lang a {
    color: #fff;
  }
}

.header__button-mobile span {
  height: 2px;
  width: 24px;
  background: #fff;
  transition: all 250ms ease;
}

.header__button-mobile.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
  transition: all 250ms ease;
}

.header__button-mobile.active span:nth-child(2) {
  width: 0px;
  transition: all 250ms ease;
}

.header__button-mobile.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
  transition: all 250ms ease;
}

/* HEADER MOBILE */

.header__mobile-menu {
  position: absolute;
  top: 115px;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary-dark, #32175a);
  transform: translateX(-100%);
  transition: all 250ms ease;
}

.menutop {
  top: 75px;
}

.header__mobile-menu.active {
  transform: translateX(0%);
  transition: all 250ms ease;
}

@media all and (min-width: 480px) {
  .header__mobile-menu.active .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.header__mobile-menu .header__select,
.header__mobile-menu .header__button {
  display: block;
  text-align: center;
}

.header__mobile-menu .header__button {
  width: 300px;
}

.header__mobile-menu .header__select-title {
  display: inline-flex;
}

.header__mobile-menu .header__list {
  position: relative;
  top: 0;
  left: 0;
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 480px) {
  .header__mobile-menu .header__list,
  .header__mobile-menu .header__button {
    width: 100%;
  }

  .header__mobile-menu .header__button {
    text-align: center;
  }
}

/**************TEXT**************/

h1 {
  color: var(--standarts-white, #fff);

  /* headers/header - 1 */
  font-family: Arial;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 74px; /* 115.625% */
  letter-spacing: -3.2px;
}

h2 {
  color: var(--standarts-black, #242424);
  text-align: center;

  /* headers/header - 2 */
  font-family: Arial;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px; /* 93.333% */
  letter-spacing: -3px;
}

h3 {
  color: var(--standarts-black, #242424);
  text-align: center;

  /* headers/header - 3 */
  font-family: Arial;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px; /* 125% */
  letter-spacing: -1.6px;
}

h4 {
  color: var(--standarts-black, #242424);

  /* headers/header - 4 */
  font-family: Arial;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 133.333% */
  letter-spacing: -1.2px;
}

h5 {
  color: var(--standarts-black, #242424);
  text-align: center;

  /* paragraphs/p - large (regular) */
  font-family: Arial;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 136.364% */
  letter-spacing: -0.66px;
}

h2 + h5 {
  max-width: 794px;
  margin: 0 auto;
}

h6 {
  color: var(--texts-black, #28261b);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 144.444%;
  letter-spacing: -0.36px;
}

p {
  color: var(--standarts-gray, #8a8a8a);

  /* paragraphs/p - medium (regular) */
  font-family: Arial;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 144.444% */
  letter-spacing: -0.54px;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 40px;
    line-height: 48px;
  }

  h2 {
    font-size: 32px;
    line-height: 40px;
    text-align: left;
  }
  h2 br {
    display: none;
  }
  h3 {
    font-size: 24px;
    line-height: 32px;
  }

  h4 {
    font-size: 22px;
    line-height: 30px;
  }

  h5 {
    font-size: 20px;
    line-height: 28px;
    text-align: left;
  }

  h6 {
    font-size: 18px;
  }

  p {
    font-size: 18px;
  }
}

/**************TEXT**************/

/* kaningem */

.kaningem {
  padding: 100px 0 100px;
  background: url(../images/bl1_bg.webp) no-repeat center center;
  background-size: cover;
}

@media screen and (max-width: 991px) {
  .kaningem {
    padding-bottom: 0;
  }

  .kaningem .overlay {
    /* position: absolute;
    top: 67px;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), #828282); */
  }
}

@media screen and (max-width: 480px) {
  .kaningem {
    padding: 32px 0 0;
  }
}

.kaningem__content {
  display: flex;
  flex-direction: row;
  position: relative;
  z-index: 9;
}

.kaningem__left {
  max-width: 714px;
}

.kaningem__left .kaningem__info {
  gap: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 32px;
}

@media screen and (max-width: 991px) {
  .kaningem__content {
    flex-direction: column;
    align-items: center;
  }

  .kaningem__left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 991px) {
  .kaningem__info {
    order: 1;
  }
}

.kaningem__text {
  color: var(--standarts-white, #fff);

  /* paragraphs/p - large (regular) */
  font-family: Arial;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 136.364% */
  letter-spacing: -0.66px;
  width: 588px;
}

@media screen and (max-width: 480px) {
  .kaningem__text {
    font-size: 18px;
  }
}

.kaningem__presentation {
  position: absolute;
  right: -500px;
  bottom: -100px;
  width: 100%;
}

@media screen and (max-width: 991px) {
}

.kaningem__img {
  position: absolute;
  bottom: 0;
}
.kaningem__img2 {
  position: absolute;
  bottom: -30px;
  left: 350px;
  z-index: -1;
}

@media screen and (max-width: 991px) {
  .kaningem .container {
    width: 100%;
  }

  .kaningem__img {
    width: 100%;
    height: auto;
  }
  .kaningem__presentation,
  .kaningem__img {
    position: initial;
    width: 100%;
    max-width: 480px;
  }
  .kaningem__left .kaningem__info {
    margin: 0;
    gap: 24px;
  }
  .kaningem__form {
    position: relative;
    margin-top: 200px;
  }
  .kaningem__img2 {
    left: 75px;
    bottom: 100px;
  }
}

.kaningem__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 480px) {
  .kaningem__text {
    width: 100%;
  }
  .kaningem__img2 {
    bottom: 200px;
    left: 40px;
  }
  .kaningem__img2 img {
    width: 300px;
  }
  .header__mobile-menu {
    top: 125px;
    padding-top: 20px;
  }
}

/* FORM */

.kaningem__form {
  grid-area: 1 / 2 / 3 / 3;
}

@media screen and (max-width: 991px) {
  .kaningem__form {
    grid-area: 2 / 1 / 3 / 2;
    order: 2;
  }
}

.form-container {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--standarts-stroke, #d5d5d5);
  background: var(--standarts-white, #fff);
  max-width: 486px;
}

.form-container.last {
  max-width: 589px;
}

.form__promo {
  border: 1px solid var(--Red, #ff0024);
  background: var(--Red, #ff0024);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.form__end-promo br {
  display: none;
}

.form__start-promo,
.form__end-promo {
  color: var(--White, #fff);
  text-align: center;

  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.form__start-promo span,
.form__end-promo span {
  border-radius: 4px;
  padding: 4px;
  background: #fff;
  display: inline-flex;
  margin: 0 6px;
  justify-content: center;
  align-items: center;

  color: var(--Red, #ff0024);
  text-align: center;

  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media screen and (max-width: 480px) {
  .form__end-promo br {
    display: block;
  }

  .form__end-promo span {
    margin-top: 6px;
  }
}

.form__box {
  padding: 24px;
  position: relative;
}

.form__price {
  border-radius: 16px;
  border: 1.5px dashed var(--standarts-red, #f42f29);
  background: var(--standarts-red-light, rgba(244, 47, 41, 0.1));
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: var(--standarts-red, #f42f29);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 18px;
}

.form__old-price {
  color: var(--Black, #235500);
  text-align: center;

  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.form__old-price span {
  color: var(--Red, #ff0024);
  text-align: center;

  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: line-through;
  display: inline-block;
  margin-left: 12px;
}

.form__new-price {
  color: var(--Black, #235500);
  text-align: center;

  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.form__new-price span {
  color: var(--Red, #ff0024);
  text-align: center;

  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: inline-block;
  margin-left: 12px;
}

@media screen and (max-width: 480px) {
  .form__new-price,
  .form__new-price span {
    font-size: 22px;
  }
}

.form__title {
  margin-bottom: 18px;
  color: var(--standarts-black, #242424);
  text-align: center !important;

  /* headers/header - 3 */
  font-family: Arial;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px; /* 125% */
  letter-spacing: -1.6px;
}

@media screen and (max-width: 480px) {
  .form__title {
    font-size: 24px;
    line-height: 32px;
  }
}

.form__input-wrapper {
  position: relative;
  min-width: 100%;
  margin-bottom: 18px;
}

.form__input-wrapper input {
  width: 100%;
  height: 46px;
  padding: 12px 11px;
}

.form__input-wrapper input::placeholder {
  color: #757575;

  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
}

.form__btn {
  width: 100%;
}

.form__footer {
  border: 1px solid var(--Red, #ff0024);
  background: var(--Red, #ff0024);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
}

.form__top {
  color: var(--White, #fff);
  text-align: center;

  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.form__bottom {
  border-radius: 4px;
  background: #fff;
  display: flex;
  padding: 2px 4px;
  justify-content: center;
  align-items: center;
  gap: 10px;

  color: var(--Red, #ff0024);
  text-align: center;

  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.last__last--name {
  display: none;
}

.input__email {
  display: none;
}

.form__btn {
  margin-bottom: 10px;
}

/**************SECTION**************/

.section__container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section__container > p {
  text-align: center;
}

.section__top-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 580px) {
  .section__container {
    gap: 24px;
  }

  .section__top-container {
    gap: 16px;
    text-align: left;
    align-items: flex-start;
  }
}

.section__bot-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  width: 100%;
}

/**************SECTION**************/

/**************PAIN**************/

.pain {
  padding: 100px 0 100px 0;
}

.pain__items-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.pain__item {
  display: flex;
  width: 384px;
  padding: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 48px;
  flex-shrink: 0;
  border-radius: 16px;
  background: var(--standarts-white, #fff);
  box-shadow: 0 48px 48px -24px rgba(128, 127, 116, 0.08), 0 24px 24px -12px rgba(128, 127, 116, 0.04),
    0 12px 12px -6px rgba(128, 127, 116, 0.04), 0 6px 6px -3px rgba(76, 75, 70, 0.04),
    0 3px 3px -1.5px rgba(76, 75, 70, 0.04), 0 1px 1px -0.5px rgba(76, 75, 71, 0.04),
    0 2px 0 1px rgba(128, 127, 116, 0.04);
}

.pain__item h4 {
  margin-bottom: 16px;
}
.pain__item.last {
  padding: 0;
}
.pain__item.last .pain__item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

@media screen and (max-width: 880px) {
  .pain {
    padding: 32px 0;
  }

  .pain__items-container {
    gap: 16px;
  }

  .pain__item {
    max-width: 340px;
    padding: 16px;
    gap: 16px;
    width: 100%;
  }

  .pain__item.last {
    display: flex;
    align-items: center;
    padding-left: 0px;
  }

  .pain__item h4 {
    margin-bottom: 8px;
  }
}

/**************PAIN**************/

/**************WHO**************/

.who {
  padding: 100px 0 50px 0;
  border-radius: 16px 16px 0 0;
  background: var(--primary-dark, #32175a);
  width: calc(100% - 40px);
  margin: 0 auto;
}
.who * {
  color: var(--standarts-white, #fff);
}

.who__items-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.who__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0px;
  flex-shrink: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.who__item.wide {
  width: 588px;
}

.who__item-image {
  border-radius: 16px 16px 0 0;
  width: 100%;
}

.who__item-bot {
  padding: 24px;
}

.who__item h4 {
  margin-bottom: 16px;
}

@media screen and (max-width: 880px) {
  .who {
    width: 100%;
    padding: 32px 0 0;
  }

  .who__items-container {
    gap: 16px;
  }

  .who__item {
    padding: 0px;
    width: 100%;
  }

  .who__item.wide {
    width: 100%;
  }

  .who__item h4 {
    margin-bottom: 8px;
  }

  .who__item-bot {
    padding: 16px;
  }
}
@media screen and (max-width: 680px) {
  .who__items-container {
    grid-template-columns: 1fr;
  }
}
/**************WHO**************/

/**************WHY**************/

.why {
  padding: 50px 0 100px 0;
  border-radius: 0 0 16px 16px;
  background: var(--primary-dark, #32175a);
  width: calc(100% - 40px);
  margin: -1px auto;
}
.why * {
  color: var(--standarts-white, #fff);
}
.why__items-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.why__item {
  display: flex;
  width: 384px;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  flex-shrink: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  padding: 24px;
}

.why__item-image {
  border-radius: 8px;
}

.why__item-bigimage {
  border-radius: 8px;
  width: 100%;
}

.why__item h4 {
  margin-bottom: 16px;
}

@media screen and (max-width: 880px) {
  .why {
    padding: 32px 0;
    width: 100%;
  }

  .why__items-container {
    gap: 16px;
  }

  .why__item {
    max-width: 340px;
    padding: 16px;
    gap: 16px;
    width: 100%;
  }

  .why__item h4 {
    margin-bottom: 8px;
  }
}

/**************WHY**************/

/**************UNIQUE**************/

.unique {
  padding: 100px 0 50px 0;
}

.unique__mid-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.unique__mid-text-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 588px;
}

.unique__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.unique__item-icon {
  width: 26px;
  height: 26px;
}

.unique__text-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.unique__text-item-top {
  display: flex;
  gap: 8px;
}

.unique__text-item p {
  padding-left: 32px;
}

.unique__item {
  display: flex;
  width: 384px;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #f4f2e8;
  padding: 24px;
}

.unique__item-image {
  width: 588px;
}

.unique h3 {
  margin: 0 auto;
}

.unique__bot-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.unique__bot-item {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 48px 48px -24px rgba(128, 127, 116, 0.08), 0 24px 24px -12px rgba(128, 127, 116, 0.04),
    0 12px 12px -6px rgba(128, 127, 116, 0.04), 0 6px 6px -3px rgba(76, 75, 70, 0.04),
    0 3px 3px -1.5px rgba(76, 75, 70, 0.04), 0 1px 1px -0.5px rgba(76, 75, 71, 0.04),
    0 2px 0 1px rgba(128, 127, 116, 0.04);
}

.unique__bot-item p {
  padding: 24px;
}

.unique__bot-image {
}
@media screen and (max-width: 1330px) {
  .unique__mid-container {
    align-items: center;
    justify-content: center;
  }

  .unique__text-item p {
    padding-left: 0px;
  }

  .unique__bot-container {
  }
}

@media screen and (max-width: 580px) {
  .unique {
    padding: 32px 0 0;
  }

  .unique__bot-item {
    width: 100%;
  }
  .unique__bot-item p {
    padding: 16px;
  }
  .unique__bot-item h4 {
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 600px) {
  .unique__item-image {
    width: 100%;
  }
}

/**************UNIQUE**************/

/**************CHOOSE**************/

.choose {
  padding: 50px 0 50px 0;
}

@media screen and (max-width: 480px) {
  .choose {
    padding: 24px 0;
  }
}

.choose__mid-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.choose__mid-text-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 588px;
}

.choose__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.choose__item-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.choose__item-icon {
  width: 26px;
  height: 26px;
}

.choose__text-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.choose__text-item-top {
  display: flex;
  gap: 8px;
}

.choose__text-item p {
  padding-left: 32px;
}

.choose__item {
  display: flex;
  width: 384px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
  border-radius: 16px;
  background: var(--standarts-white, #fff);
  box-shadow: 0 48px 48px -24px rgba(128, 127, 116, 0.08), 0 24px 24px -12px rgba(128, 127, 116, 0.04),
    0 12px 12px -6px rgba(128, 127, 116, 0.04), 0 6px 6px -3px rgba(76, 75, 70, 0.04),
    0 3px 3px -1.5px rgba(76, 75, 70, 0.04), 0 1px 1px -0.5px rgba(76, 75, 71, 0.04),
    0 2px 0 1px rgba(128, 127, 116, 0.04);
  padding: 24px;
}

.choose__item-image {
  width: 588px;
}

.choose h3 {
  margin: 0 auto;
}

.choose__bot-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.choose__bot-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  width: 384px;
}

.choose__bot-image {
  width: 100px;
  height: 100px;
}

@media screen and (max-width: 1330px) {
  .choose__mid-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .choose__item {
    width: 100%;
  }
}

@media screen and (max-width: 580px) {
  .choose {
    padding: 32px 0 0;
  }

  .choose__item-container {
    gap: 16px;
    order: 1;
  }

  .choose__item {
    padding: 16px;
    gap: 8px;
  }

  .choose__bot-item {
    padding: 16px;
    width: 100%;
  }

  .choose__bot-item h4 {
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 400px) {
  .choose__image {
    width: 100%;
  }
}

/**************CHOOSE**************/

/**************USE**************/

.use {
  padding: 50px 0 50px 0;
}

.use__image {
  width: 384px;
}

.use__mid-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.use__item-container {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.use__item {
  position: relative;
  width: 384px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 48px 48px -24px rgba(128, 127, 116, 0.08), 0 24px 24px -12px rgba(128, 127, 116, 0.04),
    0 12px 12px -6px rgba(128, 127, 116, 0.04), 0 6px 6px -3px rgba(76, 75, 70, 0.04),
    0 3px 3px -1.5px rgba(76, 75, 70, 0.04), 0 1px 1px -0.5px rgba(76, 75, 71, 0.04),
    0 2px 0 1px rgba(128, 127, 116, 0.04);
}
.use__item::after {
  content: "1";
  background: #fff;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--standarts-black, #242424);
  text-align: center;

  /* headers/header - 5 */
  font-family: Arial;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 100% */
  letter-spacing: -1px;
  position: absolute;
  top: 24px;
  left: 24px;
}
.use__item:nth-child(2)::after {
  content: "2";
}
.use__item:nth-child(3)::after {
  content: "3";
}
.use__item-bot {
  padding: 24px;
}

.use h5 {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  color: var(--standarts-gray, #8a8a8a);
}

@media screen and (max-width: 1330px) {
  .use__mid-container {
    margin: 0 auto;
  }
  .use__item-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .choose__item {
    width: 100%;
  }
}

@media screen and (max-width: 780px) {
  .use {
    padding: 32px 0 0;
  }
  .unique__bot-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .use__item-container {
    gap: 16px;
  }
  .unique__item-image {
    max-width: 400px;
    margin: -24px 0;
  }
  .use__item {
    max-width: 340px;
    width: 100%;
  }

  .use__image {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .unique__bot-container {
    grid-template-columns: 1fr;
  }
  .use h5 {
    text-align: left;
  }
}

/**************USE**************/

/**************JOIN**************/

.join {
  padding: 50px 0 50px 0;
  background: #fffefa;
}

@media screen and (max-width: 480px) {
  .join {
    padding: 24px 0;
  }
}

.join__image {
  width: 314px;
}

.join__image.second {
  width: 414px;
}

.join__mid-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.join__item-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.join__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding: 24px;
  width: 588px;
  border-radius: 16px;
  border: 1.5px dashed var(--primary-yellow, #ffd700);
  background: var(--primary-yellow-light, rgba(255, 180, 0, 0.1));
}

.join__item::after {
  content: " ";
  background-image: url(../images/bl8_img3.webp);
  position: absolute;
  right: 24px;
  bottom: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  width: 90px;
  height: 90px;
  z-index: 99;
}

.join__item-bot {
  padding: 24px;
}

.join h5 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 1330px) {
  .join__mid-container {
    margin: 0 auto;
  }
  .join__item-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 620px) {
  .join {
    padding: 32px 0 0;
  }

  .join__item-container {
    gap: 16px;
    width: 100%;
  }

  .join__mid-container {
    width: 100%;
  }

  .join__item {
    width: 100%;
    padding: 16px;
  }

  .join__item::after {
    right: 16px;
    bottom: 16px;
  }
  .join__image {
    padding: 0 25px;
    width: 100%;
  }

  .join__image.second {
    padding: 0 25px;
    width: 100%;
  }

  .join h5 {
    text-align: start;
  }
}

@media screen and (max-width: 450px) {
  .join__image {
    padding: 0 20px;
  }

  .join__image.second {
    padding: 0 10px;
  }
}

/**************JOIN**************/

/**************PRICE**************/

.price {
  padding: 50px 0 50px 0;
}

.price__image {
  width: 588px;
}

.price__mid-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.price__item-container {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.price__item {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 16px;
  align-items: start;
  width: 588px;
}

@media screen and (max-width: 1190px) {
  .price__mid-container {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .price__button {
    width: 100%;
  }
}

@media screen and (max-width: 620px) {
  .price {
    padding: 32px 0 0;
  }

  .price__button {
    width: 100%;
    text-align: center;
  }

  .price__mid-container {
    width: 100%;
    gap: 16px;
  }

  .price__item {
    width: 100%;
  }
  .price__image {
    width: 100%;
  }

  .price h5 {
    text-align: start;
  }
}

@media screen and (max-width: 450px) {
  .price__image {
    padding: 0 20px;
  }

  .price__image.second {
    padding: 0 10px;
  }
}

/**************PRICE**************/

/**************SOLUTION**************/

.solution {
  padding: 50px 0 50px 0;
}

.solution__image {
  width: 384px;
  border-radius: 16px 16px 0 0;
}

.solution__mid-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.solution__item-container {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.solution__item {
  width: 384px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 48px 48px -24px rgba(128, 127, 116, 0.08), 0 24px 24px -12px rgba(128, 127, 116, 0.04),
    0 12px 12px -6px rgba(128, 127, 116, 0.04), 0 6px 6px -3px rgba(76, 75, 70, 0.04),
    0 3px 3px -1.5px rgba(76, 75, 70, 0.04), 0 1px 1px -0.5px rgba(76, 75, 71, 0.04),
    0 2px 0 1px rgba(128, 127, 116, 0.04);
}

.solution__item-bot {
  padding: 24px;
}

.solution h5 {
  max-width: 1200px;
}

.solution__bot-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.solution__bot-item {
  display: flex;
  flex-direction: row;
  border-radius: 16px;
}

.solution__bot-image {
  width: 384px;
  border-radius: 16px 0px 0px 16px;
}

.solution__bot-text {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 0px 16px 16px 0px;
}

.solution__bot-text h5 {
  color: var(--texts-light, #7e7c74);
  text-align: left;
}

@media screen and (max-width: 1190px) {
  .solution__mid-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .solution__item-container {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  .solution__bot-item {
    flex-direction: column;
  }

  .solution__bot-image {
    width: 100%;
    border-radius: 16px 16px 0px 0px;
  }

  .solution__bot-text {
    border-radius: 0px 0px 16px 16px;
    justify-content: center;
    align-items: start;

    gap: 16px;
  }
  .solution__item {
    max-width: 340px;
  }
  .solution__image {
    width: 100%;
  }
}

@media screen and (max-width: 620px) {
  .solution {
    padding: 32px 0 0;
  }

  .solution__mid-container {
    width: 100%;
    gap: 16px;
  }

  .solution__item-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 16px;
  }

  .solution__item-bot {
    padding: 16px;
  }

  .solution__item {
    width: 100%;
  }
  .solution__image {
    width: 100%;
  }

  .solution h5 {
    text-align: start;
  }
}

/**************SOLUTION**************/

/**************REVIEW**************/

.review {
  padding: 50px 0 50px 0;
}

@media screen and (max-width: 480px) {
  .review {
    padding: 32px 0;
  }
}

/**************REVIEW**************/

/**************ORDER**************/

.order {
  padding: 100px 0;
  background: var(--backgrounds-light, #f2f0ed);
}

.order h5 {
  color: var(--standarts-gray, #8a8a8a);
}

@media screen and (max-width: 480px) {
  .order {
    padding: 32px 0;
  }

  h3.order-h3 {
    font-size: 32px;
  }
}

.order__image {
  width: 384px;
  border-radius: 16px 16px 0 0;
}

.order__image.border {
  border-top: 1px solid var(--standarts-stroke, #e5e5e1);
  border-right: 1px solid var(--standarts-stroke, #e5e5e1);
  border-left: 1px solid var(--standarts-stroke, #e5e5e1);
  background: var(--standarts-white, #fff);
}

.order__mid-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.order__item-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.order__item {
  width: 384px;
  border-radius: 16px;
  background: #fff;
}

.order__item-bot {
  padding: 24px;
}

.order h5 {
  text-align: center;
  max-width: 794px;
  margin: 0 auto;
}

@media screen and (max-width: 1190px) {
  .order__mid-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .order__item-container {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
}

@media screen and (max-width: 820px) {
  .order {
    padding: 32px 0 32px;
  }

  .order__mid-container {
    width: 100%;
    gap: 16px;
  }

  .order__item {
    max-width: 340px;
  }
  .order__item-container {
    justify-content: center;
    width: 100%;
    gap: 16px;
  }

  .order__item-bot {
    padding: 16px;
  }

  .order__item {
    width: 100%;
  }
  .order__image {
    width: 100%;
  }

  .order h5 {
    text-align: start;
  }
}

/**************ORDER**************/

/**************FAQ**************/

.faq {
  padding: 100px 0;
  position: relative;
}

.faq__top-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  text-align: center;
}

.faq__items-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 790px;
  margin-inline: auto;
}

.faq__item {
  cursor: pointer;
  border-radius: 16px;
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: 0.3s ease;
  border-radius: 16px;
}

.faq__item .medium {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
  letter-spacing: -0.48px;
}

.faq__item .small {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 144.444% */
  letter-spacing: -0.36px;
}

.faq__item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq__item-arrow {
  width: 27px;
  height: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #000e2f;
  flex-shrink: 0;
}

.faq__item-arrow:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background: #000e2f;
}

.faq__item-arrow:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 12px;
  background: #000e2f;
  transition: all 0.3s ease-in-out;
}

.faq__item.active .faq__item-arrow:after {
  transform: rotate(90deg);
}

@media screen and (max-width: 620px) {
  .faq {
    padding: 32px 0 16px;
  }

  .faq__top-container {
    text-align: start;
    gap: 16px;
  }

  .faq__item {
    padding: 16px;
  }

  .faq__items-container {
    gap: 16px;
  }

  .faq h4 {
    font-size: 24px;
  }

  .faq h5 {
    text-align: start;
  }
}

/**************FAQ**************/

/**************COMMENTS**************/

.comments {
  padding: 100px 0;
  background-image: url("../images/bl11_bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 980px) {
  .comments {
    background-image: url("../images/bl11_bg-mob.webp");
  }
}

@media screen and (max-width: 480px) {
  .comments {
    padding: 60px 0;
  }
}

.comments__content {
  position: relative;
}

.comments__title {
  color: var(--White, #fff);
  text-align: center;

  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 60px */
  margin-bottom: 48px;
}

@media screen and (max-width: 480px) {
  .comments__title {
    font-size: 32px;
  }
}

.comments__swiper {
  overflow: visible;
  margin-top: 48px;
}

@media screen and (max-width: 991px) {
  .comments__swiper {
    overflow: hidden;
    margin-top: 24px;
  }
}

.comments__swiper-wrapper {
  padding-bottom: 80px;
}

.comments__swiper-slide {
  border-radius: 16px;
  background: var(--standarts-white, #fff);
  box-shadow: 0 48px 48px -24px rgba(128, 127, 116, 0.08), 0 24px 24px -12px rgba(128, 127, 116, 0.04),
    0 12px 12px -6px rgba(128, 127, 116, 0.04), 0 6px 6px -3px rgba(76, 75, 70, 0.04),
    0 3px 3px -1.5px rgba(76, 75, 70, 0.04), 0 1px 1px -0.5px rgba(76, 75, 71, 0.04),
    0 2px 0 1px rgba(128, 127, 116, 0.04);
  min-height: 100% !important;
  display: flex;
  padding: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  min-height: 100% !important;
}

.comments__swiper-slide {
  opacity: 0.4;
}

.comments__swiper-slide.swiper-slide-next {
  opacity: 1;
}

.comments__swiper-slide.swiper-slide-active {
  opacity: 1;
}

.comments__info {
}

.comments__info-title {
  color: var(--texts-black, #28261b);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 133%;
  letter-spacing: -0.48px;
}

@media screen and (max-width: 480px) {
  .comments__info-title {
    font-size: 22px;
  }
}

.comments__text {
  color: var(--texts-light, #7e7c74);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 144%;
  flex: 1 0 auto;
}

@media screen and (max-width: 480px) {
  .comments__text {
    font-size: 16px;
  }
}

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

.comments__icon {
  border-radius: 50%;
  border: 1px solid #fff;
  overflow: hidden;
  flex: 1 0 48px;
  height: 48px;
}

.comments__about-person {
  color: var(--texts-light, #7e7c74);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 144%;
}

@media screen and (max-width: 480px) {
  .comments__about-person {
    font-size: 16px;
  }
}

.comments__about-person span {
  font-weight: 700;
}

.comments__swiper-button-next::after,
.comments__swiper-button-prev::after {
  display: none;
}

.comments__swiper-button-next,
.comments__swiper-button-prev {
  position: absolute;
  bottom: 0px;
  right: 0px;
  top: auto;
  left: auto;
  width: 48px;
  height: 48px;
}

.comments__swiper-button-prev img,
.comments__swiper-button-next img {
  width: 48px;
}

.comments__swiper-button-next {
  transform: rotate(180deg);
  right: 45%;
}
.comments__swiper-button-prev {
  left: 45%;
}

@media screen and (max-width: 1199px) {
  .comments__swiper-button-next {
    right: 40%;
  }
  .comments__swiper-button-prev {
    left: 40%;
  }
}

@media screen and (max-width: 600px) {
  .comments__swiper-button-next {
    right: 35%;
  }
  .comments__swiper-button-prev {
    left: 35%;
  }
}

@media screen and (max-width: 400px) {
  .comments__swiper-button-next {
    right: 33%;
  }
  .comments__swiper-button-prev {
    left: 33%;
  }
}

.comments__swiper-button-next::before,
.comments__swiper-button-prev::before {
  /* content: url('../images/icon/arrow-white.svg');
	display: flex;
	width: 48px;
	height: 48px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); */
}

.comments__swiper-pagination {
  display: inline-flex !important;
  width: auto !important;
  top: auto !important;
  bottom: 20px !important;
  left: 0 !important;
  right: auto !important;
  position: absolute;
}

.comments__swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}

.comments__swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

/**************COMMENTS**************/

/**************finish**************/

.finish {
  padding: 100px 0 100px;
  background-image: url("../images/bl13_bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.finish .section__container {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  z-index: 10;
}
.finish__img {
  position: absolute;
  right: 0;
  bottom: 0;
}
.finish__image {
  position: absolute;
  right: -200px;
  bottom: -100px;
  z-index: 0;
}

.finish__image2 {
  position: absolute;
  right: 375px;
  bottom: -50px;
}

.finish-container {
  width: 589px;
}
.finish h2 {
  text-align: left;
  margin-bottom: 16px;
}
.finish h5 {
  text-align: left;
}

@media screen and (max-width: 1291px) {
  .finish__image2 {
    right: 125px;
  }
}

/* .finish .overlay {
    position: absolute;
    top: 220px;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(0deg, #828282 0%, rgba(130, 130, 130, 0) 100%);
  } */

.finish-container {
  width: 589px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.finish__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.finish__form {
  position: relative;
  z-index: 10;
  margin-top: 16px;
}

@media screen and (max-width: 991px) {
  .finish {
    padding-top: 16px;
    padding-bottom: 0;
    margin-bottom: -2px;
  }
  .finish .section__container {
    flex-direction: column;
    align-items: center;
  }
  .finish__img,
  .finish__image {
    position: initial;
    margin-bottom: -1.5px;
    width: 100%;
    max-width: 480px;
  }

  .finish__image2 {
    bottom: unset;
    right: 150px;
    top: 275px;
  }
  .finish__form {
    margin-top: 170px;
  }
}
@media screen and (max-width: 600px) {
  .finish-container {
    width: 100%;
  }
  .finish__image2 {
    bottom: unset;
    right: 0;
    top: 375px;
    width: 300px;
  }
}

/* .finish__info {
  flex: 0 1 690px;
  position: relative;
} */

@media screen and (max-width: 480px) {
  .finish__title {
    font-size: 32px;
  }
}
/**************finish**************/

/* footer */

.footer {
  padding: 32px 0;
  background: var(--primary-dark, #32175a);
}
.footer__policy {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .footer {
    padding: 18px 0;
  }

  .footer__policy {
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

.footer__policy p {
  color: var(--standarts-white, #fff);

  /* paragraphs/p - small (bold) */
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 125% */
  letter-spacing: -0.48px;
}

#currentYear {
  display: inline-block;
  margin-right: 5px;
}

.swiper-button-disabled {
  opacity: 1 !important;
}

.bold {
  font-weight: 700;
}

.colored {
  color: var(--primary-light, #8345dd);
}

.desk {
  display: block;
}

.mob {
  display: none;
}

@media screen and (max-width: 580px) {
  .desk {
    display: none;
  }

  .mob {
    display: block;
  }
}
