@charset "UTF-8";

/* =========================================================
   1. ТЕМЫ И ПЕРЕМЕННЫЕ
   ========================================================= */
:root {--ultrawide-compensation: 1.1;--design-width: 2048;--safe-vw: min(100vw, calc(100vh * 16 / 9 * var(--ultrawide-compensation)));font-size: calc(var(--safe-vw) / var(--design-width));--ink:       0 0% 6%;--void:      0 0% 2%;--surface:   0 0% 96%;--line:      0 0% 93%;--line-dark: 0 0% 13%;--hair:      0 0% 81%;--stone:     0 0% 50%;--white:     #ffffff;--bg-cta:    #F4F4F4;--title: #101010;--radius-sm: 5rem;--radius-full: 9999rem;--font-sans: "Basic", "Inter", -apple-system, system-ui, sans-serif;--font-mono: "Mono", ui-monospace, monospace;--color-basic: #101010;--container: 60rem;--gap: 90rem;}

/* =========================================================
   2. СБРОС И БАЗА
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  font-family: var(--font-sans);
  -webkit-tap-highlight-color: transparent;
}

body {
  min-height: 100svh;
  background-color: var(--white);
  color: var(--color-basic);
  font-family: var(--font-sans);
  font-size: 20rem;
}

body.menu-open {
  overflow: hidden;
}

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  background-color: #f3f3f3;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  cursor: pointer;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

ol, ul { list-style: none; }

:where(p, span, li, a, button, label) {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Скрываем английскую версию по умолчанию */
.name-en {
    display: none;
}

/* Когда Google Переводчик включен (появляется класс translated-ltr), 
   скрываем русский и показываем английский */
html.translated-ltr .name-ru {
    display: none;
}
html.translated-ltr .name-en {
    display: inline;
}

/* =========================================================
   3. УТИЛИТЫ
   ========================================================= */
.text-stone {color: hsl(var(--stone));line-height: 1;}
.text-ink   { color: hsl(var(--ink)); }
.text-white { color: var(--white); }
.font-mono  { font-family: var(--font-mono); }
.uppercase  { text-transform: uppercase; }

/* =========================================================
   4. КОНТЕЙНЕР
   ========================================================= */
.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--container);
}

.section .content {display: flex;flex-direction: column;align-items: baseline;gap: var(--gap);}

.section.cta .content{
  align-items: center;
}

.section .btn{
  margin: auto;
}

@media (min-width: 640px) {
  .container {
  }
}

/* =========================================================
   5. ОБЩИЙ КЛАСС СЕКЦИЙ
   ========================================================= */
.section {
  padding: 60rem 0;
  border-bottom: 1rem solid hsl(var(--line));
}

.section.hero {padding: 0;border: none;}



/* =========================================================
   6. LAYOUT
   ========================================================= */
.page {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  background-color: var(--white);
}

.main {
  flex: 1;
}

/* =========================================================
   7. МЕНЮ-ОВЕРЛЕЙ
   ========================================================= */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms ease, visibility 400ms ease;
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.menu-overlay__top {
  flex: 0 0 35%;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  padding: 16rem var(--container);
  position: relative;
}

.menu-overlay__header {
  display: flex;
  align-items: center;
  gap: 32rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.menu-overlay__logo {
  flex-shrink: 0;
}

.menu-overlay__lang {
  flex-shrink: 0;
}

.menu-overlay__nav {
  display: flex;
  align-items: center;
  gap: 20rem;
  flex: 1;
  justify-content: left;
}

.menu-overlay__link {
  transition: opacity 200ms ease;
}

.menu-overlay__link:hover {
  opacity: 0.6;
}

.menu-overlay__cta {
  flex-shrink: 0;
  transition: opacity 200ms ease;
  justify-content: end;
  display: flex;
}

.menu-overlay__cta:hover {
  opacity: 0.6;
}

.menu-overlay__center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-overlay__pill {
  display: flex;
  align-items: center;
  gap: 6rem;
  background-color: hsl(var(--ink));
  border-radius: var(--radius-full);
  padding: 12rem;
}

.menu-overlay__pill-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  color: hsl(var(--ink));
  border-radius: var(--radius-full);
  padding: 10rem 15rem;
  font-size: 24rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: opacity 200ms ease;
}

.menu-overlay__pill-btn:hover {
  opacity: 0.8;
}

