body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  background-color: #ffffff;
  overflow-x: hidden;
  color: #1F2229;
}

.button {
  position: relative;
  cursor: pointer;
  font-size: 16px;
  display: inline-block;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;
  color: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 2px 10px 0 rgba(255, 255, 255, 0.2);
  -webkit-transition: all 350ms ease;
  -moz-transition: all 350ms ease;
  -ms-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  transition: all 350ms ease;
}
.button.default {
  padding: 14px 45px;
  background-color: #8A7BFF;
}
.button.grad {
  padding: 14px 20px;
  background: linear-gradient(90deg, #5A4FAE 0%, #1C1C2C 100%);
}
.button.white {
  padding: 14px 85px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px 0 #8A7BFF;
  color: #1F2229;
}
.button:hover {
  opacity: 0.8;
}

.container {
  margin: 0 auto;
  width: 1270px;
  padding: 0 15px;
}

.container-small {
  margin: 0 auto;
  width: 1170px;
  padding: 0 15px;
}

.container-extra-small {
  margin: 0 auto;
  width: 1070px;
  padding: 0 15px;
}

.right {
  text-align: right;
}

a {
  transition: 0.35s;
}
a:hover {
  opacity: 0.8;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 4px 11.4px 0 rgba(0, 0, 0, 0.2509803922);
  background-color: #1F2229;
  z-index: 9999999;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
}
.header__logo img {
  width: 200px;
  height: auto;
}
.header__btn a {
  margin-left: 10px;
}
.header__btn a.desktop {
  display: inline-block;
}
.header__btn a.mobile {
  display: none;
}

.banner {
  margin-top: 102px;
  padding: 60px 0;
  background: linear-gradient(180deg, #1F2229 0%, #5A4FAE 307.3%);
}
.banner__wrapper {
  display: flex;
  align-items: center;
}
.banner__info {
  width: 50%;
  color: #ffffff;
}
.banner__info--title {
  width: 300px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 40px;
  line-height: 130%;
  letter-spacing: 0;
}
.banner__info--title span {
  color: #8A7BFF;
}
.banner__info--desc {
  padding-right: 120px;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
}
.banner__info--desc span {
  color: #8A7BFF;
}
.banner__img {
  width: 50%;
}
.banner__img img {
  width: 100%;
  height: auto;
}

.swiper {
  display: flex;
  position: relative;
  background-color: #E3ECFF;
}
.swiper .swiper-container {
  width: 100%;
}
.swiper__thumbs {
  width: 50%;
}
.swiper__thumbs .swiper-slide {
  width: 100%;
}
.swiper__thumbs__item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 744px;
}
.swiper__info {
  width: 50%;
  overflow: hidden;
}
.swiper__info .swiper-container,
.swiper__info .swiper-slide {
  height: 100%;
}
.swiper__info__item {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 190px 80px 80px 130px;
}
.swiper__info__item--title {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 40px;
  line-height: 130%;
  letter-spacing: 0;
}
.swiper__info__item--title span {
  color: #8A7BFF;
}
.swiper__info__item--desc p {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
}
.swiper__info__item--desc p span {
  color: #8A7BFF;
}
.swiper .swiper-pagination {
  width: 440px;
  bottom: 120px;
  left: calc(50% + 130px);
}
.swiper .swiper-pagination .swiper-pagination-bullet {
  width: calc(33.3333333333% - 9px);
  height: 4px;
  border-radius: 0;
  background-color: #8A7BFF;
}
.swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1F2229;
}

.privacy {
  padding: 80px 0 120px 0;
}
.privacy__title {
  margin-bottom: 60px;
  font-weight: 500;
  font-size: 40px;
  line-height: 130%;
  letter-spacing: 0;
  text-align: center;
}
.privacy__title span {
  color: #5A4FAE;
}
.privacy__list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 18px; /* опційно: для відступів між блоками, замість -12px у width */
}

.privacy__list--item {
  width: calc(33.333% - 12px); /* або просто flex: 1, якщо gap використовується */
  display: flex;
}

.privacy__list--inner {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* 🔥 Притискає вміст до верху */
  text-align: left; /* або center, якщо потрібно */
}
.privacy__list--inner {
  min-height: 240px;
  padding: 40px 50px 54px 50px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2509803922);
  backdrop-filter: blur(5.5px);
  border-radius: 48px;
  overflow: hidden;
}
.privacy__list--title {
  font-family: Manrope;
  margin-bottom: 30px;
  color: #5A4FAE;
  font-weight: 500;
  font-size: 26px;
  line-height: 30px;
  letter-spacing: 0;
  text-align: center;
}
.privacy__list--desc {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
  text-align: center;
  color: #000000;
}

