html, body, p, h1, h2, h3, h4, h5, h6, a {
  font-size: 16px;
  font-weight: normal;
  color: #fff;
  font-family: "Montserrat";
  margin: 0;
  padding: 0;
}

html, body {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  outline: none !important;
}

a {
  text-decoration: none;
}

input, textarea, button, select {
  font-family: "Montserrat";
}

img, picture, svg {
  display: block;
  user-select: none;
}

img {
  width: 100%;
}

.content-wrap {
  width: 1312px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 18px;
}

@font-face {
  src: url(../fonts/Bounded-Regular.ttf);
  font-display: block;
  font-family: "Bounded";
  font-weight: normal;
  font-style: normal;
}
@font-face {
  src: url(../fonts/Bounded-Variable.ttf);
  font-display: block;
  font-family: "Bounded";
  font-weight: bold;
  font-style: normal;
}
@font-face {
  src: url(../fonts/Bounded-Black.ttf);
  font-display: block;
  font-family: "Bounded";
  font-weight: 900;
  font-style: normal;
}
html {
  background: #0E131D;
}
html.popup {
  overflow: hidden;
}
html.popup .popup-wrap {
  opacity: 1;
  pointer-events: all;
}
html.popup.feedback .popup-wrap .popup.feedback,
html.popup.msg .popup-wrap .popup.msg {
  opacity: 1;
  pointer-events: all;
  transform: none;
}