.menu-overlay__copy {
  /* position: absolute; */
  bottom: 16rem;
  left: var(--container);
  color: hsl(var(--stone));
}

.menu-overlay__bottom {
  flex: 1;
  background-color: rgb(16 16 16 / 50%);
  position: relative;
}

.menu-overlay__close {
  position: absolute;
  right: 0rem;
  top: 0rem;
  background: #fff;
  transition: opacity 200ms ease;
  padding: 20rem 60rem;
}

.menu-overlay__close:hover {
  opacity: 1;
}

@media (max-width: 1024px) {
  .menu-overlay__header {
    flex-wrap: wrap;
    gap: 16rem;
  }
  .menu-overlay__nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 16rem;
  }
}


/* =========================================================
   8. ШАПКА
   ========================================================= */
.header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16rem;
  padding: 10rem var(--container) 160rem var(--container);
}

.header__logo {
  flex: 1;
  min-width: 240rem;
  font-weight: 400;
  line-height: 1;
  font-size: 128rem;
}

.header__menu-btn {
  font-size: 32rem;
  padding-top: 10rem;
}

@media (min-width: 640px) {
  .header {}
  .header__menu-btn {}
}

/* =========================================================
   9. ЗАГОЛОВОК СЕКЦИИ
   ========================================================= */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 20rem;
  width: 100%;
}

.section-head__label {
  font-size: 32rem;
  color: hsl(var(--stone));
}

.section-head__title {
  font-size: 96rem;
  line-height: 1;
  color: var(--title);
}

.section-head__about {
  font-size: 64rem;
  line-height: 1;
  color: var(--title);
}

.section-head__subtitle {
  font-size: 32rem;
  color: hsl(var(--stone));
  line-height: 1;
}

/* =========================================================
   10. СЛАЙДЕР ГЕРОЯ
   ========================================================= */
.hero { position: relative; }

.hero__container {
  padding-inline: 0;
  max-width: 100%;
}

.hero-swiper {
  overflow: hidden;
  width: 100%;
}

.hero-swiper .swiper-wrapper {
  align-items: stretch;
}

.hero__slide {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 500rem;
  position: relative;
}

.hero__content {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: left;
  justify-content: left;
  gap: 40rem;
  padding: var(--container);
  flex: 1;
  position: absolute;
  bottom: 80rem;
  left: 0rem;
}

.hero__logo {
}

.hero__cases-link {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 10rem;
  color: hsl(var(--ink));
  font-size: 32rem;
}

.hero__cases-link:hover .hero__divider{
  background-color: var(--color-basic);
}

.hero__divider {
  display: block;
  height: 1px;
  width: 100%;
  background-color: hsl(var(--hair));
  transition: background-color 200ms ease;
}

.hero__image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  color: hsl(var(--ink));
  --swiper-navigation-size: 44rem;
  background-color: var(--white);
  width: 40rem;
  height: 40rem;
  border-radius: 33%;
  box-shadow: 0 2rem 8rem rgb(0 0 0 / 0.1);
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
  font-size: 18rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .hero__slide {
    flex-direction: row;
    min-height: 600rem;
  }
  .hero__content {
  }
  .hero__image {
    /* height: 100%; */
    /* width: 50%; */
  }
}

/* =========================================================
   11. ЗАЯВКА
   ========================================================= */
.cta {
  background-color: hsl(var(--void));
  height: 600rem;
  display: flex;
  align-items: center;
}

@media (min-width: 640px) {
  .cta {}
}

.cta__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20rem;
}

.cta__icon {
  display: flex;
  height: 128rem;
  width: 128rem;
  align-items: center;
  justify-content: center;
  border-radius: 33%;
  background-color: var(--bg-cta);
  transition: transform 200ms ease;
}

.cta__icon svg,
.quick-start__icon svg{
  width: 40rem;
  height: 40rem;
}

.cta__icon:hover { transform: scale(1.05); }

.cta__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10rem;
}

.cta__title {color: var(--white);line-height: 1;}
.cta__meta  {color: hsl(var(--stone));line-height: 1;}

@media (min-width: 640px) {
  .cta__icon { height: 160rem; width: 160rem; }
}

/* =========================================================
   12. КЕЙСЫ
   ========================================================= */
.cases {
}

.cases__grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  gap: 24rem;
}

