/*
Theme Name: GROWTHEME
Author: n5dev
*/
@font-face {
  font-display: swap;
  font-family: "Onest";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/onest/onest-v8-cyrillic_latin-regular.woff2") format("woff2"), url("assets/fonts/onest/onest-v8-cyrillic_latin-regular.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Onest";
  font-style: normal;
  font-weight: 500;
  src: url("assets/fonts/onest/onest-v8-cyrillic_latin-500.woff2") format("woff2"), url("assets/fonts/onest/onest-v8-cyrillic_latin-500.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Onest";
  font-style: normal;
  font-weight: 600;
  src: url("assets/fonts/onest/onest-v8-cyrillic_latin-600.woff2") format("woff2"), url("assets/fonts/onest/onest-v8-cyrillic_latin-600.ttf") format("truetype");
}
.wow {
  visibility: hidden;
}

:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animated {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

.animated.animate__infinite {
  animation-iteration-count: infinite;
}

.animated.animate__repeat-1 {
  animation-iteration-count: 1;
  animation-iteration-count: var(--animate-repeat);
}

.animated.animate__repeat-2 {
  animation-iteration-count: 2;
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animated.animate__repeat-3 {
  animation-iteration-count: 3;
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animated.animate__delay-1s {
  animation-delay: 1s;
  animation-delay: var(--animate-delay);
}

.animated.animate__delay-2s {
  animation-delay: 2s;
  animation-delay: calc(var(--animate-delay) * 2);
}

.animated.animate__delay-3s {
  animation-delay: 3s;
  animation-delay: calc(var(--animate-delay) * 3);
}

.animated.animate__delay-4s {
  animation-delay: 4s;
  animation-delay: calc(var(--animate-delay) * 4);
}

.animated.animate__delay-5s {
  animation-delay: 5s;
  animation-delay: calc(var(--animate-delay) * 5);
}

.animated.animate__faster {
  animation-duration: 0.5s;
  animation-duration: calc(var(--animate-duration) / 2);
}

.animated.animate__fast {
  animation-duration: 0.8s;
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animated.animate__slow {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
}

.animated.animate__slower {
  animation-duration: 3s;
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
  .animated[class*=Out] {
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-width: 320px;
  height: 100%;
  font-family: "Onest", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  color: #000;
  background: #fff;
  -webkit-text-size-adjust: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 110%;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
ul li,
ol li {
  position: relative;
  list-style-type: none;
}

a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
}

a:focus,
a:active,
a:link,
a:visited {
  outline: 0 none;
}

input,
button {
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 100%;
  background: transparent;
}

button,
input[type=submit] {
  cursor: pointer;
  transition: all 0.3s ease;
}

textarea:focus {
  outline: 0;
}

img,
picture {
  display: block;
  max-width: 100%;
  height: auto;
}

svg,
path,
circle,
rect,
stop {
  transition: all 0.3s ease;
}

.page-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.container {
  margin: 0 auto;
  width: 100%;
}
.container--default {
  max-width: 1400px;
}
.container--wide {
  max-width: 1600px;
}

.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 5px 15px;
  width: 100%;
  max-width: 185px;
  height: 48px;
  font-size: 20px;
  color: #fff;
  border-radius: 24px;
  background: #E7770F;
  overflow: hidden;
}
.btn svg {
  position: relative;
  top: -2px;
}
.btn:hover {
  background: #f38722;
}
.btn--big {
  gap: 10px;
  max-width: 245px;
  height: 68px;
  font-size: 28px;
  border-radius: 34px;
}
.btn--wa, .btn--tg, .btn--phone, .btn--email {
  color: #fff;
  font-size: 14px;
  max-width: none;
}
.btn--wa svg, .btn--tg svg, .btn--phone svg, .btn--email svg {
  top: 0;
}
.btn--wa {
  background: #25D366;
}
.btn--wa:hover {
  background: rgba(37, 211, 102, 0.8);
}
.btn--tg {
  background: #28A7E8;
}
.btn--tg:hover {
  background: rgba(40, 167, 232, 0.8);
}
.btn--email {
  background: #3E53CB;
}
.btn--email:hover {
  background: rgba(62, 83, 203, 0.8);
}

/* .header */
.header {
  padding-top: 20px;
  min-height: 1015px;
  background: url("assets/img/header-bg.svg") center no-repeat;
}
.header__top {
  display: flex;
  justify-content: flex-end;
}
.header__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 65px;
  overflow: hidden;
}
.header__content {
  align-self: flex-start;
  position: relative;
  max-width: 680px;
  z-index: 2;
}
.header__content svg {
  position: absolute;
  right: 30px;
  bottom: -95px;
}
.header__title {
  font-size: 87px;
  font-weight: 600;
  line-height: 105%;
}
.header__title strong {
  font-weight: 600;
  color: #E7770F;
}
.header__img {
  position: relative;
}
.header__img picture {
  position: relative;
  z-index: 2;
}
.header__img:before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: block;
  width: 845px;
  height: 747px;
  background: url("assets/img/header-figure.svg") no-repeat;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* main */
.main {
  flex: 1 1 auto;
  padding-bottom: 145px;
}

/* section */
.section {
  margin-top: 230px;
}
.section__title {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 600;
}
.section__desc {
  font-size: 30px;
  color: #fff;
}
.section--blue .section__inner {
  padding: 65px 100px 100px;
  background: #3E53CB;
  border-radius: 25px;
}
.section--blue .section__title {
  color: #fff;
}
.section--white .section__inner {
  padding: 0 55px;
}
.section--assistance .section__title, .section--result .section__title {
  margin-bottom: 45px;
  padding-left: 35px;
}
.section--assistance .section__desc, .section--result .section__desc {
  text-align: center;
}
.section--scroller {
  position: relative;
  margin-top: -320px;
  padding-bottom: 10px;
  border-top: 1px solid #D9D9D9;
  -webkit-backdrop-filter: blur(11px);
          backdrop-filter: blur(11px);
  z-index: 2;
}
.section--scroller .section__title {
  margin-bottom: 40px;
}
.section--assistance {
  margin-top: 90px;
}
.section--assistance .section__desc {
  text-align: center;
}
.section--specialists .section__title {
  margin-bottom: 45px;
}
.section--advantages .description-block__content {
  max-width: 850px;
}
.section--advantages .description-block__img {
  right: 100px;
}
.section--working {
  margin-top: 60px;
}
.section--working .section__inner {
  margin-top: -46px;
}
.section--working .section__img {
  display: flex;
  justify-content: center;
}
.section--working .section__title {
  margin-bottom: 50px;
  padding-left: 0;
}
.section--notworking .section__title {
  margin-bottom: 40px;
}
.section--consult {
  margin-top: 140px;
}
.section--consult .section__inner {
  padding: 75px 100px;
}
.section--consult .section__title {
  padding-left: 0;
}
.section--consult .section__desc {
  margin-bottom: 40px;
}

/* .scroller-block */
.scroller-block {
  overflow: hidden;
}
.scroller-block__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.scroller-block__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Onest;
  font-size: 22px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #616161;
  overflow: hidden;
}
.scroller-block--clients {
  margin-bottom: 55px;
}
.scroller-block--fields {
  gap: 60px;
}

.scroller-block[data-animated=true] .scroller-block__list {
  width: -moz-max-content;
  width: max-content;
  flex-wrap: nowrap;
  animation: scroller var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller-block[data-direction=right] {
  --_animation-direction: reverse;
}

.scroller-block[data-direction=left] {
  --_animation-direction: forwards;
}

.scroller-block[data-speed=fast] {
  --_animation-duration: 20s;
}

.scroller-block[data-speed=slow] {
  --_animation-duration: 60s;
}

.scroller-block[data-speed=slower] {
  --_animation-duration: 100s;
}

@keyframes scroller {
  to {
    transform: translate(calc(-50% - 10px));
  }
}
/* .assistance-block */
.assistance-block {
  margin-bottom: 90px;
}
.assistance-block--2 .assistance-block__item img {
  position: relative;
}
.assistance-block--2 .assistance-block__item:nth-child(1) img {
  top: 20px;
  left: 20px;
}
.assistance-block--2 .assistance-block__item:nth-child(2) img {
  top: 20px;
}
.assistance-block--2 .assistance-block__item:nth-child(3) img {
  top: 10px;
}
.assistance-block__list {
  display: flex;
  margin: 0 -1px;
}
.assistance-block__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 30px 15px;
  margin: 0 1px;
  width: calc(33.3333333333% - 2px);
  min-height: 515px;
  background: #fff;
  border-radius: 25px;
}
.assistance-block__item-img {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}
.assistance-block__item-title {
  display: flex;
  align-items: center;
  min-height: 105px;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}

/* .description-block */
.description-block {
  position: relative;
}
.description-block__content {
  position: relative;
  max-width: 825px;
  z-index: 2;
}
.description-block__title {
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 48px;
}
.description-block__desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.description-block__desc h3,
.description-block__desc h4 {
  font-weight: 600;
  line-height: 110%;
}
.description-block__desc h3 {
  font-size: 24px;
}
.description-block__desc h4 {
  font-size: 18px;
}
.description-block__desc ol,
.description-block__desc ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 31px;
}
.description-block__desc ol {
  list-style-type: decimal;
}
.description-block__desc ol li {
  list-style-type: decimal;
}
.description-block__desc ol li::marker {
  font-weight: 600;
  color: #3E53CB;
}
.description-block__desc ul li {
  position: relative;
}
.description-block__desc ul li:before {
  position: absolute;
  top: 11px;
  left: -18px;
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: #000;
  border-radius: 100%;
}
.description-block__desc a {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}
.description-block__desc a:hover {
  text-decoration: none;
}
.description-block__img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

/* .result-block */
.result-block__list {
  display: flex;
  flex-wrap: wrap;
  margin: -1px;
}
.result-block__item {
  position: relative;
  margin: 1px;
  width: calc(33.3333333333% - 2px);
  min-height: 275px;
}
.result-block__item-title {
  font-size: 30px;
  font-weight: 600;
}
.result-block__item-desc {
  font-size: 22px;
  font-weight: 500;
}
.result-block__item svg {
  position: absolute;
  bottom: 35px;
  right: 45px;
}

.flip-card {
  perspective: 1000px;
  cursor: pointer;
}
.flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 25px;
  transition: transform 1s;
  transform-style: preserve-3d;
}
.flip-card__front, .flip-card__back {
  position: absolute;
  padding: 50px 85px 30px 40px;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.flip-card__front {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.flip-card__back {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-size: 20px;
  font-weight: 500;
  transform: rotateY(180deg);
}
.flip-card:hover .flip-card__inner {
  transform: rotateY(180deg);
}

/* .specialists-block */
.specialists-block__list {
  display: flex;
  flex-wrap: wrap;
  gap: 35px 0;
  margin: 0 -10px;
}
.specialists-block__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 10px;
  width: calc(33.3333333333% - 20px);
}
.specialists-block__item-img {
  border-radius: 16px;
  overflow: hidden;
}
.specialists-block__item-title {
  padding: 0 10px;
  font-size: 24px;
  font-weight: 400;
}

/* .working-block */
.working-block__list {
  display: flex;
  flex-wrap: wrap;
  margin: -1px;
}
.working-block__item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1px;
  padding: 15px;
  width: calc(25% - 2px);
  min-height: 170px;
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  background: #fff;
  border-radius: 25px;
}

/* .notworking-block */
.notworking-block__list {
  display: flex;
}
.notworking-block__item {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding: 30px 35px 5px;
  width: 25%;
  border-right: 1px dashed #000;
}
.notworking-block__item:nth-child(1) {
  border-left: 1px dashed #000;
}
.notworking-block__item:nth-child(3) .notworking-block__item-title {
  text-align: center;
}
.notworking-block__item-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}
.notworking-block__item-title {
  font-size: 24px;
  font-weight: 400;
}