.stat {
  height: 780px;
  background: linear-gradient(180deg, #1F2229 0%, #3B3355 127.44%);
}
.stat__wrapper {
  position: relative;
}
.stat__title {
  padding-top: 68px;
  font-weight: 500;
  font-size: 40px;
  line-height: 130%;
  letter-spacing: 0;
  text-align: center;
  color: #ffffff;
}
.stat__title span {
  color: #5A4FAE;
}
.stat__info {
  margin-top: 50px;
  position: relative;
}
.stat__info img {
  height: auto;
}
.stat__main-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.stat__main-img img {
  width: 210px;
}
.stat__left-top-img {
  position: absolute;
  top: 90px;
  left: calc(50% - 200px);
  transform: translateX(-50%);
  z-index: 2;
}
.stat__left-top-img img {
  width: 200px;
}
.stat__right-top-img {
  position: absolute;
  top: 90px;
  left: calc(50% + 190px);
  transform: translateX(-50%);
  z-index: 2;
}
.stat__right-top-img img {
  width: 200px;
}
.stat__left-bottom-img {
  position: absolute;
  top: 250px;
  left: calc(50% - 170px);
  transform: translateX(-50%);
  z-index: 2;
}
.stat__left-bottom-img img {
  width: 140px;
}
.stat__right-bottom-img {
  position: absolute;
  top: 250px;
  left: calc(50% + 160px);
  transform: translateX(-50%);
  z-index: 2;
}
.stat__right-bottom-img img {
  width: 140px;
}
.stat__left-top-info {
  max-width: 230px;
  position: absolute;
  top: 55px;
  left: calc(50% - 430px);
  transform: translateX(-50%);
  z-index: 2;
}
.stat__right-top-info {
  max-width: 230px;
  position: absolute;
  top: 55px;
  left: calc(50% + 420px);
  transform: translateX(-50%);
  z-index: 2;
}
.stat__left-bottom-info {
  max-width: 230px;
  position: absolute;
  top: 300px;
  left: calc(50% - 370px);
  transform: translateX(-50%);
  z-index: 2;
}
.stat__right-bottom-info {
  max-width: 230px;
  position: absolute;
  top: 300px;
  left: calc(50% + 360px);
  transform: translateX(-50%);
  z-index: 2;
}
.stat__number {
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: 600;
  font-size: 60px;
  line-height: 130%;
  letter-spacing: 0;
}
.stat__text {
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 500;
  font-size: 26px;
  line-height: 30px;
  letter-spacing: 0;
}
.stat a {
  display: block;
  font-weight: 500;
  font-size: 15px;
  line-height: 130%;
  letter-spacing: 0;
  text-decoration: underline;
  color: #8A7BFF;
}

.removed {
  padding: 100px 0;
  background-color: #E3ECFF;
}
.removed__wrapper {
  display: flex;
}
.removed__info {
  width: 33%;
}
.removed__info--title {
  margin-bottom: 60px;
  padding-right: 100px;
  font-weight: 500;
  font-size: 40px;
  line-height: 130%;
  letter-spacing: 0;
}
.removed__info--title span {
  color: #5A4FAE;
}
.removed__info--subtitle {
  padding-right: 100px;
}
.removed__info--subtitle p {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
}
.removed__info--subtitle p span {
  color: #8A7BFF;
}
.removed__info--icon {
  width: 290px;
  height: auto;
  margin-top: 100px;
}
.removed__list {
  width: 67%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.removed__list--item {
  width: calc(50% - 10px);
  margin-bottom: 20px;
  border-radius: 20px;
  background-color: #ffffff;
  text-align: center;
}
.removed__list--inner {
  padding: 40px 35px;
}
.removed__list--icon {
  width: 105px;
  height: auto;
  /*margin-bottom: 20px;*/
}
.removed__list--title {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 29px;
  line-height: 130%;
  letter-spacing: 0;
  text-align: center;
  color: #5A4FAE;
}
.removed__list--manual {
  color: #7C7C7C;
  margin-bottom: 20px;
}
.removed__list--manual--title {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
}
.removed__list--manual--desc {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
}
.removed__list--manual--desc span {
  color: #8A7BFF;
}
.removed__list--service--title {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
}
.removed__list--service--desc {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
}
.removed__list--service--desc span {
  color: #8A7BFF;
}

.streamline {
  padding: 120px 0 100px 0;
  background: linear-gradient(180deg, #1F2229 0%, #3B3355 127.44%);
}
.streamline__title {
  max-width: 800px;
  margin-bottom: 80px;
  font-weight: 500;
  font-size: 40px;
  line-height: 130%;
  letter-spacing: 0;
  color: #ffffff;
}
.streamline__list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.streamline__list--curve {
  position: absolute;
  width: 465px;
  height: auto;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.streamline__list--item {
  position: relative;
  width: calc(50% - 42px);
  margin-bottom: 84px;
  border-radius: 48px;
  background-color: #D9D9D9;
  z-index: 2;
}
.streamline__list--item:nth-child(odd) {
  transform: translateY(100px);
}
.streamline__list--inner {
  padding: 15px 22px 50px 35px;
}
.streamline__list--top {
  display: flex;
  justify-content: space-between;
}
.streamline__list--icon {
  width: 130px;
  height: auto;
  margin-bottom: 20px;
}
.streamline__list--number {
  display: inline-block;
  font-weight: 500;
  font-size: 80px;
  line-height: 120%;
  letter-spacing: 0;
  color: #D9D9D9;
  text-shadow: 0 4px 5.9px #5A4FAE;
}
.streamline__list--title {
  margin-top: 10px;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 29px;
  line-height: 130%;
  letter-spacing: 0;
  color: #5A4FAE;
}
.streamline__list--desc {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
}

.track {
  position: relative;
  height: 710px;
}
.track__bg {
  position: absolute;
  right: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 50%;
  height: 100%;
  z-index: 2;
}
.track__img {
  position: absolute;
  left: calc(50% - 120px);
  top: 130px;
  width: 580px;
  height: auto;
  z-index: 3;
}
.track__wrapper {
  display: flex;
  align-items: center;
  height: 710px;
}
.track__info {
  width: 50%;
}
.track__title {
  max-width: 400px;
  margin-bottom: 60px;
  font-weight: 500;
  font-size: 40px;
  line-height: 130%;
  letter-spacing: 0;
}
.track__title span {
  color: #5A4FAE;
}
.track__desc {
  max-width: 400px;
}
.track__desc p {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
}
.track__desc p span {
  color: #8A7BFF;
}

.plan {
  padding: 120px 0;
  background-color: #E3ECFF;
}
.plan__wrapper {
  display: flex;
  justify-content: space-between;
}
.plan__list {
  width: calc(60% - 10px);
}
.plan__list__switcher {
  display: flex;
  justify-content: center;
}
.plan__list__switcher--inner {
  width: 240px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  background-color: #ffffff;
  border-radius: 30px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
.plan__list__switcher .switcher-item {
  padding: 5px 14px;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
  text-align: center;
  border-radius: 20px;
  background-color: transparent;
  cursor: pointer;
}
.plan__list__switcher .switcher-item.active {
  color: #ffffff;
  background-color: #8A7BFF;
}
.plan__list .premium,
.plan__list .standard {
  display: none;
}
.plan__list .premium.active,
.plan__list .standard.active {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
}
.plan__list__item {
  width: calc(50% - 12px);
}
.plan__list__item--inner {
  position: relative;
  padding: 30px 30px 20px 30px;
  background: linear-gradient(179.2deg, #FFFFFF 45.1%, #BBB2FF 89.04%, #8A7BFF 101.25%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 17px;
  text-align: center;
}
.plan__list__item.best .plan__list__item--inner {
  border-radius: 0;
  border-bottom-right-radius: 17px;
  border-bottom-left-radius: 17px;
}
.plan__list__item--best {
  top: -40px;
  left: 0;
  width: 100%;
  position: absolute;
  padding: 8px 0;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0;
  color: #ffffff;
  text-transform: uppercase;
  border-top-right-radius: 17px;
  border-top-left-radius: 17px;
  background: linear-gradient(90deg, #8A7BFF 0%, #635AA1 100%);
}
.plan__list__item--title {
  margin-bottom: 33px;
  font-weight: 500;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0;
  text-align: center;
}
.plan__list__item--price-month {
  display: inline-block;
  position: relative;
  color: #5A4FAE;
}
.plan__list__item--price-month .currency {
  position: absolute;
  top: -5px;
  left: -20px;
  font-size: 25px;
}
.plan__list__item--price-month .amount {
  font-size: 62px;
  font-weight: bold;
  line-height: 1;
}
.plan__list__item--price-month .decimal {
  position: absolute;
  top: -5px;
  left: 100%;
  font-size: 25px;
}
.plan__list__item--price-month .period {
  position: absolute;
  bottom: 0;
  left: 100%;
  margin-left: 4px;
  font-size: 16px;
}
.plan__list__item--price-all {
  margin: 20px 0 8px 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 21px;
  text-align: center;
}
.plan__list__item--price-all span {
  margin-right: 5px;
  text-decoration: line-through;
  color: #B5B5B5;
}
.plan__list__item--text {
  margin-bottom: 34px;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: #5A4FAE;
}
.plan__list__item--list--item {
  text-align: left;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
}
.plan__list__item--list--item i {
  margin-right: 10px;
}
.plan__list__item--check input[type=radio] {
  position: absolute;
  opacity: 0;
}
.plan__list__item--check input[type=radio] + .radio-label:before {
  content: "";
  background: transparent;
  border-radius: 100%;
  border: 1px solid #ffffff;
  display: inline-block;
  width: 22px;
  height: 22px;
  position: relative;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.plan__list__item--check input[type=radio]:checked + .radio-label:before {
  background-color: #3B3355;
  box-shadow: inset 0 0 0 5px #ffffff;
}
.plan__list__item--check input[type=radio]:focus + .radio-label:before {
  outline: none;
}
.plan__list__item--check input[type=radio]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 5px #ffffff;
  border-color: #ffffff;
  background: #ffffff;
}
.plan__info {
  margin-top: 128px;
  margin-left: auto; /* вирівнює блок по правому краю */
}

.plan__info--inner {
  background: linear-gradient(180deg, #1F2229 0%, #3B3355 127.44%);
  box-shadow: 0px 4px 4px 0px #8A7BFF;
  padding: 20px 32px 20px 20px;
  max-width: 305px;
  border-radius: 20px;
  text-align: center;
}
.plan__info--title {
  margin-bottom: 30px;
  font-weight: 300;
  font-size: 36px;
  padding-top: 5px;
  line-height: 130%;
  letter-spacing: 0;
  text-align: center;
  color: #ffffff;
}
.plan__info--title span {
  color: #8A7BFF;
}
.plan__info--logo {
  margin-bottom: 35px;
  text-align: center;
}
.plan__info--logo img {
  max-height: 26px;
}
.plan__info--pay {
  color: #ffffff;
  margin-bottom: 20px;
}
.plan__info--pay--text {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
  text-align: center;
}
.plan__info--pay--sale {
  font-weight: 300;
  font-size: 30px;
  line-height: 130%;
  letter-spacing: 0;
  text-align: center;
  text-decoration: line-through;
}
.plan__info--pay--price {
  font-weight: 500;
  font-size: 40px;
  line-height: 130%;
  letter-spacing: 0;
  text-align: center;
}
.plan__info--bottom {
  padding-top: 22px;
  font-weight: 300;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: center;
  color: #FFFFFF;
}
.plan__info--bottom a {
  text-decoration: underline;
  color: #ffffff;
}

footer {
  padding: 45px 0;
  background: linear-gradient(-90deg, #5C5C92 0%, #1C1C2C 100%);
}
footer .footer__wrapper {
  display: flex;
  justify-content: space-between;
}
footer .footer__img img {
  width: 250px;
}
footer .footer__links {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 550px);
  color: #ffffff;
}
footer .footer__links__item {
  width: calc(33.3333333333% - 10px);
}
footer .footer__links__title {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0;
  text-transform: uppercase;
}
footer .footer__links__list a {
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 0;
}
footer .footer__links__list a.mail {
  text-decoration: underline;
}
footer .footer__logo img {
  width: 200px;
  height: auto;
}

@media screen and (max-width: 1300px) {
  .container,
  .container-small,
  .container-extra-small {
    width: 1070px;
  }
  .swiper__info__item {
    padding: 130px 80px;
  }
  .swiper .swiper-pagination {
    left: calc(50% + 80px);
  }
  .privacy__list--inner {
    padding: 30px;
  }
}
@media screen and (max-width: 991px) {
  .container,
  .container-small,
  .container-extra-small {
    width: auto;
  }
  .button.default {
    padding: 14px 20px;
  }
  .header {
    padding: 20px 0;
  }
  .header__logo img {
    width: 100px;
  }
  .header__btn a.desktop {
    display: none;
  }
  .header__btn a.mobile {
    display: inline-block;
  }
  .banner {
    margin-top: 92px;
    padding: 40px 0;
  }
  .banner__wrapper {
    flex-wrap: wrap;
  }
  .banner__info {
    width: 100%;
    order: 2;
  }
  .banner__info--desc {
    padding-right: 0;
  }
  .banner__img {
    width: 100%;
    order: 1;
    margin-bottom: 30px;
  }
  .swiper__thumbs {
    display: none;
  }
  .swiper__info {
    width: 100%;
  }
  .swiper__info__item {
    padding: 40px 40px 60px 40px;
  }
  .swiper .swiper-pagination {
    width: calc(100% - 60px);
    left: 30px;
    bottom: 30px;
  }
  .privacy {
    padding: 40px 0;
  }
  .privacy__title {
    margin-bottom: 30px;
  }
  .privacy__list {
    flex-wrap: wrap;
  }
  .privacy__list--item {
    width: 100%;
    margin-bottom: 20px;
  }
  .stat {
    height: auto;
    padding: 40px 15px;
  }
  .stat__title {
    padding-top: 0;
  }
  .stat .image {
    display: none;
  }
  .stat .text {
    position: relative;
    max-width: 100%;
    left: auto;
    top: auto;
    transform: none;
    margin-bottom: 20px;
  }
  .stat .right {
    text-align: left;
  }
  .removed {
    padding: 40px 0;
  }
  .removed__wrapper {
    flex-wrap: wrap;
  }
  .removed__info {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .removed__info--title {
    padding-right: 0;
    margin-bottom: 20px;
  }
  .removed__info--subtitle {
    padding-right: 0;
  }
  .removed__info--icon {
    display: none;
  }
  .removed__list {
    width: 100%;
    flex-wrap: wrap;
  }
  .removed__list--item {
    width: 100%;
  }
  .removed__list--inner {
    padding: 30px;
  }
  .streamline {
    padding: 40px 0;
  }
  .streamline__title {
    margin-bottom: 30px;
  }
  .streamline__list--curve {
    display: none;
  }
  .streamline__list--item {
    width: 100%;
    margin-bottom: 20px;
    transform: none !important;
  }
  .streamline__list--inner {
    padding: 25px;
  }
  .streamline__list--number {
    font-size: 40px;
  }
  .streamline__list--icon {
    width: 80px;
  }
  .track {
    padding: 40px 0;
    height: auto;
  }
  .track__bg {
    display: none;
  }
  .track__img {
    position: relative;
    transform: none;
    width: 100%;
    left: auto;
    top: auto;
    margin-bottom: 20px;
  }
  .track__wrapper {
    height: auto;
  }
  .track__info {
    width: 100%;
  }
  .track__title {
    margin-bottom: 30px;
  }
  .track__desc {
    max-width: 100%;
  }
  .plan {
    padding: 40px 0;
  }
  .plan__wrapper {
    flex-wrap: wrap;
  }
  .plan__list {
    width: 100%;
    margin-bottom: 10px;
  }
  .plan__list__section {
    flex-wrap: wrap;
  }
  .plan__list__item {
    width: 100%;
    margin-bottom: 20px;
  }
  .plan__info {
    width: 100%;
  }
  .plan__info--inner {
    padding: 20px;
  }
  .plan__info--title, .plan__info--logo {
    display: none;
  }
  footer {
    padding: 40px 0;
  }
  footer .footer__wrapper {
    flex-wrap: wrap;
  }
  footer .footer__img {
    display: none;
  }
  footer .footer__links {
    width: 100%;
    order: 2;
    flex-wrap: wrap;
  }
  footer .footer__links__item {
    width: 100%;
    margin-bottom: 20px;
  }
  footer .footer__logo {
    order: 1;
    margin-bottom: 30px;
  }
}

/*# sourceMappingURL=style.css.map */
.bal {
  background-color: #E3ECFF;
}

.bal img {
  margin-bottom: 100px;
}