.case {
  display: flex;
  flex-direction: column;
  gap: 20rem;
}

.case__image {
  width: 100%;
  border-radius: var(--radius-sm);
  object-fit: cover;
  aspect-ratio: 467 / 256;
}

.case--wide .case__image { aspect-ratio: 954 / 512; }
.case--full .case__image { aspect-ratio: 954 / 512; }

.case__meta {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}

.case__name {
    line-height: 1;
}
.case__desc {color: hsl(var(--stone));line-height: 125%;}

  .case--wide { grid-column: span 2 / span 2; }
  .case--full {grid-column: span 2 / -1;}


@media (min-width: 1024px) {
  .cases__grid {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 90rem;
    column-gap: 20rem;
  }
}

/* =========================================================
   13. КНОПКА
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  padding: 20rem 32rem;
  transition: background-color 200ms ease, color 200ms ease;
}

.btn--outline {
  border: 1rem solid hsl(var(--stone));
  color: hsl(var(--ink));
}

.btn--outline:hover {
  background-color: hsl(var(--ink));
  color: var(--white);
}

/* =========================================================
   14. БЫСТРЫЙ СТАРТ
   ========================================================= */
.quick-start {
}

.quick-start__card {
  display: flex;
  min-height: 620rem;
  width: 467rem;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-sm);
  background-color: hsl(var(--surface));
  padding: 32rem;
  margin: auto;
  text-align: left;
}

.quick-start__title {
  font-size: 24rem;
  line-height: 1.25;
  color: hsl(var(--ink));
}

.quick-start__icon {
  margin: 0 auto;
  display: flex;
  height: 128rem;
  width: 128rem;
  align-items: center;
  justify-content: center;
  border-radius: 33%;
  background-color: var(--white);
  transition: transform 200ms ease;
}

.quick-start__icon:hover { transform: scale(1.05); }

.quick-start__info {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  font-size: 24rem;
  line-height: 1.25;
}

.quick-start__email {
  font-family: var(--font-mono);
  font-size: 14rem;
  color: hsl(var(--stone));
}

@media (min-width: 640px) {
  .quick-start__card {}
  .quick-start__icon { height: 160rem; width: 160rem; }
}

/* =========================================================
15. НАПРАВЛЕНИЯ
========================================================= */
.services {
}
.services__list {
  width: auto;
  border-radius: var(--radius-sm);
  background-color: transparent;
  padding: 20rem;
  display: flex;
  flex-direction: column;
  gap: 15rem;
  font-size: 48rem;
  line-height: 1;
  margin: auto;
}
.services__item {
  color: hsl(var(--stone));
  transition: color 200ms ease;
  cursor: pointer;
  text-decoration: none;
}

.services__item.active {
  color: var(--color-basic);
}

/* Когда мышь на всём списке — все пункты серые */
.services__list:hover .services__item {
  color: hsl(var(--stone));
}
/* Когда мышь на конкретном пункте — он чёрный */
.services__item:hover {
  color: hsl(var(--ink)) !important;
}
@media (max-width: 768px) {
  .services__list {
    font-size: 24rem;
    margin: inherit;
    padding: 0;
    gap: 10rem;
  }
}

/* =========================================================
   16. О БЮРО
   ========================================================= */
.about {
  background-color: hsl(var(--void));
  color: var(--white);
}

.about__lead {
  display: flex;
  flex-direction: column;
  gap: 20rem;
}

.about__big-number {
  font-size: 240rem;
  line-height: 1;
  color: hsl(var(--stone));
}

.about__lead-text { font-size: 24rem; }

.about__description {
  font-size: 64rem;
  line-height: 1;
  color: hsl(var(--stone));
  max-width: 90%;
}

.about__description strong {
  color: var(--white);
  font-weight: inherit;
}