.popup-wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: center;
  background: rgba(14, 19, 29, 0.5);
  opacity: 0;
  overflow-y: scroll;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 1000;
}
.popup-wrap .popup {
  position: relative;
  width: 100%;
  max-width: 628px;
  background: image-set(url(../images/popup__bg.png) 1x, url(../images/popup__bg.webp) 1x) no-repeat center/cover;
  background: -webkit-image-set(url(../images/popup__bg.png) 1x, url(../images/popup__bg.webp) 1x) no-repeat center/cover;
  border-radius: 36px;
  margin: 100px auto;
  padding: 223px 30px 30px;
  transform: translateY(-50px);
  transition: 0.2s;
  z-index: 1;
}
.popup-wrap .popup__title {
  font-size: 40px;
  font-family: "Bounded";
  line-height: 60px;
  text-transform: uppercase;
}
.popup-wrap .popup__title span {
  font-weight: 900;
}
.popup-wrap .popup__form-input {
  width: 100%;
  height: 82px;
  margin-top: 40px;
}
.popup-wrap .popup__form-input + .popup__form-input {
  margin-top: 20px;
}
.popup-wrap .popup__form-btn {
  width: 100%;
  margin-top: 20px;
}
.popup-wrap .popup__form-check {
  margin-top: 20px;
}
.popup-wrap .popup__x {
  position: absolute;
  top: -63px;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.popup-wrap .popup__x .icon {
  width: 100%;
  height: 100%;
  fill: #fff;
  transition: 0.2s;
  pointer-events: none;
}
.popup-wrap .popup__x:hover .icon {
  transform: rotate(90deg);
}
.popup-wrap .popup__img {
  position: absolute;
  top: -109px;
  right: -76px;
  width: 446px;
  pointer-events: none;
  transform: rotate(-50.73deg);
}
.popup-wrap .popup::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 36px;
  border: 1px solid transparent;
  background: linear-gradient(310deg, #B2C2DA, rgba(95, 103, 116, 0), #B2C2DA) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

input[type=text], input[type=tel], input[type=email] {
  display: block;
  height: 77px;
  font-size: 20px;
  color: #fff;
  line-height: 27px;
  background: #101A2C;
  border: 1px solid #788CAB;
  border-radius: 12px;
  padding: 0 24px;
  transition: 0.2s;
}
input[type=text]:focus, input[type=tel]:focus, input[type=email]:focus {
  border-color: #fff;
}
input[type=text]::placeholder, input[type=tel]::placeholder, input[type=email]::placeholder {
  color: #788CAB;
}

.button {
  display: block;
  font-size: 19px;
  color: #fff;
  font-family: "Bounded";
  line-height: 27px;
  background: #0454D7;
  border: none;
  border-radius: 12px;
  padding: 25px 0;
  text-transform: uppercase;
  transition: 0.2s;
  cursor: pointer;
}
.button.green {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 900;
  font-family: "Bounded";
  line-height: 32px;
  background: #00913D;
  padding: 16px 0;
  text-transform: none;
}
.button.green .icon {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.button.green:hover {
  background: #00ab48;
}
.button:hover {
  background: #0062FF;
}

.check-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}
.check-wrap input {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}
.check-wrap input:checked + .check-wrap__box .icon {
  opacity: 1;
}
.check-wrap__box {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #788CAB;
  border-radius: 8px;
}
.check-wrap__box .icon {
  width: 16px;
  height: 16px;
  fill: #788CAB;
  transition: 0.2s;
  opacity: 0;
}
.check-wrap__text {
  font-size: 14px;
  line-height: 18px;
}
.check-wrap__text a {
  font-size: inherit;
  color: #5998FF;
  text-decoration: underline;
}
.check-wrap__text a:hover {
  text-decoration: none;
}

.page-wrap {
  margin-top: -127px;
  padding-top: 127px;
  overflow: hidden;
}
.page-wrap.pb {
  padding-bottom: 100px;
}
.page-wrap.pb ~ .footer {
  margin-top: 0 !important;
}

.section__title {
  font-size: 40px;
  font-family: "Bounded";
  line-height: 60px;
  text-transform: uppercase;
}
.section__title span {
  font-weight: 900;
}
.section__title.centered {
  text-align: center;
}

.header {
  position: sticky;
  top: -45px;
  padding: 70px 0 25px;
  z-index: 100;
  transition: 0.2s;
}
.header .content-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__links {
  height: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__link {
  font-size: 12px;
  font-family: "Bounded";
  line-height: 30px;
  letter-spacing: -0.01em;
  border-radius: 5px;
  padding: 0 10px;
  transition: 0.2s;
}
.header__link:nth-last-child(2) {
  background: #0454D7;
}
.header__link:nth-last-child(2):hover {
  background: #0062FF;
}
.header__link:hover {
  background: #223350;
}
.header__menu-btn {
  width: 51px;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.header__menu-btn span {
  width: 100%;
  height: 2px;
  background: #fff;
}
.header__menu-btn span:nth-child(2) {
  width: 30px;
}
.header.blurred {
  background: rgba(14, 19, 29, 0.5);
  backdrop-filter: blur(10px);
}

.footer {
  background: #19263F;
  margin-top: 88px;
  padding: 92px 0 38px;
}
.footer__top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.footer__column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.footer__title {
  font-size: 40px;
  font-weight: 900;
  font-family: "Bounded";
  line-height: 60px;
  text-transform: uppercase;
}
.footer__logo {
  width: 344px;
  margin-top: auto;
}
.footer__form-input {
  width: 100%;
}
.footer__form-input + .footer__form-input {
  margin-top: 24px;
}
.footer__form-btn {
  width: 100%;
  margin-top: 24px;
}
.footer__form-check {
  margin-top: 20px;
}
.footer__bottom {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  border-top: 1px solid #3E4F6D;
  margin-top: 82px;
  padding-top: 44px;
}
.footer__bottom-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.footer__bottom-column p {
  font-size: 16px;
  line-height: 29px;
  letter-spacing: -0.01em;
}
.footer__bottom-column p + p {
  margin-top: 24px;
}
.footer__bottom-column:nth-child(1) {
  grid-column: span 5;
  padding-top: 8px;
}
.footer__bottom-column:nth-child(2) {
  grid-column: span 3;
}
.footer__bottom-column:nth-child(3) {
  grid-column: span 4;
}
.footer__copy {
  font-size: 16px;
  line-height: 29px;
  letter-spacing: -0.01em;
  margin-top: auto;
}
.footer__link {
  font-size: 16px;
  color: #5998FF;
  line-height: 29px;
  letter-spacing: -0.01em;
  margin-top: auto;
}
.footer__link + .footer__link {
  margin-top: 19px;
}
.footer__link:hover {
  text-decoration: underline;
}

.heroscreen {
  position: relative;
  margin-top: -127px;
  padding-top: 209px;
}
.heroscreen__wrap {
  display: flex;
  gap: 33px;
}
.heroscreen__left {
  max-width: 688px;
  flex-shrink: 0;
}
.heroscreen__right {
  margin-right: -12px;
  padding-top: 42px;
}
.heroscreen__title {
  font-size: 50px;
  font-weight: 900;
  font-family: "Bounded";
  line-height: 70px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.heroscreen__text {
  max-width: 468px;
  font-size: 16px;
  line-height: 28px;
  margin-top: 14px;
}
.heroscreen__info {
  max-width: 532px;
  display: flex;
  align-items: center;
  gap: 20px;
  line-height: 28px;
  margin-top: 25px;
}
.heroscreen__info-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #04E061;
  border-radius: 8px;
}
.heroscreen__info-icon img {
  width: 36px;
}
.heroscreen__form {
  max-width: 453px;
  margin-top: 41px;
}
.heroscreen__form-input {
  width: 100%;
}
.heroscreen__form-input + .heroscreen__form-input {
  margin-top: 24px;
}
.heroscreen__form-btn {
  width: 100%;
  margin-top: 24px;
}
.heroscreen__form-check {
  margin-top: 33px;
}
.heroscreen__img {
  border-radius: 50%;
  overflow: hidden;
}
.heroscreen__author {
  width: max-content;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: -111px;
  padding-left: 32px;
}
.heroscreen__author-name {
  font-size: 24px;
  font-family: "Bounded";
  line-height: 27px;
  margin-top: 6px;
  text-transform: uppercase;
}
.heroscreen__author-subtitle {
  font-size: 9px;
  color: #7C7C7C;
  font-family: "Bounded";
  line-height: 27px;
  text-transform: uppercase;
}
.heroscreen__author::before {
  content: "";
  width: 95px;
  height: 95px;
  background: #04E061;
  border: 17px solid #0E131D;
  border-radius: 50%;
}
.heroscreen__blur {
  position: absolute;
  top: -355px;
  right: calc(50% - 548px);
  width: auto;
  z-index: -1;
}
.heroscreen__author2 {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-top: 32px;
}
.heroscreen__author2-img {
  position: relative;
  width: 114px;
}
.heroscreen__author2-img::before {
  content: "";
  position: absolute;
  bottom: -4px;
  right: -3px;
  width: 31px;
  height: 31px;
  background: #04E061;
  border: 4px solid #0E131D;
  border-radius: 50%;
}
.heroscreen__author2-name {
  font-size: 24px;
  font-family: "Bounded";
  line-height: 27px;
  text-transform: uppercase;
}
.heroscreen__author2-text {
  font-size: 9px;
  font-family: "Bounded";
  line-height: 27px;
  text-transform: uppercase;
  opacity: 0.5;
}

.about {
  position: relative;
  margin-top: 150px;
}
.about__video {
  position: relative;
  max-width: 1060px;
  height: 646px;
  background: #000;
  margin: 60px auto 0;
  border-radius: 36px;
  overflow: hidden;
}
.about__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 124px;
  height: 124px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #101A2C;
  border: 1px solid #788CAB;
  border-radius: 50%;
  box-shadow: 0 4px 55.3px rgba(0, 98, 255, 0.37);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: 0.2s;
}
.about__video-play .icon {
  width: 52px;
  height: 52px;
  fill: #0062FF;
  transition: 0.2s;
}
.about__video-play:hover .icon {
  transform: scale(1.1);
}
.about__video-play.hidden {
  opacity: 0;
  pointer-events: none;
}
.about__video-play:not(.hidden) ~ iframe {
  pointer-events: none;
}
.about__video-inner {
  height: 100%;
}
.about__video iframe {
  width: 100%;
  height: 100%;
}
.about__video::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 36px;
  border: 2px solid transparent;
  background: linear-gradient(330deg, #B2C2DA, rgba(95, 103, 116, 0), #B2C2DA) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}
.about__blur {
  position: absolute;
  top: -552px;
  right: calc(50% + 298px);
  width: auto;
  z-index: -1;
}

.campaign {
  position: relative;
  margin-top: 150px;
}
.campaign .content-wrap > .section__title {
  line-height: 65px;
}
.campaign__info {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.campaign__info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 32px;
  background: #1B2231;
  border: 1px solid #04E061;
  border-radius: 10px;
  padding: 15px;
}
.campaign__info-item .icon {
  width: 24px;
  height: 24px;
  fill: #fff;
}
.campaign__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 110px;
}
.campaign__item {
  position: relative;
  background: #fff;
  border-radius: 36px;
  padding: 60px 24px 27px;
  overflow: hidden;
  z-index: 1;
}
.campaign__item-title {
  font-size: 24px;
  font-weight: bold;
  color: #303642;
  line-height: 28px;
  letter-spacing: -0.01em;
}
.campaign__item-text {
  font-size: 16px;
  color: #303642;
  line-height: 29px;
  letter-spacing: -0.01em;
  margin-top: 20px;
}
.campaign__item-decor {
  position: absolute;
  width: auto;
  z-index: -1;
}
.campaign__item:nth-child(1) .campaign__item-decor {
  top: -12px;
  right: -19px;
}
.campaign__item:nth-child(2) .campaign__item-decor {
  width: 218px;
  top: -59px;
  right: -85px;
}
.campaign__item:nth-child(3) .campaign__item-decor {
  top: 24px;
  right: 24px;
}
.campaign__item:nth-child(4) .campaign__item-decor {
  top: 12px;
  right: 12px;
}
.campaign__item:nth-child(5) .campaign__item-decor {
  top: -97px;
  right: -89px;
  transform: rotate(-1.48deg);
}
.campaign__item:nth-child(6) .campaign__item-decor {
  top: 12px;
  right: 12px;
}
.campaign__item:nth-child(2n) {
  background: #0062FF;
}
.campaign__item:nth-child(2n) .campaign__item-title, .campaign__item:nth-child(2n) .campaign__item-text {
  color: #fff;
}
.campaign__form {
  position: relative;
  background: image-set(url(../images/campaign__form-bg.png) 1x, url(../images/campaign__form-bg.webp) 1x) no-repeat center/cover;
  background: -webkit-image-set(url(../images/campaign__form-bg.png) 1x, url(../images/campaign__form-bg.webp) 1x) no-repeat center/cover;
  border-radius: 36px;
  margin-top: 151px;
  padding: 44px 50px 50px;
}
.campaign__form-wrap {
  display: flex;
  gap: 24px;
  margin-top: 57px;
}
.campaign__form input[type=text].campaign__form-input,
.campaign__form input[type=tel].campaign__form-input {
  width: 278px;
  font-size: 18px;
}
.campaign__form-btn {
  font-size: 24px;
  padding-left: 27.5px;
  padding-right: 27.5px;
}
.campaign__form-check {
  width: max-content;
  margin-top: 22px;
}
.campaign__form-img {
  position: absolute;
  top: -148px;
  right: -144px;
  width: 514px;
  transform: rotate(-45.5deg);
  pointer-events: none;
}
.campaign__form::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 36px;
  border: 2px solid transparent;
  background: linear-gradient(15deg, #B2C2DA, rgba(95, 103, 116, 0), #B2C2DA) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}
.campaign__blur {
  position: absolute;
  top: -613px;
  left: calc(50% + 343px);
  width: auto;
  z-index: -1;
}

.cases {
  position: relative;
  margin-top: 108px;
}
.cases__slider {
  overflow: visible;
  margin-top: 64px;
}
.cases__slider-btns {
  display: flex;
  justify-content: center;
  margin-top: 118px;
}
.cases__slider-btn {
  width: 60px;
  height: 60px;
  transition: 0.2s;
  border-radius: 50%;
  cursor: pointer;
}
.cases__slider-btn .icon {
  width: 100%;
  height: 100%;
  fill: #fff;
}
.cases__slider-btn.r .icon {
  transform: rotate(180deg);
}
.cases__slider-btn:hover {
  background: #1B2231;
}
.cases__item {
  background: #0E1624;
  border-radius: 36px;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.cases__item-head {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.cases__item-img {
  position: relative;
  width: 266px;
  flex-shrink: 0;
}
.cases__item-img picture {
  border-radius: 50%;
  overflow: hidden;
}
.cases__item-img.no-photo::before {
  display: none;
}
.cases__item-img::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 4px solid #04E061;
  border-radius: 50%;
}
.cases__item-right {
  padding-top: 63px;
}
.cases__item-name {
  font-size: 42px;
  font-weight: 900;
  font-family: "Bounded";
  line-height: 28px;
}
.cases__item-quote {
  display: flex;
  gap: 24px;
  font-size: 26px;
  line-height: 32px;
  font-style: italic;
  letter-spacing: 0.01em;
  margin-top: 50px;
  padding-left: 2px;
}
.cases__item-quote .icon {
  width: 66px;
  height: 57px;
  flex-shrink: 0;
  fill: #fff;
  margin-top: 7px;
}
.cases__item-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 30px;
  margin-top: 58px;
}
.cases__item.swiper-slide-active {
  opacity: 1;
  pointer-events: all;
}
.cases__item:nth-child(1) .cases__total {
  margin-top: -130px;
}
.cases__item:nth-child(2) .cases__total {
  margin-top: -270px;
}
.cases__item:nth-child(3) .cases__total {
  margin-top: -370px;
}
.cases__item:nth-child(4) .cases__total {
  margin-top: -360px;
}
.cases__item:nth-child(5) .cases__total {
  margin-top: -370px;
}
.cases__item:nth-child(6) .cases__total {
  margin-top: -330px;
}
.cases__item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 36px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #B2C2DA, rgba(95, 103, 116, 0), #B2C2DA) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}
.cases__column-title {
  font-size: 22px;
  font-weight: 900;
  font-family: "Bounded";
  line-height: 34px;
}
.cases__column-text {
  font-size: 16px;
  line-height: 29px;
  margin-top: 12px;
}
.cases__column-text ul {
  margin: 0;
}
.cases__column-text + .cases__column-title {
  margin-top: 30px;
}
.cases__column-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 45px -100px 0 0;
}
.cases__column-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 29px;
  border-radius: 6px;
  padding: 10px;
  text-decoration: underline;
  transition: 0.2s;
}
.cases__column-link .icon {
  width: 22px;
  height: 22px;
  fill: #fff;
}
.cases__column-link:hover {
  background: #1B273C;
}
.cases__total {
  position: relative;
  max-width: 826px;
  display: grid;
  grid-template-columns: 43% 57%;
  gap: 40px 0;
  background: image-set(url(../images/cases__total-bg.png) 1x, url(../images/cases__total-bg.webp) 1x) no-repeat center/cover;
  background: -webkit-image-set(url(../images/cases__total-bg.png) 1x, url(../images/cases__total-bg.webp) 1x) no-repeat center/cover;
  border-radius: 36px;
  margin: 0 -86px -131px auto;
  padding: 39px 25px 40px 50px;
}
.cases__total-title {
  grid-column: span 2;
  font-size: 36px;
  line-height: 47px;
  text-transform: uppercase;
}
.cases__total-item {
  grid-column: 1/span 1;
}
.cases__total-item:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}
.cases__total-subtitle {
  font-size: 20px;
  font-family: "Bounded";
  line-height: 28px;
  text-transform: uppercase;
}
.cases__total-amount {
  font-size: 30px;
  font-weight: 900;
  color: #04E061;
  font-family: "Bounded";
  line-height: 30px;
  margin-top: 13px;
  text-transform: uppercase;
}
.cases__total-amount span {
  font-size: 18px;
}
.cases__total-images {
  position: absolute;
  right: 83px;
  bottom: 67px;
  width: 150px;
}
.cases__total-image {
  position: relative;
  display: block;
  border: 2px solid #E0E0E0;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.cases__total-image picture {
  height: 82px;
}
.cases__total-image picture img {
  height: 100%;
  object-fit: cover;
}
.cases__total-image + .cases__total-image {
  margin-top: -17px;
}
.cases__total-image:nth-child(2n-1) {
  transform: translateX(-123px);
}
.cases__total-image:nth-child(3) {
  z-index: 1;
}
.cases__total-image:not(:has(+ .cases__total-image)) {
  transform: none;
}
.cases__total-image:hover .cases__total-zoom {
  border-color: #E0E0E0;
}
.cases__total-zoom {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 37px;
  height: 37px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0E131D;
  border: 1px solid transparent;
  border-radius: 50%;
  transition: 0.2s;
}
.cases__total-zoom .icon {
  width: 20px;
  height: 20px;
  fill: #04E061;
}
.cases__total::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 36px;
  border: 2px solid transparent;
  background: linear-gradient(30deg, #B2C2DA, rgba(95, 103, 116, 0), #B2C2DA) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}
.cases__blur {
  position: absolute;
  top: -1014px;
  right: calc(50% + 298px);
  width: auto;
  z-index: -1;
}

.cost {
  position: relative;
  margin-top: 110px;
}
.cost__slider {
  margin-top: 65px;
}
.cost__slider-btns {
  display: none;
  justify-content: center;
  margin-top: 30px;
}
.cost__slider-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: 0.2s;
}
.cost__slider-btn .icon {
  width: 100%;
  height: 100%;
  fill: #fff;
}
.cost__slider-btn.r .icon {
  transform: rotate(180deg);
}
.cost__slider-btn:hover {
  background: #1B2231;
}
.cost__item {
  width: 412px;
  background: #0E1624;
  border-radius: 36px;
  padding: 32px 30px 43px;
}
.cost__item-title {
  width: 100%;
  font-size: 16px;
  font-weight: 900;
  line-height: 16px;
  border-radius: 18px;
  margin-bottom: 45px;
  padding: 26px 0;
  text-transform: uppercase;
  text-align: center;
}
.cost__item-option {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-size: 15px;
  line-height: 27px;
  letter-spacing: -0.01em;
}
.cost__item-option.colored {
  font-weight: 600;
}
.cost__item-option.disabled {
  color: rgba(255, 255, 255, 0.39);
}
.cost__item-option.disabled .cost__item-icon .icon {
  fill: rgba(255, 255, 255, 0.39);
}
.cost__item-option + .cost__item-option {
  margin-top: 28px;
}
.cost__item-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: #1C263A;
  border-radius: 50%;
}
.cost__item-icon .icon {
  width: 100%;
  height: 100%;
  fill: #fff;
}
.cost__item-price {
  font-size: 30px;
  font-family: "Bounded";
  line-height: 27px;
  margin-top: 56px;
}
.cost__item-btn {
  width: 100%;
  font-size: 20px;
  margin-top: 24px;
}
.cost__item:nth-child(1) .cost__item-title {
  background: #1D2534;
}
.cost__item:nth-child(1) .cost__item-option.colored .cost__item-icon .icon {
  fill: #0062FF;
}
.cost__item:nth-child(2) .cost__item-title {
  background: #04E061;
}
.cost__item:nth-child(2) .cost__item-option.colored .cost__item-icon .icon {
  fill: #04E061;
}
.cost__item:nth-child(3) .cost__item-title {
  background: #965EEB;
}
.cost__item:nth-child(3) .cost__item-option.colored .cost__item-icon .icon {
  fill: #965EEB;
}
.cost__item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 36px;
  border: 2px solid transparent;
  background: linear-gradient(290deg, #B2C2DA, rgba(95, 103, 116, 0), #B2C2DA) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}
.cost__discount {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 75px;
}
.cost__discount-item {
  position: relative;
  font-size: 21px;
  font-family: "Bounded";
  line-height: 28px;
  border-radius: 36px;
  padding: 19px 19px 19px 255px;
}
.cost__discount-item span {
  font-weight: 900;
}
.cost__discount-item:first-child {
  background: #0062FF;
}
.cost__discount-item:first-child .cost__discount-img {
  width: 218px;
  top: -38px;
  left: 20px;
  transform: rotate(4.4deg);
}
.cost__discount-item:last-child {
  color: #303642;
  background: #04E061;
}
.cost__discount-item:last-child .cost__discount-img {
  width: 196px;
  top: -31px;
  left: 40px;
  transform: rotate(-10.88deg);
}
.cost__discount-img {
  position: absolute;
}
.cost__blur {
  position: absolute;
  top: -1194px;
  left: calc(50% + 443px);
  width: auto;
  z-index: -1;
}

.contents {
  position: relative;
  margin-top: 162px;
}
.contents__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 46px;
}
.contents__item {
  font-size: 21px;
  font-family: "Bounded";
  line-height: 28px;
  background: #151F30;
  border-radius: 15px;
  padding: 43px 23px 53px 24px;
  text-align: center;
}
.contents__item-icon {
  width: 70px;
  height: 70px;
  fill: #fff;
  margin: 0 auto 24px;
}
.contents__module {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  background: #0E1624;
  border-radius: 36px;
  margin-top: 53px;
  padding: 24px;
  cursor: pointer;
}
.contents__module-num {
  position: relative;
  width: 160px;
  font-size: 22px;
  font-weight: bold;
  line-height: 28px;
  letter-spacing: -0.01em;
  background: #965EEB;
  border-radius: 100px;
  padding: 6px 0;
  text-align: center;
}
.contents__module-num::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 36px;
  border: 1px solid transparent;
  background: linear-gradient(330deg, #B2C2DA, rgba(95, 103, 116, 0), #B2C2DA) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}
.contents__module-title {
  font-size: 24px;
  font-weight: 900;
  font-family: "Bounded";
  line-height: 24px;
  margin-top: 24px;
  text-transform: uppercase;
}
.contents__module-text {
  display: none;
  max-width: 708px;
  font-size: 16px;
  line-height: 29px;
  letter-spacing: -0.01em;
  margin-top: 24px;
}
.contents__module-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 34px;
  height: 34px;
  transition: 0.2s;
}
.contents__module-icon .icon {
  width: 100%;
  height: 100%;
  fill: #fff;
}
.contents__module + .contents__module {
  margin-top: 30px;
}
.contents__module.opened .contents__module-icon {
  transform: rotate(45deg);
}
.contents__module::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 36px;
  border: 1px solid transparent;
  background: linear-gradient(355deg, #B2C2DA, rgba(95, 103, 116, 0), #B2C2DA) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}
.contents__info-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 99px;
}
.contents__info-item {
  position: relative;
  background: #0E1624;
  border-radius: 36px;
  padding: 57px 94px 57px 46px;
}
.contents__info-item + .contents__info-item .contents__info-title {
  color: #04E061;
}
.contents__info-item + .contents__info-item .contents__info-icon .icon {
  width: 16px;
  height: 16px;
  fill: #04E061;
}
.contents__info-item + .contents__info-item .contents__info-img {
  top: -29px;
  right: 0;
}
.contents__info-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 36px;
  border: 1px solid transparent;
  background: linear-gradient(306deg, #B2C2DA, rgba(95, 103, 116, 0), #B2C2DA) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}
.contents__info-title {
  font-size: 24px;
  font-weight: 900;
  color: #FF4053;
  font-family: "Bounded";
  line-height: 24px;
  text-transform: uppercase;
}
.contents__info-text {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-size: 16px;
  line-height: 29px;
  letter-spacing: -0.01em;
  margin-top: 65px;
}
.contents__info-text + .contents__info-text {
  margin-top: 24px;
}
.contents__info-icon {
  position: relative;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background: #1C263A;
  border-radius: 50%;
}
.contents__info-icon .icon {
  width: 12px;
  height: 12px;
  fill: #FF4053;
}
.contents__info-icon::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 36px;
  border: 1px solid transparent;
  background: linear-gradient(320deg, #B2C2DA, rgba(95, 103, 116, 0), #B2C2DA) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}
.contents__info-img {
  position: absolute;
  top: -24px;
  right: -8px;
  width: auto;
}
.contents__banner {
  position: relative;
  background: image-set(url(../images/contents__banner-bg.png) 1x, url(../images/contents__banner-bg.webp) 1x) no-repeat center/cover;
  background: -webkit-image-set(url(../images/contents__banner-bg.png) 1x, url(../images/contents__banner-bg.webp) 1x) no-repeat center/cover;
  border-radius: 36px;
  margin-top: 121px;
  padding: 67px 0 67px 42px;
  overflow: hidden;
}
.contents__banner-text {
  max-width: 549px;
  font-size: 36px;
  font-family: "Bounded";
  line-height: 44.3px;
  text-transform: uppercase;
}
.contents__banner-text span {
  font-weight: 900;
  color: #04E061;
}
.contents__banner-img {
  position: absolute;
  bottom: -59px;
  right: 4px;
  width: 738px;
  transform: rotate(-10.7deg);
}
.contents__banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 36px;
  border: 1px solid transparent;
  background: linear-gradient(340deg, #B2C2DA, rgba(95, 103, 116, 0), #B2C2DA) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}
.contents__frags-wrap {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-top: 150px;
}
.contents__frags-left {
  grid-column: span 8;
}
.contents__frags-right {
  grid-column: span 4;
  padding-top: 24px;
}
.contents__frags-item {
  position: relative;
  height: auto;
  background: #000;
  border-radius: 36px;
  overflow: hidden;
}
.contents__frags-item video {
  width: 100%;
  height: 100%;
  display: block;
}
.contents__frags-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 36px;
  border: 1px solid transparent;
  background: linear-gradient(330deg, #B2C2DA, rgba(95, 103, 116, 0), #B2C2DA) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.contents__frags-title {
  font-size: 40px;
  font-family: "Bounded";
  line-height: 60px;
  text-transform: uppercase;
}
.contents__frags-title span {
  font-weight: 900;
}
.contents__frags-text {
  font-size: 20px;
  line-height: 30px;
  margin-top: 38px;
}
.contents__frags-btns {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.contents__frags-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
}
.contents__frags-btn .icon {
  width: 100%;
  height: 100%;
  fill: #fff;
}
.contents__frags-btn.r .icon {
  transform: rotate(180deg);
}
.contents__frags-btn:hover {
  background: #1B2231;
}
.contents__frags-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 124px;
  height: 124px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #101A2C;
  border: 1px solid #788CAB;
  border-radius: 50%;
  box-shadow: 0 4px 55.3px rgba(0, 98, 255, 0.37);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: 0.2s;
}
.contents__frags-play .icon {
  width: 52px;
  height: 52px;
  fill: #0062FF;
  transition: 0.2s;
}
.contents__frags-play:hover .icon {
  transform: scale(1.1);
}
.contents__frags-play.hidden {
  opacity: 0;
  pointer-events: none;
}
.contents__frags-play:not(.hidden) ~ iframe {
  pointer-events: none;
}
.contents__blur-1 {
  position: absolute;
  top: -431px;
  right: calc(50% + 428px);
  width: auto;
  z-index: -1;
}
.contents__blur-2 {
  position: absolute;
  top: -113px;
  left: calc(50% + 443px);
  width: auto;
  z-index: -1;
}

.reviews {
  position: relative;
  margin-top: 107px;
}
.reviews__slider {
  margin-top: 30px;
}
.reviews__slider-btns {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}
.reviews__slider-btn {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.2s;
  cursor: pointer;
}
.reviews__slider-btn .icon {
  width: 100%;
  height: 100%;
  fill: #fff;
}
.reviews__slider-btn.r .icon {
  transform: rotate(180deg);
}
.reviews__slider-btn:hover {
  background: #1B2231;
}
.reviews__item {
  width: 304px;
  overflow: hidden;
  border-radius: 50%;
}
.reviews__item-img {
  border-radius: 50%;
  overflow: hidden;
}
.reviews__item video {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
}
.reviews__item-play {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  cursor: pointer;
}
.reviews__item-play .icon {
  width: 52px;
  height: 52px;
  fill: #0062FF;
  transition: 0.2s;
}
.reviews__item-play:hover .icon {
  transform: scale(1.2);
}
.reviews__blur-1 {
  position: absolute;
  top: -1220px;
  right: calc(50% + 372px);
  width: auto;
  z-index: -1;
}
.reviews__blur-2 {
  position: absolute;
  top: -886px;
  left: calc(50% + 360px);
  width: auto;
  z-index: -1;
}

.author {
  background: #161C28;
  margin-top: 57px;
  padding: 99px 0 168px;
}
.author__img {
  border-radius: 50%;
  overflow: hidden;
}
.author__img-wrap {
  position: relative;
  width: 336px;
  margin: 64px auto 0;
}
.author__img-wrap::before {
  content: "";
  position: absolute;
  right: 32px;
  bottom: 17px;
  width: 33px;
  height: 33px;
  background: #04E061;
  border: 6px solid #0E131D;
  border-radius: 50%;
}
.author__name {
  font-size: 44px;
  font-weight: 900;
  font-family: "Bounded";
  line-height: 55px;
  margin-top: 30px;
  text-transform: uppercase;
  text-align: center;
}
.author__quote {
  position: relative;
  max-width: 1002px;
  font-size: 24px;
  line-height: 38px;
  font-style: italic;
  letter-spacing: -0.01em;
  margin: 15px auto 0;
  text-align: center;
}
.author__quote-icon {
  position: absolute;
  top: 12px;
  right: calc(100% + 3px);
  width: 14px;
  height: 12px;
  fill: #fff;
}
.author__quote-icon + .author__quote-icon {
  top: auto;
  right: 7px;
  bottom: 11px;
}
.author__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 80px;
}
.author__item {
  width: calc(25% - 15px);
  height: 259px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  background: #253E69;
  border-radius: 36px;
  padding: 28px;
}
.author__item-title {
  min-height: 68px;
  font-size: 36px;
  font-weight: 900;
  font-family: "Bounded";
  line-height: 68px;
  margin-top: auto;
  text-transform: uppercase;
}
.author__item-title span {
  font-size: 24px;
}
.author__item-title span span {
  font-size: 11px;
}
.author__item-title .icon {
  width: 41px;
  height: 41px;
  fill: #fff;
  margin-top: 11px;
}
.author__item-text {
  min-height: 58px;
  font-size: 18px;
  line-height: 29px;
  letter-spacing: -0.01em;
}
.author__item:nth-child(1) {
  background: #FF4053;
}
.author__item:nth-child(2), .author__item:nth-child(7) {
  background: #4D6EA7;
}
.author__item:nth-child(3) {
  background: #0062FF;
}
.author__item:nth-child(5) {
  background: #04E061;
}

.start {
  margin-top: 139px;
}
.start__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.start__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  background: #965EEB;
  border-radius: 36px;
  padding: 24px;
}
.start__item-num {
  font-size: 24px;
  font-weight: 900;
  font-family: "Bounded";
  line-height: 24px;
  margin-bottom: 38px;
}
.start__item-title {
  max-width: 332px;
  font-size: 24px;
  font-weight: bold;
  line-height: 28px;
  letter-spacing: -0.01em;
  margin-top: auto;
}
.start__item-text {
  max-width: 347px;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.01em;
  margin-top: 20px;
}
.start__item-icon {
  position: absolute;
  width: auto;
  top: 24px;
  right: 24px;
}
.start__item:first-child, .start__item:last-child {
  background: #151F30;
}
.start__item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 36px;
  border: 1px solid transparent;
  background: linear-gradient(340deg, #B2C2DA, rgba(95, 103, 116, 0), #B2C2DA) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}
.start__subtitle {
  font-size: 24px;
  font-family: "Bounded";
  line-height: 60px;
  margin-top: 118px;
  text-transform: uppercase;
  text-align: center;
}
.start__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.start__info-item {
  background: #151F30;
  border-radius: 16px;
  padding: 45px 105px 24px 24px;
}
.start__info-icon {
  width: auto;
}
.start__info-text {
  font-size: 16px;
  line-height: 29px;
  letter-spacing: -0.01em;
  margin-top: 25px;
}
.start__form {
  max-width: 930px;
  margin: 131px auto 0;
}
.start__form-title {
  max-width: 712px;
  font-size: 24px;
  font-family: "Bounded";
  line-height: 40px;
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
}
.start__form-title span {
  font-weight: 900;
  color: #965EEB;
}
.start__form-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 24px;
  margin-top: 44px;
}
.start__form-input:nth-child(1) {
  margin-bottom: 24px;
}
.start__form-btn {
  grid-column: span 2;
  margin-top: 20px;
}
.start__form-check {
  margin-top: 20px;
}

