/*
Theme Name: Aida
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/Roboto-Regular/Roboto-Regular.eot");
  src: url("assets/fonts/Roboto-Regular/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("assets/fonts/Roboto-Regular/Roboto-Regular.woff2") format("woff2"), url("assets/fonts/Roboto-Regular/Roboto-Regular.woff") format("woff"), url("assets/fonts/Roboto-Regular/Roboto-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/Roboto-Medium/Roboto-Medium.eot");
  src: url("assets/fonts/Roboto-Medium/Roboto-Medium.eot?#iefix") format("embedded-opentype"), url("assets/fonts/Roboto-Medium/Roboto-Medium.woff2") format("woff2"), url("assets/fonts/Roboto-Medium/Roboto-Medium.woff") format("woff"), url("assets/fonts/Roboto-Medium/Roboto-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "NeutralFace";
  src: url("assets/fonts/NeutralFaceBold/NeutralFaceBold.eot");
  src: url("assets/fonts/NeutralFaceBold/NeutralFaceBold.eot?#iefix") format("embedded-opentype"), url("assets/fonts/NeutralFaceBold/NeutralFaceBold.woff2") format("woff2"), url("assets/fonts/NeutralFaceBold/NeutralFaceBold.woff") format("woff"), url("assets/fonts/NeutralFaceBold/NeutralFaceBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --font: "Roboto", sans-serif;
  --font2: "NeutralFace", sans-serif;
  --base: #0C1435;
  --white: #FFFFFF;
  --bg: #F5F7FC;
  --primary: #004AB7;
  --blue2: rgba(0, 74, 183, 0.05);
  --hover: #287FFF;
}

* {
  box-sizing: border-box;
  text-decoration: none;
  word-break: break-word;
}

*:hover,
*:focus {
  outline: 0;
}

body {
  background: var(--bg);
  font: 400 16px/1.36 var(--font);
  color: var(--base);
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body::-webkit-scrollbar {
  width: 10px;
  height: 0;
  background: var(--bg);
}

body::-webkit-scrollbar-thumb {
  width: 10px;
  background: var(--primary);
  border-radius: 10px;
}

body.hidden {
  overflow: hidden;
}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg);
  }
}

#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrapper {
  width: 100%;
  max-width: 1272px;
  padding: 0 16px;
  margin: 0 auto;
}

.overflowH {
  overflow: hidden;
}

a {
  color: var(--primary);
  transition: 0.25s;
}

button {
  border: none;
  background: none;
  margin: 0;
  padding: 0;
  font: 500 18px/1.32 var(--font);
  color: var(--base);
  cursor: pointer;
  transition: 0.25s;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
}

svg {
  transition: 0.25s;
}

strong {
  font-weight: 500;
}

h1,
.h1 {
  font: 700 60px/1.3 var(--font2);
  letter-spacing: 0.01em;
}

h2,
.h2 {
  font: 700 36px/1.3 var(--font2);
  letter-spacing: 0.02em;
}

h3,
.h3 {
  font: 700 24px/1.3 var(--font2);
  letter-spacing: 0.02em;
}

h4,
.h4 {
  font: 700 18px/1.3 var(--font2);
  letter-spacing: 0.02em;
}

.text20 {
  font: 400 20px/1.36 var(--font);
}

.text18 {
  font: 400 18px/1.36 var(--font);
}

.text18M {
  font: 500 18px/1.32 var(--font);
}

.text14 {
  font: 400 14px/1.36 var(--font);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 100%;
  min-height: 70px;
  background: linear-gradient(90deg, #004AB7, #287FFF);
  border: none;
  border-radius: 500px;
  padding: 8px 24px;
  text-decoration: none;
  text-transform: uppercase;
  font: 700 20px/1.2 var(--font2);
  letter-spacing: 0.01em;
  color: var(--white);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.25s;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #004AB7, #287FFF);
  opacity: 0;
  transition: 0.25s;
}

.btn__icon {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  margin-right: 16px;
  transition: 0.25s;
}

.btn__icon svg {
  width: 100%;
  height: 100%;
  fill: var(--white);
}

.btn__text {
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.btn_full {
  width: 100%;
}

.btn_sm {
  min-height: 60px;
  font-size: 16px;
}

.btn_sm .btn__icon {
  width: 32px;
  margin-right: 12px;
}

.btn_sm .btn__icon svg {
  fill: var(--primary);
}

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

.btn_white::before {
  display: none;
}

input {
  width: 100%;
  height: 60px;
  background: transparent;
  border: 1px solid var(--white);
  border-radius: 500px;
  padding: 0 20px;
  font: 400 18px/1.36 var(--font);
  color: var(--white);
  transition: 0.15s;
}

input::placeholder {
  font: 400 18px/1.36 var(--font);
  color: rgba(255, 255, 255, 0.7);
}

input:focus {
  background: rgba(255, 255, 255, 0.1);
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.link {
  font: 500 18px/1.32 var(--font);
  color: var(--primary);
}

.link span {
  text-decoration: underline wavy;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}

.textBlock h1,
.textBlock h2 {
  margin-top: 64px;
  margin-bottom: 24px;
}

.textBlock h1:last-child,
.textBlock h2:last-child {
  margin-bottom: 0;
}

.textBlock h1:first-child,
.textBlock h2:first-child {
  margin-top: 0;
}

.textBlock h3,
.textBlock h4 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.textBlock h3:last-child,
.textBlock h4:last-child {
  margin-bottom: 0;
}

.textBlock h3:first-child,
.textBlock h4:first-child {
  margin-top: 0;
}

.textBlock h5,
.textBlock h6 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.textBlock h5:last-child,
.textBlock h6:last-child {
  margin-bottom: 0;
}

.textBlock h5:first-child,
.textBlock h6:first-child {
  margin-top: 0;
}

.textBlock p {
  margin-bottom: 16px;
}

.textBlock p:last-child {
  margin-bottom: 0;
}

.textBlock a {
  color: var(--primary);
  text-decoration: underline;
}

.textBlock ul {
  margin-bottom: 16px;
}

.textBlock ul:last-child {
  margin-bottom: 0;
}

.textBlock ul li {
  display: block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 4px;
}

.textBlock ul li:last-child {
  margin-bottom: 0;
}

.textBlock ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--base);
}

.textBlock ol {
  list-style-type: decimal;
  margin-left: 24px;
  margin-bottom: 16px;
}

.textBlock ol:last-child {
  margin-bottom: 0;
}

.textBlock ol li {
  margin-bottom: 4px;
}

.textBlock ol li:last-child {
  margin-bottom: 0;
}

.overlay {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
}

.modal {
  position: fixed;
  z-index: 100;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 800px;
  max-width: calc(100% - 32px);
  max-height: calc(100% - 32px);
  background: var(--primary);
  border-radius: 40px;
  padding: 40px;
  text-align: center;
  color: var(--white);
  visibility: hidden;
  opacity: 0;
  transition: 0.25s;
  overflow: auto;
  -ms-overflow-style: none;
  overflow-y: scroll;
  scrollbar-width: none;
}

.modal::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.modal.active {
  transform: translate(-50%, -50%);
  visibility: visible;
  opacity: 1;
}

.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal__close img {
  width: 40px;
}

.modal__head {
  padding: 0 16px;
  margin-bottom: 32px;
}

.modal__social {
  display: grid;
  grid-gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.modal .orderForm__agree {
  text-align: center;
}

.modalBlock {
  margin-bottom: 32px;
}

.modalBlock:last-child {
  margin-bottom: 0;
}

.modalBlock__title {
  opacity: 0.8;
  margin-bottom: 20px;
}

.modalSocialItem {
  min-height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--white);
  border-radius: 500px;
  padding: 4px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  font: 700 16px/1.2 var(--font2);
  letter-spacing: 0.01em;
  color: var(--white);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.25s;
}

.modalSocialItem__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  margin-right: 12px;
}

.modalSocialItem__icon svg {
  width: 100%;
  height: 100%;
  fill: var(--white);
}

.modalSocialItem__text {
  max-width: 100%;
}

#thanksModal {
  width: 600px;
  background: #1542c3;
  padding: 60px 40px;
}

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

.thanksModal__image {
  width: 156px;
  margin-bottom: 32px;
}

.thanksModal__title {
  margin-bottom: 20px;
}

.thanksModal__text {
  opacity: 0.8;
}

.social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social__item {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.social__item svg {
  width: 100%;
  height: 100%;
  fill: var(--white);
}

.social_lg .social__item {
  width: 50px;
  height: 50px;
}

.social_vert {
  flex-direction: column;
}

.social_type2 .social__item {
  background: transparent;
  border: 1px solid var(--white);
}

.social_type2 .social__item svg {
  fill: var(--white);
}

.social_type3 .social__item {
  background: transparent;
  border: 1px solid var(--base);
}

.social_type3 .social__item svg {
  fill: var(--base);
}

.orderForm {
  display: grid;
  grid-gap: 16px;
  grid-template-columns: 1fr;
}

.orderForm__agree {
  width: 100%;
  text-align: left;
  color: rgba(255, 255, 255, 0.8);
}

.orderForm__agree a {
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.8);
}

.header {
  position: sticky;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
}

.header__wrap {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header__logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 190px;
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 100%;
}

.header__right {
  display: flex;
  align-items: center;
}

.header__phone {
  text-decoration: none;
  color: var(--base);
  pointer-events: none;
  margin-right: 24px;
}

.header__mobphone {
  display: none;
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
}

.header__mobphone img {
  width: 100%;
}

.headerMenu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.headerMenu__item {
  padding: 8px 0;
  text-decoration: none;
  color: var(--base);
}

.headerMenu__item span {
  position: relative;
}

.headerMenu__item span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 1px;
  background: var(--hover);
  opacity: 0;
  transition: 0.25s;
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
}

.burger img {
  width: 100%;
}

.burger .close {
  display: none;
}

.burger.active .icon {
  display: none;
}

.burger.active .close {
  display: block;
}

.mobMenuOverlay {
  display: none;
  position: fixed;
  z-index: 48;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 20, 53, 0.4);
}

.mobMenu {
  display: none;
  position: fixed;
  z-index: 49;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  border-radius: 0 0 32px 0;
  padding: 24px 16px;
  padding-top: 76px;
  overflow: auto;
  -ms-overflow-style: none;
  overflow-y: scroll;
  scrollbar-width: none;
}

.mobMenu::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.mobMenu__bottom {
  display: flex;
  align-items: flex-start;
}

.mobMenu__content {
  width: 100%;
}

.mobMenu__social {
  flex-shrink: 0;
  margin-left: 16px;
}

.mobMenuItem {
  margin-bottom: 16px;
}

.mobMenuItem:last-child {
  margin-bottom: 0;
}

.mobMenuItem__title {
  margin-bottom: 4px;
}

.mobMenuItem__title a {
  color: var(--base);
  text-decoration: none;
}

.mobMenuItem__text {
  opacity: 0.8;
}

.mobileMenu {
  font: 700 16px/1.3 var(--font);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.mobileMenu__item {
  display: block;
  padding: 8px 0;
  text-transform: uppercase;
  color: var(--base);
}

.footer {
  margin: auto;
  margin-bottom: 0;
  width: 100%;
  padding-top: 75px;
}

.footer__inner {
  background: var(--primary);
  border-radius: 40px 40px 0 0;
  padding-top: 100px;
  color: var(--white);
}

.footer__wrap {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 60px;
}

.footer__social {
  position: absolute;
  top: 0;
  right: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 32px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 32px;
}

.footer__bottom a {
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.8);
}

.footerContent {
  padding-right: 40px;
}

.footerContent__title {
  margin-bottom: 20px;
}

.footerContent__text {
  opacity: 0.8;
}

.footerContacts {
  position: relative;
}

.footerContacts__wrap {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.footerContact {
  width: 100%;
}

.footerContact__title {
  margin-bottom: 4px;
}

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

.footerContact__title a[href^="tel:"] {
  pointer-events: none;
}

.footerContact__text {
  opacity: 0.8;
}

.section {
  padding: 75px 0;
}

.section.lp {
  padding: 120px 0;
}

.section.lpt {
  padding-top: 120px;
}

.section.lpb {
  padding-bottom: 120px;
}

.sectionHead {
  max-width: 1030px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 44px;
}

.sectionHead__title {
  margin-bottom: 24px;
}

.sectionHead__title:last-child {
  margin-bottom: 0;
}

.sectionHead__title strong {
  color: var(--primary);
}

.sectionHead__text {
  opacity: 0.8;
}

.hero {
  padding-top: 145px;
  padding-bottom: 75px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -72px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1920px;
  height: 850px;
  background: url("assets/img/hero-bg.png") no-repeat;
  background-size: cover;
  background-position: center;
}

.hero .wrapper {
  position: relative;
  z-index: 2;
}

.hero__head {
  text-align: center;
  margin-bottom: 52px;
}

.hero__title {
  margin-bottom: 24px;
}

.hero__text {
  max-width: 1030px;
  margin: 0 auto;
  opacity: 0.8;
}

.hero__text p {
  margin-bottom: 16px;
}

.hero__text p:last-child {
  margin-bottom: 0;
}

.hero__btn {
  margin-bottom: 52px;
  display: flex;
  justify-content: center;
}

.hero__advan {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.heroWorktime {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.heroWorktime__icon {
  flex-shrink: 0;
  width: 24px;
  margin-right: 10px;
}

.heroWorktime__text {
  max-width: 100%;
}

.heroAdvan {
  max-width: 100%;
  min-height: 40px;
  background: var(--white);
  border-radius: 500px;
  padding: 4px 12px;
  display: flex;
  align-items: center;
}

.heroAdvan__icon {
  flex-shrink: 0;
  width: 24px;
  margin-right: 10px;
}

.heroAdvan__text {
  max-width: 100%;
}

#services {
  position: relative;
  z-index: 2;
}

.services {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.servicesItem {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 4px 4px 12px rgba(12, 20, 53, 0.04);
  padding-bottom: 20px;
  overflow: hidden;
}

.servicesItem__image {
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.servicesItem__image::before {
  content: "";
  display: block;
  padding-top: 62%;
}

.servicesItem__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.servicesItem__title {
  padding: 0 20px;
  margin-bottom: 8px;
}

.servicesItem__title:last-child {
  margin-bottom: 0;
}

.servicesItem__text {
  padding: 0 20px;
  opacity: 0.8;
}

.servicesItem__text p {
  margin-bottom: 8px;
}

.servicesItem__text p:last-child {
  margin-bottom: 0;
}

.advan__list {
  display: grid;
  grid-gap: 23px;
  grid-template-columns: repeat(6, 1fr);
}

.advan__text {
  max-width: 1030px;
  margin: 0 auto;
  margin-top: 44px;
  text-align: center;
  opacity: 0.8;
}

.advan__text p {
  margin-bottom: 16px;
}

.advan__text p:last-child {
  margin-bottom: 0;
}

.advanItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.advanItem::after {
  content: "";
  position: absolute;
  top: 82px;
  left: calc(100% + 4px);
  width: 15px;
  height: 2px;
  background: var(--primary);
}

.advanItem:last-child::after {
  display: none;
}

.advanItem__image {
  width: calc(100% - 34px);
  border-radius: 32px;
  margin-bottom: 12px;
}

.advanItem__title {
  color: var(--primary);
}

.works {
  display: flex;
}

.works__list {
  width: 100%;
}

.works__wrap {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(2, 1fr);
}

.worksItem {
  border: 1px solid var(--white);
  border-radius: 20px;
  box-shadow: 4px 4px 12px rgba(12, 20, 53, 0.04);
  position: relative;
  overflow: hidden;
}

.worksItem::before {
  content: "";
  display: block;
  padding-top: 59%;
}

.worksItem img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.worksVideo {
  flex-shrink: 0;
  width: 400px;
  border: 8px solid var(--white);
  border-radius: 20px;
  box-shadow: 4px 4px 12px rgba(12, 20, 53, 0.04);
  position: relative;
  overflow: hidden;
  margin-left: 20px;
}

.worksVideo__video {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}

.worksVideoBl {
  position: absolute;
  z-index: 2;
  bottom: 12px;
  left: 12px;
  max-width: 100%;
  background: var(--white);
  border-radius: 16px;
  padding: 12px;
  padding-right: 16px;
  display: inline-flex;
  align-items: center;
}

.worksVideoBl__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.worksVideoBl__icon img {
  width: 24px;
}

.worksVideoBl__text {
  max-width: 100%;
}

.reviews__list {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.reviews__more {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.review {
  display: none;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 4px 4px 12px rgba(12, 20, 53, 0.04);
  padding: 28px;
}

.review:nth-child(-n+4),
.review.active {
  display: flex;
  flex-direction: column;
}

.review__head {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.review__title {
  width: 100%;
}

.review__text {
  margin-bottom: 20px;
}

.review__text:last-child {
  margin-bottom: 0;
}

.review__text p {
  margin-bottom: 10px;
}

.review__text p:last-child {
  margin-bottom: 0;
}

.review__bottom {
  margin: auto;
  margin-bottom: 0;
  width: 100%;
}

.review__name {
  margin-bottom: 4px;
}

.review__name:last-child {
  margin-bottom: 0;
}

.review__service {
  opacity: 0.8;
}

.reviewRating {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.reviewRating__logo {
  width: 20px;
}

.reviewRating__logo.gis2 {
  width: 59px;
}

.reviewRating__rating {
  width: 115px;
}

.faqItem {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 4px 4px 12px rgba(12, 20, 53, 0.04);
  padding: 28px;
  cursor: pointer;
  transition: 0.25s;
  margin-bottom: 12px;
}

.faqItem:last-child {
  margin-bottom: 0;
}

.faqItem__title {
  min-height: 30px;
  padding-right: 42px;
  display: flex;
  align-items: center;
  position: relative;
}

.faqItem__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 30px;
  height: 30px;
  background: url("assets/img/icons/faq-plus.svg") no-repeat;
  background-size: cover;
  background-position: center;
}

.faqItem__text {
  display: none;
  margin-top: 16px;
}

.faqItem__text p {
  margin-bottom: 10px;
}

.faqItem__text p:last-child {
  margin-bottom: 0;
}

.faqItem.active .faqItem__title::after {
  background-image: url("assets/img/icons/faq-minus.svg");
}

.faqItem.active .faqItem__text {
  display: block;
}

.priceBl {
  background: var(--white);
  border-radius: 24px;
  padding: 8px 28px;
  margin-bottom: 20px;
}

.priceBl:last-child {
  margin-bottom: 0;
}

.priceBl__head {
  min-height: 70px;
  padding: 20px 0;
  padding-right: 42px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.priceBl__head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 30px;
  height: 30px;
  background: url("assets/img/icons/faq-plus.svg") no-repeat;
  background-size: cover;
  background-position: center;
}

.priceBl__cnt {
  display: none;
}

.priceBl.active .priceBl__head::after {
  background-image: url("assets/img/icons/faq-minus.svg");
}

.priceTabs {
  display: none;
  transform: translate(-16px, 0);
  width: calc(100% + 32px);
  padding: 0 16px;
  overflow: hidden;
  margin-bottom: 12px;
}

.priceTabs__wrap {
  display: flex;
  flex-wrap: nowrap;
}

.priceTabs__item {
  flex-shrink: 0;
  min-height: 32px;
  background: rgba(0, 74, 183, 0.08);
  border-radius: 8px;
  padding: 4px 8px;
  color: var(--primary);
  margin-right: 4px;
}

.priceTabs__item:last-child {
  margin-right: 0;
}

.priceTabs__item.active {
  background: var(--primary);
  color: var(--white);
}

.priceT {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  margin-bottom: 20px;
  font: 400 18px/1.36 var(--font);
}

.priceT__row {
  border-bottom: 1px solid rgba(12, 20, 53, 0.2);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.priceT__row.th {
  background: rgba(0, 74, 183, 0.05);
  font-weight: 500;
}

.priceT__ceil {
  grid-column: span 3;
  min-height: 48px;
  border-left: 1px solid rgba(12, 20, 53, 0.2);
  padding: 4px 16px;
  display: flex;
  align-items: center;
}

.priceT__ceil:first-child {
  border-left: none;
}

.priceT.priceT_two .priceT__ceil {
  grid-column: span 6;
}

.priceT.priceT_two_3_1 .priceT__ceil:first-child {
  grid-column: span 9;
}

.priceT.priceT_three .priceT__ceil {
  grid-column: span 4;
}

.priceT.priceT_three_2_1_1 .priceT__ceil:first-child {
  grid-column: span 6;
}

.pricesBtn {
  margin-top: 44px;
}

.errorBlock {
  text-align: center;
}

.errorBlock__title {
  margin-bottom: 12px;
}

.errorBlock__text {
  opacity: 0.8;
  margin-bottom: 32px;
}

.errorBlock__btn {
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 1921px) {
  .hero::before {
    top: -140px;
    width: 100%;
    height: 1024px;
  }
}

@media screen and (max-width: 1099px) {
  body {
    font-size: 14px;
  }

  button {
    font-size: 14px;
  }

  h1,
  .h1 {
    font-size: 24px;
  }

  h2,
  .h2 {
    font-size: 20px;
  }

  h3,
  .h3 {
    font-size: 16px;
  }

  h4,
  .h4 {
    font-size: 14px;
  }

  .text20 {
    font-size: 14px;
  }

  .text18 {
    font-size: 14px;
  }

  .text18M {
    font-size: 14px;
  }

  .text14 {
    font-size: 12px;
  }

  .btn {
    min-height: 60px;
    padding: 8px 12px;
    font-size: 14px;
  }

  .btn__icon {
    width: 32px;
    height: 32px;
  }

  .btn_sm {
    min-height: 52px;
    font-size: 14px;
  }

  .btn_sm .btn__icon {
    font-size: 28px;
  }

  input {
    height: 52px;
    font-size: 16px;
  }

  input::placeholder {
    font-size: 16px;
  }

  .link {
    font-size: 14px;
  }

  .modal {
    border-radius: 24px;
    padding: 16px;
    padding-top: 40px;
  }

  .modal__close {
    width: 56px;
    height: 56px;
  }

  .modal__close img {
    width: 32px;
  }

  .modal__head {
    padding: 0;
    margin-bottom: 24px;
  }

  .modalBlock {
    margin-bottom: 24px;
  }

  .modalBlock__title {
    margin-bottom: 16px;
  }

  .modalSocialItem {
    min-height: 52px;
    font-size: 14px;
  }

  .modalSocialItem__icon {
    width: 32px;
    height: 32px;
  }

  #thanksModal {
    padding: 24px;
  }

  .thanksModal__image {
    margin-bottom: 16px;
  }

  .thanksModal__title {
    margin-bottom: 12px;
  }

  .social_lg .social__item {
    width: 40px;
    height: 40px;
  }

  .orderForm__agree {
    text-align: center;
  }

  .header__wrap {
    padding: 8px 0;
  }

  .header__logo {
    width: 116px;
  }

  .header__right {
    display: none;
  }

  .header__mobphone {
    display: flex;
    align-items: center;
  }

  .headerMenu {
    display: none;
  }

  .burger {
    display: flex;
    align-items: center;
  }

  .footer {
    padding-top: 30px;
  }

  .footer__inner {
    border-radius: 32px 32px 0 0;
    padding-top: 40px;
  }

  .footer__wrap {
    grid-template-columns: 1fr;
  }

  .footer__social {
    position: static;
    flex-shrink: 0;
    flex-direction: column;
    margin-left: 16px;
  }

  .footer__bottom {
    padding: 20px 0;
    margin-top: 20px;
    display: block;
  }

  .footer__bottom p {
    margin-bottom: 8px;
  }

  .footer__bottom p:last-child {
    margin-bottom: 0;
  }

  .footerContent {
    text-align: center;
    padding-right: 0;
  }

  .footerContent__title {
    margin-bottom: 12px;
  }

  .footerContacts {
    display: flex;
    align-items: flex-start;
  }

  .footerContacts__wrap {
    width: 100%;
    grid-gap: 16px;
    grid-template-columns: 1fr;
  }

  .footerContact__title a[href^="tel:"] {
    pointer-events: auto;
  }

  .section {
    padding: 30px 0;
  }

  .section.lp {
    padding: 60px 0;
  }

  .section.lpt {
    padding-top: 60px;
  }

  .section.lpb {
    padding-bottom: 60px;
  }

  .sectionHead {
    margin-bottom: 24px;
  }

  .sectionHead__title {
    margin-bottom: 12px;
  }

  .sectionHead__title br {
    display: none;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 45px;
  }

  .hero::before {
    top: -56px;
    width: 1446px;
    height: 640px;
  }

  .hero__head {
    margin-bottom: 24px;
  }

  .hero__title {
    margin-bottom: 16px;
  }

  .hero__btn {
    margin-bottom: 24px;
  }

  .hero__advan {
    gap: 8px;
  }

  .heroWorktime {
    margin-bottom: 20px;
  }

  .heroWorktime__icon {
    width: 20px;
    margin-right: 8px;
  }

  .heroAdvan {
    min-height: 36px;
  }

  .heroAdvan__icon {
    width: 20px;
    margin-right: 8px;
  }

  .heroAdvan__text {
    font-size: 12px;
  }

  .services {
    grid-template-columns: repeat(2, 1fr);
  }

  .servicesItem {
    padding-bottom: 16px;
  }

  .servicesItem__image {
    margin-bottom: 16px;
  }

  .servicesItem__title {
    padding: 0 16px;
    margin-bottom: 8px;
  }

  .servicesItem__text {
    padding: 0 16px;
  }

  .servicesItem__text p {
    margin-bottom: 4px;
  }

  .advan__list {
    grid-gap: 32px;
    grid-template-columns: repeat(3, 1fr);
  }

  .advan__text {
    margin-top: 24px;
  }

  .advan__text p {
    margin-bottom: 8px;
  }

  .advanItem::after {
    display: none;
  }

  .advanItem__image {
    width: 100%;
    margin-bottom: 10px;
  }

  .works {
    display: block;
  }

  .works__list {
    transform: translate(-16px, 0);
    width: calc(100% + 32px);
    padding: 0 16px;
    margin-bottom: 20px;
    overflow: hidden;
  }

  .works__wrap {
    display: flex;
    flex-wrap: nowrap;
    grid-gap: unset;
    grid-template-columns: unset;
  }

  .worksItem {
    flex-shrink: 0;
    width: 290px;
    margin-right: 8px;
  }

  .worksItem:last-child {
    margin-right: 0;
  }

  .worksVideo {
    width: 100%;
    margin: 0;
  }

  .worksVideo::before {
    content: "";
    display: block;
    padding-top: 100%;
  }

  .worksVideoBl__icon {
    width: 40px;
    height: 40px;
  }

  .worksVideoBl__icon img {
    width: 20px;
  }

  .reviews__list {
    grid-gap: 12px;
    grid-template-columns: 1fr;
  }

  .reviews__more {
    margin-top: 20px;
  }

  .review {
    padding: 20px;
  }

  .review__head {
    margin-bottom: 12px;
  }

  .review__text {
    margin-bottom: 12px;
  }

  .review__text p {
    margin-bottom: 8px;
  }

  .review__service {
    font-size: 12px;
  }

  .reviewRating__logo {
    width: 18px;
  }

  .reviewRating__logo.gis {
    width: 53px;
  }

  .reviewRating__rating {
    width: 95px;
  }

  .faqItem {
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 8px;
  }

  .faqItem__title {
    min-height: 24px;
    padding-right: 36px;
  }

  .faqItem__title::after {
    width: 24px;
    height: 24px;
  }

  .faqItem__text {
    margin-top: 12px;
  }

  .faqItem__text p {
    margin-bottom: 6px;
  }

  .priceBl {
    transform: translate(-16px, 0);
    width: calc(100% + 32px);
    border-radius: 0;
    padding: 4px 16px;
    margin-bottom: 12px;
  }

  .priceBl__head {
    min-height: 48px;
    padding: 12px 0;
    padding-right: 36px;
    font-size: 14px;
  }

  .priceBl__head::after {
    width: 24px;
    height: 24px;
  }

  .priceTabs:has(.priceTabs__item:nth-child(2)) {
    display: block;
  }

  .priceT {
    border-radius: 0;
    font-size: 14px;
    margin-bottom: 12px;
  }

  .priceT__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .priceT__ceil {
    display: none;
    grid-column: unset;
    min-height: 32px;
    padding: 4px 8px;
  }

  .priceT__ceil:first-child,
  .priceT__ceil:nth-child(2) {
    display: flex;
  }

  .priceT.priceT_two .priceT__ceil {
    grid-column: unset;
  }

  .priceT.priceT_two_3_1 .priceT__ceil:first-child {
    grid-column: unset;
  }

  .priceT.priceT_three .priceT__ceil {
    grid-column: unset;
  }

  .priceT.priceT_three_2_1_1 .priceT__ceil:first-child {
    grid-column: unset;
  }

  .priceT.mobactive1 .priceT__ceil {
    display: none;
  }

  .priceT.mobactive1 .priceT__ceil:first-child,
  .priceT.mobactive1 .priceT__ceil:nth-child(2) {
    display: flex;
  }

  .priceT.mobactive2 .priceT__ceil {
    display: none;
  }

  .priceT.mobactive2 .priceT__ceil:first-child,
  .priceT.mobactive2 .priceT__ceil:nth-child(3) {
    display: flex;
  }

  .priceT.mobactive3 .priceT__ceil {
    display: none;
  }

  .priceT.mobactive3 .priceT__ceil:first-child,
  .priceT.mobactive3 .priceT__ceil:nth-child(4) {
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .modal__social {
    grid-gap: 12px;
    grid-template-columns: 1fr;
  }

  .hero::before {
    top: 0;
    left: 0;
    transform: none;
    width: 500px;
    height: 270px;
  }

  .hero__btn .btn {
    width: 100%;
  }

  .services {
    grid-gap: 16px;
    grid-template-columns: 1fr;
  }

  .advan__list {
    grid-gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }

  .worksVideo::before {
    padding-top: 160%;
  }

  .review__head {
    flex-wrap: wrap;
  }

  .review__title {
    order: 2;
  }

  .reviewRating {
    order: 1;
    width: 100%;
    margin-bottom: 12px;
  }
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    color: var(--hover);
  }

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

  .btn:hover::before {
    opacity: 1;
  }

  .btn:hover .btn__icon {
    transform: scale(1.2);
  }

  .btn_white:hover {
    background: var(--bg);
    color: var(--primary);
  }

  .link:hover {
    color: var(--hover);
  }

  .modal__close:hover {
    transform: rotate(-90deg) scale(1.1);
  }

  .modalSocialItem:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
  }

  .social__item:hover {
    background: var(--hover);
    transform: scale(1.1);
  }

  .social_type2 .social__item:hover {
    background: var(--white);
  }

  .social_type2 .social__item:hover svg {
    fill: var(--primary);
  }

  .social_type3 .social__item:hover {
    background: var(--base);
  }

  .social_type3 .social__item:hover svg {
    fill: var(--white);
  }

  .orderForm__agree a:hover {
    color: var(--white);
  }

  .headerMenu__item:hover {
    color: var(--hover);
  }

  .headerMenu__item:hover span::after {
    width: 100%;
    opacity: 1;
  }

  .footer__bottom a:hover {
    color: var(--white);
  }

  .footerContact__title a:hover {
    color: var(--white);
  }

  .faqItem:hover {
    box-shadow: 8px 8px 16px rgba(12, 20, 53, 0.08);
  }
}