/* .consult-block */
.consult-block {
  max-width: 870px;
}

/* .quick-callback */
.quick-callback {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: #E7770F;
  box-shadow: 0 10px 25px 0 rgba(34, 36, 43, 0.3);
  border-radius: 100%;
  z-index: 5;
}
.quick-callback:hover {
  background: #f38722;
  transform: scale(1, 1);
}

/* modal */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  font-size: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.7);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 9999;
}
.overlay:before {
  content: " ";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.overlay--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal {
  position: relative;
  display: inline-block;
  margin: 0 auto 40px;
  width: 100%;
  max-width: 575px;
  vertical-align: middle;
  pointer-events: none;
  padding: 50px;
  background: #fff;
  border-radius: 25px;
  transform: translateY(-30px);
  opacity: 0;
  visibility: hidden;
  will-change: transform;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  z-index: 150;
}
.modal--open {
  margin-top: 40px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  cursor: pointer;
  z-index: 101;
}
.modal__close:hover path {
  fill: #3E53CB;
}
.modal__inner {
  font-size: 16px;
  text-align: left;
  color: #000;
}
.modal__title {
  margin-bottom: 30px;
  font-size: 28px;
  text-align: center;
}
.modal__row {
  display: flex;
}
.modal__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  width: 50%;
}
.modal__col--1 {
  padding-right: 15px;
  border-right: 1px dashed #616161;
}
.modal__col--2 {
  padding-left: 15px;
}