.stats {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 40rem;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.stat {
  display: flex;
  min-height: 210rem;
  flex-direction: column;
  gap: 20rem;
  padding-block: 48rem;
  border-bottom: 1rem solid rgb(255 255 255 / 0.2);
}

.stat__value {
  font-size: 96rem;
  line-height: 1;
  color: hsl(var(--stone));
}

.stat__label {
  font-size: 24rem;
  line-height: 1.25;
}

.about__clients {
  max-width: 896rem;
  align-self: baseline;
}

.about__clients-label { font-size: 24rem; }

.about__clients-list {
  margin-top: 20rem;
  font-size: clamp(28rem, 5vw, 64rem);
  line-height: 1.25;
  color: hsl(var(--stone));
  text-decoration: underline;
  text-decoration-color: hsl(var(--stone) / 0.5);
  text-underline-offset: 4rem;
}

.about__award {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20rem;
  padding-block: 24rem;
  text-align: center;
  margin: auto;
}

.about__award-icon {
  display: flex;
  height: 160rem;
  width: 160rem;
  align-items: center;
  justify-content: center;
  border-radius: 33%;
  background-color: hsl(var(--ink));
  font-size: 48rem;
}

.about__award-text {
  color: hsl(var(--stone));
}

.about__award-text strong {
  color: var(--white);
  font-weight: inherit;
}


@media (max-width: 1024px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   17. ОТЗЫВЫ
   ========================================================= */
.testimonials {
}

.testimonials__slider_start{
  
margin: auto;
  
display: flex;
  
flex-direction: column;
  
gap: 20rem;
  
justify-content: center;
  
text-align: center;
}

.testimonials__slider {
  display: flex;
  width: 100%;
  max-width: 560rem;
  align-items: center;
  justify-content: center;
  gap: 20rem;
  margin: auto;
  text-align: left;
}

.testimonials__nav {
  font-size: 24rem;
  color: hsl(var(--ink));
  line-height: 1;
  padding: 8rem;
  transition: opacity 200ms ease;
  height: stretch;
  font-family: Mono;
}

.testimonials__nav:hover {
  opacity: 0.6;
}

.testimonials-swiper {
  width: 100%;
  overflow: hidden;
}

.testimonial {
  display: flex;
  min-height: 420rem;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-sm);
  background-color: hsl(var(--surface));
  padding: 32rem;
}

.testimonial__text {
  font-size: 20rem;
  line-height: 1.25;
  color: hsl(var(--ink));
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  font-size: 20rem;
  line-height: 1;
}

.testimonials__hint {
  font-family: var(--font-mono);
  font-size: 14rem;
  color: hsl(var(--stone));
}

@media (min-width: 640px) {
  .testimonial { min-height: 620rem; }
  .testimonial__text { font-size: 24rem; }
}

/* =========================================================
   18. ФРАГМЕНТЫ
   ========================================================= */
.fragments {
}

.fragments__grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 20rem;
}

.fragment {
  aspect-ratio: 3 / 4;
  width: 100%;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.fragments__more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20rem;
  margin: auto;
}


@media (min-width: 1024px) {
  .fragments__grid { grid-template-columns: repeat(5, 1fr); }
}

/* =========================================================
   19. БЛОГ
   ========================================================= */
.blog {
}

.blog__grid {
  display: grid;
  width: 100%;
  row-gap: 90rem;
  column-gap: 40rem;
  grid-template-columns: repeat(3, 1fr);
}

.post { display: flex; flex-direction: column; }

.post__image {
  width: 100%;
  border-radius: var(--radius-sm);
  object-fit: cover;
  aspect-ratio: 1.75 / 1;
}

.post--featured .post__image {/* aspect-ratio: 954 / 740; */}

.post__title {
  margin-top: 20rem;
  font-size: 32rem;
  line-height: 1.25;
  color: hsl(var(--ink));
}

.post__tags {
  margin-top: 40rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10rem;
}

.tag {
  border-radius: var(--radius-sm);
  border: 1rem solid hsl(var(--hair));
  padding: 8rem 10rem;
  font-size: 20rem;
  color: hsl(var(--stone));
}


@media (min-width: 1024px) {
  .blog__grid {grid-template-columns: repeat(3, 1fr);}
  .post--featured {/* grid-column: span 2 / span 2; */}
}

/* =========================================================
   20. ВОПРОС-ОТВЕТ
   ========================================================= */
.faq {
}

.faq__list {
  width: 100%;
  max-width: 996rem;
  margin: auto;
}

.faq__item {
  border-bottom: 1rem solid hsl(var(--line));
  transition: transform 300ms ease, border-color 300ms ease;
}

.faq__question {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 16rem;
  padding: 20rem;
  text-align: left;
  font-size: inherit;
  color: hsl(var(--ink));
  cursor: pointer;
  background: transparent;
}

.faq__item:hover .faq__toggle,
.faq__item.is-open .faq__toggle{
  
background-color: gray;
}

