@font-face {
  font-family: 'TT Norms';
  src: url(../fonts/TTNorms-Regular.otf);
  font-weight: 400;
}

@font-face {
  font-family: 'TT Norms';
  src: url(../fonts/TTNorms-Bold.otf);
  font-weight: 700;
}

@font-face {
  font-family: 'Calama';
  src: url(../fonts/Calama.ttf);
  font-weight: 400;
}

body{
  overflow-x: hidden;
}

.container {
  z-index: 1;
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: 'TT Norms', sans-serif;
  background: #DFE9F3;
  background: linear-gradient(90deg, rgba(223, 233, 243, 1) 0%, rgba(255, 255, 255, 1) 100%);
  margin: 0;
  padding: 0;
  color: #1E1E1E;
}

.header {
  padding: 44.5px 0 44.5px;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo>a>img {
  height: 75px;
}

.header__list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__link {
  font-size: 28px;
  line-height: 120%;
  text-transform: lowercase;
  transition: 0.5s;
}

.header__link:hover {
  color: #FF0000;
  transition: 0.5s;
}

.infinite-scroll {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 44.5px 0;
}

.infinite-scroll2 {
  padding-top: 0;
}

.scroll-track {
  display: inline-flex;
  animation: scroll 30s linear infinite;
}

.scroll-track>span {
  font-size: 300px;
  font-family: 'Calama', sans-serif;
  line-height: 100%;
  display: inline-block;
  white-space: nowrap;
  color: #000;
  text-transform: uppercase;
}

.scroll-track>span.scroll-dot {
  color: #FF0000;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.about {
  padding: 44.5px 0;
}

.about__container {
  display: flex;
  align-items: stretch;
  gap: 32px;
}

.about__block {
  width: calc(50% - 16px);
  background: #343434;
  border-radius: 8px;
  padding: 99px 58px 57px 69px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about__title {
  font-size: 24px;
  line-height: 120%;
  color: #fff;
  margin-bottom: 40px;
  text-indent: 30px;
}

.about__btn {
  height: 67px;
  padding: 0 29px;
  font-size: 24px;
  display: flex;
  align-items: center;
  background: #FF0000;
  color: #fff;
  border-radius: 8px;
  border: 0;
}

.about__btn>img {
  margin-left: 16px;
}

.about__bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about__bottom-title {
  font-size: 24px;
  color: #fff;
  line-height: 100%;
}

.about__bottom-countries {
  display: flex;
  gap: 32px;
}

.about__bottom-country>img {
  height: 81px;
  border-radius: 8px;
}

@media screen and (max-width: 1800px) {
  .about__bottom-country>img{
    height: 45px;
  }
}

.about__image {
  width: calc(50% - 16px);
  position: relative;
}

.about__image>img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.about__text{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  padding: 0 65px;
  bottom: 50px;
  left: 0;
  width: 100%;
}

.about__quote-title{
  font-size: 36px;
  line-height: 100%;
  letter-spacing: -1px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about__quote-subtite{
  font-size: 36px;
  line-height: 100%;
  letter-spacing: -1px;
  color: #fff;
}

.about__signature>img{
  height: 169px;
}

.stats {
  padding-bottom: 32px;
}

.stats__top {
  display: flex;
  justify-content: space-between;
  padding: 27px 0 32px;
  border-top: 1px solid #292929;
}

.stats__text {
  width: calc(50% - 19px);
}

.stats__title {
  font-family: "Calama", sans-serif;
  color: #292929;
  font-size: 80px;
  line-height: 100%;
  text-transform: uppercase;
}

.stats__box {
  width: calc(50% - 19px);
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.stats__item {
  width: calc(50% - 16px);
  background: #343434;
  border-radius: 8px;
  padding: 20px 24px 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stats__item-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 120px;
}

.stats__icon {
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
}

.stats__subtitle {
  font-size: 24px;
  line-height: 44px;
  color: #fff;
}

.stats__icon>img {
  width: 60px;
}

.stats__amount {
  font-size: 54px;
  color: #fff;
  line-height: 100%;
  margin-bottom: 15px;
}

.stats_bottomtitle {
  font-size: 15px;
  line-height: 120%;
  color: #fff;
}

.analytics {
  padding-bottom: 50px;
}

.analytics__top {
  display: flex;
  gap: 38px;
  justify-content: space-between;
  padding: 27px 0 32px;
  border-top: 1px solid #292929;
}

.analytics__title {
  width: calc(50% - 19px);
}

.analytics__title>h2 {
  font-family: "Calama", sans-serif;
  color: #292929;
  font-size: 80px;
  line-height: 100%;
  text-transform: uppercase;
}

.analytics__subtitle {
  width: calc(50% - 19px);
  margin-bottom: 28px;
}

.analytics__subtitle>h3 {
  font-size: 36px;
  line-height: 120%;
  color: #292929;
  max-width: 754px;
}

.analytics__box {
  display: flex;
  justify-content: flex-end;
  border-bottom: 1px solid #292929;
  padding-bottom: 20px;
}

.analytics__items {
  width: calc(50% - 19px);
}

.analytics__item {
  display: flex;
  justify-content: space-between;
  padding: 32px 0;
  border-bottom: 1px solid rgba(41, 41, 41, 0.5);
  transition: transform 0.5s;
}

.analytics__item:hover .analytics__btn {
  transform: rotate(315deg);
  transition: transform 0.5s;
}

.analytics__item:last-child {
  border-bottom: 0;
}

.analytics__text>h4 {
  font-size: 32px;
  line-height: 24px;
  color: #292929;
}

.analytics__text>p {
  margin-bottom: 0;
  font-size: 20px;
  color: rgba(41, 41, 41, 0.5);
}

.analytics__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FF0000;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  cursor: pointer;
}

.feats {
  padding-bottom: 660px;
  background: url(../images/phone.png) 100% no-repeat;
  background-position: left bottom;
}

.feats__container {
  display: flex;
  justify-content: flex-end;
}

.information__block {
  border-top: 1px solid #292929;
  padding-top: 32px;
  padding-bottom: 72px;
}

.information__title {
  font-size: 88px;
  font-family: 'Calama', sans-serif;
  text-transform: uppercase;
  margin-bottom: 36px;
  line-height: 100%;
}

.information__box {
  display: flex;
  gap: 60px;
  justify-content: space-between;
}

.information__maps {
  width: calc(50% - 30px);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid #263046;
  background: #292929;
  color: #fff;
  font-size: 12px;
  margin-bottom: 20px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF0000;
  box-shadow: 0 0 8px rgba(255, 59, 48, .5);
}

.information__svg {
  width: 100%;
  height: auto;
}

.information__svg>g:focus {
  outline: 0;
}

[data-country] .region {
  cursor: pointer;
  transition: fill-opacity .2s ease, filter .2s ease, stroke-width .2s ease;
  fill: #FF0000;
  fill-opacity: .16;
  stroke: #FF0000;
  stroke-width: 1;
}

[data-country] .region:hover,
[data-country].is-hover .region {
  fill-opacity: .28;
  filter: drop-shadow(0 0 6px rgba(255, 59, 48, .35));
}

[data-country].is-active .region {
  fill-opacity: 1;
  stroke-width: 1.5;
}

.information__logos {
  width: calc(50% - 30px);
}

.information__subtitle {
  font-size: 44px;
  font-family: 'Calama', sans-serif;
  text-transform: uppercase;
  margin-bottom: 48px;
  line-height: 100%;
}

.logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.logo {
  height: 120px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 31.2%;
}

.logo img {
  max-width: 72%;
  max-height: 72%;
  display: block;
  user-select: none;
  pointer-events: none;
}

.panel-body {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .28s ease, transform .28s ease;
}

.panel-body.is-leaving {
  opacity: 0;
  transform: translateY(8px);
}

.panel-body.is-entering {
  opacity: 0;
  transform: translateY(-8px);
}

.panel-body.is-entering.is-now {
  opacity: 1;
  transform: translateY(0);
}

.work__block {
  border-top: 1px solid #292929;
  padding-top: 32px;
  padding-bottom: 72px;
}

.work__title {
  font-size: 88px;
  font-family: 'Calama', sans-serif;
  text-transform: uppercase;
  margin-bottom: 40px;
  line-height: 100%;
}

.work__split {
  display: flex;
  width: 100%;
  height: 700px;
  overflow: hidden;
  gap: 32px;
}

.work__split-item {
  flex: 0 0 calc((100% - 55%) / 3);
  border-radius: 32px;
  transition: flex-basis 500ms ease, background 500ms;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.work__split-item.active {
  flex-basis: 50%;
  background: #fff;
}

.work__split-item1,
.work__split-item2,
.work__split-item4{
  flex-direction: column-reverse;
}

.work__split-item1::before {
  content: '';
  width: 100%;
  height: 448px;
  background: url(../images/work1.png) 100% no-repeat;
  background-size: cover;
  background-position: top center;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
}

.work__split-item2::before {
  content: '';
  width: 100%;
  height: 448px;
  background: url(../images/work2.png) 100% no-repeat;
  background-size: cover;
  background-position: top center;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
}

.work__split-item3 {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../images/work3.png) 100% no-repeat;
  background-size: cover;
  background-position: top center;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
}

.work__split-item4::before {
  content: '';
  width: 100%;
  height: 448px;
  background: url(../images/work4.png) 100% no-repeat;
  background-size: cover;
  background-position: top center;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
}

.work__split-top{
  padding: 55px 0 0 0;
}

.work__split-item1 .work__split-top {
  background: #1C3B7E;
  height: 252px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  padding: 84px 32px 32px 0px;
}

.work__split-item2 .work__split-top {
  background: #75395B;
  height: 252px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  padding: 60px 32px 32px 0px;
}

.work__split-item4 .work__split-top {
  background: #1C3B7E;
  height: 252px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  padding: 84px 32px 32px 0px;
}

.work__split-top>span {
  color: #000;
  font-size: 36px;
  transform: rotate(90deg);
  display: inline-block;
}

.work__split-item.active .work__split-top {
  display: none;
}

.work__split-item.active::before {
  content: none;
}

.work__split-item.active .work__split-title {
  display: none;
}

.work__split-item.active {
  background: #292929;
  padding: 42px 24px 37px;
  flex-direction: column;
}

.work__split-item1.active {
  background: #1C3B7E;
  background: linear-gradient(180deg, rgba(28, 59, 126, 1) 0%, rgba(157, 124, 148, 1) 100%);
}

.work__split-item2.active {
  background: #534F67;
  background: linear-gradient(180deg, #534F67 0%, #9D7C94 100%);
}

.work__split-item3.active {
  background: #534F67;
  background: linear-gradient(180deg, #534F67 0%, #9D7C94 100%);
}

.work__split-item4.active {
  background: #1C3B7E;
  background: linear-gradient(180deg, rgba(28, 59, 126, 1) 0%, rgba(157, 124, 148, 1) 100%);
}

.work__split-details {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity calc(500ms / 1.2) ease, transform calc(500ms / 1.2) ease;
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.work__split-head>h3 {
  font-size: 36px;
  color: #fff;
  line-height: 120%;
  margin-bottom: 27px;
}

.work__split-head>p {
  color: #fff;
  font-size: 20px;
  line-height: 120%;
  max-width: 521px;
}

.work__split-bottom {
  display: flex;
  justify-content: flex-end;
}

.work__split-btn {
  height: 52px;
  padding: 0 20px;
  font-size: 24px;
  display: flex;
  align-items: center;
  background: #fff;
  color: #000;
  border-radius: 8px;
  border: 0;
}

.work__split-btn>img {
  margin-left: 16px;
}

.work__split-item.active .work__split-details {
  opacity: 1;
  transform: translateY(0);
  max-height: 1000px;
}

.tariffs__block {
  border-top: 1px solid #292929;
  padding-top: 32px;
  padding-bottom: 72px;
}

.tariffs__title {
  font-size: 88px;
  font-family: 'Calama', sans-serif;
  text-transform: uppercase;
  margin-bottom: 40px;
  line-height: 100%;
}

.tariffs__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.tariffs__item {
  width: 100%;
  border: 1px solid #FF0000;
  border-radius: 40px;
  padding: 40px 24px;
  color: #191D23;
  transition: 0.5s;
}

.tariffs__item:hover {
  color: #fff;
  background: #343434;
  border-color: #343434;
  transition: 0.5s;
}

.tariffs__item-title {
  font-size: 52px;
  line-height: 61px;
  margin-bottom: 11px;

}

.tariffs__item-des {
  color: #64748B;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 20px;
}

.tariffs__item:hover .tariffs__item-des {
  color: #fff;
}

.tariffs__item-amount {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.tariffs__item-price {
  font-size: 56px;
  font-weight: 600;
}

.tariffs__item-period {
  color: #4B5768;
  font-size: 16px;
}

.tariffs__item:hover .tariffs__item-period {
  color: #fff;
}

.tariffs__item-button {
  display: block;
  width: 100%;
  border-radius: 16px;
  border: 1px solid #FF0000;
  height: 44px;
  line-height: 42px;
  background: none;
  font-size: 24px;
  color: #FF0000;
  padding: 0;
}

.tariffs__item:hover .tariffs__item-button {
  color: #fff;
  background: #FF0000;
}

.tariffs__item-feats {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tariffs__item-feat {
  display: flex;
  align-items: center;
  gap: 17px;
  color: #383030;
  font-size: 16px;
}

.tariffs__item:hover .tariffs__item-feat {
  color: #fff;
}

.tariffs__item-feat.not {
  color: #A0ABBB;
}

.tariffs__item:hover .tariffs__item-feat.not {
  color: rgba(255, 255, 255, 0.5);
}

.footer {
  background: #292929;
  padding: 60px 0;
}

.footer__container {
  background: #DFE9F3;
  background: linear-gradient(90deg, rgba(223, 233, 243, 1) 0%, rgba(255, 255, 255, 1) 100%);
  border-radius: 52px;
  padding: 65px 50px 30px;
}

.footer__logo {
  position: absolute;
  left: 33px;
  top: 46px;
}

.footer__logo>img {
  height: 75px;
}

.footer__title {
  text-align: center;
  font-family: 'Calama', sans-serif;
  font-size: 150px;
  color: #292929;
  text-transform: uppercase;
  line-height: 100%;
  margin-bottom: 46px;
}

.footer__emoji {
  position: absolute;
  left: calc(50% - 80px);
  top: 140px;
}

.footer__form {
  width: 738px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 45px;
}

.footer__form-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__form-item>label {
  font-size: 24px;
  color: #292929;
  line-height: 24px;
  margin-bottom: 0;
}

.footer__form-item>input {
  width: 100%;
  height: 58px;
  line-height: 58px;
  border: 1px solid #292929;
  border-radius: 18px;
  padding: 0 20px;
}

.footer__form-item>input:focus {
  outline: none;
  border-color: #FF0000;
}

.footer__form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.footer__form-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__form-left>p {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
  max-width: 332px;
}

.form__form-btn {
  height: 58px;
  line-height: 58px;
  background: #FF0000;
  text-align: center;
  padding: 0 77px;
  border-radius: 16px;
  border: 0;
  color: #fff;
  font-size: 24px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__bottom-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__bottom-item {
  font-size: 24px;
  color: #292929;
}

.footer__bottom-link {
  font-size: 24px;
  color: #1E1E1E;
}

.footer__bottom-link:hover {
  color: #FF0000;
}

.reviews{
  background: url(../images/reviews__bg.png) no-repeat;
  background-position: bottom left;
  padding-bottom: 150px;
}

.reviews__slider{
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-bottom: 175px;
  position: relative;
}

.swiper-video{
  width: 100%;
  height: auto;
}

.reviews__video{
  background: url(../images/nout.png) 100% no-repeat;
  width: 895.16px;
  height: 472.46px;
  margin-left: 100px;
  background-size: cover;
  overflow: hidden;
}

.swiper-video-item {
    width: 100%;
    height: 472px;
    position: relative;
    display: block;
    overflow: hidden;
}

.swiper-video-item > img{
  position: absolute;
  left: 110px;
  z-index: 5;
  top: 25px;
  border-radius: 8px;
}

.swiper-review {
  width: 740px;
  height: 100%;
  margin: 0;
}

.swiper-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.swiper-top-right{
  display: flex;
  align-items: center;
  gap: 16px;
}

.swiper-top-right>button{
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
}

.swiper-button-disabled{
  opacity: 0.5;
}

.swiper-author{
  font-size: 20px;
  letter-spacing: -1px;
  color: #292929;
  margin-bottom: 24px;
}

.swiper-review .swiper-slide>p{
  color: #292929;
  font-size: 17px;
}

/* Мобильная адаптация header */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .header {
    padding: 20px 0;
  }

  .header__container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
  }

  .header__logo img {
    width: 100px;
    height: auto;
  }

  .header__menu {
    position: relative;
  }

  .header__nav {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    z-index: 100;
    min-width: 180px;
  }

  .header__nav.open {
    display: block;
  }

  .header__list {
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    z-index: 5;
  }

  .header__item {
    margin: 0;
    border-bottom: 1px solid #eee;
    padding: 10px 20px;
  }

  .header__item:last-child {
    border-bottom: none;
  }

  .header__link {
    font-size: 16px;
    color: #222;
  }

  /* Бургер-иконка */
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    gap: 6px;
  }

  .burger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #222;
    border-radius: 2px;
    transition: 0.3s;
  }

  .infinite-scroll {
    overflow: hidden;
    margin-bottom: 0;
    padding: 30px 0;
  }

  .scroll-track>span {
    font-size: 50px;
  }

  .infinite-scroll .scroll-track {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    white-space: nowrap;
    animation: scroll-horizontal 12s linear infinite;
  }

  .infinite-scroll .scroll-dot {
    font-size: 18px;
    color: #ffb800;
    margin: 0 4px;
  }

  .about {
    padding: 0 0 20px;
  }

  .about__container {
    flex-direction: column-reverse;
    gap: 24px;
    padding: 0 12px;
  }

  .about__block {
    width: 100%;
    padding: 40px 25px;
  }

  .about__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .about__title {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .about__btn {
    font-size: 16px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .about__bottom {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .about__bottom-title {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .about__bottom-title>br {
    display: none;
  }

  .about__bottom-countries {
    gap: 8px;
  }

  .about__bottom-country>img {
    height: 30px;
  }

  .about__text{
    padding: 0 20px;
    bottom: 20px;
  }

  .about__text h2 {
    font-size: 18px;
    line-height: 1.3;
  }

  .about__text h3 {
    font-size: 15px;
    margin-top: 8px;
  }

  .about__quote-title{
    font-size: 20px;
  }

  .about__quote-subtite{
    font-size: 14px;
  }

  .about__image {
    width: 100%;
    text-align: center;
    margin-top: 16px;
  }

  .about__image img {
    width: 100%;
  }

  .about__signature img {
    width: 100px;
    height: auto;
  }

  .about__btn>img{
    display: none;
  }

  .stats__top {
    flex-direction: column;
    padding-bottom: 12px;
  }

  .stats__text {
    width: 100%;
  }

  .stats__box {
    width: 100%;
    gap: 16px;
  }

  .stats__title {
    font-size: 40px;
    margin-bottom: 12px;
  }

  .stats__item {
    width: 100%;
    padding: 12px 12px 24px;
  }

  .stats__item-top {
    margin-bottom: 40px;
  }

  .stats__icon {
    height: 40px;
    width: 40px;
  }

  .stats__icon>img {
    width: 30px;
  }

  .stats__subtitle {
    font-size: 16px;
    line-height: 20px;
  }

  .stats__amount {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 8px;
  }

  .stats_bottomtitle {
    font-size: 14px;
  }

  .analytics {
    padding-bottom: 0;
  }

  .analytics__top {
    padding-bottom: 16px;
    flex-direction: column;
  }

  .analytics__title {
    width: 100%;
  }

  .analytics__title>h2 {
    font-size: 40px;
  }

  .analytics__subtitle {
    width: 100%;
    margin-bottom: 16px;
  }

  .analytics__subtitle>h3 {
    font-size: 20px;
    max-width: 100%;
  }

  .analytics__items {
    width: 100%;
  }

  .analytics__item {
    padding: 12px 0;
  }

  .analytics__text {
    width: calc(100% - 47px);
  }

  .analytics__text>h4 {
    font-size: 18px;
  }

  .analytics__text>p {
    font-size: 12px;
  }

  .feats {
    background-size: 100%;
    padding-bottom: 300px;
  }

  .information__block {
    padding-bottom: 36px;
  }

  .information__title {
    font-size: 40px;
    margin-bottom: 16px;
  }

  .information__box {
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }

  .information__maps {
    width: 100%;
  }

  .information__logos {
    width: 100%;
  }

  .information__subtitle {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .logos {
    gap: 8px;
  }

  .logo {
    height: 80px;
  }

  .work__block {
    padding-bottom: 32px;
  }

  .work__title {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .work__split {
    flex-direction: column;
    gap: 16px;
    height: 100%;
  }

  .work__split-item {
    height: 350px;
  }

  .work__split-item.active {
    padding: 24px;
  }

  .work__split-top {
    height: 120px;
    padding: 50px 0 0 0px;
  }

  .work__split-top>span {
    font-size: 18px;
  }

  .work__split-item1::before {
    height: 230px;
  }

  .work__split-details {
    max-width: 100%;
  }

  .work__split-head>h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .work__split-head>p {
    font-size: 16px;
    max-width: 100%;
  }

  .work__split-btn {
    width: 100%;
    height: 44px;
    line-height: 44px;
    font-size: 14px;
    justify-content: center;
  }

  .tariffs__block {
    padding-bottom: 32px;
  }

  .tariffs__title {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .tariffs__box {
    flex-direction: column;
    gap: 16px;
  }

  .tariffs__item {
    padding: 24px 18px;
  }

  .tariffs__item-title {
    font-size: 26px;
    line-height: 30px;
  }

  .tariffs__item-price {
    font-size: 28px;
  }

  .tariffs__item-amount {
    margin-bottom: 16px;
  }

  .tariffs__item-period {
    font-size: 12px;
  }

  .tariffs__item-feats {
    margin-top: 24px;
    gap: 8px;
  }

  .tariffs__item-feat {
    font-size: 14px;
    gap: 10px;
  }

  .tariffs__item-feat>img {
    width: 16px;
  }

  .footer {
    padding: 30px;
  }

  .footer__container {
    padding: 60px 35px 25px;
    border-radius: 24px;
  }

  .footer__logo {
    top: 20px;
  }

  .footer__logo>img {
    height: 32px;
  }

  .footer__title {
    font-size: 48px;
  }

  .footer__emoji {
    left: calc(50% - 20px);
    top: 85px;
  }

  .footer__emoji>img {
    width: 40px;
    height: auto;
  }

  .footer__form {
    width: 100%;
    margin-bottom: 0;
    gap: 12px;
  }

  .footer__form-item {
    gap: 8px;
  }

  .footer__form-item>label {
    font-size: 14px;
  }

  .footer__form-bottom {
    flex-direction: column;
  }

  .footer__form-left {
    gap: 12px;
  }

  .footer__form-left>p {
    font-size: 12px;
  }

  .form__form-btn {
    width: 100%;
    margin-top: 20px;
    padding: 0;
    font-size: 14px;
  }

  .footer__bottom {
    display: none;
  }
  .work__split-item{
    padding: 24px;
  }
  .work__split-item .work__split-details{
    opacity: 1;
    transform: translateY(0);
    max-height: 1000px;
  }
  .work__split-item3{
    background: #534F67;
    background: linear-gradient(180deg, #534F67 0%, #9D7C94 100%);
    flex-direction: column;
    flex-basis: 50%;
  }
  .work__split-item .work__split-top{
    display: none;
  }
  .work__split-item::before{
    content: none;
  }
  .work__split-item2{
    background: #534F67;
    background: linear-gradient(180deg, #534F67 0%, #9D7C94 100%);
    flex-direction: column;
    flex-basis: 50%;
  }
  .work__split-item4{
    background: #1C3B7E;
    background: linear-gradient(180deg, rgba(28, 59, 126, 1) 0%, rgba(157, 124, 148, 1) 100%);
    flex-direction: column;
    flex-basis: 50%;
  }
  .reviews{
    background: none;
    padding-bottom: 30px;
  }
  .reviews__slider{
    padding-bottom: 40px;
  }
  .reviews__video{
    width: 100%;
    margin: 0;
    height: 200px;
    background-size: cover;
  }
  .reviews__video{
    width: 100%;
    height: auto;
    background: none;
  }
  .swiper-video-item{
    height: auto;
  }
  .swiper-video-item > img{
    position: relative;
    width: 100%;
    left: auto;
    top: auto;
  }
}

/* Показываем бургер только на мобильных */
.burger {
  display: none;
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }
}

@keyframes scroll-horizontal {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}