@charset "UTF-8";
:root {
  --font-family: "AtypDisplayR", sans-serif;
  --ff500: "AtypDisplayM", sans-serif;
  --ff600: "AtypDisplayS", sans-serif;
  --content-width: 1200px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --section-padding-top: 130px;
  --color-white: #fff;
  --color-accent: #FF3DDD;
  --color-text: #0A101E;
  --color-blue: #1d51fa;
  --pink: #FF3DDD;
  --pink-hsl: hsl(311, 100%, 62%);
  --color-grey: #E1E1E1;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "AtypDisplayM";
  src: url("../fonts/../fonts/AtypDisplay-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "AtypDisplayR";
  src: url("../fonts/../fonts/AtypDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "AtypDisplayS";
  src: url("../fonts/../fonts/AtypDisplay-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: 16px;
}

body {
  color: var(--color-text);
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

p {
  margin: 0;
  padding: 0;
}

strong {
  font-family: var(--ff600);
  font-weight: 400;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.grid {
  display: -ms-grid;
  display: grid;
  /*-ms-grid-columns: (1fr)[12];*/
  grid-template-columns: repeat(12, 1fr);
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
}

.btn {
  font-size: 16px;
  font-family: var(--ff500);
}

.border-white {
  border: 1px solid var(--color-white);
}

.color-white {
  color: var(--color-white);
}

.btn-red {
  background: var(--pink);
}

.btn {
  height: 40px;
  line-height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 2.8vw;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.2s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.2s ease-in-out;
}

.btn-hover {
  overflow: hidden;
  position: relative;
  /* Presentational Styles */
}
.btn-hover::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
}
.btn-hover::after {
  content: attr(data-replace);
  height: 100%;
  top: 0;
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: translate3d(0, 200%, 0);
  transform: translate3d(0, 200%, 0);
  -webkit-transition: -webkit-transform 0.18s cubic-bezier(0.76, 0, 0.24, 1);
  transition: -webkit-transform 0.18s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.18s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.18s cubic-bezier(0.76, 0, 0.24, 1), -webkit-transform 0.18s cubic-bezier(0.76, 0, 0.24, 1);
  color: inherit;
}
.btn-hover:hover {
  background-color: var(--color-white);
  color: var(--color-text);
}
.btn-hover:hover::after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.btn-hover span {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.18s cubic-bezier(0.76, 0, 0.24, 1);
  transition: -webkit-transform 0.18s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.18s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.18s cubic-bezier(0.76, 0, 0.24, 1), -webkit-transform 0.18s cubic-bezier(0.76, 0, 0.24, 1);
}
.btn-hover:hover span {
  -webkit-transform: translate3d(0, -200%, 0);
  transform: translate3d(0, -200%, 0);
}
.btn-hover body {
  display: -ms-grid;
  display: grid;
  font-family: "Poppins", sans-serif;
  font-size: 27px;
  line-height: 1.5;
  height: 100vh;
  place-items: center;
}
.btn-hover a {
  text-decoration: none;
  color: #18272F;
  font-weight: 700;
  vertical-align: top;
}

.btn-red {
  height: 80px;
  line-height: 78px;
  font-size: 20px;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.color-pink {
  color: var(--pink) !important;
}

section:not(.hero, .consultation) {
  padding-top: clamp(2.5rem, 4.63vw + 0.833rem, 5rem);
  padding-bottom: clamp(1.125rem, 2.546vw + 0.208rem, 2.5rem);
}

.section__title {
  font-family: var(--ff600);
  font-size: clamp(2.25rem, 5.093vw + 0.417rem, 5rem);
  line-height: 107%;
  text-transform: uppercase;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.underline {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.box__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  margin-top: 0;
  margin-bottom: 20px;
  padding: 0;
  font-family: var(--ff600);
  font-size: 24px;
  line-height: 108%;
  text-transform: uppercase;
  color: inherit;
}

.border-dark {
  border: 1px solid var(--color-text);
}

.bg-pink {
  background-color: var(--pink);
}

.bg-dark {
  background-color: var(--color-text);
}

.container-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
  margin-bottom: clamp(1.625rem, 3.935vw + 0.208rem, 3.75rem);
}

.bg-white {
  background-color: var(--color-white);
}

.hover-bg-blue:hover {
  background-color: var(--color-blue);
  color: var(--color-white);
}

.slider__manage {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}
.slider__manage .slider__arrow {
  cursor: pointer;
}
.slider__manage .slider__arrow path {
  fill: #0A101E;
}

.desc-hidden {
  display: none;
}

.swiper__pagination {
  display: none;
  margin: 30px 0 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #BBC4DB;
  opacity: 1;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--pink);
}

.header {
  width: 100%;
  padding: 40px 0;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
}
.header__container {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: var(--color-white);
}
.header__nav .btn-hover {
  margin-left: 3vw;
}
.header__nav a {
  color: inherit;
}
.header .lang__block {
  margin-left: clamp(10px, 1.3vw, 50px);
}
/*.header .trp-ls-shortcode-language a:not(.trp-ls-shortcode-disabled-language) {*/
/*  display: none;*/
/*}*/
.header .nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(10px, 2vw, 50px);
}
.header .nav__link {
  position: relative;
}
.header .nav__link::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  display: block;
  height: 3px;
  width: 0;
  background-color: var(--color-white);
  -webkit-transition: width 0.28s ease-in-out;
  transition: width 0.28s ease-in-out;
}
@media (any-hover: hover) {
  .header .nav__link:hover::before {
    width: 100%;
  }
}
.header .nav__link:focus-visible {
  outline: 1px solid var(--color-white);
  outline-offset: 4px;
}

.burger {
  display: none;
  width: 43px;
  height: 43px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  padding: 0;
  color: var(--color-white);
  background-color: transparent;
  cursor: pointer;
}
.burger .burger__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0;
  line-height: 0;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger .burger__line:nth-of-type(2) svg {
  height: 2px;
}

/* Стили для активного состояния */
.burger--active .burger__line:nth-of-type(1) {
  -webkit-transform: translateY(6.5px) rotate(45deg);
  -ms-transform: translateY(6.5px) rotate(45deg);
  transform: translateY(6.5px) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.burger--active .burger__line:nth-of-type(2) {
  opacity: 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.burger--active .burger__line:nth-of-type(3) {
  -webkit-transform: translateY(-6.5px) rotate(-45deg);
  -ms-transform: translateY(-6.5px) rotate(-45deg);
  transform: translateY(-6.5px) rotate(-45deg);
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 820px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff3ddd), to(#1d51fa));
  background: linear-gradient(180deg, #ff3ddd 0%, #1d51fa 100%);
  overflow: clip;
}
.hero__container {
  max-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 160px;
  padding-bottom: 20px;
}
.hero .page__title {
  margin-bottom: 50px;
  font-family: var(--ff600);
  font-size: clamp(48px, 1.6037rem + 4.4681vw, 90px);
  line-height: 99%;
  text-transform: uppercase;
}
.hero .sub-title {
  margin-bottom: 57px;
  font-family: var(--font-family);
  font-size: clamp(24px, 0.7vw + 1.167rem, 32px);
  line-height: 1.6;
  color: var(--color-white);
}
.hero__left {
  margin-left: -10px;
  max-width: 730px;
  width: 100%;
  margin-right: 10px;
}
.hero__right {
  width: 100%;
  max-height: 650px;
  margin-right: -45px;
}
.hero__list {
  padding-left: 45px;
  margin-top: -15px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  font-family: var(--ff600);
  font-size: clamp(32px, 1.852vw + 1.23rem, 48px);
  line-height: 140%;
  text-transform: uppercase;
  color: var(--pink);
}
.hero__list .hero-slide {
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: inherit;
  -webkit-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}
.hero__list .hero-slide::before, .hero__list .hero-slide::after {
  font-family: var(--ff600);
  font-size: inherit;
  line-height: inherit;
  text-transform: uppercase;
  color: var(--color-white);
}
.hero__list .swiper-slide-active {
  font-family: var(--ff600);
  width: 100%;
  font-size: clamp(32px, 2.56vw + 1rem, 56px);
  text-transform: uppercase;
  color: var(--color-white);
}
.hero__list .swiper-slide-active::before {
  content: "{";
  margin-left: -25px;
}
.hero__list .swiper-slide-active::after {
  content: "}";
  margin-right: -20px;
}
.hero__img {
  margin-top: 78px;
  margin-bottom: 50px;
}

.bottom {
  background-color: #0a101e;
  color: var(--color-white);
  position: relative;
  overflow: clip;
}
.bottom svg {
  position: absolute;
  display: inline-block;
  right: 0;
  top: 0;
  bottom: 0;
}
.bottom .grid {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.bottom-item {
  padding: 40px 0 40px 0;
  text-align: center;
  -ms-grid-column-span: 3;
  grid-column: 3 span;
}
.bottom-item:first-of-type {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
}
.bottom-item:last-of-type::after {
  content: "";
  display: block;
  position: absolute;
  right: -44px;
  left: -3vw;
  top: -48px;
  bottom: -31px;
  width: max(45vw, (100% - 1230px) / 2 + 418.2px);
  background-color: var(--pink);
  -webkit-transform: skew(-18deg);
  -ms-transform: skew(-18deg);
  transform: skew(-18deg);
  z-index: -1;
}
.bottom-item-num {
  font-family: var(--ff600);
  font-size: 68px;
  line-height: 85%;
  text-align: center;
}
.bottom-item-num::after {
  display: inline-block;
  content: "+";
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.bottom-item-text {
  font-family: var(--ff500);
  font-size: 20px;
  /*line-height: 290%;*/
}
.bottom-item-red {
  position: relative;
  z-index: 2;
  -ms-grid-column: 10;
  -ms-grid-column-span: 3;
  grid-column: 10/13;
  -ms-grid-column-align: end;
  justify-self: end;
  max-width: 240px;
  text-align: left;
}

.typed-text.typing-active {
  color: var(--color-white); /* Красный цвет для печатающего текста */
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*===========
Clients section and slider
======================*/
.clients {
  margin-top: 30px;
  margin-bottom: 80px;
}
.clients .container {
  position: relative;
}
.clients__slider-item {
  padding: 0;
  margin: 0;
  position: relative;
  text-align: center;
}
.clients__slider-top {
  width: 100%;
  padding: 23px 30px;
  position: relative;
}
.clients__slider-top::after {
  position: absolute;
  display: block;
  content: "";
  right: 0;
  top: 30px;
  bottom: 30px;
  width: 1px;
  height: auto;
  background-color: var(--color-grey);
}
.clients__slider-bottom {
  position: relative;
  width: 100%;
  padding: 23px 30px;
}
.clients__slider-bottom::after, .clients__slider-bottom::before {
  position: absolute;
  display: block;
  content: "";
  background-color: var(--color-grey);
}
.clients__slider-bottom::before {
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  width: 100%;
}
.clients__slider-bottom::after {
  right: 0;
  top: 30px;
  bottom: 30px;
  width: 1px;
  height: auto;
}

/*=========
SERVICES=========
============*/
.services {
  background: -webkit-gradient(linear, left top, left bottom, from(#e6edff), to(#fff));
  background: linear-gradient(180deg, #e6edff 0%, #fff 100%);
}
.services .section__title {
  margin-top: 20px;
  margin-bottom: 65px;
}
.services__grid {
  gap: 25px;
}
.services__item {
  -ms-grid-column-span: 6;
  grid-column: 6 span;
  padding: 35px 38px 30px;
  font-size: 16px;
  line-height: 1.6;
}
.services .rectangle {
  -ms-grid-column-span: 12;
  grid-column: 12 span;
  height: 60px;
  margin-top: 5px;
  background-color: #d9d9d9;
}

/*===============
Consultation
================*/
.consultation {
  background-color: var(--pink);
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
.consultation:hover {
  background-color: var(--color-blue);
}
.consultation__container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.consultation__link {
  font-family: var(--ff500);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 75px 0 85px;
  font-size: clamp(2rem, 5.556vw + 0rem, 5rem);
  line-height: 99%;
  text-transform: uppercase;
}
.consultation__text {
  display: block;
  max-width: 750px;
}
.consultation__img {
  width: clamp(2rem, 5.556vw + 0rem, 5rem);
  height: clamp(2rem, 5.556vw + 0rem, 5rem);
  fill: var(--color-white);
}

/*===============
Whywe
================*/
.whywe {
  margin-top: 30px;
  margin-bottom: 60px;
}
.whywe .section__title {
  margin-bottom: 70px;
}
.whywe__grid {
  grid-template-columns: repeat(auto-fill, minmax(calc(20% - 25px), 1fr));
  row-gap: 40px;
}
.whywe__item {
  position: relative;
  padding-top: 22px;
  padding-right: 2.7vw;
  max-width: 220px;
  width: 100%;
}
.whywe__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 7px;
  width: 27px;
  background-color: var(--pink);
  -webkit-transform: skew(-28deg);
  -ms-transform: skew(-28deg);
  transform: skew(-28deg);
}
.whywe__text {
  padding: 0;
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
}

/*===============
Keises
================*/
.keises {
  padding-bottom: 134px !important;
  padding-top: 90px !important;
}
.keises__container {
  position: relative;
}
.keises____slider {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.keises__slider-item {
  background-color: var(--color-white);
  padding: 20px;
  height: initial;
}
.keises__slider-item li {
  margin-bottom: 7px;
}
.keises .slider__arrow path {
  fill: var(--color-white);
}
.keises__slider-cat {
  margin-bottom: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 10px;
  padding-right: 10px;
  background-color: var(--pink);
  color: var(--color-white);
  line-height: 150%;
  text-transform: uppercase;
}
.keises__slider-title {
  margin-bottom: 15px;
  font-size: 24px;
  font-family: var(--ff600);
  line-height: 100%;
  text-transform: uppercase;
}

/*===============
Social feed
================*/
.feed-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.feed-text.text__show {
  overflow: visible;
  display: block;
}

.social__feed .section__title {
  max-width: 720px;
}
.social__feed .slider__manage {
  -ms-flex-item-align: end;
  align-self: flex-end;
  padding-bottom: 10px;
}
.social__feed-item {
  padding: 25px;
  border: 1px solid var(--color-text);
  font-size: 18px;
  line-height: 1.44;
}
.social__feed p {
  margin: 0;
  padding: 0;
}

.feed-person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
}

.person-name {
  font-family: var(--ff600);
  font-size: 22px;
  line-height: 177%;
}

.person__link {
  font-size: 15px;
  color: #113095;
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.feed-more {
  display: inline-block;
  margin-top: 12px;
  font-weight: 400;
  font-size: 18px;
  line-height: 144%;
  color: var(--pink);
}

/*===============
Recommendations
================*/
.recommendations {
  margin-bottom: 10px;
}
.recommendations .slider__manage {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.recommendations-slider {
  position: relative;
  margin-top: 20px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.recommendations-slider::before {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: -webkit-gradient(linear, left bottom, left top, from(#e6edff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(360deg, #e6edff 0%, rgba(255, 255, 255, 0) 100%);
}
.recommendations-item {
  -webkit-transition: opacity 0.25s ease-in-out background 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out background 0.25s ease-in-out;
}
.recommendations-item:not(.swiper-slide-active) {
  background: -webkit-gradient(linear, left bottom, left top, from(#e6edff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(360deg, #e6edff 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.25;
}
.recommendations-item a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.recommendations-item a::before {
  position: absolute;
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  border-radius: 50%;
  top: 20px;
  right: 20px;
  background-color: var(--pink);
  background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15 3H21V9" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /><path d="M9 21H3V15" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /><path d="M21 3L14 10" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /><path d="M3 21L10 14" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /></svg>');
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
}
.recommendations-item.swiper-slide-active a {
  z-index: 2;
}
.recommendations-item.swiper-slide-active a::before {
  opacity: 1;
}

/*===============
Prices
================*/
.prices {
  padding-bottom: 90px;
  margin-bottom: 85px;
}
.prices-top {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14.1666666667%;
}
.prices .section__title {
  margin-bottom: 0;
}
.prices-descr {
  font-size: 18px;
  line-height: 1;
  color: #0a101e;
}
.prices-descr-title {
  font-family: var(--ff600);
  font-size: 24px;
  margin-bottom: 1.1vw;
}
.prices__grid {
  gap: 25px;
}
.prices__item {
  padding: 35px;
  -ms-grid-column-span: 4;
  grid-column: 4 span;
  border: 1px solid var(--color-text);
}
.prices__item:nth-child(n+4):nth-child(-n+6) {
  background-color: var(--color-text); /* Стили для второго ряда */
  color: var(--color-white);
}
.prices__item:nth-child(n+4):nth-child(-n+6) li {
  opacity: 0.68;
}
.prices__item-top {
  font-family: var(--ff600);
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}
.prices__item-list {
  font-size: 16px;
  line-height: 144%;
  padding-left: 25px;
}

/*===============
Plans
================*/
.plans__list {
  gap: 25px;
}
.plans__item {
  -ms-grid-column-span: 4;
  grid-column: 4 span;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: -webkit-gradient(linear, left top, left bottom, from(#e7eeff), to(#ffffff));
  background: linear-gradient(#e7eeff, #ffffff);
}
.plans__item-text {
  position: relative;
  padding: 20px 25px;
  margin: 1px;
  background: #ffffff;
  z-index: 1;
}
.plans__item-text::before {
  content: attr(data-indexm);
  display: block;
  font-family: var(--ff600);
  font-size: 160px;
  line-height: 0.96;
  color: var(--pink-hsl);
  -webkit-text-stroke-color: var(--pink-hsl);
  -webkit-text-stroke-width: 2px;
  -webkit-text-fill-color: hsl(0, 0%, 100%);
}
.plans__item p {
  position: relative;
  font-size: 18px;
  line-height: 1.44;
}
.plans__item p strong {
  font-family: var(--ff600);
  font-weight: 400;
}
.plans__item p::before {
  content: "";
  display: block;
  position: absolute;
  height: 140px;
  top: -140px;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.98)));
  background: linear-gradient(-180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.98));
}
.plans__bottom {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.plans__bottom-text {
  font-family: var(--ff500);
  font-size: 24px;
  line-height: 133%;
  text-transform: uppercase;
}

/*===============
Find
================*/
.find {
  padding-top: 0 !important;
  padding-bottom: 70px;
  margin-top: 80px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 600px;
  background-image: url("../img/find-bg1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
.find .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-item-align: end;
  align-self: flex-end;
}
.find__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 41.6666666667%;
}
.find__text .section__title {
  margin-bottom: 27px;
}
.find__text .text {
  font-size: 22px;
  line-height: 123%;
}
.find__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-left: auto;
}
.find__link svg {
  width: clamp(2rem, 5.556vw + 0rem, 5rem) !important;
  height: clamp(2rem, 5.556vw + 0rem, 5rem) !important;
}
.find__link path {
  fill: var(--color-white);
}

/*===============
Team
================*/
.team {
  padding-bottom: 60px;
  padding-top: 55px !important;
}
.team-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.team-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 25px;
  padding-bottom: 1vw;
}
.team__item {
  --1col: calc(100% / 12);
  margin: calc(var(--1col) / 4);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(var(--1col) * 2);
}
.team__item:first-of-type {
  max-width: 209px;
}
.team__item:nth-of-type(2), .team__item:nth-of-type(7) {
  -webkit-transform: translateY(5vw);
  -ms-transform: translateY(5vw);
  transform: translateY(5vw);
}
.team__item:nth-of-type(3) {
  margin-left: 0;
}
.team__item:nth-of-type(4) {
  margin-top: 5px;
  margin-left: var(--1col);
}
.team__item:nth-of-type(5) {
  margin-top: 3vw;
}
.team__item:nth-of-type(6) {
  margin-top: 1vw;
}
.team__item:nth-of-type(9) {
  margin-top: 0;
  margin-left: calc(var(--1col) * 1.4);
  margin-right: calc(var(--1col) * 1.6);
}
.team__item:last-of-type {
  margin-top: calc(var(--1col) / 3);
  margin-left: 1vw;
}
.team__photo {
  margin-bottom: 16px;
  border-radius: 100%;
  overflow: hidden;
}
.team__name {
  text-align: center;
  font-family: var(--ff600);
  font-size: 18px;
  line-height: 144%;
}
.team__role {
  font-size: 15px;
  line-height: 107%;
  text-align: center;
  color: var(--pink);
}
.team::after {
  content: "";
  display: table;
  clear: both;
}

/*===============
Doit
================*/
.doit {
  background-color: var(--pink);
  padding-bottom: 100px !important;
  margin-bottom: 0 !important;
}
.doit-title {
  margin-bottom: 13px;
}
.doit-text {
  margin-top: 20px;
  margin-bottom: 28px;
  font-size: clamp(1.25rem, 1.389vw + 0.75rem, 2rem);
  line-height: 110%;
}
.doit .btn {
  height: 72px;
  min-width: 259px;
}

/*===========
FOOTER
===========*/
.footer {
  position: relative;
  padding-top: 80px;
  padding-bottom: 70px;
  font-size: 14px;
  background-color: var(--color-text);
}
.footer a {
  color: inherit;
}
.footer__container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer__left {
  width: calc(25% - 25px);
  margin-right: 25px;
}
.footer__left-text {
  font-size: 14px;
}
.footer__info {
  width: calc(41.6666666667% - 25px);
  margin-right: 25px;
}
.footer__info-photo {
  width: 160px;
  margin-right: 25px;
}
.footer__info p {
  margin: 0;
  font-family: var(--ff500);
  font-size: 18px;
  line-height: 133%;
}
.footer__info span {
  display: block;
  font-size: 15px;
  line-height: 200%;
}
.footer__info q::before, .footer__info q::after {
  display: none;
}
.footer__info ul {
  margin: 0;
  padding: 0;
  padding-left: 20px;
}
.footer__info li {
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 107%;
  margin-bottom: 10px;
}
.footer__right {
  width: 33.3333333333%;
  text-align: right;
}
.footer__right address {
  font-style: normal;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 15px;
}
.footer__phone {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--ff600);
  font-size: 24px;
}
.footer__popup {
  background-color: var(--pink);
  line-height: 1;
  margin-left: auto;
  margin-bottom: 20px;
}
.footer__popup span {
/*-webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);  */
}
.footer__bottom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer__bottom p {
  width: 100%;
  line-height: 171%;
  margin: 0 0 5px 0;
}
.footer__bottom .politica {
  margin-top: -30px;
  margin-bottom: 15px;
}
.footer__bottom .liberty {
  text-align: right;
}
.footer .arrow-up {
  position: fixed;
  right: 65px;
  bottom: 80px;
  opacity: 0.6;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
}
.footer .arrow-up:hover {
  opacity: 1;
}

@media (max-width: 1280px) {
  .hero__left {
    margin-right: 0;
    margin-left: 0;
  }
  .hero__left .btn {
    width: 260px;
  }
  .team__item:first-of-type .team__photo {
    width: clamp(7.6875rem, 4.3221rem + 10.7692vw, 12.9375rem);
  }
  .team__item:nth-of-type(2), .team__item:nth-of-type(7) {
    -webkit-transform: translateY(4vw);
    -ms-transform: translateY(4vw);
    transform: translateY(4vw);
  }
  .team__item:not(:first-of-type) .team__photo {
    width: clamp(5.75rem, 3.226rem + 8.0769vw, 9.6875rem);
  }
  .team__item:not(:first-of-type) .team__photo {
    width: clamp(5.75rem, 3.226rem + 8.0769vw, 9.6875rem);
  }
}
@media (max-width: 992px) {
  .header {
    padding: 20px 0;
  }
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .burger.burger--active {
    right: 0;
  }
  .desc-hidden {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .mobile-hidden {
    display: none;
  }
  .header__nav {
    position: fixed;
    -webkit-transform: perspective(500px) translate3d(200%, 0, 0) scale(0.3, 1);
    transform: perspective(500px) translate3d(200%, 0, 0) scale(0.3, 1);
    min-width: 360px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 87px 20px 100px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: var(--color-text);
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: -webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    -webkit-box-shadow: -2px -2px 3px rgba(255, 255, 255, 0.16);
    box-shadow: -2px -2px 3px rgba(255, 255, 255, 0.16);
  }
  .header__nav.menu--active {
    -webkit-transform: perspective(500px) translate3d(0, 0, 0) scale(1, 1);
    transform: perspective(500px) translate3d(0, 0, 0) scale(1, 1);
  }
  .header__nav .nav__list {
    width: 100%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  .header__nav .nav__list .nav__item {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
  .header__nav .nav__list .nav__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    line-height: 72px;
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  }
  .header__nav .nav__list .nav__link::before {
    display: none;
  }
  .header__nav .nav__list .nav__link::after {
    display: block;
    content: "";
    width: 9px;
    height: 9px;
    background-image: url('data:image/svg+xml,<svg width="9" height="9" viewBox="0 0 9 9" fill="none" xmlns="http://www.w3.org/2000/svg"><mask id="mask0_111_1660" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="9" height="9"><path d="M9.53674e-07 9V9.53674e-07H9V9H9.53674e-07Z" fill="white"/></mask><g mask="url(%23mask0_111_1660)"><path d="M7.00415 4.50001L2.86304 8.64111L1.99579 7.77386L5.26966 4.50001L1.99579 1.22615L2.86304 0.358899L7.00415 4.50001Z" stroke="white" stroke-miterlimit="10"/></g></svg>');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .header__nav .nav__list .nav__link:hover {
    -webkit-transform: translateX(3px);
    -ms-transform: translateX(3px);
    transform: translateX(3px);
  }
  .header__nav .lang__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-left: 0;
  }
  .header__nav .trp-ls-shortcode-language a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    line-height: 73px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  }
  .header__nav .trp-ls-shortcode-language a::after {
    display: block;
    content: "";
    width: 9px;
    height: 9px;
    background-image: url('data:image/svg+xml,<svg width="9" height="9" viewBox="0 0 9 9" fill="none" xmlns="http://www.w3.org/2000/svg"><mask id="mask0_111_1660" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="9" height="9"><path d="M9.53674e-07 9V9.53674e-07H9V9H9.53674e-07Z" fill="white"/></mask><g mask="url(%23mask0_111_1660)"><path d="M7.00415 4.50001L2.86304 8.64111L1.99579 7.77386L5.26966 4.50001L1.99579 1.22615L2.86304 0.358899L7.00415 4.50001Z" stroke="white" stroke-miterlimit="10"/></g></svg>');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .header__nav .trp-ls-shortcode-language a:hover {
    -webkit-transform: translateX(3px);
    -ms-transform: translateX(3px);
    transform: translateX(3px);
  }
  .header__nav .btn-hover {
    margin-left: 0;
    margin-top: 65px;
    margin-bottom: 10px;
    width: 100%;
    height: 76px;
    line-height: 76px;
    border-color: var(--pink);
  }
  .hero__container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 100px;
  }
  .hero__container .hero__right {
    margin-top: 20px;
    margin-left: 0;
  }
  .hero__container .hero__img {
    margin-bottom: 10px;
  }
  .hero__container .hero__list {
    margin-top: 0;
  }
  .hero__container .hero__list .hero-slide {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: 5px;
    padding-right: 5px;
  }
  .bottom-item {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
  }
  .bottom-item:first-of-type {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
  }
  .bottom-item.bottom-item-red {
    -ms-grid-column-align: center;
    justify-self: center;
  }
  .bottom-item.bottom-item-red::after {
    top: -46px;
    left: -30%;
    width: 65vw;
  }
  .whywe__grid {
    grid-template-columns: repeat(auto-fill, minmax(calc(33% - 25px), 1fr));
  }
  .whywe__item {
    max-width: none;
  }
  .prices-top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .prices-top .section__title {
    width: 100%;
    margin-bottom: 25px;
  }
  .prices__item {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
  }
  .plans__item {
    -ms-grid-column-span: 6;
    grid-column: 6 span;
  }
  .keises {
    padding-bottom: 60px !important;
  }
}
@media (max-width: 767px) {
  .footer {
    padding-top: 65px;
    padding-bottom: 40px;
  }
  .footer__container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footer__left {
    width: 100%;
    margin-bottom: 40px;
  }
  .footer__info, .footer__right {
    width: 50%;
    margin-right: 0;
  }
  .footer__bottom .politica {
    margin-top: 0;
  }
  .footer__bottom .copy, .footer__bottom .liberty {
    width: 50%;
  }
  .bottom {
    padding-top: 15px !important;
  }
  .clients {
    margin-bottom: 65px;
  }
  .prices-descr {
    font-size: 16px;
  }
  .prices-descr-title {
    margin-bottom: 20px;
  }
}
@media (max-width: 680px) {
  .bottom-item.bottom-item-red::after {
    left: -15%;
  }
  .slider__manage {
    max-width: 120px;
    gap: 20px;
  }
  .slider__manage .slider__arrow {
    max-width: calc(50% - 10px);
  }
  .slider__manage .slider__arrow svg {
    display: block;
    max-width: 100%;
  }
  .whywe__grid {
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 25px), 1fr));
  }
  .plans__bottom {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .plans__bottom-text {
    font-size: 20px;
  }
  .find {
    padding-bottom: 55px !important;
  }
  .find .container {
    gap: 15%;
  }
  .find .find__text {
    -ms-flex-negative: 2;
    flex-shrink: 2;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 576px) {
  .slider__manage {
    display: none;
  }
  .swiper__pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .logo__header {
    position: relative;
    z-index: 20;
  }
  .header__nav.menu--active {
    left: 0;
    width: 100%;
  }
  .prices__grid {
    gap: 0;
  }
  .prices__item {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }
  .prices__item:nth-of-type(1) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .prices__item:nth-of-type(2) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .prices__item:nth-of-type(3) {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .prices__item:nth-of-type(4) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 40px;
  }
  .prices__item:nth-of-type(5) {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    margin-bottom: 40px;
  }
  .prices__item:nth-of-type(6) {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
    margin-bottom: 40px;
  }
  .plans-swiper .plans__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
  }
  .team__item {
    width: 33.3333333333%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .team__item:first-of-type {
    width: 33.3333333333%;
    margin-left: auto;
    margin-right: auto;
  }
  .team__item:nth-of-type(2) {
    width: 33.3333333333%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin-top: -10%;
    margin-left: 0;
    margin-right: 0;
  }
  .team__item:nth-of-type(3) {
    width: 33.3333333333%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin-top: -5%;
    margin-left: 0;
    margin-right: 0;
  }
  .team__item:nth-of-type(4) {
    width: 33.3333333333%;
    margin-top: 9%;
    margin-left: 0;
    margin-right: 0;
  }
  .team__item:nth-of-type(5) {
    width: 33.3333333333%;
    margin-top: -12%;
    margin-left: 0;
    margin-right: 0;
  }
  .team__item:nth-of-type(7) {
    width: 33.3333333333%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin-top: 5%;
    margin-left: 0;
    margin-right: 0;
  }
  .team__item:nth-of-type(8) {
    width: 33.3333333333%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin-top: -8%;
    margin-left: 0;
    margin-right: 0;
  }
  .team__item:nth-of-type(9) {
    width: 33.3333333333%;
    margin-top: 8%;
  }
  .team__item:last-of-type {
    margin-top: -8%;
  }
  .bottom-item {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
    padding-top: 25px;
    padding-bottom: 25px;
    text-align: left;
  }
  .bottom-item:first-of-type {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }
  .bottom-item-num {
    text-align: left;
  }
  .bottom-item.bottom-item-red {
    max-width: 310px;
    padding-top: 40px;
    padding-bottom: 30px;
    -ms-grid-column-align: start;
    justify-self: start;
  }
  .bottom-item.bottom-item-red::after {
    left: -20px;
    right: auto;
    top: auto;
    bottom: 0;
    height: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 580px;
    background-color: transparent;
    border-bottom: 95px solid var(--pink);
    border-right: 580px solid var(--pink);
    border-left: 0px solid transparent;
    border-top: 47px solid transparent;
  }
  .whywe__grid {
    grid-template-columns: repeat(auto-fill, 100%);
    padding-right: 30px;
  }
  .services__item {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }
  .footer__info, .footer__right {
    width: 100%;
  }
  .footer__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footer__right address {
    text-align: left;
  }
  .footer__info {
    margin-bottom: 30px;
  }
  .footer__phone {
    width: 100%;
    -webkit-box-ordinal-group: -3;
    -ms-flex-order: -4;
    order: -4;
    margin-left: auto;
    margin-bottom: 40px;
    padding-right: 10%;
  }
  .footer__popup {
    width: 160px;
    -webkit-box-ordinal-group: -2;
    -ms-flex-order: -3;
    order: -3;
    margin-left: 0;
    margin-bottom: 20px;
  }
  .footer .list__social {
    -webkit-box-ordinal-group: -1;
    -ms-flex-order: -2;
    order: -2;
    margin-left: auto;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
  }
  .footer__bottom .liberty {
    -webkit-box-ordinal-group: -1;
    -ms-flex-order: -2;
    order: -2;
    width: 100%;
    margin-top: 25px;
    margin-bottom: 15px;
    text-align: left;
    width: 100%;
  }
  .footer__bottom .copy {
    width: 100%;
  }
}/*# sourceMappingURL=main.css.map */