.faq__question > span:first-child { flex: 1; }

.faq__toggle {
  display: flex;
  height: 20rem;
  width: 20rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background-color: hsl(var(--line));
  font-size: 0;
  transition: transform 300ms ease, background-color 300ms ease;
}

.faq__item:hover,
.faq__item.is-open {
  border-color: gray;
}

.faq__item.is-open .faq__toggle {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease, padding 400ms ease;
  padding-inline: 20rem;
}

.faq__item.is-open .faq__answer {
  max-height: 500rem;
  padding-block: 0 20rem;
}

.faq__answer p {
  font-size: 24rem;
  line-height: 1.25;
  color: hsl(var(--stone));
}

@media (min-width: 640px) {
  .faq__question { font-size: 24rem; }
}

/* =========================================================
   21. ПОДВАЛ
   ========================================================= */
.footer {
  background-color: hsl(var(--void));
  padding: 60rem 0;
  color: var(--white);
}

.footer__email {
  font-size: clamp(28rem, 5vw, 48rem);
  line-height: 1;
}

.footer__grid {
  margin-top: 60rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40rem;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
  font-size: 32rem;
}

.footer__list{
  display: flex;
  flex-direction: column;
  gap: 10rem;
}

.footer__column.one{
  
}

.footer__group {
  display: flex;
  flex-direction: column;
  gap: 40rem;
  border-top: 1rem solid hsl(var(--line-dark));
  padding: 40rem 0;
}

.footer__label {
  color: hsl(var(--stone));
  /* margin-bottom: 40rem; */
}

.footer__label_one {
  color: hsl(var(--stone));
}

.footer__column a,
.footer__column span:not(.footer__label) {
}

.footer__list a {
  transition: ease 400ms opacity;
}

.footer__list a:hover {
  opacity: 0.5;
}

.footer__bottom {
  margin-top: 48rem;
  display: flex;
  flex-direction: column;
  gap: 30rem;
  border-top: 1rem solid hsl(var(--line-dark));
  padding-top: 40rem;
  padding-bottom: 40rem;
}

.footer__credit {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}

.footer__author {
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

@media (min-width: 640px) {
  .footer {/* padding: 64rem 0; */}
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__column a,
  .footer__column span:not(.footer__label) {}
}

@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: repeat(4, 1fr); }
}


/* =========================================================
   22. ПЛАВАЮЩАЯ ПАНЕЛЬ
   ========================================================= */
.fab {
  position: fixed;
  inset-inline: 0;
  bottom: 24rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
  padding-inline: 16rem;
  background-color: var(--color-basic);
  width: max-content;
  margin: auto;
  padding: 10rem;
  border-radius: 100rem;
  transition: opacity 400ms ease, visibility 400ms ease;
}

.menu-open .fab{
  opacity: 0;
}

.fab > * {
  border-radius: var(--radius-full);
  background-color: hsl(var(--ink));
  padding: 8rem;
}

.fab__item {
  border-radius: var(--radius-full);
  background-color: var(--white);
  padding: 10rem 15rem;
  font-size: 24rem;
  font-weight: 400;
  text-transform: uppercase;
  color: hsl(var(--ink));
  transition: opacity 200ms ease;
}

.fab__item:hover { opacity: 0.8; }