/* media queries */
@media (max-width: 1600px) {
  .container--wide {
    padding-left: 15px;
    padding-right: 15px;
  }
  .section--working .section__img {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 1400px) {
  body {
    font-size: 20px;
  }
  .btn--big {
    height: 52px;
    font-size: 24px;
  }
  .btn--big svg {
    top: -1px;
    width: 20px;
    height: auto;
  }
  .container--default {
    padding-left: 15px;
    padding-right: 15px;
  }
  .main {
    padding-bottom: 90px;
  }
  .section {
    margin-top: 90px;
  }
  .section .section__inner {
    padding: 50px;
    border-radius: 16px;
  }
  .section .section__title {
    margin-bottom: 30px;
    padding-left: 0;
    font-size: 40px;
  }
  .section .section__desc {
    font-size: 24px;
  }
  .section--scroller {
    margin-top: -120px;
  }
  .section--working {
    margin-top: 45px;
  }
  .section--working .section__img img {
    max-width: none;
    width: auto;
    max-height: 250px;
  }
  .section--working .section__inner {
    margin-top: -30px;
  }
  .section--white .section__inner {
    padding: 0 35px;
  }
  .section--consult .section__desc {
    margin-bottom: 40px;
  }
  .header {
    min-height: auto;
  }
  .header__title {
    font-size: 80px;
  }
  .scroller-block__item {
    font-size: 18px;
  }
  .scroller-block--clients .scroller-block__item {
    width: 129px;
  }
  .assistance-block {
    margin-bottom: 50px;
  }
  .assistance-block__item {
    padding: 30px;
    min-height: auto;
    border-radius: 16px;
  }
  .assistance-block__item-title {
    font-size: 24px;
  }
  .assistance-block__item-img {
    max-width: 70%;
  }
  .description-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }
  .description-block__title {
    font-size: 40px;
  }
  .description-block__desc {
    font-size: 20px;
  }
  .description-block__desc ol,
  .description-block__desc ul {
    padding-left: 30px;
  }
  .description-block__desc ul li:before {
    left: -17px;
    width: 4px;
    height: 4px;
  }
  .description-block__img {
    position: static;
    transform: none;
  }
  .description-block__img img {
    max-width: none;
    width: auto;
    max-height: 350px;
  }
  .specialists-block__item {
    gap: 15px;
  }
  .specialists-block__item-title {
    font-size: 20px;
  }
  .result-block__item {
    min-height: 250px;
  }
  .result-block__item-title {
    font-size: 24px;
  }
  .result-block__item-desc {
    font-size: 20px;
  }
  .result-block__item svg {
    bottom: 30px;
    right: 30px;
    width: 30px;
    height: auto;
  }
  .result-block__item br {
    display: none;
  }
  .flip-card__inner {
    border-radius: 16px;
  }
  .flip-card__front, .flip-card__back {
    padding: 30px 65px 30px 30px;
  }
  .flip-card__back {
    font-size: 18px;
  }
  .working-block__item {
    font-size: 24px;
    border-radius: 16px;
  }
  .notworking-block__item {
    gap: 20px;
    padding: 15px 25px 5px;
  }
  .notworking-block__item-title {
    font-size: 20px;
  }
}
@media (max-width: 1200px) {
  body {
    font-size: 18px;
  }
  .main {
    padding-bottom: 40px;
  }
  .section {
    margin-top: 60px;
  }
  .section .section__title {
    font-size: 32px;
  }
  .section--scroller {
    margin-top: -100px;
  }
  .section--working {
    margin-top: 40px;
  }
  .section--notworking .section__inner {
    padding: 0;
  }
  .section--consult .section__title {
    margin-bottom: 20px;
  }
  .section--consult .section__desc {
    margin-bottom: 25px;
  }
  .header__content svg {
    right: 0;
    bottom: -70px;
    width: 160px;
    height: auto;
  }
  .header__title {
    font-size: 65px;
  }
  .header__img img {
    max-width: none;
    width: auto;
    max-height: 500px;
  }
  .scroller-block--clients {
    margin-bottom: 40px;
  }
  .scroller-block--fields .scroller-block__item {
    font-size: 16px;
  }
  .scroller-block--fields .scroller-block__item img {
    width: 30px;
  }
  .assistance-block {
    margin-bottom: 30px;
  }
  .assistance-block__item {
    padding: 20px;
  }
  .assistance-block__item-title {
    font-size: 18px;
    min-height: 70px;
  }
  .assistance-block__item-img img {
    top: initial !important;
  }
  .description-block__title {
    font-size: 34px;
  }
  .description-block__desc {
    font-size: 18px;
  }
  .description-block__desc ul li:before {
    top: 8px;
  }
  .description-block__img img {
    max-width: none;
    width: auto;
    max-height: 350px;
  }
  .specialists-block__item-title {
    font-size: 18px;
  }
  .result-block__item {
    min-height: 220px;
  }
  .result-block__item-title {
    font-size: 20px;
  }
  .result-block__item-desc {
    font-size: 18px;
  }
  .result-block__item svg {
    bottom: 20px;
    right: 20px;
    width: 20px;
  }
  .flip-card__front, .flip-card__back {
    padding: 20px 45px 20px 20px;
    border-radius: 16px;
  }
  .flip-card__back {
    font-size: 16px;
  }
  .working-block__item {
    font-size: 20px;
  }
  .notworking-block__item {
    gap: 20px;
    padding: 15px 15px 5px;
  }
  .notworking-block__item-title {
    font-size: 18px;
    text-align: center;
  }
  .notworking-block__item-title br {
    display: none;
  }
  .consult-block {
    max-width: 615px;
  }
}
@media (max-width: 992px) {
  body {
    font-size: 16px;
  }
  .btn {
    gap: 10px;
    max-width: 240px;
    height: 44px;
    border-radius: 22px;
  }
  .btn--big {
    font-size: 20px;
  }
  .btn--big svg {
    width: 17px;
  }
  .section .section__title {
    margin-bottom: 20px;
    font-size: 26px;
  }
  .section .section__desc {
    font-size: 18px;
  }
  .section .section__inner {
    padding: 30px 20px;
  }
  .section--scroller {
    margin-top: -20px;
  }
  .section--notworking .section__inner {
    padding: 0;
  }
  .header__content svg {
    bottom: -50px;
    width: 110px;
  }
  .header__title {
    font-size: 50px;
  }
  .header__img img {
    max-height: 380px;
  }
  .scroller-block--clients {
    gap: 10px;
  }
  .scroller-block--clients .scroller-block__list {
    gap: 10px;
  }
  .scroller-block--clients .scroller-block__item {
    width: 110px;
  }
  .scroller-block--fields .scroller-block__list {
    gap: 30px;
  }
  .scroller-block--fields .scroller-block__item {
    font-size: 14px;
  }
  .assistance-block__item-title {
    font-size: 16px;
    min-height: 50px;
  }
  .description-block__title {
    margin-bottom: 20px;
    font-size: 26px;
  }
  .description-block__desc {
    font-size: 16px;
  }
  .description-block__desc ul,
  .description-block__desc ol {
    padding-left: 20px;
  }
  .description-block__desc ul li:before {
    top: 8px;
    left: -11px;
    width: 3px;
    height: 3px;
  }
  .description-block__img img {
    max-height: 300px;
  }
  .result-block__item {
    min-height: 200px;
  }
  .result-block__item-title {
    font-size: 18px;
  }
  .result-block__item-desc {
    font-size: 16px;
  }
  .working-block__item {
    font-size: 18px;
  }
  .specialists-block__item-title {
    font-size: 16px;
  }
  .notworking-block__item {
    gap: 15px;
  }
  .notworking-block__item-title {
    font-size: 16px;
  }
}
@media (max-width: 830px) {
  .header__title {
    font-size: 46px;
  }
  .result-block__item {
    width: calc(50% - 2px);
  }
  .working-block__list {
    justify-content: center;
  }
  .working-block__item {
    width: calc(33.3333333333% - 2px);
  }
  .notworking-block__list {
    flex-wrap: wrap;
  }
  .notworking-block__item {
    padding: 15px;
    width: 50%;
  }
  .notworking-block__item:nth-child(1), .notworking-block__item:nth-child(2) {
    border-bottom: 1px dashed #000;
  }
  .notworking-block__item:nth-child(1) {
    border-left: none;
  }
  .notworking-block__item:nth-child(2), .notworking-block__item:nth-child(4) {
    border-right: none;
  }
}
@media (max-width: 768px) {
  .specialists-block__list {
    justify-content: center;
    gap: 20px 0;
    margin: 0 -5px;
  }
  .specialists-block__item {
    gap: 10px;
    margin: 0 5px;
    width: calc(50% - 10px);
  }
}
@media (max-width: 680px) {
  .section .section__title {
    font-size: 22px;
  }
  .section .section__desc {
    font-size: 16px;
  }
  .section--assistance .container, .section--result .container, .section--specialists .container, .section--working .container {
    padding: 0;
  }
  .section--assistance .section__inner, .section--result .section__inner, .section--specialists .section__inner, .section--working .section__inner {
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
  }
  .section--assistance .section__title, .section--result .section__title, .section--specialists .section__title, .section--working .section__title {
    padding: 0 15px;
  }
  .section--working .section__img img {
    max-height: 200px;
  }
  .section--working .section__inner {
    margin-top: -24px;
  }
  .section--consult .section__title, .section--consult .section__desc {
    text-align: center;
  }
  .header__title {
    font-size: 38px;
  }
  .header__img img {
    max-height: 300px;
  }
  .assistance-block,
  .result-block,
  .specialists-block,
  .working-block {
    padding: 0 15px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .assistance-block__list,
  .result-block__list,
  .specialists-block__list,
  .working-block__list {
    width: -moz-max-content;
    width: max-content;
    flex-wrap: nowrap;
  }
  .assistance-block__item,
  .result-block__item,
  .specialists-block__item,
  .working-block__item {
    width: 270px;
  }
  .assistance-block__item {
    padding: 20px 5px;
    width: 270px;
  }
  .description-block__title {
    font-size: 22px;
  }
  .description-block__title br {
    display: none;
  }
  .description-block__img {
    position: absolute;
    right: 0 !important;
    opacity: 0.2;
    transform: translateY(-50%);
  }
  .result-block__list {
    padding: 15px 0;
  }
  .result-block__item {
    min-height: 180px;
  }
  .flip-card__front, .flip-card__back {
    padding-right: 55px;
  }
  .specialists-block__item {
    width: 290px;
  }
  .working-block__item {
    width: 210px;
  }
  .notworking-block__list {
    flex-direction: column;
    align-items: center;
  }
  .notworking-block__item {
    padding: 30px 15px;
    width: 80%;
  }
  .notworking-block__item:nth-child(2) {
    border-left: 1px dashed #000;
  }
  .notworking-block__item:nth-child(4) {
    border-top: 1px dashed #000;
    border-left: 1px dashed #000;
  }
  .consult-block {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .quick-callback {
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    box-shadow: 0 5px 10px 0 rgba(34, 36, 43, 0.3);
  }
  .quick-callback svg {
    width: 20px;
    height: auto;
  }
}
@media (max-width: 575px) {
  .overlay {
    padding: 0 15px;
  }
  .modal {
    padding: 40px 20px 20px;
    border-radius: 16px;
  }
  .modal__close {
    top: 15px;
    right: 15px;
    width: 15px;
    height: 15px;
  }
  .modal__close svg {
    width: 15px;
    height: auto;
  }
  .modal__title {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
  }
  .modal__row {
    flex-direction: column;
    gap: 15px;
  }
  .modal__col {
    gap: 15px;
    padding: 0;
    width: 100%;
    border: 0;
  }
  .modal__col .btn {
    max-width: 320px;
  }
  .modal__col img {
    display: none;
  }
  .modal__col--1 a:first-of-type {
    order: 3;
  }
  .modal__col--1 a:last-of-type {
    order: 1;
  }
}
@media (max-width: 480px) {
  .header__top {
    justify-content: center;
  }
  .header__bottom {
    flex-direction: column;
    align-items: center;
  }
  .header__content {
    align-self: auto;
    max-width: none;
  }
  .header__content svg {
    right: 60px;
    transform: rotate(140deg);
  }
  .header__title {
    font-size: 36px;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */