@font-face {
    font-family: 'Roboto';
    src: url(/fonts/Roboto-Regular.woff2) format('woff2');
    font-size: normal;
    font-display: swap;
    font-weight: 400 ;
}

@font-face {
    font-family: 'Roboto';
    src: url(/fonts/Roboto-Light.woff2) format('woff2');
    font-size: normal;
    font-display: swap;
    font-weight: 300 ;
}

/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure, fieldset):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  ul,
  ol,
  dl
):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;

  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}


/**
  Упрощаем работу с изображениями и видео
 */
img,
video, 
figure {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
}

/**
  Плавный скролл
 */
html {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
  font-family: 'Roboto', 'sans-serif';
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут fill со значением 'none' или начинается с 'url')
 */
:where([fill]:not(
  [fill="none"],
  [fill^="url"]
)) {
  fill: currentColor;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут stroke со значением 'none')
 */
:where([stroke]:not(
  [stroke="none"],
  [stroke^="url"]
)) {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:root{
    --color-light-blue: #E2E9FF;
    --color-blue: #0036D6;
    --color-dark: #000;
    --color-light: #FFF;
    --color-dark-blue: #001964;

    --transition: 0.4s;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

.rectangle{
  width: 100vw;
}

a {
    text-decoration: none;
}

input:focus{
    box-shadow: 1px 1px 50px 0 rgba(0, 54, 214, 0.5);
    transition: var(--transition);
}

.header{
    display: flex;
    justify-content: space-between;
	font-family: 'Roboto';
	background-color: var(--color-light-blue);
}

.header-text{
    font-size: 3.33vw;
    text-transform: uppercase;
    margin-block: 1.25vw;
    color: var(--color-blue);
}

.header-menu{
    display: flex;
    align-items: center;
}

.header-menu-list{
    display: flex;
    column-gap: 1.04vw;
}

.header-menu-link{
    color: var(--color-dark);
    font-size: 1.56vw;
}

.header-telephone{
    display: flex;
    flex-direction: column;
    justify-content: center;
	align-items: center;
    background-color: var(--color-blue);
    width: 22.18vw;
    border-radius: 0 0 15px 15px;
    color: var(--color-light);
	margin-left: 1vw;
}

.header-logo-div{
	display:flex;
}

.telephone{
    font-size: 2.3vw;
    font-weight: 700;
}

.p {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.text-telephone{
    font-size: 1.25vw;
    font-weight: 500;
    text-align: center;
}

.lion-logo-svg{
  width: 7.03vw;
}

.lion-logo-image{
    width: 7.8vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-lion{
  content: '';
  background: url(https://3326b6f3b410.hosting.myjino.ru/wp-content/uploads/2025/08/lion-logo-opacity.svg) center/contain no-repeat;
  background-size: 54vw;
  background-position-y: 1.56vw;
  background-position-x: right;
}


h1,h2,h3,h4,h5{
  text-transform: uppercase;
}

.footer{
  padding-left: 7.3vw;
  padding-block: 3.12vw;
  display: flex;
  background-color: var(--color-light-blue);
  column-gap: 1.5vw;
  font-size: 1.25vw;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0%;
  line-height: 130%;
}

.footer-list{
    display: flex;
    column-gap: 1.3vw;
    text-transform: uppercase;
}

.footer-list-link{
  color: var(--color-dark);
  position: relative;
  padding-left: 1.04vw;
}

.footer-list-link::before{
  display: block;
  position: absolute;
  background-color: var(--color-dark);
  width: 0.26vw;
  height: 0.26vw;
  content: "";
  border-radius: 50%;
  left: -0.5em;
  top: 0.4em;
  margin-left: 0.78vw ;
}

.footer-list-link:not(:last-child){
  padding-bottom: 0.52vw;
}

.footer-list-item-title{
  padding-bottom: 2vw;
}

.footer-list-item-contacts{
  padding-bottom: 1.6vw;
}

.msk-seo{
    font-size: 3.1vw;
    text-transform: uppercase;
    color: var(--color-blue);
    padding-left: 0.42vw ;
    font-weight: 400;
}

.logotip{
  display: flex;
  align-items: center;
  padding-bottom: 2vw;
}

.logotip-describtion-item{
  padding-bottom: 2vw;
}

.service{
  width: 15.3vw;
}

.logo{
  width: 21.3vw;
}

.contacts{
  width: 17.7vw;
}

.info{
  width: 8.3vw;
}

.form-section{
  position: relative;
  height: 41.6vw;
  display: flex;
}

.form{
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 500;
  padding-inline: 7.3vw;
}

.form-input{
  display: flex;
  flex-direction: column;
  row-gap: 0.4vw;
  align-items: center;
  width: 33.3vw;
  background-color: rgba(255, 255, 255, 0.5);
  padding-bottom: 1.04vw;
  padding-top: 3.2vw;
  margin-left: 13.02vw;
  padding-inline: 4.2vw;
}

.form-input-item{
  width: 24vw;
  border-color: var(--color-dark-blue);
  border: 10px solid var(--color-blue);
  border-radius: 10px;
  border-width: 1px;
  height: 2.7vw;
  opacity: 50%;
}

.form-input-submit{
  width: 16.4vw;
  height: 4.6vw;
  background-color: var(--color-blue);
  font-size: 1.87vw;
  color: var(--color-light);
  text-transform: uppercase;
  border-radius: 10px;
  border-color: transparent;
  box-shadow:0px 0px 20px var(--color-blue);
  margin-top: 1.56vw;
	cursor: pointer;
	transition: var(--transition);
}

.form-input-submit:hover{
  background-color: var(--color-light);
  color: var(--color-blue);
}

.form-text{
  width: 36.4vw;
}

.form-text-title{
  font-size: 3.3vw;
  text-transform: uppercase;
  padding-bottom: 0.78vw;
  list-style: 100%;
  letter-spacing: 0%;
}

.form-text-describtion{
  font-size: 1.87vw;
  width: 28.1vw;
  list-style: 100%;
  letter-spacing: 0%;
}

.blue-text{
  color: var(--color-blue);
}

.problems-section{
  position: relative;
  display: flex;
  justify-content: center;
	margin-top: 1.82vw;
}

.problems{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 1.04vw;
  padding-top: 2.08vw;
}

.problems-title{
  text-align: center;
  font-size: 3.3vw;
  position: relative;
  z-index: -2;
  font-weight:500;
}

.problems-title-buttom{
  background-color: var(--color-light);
  position: absolute;
  bottom: 5%;
  z-index: 1;
}

@media (max-width: 1000px) {
.problems-title-buttom{
  bottom: 10%;
}
	}

.border{
  border-radius: 15px;
  border: var(--color-blue) solid 1px;
  width: 59vw;
  height: 7.4vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problems-img{
  position: relative;
}

.problems-img1{
  width:100vw;
}

.about{
  background-color: var(--color-light-blue);
}

.solution{
  display: flex;
  justify-content: center;
  font-size:2.08vw ;
  padding-inline: 7.3vw;
  color: var(--color-dark-blue);
}

.solution-list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 1.56vw;
  row-gap: 2.08vw;
  column-gap: 1.04vw;
}

.solution-item{
  background-color: var(--color-light);
  border-radius: 2.4vw;
  padding-left: 1.56vw;
  padding-top: 1.56vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-weight: 600;
  position:relative;
  height:23vw;
}

.solution-item-img{
  align-self: flex-end;
	position:absolute;
	top:39.5%;
	height:14vw;
	overflow: hidden;
}

.solution-item-img img{
		height:100%;
	width:100%;
	}

.button-free-audit{
  background-color: var(--color-blue);
  box-shadow: 1px 1px 50px 0 rgba(0, 54, 214, 0.5);
  color: var(--color-light);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.5vw;
  width: 31vw;
  height: 5.7vw;
  margin-inline: 35%;
  margin-top: 4.3vw;
  border: var(--color-blue);
  border-radius: 10px;
  left: -3.5%;
  position: relative;
}

.forma{
	color: var(--color-light);
	display: flex;
    justify-content: center;
    align-items: center;
	height: 100%;
}

.solution-item-button{
  grid-column-start: 1;
  grid-column-end: -1;
}

.solution-item-text{
	padding-right:2vw;
}

.problems-img1{
  display: block;
  z-index: -1;
  position: relative;
}

.problems-text{
  position: absolute;
}

.problems-text1,.problems-text3,.problems-text5{
  font-weight: 400;
  font-size: 2.08vw;
  line-height: 100%;
  letter-spacing: 0%;
}

.problems-text2,.problems-text4{
  font-weight: 600;
  font-size: 2.08vw;
  line-height: 100%;
  letter-spacing: 0%;
  background-color: var(--color-light-blue) ;
  width: 24.8vw;
  height: 4.9vw;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color:rgba(0, 25, 100, 1);
}

.problems-text4{
  bottom: 55%;
  right: 7%;
}

.problems-text2{
  left: 15%;
  top: 22%;
}

.problems-text1,.problems-text5{
  width: 23vw;
  height: 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problems-text1{
  left: 10%;
  bottom: 35%;
  width: 21.5vw;
}

.problems-text5{
  right: 7%;
  bottom: 34%;
  width: 21.5vw;
}

.problems-text3{
  width: 23vw;
  right: 20%;
  top: 20%;
  text-align: center;
}

.collaboration-section{
  background-color: var(--color-light-blue);
}

.collaboration-title{
  text-align: center;
  font-size: 3.3vw;
  line-height: 100%;
  letter-spacing: 0%;
  padding-bottom: 5.2vw;
  padding-top:6vw;
}

.collaboration{
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding-inline: 7.3vw;
}

.collaboration-list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: 33vw;
  column-gap: 1.04vw;
}

.collaboration-list-item{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--color-light);
  border-radius: 11px;
}

.collaboration-list-item-img{
  align-self: flex-end;
}

.collaboration-list-item-title{
  text-transform: none;
  font-size: 2.08vw ;
  line-height: 100%;
  letter-spacing: 0%;
}

.collaboration-list-item-describtion{
  font-size: 1.25vw ;
  font-weight: 300;
  line-height: 100%;
  letter-spacing: 0%;
}

.collaboration-list-item-text{
  padding-top: 2.6vw;
  padding-inline: 2.8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.collaboration-list-item-line{
  padding-block: 1.04vw;
}

.result-svg{
	width:100vw;
}

.result-section{
  position: relative;
  background-color: var(--color-light-blue);
  display: flex;
  justify-content: center;
  padding-top: 4vw;
}

.result-title{
  font-size: 3.3vw ;
  text-align: center;
  position:relative;
  top:6%;
}

.result-list-item{
  position: absolute;
  padding-inline: 1.04vw;
}

.month-result-title{
  color: var(--color-dark-blue);
  font-size:2.08vw ;
  letter-spacing: 0%;
  line-height: 100%;
  text-transform: none;
  padding-top: 0.78vw;
  padding-bottom: 0.78vw;
  z-index: 2;
  position: relative;
}

.month-result-item{
  font-size: 1.25vw;
  line-height: 100%;
  letter-spacing: 0%;
  position: relative;
  z-index: 2;
}

.month-result-item::before{
  display: block;
  position: absolute;
  background-color: var(--color-dark);
  width: 3px;
  height: 3px;
  content: "";
  border-radius: 50%;
  left: -5% ;
  top: 0.1em;
}

.month-result-item:not(:last-child){
  padding-bottom: 0.208vw;
}

.light{
  font-weight: 300;
}

.semibold{
  font-weight: 600;
}

.bold{
  font-weight: 700;
}

.mrl-3-4{
  padding-left: 0.52vw;
}

.rli1{
  left: 8%;
  bottom: 24%;
  width:17vw ;
}

.rli2{
  left: 26%;
  top: 30%;
  width: 17.3vw;
}

.rli3{
  left: 44%;
  bottom: 17%;
  width: 13.8vw;
}

.rli4{
  width: 15.2vw;
  left: 48%;
  bottom: 50%;
}

.rli5{
  width: 16.5vw;
  right: 11%;
  top: 32%;
}

.pluses-section{
  position: relative;
  display: flex;
  justify-content: center;
}

.pluses-title{
  font-size: 3.3vw;
  text-align: center;
}

.pluses-list{
  font-size:1.15vw !important ;
  font-weight: 600 ;
  letter-spacing: 0%;
  line-height: 100%;
}

.pluses-list-item{
  text-align: center;
  position: absolute;
}

.pluses-list-item-title{
  text-transform: none;
  font-size:1.7vw;
  padding-bottom:0.2vw;
}

.pli1{
  width: 18vw;
  top: 42%;
  left: 8%;
}

.pli2{
  width: 11.4vw;
  top: 33%;
  left: 27%;
}

.pli3{
  width: 11.4vw;
  top: 17%;
  left: 35%;
}

.pli4{
  width: 10.05vw;
  top: 13%;
  left: 53%;
}

.pli5{
  width: 13.02vw;
  left: 62%;
  top: 25%;
}

.pli6{
  width: 10.05vw;
  top: 40%;
  left: 71%;
}

.pli7{
  width: 12.65vw;
  left: 77%;
  top: 53%;
}

.pluses-img{
    z-index: -1;
	padding-right:5vw;
	width:100vw;
}
.button-free-audit-opacity{
    background-color: rgba(0, 54, 214, 0.82);
    box-shadow: 1px 1px 50px 0 rgba(0, 54, 214, 0.5);
    color: var(--color-light);
    position: absolute;
    font-weight: 600;
    font-size: 1.5vw;
    width: 30vw;
    height: 5.3vw;
    bottom: 2.86vw;
    border: var(--color-blue);
    border-radius: 10px;
    text-transform: uppercase;
}

.partners-section{
  padding-block: 6vw;
}

.partners-title{
  text-align: center;
  font-size: 3.3vw ;
  padding-bottom: 2.08vw;
}

.partners-list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr; 
  grid-auto-rows: 1fr;
  padding-inline: 7.3vw ;
  column-gap: 1.04vw;
  row-gap: 0.78vw;
}

.partners-list-item{
  border-radius: 10px;
  border: solid var(--color-light-blue);
  border-width: 0.5vw;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.partners-img{
  border-radius: 5px;
	width:100%;
}

.partners-list-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(146, 148, 248, 0.4), transparent);
  transition: all 650ms;
}

.text-carousel{
	font-size: 44.6px;
	/*
    font-size: 3.34vw;
	*/
    margin-bottom: 62px;
}

.teams-section{
  padding-top: 5vw;
  padding-bottom: 10vw;
  content: '';
  background: url(/svg/top_medium\ 2.svg) center/contain no-repeat;
  background-size: 101.5vw;
}

.teams{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 7.3vw;
}

.teams-title{
  font-size: 3.33vw;
  text-align: center;
  padding-bottom: 3.6vw;
}

.teams-list-items{
  background-color: #001964;
  border: #0036D6 3px solid;
  border-radius: 10px;
}

.teams-list1{
  display: flex;
  column-gap: 7vw;
  padding-bottom: 3vw;
}

.teams-list1-describtion{
  font-size: 1.6vw;
  font-weight: 500;
  padding-top: 5vw;
}

.teams-list2{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 1fr;
  column-gap: 3vw;
  row-gap: 3vw;
}

.teams-list2-item{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.medium{
  font-weight: 600;
}

.link-info{
  text-decoration: underline;
}

.footer-list-link{
  text-decoration: underline;
}

.info-service{
  display: flex;
  column-gap: 5vw ;
}

.form-agree{
  text-align: center;
  font-size: 1.3vw;
}

.form-title{
  text-align: center;
  font-size: 2vw;
}

.service,.info,.contacts{
  padding-top: 1vw;
}

.service-section{
  display: flex;
  justify-content: center;
  margin-top: 10vw;
}

.services{
  padding-inline: 7.3vw;
}

.service-list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr ;
  grid-auto-rows: 15vw 18vw 15vw;
  column-gap: 4vw ;
  row-gap: 2vw;
}

.service-list-item{
  background-color: var(--color-light-blue) ;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.service-img{
  width: 10vw;
  height: 10vw;
  border-radius: 10px;
  position: relative;
  left: -7%;
}

.service-title{
  font-size: 3.3vw;
  text-align: center;
  padding-bottom: 3vw;
  padding-top: 2vw;
}

.service-item-text{
  padding-top: 2vw;
  padding-right: 1vw;
}

.service-item-title{
  font-size: 1.2vw;
  color: var(--color-blue);
  padding-bottom: 0.3vw;
  font-weight: 600;
  line-height: 110%;
}

.service-item-link{
  color:var(--color-blue);
  text-decoration: underline;
  font-weight: 600;
  position: relative;
  right: -40%;
  padding-bottom: 1vw;
  font-size: 1vw;
}

.service-item-describtion{
  color: var(--color-dark);
  font-weight: 500;
  font-size: 0.9vw;
  line-height: 110%;
}

.clli{
  position: relative;
}

.container-body{
  margin: 0;
  box-sizing: border-box;
}

.containerx{
  line-height: 1.5;
  color: midnightblue;
  margin-bottom: 5.21vw;
}

.text-title-accordion{
  margin: 5rem auto;
  padding-left: 7.3vw;
  width: 100%;
  font-weight: 700;
  font-size: 3.34vw;
}

.accordion{
  margin: 0 auto;
  max-width: 85vw;
  width: 100%;
}

.accordion-item{
  margin-bottom: 2rem;
}

.question{
  display: flex;
  column-gap: 1.042vw;
  padding: 2.5rem;
  position: relative;
  font-size: 1.6vw;
  font-weight: bold;
  border: .2rem solid rgba(234, 233, 248, 0.438);
  border-radius: 1rem;
  background-color: rgb(241, 240, 255);
  box-shadow: -1rem -1rem 1rem rgba(25, 25, 112, 0.041), 1rem 1rem 1rem rgba(25, 25, 112, .2);
  cursor: pointer;
  transition: box-shadow var(--transition) ease-in-out;
}

.question::before, .question::after{
  content: "";
  position: absolute;
  top: 50%;
  width: 1.25rem;
  height: 0.2rem;
  background: var(--color-blue);
  transition: transform var(--transition) ease-in-out;
}

.question::before{
  transform: rotate(-40deg);
  right: 2.2rem;
}

.question::after{
  transform: rotate(40deg);
  right: 3rem;
}

.question.active {
  background: var(--color-light);
  box-shadow: -1rem -1rem 1rem rgba(25, 25, 112, 0.041), 
              1rem 1rem 1rem rgba(25, 25, 112, .2),
              inset -1rem -1rem 1rem rgba(25, 25, 112, 0.041), 
              inset 1rem 1rem 1rem rgba(25, 25, 112, .2)
}

.question.active::before{
  transform: rotate(40deg);
  right: 2.2rem;
}

.question.active::after{
  transform: rotate(-40deg);
  right: 3rem;
}

.answer{
  display: none;
  padding: 2.5rem;
  font-size: 1.7vw;
}

.answer.add {
  display: block;
  animation: accordionAnimation 1.5s;
}

.hidden-text-list-check_mark li{
  margin-left: 35px;
}

.hidden-text-list-check_mark li::marker{
  content: "✓";
  color: var(--color-dark-blue);
}

.hidden-text-list-check_mark li p{
  padding-left: 5px;
}

.show-text-body{
  line-height: 1.6;
}

.hidden-text{
  display: flex;
  flex-direction: column;
  row-gap: 1.042vw;
  display: none;
}

.hidden-blue-text {
  color: var(--color-blue);
  margin-block: 1.042vw;
}

.show-blue-text {
  color: var(--color-blue);
  margin-top: 1.042vw;
  opacity: 0.6;
}

.show-text-body{
  padding-inline: 7.3vw;
}

.show-text-title{
  font-size: 3.34vw;
  margin-top: 5.2vw;
}

.show-text-container{
    background-color: var(--color-light-blue);
    border-radius: 16px;
    width: 100%;
    padding: 3.38vw;
    font-size: 1.6vw;
    border: 1px solid var(--color-dark-blue);
    margin-block: 5.2vw;
    box-shadow: inset 0 -200px 56px -31px rgb(255, 255, 255, 0.94);
}

.free-audit-text{
  margin-top: 2.2vw;
}

.text-showall{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.2vw;
  z-index: 50;
}

.showall{
  color: var(--color-dark-blue);
  font-size: 2vw;
  font-weight: 700;
  margin: 0 auto;
  cursor: pointer;
}

.hidden-text.active{
  display: block;
}

.show-text-container.active{
  box-shadow: inset 0 0 0 0;
}

.show-blue-text.active {
  opacity: 1;
}

.law{
  font-size: 1vw;
  line-height: 100%;
}
.custom-logo{
	width: 7.03vw;
}

.reverse-menu{
	display:flex;
}

.tariff-form-section{
	padding-top:2vw;
}

.tariff-form-text{
  background-color: var(--color-light-blue);
  border-radius: 10px;
  padding-left: 1vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tariff-form{
  display: grid;
  padding-inline: 7.3vw ;
  column-gap: 3vw;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 7vw;
}

.tariff-backdrop-lion{
  background-image: url(https://msk-seo.ru/wp-content/uploads/2025/08/lion-logo-opacity.svg);
  display: flex;
  background-size: 50vw;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: -8vw;
  margin-left: 0vw !important;
  border-radius: 10px;
  width: 100% !important;
}

.tariff-form-title{
  font-size: 3vw;
  padding-bottom: 1vw;
}

.tariff-form-describtion{
  font-size: 1.25vw;
  font-weight: 600;
  width: 30vw;
}

.tariff-form-list{
  display: flex;
  padding-top: 3vw;
}

.tariff-form-item{
  width: 11vw;
}

.tariff-form-item-text{
  font-size: 1.25vw;
}

.fat-text{
  font-weight: 600;
}

.tariffs-form-text-svg{
  width: 2.5vw;
}

.tariffs{
  padding-inline: 7.3vw;
  padding-bottom: 7vw;
}

.tariffs-list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 22vw;
  column-gap: 5vw;
  row-gap: 4vw;
}

.backdrop-vosmiugolnik{
  background-image: url(https://msk-seo.ru/wp-content/uploads/2025/08/vosmiugolnik.svg);
  background-size: 24.8vw;
  background-repeat: no-repeat;
  background-position-x: center;
}

.tariffs-list-item{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tariff-svg{
  width: 7vw;
  position: relative;
  top: -13%;
}

.tariff-title{
  text-align: center;
  font-size: 1.6vw;
  position: relative;
  top: -15%;
}

.tariffs-describtion{
  position: relative;
  top: -11%;
  font-size: 1.2vw;
}

.tariffs-price{
  text-align: center;
  position: relative;
  top: -7%;
}

.sale-text{
  font-size: 1.04vw;
  font-weight: 300;
  display: flex;
  column-gap: 1vw;
  align-items: center;
}

.new-price{
  font-size: 1.6vw;
  font-weight: 600;
}

.old-price{
  text-decoration: line-through;
}

.sale{
  font-size: 0.8vw;
}

.tariffs-link{
  color: #0036D6;
  font-size: 1.25vw;
  padding-top: 1vw;
}

.tariffs-flag{
  position: relative;
  top: -36.6%;
  left: 14%;
  width: 8.125vw;
}

.includes{
  padding-inline: 7.3vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.includes-title{
  font-size: 3.3vw;
  padding-bottom: 5vw;
}

.orange-text{
  color:#BC6304 ;
}

.includes-text{
  font-size: 1.6vw;
  font-weight: 600;
  position: relative;
  width: 12vw;
  margin-left: 0.5vw;
}

.includes-text::before{
  display: block;
  position: absolute;
  background-image:url(https://msk-seo.ru/wp-content/uploads/2025/08/check-orange.svg) ;
  background-size: 2.6vw ;
  width: 20vw;
  height: 20vw;
  content: "";
  left: -23% ;
  background-repeat: no-repeat;
}

.includes-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 3vw;
  column-gap: 10vw;
}

.sales-section{
  margin-top: 5vw;
}

.sales-title{
  font-size: 3.3vw;
  padding-top: 2vw;
  padding-bottom: 2vw;
}

.sales{
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-inline: 10vw;
}

.sales-list-item{
  background-image: url(https://msk-seo.ru/wp-content/uploads/2025/08/orange-shestiugolnik.svg);
  width: 20.15vw;
  height: 21.92vw;
  background-size: 20vw;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sales-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 1vw;
}

.sales-item-title{
  color: #BC6304;
  font-size: 3.3vw;
}

.sales-describtion{
  font-size: 1.2vw;
  text-align: center;
  padding-inline: 0.8vw;
  padding-bottom: 1vw;
}

.sales-list-item-down{
  display: flex;
  column-gap: 1vw;
  position: absolute;
  top: 89%;
}

.addict-section{
  display: flex;
  padding-left: 7.3vw;
}

.addict-title{
  font-size: 3.3vw;
  padding-top: 2vw;
  padding-bottom: 3vw;
}

.addict-number{
  font-size: 3.3vw;
}

.addict-describtion{
  font-size: 1.6vw;
}

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

.addict-list{
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  grid-auto-rows: 1fr;
}

.addict-svg{
  width:7.9vw;
  position: relative;
  top: 33%;
  right: 2%;
}

.addict-list-item{
  display: flex;
}

.at1{
  width: 10vw;
}

.at2{
  width: 7vw;
}

.at3{
  width: 9vw;
}

.at4{
  width: 12vw;
}

.at5{
  width: 9vw;
}

.addict-list-item:not(:nth-child(5)){
  padding-left: 1vw;  
}

.addict-list-item:nth-child(1){
  padding-left: 0vw;  
}

.bacground-leaves{
  background-image: url(https://msk-seo.ru/wp-content/uploads/2025/08/background-leaves.png) ;
  background-repeat: no-repeat;
  background-size: 100vw;
}

.addict-list-item:not(:nth-child(5))::after{
  display: block;
  content: "";
  background-image: url(https://msk-seo.ru/wp-content/uploads/2025/08/arrow-8.svg);
  background-repeat: no-repeat;
  width: 7.96vw;
  height: 1.36vw;
  background-size: 6.8vw;
  position: relative;
  top: 76%;
  right: 2%;
}

.stages-section{
  padding-inline: 7.3vw;
  display: flex;
  align-items: center;
  padding-bottom: 5vw;
}

.stages-title{
  padding-top: 5vw;
  padding-bottom: 3vw;
  font-size: 3.3vw;
  text-align: center;
}

.stages-list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1vw;
}

.stages-list-item{
  display: flex;
  padding-block: 2vw;
  border-radius: 15px;
  column-gap: 1.5vw;
  padding-inline: 1.5vw;
  position: relative;
}

.stages-number{
  font-size: 6vw;
  align-self: flex-start;
  font-weight: 300;
  top: 0%;
  position: absolute;
}

.stages-describtion{
  font-size: 1.2vw;
  line-height: 130%;
  margin-left: 4.8vw;
}

.ils1{
  background-color: rgba(248, 123, 27, 0.2) ;
  min-height: 18vw;
  height: auto;
}

.ils2{
  background-color: rgba(226, 233, 255, 1);
  min-height: 16.35vw;
  height: auto;
}

.ils3{
  background-color: rgba(0, 54, 214, 0.07);
  min-height: 18.5vw;
  align-self: flex-end;
}

.ils4{
  background-color: rgba(248, 123, 27, 0.2) ;
  min-height: 18vw;
}

.ils5{
  background-color: rgba(226, 233, 255, 1) ;
  min-height: 18.37vw;
  align-self: flex-start;
}

.ils6{
  background-color: rgba(248, 123, 27, 0.2) ;
  min-height: 20.26vw;
  align-self: flex-start;
}

.ils7{
  background-color: rgba(0, 54, 214, 0.35) ;
  min-height: 18.57vw;
  align-self: flex-start;
}

.ils8{
  background-color: rgba(226, 233, 255, 1) ;
  min-height: 16.35vw;
  align-self: flex-start;
}

.ils1,.ils2,.ils4{
  align-self: flex-end;
}

.ils3,.ils7{
  position: relative;
  top: 11.5%;
}

.background-stone{
  background-image: url(https://msk-seo.ru/wp-content/uploads/2025/08/background-stone-scaled.png);
  background-repeat: no-repeat;
  background-position-x:center;
  background-position-y: 120%;
}

.form-tariff{
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.5vw;
  background-color: rgba(255, 255, 255, 0.5);
  padding-top: 2vw;
  padding-bottom: 1vw;
}


@media (min-width: 1921px){
	.stages-section {
		padding-inline: 85.483px;
		padding-bottom: 58.55px;
		display: flex;
		justify-content: center;
	}
	
	.stages-title {
		padding-top: 58.55px;
		padding-bottom: 35.13px;
		font-size: 38.643px;
	}
	
	.stages-list {
		gap: 11.71px;
		max-width: 1638.6px;
	}
	
	.stages-list-item {
		padding-block: 23.42px;
		column-gap: 17.565px;
		padding-inline: 17.565px;
	}
	
	.stages-number {
		font-size: 70.26px;
	}
	
	.stages-describtion {
		font-size: 14.052px;
		line-height: 130%;
		margin-left: 56.208px;
	}
	
	.ils1 {
		min-height: 210.78px;
	}

	.ils2 {
		min-height: 191.458px;
	}
	
	.ils3 {
		min-height: 216.635px;
	}
	
	.ils4 {
		min-height: 210.78px;
	}
	.ils5 {
		min-height: 215.113px;
	}
	.ils6 {
		min-height: 248.955px;
	}
	.ils7 {
		min-height: 252.585px;
	}
	.ils8 {
		min-height: 191.458px;
	}
	
	.blog-page{
		background-position-x: center!important;
	}
	
	.usl_fon{
		background-position-x: center!important;
	}
	
	.contacts-page{
		background-position-x: center!important;
	}
	
	
	.containerx{
	  margin-bottom: 62.3116px;
	}
	
	.service-section{
	  margin-top: 119.6px;
	}
	
	.raschetx {
		background-position-x: center !important;
		background-size: 1650.24px !important;
	}
	
	.wrappersx {
		max-width: 1672.6px!important;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.form_t1x {
		font-size: 16.1429px!important;
	}
	
	.form_t2x {
		font-size: 13.7733px!important;
	}
	
	.rasch_formx {
		max-width: 481.325px!important;
		margin-top: 38.506px!important;
		padding: 28.4352px 28.4352px 27px!important;
		border-radius: 20.734px!important;
	}
	
	.form_colx {
		margin-bottom: 19.253px!important;
	}
	
	.form_colx p {
		font-size: 12.2923px!important;
	}

	.pol_rowx span {
		font-size: 7.7012px!important;
	}
	
	.form_colx input, .form_colx select {
		padding: 7.7012px 11.5518px 7.7012px!important;
		font-size: 10.8113px!important;
	}
	
	.sec_zagx {
		font-size: 48.873px!important;
		margin-bottom: 23.1036px!important;
	}
	
	.usl_img_wrap{
		border-radius: 8.4417px;
		min-height: 126.477px;
	}
	
	.usl_block{
		border-radius: 7.7012px;
	}
	
	.usl_row{
		gap: 14.81px;
		max-width: 1638.6px;
	}

	.service-title{
	  font-size: 48.873px;
	  padding-bottom: 44.43px;
	  padding-top: 29.62px;
	}

	.service-item-text{
	  padding-top: 29.62px;
	  padding-right: 14.81px!;
	}

	.service-item-title{
	  font-size: 17.772px;
	  padding-bottom: 4.443px;
	  line-height: 110%;
	}

	.service-item-link{
	  right: -40%;
	  padding-bottom: 14.81px;
	  font-size: 14.81px;
	}

	.service-item-describtion{
	  font-size: 13.329px;
	  line-height: 110%;
	}
	
	.footer{
	  padding-left: 109.5px;
	  padding-block: 46.8px;
	  column-gap: 130.5px;
	  font-size: 18.75px;
		line-height: 206%;
		justify-content: center;
	}

	.footer-list{
		column-gap: 119.5px;
	}

	.footer-list-link{
	  padding-left: 15.6px;
	}

	.footer-list-link::before{
	  width: 3.9px;
	  height: 3.9px;
	  left: -9.375px;
	  top: 7.5px;
	  margin-left: 11.7px;
	}

	.footer-list-link:not(:last-child){
	  padding-bottom: 7.8px;
	}

	.footer-list-item-title{
	  padding-bottom: 30px;
	}

	.footer-list-item-contacts{
	  padding-bottom: 24px;
	}

	.msk-seo{
		font-size: 46.5px;
		padding-left: 6.3px;
	}
	
	.logotip{
	  padding-bottom: 30px;
	}

	.logotip-describtion-item{
	  padding-bottom: 30px;
	}

	.logo{
	  width: 319.5px;
	}
	
	.contacts{
	  width: 262.137px;
	}

	.info{
	  width: 122.923px;
	}
	
	.service{
	  width: 226.593px;
	}
	
	.law{
	  font-size: 15px;
	}
	
	.header{
		justify-content: center;
	}
	
	.nav-link{
		font-size: 20.6544px;
	}
	
	.header-text{
		font-size: 42.6px;
		margin-block: 16px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.header-telephone{
		width: 283.682px;
		border-radius: 0 0 15px 15px;
		margin-left: 14.8px;
	}

	.telephone{
		font-size: 29.417px;
	}
	
	.text-telephone{
		font-size: 16px;
	}
	
	.info-service{
	  column-gap: 174.05px ;
	}

	.lion-logo-image{
		width: 99.762px;
	}

	.question{
	  column-gap: 14.3px;
	  padding: 40px;
	  font-size: 22px;
	  border: 3.2px solid rgba(234, 233, 248, 0.438);
	  border-radius: 16px;
	  box-shadow: -16px -16px 16px rgba(25, 25, 112, 0.041), 16px 16px 16px rgba(25, 25, 112, .2);

	}
	
	.text-title-accordion{
	  margin: 80px auto;
	  padding-left: 9.704px;
	  font-size: 46px;
		width: 1638.6px
	}

	.accordion{
	  margin: 0 auto;
	  max-width: 1638.6px;
	}

	.accordion-item{
	  margin-bottom: 32px;
	}
	
	.container-body{
		margin-top: 180.73px;
	}
	
	.answer{
	  padding: 40px;
	  font-size: 24.6px;
	}
	
	.hidden-text{
	  row-gap: 15px;
	}

	.hidden-blue-text {
	  margin-block: 15px;
	}

	.show-blue-text {
	  margin-top: 15px;
	}

	.show-text-body{
		display: flex;
		flex-direction: column;
		align-items: center;
	  padding-inline: 7.3vw;
	}

	.show-text-title{
	  font-size: 48.3632px;
	  margin-top: 75.296px;
		width: 1638.6px;
	}

	.show-text-container{
		border-radius: 16px;
		padding: 49px;
		font-size: 23.168px;
		margin-block: 75.296px;
		max-width: 1638.6px;
		width: 100%;
	}

	.free-audit-text{
	  margin-top: 31.856px;
	}

	.text-showall{
	  margin-top: 17.376px;
	}

	.showall{
	  font-size: 29px;
	  margin: 0 auto;
	}
	
	.hidden-text-item h4{
		font-size:18.1px!important;
	}

	.show-text-container h3{
		font-size: 21px!important;
	}
	
	.form-section{
  height: 798.72px;
  display:flex;
  justify-content:center;
}

.form{
  padding-inline: 140.16px;
}

.form-input{
  row-gap: 7.68px;
  width: 639.36px;
  padding-bottom: 19.968px;
  padding-top: 3.2vw;
  margin-left: 61.44px;
  padding-inline: 80.64px;
}

.form-input-item{
  width: 460.8px;
  height: 51.84px;
}

.form-input-submit{
  width: 314.88px;
  height: 88.32px;
  font-size: 35.904px;
  margin-top: 29.952px;
}

.form-text{
  width: 698.88px;
}

.form-text-title{
  font-size: 63.36px;
  padding-bottom: 14.976px;
}

.form-text-describtion{
  font-size: 35.904px;
  width: 539.52px;
}
	
.background-lion{
  background-size: 1036.8px;
  background-position-y: 29.952px;
  background-position-x: 43vw;
}
	
.form-agree{
  font-size: 24.96px;
}

.form-title{
  font-size: 38.4px;
}
	
.problems-section{
margin-top: 34.944px;
}

.problems{
  padding-bottom: 19.968px;
  padding-top: 39.936px;
width:1920px;
	position:relative;
}

.problems-title{
  font-size: 63.36px;
}
	
.border{
  width: 1132.8px;
  height: 142.08px;
}

.problems-img1{
  width:1920px;
}

.problems-text1,.problems-text3,.problems-text5{
  font-size: 39.936px;
}

.problems-text2,.problems-text4{
  font-size: 39.936px;
  width: 476.16px;
  height: 94.08px;
}

.problems-text1,.problems-text5{
  width: 441.6px;
  height: 38.4px;
}

.problems-text1{
  width: 412.8px;
}

.problems-text5{
  width: 412.8px;
}

.problems-text3{
  width: 441.6px;
}
	
.about{
	display:flex;
	align-items:center;
	flex-direction:column;
}

.solution{
  font-size:39.936px ;
  padding-inline: 140.16px;
	width:1920px;
}

.solution-list{
  padding-top: 29.952px;
  row-gap: 39.936px;
  column-gap: 19.968px;
}

.solution-item{
  border-radius: 46.08px;
  padding-left: 29.952px;
  padding-top: 29.952px;
  height:441.6px;
}

.solution-item-img{
	height:268.8px;
}

.button-free-audit{
  font-size: 28.8px;
  width: 595.2px;
  height: 109.44px;
  margin-top: 82.56px;
}

.solution-item-text{
	padding-right:38.4px;
}

.collaboration-title{
  font-size: 63.36px;
  padding-bottom: 99.84px;
  padding-top:115.2px;
}

.collaboration{
  width: 1920px;
  padding-inline: 140.16px;
}
	
	.collaboration-section{
		display:flex;
		justify-content:center;
	}

.collaboration-list{
  grid-auto-rows: 633.6px;
  column-gap: 19.968px;
}

.collaboration-list-item-title{
  font-size: 39.936px;
}

.collaboration-list-item-describtion{
  font-size: 24px ;
}

.collaboration-list-item-text{
  padding-top: 49.92px;
  padding-inline: 53.76px;
}

.collaboration-list-item-line{
  padding-block: 19.968px;
}
	
	.result-svg{
	width:100vw;
}

.result-section{
  padding-top: 76.8px;
}
	
	.result-cont{
		width:1920px;
		position:relative;
	}
	
	.result{
		display:flex;
		align-items:center;
		flex-direction:column;
	}

.result-title{
  font-size: 63.36px ;
}

.result-list-item{
  padding-inline: 19.968px;
}

.month-result-title{
  font-size:39.936px ;
  padding-top: 14.976px;
  padding-bottom: 14.976px;
}

.month-result-item{
  font-size: 24px;
}

.month-result-item:not(:last-child){
  padding-bottom: 3.994px;
}

.mrl-3-4{
  padding-left: 9.984px;
}

.rli1{
  left: 7%;
  bottom: 12%;
  width:326.4px ;
}

.rli2{
  left: 26%;
  top: 30%;
  width: 332.16px;
}

.rli3{
  left: 45%;
  bottom: 6%;
  width: 264.96px;
}

.rli4{
  width: 291.84px;
  left: 48%;
  bottom: 47%;
}

.rli5{
  width: 316.8px;
  right: 11%;
  top: 32%;
}
	
	.pluses-section{
  position: relative;
  display: flex;
  justify-content: center;
}

.pluses-title{
  font-size: 63.36px;
}

.pluses-list{
  font-size:22.08px !important ;
}

.pluses-list-item{
  text-align: center;
  position: absolute;
}

.pluses-list-item-title{
  font-size:32.64px;
  padding-bottom:3.84px;
}

.pli1{
  width: 345.6px;
  top: 42%;
  left: 8%;
}

.pli2{
  width: 218.88px;
  top: 33%;
  left: 27%;
}

.pli3{
  width: 218.88px;
  top: 17%;
  left: 35%;
}

.pli4{
  width: 192.96px;
  top: 13%;
  left: 53%;
}

.pli5{
  width: 249.984px;
  left: 62%;
  top: 25%;
}

.pli6{
  width: 192.96px;
  top: 40%;
  left: 71%;
}

.pli7{
  width: 242.88px;
  left: 77%;
  top: 53%;
}

.pluses-img{
	padding-right:96px;
	width:1920px;
}
.button-free-audit-opacity{
    font-size: 28.8px;
    width: 576px;
    height: 101.76px;
    bottom: 54.912px;
}
	
	.pluses{
		position:relative;
	}
	
	.partners-section{
  padding-block: 115.2px;
		display:flex;
		flex-direction:column;
		align-items:center;
}

.partners-title{
  font-size: 63.36px ;
  padding-bottom: 39.936px;
}

.partners-list{
  padding-inline: 140.16px ;
  column-gap: 19.968px;
  row-gap: 14.976px;
  width:1920px;
}

.partners-list-item{
  border-width: 9.6px;
}

.partners-img{
  border-radius: 5px;
	width:100%;
}
	
	.portfoliox {
	background-position: center;
	background-size: cover;
	display:flex;
	justify-content:center;
}
	
	.wrapper-slidex{
		width:1920px;
		padding-inline:140.16px !important;
	}
	
	.wrapper-slidex {
    max-width: 86.71vw;
    padding: 0 20px;
    margin: 0 auto;
    margin-block: 100.032px !important;
}

.owl-carouselx {
	background: #FFFFFF;
	border-radius: 15px;
	padding: 65px 70px;
}

.port_blockx {
	width: 100%;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	column-gap:19.2px  !important;
}

.port_gallx {
	width: 46%;
}

.port_gallx {
	border-radius: 15px;
}

.port_gallx img {
	width: 100%;
	border-radius: 10px;
}

.port_infox {
	width: 46%;
}

.port_namex {
	font-weight: 700;
	font-size: 29.952px !important;
	margin-top: 9.984px !important;
	margin-bottom:24.96px !important;
	color: var(--color-dark);
	text-align: center;
}

.char_rowx {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-align-items: center;
	align-items: center;
}

.char_onex {
	display: table;
	font-size: 19.968px !important;
	margin-right: 39.936px !important;
	margin-bottom: 19.968px !important;
	color: var(--color-dark);
}

.char_onex span {
	font-weight: 700;
}

.char_sumx {
	width: 100%;
	font-size: 19.584px !important;
	margin-bottom: 19.584px !important;
	color: var(--color-dark);
}

.char_sumx span {
	font-weight: 700;
}

.port_textx {
	font-size: 19.584px!important;
	color: var(--color-dark);
}

.port_buttsx {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: space-around;
	margin: 30px 0;
}

.port_buttsx .butt_bigx {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	color:#fff;
	padding: 17px 30px;
	border-radius: 50px;
}


.port_buttsx .butt_bigx img {
	margin-right: 14.976px !important;
}

.port_buttsx .butt_bigx p {
	font-weight: 600;
	margin: 0;
}

.port_buttsx .butt_smallx {
	margin-left: 39.936px!important;
	text-decoration: underline;
	font-size: 17.856px !important;
	font-weight: 600;
	font-style: italic;
}

#port_slider .port_sliderx .owl-theme .owl-controls .owl-buttons div {
	color: #333;
	text-decoration: underline;
	margin: 19.584px 39.168px 0px !important;
	font-weight: 600;
	font-size: 19.584px !important;
	font-style: italic;
	opacity: 1;
}

#port_slider .port_sliderx .owl-prev {
	padding-left: 24.96px !important;
	background-image: url(../svg/arr_left.svg);
	background-color: transparent;
	background-repeat: no-repeat;
	background-size: 19.584px auto !important;
	background-position: left center;
}

#port_slider .port_sliderx .owl-next {
	padding-right: 24.96px !important;
	background-image: url(../svg/arr_right.svg);
	background-color: transparent;
	background-repeat: no-repeat;
	background-size: 19.584px auto !important;
	background-position: right center;
}

.port_gallx .owl-prev {
	position: absolute;
	top:42%;
	left: 2%;
	margin: 0!important;
	padding: 0!important;
	width: 55px;
	height: 55px;
	background-color: #FFFFFF!important;
	background-size: 13px auto!important;
	background-position: 45% center!important;
	border-radius: 100px;
}

.port_gallx .owl-next {
	position: absolute;
	top:42%;
	right: 2%;
	margin: 0!important;
	padding: 0!important;
	width: 55px;
	height: 55px;
	background-color: #FFFFFF!important;
	background-size: 13px auto!important;
	background-position: 55% center!important;
	border-radius: 100px;
}
	
	#port_slider .owl-next {
    padding-right: 24.96px;
    background-image: url(../img/arr_right.svg);
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: 19.584px auto;
    background-position: right center;
}
	
	#port_slider.owl-theme .owl-controls .owl-buttons div {
    color: #333;
    text-decoration: underline;
    margin: 19.584px 39.168px 0px;
    font-weight: 600;
    font-size: 19.584px;
    font-style: italic;
    opacity: 1;
}
	
	#port_slider .owl-prev {
    padding-left: 24.96px;
    background-image: url(../img/arr_left.svg);
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: 19.584px auto;
    background-position: left center;
}
	
	.item {
    height: 576px !important;
		display:flex;
		justify-content:center;
}
	
	.usl_fon .wrapper{
		width:1920px !important;
}
	
	.usl_fon{
		min-height:0px !important;
	}
	
	.contactsx{
		width:1920px !important;		
	}
	
	.contactsx-cont{
		display:flex;
		justify-content:center;
	}
	
	.tariff-form-text{
  padding-left: 19.2px;
}
	
	.tariff-form-section{
		display:flex;
		justify-content:center;
		padding-top:40px;
	}

.tariff-form{
  padding-inline: 140.16px ;
  column-gap: 57.6px;
  padding-bottom: 134.4px;
	width:1920px;
}

.tariff-backdrop-lion{
  background-size: 960px;
  background-position-y: -153.6px;
}

.tariff-form-title{
  font-size: 57.6px;
  padding-bottom: 19.2px;
}

.tariff-form-describtion{
  font-size: 24px;
  width: 576px;
}

.tariff-form-list{
  padding-top: 57.6px;
}

.tariff-form-item{
  width: 211.2px;
}

.tariff-form-item-text{
  font-size: 24px;
}

.tariffs-form-text-svg{
  width: 48px;
}
	
	.tariffs{
  padding-inline: 140.16px;
  padding-bottom: 134.4px;
  width:1920px;
}
	
	.tariffs-section{
		display:flex;
		justify-content:center;
	}

.tariffs-list{
  grid-auto-rows: 422.4px;
  column-gap: 96px;
  row-gap: 76.8px;
}

.backdrop-vosmiugolnik{
  background-size: 476.16px;
}

.tariffs-list-item{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tariff-svg{
  width: 134.4px;
}

.tariff-title{
  font-size: 30.72px;
}

.tariffs-describtion{
  font-size: 23.04px;
}

.sale-text{
  font-size: 19.968px;
  column-gap: 19.2px;
}

.new-price{
  font-size: 30.72px;
}

.sale{
  font-size: 15.36px;
}

.tariffs-link{
  color: #0036D6;
  font-size: 24px;
  padding-top: 19.2px;
}
	
	.tariffs-flag{
  position: relative;
  top: -36.6%;
  left: 14%;
  width: 156px;
}
	
	.includes{
  padding-inline: 140.16px;
  display: flex;
  flex-direction: column;
  align-items: center;
		width:1920px;
}
	
	.section-includes{
		display:flex;
		justify-content:center;
	}

.includes-title{
  font-size: 63.36px;
  padding-bottom: 96px;
}

.orange-text{
  color:#BC6304 ;
}

.includes-text{
  font-size: 30.72px;
  font-weight: 600;
  position: relative;
  width: 230.4px;
  margin-left: 9.6px;
}

.includes-text::before{
  display: block;
  position: absolute;
  background-image:url(https://msk-seo.ru/wp-content/uploads/2025/08/check-orange.svg) ;
  background-size: 49.92px ;
  width: 384px;
  height: 384px;
  content: "";
  left: -23% ;
  background-repeat: no-repeat;
}

.includes-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 57.6px;
  column-gap: 192px;
}
	
	.sales-section{
  margin-top: 96px;
		height:1400px;
		background-image:url(https://msk-seo.ru/wp-content/uploads/2025/08/lion-on-grass.png);
		background-repeat:no-repeat;
		background-size:100vw;
		background-position-y:bottom;
}

.sales-title{
  font-size: 63.36px;
  padding-top: 38.4px;
  padding-bottom: 38.4px;
}

.sales{
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-inline: 192px;
}

.sales-list-item{
  background-image: url(https://msk-seo.ru/wp-content/uploads/2025/08/orange-shestiugolnik.svg);
  width: 386.88px;
  height: 420.864px;
  background-size: 384px;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sales-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 19.2px;
}

.sales-item-title{
  color: #BC6304;
  font-size: 63.36px;
}

.sales-describtion{
  font-size: 23.04px;
  text-align: center;
  padding-inline: 0.8vw;
  padding-bottom: 19.2px;
}

.sales-list-item-down{
  display: flex;
  column-gap: 19.2px;
  position: absolute;
  top: 89%;
}
	
	.lion-grass{
		width:100vw;
		position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
	}
	
	.addict-section{
  padding-left: 140.16px;
		justify-content:center;
}

.addict-title{
  font-size: 63.36px;
  padding-top: 38.4px;
  padding-bottom: 57.6px;
}

.addict-number{
  font-size: 63.36px;
}

.addict-describtion{
  font-size: 30.72px;
}

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

.addict-list{
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  grid-auto-rows: 1fr;
}

.addict-svg{
  width:151.68px;
  position: relative;
  top: 33%;
  right: 2%;
}

.addict-list-item{
  display: flex;
}

.at1{
  width: 192px;
}

.at2{
  width: 134.4px;
}

.at3{
  width: 172.8px;
}

.at4{
  width: 230.4px;
}

.at5{
  width: 172.8px;
}

.addict-list-item:not(:nth-child(5)){
  padding-left: 19.2px;  
}

.addict-list-item:nth-child(1){
  padding-left: 0vw;  
}

.bacground-leaves{
  background-image: url(https://msk-seo.ru/wp-content/uploads/2025/08/background-leaves.png) ;
  background-repeat: no-repeat;
  background-size: 100vw;
}

.addict-list-item:not(:nth-child(5))::after{
  display: block;
  content: "";
  background-image: url(https://msk-seo.ru/wp-content/uploads/2025/08/arrow-8.svg);
  background-repeat: no-repeat;
  width: 152.832px;
  height: 26.112px;
  background-size: 130.56px;
  position: relative;
  top: 76%;
  right: 2%;
}
}


@media (max-width: 1750px){
	.wrapperz{
	padding-inline:8vw;
    }
	.wrappery{
		padding-bottom:3vw;		
	}
	.wrapperq{
		padding-bottom:7vw;
	}
	
	.header-telephone {
		margin-left: 3vw;
	}
	
	.nav-link {
		font-size: 1.4vw;
	}
}

@media (hover: hover) {
  .partners-list-item:hover{
  transition: var(--transition);
  transform: scale(1.2);
  box-shadow: 1px 1px 25px 10px rgba(146, 148, 248, 0.4);
  z-index: 100;
  }

  .partners-list-item:hover:before {
    left: 100%;
  }
}

@media (hover: none) {
  .partners-list-item:active{
  transition: var(--transition);
  transform: scale(1.2);
  box-shadow: 1px 1px 25px 10px rgba(146, 148, 248, 0.4);
  z-index: 100;
  }

  .partners-list-item:active:before {
    left: 100%;
  }
}

@media (hover: hover) {
  a:not(.telephone, .dropdown-item, .butt_big, .usl_zakaz, .butt_bigx, .text-telephone):hover{
    color: var(--color-blue);
    transition: var(--transition);
  }
}

/*
@media (hover: none) {
  a:not(.telephone):active{
    color: var(--color-blue);
    transition: var(--transition);
  }
}
*/

@media (hover: hover) {
  button:hover{
    background-color: var(--color-light);
    color: var(--color-blue);
    transition: var(--transition);
  }
}

@media (hover: none) {
  button:active{
    background-color: var(--color-light);
    color: var(--color-blue);
    transition: var(--transition);
  }
}

@media (hover: hover) {
	.forma:hover {
		color: var(--color-blue);
	}
}

@media (hover: none) {
	.forma:active{
		color: var(--color-blue);
	}
}

/*
@media (max-width: 1560px){
	.header-telephone {
		margin-left: 3vw;
	}
	
	.nav-link {
		font-size: 1.4vw;
	}
}
*/
@media (max-width: 1440px) {
		
	.navx .wrapperx{
		top: 100px;
	  }
	
  .partners-list{
    padding-inline: 8vw;
  }

  .solution{
    padding-inline: 8vw;
  }

  .collaboration{
    padding-inline: 8vw;
  }

  .services{
    padding-inline: 8vw;
  }

  .text-title-accordion{
    padding-inline: 8vw;
  }

  .containerx{
    padding-inline: 8vw;
  }

  .footer{
    padding-left: 8vw;
  }

  .form{
    padding-inline: 8vw;
  }

  .show-text-body{
    padding-inline: 8vw;
  }
	.header-text {
    font-size: 3vw;
  }
	
	.tariff-form{
    padding-inline: 8vw;
  }

  .tariffs{
    padding-inline: 8vw;
  }

  .backdrop-vosmiugolnik {
    background-size: 24.6vw;
  }

  .includes{
    padding-inline: 8vw;
  }

  .addict-section{
    padding-left: 8vw;
  }

  .stages-section{
    padding-inline: 8vw;
  }

  .ils6{
    min-height: 21.26vw;
  }

  .ils7{
    min-height: 21.57vw;
  }
}

@media(max-width: 1024px){
	
	#port_slider.owl-theme .owl-controls .owl-buttons div {
    font-size: 1.9vw;
}
	
	    .port_textx {
        font-size: 2vw !important;
    }
	
	.owl-item .item{
		display:flex;
		justify-content:center;
	}
	
	    .rasch_formx {
        max-width: 60vw !important;
	     min-height:35vw;
    }
	
	.form_colx p {
    font-size: 1.3vw !important;
}
	
	.form_colx input, .form_colx select {
    font-size: 1.1vw !important;
}
	
	.pol_rowx span {
    font-size: 0.9vw !important;
}
	
	.form_t1x {
    font-size: 1.3vw !important;
}
	
	.form_t2x {
    font-size: 1.2vw !important;
}
	
	.navx .drop-btn span{
    font-size: 21px;
    cursor: pointer;
  }

  .navx .wrapperx{
    top: 85px;
  }

  .show-text-container{
    box-shadow: inset 0 -140px 56px -31px rgb(255, 255, 255, 0.94);
  }

  .sli2{
    width: 13vw;
  }

  .sli3{
    width: 14vw;
  }

  .sli4{
    width: 12vw;
  }

  .sli5{
    width: 18vw;
  }

  .sli6{
    width: 16vw;
  }

  .sli7{
    width: 14vw;
  }

  .sli8{
    width: 14vw;
  }


  .question{
    font-size: 2vw;
  }

  .solution{
    padding-inline: 8.6vw;
  }

  .collaboration{
    padding-inline: 8.6vw;
  }

  .services{
    padding-inline: 8.6vw;
  }

  .partners-list{
    padding-inline: 8.6vw;
  }

  .text-title-accordion{
    padding-inline: 8.6vw;
  }

  .containerx{
    padding-inline: 8.6vw;
  }

  .footer{
    padding-left: 8.6vw;
  }

  .form{
    padding-inline: 3.6vw;
  }

  .show-text-body{
    padding-inline: 8.6vw;
  }

.collaboration-list-item:nth-child(5){
    .collaboration-list-item-img{
      content: url(https://msk-seo.ru/wp-content/uploads/2025/08/women-mobile.png);
    }
  }
  
  .form-input-item{
    border-radius: 7px;
    font-size: 2vw;
  }

  .form-input-submit{
    border-radius: 7px;
  }
  .footer-list-link{
    text-decoration: none;
  }

  .link-info{
    text-decoration: underline;
  }

  .collaboration-list{
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    column-gap: 6vw;
    row-gap: 3vw;
  }

  .collaboration-list-item-title{
    font-size: 2.5vw;
    padding-bottom: 1vw;
  }

  .collaboration-list-item-describtion{
    font-size: 2vw;
  }

  .solution-item{
    border-radius: 29px;
  }

  .solution-item-text{
    padding-top: 0.8vw;
    font-size: 1.8vw;
  }

  .reverse-column{
    display: flex;
    flex-direction: column-reverse;
  }

  .rli1{
    left: 13%;
    bottom: 25%;
    width:12vw;
  }

  .rli2{
    left: 25%;
    top: 28%;
    width: 16vw;
  }

  .rli3{
    left: 41%;
    bottom: 15%;
    width: 13.5=8vw;
  }

  .rli4{
    width: 15.2vw;
    left: 48%;
    bottom:52%;
  }

  .rli5{
    top: 35%;
    right: 15%;
    width: 14vw;
  }

  .problems-text5{
  text-align: center;
  }

  .service1{
    width: 0px;
    content: url();
  }

  .footer-list{
    column-gap: 5vw;
  }

  .footer{
    column-gap: 6vw;
    padding-inline: 8.6vw;
  }

  .footer-list-link::before{
  display: block;
  position: absolute;
  background-color: var(--color-dark);
  width: 2px;
  height: 2px;
  content: "";
  border-radius: 50%;
  left: -0.5em;
  top: 0.4em;
  margin-left: 0.78vw ;
  }

  .logotip-describtoin-age{
    font-size: 2vw;
  }

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

  .lion-logo-svg{
    padding-bottom: 1vw;
  }

  .logotip{
    flex-direction: column;
    padding-bottom: 3vw;
  }

  .logotip-describtion{
    width: 25vw;
  }

  .service-img{
    width: 15vw;
    height: 15vw;
  }

  .service-list{
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 20vw;
    column-gap: 7vw ;
  }

  .service-item-title{
    font-size: 1.3vw;
    padding-bottom: 1vw;
  }

  .service-item-describtion{
    font-size: 0.9vw;
  }

  .partners-list{
    grid-template-columns: 1fr 1fr 1fr;
  }
	
  .custom-logo{
	padding-bottom: 1vw;
  }
  .header-text {
	display:flex;
	align-items:center;
    font-size: 2.7vw;
	width:13vw;
  }
	
  .nav-link{
	  font-size:1.3vw;
	}
  .header-telephone{
	  margin-left:3.3vw;
	}
	.usl_img_wrap {
    width: 35%;
	height:50%;
	min-height: 0px;
    }
	.solution-item-img img{
    width:auto;
  }
	
	.tariffs-list-item{
    position: relative;
  }

  .tariff-title{
    position: absolute;
    font-size: 2.3vw;
    top: 14%;
  }

  .tariff-title-adapt{
    position: absolute;
    width: 20vw;
    top: 70%;
    left: -175%;
  }

  .tariffs-describtion{
    font-size: 1.5vw;
    width: 19.3vw;
    text-align: center;
    top: 38%;
    position: absolute;
  }

  .sale-text{
    font-size: 1.25vw;
  }

  .sale{
    font-size: 1.1vw;
  }

  .tariffs-price{
    top: 58%;
    position: absolute;
  }

  .new-price{
    font-size: 2.4vw;
  }

  .tariffs-link{
    padding-top: 0vw;
  }

  .tariffs-flag{
    position: absolute;
    top: 59.3%;
    left: 45%;
    width: 10vw;
  }

  .stages-list-item{
    padding-bottom: 4vw;
    padding-top: 3vw;
  }

  .stages-describtion{
    font-size: 1.3vw;
  }

.ils1{
  min-height: 21vw;
}

.ils2{
  min-height: 20.35vw;
}

.ils3{
  min-height: 25.1vw;
}

.ils4{
  min-height: 20vw;
  top: -16%;
}

.ils5{
  min-height: 20.37vw;
}

.ils6{
  min-height: 24.26vw;
}

.ils7{
  min-height: 24.57vw;
}

.ils8{
  min-height: 23.35vw;
  top: -14%;
}

.background-stone{
  background-size: 130vw;
  background-position-y: 90%;
}

  .tariff-form{
    padding-inline: 8.6vw;
  }

  .tariffs{
    padding-inline: 8.6vw;
  }

  .backdrop-vosmiugolnik {
    background-size: 24.3vw;
  }

  .includes{
    padding-inline: 8.6vw;
  }

  .addict-section{
    padding-left: 8.6vw;
  }

  .stages-section{
    padding-inline: 8.6vw;
  }

  .includes-text{
    margin-left: 0vw;
  }

  .includes-text::before {
    background-size: 2.3vw;
    left: -20%;
    top: 3%;
  }

  .stages-number{
    font-size: 9vw;
    top: -1%;
  }

  .stages-describtion{
    margin-left: 6vw;
  }
}

@media (max-width: 960px) {
	.form-input{
		width: 40.3vw;
	}
	
	.problems-section{
		margin-top: 4.82vw;
	}
}

@media (max-width: 768px) {
	.show-text-container h3{
		font-size: 2.45vw!important;
	}
	
	.hidden-text-item h4{
		font-size: 2.35vw!important;
	}
	
	.question{
		width:100%;
	}
	
	  .question::after{
    right: 1.5rem;
  }

  .question::before{
    right: 0.6rem;
  }
	
	.navx .wrapperx{
    top: 60px;
    width: 265px;
  }
	
  .showall{
    font-size: 3.34vw;
  }

  .show-text-body{
    padding-inline: 9.2vw;
  }

  .show-text-container{
    font-size: 2.8vw;
  }

    .solution{
    padding-inline: 9.2vw;
  }

  .collaboration{
    padding-inline: 9.2vw;
  }

  .services{
    padding-inline: 9.2vw;
  }

  .text-title-accordion{
    padding-inline: 9.2vw;
  }

  .containerx{
    padding-inline: 9.2vw;
  }

  .footer{
    padding-left: 9.2vw;
  }

  .form{
    padding-inline: 4.3vw;
  }

  .partners-list{
    padding-inline: 9.2vw;
  }

  .question {
    font-size: 2.8vw;
  }

  .answer{
    font-size: 2.6vw;
  }

  .text-title-accordion{
    margin: 2rem auto;
  }

  .wrapperz{
	padding-inline:8vw;
  }
	
  .reverse-menu{
	display: flex;
    flex-direction: row-reverse;
	column-gap:10vw;
  }
	
  .header-telephone{
	  width:50vw;
  }
	/*
  .telephone{
    padding-left:15vw;
  }
	*/
  .usl_block {
    width:100%;
  }
	.service-section{
		align-items:center;
	}
	.usl_col {
        max-width: 100vw;
    }
	    .service-item-title {
        font-size: 2.3vw;
    }
	    .service-item-describtion {
        font-size: 1.8vw;
    }
	.service-item-link {
    font-size: 1.3vw;
    }
	 .usl_img_wrap {
        width: 35%;
        height: 70%;
    }
	.usl_block img {
    top: 50%;
    left: 60%;
    border-radius:10px;
}
	
	.form_colx p {
        font-size: 1.9vw !important;
    }
	
	    .form_colx input, .form_colx select {
        font-size: 1.6vw !important;
    }
	
	.pol_rowx span {
        font-size: 1.4vw !important;
    }
	
	.form_t1x {
        font-size: 2.1vw !important;
    }
	
	    .form_t2x {
        font-size: 2vw !important;
    }
	
	.tariff-form{
    padding-inline: 9.2vw;
  }

  .tariffs{
    padding-inline: 9.2vw;
  }

  .backdrop-vosmiugolnik {
    background-size: 23.9vw;
  }

  .includes{
    padding-inline: 9.2vw;
  }

  .addict-section{
    padding-left: 9.2vw;
  }

  .stages-section{
    padding-inline: 9.2vw;
  }

  .includes-text{
    margin-left: 0vw;
  }

  .includes-text::before {
    background-size: 2.3vw;
    left: -20%;
    top: 3%;
  }

  .tariffs-price {
    top: 56%;
    position: absolute;
  }

  .tariffs-flag{
    top: 57%;
  }
}

@media(max-width: 480px){
	
	.text-title-accordion{
    margin-top: 5rem;
  }
	
	.show-text-container h3{
		font-size: 3.45vw!important;
	}
	
	.hidden-text-item h4{
		font-size: 3.35vw!important;
	}
	
	.port_textx {
        font-size: 2.6vw !important;
    }
	
	.pol_rowx span {
        font-size: 1.9vw !important;
    }
	
	    .form_colx input, .form_colx select {
        font-size: 2.1vw !important;
    }
	
	    .form_colx p {
        font-size: 2.5vw !important;
		margin-bottom:4vw;
    }
	
	    .form_t1x {
        font-size: 2.5vw !important;
    }
	
	    .form_t2x {
        font-size: 2.4vw !important;
    }
		
	.sec_zagx {
        margin-bottom: 3vw !important;
    }
	
	    .rasch_formx {
        max-width: 80vw !important;
        min-height: 40vw;
    }
	
	 .item {
      height: 70vw !important;
    }
	
	.port_blockx{
		height:auto !important;
	}
	
	.solution-item-img {
    top: 39.5%;
    height: 20vw;
    }
	
	.solution-item{
		height:40vw;
	}
		
	.form{
		padding-inline: 7.55vw;
	}
	
	.problems-section{
		margin-top: 11.5vw
	}
	
  .header-text{
    font-size: 6.6vw;
  }

  .law{
    font-size: 2vw;
  }

  .showall{
    font-size: 4vw;
  }
	
  .question::after{
    right: 1.3rem;
  }

  .question::before{
    right: 0.4rem;
  }

  .question.active::after{
    right: 1.3rem;
  }

  .question.active::before{
    right: 0.4rem;
  }

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

  .form-section{
  position: relative;
  height: 150vw;
  margin-bottom: 10vw;
  display: flex;
  }

  .form-text{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20vw;
    padding-bottom: 12vw;
  }

  .form-text-title{
    font-size: 6vw;
    width:70vw;
  }

  .form-text-describtion{
    font-size: 3vw;
    width: 40vw;
  }

  .form-input{
    margin-left: 0px;
    width: 85vw;
    height: 70vw;
    justify-content: center;
  }

  .form-input-item{
    width: 70vw;
    height: 10vw;
    font-size: 4vw;
  }

  .form-input-submit{
    width: 70vw;
    height: 10vw;
    font-size: 3vw;
  }

  .background-lion{
  content: '';
  background: url(https://msk-seo.ru/wp-content/uploads/2025/08/lion-logo-opacity.svg) center/contain no-repeat;
  background-size: 140vw;
  background-position-x: 30vw;
  }

  .problems-title{
    font-size: 6vw;
  }

  .problems-title-buttom{
    width: 60vw;
    height: 11vw;
  }

  .problems-title-text{
    padding-inline: 10vw;
  }

  .problems-img1{
    content: url(https://msk-seo.ru/wp-content/uploads/2025/08/men-mobile.png);
  }

  .problems-text1{
  left: 17%;
  bottom: 25%;
  }

  .problems-text2{
  left: 50%;
  top: 63%;
  }

  .problems-text3{
  right: 23%;
  top: 47%;
  }

  .problems-text4{
  bottom: 65%;
  right: 25%;
  }

  .problems-text5{
  right: 60%;
  bottom: 62%;
  }

  .problems-title-buttom{
    bottom: 7%;
    width: 78vw;
    height: 15vw;
    font-size: 5vw;
  }

  .problems-title-top{
    position: absolute;
    top: 5%;
    z-index: 1;
  }

  .solution-list{
  display: grid;
  grid-template-columns: 38.5vw 38.5vw;
  grid-auto-rows: auto;
  }
	
  .solution-item-img {
    top: 50%;
  }

  .button-free-audit{
  background-color: transparent;
  box-shadow: none;
  color: var(--color-light);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 4vw;
  width: 40vw;
  height: 40vw;
  margin-inline: 0;
  margin-top: 0;
  border: none;
  left: 0%;
  text-align: start;
  border-radius: 29px;
  padding-left: 5vw;
  }

  .solution-item-button{
  display: flex;
  justify-content: center;
  grid-column-start:auto;
  grid-column-end:auto;
  background-color: var(--color-blue);
  box-shadow: 1px 1px 50px 0 rgba(0, 54, 214, 0.5);
  border: var(--color-blue);
  border-radius: 29px;
  }


  .sli2{
    width: 20vw;
  }

  .sli3{
    width: 22vw;
  }

  .sli4{
    width: 23vw;
  }

  .sli5{
    width: 27vw;
  }

  .sli6{
    width: 24vw;
  }

  .sli7{
    width: 21vw;
  }

  .sli8{
    width: 23vw;
  }

  .sit2{
    width: 20vw;
  }

  .sit3{
    width: 25vw;
  }

  .solution-item-text{
    padding-top: 1vw;
    padding-left: 2vw;
    font-size: 3.7vw;
    line-height: 105%;
  }

  .collaboration-list-item-title{
  font-size: 5vw ;
  font-weight: 600;
  }

  .collaboration-list-item-describtion{
  font-size: 3.33vw ;
  padding-top: 3vw;
  line-height: 120%;
  }

  .collaboration-list-item-text{
  padding-top: 4vw;
  padding-inline: 0vw;
  padding-bottom: 3vw;
  }

  .collaboration-list-item-line{
    padding-inline: 4vw;
  }

  .clib1{
    width: 30vw;
  }

  .clib3{
    padding-inline: 2vw;
  }

  .clib4{
    padding-inline: 2vw;
  }

  .clli{
    content: url(https://msk-seo.ru/wp-content/uploads/2025/08/women-mobile.png);
    left: 8%;
  }

  .clli2{
    content: url(https://msk-seo.ru/wp-content/uploads/2025/08/target-mobile.png);
  }

  .result-svg{
    content: url(https://msk-seo.ru/wp-content/uploads/2025/08/graphic-mobile.png);
    height: 157vw;
    object-fit: cover;
  }
  
  .result-title{
    padding-top: 10vw;
    font-size: 6vw;
    text-align: center;
    padding-inline: 10vw;
  }

  .month-result-title{
    font-size: 4vw;
  }

  .month-result-item{
    font-size: 3vw;
  }

  .month-result-item::before{
  left: -7% ;
  top: 0.2em;
  }

  .footer-list-link::before{
  width: 2px;
  height: 2px;
  left: -0.5em;
  top: 0.25em;
  }

  .rli1{
  left: 55%;
  bottom:65%;
  width:35vw ;
  }

  .rli2{
  left: 14%;
  top: 39%;
  width: 37vw;
  }

  .rli3{
  left: 58%;
  bottom: 33%;
  width: 29vw;
  }

  .rli4{
  width: 25vw;
  left: 23%;
  bottom: 20%;
  }

  .rli5{
  width: 30vw;
  right: 16%;
  top: 78%;
  }

  .pluses-img{
    content: url(https://msk-seo.ru/wp-content/uploads/2025/08/lion.png);
	  padding-right:0vw;
  }

  .pluses-title{
    font-size: 6vw;
    padding-top: 10vw;
  }

  .blue-black-text{
    color: var(--color-dark-blue) ;
  }

  .pluses-list-item{
    font-size: 3vw;
    letter-spacing: 0%;
    line-height: 100%;
  }

  .pluses-list-item-title{
    padding-bottom: 2vw;
	  font-size:3.5vw;
  }

  .pli1{
    width: 39vw;
    top: 22%;
    left: 50%;
  }

  .pli2{
    width: 40vw;
    top: 69%;
    left: 12%;
  }

  .pli3{
    width: 30vw;
    top: 40%;
    left: 4%;
  }

  .pli4{
    width: 23vw;
    top: 63%;
    left: 62%;
  }

  .pli5{
    width: 30vw;
    top: 20%;
    left: 12%;
  }

  .pli6{
    width: 30vw;
    left: 68%;
    top: 44%;
  }

  .pli7{
    width: 60%;
    left: 20%;
    top: 80%;
  }

  .form-agree{
  font-size: 2.5vw;
}

.form-title{
  font-size: 5vw;
}

  .visually-hidden {
  position: relative !important;
  right: 1%;
  clip-path: inset(0%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: visible;
  }

  .button-free-audit-opacity{
    background-color: rgba(0, 54, 214, 0.82);
    box-shadow: 1px 1px 50px 0 rgba(0, 54, 214, 0.5);
    color: var(--color-light);
    font-size: 3vw;
    width: 70vw;
    height: 10vw;
    left: 15%;
  }

  .footer{
    flex-direction: column;
    padding-inline: 7.3vw;
  }

  .footer-list{
    padding-bottom: 6vw;
    font-size: 2.4vw;
    line-height: 120%;
    column-gap: 28vw;
  }

  .info-service{
    flex-direction: column;
  }

  .contacts{
    width: 32vw;
  }

  .footer-list-item-title{
    padding-bottom: 2vw;
  }

  .info{
    width: 20vw;
  }

  .service{
    width: 30vw;
  }

  .footer-list-link{
    margin-left: 2vw;
  }

  .logo{
    align-self: center;
  }

  .logotip{
    width: 50vw;
  }

  .lion-logo-svg{
    width: 30vw;
  }

  .lion-logo-image{
    margin-inline: -1.22vw;
    width: 13.8vw;
  }

  .msk-seo{
    font-size: 10vw;
    padding-top: 2.3vw;
  }

  .logotip-describtion{
    padding-top: 6vw;
    font-size: 3vw;
    width: 60vw;
    line-height: 120%;
  }

  .logotip-describtoin-age{
    font-size: 4vw;
    padding-top: 2vw;
  }

  .service-list{
    grid-template-columns: auto;
    grid-auto-rows: 45vw;
    row-gap: 5vw;
  }

  .service-img{
    width: 25vw;
    height: 25vw;
    left: -3%;
  }

  .service-item-title{
    padding-bottom: 3vw;
    font-size: 3.5vw;
  }

  .service-item-describtion{
    font-size: 2.3vw;
    padding-right: 3vw;
  }

  .service-item-link{
    font-size: 2.5vw;
  }

  .header-menu-item{
    text-align: center;
    font-weight: 600;   
  }

  .header-menu-link {
    color: var(--color-light);
    font-size: 7vw;
  }

  .header-menu-list {
    margin-top: 40px;
  }

  .header-telephone{
    width: 40vw;
    flex-direction: column-reverse;
  }

  

  .text-telephone{
    font-size: 3vw;
  }

  .telephone{
    font-size: 4vw;
  }

  .text-carousel{
    font-size: 6vw;
}

.collaboration-title{
  padding-top: 15vw;
  font-size: 5.6vw;
}

.collaboration-list{
  display: grid;
  row-gap: 10vw;
  column-gap: 4vw;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
}

.partners-title{
  font-size: 6vw;
  padding-top: 10vw;
  padding-bottom: 5vw;
}

.show-text-body{
    padding-inline: 11vw;
  }
	
.custom-logo{
	width: 30vw;
  }
	
.cont_tel {
	font-size: 10px;
}

.cont_mail {
	font-size: 10px;
}

.cont_adr {
	font-size: 10px;
}
.cont_text {
	font-size: 15px;
}
.reverse-menu{
	column-gap:0vw;
}
.header-text{
	width:31vw;
	padding-left:2vw;
}
	 .usl_img_wrap {
        width: 40%;
        height: 50%;
    }
	    .usl_col {
        max-width: 100vw;
    }
	
	.tariff-form-section{
  padding-bottom: 10vw;
}

.tariff-form{
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  padding-block: 3vw;
  row-gap: 3vw;
}

.tariff-form-text{
  align-items: center;
}

.tariff-form-title{
  font-size: 5vw;
  text-align: center;
  padding-inline: 10vw;
  padding-top: 20vw;
}

.tariff-form-describtion{
  font-size: 3vw;
  width: 70vw;
  text-align: center;
  padding-top: 2vw;
}

.tariff-form-item {
  width: 15vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10vw;
}

.tariff-form-item-text{
  font-size: 2vw;
}

.tariffs-form-text-svg {
  width: 5vw;
}

.tariff-form-list{
  column-gap: 13vw;
  padding-bottom: 4vw;
}

.tariff-backdrop-lion {
  background-size: 140vw;
  background-position-y: -19vw;
  width: 100%;
  height: 100vw;
}

.tariffs-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 45vw;
  column-gap: 5vw;
  row-gap: 10vw;
}

.backdrop-vosmiugolnik {
  background-size: 50vw;
}

.tariff-svg{
  width: 15vw;
}

.tariff-title{
  top: 18%;
  font-size: 4vw;
}

.tariffs-describtion{
  font-size: 3vw;
  width: 40vw;
  top: 40%;
}

.tariffs-price{
  top: 60%;
}

.sale{
  font-size: 2vw;
}

.sale-text{
  font-size: 2vw;
  column-gap: 2vw;
}

.new-price{
  font-size: 5vw;
}

.tariffs-link{
  font-size: 2vw;
  position: absolute;
  left: 30%;
}

.tariff-title-adapt {
  position: absolute;
  width: 40vw;
  top: 70%;
  left: -210%;
}

.tariffs-flag{
  width: 18vw;
  top: 60.8%;
  left: 46.8%;
}

.includes-title{
  font-size: 5vw;
}

.includes-text{
  width: 70vw;
  font-size: 3vw;
  padding-bottom: 3vw;
  padding-left: 20vw;
}

.includes-text::before {
    background-size: 6vw;
    left:10%;
    top: -10%;
}

.addict-list-item:not(:nth-child(5))::after {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

.addict-title{
  font-size: 5.5vw;
  width: 100%;
  text-align: center;
}

.addict-section{
  padding-inline: 10vw;
}

.addict-number{
  font-size: 5vw;
}

.addict-describtion{
  font-size: 3vw;
}

.addict-list{
  display: flex;
  flex-wrap: wrap;
  column-gap: 10vw;
  justify-content: center;
  row-gap: 4vw;
}

.addict-list-item{
  text-align: center;
}

.at1{
  width: 19vw;
}

.at2{
  width: 19vw;
}

.at3{
  width: 19vw;
}

.at4{
  width: 25vw;
}

.at5{
  width: 25vw;
}

.stages-title{
  font-size: 5vw;
  padding-bottom: 10vw;
  padding-top: 10vw;
}

.stages-list{
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: auto;
  gap: 2vw;
}

.stages-section{
  padding-inline: 11vw;
}

.stages-number{
  font-size: 18vw;
  padding-left: 1vw;
  top: 3%;
}

.stages-describtion{
  font-size: 2.4vw;
  padding-top: 5vw;
  line-height: 130%;
  margin-left: 12vw;
}

.stages-list-item{
  column-gap: 0.5vw;
  padding-left: 0vw;
  padding-right: 2vw;
  padding-top: 3vw;
}

.ils1,.ils2{
  min-height: 50vw;
}

.ils3,.ils4{
  min-height: 45vw;
}

.ils5,.ils6{
  min-height: 55vw;
}

.ils7,.ils8{
  min-height: 50vw;
}

.ils4,.ils7,.ils8,.ils3{
  top: 0%;
}

.ils1,.ils3,.ils5,.ils7{
  top: 12%;
}

.stages-list-item{
  align-self: normal;
}

.stages-list-item:nth-child(2n) .stages-describtion{
  width: 25vw;
}

.background-stone {
  background-image: url(https://msk-seo.ru/wp-content/uploads/2025/08/background-stone-mobile.png);
  background-repeat: no-repeat;
  background-size: 140vw;
  background-position-x: center;
  background-position-y: -10%;
}

.lion-grass{
  content: url(https://msk-seo.ru/wp-content/uploads/2025/08/lion-on-grass-mobile.png);
  position: relative;
 /* top: 30%;*/
	        top: 5rem;
}


.bacground-leaves{
  background-size: 210vw;
  background-position-x: 30% ;
}

.sales-title{
  font-size: 5vw;
}

.sales{
  padding-inline: 1vw;
}

.sales-list-item {
  background-image: url(https://msk-seo.ru/wp-content/uploads/2025/08/orange-shestiugolnik.svg);
  width: 48vw;
  height: 53vw;
  background-size: 48vw;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.lis3{
  top: 84%;
  position: absolute;
}

.sales-list-item-down{
  /*top: 150%;*/
	bottom: -180px;
	top: unset;
}

.sales-section{
  height: 200vw;
}

.sales-item-title{
  font-size: 7vw;
}

.sales-describtion{
  font-size: 2.5vw;
  padding-bottom: 10vw;
  padding-inline: 6vw;
}

.sd{
  position: absolute;
  top: 50%;
}

.st{
  position:absolute;
  top: 35%;
}
	.sales-describtion.sd,.sales-list-item.lis3 {
	   position: unset;
	   padding-bottom: 0;
	}
	.sales-item-title.st {
	   position: unset;
	}
		ul.sales-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
	.sales-list-item.lis3:nth-child(3) {
  	grid-column: 1 / -1;
        margin: 0 auto;
        margin-top: -34px;
}
}

/*
.container-body{
	margin-top: 17vw;
}
*/


@media(max-width: 425px) {
	.problems-section{
		margin-top: 20.5vw
	}
	
  .showall{
    font-size: 4.8vw;
  }

   .show-text-container{
    font-size: 4vw;
  }

  .show-text-title{
    text-align: center;
    font-size: 4.8vw;
  }

  .question::after{
    right: 1.3rem;
  }

  .question::before{
    right: 0.5rem;
  }

  .question.active::after{
    right: 1.3rem;
  }

  .question.active::before{
    right: 0.5rem;
  }

  .partners-list{
    padding-inline: 11vw;
  }

  .collaboration{
    padding-inline: 11vw;
  }

  .solution{
    padding-inline: 11vw;
  }

  .button-free-audit{
  width: auto;
  height: auto;
  }

  .services{
    padding-inline: 11vw;
  }

  .footer{
    padding-left: 11vw;
  }

  .container-body{
    padding-inline: 11vw;
  }

  .question {
    font-size: 4vw;
    column-gap: 2vw;
    padding: 2.8rem;
  }

  .answer{
    font-size: 4.5vw;
  }

  .text-title-accordion{
    margin-bottom: 3rem;
    margin-top: 5rem;
    font-size: 4.85vw;
    padding-inline: 2vw;
    text-align: center;
  }

  .containerx{
    padding-inline: 0;
  }

  .problems-text{
    font-size: 3vw;
  }

  .problems-text1{
  left: 16%;
  bottom: 30%;
  }

  .problems-text2{
  left: 49%;
  top: 58%;
  width: 35vw;
  height: 8vw;
  border-radius: 10px;
  }

  .problems-text3{
  right: 15%;
  top: 40%;
  width: 30vw;
  }

  .problems-text4{
  bottom: 75%;
  right: 15%;
  width: 37vw;
  height: 8vw;
  border-radius: 10px;
  }

  .problems-text5{
  right: 60%;
  bottom: 72%;
  }

  .problems-text2,.problems-text4{
  color: var(--color-dark-blue) ;
  }

  .problems-title-top{
    top: -10%;
  }
}

@media (max-width: 375px) {
  .question {
    padding: 2.5rem;
  }

  .answer{
    font-size: 5.25vw;
  }

  .text-title-accordion{
    font-size: 6.5vw;
    text-align: center;
  }

  .collaboration{
    padding-inline: 12vw;
  }

  .solution{
    padding-inline: 12vw;
  }

  .services{
    padding-inline: 12vw;
  }

  .footer{
    padding-left: 12vw;
  }

  .container-body{
    padding-inline: 12vw;
  }

  .partners-list{
    padding-inline: 12vw;
  }

  .show-text-body{
    padding-inline: 12vw;
  }

  .problems-title-buttom{
    width: 76vw;
  }
	
	.addict-section{
    padding-inline: 12vw;
  }

  .stages-section{
    padding-inline: 12vw;
  }
}

@keyframes accordionAnimation {
    from {opacity: 0}
    to {opacity: 1}
}

.elementor-11 .elementor-element.elementor-element-c7539b7 {
width:100% !important;
}

.collaboration-list-item-img{
	width:100%;
}

.collaboration-list-item-img img{
	width:100%;
}

h2{
  font-weight:500;
}

.partners-img img{
	width:100%;
}

.hidden-text-item h4{
	font-size:1.25vw;
}

.show-text-container h3{
	font-size:1.45vw;
}

.item{
	height:30vw;
}

.item img{
	height:100%;	
}

.port_blockx{
	height:auto;	
}

/*
@media (min-width: 1921px) {
	.sec_zagx {
    font-size: 38.799px!important;
   }
	
	.form_t1x {
    font-size: 20.118px!important;
   }
	
	.form_t2x {
    font-size: 18.681px!important;
   }
	
	.form_colx p {
    font-size: 17.9625px!important;
   }
	
	.form_colx input, .form_colx select {
    padding: 8.9094px 12.6456px 8.9094px !important;
    font-size: 16.5255px!important;
   }
	
	.rasch_formx {
    max-width: 610.725px!important;
    margin-top: 44.547px!important;
    padding: 31.9014px 31.9014px 20.118px!important;
	height:431.1px ;
   }
	
	    .port_buttsx .butt_bigx {
        font-size: 14.37px;
			margin-block:7.185px;
    }
	
	.butt_bigx img{
		width:28.74px;
	}
}

*/

@media (min-width: 3840px){
	    .sales-section {
        background-size: 3840px;
		background-position-x:center;
	}
}