@media (max-width: 768px) {
:root {font-size: calc(100vw / 414);--radius-sm: 5rem;--radius-full: 9999rem;--container: 10rem;--gap: 60rem;}

body {
  font-size: 20rem;
}
  
.header__logo{
  font-size: 20rem;
  min-width: 55%;
}

.header{
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 0 var(--container);
  height: 45rem;
  border-bottom: 1rem solid hsl(var(--line));
}

.hero__slide{
  min-height: auto;
}
  
.section-head__label{
font-size: 20rem;
}
  
.section-head__about{font-size: 28rem;line-height: 100%;}

.header__menu-btn{
  font-size: 20rem;
  padding-top: 0;
  line-height: 1;
}

.cta{
  height: 420rem;
}

.cta__icon{
  height: 96rem;
  width: 96rem;
}

.cta__icon svg{
  width: 32rem;
  height: 32rem;
}

  .section {padding: var(--gap) 0;}

  
.case--wide{
  grid-column: inherit;
}

.case--full{
  grid-column: inherit;  
}

.cases__grid{
  gap: 40rem;
  grid-template-columns: repeat(1, 1fr);
}

.case{
  gap: 15rem;
}

.section-head__title{
  font-size: 36rem;
}

.section-head__subtitle{
  font-size: 20rem;
  line-height: 125%;
  max-width: 90%;
}

.section-head{
  gap: 10rem;
}

.quick-start__card{
  width: 100%;
  padding: 30rem;
  min-height: 400rem;
}

.quick-start__title{
  font-size: inherit;
}

.quick-start__info{
  font-size: inherit;
}

.testimonials__slider_start{
  margin: inherit;
  width: 100%;
}

.services__list{
  font-size: 24rem;
  margin: inherit;
  padding: 0;
  gap: 10rem;
}

.about__big-number{
  font-size: 96rem;
}

.about__lead{
  gap: 10rem;
}

.about__lead-text{
  font-size: inherit;
  line-height: 125%;
}

.about__description{
  font-size: 28rem;
  max-width: 90%;
  line-height: 100%;
}

.stat{
  gap: 10rem;
  min-height: auto;
  padding-block: 40rem;
}

.stat__value{
  font-size: 40rem;
}

.stat__label{
  font-size: inherit;
  max-width: 90%;
  line-height: 125%;
  line-height: 110%;
}

  .about__award{
    gap: 20rem;
    padding-block: 20rem;
  }

  .stats {grid-template-columns: repeat(2, 1fr);column-gap: 10rem;}
  .about__award-icon { height: 120rem; width: 120rem; }

.about__clients-label{
  
font-size: inherit;
}
  
.about__clients-list{
  
max-width: 90%;
  
margin-top: 20rem;
  
font-size: clamp(28rem, 5vw, 64rem);
  
line-height: 125%;
}
  
  .testimonials__slider{
    max-width: 600rem;
    gap: 0;
  }

  .testimonial{
    min-height: 460rem;
  }

  .fragments__grid{
    gap: 10rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .blog__grid{
    row-gap: 40rem;
    column-gap: 40rem;
    grid-template-columns: 1fr;
  }

  .post__title{
    font-size: 24rem;
    line-height: 125%;
  }

  .post__tags{
    margin-top: 10rem;
  }

  .tag{
    font-size: 14rem;
    padding: 5rem 10rem;
  }

  .faq__question{
    gap: 40rem;
    padding: 20rem 0rem 20rem 0rem;
    line-height: 125%;
  }

  .faq__toggle{
    height: 15rem;
    width: 15rem;
  }

  .faq__answer{
    padding-inline: 20rem;
  }

  .faq__answer p{
    font-size: 20rem;
  }

  .footer{
    padding: 30rem 0;
  }

  .footer__grid{
    margin-top: 30rem;
    gap: 0;
  }

  .footer__column{
    font-size: inherit;
  }

  .footer__group{
    gap: 20rem;
    padding: 30rem 0;
  }

  .footer__column.one  .footer__group{
    gap: 30rem;
  }

  .footer__email{
    font-size: 32rem;
  }

  .footer__bottom{
    margin-top: 0;
    padding-bottom: 120rem;
  }

  .fab__item{
    font-size: 14rem;
    padding: 10rem 16rem;
  }

  .fab{
    bottom: 10rem;
    padding: 8rem;
  }

  .hero__content{
    bottom: var(--container);
    padding: 0 var(--container);
  }

  .hero__cases-link{
    font-size: inherit;
  }

  .hero__divider{
    height: 0;
    display: none;
  }

  .m-none{
    display: none;
  }

  .section.hero{
    border-bottom: 1rem solid hsl(var(--line));
  }

  .menu-overlay__header{
    grid-template-columns: repeat(1, 1fr);
    padding-top: 60rem;
  }

  .menu-overlay__nav{
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: left;
    gap: 10rem;
    font-size: 32rem;
    order: 1;
  }

  .menu-overlay__lang{
    order: 2;
  }

.menu-overlay__cta{
    order: 3;
    display: none;
}

.menu-overlay__copy{
  font-size: inherit;
}

.menu-overlay__center{
  padding: 60rem;
}

.menu-overlay__link{
  width: 100%;
  line-height: 1;
}
  
  .menu-overlay__logo{
    display: none;
  }

.menu-overlay__close{
  padding: 20rem 30rem;
}
  
}