.telegram {
  position: relative;
  margin-top: 178px;
}
.telegram__wrap {
  position: relative;
  background: #0E1624;
  border-radius: 36px;
  padding: 48px 169px 49px 573px;
  overflow: hidden;
  z-index: 1;
}
.telegram__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 36px;
  border: 1px solid transparent;
  background: linear-gradient(340deg, #B2C2DA, rgba(95, 103, 116, 0), #B2C2DA) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}
.telegram__author {
  display: flex;
  align-items: center;
  gap: 25px;
}
.telegram__author-img {
  position: relative;
  width: 102px;
}
.telegram__author-img::before {
  content: "";
  position: absolute;
  top: -3px;
  right: -3px;
  bottom: -3px;
  left: -3px;
  border-radius: 50%;
  border: 3px solid transparent;
  background: linear-gradient(180deg, #04E061, #2A7CFF) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}
.telegram__author-image {
  border-radius: 50%;
  overflow: hidden;
}
.telegram__author-name {
  font-size: 24px;
  font-weight: 900;
  font-family: "Bounded";
  line-height: 35px;
  letter-spacing: -0.01em;
}
.telegram__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 54px;
}
.telegram__tag {
  font-size: 17px;
  line-height: 32px;
  background: #1B2231;
  border: 2px solid #04E061;
  border-radius: 10px;
  padding: 14px;
}
.telegram__btn {
  width: 100%;
  margin-top: 5px;
}
.telegram__blur {
  position: absolute;
  top: 43px;
  left: -345px;
  width: auto;
  z-index: -1;
}
.telegram__icon {
  position: absolute;
  top: 50px;
  right: 42px;
  width: 97px;
  height: 97px;
  background: #162239;
  border-radius: 16px;
}
.telegram__icon .icon {
  width: 100%;
  height: 100%;
  fill: #0062FF;
}
.telegram__img {
  position: absolute;
  bottom: 0;
  left: 101px;
  width: 380px;
  z-index: -1;
}
.telegram__blur-1 {
  position: absolute;
  top: -983px;
  right: calc(50% + 385px);
  width: auto;
  opacity: 0.4;
  z-index: -1;
}
.telegram__blur-2 {
  position: absolute;
  top: -571px;
  right: calc(50% + 372px);
  width: auto;
  z-index: -1;
}
.telegram__blur-3 {
  position: absolute;
  top: -1318px;
  left: calc(50% + 141px);
  width: auto;
  opacity: 0.4;
  z-index: -1;
}
.telegram__blur-4 {
  position: absolute;
  top: -1366px;
  left: calc(50% + 443px);
  width: auto;
  z-index: -1;
}

.faq {
  margin-top: 144px;
}
.faq__item {
  position: relative;
  background: #101A2C;
  border-radius: 35px;
  margin-top: 64px;
  padding: 21px 66px 21px 32px;
  cursor: pointer;
  transition: 0.2s;
}
.faq__item-title {
  font-size: 22px;
  font-weight: bold;
  line-height: 28px;
  letter-spacing: -0.01em;
}
.faq__item-text {
  display: none;
  font-size: 20px;
  line-height: 36px;
  margin-top: 27px;
}
.faq__item-text a {
  font-size: inherit;
  color: #0454D7;
  line-height: inherit;
  transition: 0.2s;
}
.faq__item-text a:hover {
  color: #0062FF;
}
.faq__item .icon {
  position: absolute;
  top: 18px;
  right: 32px;
  width: 34px;
  height: 34px;
  fill: #fff;
  transition: 0.2s;
}
.faq__item + .faq__item {
  margin-top: 12px;
}
.faq__item.opened {
  border-radius: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.faq__item.opened .icon {
  transform: rotate(45deg);
}

.mob-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 303px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  background: #2A7CFF;
  padding: 49px 18px 29px 15px;
  overflow: scroll;
  z-index: 150;
  transform: translateX(100%);
  transition: 0.2s;
}
.mob-menu__btn {
  width: 51px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 60px auto;
}
.mob-menu__btn span {
  height: 2px;
  background: #fff;
}
.mob-menu__link {
  font-size: 16px;
  font-weight: 900;
  font-family: "Bounded";
  line-height: 22px;
}
.mob-menu__link.special {
  background: #0F408F;
  border-radius: 6px;
  padding: 4px 10px;
}
.mob-menu__link + .mob-menu__link {
  margin-top: 36px;
}
.mob-menu__logo {
  width: 215px;
  margin-top: 86px;
}
.mob-menu__text {
  font-size: 12px;
  line-height: 20px;
  margin-top: 38px;
}
.mob-menu__text + .mob-menu__text {
  margin-top: 12px;
}
.mob-menu.opened {
  transform: none;
}
.mob-menu.opened ~ .shadow {
  opacity: 1;
  pointer-events: all;
}

.shadow {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(13, 13, 13, 0.78);
  z-index: 149;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}

.anchor {
  display: block;
  position: relative;
  top: -100px;
  visibility: hidden;
}

.top-btn {
  position: fixed;
  right: 50px;
  bottom: 50px;
  width: 57px;
  height: 57px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0454D7;
  border-radius: 50%;
  z-index: 148;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}
.top-btn .icon {
  width: 15px;
  height: 9px;
  fill: #fff;
}
.top-btn:hover {
  background: #0062FF;
}
.top-btn.visible {
  opacity: 1;
  pointer-events: all;
}

.offer-page {
  position: relative;
  padding-top: 50px;
}
.offer-page__title {
  font-size: 40px;
  font-weight: 900;
  font-family: "Bounded";
  line-height: 60px;
  text-transform: uppercase;
}
.offer-page__text {
  margin-top: 30px;
}
.offer-page__text p {
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.01em;
}
.offer-page__text p span {
  font-weight: 600;
}
.offer-page__text p + p {
  margin-top: 32px;
}
.offer-page__subtitle {
  font-size: 24px;
  font-weight: bold;
  line-height: 28px;
  letter-spacing: -0.01em;
  margin-top: 80px;
}
.offer-page__subtitle + .offer-page__subtitle {
  margin-top: 20px;
}
.offer-page__blur-1 {
  position: absolute;
  top: -1064px;
  right: calc(50% + 343px);
  width: auto;
  z-index: -1;
}
.offer-page__blur-2 {
  position: absolute;
  top: 113px;
  left: calc(50% + 575px);
  width: auto;
  z-index: -1;
}
.offer-page__blur-3 {
  position: absolute;
  top: 2410px;
  left: calc(50% + 459px);
  width: auto;
  z-index: -1;
}
.offer-page__blur-4 {
  position: absolute;
  top: 3578px;
  right: calc(50% + 459px);
  width: auto;
  z-index: -1;
}
.offer-page__blur-5 {
  position: absolute;
  top: 6474px;
  right: calc(50% + 459px);
  width: auto;
  z-index: -1;
}
.offer-page__blur-6 {
  position: absolute;
  top: 7642px;
  left: calc(50% + 459px);
  width: auto;
  z-index: -1;
}

.reviews__slider-btns {
  visibility: hidden;
}

.hide-xl {
  display: none !important;
}

@media (max-width: 1439px) {
  .header__links {
    gap: 0;
  }
  .heroscreen__right {
    margin-right: 0;
  }
  .heroscreen__left {
    max-width: 600px;
  }
  .campaign__form-img {
    right: -214px;
  }
  .cost__slider {
    margin-top: 30px;
  }
  .cost__slider-btns {
    display: flex;
  }
  .author__item-title {
    white-space: nowrap;
  }
  .start__info-item {
    padding-right: 24px;
  }
  .reviews__slider-btns {
    visibility: visible;
  }
}
@media (max-width: 1199px) {
  .hide-lg {
    display: none !important;
  }
  .show-lg {
    display: block !important;
  }
  .show-lg-flex {
    display: flex !important;
  }
  .show-lg-inline {
    display: inline !important;
  }
  .heroscreen__left {
    max-width: 540px;
  }
  .campaign__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .campaign__form-wrap {
    max-width: 70%;
    flex-wrap: wrap;
  }
  .campaign__form-img {
    right: -144px;
  }
  .cases__item {
    padding: 40px;
  }
  .cases__item-columns {
    grid-template-columns: 100%;
    gap: 30px;
  }
  .cases__total {
    margin: 30px auto 0 !important;
  }
  .cases__column-links {
    margin-right: 0;
  }
  .cost__discount-item {
    padding-left: 235px;
  }
  .cost__discount-item:first-child .cost__discount-img {
    top: 50%;
    left: -10px;
    transform: rotate(4.4deg) translateY(-50%);
  }
  .cost__discount-item:last-child .cost__discount-img {
    top: 50%;
    left: 30px;
    transform: rotate(-10.88deg) translateY(-50%);
  }
  .contents__banner-img {
    right: -136px;
  }
  .author__quote {
    font-style: normal;
  }
  .author__quote-icon {
    display: none;
  }
  .author__item {
    width: calc(33.33333% - 20px);
  }
  .telegram__wrap {
    padding-left: 450px;
  }
  .telegram__img {
    left: 30px;
  }
  .contents__frags-left {
    grid-column: span 7;
  }
  .contents__frags-right {
    grid-column: span 5;
  }
}
@media (max-width: 991px) {
  .hide-md {
    display: none !important;
  }
  .show-md {
    display: block !important;
  }
  .show-md-flex {
    display: flex !important;
  }
  .show-md-grid {
    display: grid !important;
  }
  .show-md-inline {
    display: inline !important;
  }
  .heroscreen__left {
    max-width: none;
    width: 100%;
  }
  .cases__item-head {
    flex-direction: column;
  }
  .cases__item-right {
    padding-top: 0;
  }
  .cases__total-images {
    right: 20px;
    bottom: 20px;
  }
  .cost__discount {
    grid-template-columns: 100%;
  }
  .cost__discount-item {
    height: 122px;
    display: flex;
    align-items: center;
    padding: 19px 22px 19px 141px;
  }
  .cost__discount-item br {
    display: none;
  }
  .cost__discount-item:first-child .cost__discount-img {
    top: -6px;
    left: -5px;
    width: 138px;
    transform: rotate(4.4deg);
  }
  .cost__discount-item:last-child .cost__discount-img {
    top: -1px;
    left: 6px;
    width: 124px;
    transform: rotate(-10.88deg);
  }
  .contents__items {
    grid-template-columns: 100%;
  }
  .contents__info-wrap {
    grid-template-columns: 100%;
  }
  .contents__banner {
    padding-bottom: 330px;
  }
  .contents__banner-text {
    max-width: 100%;
  }
  .contents__banner-text br {
    display: none;
  }
  .contents__banner-img {
    right: 0;
    bottom: -119px;
  }
  .author__item {
    width: calc(50% - 10px);
  }
  .start__item-num {
    margin-bottom: 92px;
  }
  .telegram__wrap {
    padding-left: 50px;
    padding-bottom: 480px;
  }
  .telegram__img {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer__top {
    grid-template-columns: 100%;
    gap: 45px;
  }
  .footer__logo {
    margin-top: 122px;
  }
  .footer__bottom {
    grid-template-columns: 100%;
    gap: 0;
  }
  .footer__bottom-column {
    grid-column: auto;
  }
  .footer__bottom-column:nth-child(2) {
    margin-top: 63px;
  }
  .footer__bottom-column:nth-child(3) {
    margin-top: 31px;
  }
  .footer__copy {
    margin-top: 88px;
  }
  .contents__frags-wrap {
    grid-template-columns: 100%;
    gap: 50px;
  }
  .contents__frags-left, .contents__frags-right {
    grid-column: auto;
  }
  .contents__frags-right {
    padding-top: 0;
    order: -1;
  }
}
@media (max-width: 767px) {
  .hide-sm {
    display: none !important;
  }
  .show-sm {
    display: block !important;
  }
  .show-sm-flex {
    display: flex !important;
  }
  .show-sm-grid {
    display: grid !important;
  }
  .show-sm-inline {
    display: inline !important;
  }
  .header {
    top: -25px;
    padding: 50px 0 25px;
  }
  .header__logo {
    width: 215px;
  }
  .top-btn {
    right: 30px;
    bottom: 30px;
    width: 40px;
    height: 40px;
  }
  .heroscreen {
    padding-top: 182px;
  }
  .heroscreen__title {
    font-size: 30px;
    line-height: 39px;
    letter-spacing: 0;
  }
  .heroscreen__text {
    font-size: 14px;
    line-height: 25px;
    margin-top: 10px;
  }
  .heroscreen__author2-img::before {
    width: 27px;
    height: 27px;
  }
  .heroscreen__info {
    max-width: 264px;
    font-size: 12px;
    line-height: 20px;
    margin-top: 31px;
  }
  .heroscreen__form-btn, .heroscreen__form-check {
    margin-top: 20px;
  }
  input[type=text], input[type=tel], input[type=email] {
    height: 82px;
  }
  .button {
    font-size: 14px;
    line-height: 27px;
  }
  .check-wrap {
    gap: 10px;
  }
  .check-wrap__text {
    line-height: 25px;
  }
  .section__title {
    font-size: 30px;
    line-height: 39px;
  }
  .about {
    margin-top: 71px;
  }
  .about__video {
    height: 220px;
    margin-top: 30px;
  }
  .about__video-play {
    width: 68px;
    height: 68px;
  }
  .about__video-play .icon {
    width: 29px;
    height: 29px;
  }
  .campaign {
    margin-top: 60px;
  }
  .campaign .content-wrap > .section__title {
    font-size: 18px;
    line-height: 23px;
    text-align: left;
  }
  .campaign .content-wrap > .section__title span {
    font-weight: bold;
  }
  .campaign__info {
    align-items: flex-start;
    flex-direction: column;
  }
  .campaign__grid {
    grid-template-columns: 100%;
    margin-top: 44px;
  }
  .campaign__item {
    padding: 60px 24px 90px;
  }
  .campaign__item:nth-child(3) .campaign__item-decor {
    right: -20px;
  }
  .campaign__form {
    margin: 167px -18px 0;
    padding: 169px 18px 35px;
  }
  .campaign__form-img {
    width: 278px;
    top: -128px;
    right: calc(50% - 139px);
  }
  .campaign__form-wrap {
    max-width: 100%;
    flex-direction: column;
  }
  .campaign__form input[type=text].campaign__form-input,
  .campaign__form input[type=tel].campaign__form-input {
    width: 100%;
  }
  .campaign__form-check {
    width: 100%;
  }
  .cases {
    margin-top: 88px;
  }
  .cases__slider {
    margin: 70px -18px 0;
  }
  .cases__item {
    padding: 18px 18px 0;
  }
  .cases__item-head {
    gap: 16px;
  }
  .cases__item-img {
    width: 124px;
  }
  .cases__item-name {
    font-size: 22px;
  }
  .cases__item-quote {
    font-size: 14px;
    line-height: 25px;
    margin-top: 16px;
  }
  .cases__item-quote .icon {
    width: 50px;
  }
  .cases__item-columns {
    margin-top: 60px;
  }
  .cases__column-title {
    line-height: 22px;
  }
  .cases__column-text {
    font-size: 12px;
    line-height: 20px;
  }
  .cases__column-links {
    margin-top: 40px;
  }
  .cases__column-link {
    gap: 5px;
  }
  .cases__total {
    grid-template-columns: 100%;
    gap: 0;
    margin: 30px -18px 0 !important;
    padding: 18px 18px 24px;
  }
  .cases__total-title {
    grid-column: auto;
    font-size: 26px;
    line-height: 29px;
    padding-right: 42px;
  }
  .cases__total-title br {
    display: none;
  }
  .cases__total-images {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 28px;
  }
  .cases__total-item {
    margin-top: 24px;
  }
  .cases__total-item + .cases__total-item {
    margin-top: 16px;
  }
  .cases__total-item:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
  .cases__total-image {
    display: none;
  }
  .cases__total-image:first-child {
    display: block;
    transform: none;
  }
  .cost {
    margin-top: 83px;
  }
  .cost .section__title {
    text-align: left;
  }
  .cost__slider {
    margin-left: -18px;
    margin-right: -18px;
  }
  .cost__slider-btns {
    justify-content: flex-end;
  }
  .cost__item {
    width: 324px;
    padding-bottom: 32px;
  }
  .cost__item-title {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 50px;
  }
  .cost__item-price, .cost__item-btn {
    margin-top: 28px;
  }
  .cost__discount-item {
    font-size: 14px;
    line-height: 17px;
  }
  .contents {
    margin-top: 148px;
  }
  .contents__items {
    margin-top: 30px;
  }
  .contents__item {
    font-size: 18px;
    line-height: 26px;
    padding: 35px 30px;
  }
  .contents__module {
    border-radius: 16px;
    margin-top: 39px;
  }
  .contents__module-num {
    width: 155px;
  }
  .contents__module-title {
    font-size: 18px;
    line-height: 23px;
  }
  .contents__module + .contents__module {
    margin-top: 10px;
  }
  .contents__module::before {
    background: linear-gradient(340deg, #B2C2DA, rgba(95, 103, 116, 0), #B2C2DA) border-box;
    border-radius: 16px;
  }
  .contents__info-item {
    padding: 30px 20px;
  }
  .contents__info-item + .contents__info-item .contents__info-img {
    width: 59px;
    top: -6px;
    right: -9px;
  }
  .contents__info-title {
    padding-right: 40px;
  }
  .contents__info-img {
    width: 45px;
    top: 0;
    right: -2px;
  }
  .contents__info-text {
    font-size: 12px;
    line-height: 20px;
    margin-top: 50px;
  }
  .contents__banner {
    background: image-set(url(../images/contents__banner-bg-sm.png) 1x, url(../images/contents__banner-bg-sm.webp) 1x) no-repeat center/cover;
    background: -webkit-image-set(url(../images/contents__banner-bg-sm.png) 1x, url(../images/contents__banner-bg-sm.webp) 1x) no-repeat center/cover;
    padding: 18px 18px 269px;
    margin: 45px -18px 0;
  }
  .contents__banner-text {
    font-size: 30px;
    line-height: 39px;
  }
  .contents__banner-text span {
    font-weight: inherit;
  }
  .contents__banner-img {
    width: 403px;
    right: -21px;
    bottom: -20px;
  }
  .reviews {
    margin-top: 81px;
  }
  .reviews__slider {
    margin-top: 72px;
    overflow: visible;
  }
  .reviews__slider-btns {
    justify-content: flex-end;
    margin-top: 55px;
  }
  .author {
    margin-top: 55px;
    padding: 80px 0;
  }
  .author__img-wrap {
    width: 147px;
  }
  .author__img-wrap::before {
    right: 14px;
    bottom: 7px;
    width: 14px;
    height: 14px;
    border-width: 3px;
  }
  .author__name {
    font-size: 24px;
    line-height: 24px;
  }
  .author__quote {
    font-size: 14px;
    line-height: 25px;
  }
  .author__items {
    gap: 10px 12px;
  }
  .author__item {
    width: calc(50% - 6px);
    height: 200px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
  }
  .author__item-title {
    min-height: auto;
    font-size: 24px;
    line-height: 32px;
    margin: 0;
    white-space: normal;
  }
  .author__item-title span {
    font-size: inherit;
    line-height: inherit;
  }
  .author__item-title span span {
    font-size: inherit;
    line-height: inherit;
  }
  .author__item-text {
    min-height: auto;
    font-size: 12px;
    line-height: 20px;
    margin-top: 12px;
  }
  .author__item:last-child {
    width: 100%;
    height: 157px;
  }
  .start {
    margin-top: 64px;
  }
  .start .section__title {
    margin-left: -18px;
    margin-right: -18px;
  }
  .start__items {
    grid-template-columns: 100%;
    gap: 10px;
  }
  .start__item {
    border-radius: 16px;
  }
  .start__item-num {
    margin-bottom: 80px;
  }
  .start__item::before {
    border-radius: 16px;
  }
  .start__subtitle {
    font-size: 24px;
    line-height: 32px;
    margin-top: 64px;
  }
  .start__info {
    grid-template-columns: 100%;
  }
  .start__form {
    margin-top: 64px;
  }
  .start__form-title {
    margin-left: -18px;
    margin-right: -18px;
  }
  .start__form-wrap {
    grid-template-columns: 100%;
    gap: 20px;
  }
  .start__form-btn {
    grid-column: auto;
    order: 1;
    font-size: 12px;
    line-height: 27px;
    margin-top: 0;
  }
  .start__form-check {
    margin-top: 0;
  }
  .start__form-input:nth-child(1) {
    margin-bottom: 0;
  }
  .telegram {
    margin-top: 64px;
  }
  .telegram__wrap {
    margin-left: -18px;
    margin-right: -18px;
    padding: 18px 18px 563px;
  }
  .telegram__img {
    width: 324px;
  }
  .telegram__blur {
    top: auto;
    left: -845px;
    bottom: -50px;
  }
  .faq {
    margin-top: 100px;
  }
  .faq__item {
    border-radius: 12px;
    margin-top: 30px;
  }
  .faq__item-text {
    font-size: 12px;
    line-height: 20px;
  }
  .footer {
    margin-top: 139px;
    padding: 80px 0 36px;
  }
  .footer__title {
    font-size: 30px;
    line-height: 39px;
  }
  .footer__logo {
    width: 167px;
  }
  .footer__bottom {
    margin-top: 40px;
    padding-top: 83px;
  }
  .popup-wrap .popup {
    padding: 180px 18px 20px;
  }
  .popup-wrap .popup__title {
    font-size: 32px;
    line-height: 40px;
  }
  .popup-wrap .popup__img {
    width: 290px;
    right: calc(50% - 145px);
  }
  .offer-page__title {
    font-size: 32px;
    line-height: 40px;
  }
  .offer-page__text p {
    font-size: 14px;
    line-height: 20px;
  }
  .contents__frags-title {
    font-size: 30px;
    line-height: 39px;
  }
  .contents__frags-text {
    font-size: 14px;
    line-height: 24px;
    margin-top: 20px;
  }
  .contents__frags-play {
    width: 68px;
    height: 68px;
  }
  .contents__frags-play .icon {
    width: 29px;
    height: 29px;
  }
  .contents__frags-btns {
    margin-top: 20px;
  }
}
@media (max-width: 575px) {
  .hide-xs {
    display: none !important;
  }
  .show-xs {
    display: block !important;
  }
  .show-xs-flex {
    display: flex !important;
  }
  .show-xs-inline {
    display: inline !important;
  }
}

.form-promo {
  position: relative;
  width: 100%;
  max-width: 584px;
  margin-top: 28px;
}

.form-promo.visible .form-promo__wrap {
  opacity: 1;
  pointer-events: auto;
}

.form-promo.visible .form-promo__link {
  opacity: 0;
  pointer-events: none;
}

.form-promo.success .form-promo__btn {
  opacity: 0;
  pointer-events: none;
}

.form-promo.success .form-promo__success {
  opacity: 1;
  pointer-events: auto;
}

.form-promo__wrap {
  display: flex;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: .2s;
}

input[type="text"].form-promo__input {
  height: 47px;
  flex-grow: 1;
  background: none;
  border: none;
  border-bottom: 1px solid #7E7E7E;
  border-radius: 0;
  padding: 0;
}

.form-promo__btn {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 27px;
  font-family: "Montserrat";
  padding: 10px 20px;
  text-transform: none;
}

.form-promo__link {
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 20px;
  color: #fff;
  line-height: 27px;
  text-decoration: underline;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity .2s;
}

.form-promo__link:hover {
  text-decoration: none;
}

.form-promo__success {
  position: absolute;
  top: 50%;
  right: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #fff;
  line-height: 27px;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  transition: .2s;
}

@media(max-width: 767px) {
  .form-promo {
    margin-top: 20px;
    transition: .2s;
  }

  .form-promo__wrap {
    max-height: 27px;
    flex-direction: column;
  }

  .form-promo.visible .form-promo__wrap {
    max-height: none;
  }

  .form-promo.visible .form-promo__link {
    top: 0;
    transform: none;
  }

  .form-promo.success {
    margin-bottom: -50px;
  }

  .campaign__form-wrap .form-promo {
    margin-top: 0;
  }
}

.popup__iframe-wrap {
  height: 400px !important;
}

.popup__iframe-wrap iframe {
  height: 400px !important;
  margin-top: 24px;
}

.campaign__iframe-wrap {
  max-width: 65%;
  margin-top: 24px;
}

@media(max-width: 767px) {
  .campaign__iframe-wrap {
    max-width: 100%;
  }
}

.cost__item {
  height: auto;
  display: flex;
  flex-direction: column;
}

.cost__item-option:has(+ .cost__item-btn) {
  margin-bottom: auto;
}