@charset "UTF-8";

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "TekTur";
  src: url("../fonts/Tektur.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
:root {
  --font-family: "Inter", sans-serif;
  --second-family: "Tektur", sans-serif;
  --content-width: 1440px;
  --container-offset: 40px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --gold2: #aa9766;
  --gold1: #bcb090;
  --blue: rgba(12, 32, 65, 0.81);
  --lightblue: #a5acc3;
  --white: #fff;
  --orange: #f60;
  --deep-blue: #0c2041;
  --black: #000000;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  scrollbar-gutter: stable;
}
.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

p {
  margin: 0;
}

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

h4 {
  font-size: 22px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 16px;
}

figure {
  margin: 0;
  padding: 0;
}

.site-container {
  overflow: hidden;
}

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

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

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

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

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

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

.centered {
  text-align: center;
}

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

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

.bold {
  font-weight: 700;
}

a {
  text-underline-offset: 2px;
}

.pos-rel {
  position: relative;
}
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}
.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}
.h1-title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: clamp(42px, 1.6127rem + 4.3192vw, 88px);
  line-height: 100%;
  color: var(--white);
}

.section__title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: clamp(32px, 1.4718rem + 2.2535vw, 56px);
  color: var(--deep-blue);
}

.text__black {
  color: var(--black);
}

.section {
  position: relative;
  margin-bottom: 40px;
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}
.navigation svg {
  fill: var(--lightblue);
  -webkit-transition: fill 0.28s ease-in-out;
  transition: fill 0.28s ease-in-out;
}
.navigation .navigation__button {
  cursor: pointer;
}
.navigation .navigation__button:hover svg {
  fill: var(--orange);
}

.show__all {
  margin-top: 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.accordion {
  --accordion-time: 0.3s;
}

.content {
  max-width: 1000px;
  margin: 0 auto;
}

.accordion__control {
  width: 100%;
  background-color: transparent;
  cursor: pointer;
}

.accordion__content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 20px;
  will-change: max-height;
  -webkit-transition: all var(--accordion-time) ease-out;
  transition: all var(--accordion-time) ease-out;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.accordion__title {
  font-weight: bold;
  font-size: 1.17em;
}

.accordion__icon {
  -webkit-transition: -webkit-transform var(--accordion-time) ease-out;
  transition: -webkit-transform var(--accordion-time) ease-out;
  transition: transform var(--accordion-time) ease-out;
  transition: transform var(--accordion-time) ease-out, -webkit-transform var(--accordion-time) ease-out;
}

.is-open .accordion__icon {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.is-open .accordion__content {
  opacity: 1;
  padding: 20px;
}
.btn-menu {
  width: 48px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  /*background: rgba(255, 255, 255, 0.1);*/
  /*backdrop-filter: blur(10px);*/
  /*border-radius: 16px;*/
  transition: background 0.28s;
  cursor: pointer;
}

.btn-menu:hover {
  background: rgba(255, 255, 255, 0.15);
}

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

.burger__line {
  fill: white;
  transition: transform 0.28s ease-in-out;
}
.active .burger__line {
  fill: var(--deep-blue);
}
/* Все линии вращаются вокруг центра SVG (16, 16) */
.burger__line--top {
  transform-origin: 16px 16px;
  transform: translateY(-7.33px) rotate(0deg);
}

.burger__line--middle {
  transform-origin: 16px 16px;
  transition: opacity 0.3s;
}

.burger__line--bottom {
  transform-origin: 16px 16px;
  transform: translateY(7.33px) rotate(0deg);
}

/* Активное состояние - крестик */
.btn-menu.active .burger__line--top {
  transform: translateY(0) rotate(45deg);
}

.btn-menu.active .burger__line--middle {
  opacity: 0;
}

.btn-menu.active .burger__line--bottom {
  transform: translateY(0) rotate(-45deg);
}
/*=============
Menu
============*/
.sub-menu {
  display: none;

  top: 100%;
  padding: 8px 49px 12px 30px;
  background-color: var(--deep-blue);
  color: var(--white);
  font-size: 17px;
}
.header__nav .sub-menu {
  position: absolute;
}
.sub-menu .menu-item {
  margin: 10px 0;
}
.sub-menu .menu-item:hover {
  color: var(--orange);
}
.mobile__nav .sub-menu {
  background-color: transparent;
}
.menu-item-has-children {
  position: relative;
  padding-right: 22px;
}
.menu-item-has-children::after {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  content: url("data:image/svg+xml,%3Csvg%20width%3D%2210%22%20height%3D%226%22%20viewBox%3D%220%200%2010%206%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M4.96103%206L0%201.03897L1.03897%20-4.76837e-07L4.96103%203.92209L8.8831%20-4.76837e-07L9.92207%201.03897L4.96103%206Z%22%20fill%3D%22white%22%20%2F%3E%3C%2Fsvg%3E");
  position: absolute;
  right: 5px;
  top: -1px;
  transition: transform .3s ease-in-out;
}
.menu-item-open.menu-item-has-children::after {
  transform: rotate(-180deg);
  transform-origin: center;
}
.header__nav .menu-item-has-children:hover .sub-menu {
  display: block;
}

.btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: var(--second-family);
  background: transparent;
  cursor: pointer;
  font-size: 17px;
}
.btn svg {
  right: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  -webkit-transition: fill 0.28s ease-in-out, stroke 0.28s ease-in-out;
  transition: fill 0.28s ease-in-out, stroke 0.28s ease-in-out;
}
.btn .btn-text {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 2;
  line-height: 1;
}
.btn.text__white {
  color: var(--white);
  stroke: white;
}
.btn.text__white:hover svg {
  fill: var(--orange);
}
.btn.text__white:hover path {
  stroke: var(--orange);
}
.btn.text__black svg {
  fill: var(--white);
}
.btn.text__black path {
  fill: var(--white);
}
.btn.text__black:hover {
  color: var(--white);
}
.btn.text__black:hover svg {
  fill: var(--orange);
}
.btn.text__black:hover path {
  fill: var(--orange);
}

.btn__blue {
  color: var(--white);
}
.btn__blue svg {
  fill: #132E5B;
}
.btn__blue:hover svg {
  fill: var(--orange);
}

.button__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.button__box input, .button__box button {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
  border: none;
  padding: 0;
  background-color: transparent;
  font-family: var(--second-family);
  font-size: 18px;
  cursor: pointer;
  color: var(--white);
}
.button__box svg path {
  fill: #A5ACC3;
}
.button__box:hover svg path {
  fill: var(--orange);
}

/*=============
video
============*/
.video-wrap {
  float: right;
  position: relative;
  margin: 15px;
  width: 600px;
  height: 338px;
  background-color: var(--lightblue);
  display: inline-block;
}
.video-wrap iframe, .video-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  border: none;
}
.video-wrap .btn-reset {
  cursor: pointer;
}
.video-wrap .video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.video-wrap .video-play-shape {
  fill: #212121;
  fill-opacity: 0.8;
}
.video-wrap .video-play-icon {
  fill: #ffffff;
}
.video-wrap .video-play:focus {
  outline: none;
}
.video-wrap:hover .video-play-shape, .video:focus .video-wrap-play-shape {
  fill: #ff0000;
  fill-opacity: 1;
}
.video-wrap::after {
  content: "";
  clear: both;
  display: table;
}

.swiper-slide {
  height: auto;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
  object-fit: cover;
}
.swiper-slide .slide__content {
  --bevel-size: 30px;
  position: relative;
  margin-top: -53px;
  padding: 31px 27px;
  background-color: var(--deep-blue);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
  max-width: 100%;
  clip-path: polygon(0 0, calc(100% - var(--bevel-size)) 0, 100% var(--bevel-size), 100% 100%, 0 100%);
  -webkit-transition: background 0.28s ease-in-out;
  transition: background 0.28s ease-in-out;
}
.swiper-slide .slide__content:hover {
  background-color: var(--orange);
}
.swiper-slide .slide__text {
  max-width: 100%;
}
.swiper-slide .slide__title {
  margin-bottom: 11px;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: clamp(20px, 0.9859rem + 1.1268vw, 32px);
  line-height: 1;
}
.swiper-slide .text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(14px, 0.831rem + 0.1878vw, 16px);
  line-height: 137%;
}
.swiper-slide .slide__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  overflow: hidden;
}

.navigation {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  padding-top: 22px;
  color: var(--white);
  font-size: 17px;
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header .logo {
  margin-right: 46px;
}
.header .logo__svg {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  height: auto;
}
.header .location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.header .location__svg {
  height: 24px;
  width: 24px;
  fill: var(--white);
}
.header .location__data {
  max-width: 130px;
}
.header .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.1vw;
  margin-left: 3.6vw;
}
.header .menu a {
  white-space: nowrap;
}
.header .btn__request {
  margin-left: auto;
  margin-right: 8px;
  font-size: 18px;
}
.header .btn-menu {
  /*margin-right: -22px;*/
  margin-right: 0;
  position: relative;
  z-index: 51;
}
.header__mobile {
  /*display: none;*/
  -webkit-transform: translateX(200%);
  -ms-transform: translateX(200%);
  transform: translateX(200%);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  max-width: 100%;
  width: 100%;
  z-index: 50;
  -webkit-transition: transform 0.28s ease-in-out;
  transition: transform 0.28s ease-in-out;
}
.header__mobile-wrapper {
  flex-grow: 1;
  position: relative;
  z-index: 2;
  padding: 40px;
  backdrop-filter: blur(15px);
  overflow-y: auto;
}
.header__mobile-wrapper::after {
  /*position: absolute;*/
  /*top: 0;*/
  /*left: 0;*/
  /*right: 0;*/
  /*bottom: 0;*/
  /*width: 100%;*/
  /*content: "";*/
  /*background: rgba(12, 32, 65, 0.95);*/
  /*z-index: -1;*/
}
.header_form  {
  flex-grow: 1;
  position: relative;
  z-index: 2;
  padding: 40px 40px 40px 45px;
  backdrop-filter: blur(15px);
  color: var(--black);
}
.header_form::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  content: "";
  background: rgba(243,243,245, 0.95);
  z-index: -1;
}
.header_form .graph-modal__content {
  max-width: 100%;
}
.header .mobile__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header .mobile__top .mobile__logo {
  max-width: 92px;
}
.header .mobile__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 11px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
}
.header .mobile__nav {
  margin-top: 7vw;
  margin-bottom: 7vw;
}
.header .mobile__nav .menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
  padding: 0;
  gap: 35px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.mobile__nav .menu-item {
  width: 100%;
}
.mobile__nav .menu-item a {
  font-size: clamp(20px, 1.162rem + 0.3756vw, 24px);
}
.header .mobile_bottom p {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 247%;
  color: var(--white);
}
.header__mobile.header__show {
  display: flex;
  justify-content: space-between;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  background: rgba(12, 32, 65, 0.95);
  backdrop-filter: blur(15px);
  -webkit-transition: -webkit-transform 0.28s ease-in-out;
  transition: -webkit-transform 0.28s ease-in-out;
  transition: transform 0.28s ease-in-out;
  transition: transform 0.28s ease-in-out, -webkit-transform 0.28s ease-in-out;
}
/*=============
Modal
============*/
.graph-modal__close {
  top: 50px;
  right: 40px;
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_271_1982)"><path d="M14.1988 12.0197L23.5439 2.67424C24.1521 2.06636 24.1521 1.0835 23.5439 0.475624C22.936 -0.132256 21.9532 -0.132256 21.3453 0.475624L11.9999 9.82103L2.65474 0.475624C2.04658 -0.132256 1.064 -0.132256 0.456124 0.475624C-0.152041 1.0835 -0.152041 2.06636 0.456124 2.67424L9.80125 12.0197L0.456124 21.3651C-0.152041 21.9729 -0.152041 22.9558 0.456124 23.5637C0.759067 23.8669 1.15739 24.0192 1.55543 24.0192C1.95347 24.0192 2.35151 23.8669 2.65474 23.5637L11.9999 14.2183L21.3453 23.5637C21.6485 23.8669 22.0465 24.0192 22.4446 24.0192C22.8426 24.0192 23.2407 23.8669 23.5439 23.5637C24.1521 22.9558 24.1521 21.9729 23.5439 21.3651L14.1988 12.0197Z" fill="black" /></g><defs><clipPath id="clip0_271_1982"><rect width="24" height="24" fill="white" /></clipPath></defs></svg>');
  background-position: center;
  background-repeat: no-repeat;
}
.graph-modal__container {
  padding: 40px;
}
.graph-modal [data-graph-target=object-slider] {
  max-width: 1360px;
  width: 96%;
  aspect-ratio: 1.82;
  padding: 0;
  border-radius: 0;
}
.graph-modal [data-graph-target=object-slider] .object-slider {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1.82;
  color: var(--white);
}
.graph-modal [data-graph-target=object-slider] .object-slide {
  position: relative;
}
.graph-modal [data-graph-target=object-slider] .object-slide::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(215.69deg, rgba(0, 0, 0, 0) 20.9%, rgba(0, 0, 0, 0.7) 88.14%);
  content: "";
  z-index: 1;
}
.graph-modal [data-graph-target=object-slider] .object-content {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: auto;
  background-color: transparent;
  width: 60%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  z-index: 2;
  color: var(--white);
  overflow-y: clip;
}

.graph-modal [data-graph-target=object-slider] .object__item {
  clip-path: none;
  margin-bottom: 0;
}
.graph-modal [data-graph-target=object-slider] .object__title {
  background-color: transparent;
  font-size: clamp(20px, 0.9859rem + 1.1268vw, 32px);
}
.graph-modal [data-graph-target=object-slider] .object-content-top {
  margin-top: auto;
}
.graph-modal [data-graph-target=object-slider] .object-content .btn {
  margin-top: 25px;
  margin-bottom: 15px;
}
.graph-modal [data-graph-target=object-slider] .object-content-text {
  color: var(--white);
  overflow: clip;
}
.graph-modal [data-graph-target=object-slider] .features-item {
  color: var(--white);
}
.graph-modal [data-graph-target=object-slider] .btn .btn-text {
  color: var(--black);
}
.graph-modal [data-graph-target=object-slider] .object-content svg {
  fill: var(--lightblue);
}
.graph-modal [data-graph-target=object-slider] .btn.text__white:hover path {
  fill: var(--lightblue);
}
.graph-modal [data-graph-target=object-slider] .object-content:hover {
  color: var(--white);
}
.graph-modal [data-graph-target=object-slider] .object-content:hover svg, .graph-modal [data-graph-target=object-slider] .btn.text__white:hover path {
  fill: var(--orange);
}
.graph-modal [data-graph-target=object-slider] .object-content:hover .btn {
  color: var(--white);
}
.graph-modal [data-graph-target=object-slider] .graph-modal__close {
  background-image: url("../img/svg/close-white.svg");
  background-repeat: no-repeat;
  background-size: cover;
  top: 40px;
  right: 37px;
  z-index: 10;
  width: 24px;
  height: 24px;
}
.graph-modal [data-graph-target=modal-1] {
  backdrop-filter: blur(15px);
  background: #f3f3f5;
  max-width: 720px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--black);
}
.graph-modal [data-graph-target=modal-1].graph-modal-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.graph-modal [data-graph-target=modal-1] .graph-modal__close {
  top: 20px;
  right: 20px;
}
.graph-modal [data-graph-target=modal-1] .graph-modal__content {
  margin-top: 18px;
  margin-left: auto;
  margin-right: auto;
  max-width: 533px;
}
.graph-modal [data-graph-target=modal-1] .modal-subtitle {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 158%;
  color: #000;
}
.graph-modal [data-graph-target=modal-1] .modal-text {
  margin-bottom: 17px;
}
.graph-modal [data-graph-target=modal-1] form.wpcf7-form label {
  color: inherit;
}
.graph-modal [data-graph-target=modal-1] label + .your-phone {
  margin-bottom: 20px;
}
.graph-modal [data-graph-target=modal-1] .button__box {
  margin-bottom: 50px;
}
.graph-modal [data-graph-target=modal-1] .button__box input, .graph-modal [data-graph-target=modal-1] .button__box button {
  color: var(--black);
}
.graph-modal [data-graph-target=modal-1] .button__box path {
  fill: #A5ACC3;
}
.graph-modal [data-graph-target=modal-1] .button__box:hover path {
  fill: var(--orange);
}

.graph-modal__close:focus-visible {
  outline: none;
}

[data-graph-target=modal-consultation] {
  background-color: rgba(243, 243, 245, 0.9);
  backdrop-filter: blur(15px);
  max-width: 720px;
  color: var(--black);
  padding: 40px 42px;
}
.graph-modal__top .lang-switcher-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 60px;
}
.graph-modal__top .lang-item a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  font-size: 17px;
  font-weight: 500;
  color: inherit;
  text-transform: uppercase;
}
.graph-modal__top .lang-item.is-active a {
  background: var(--lightblue);
  pointer-events: none;
}
.graph-modal__top form.wpcf7-form label {
  color: inherit;
}
.graph-modal__top .button__box svg path {
  fill: var(--deep-blue);
}
[data-graph-target=modal-consultation] .button__box:hover svg path {
  fill: var(--orange);
}

[data-graph-target=modal-getcost] {
  background-color: rgba(243, 243, 245, 0.9);
  max-width: 720px;
  color: var(--black);
  padding: 40px 42px;
}
[data-graph-target=modal-getcost].graph-modal-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
[data-graph-target=modal-getcost] .graph-modal__close {
  top: 20px;
  right: 20px;
}
[data-graph-target=modal-getcost] .graph-modal__content {
  margin-top: 18px;
  margin-left: auto;
  margin-right: auto;
  max-width: 533px;
}
[data-graph-target=modal-getcost] .modal-text {
  margin-bottom: 17px;
}
[data-graph-target=modal-getcost] form.wpcf7-form label {
  color: inherit;
}
[data-graph-target=modal-getcost] label + .your-phone {
  margin-bottom: 20px;
}
[data-graph-target=modal-getcost] .button__box {
  margin-bottom: 50px;
}
[data-graph-target=modal-getcost] .button__box input, [data-graph-target=modal-getcost] .button__box button {
  color: var(--black);
}

[data-graph-target=modal-thanks] {
  backdrop-filter: blur(15px);
  background: #f3f3f5;
  max-width: 720px;
  color: var(--black);
  padding: 40px 42px;
  text-align: center;
}
[data-graph-target=modal-thanks].graph-modal-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
[data-graph-target=modal-thanks] .graph-modal__close {
  top: 20px;
  right: 20px;
}
[data-graph-target=modal-thanks] .graph-modal__content {
  margin-top: 18px;
  margin-left: auto;
  margin-right: auto;
  max-width: 533px;
}
[data-graph-target=modal-thanks] .modal-text {
  margin-bottom: 40px;
}
[data-graph-target=modal-thanks] .close__button {
  margin-bottom: 50px;
  color: var(--black);
}
[data-graph-target=modal-thanks] .close__button .btn__blue {
  color: var(--black);
}
[data-graph-target=modal-thanks] .close__button path {
  fill: #A5ACC3;
}
[data-graph-target=modal-thanks] .close__button:hover path {
  fill: var(--orange);
}

[data-graph-target=modal-getconsultation] {
  backdrop-filter: blur(15px);
  background: #f3f3f5;
  max-width: 720px;
  color: var(--black);
  padding: 40px 42px;
}
[data-graph-target=modal-getconsultation].graph-modal-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
[data-graph-target=modal-getconsultation] .graph-modal__close {
  top: 20px;
  right: 20px;
}
[data-graph-target=modal-getconsultation] .graph-modal__content {
  margin-top: 18px;
  margin-left: auto;
  margin-right: auto;
  max-width: 533px;
}
[data-graph-target=modal-getconsultation] .modal-text {
  margin-bottom: 17px;
}
[data-graph-target=modal-getconsultation] form.wpcf7-form label {
  color: inherit;
}
[data-graph-target=modal-getconsultation] label + .your-phone {
  margin-bottom: 20px;
}
[data-graph-target=modal-getconsultation] .button__box {
  margin-bottom: 50px;
}
[data-graph-target=modal-getconsultation] .button__box input, [data-graph-target=modal-getconsultation] .button__box button {
  color: var(--black);
}

[data-graph-target=object-request] {
  backdrop-filter: blur(15px);
  background: #f3f3f5;
  max-width: 720px;
  color: var(--black);
  padding: 40px 42px;
}
[data-graph-target=object-request].graph-modal-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
[data-graph-target=object-request] .graph-modal__close {
  top: 20px;
  right: 20px;
}
[data-graph-target=object-request] .graph-modal__content {
  margin-top: 18px;
  margin-left: auto;
  margin-right: auto;
  max-width: 533px;
}
.modal-step {
  position: static;
  /*opacity: 0;*/
  /*transform: translateY(10px);*/
  /*visibility: hidden;*/
  /*pointer-events: none;*/
  /*transition: opacity .3s ease, transform .3s ease;*/
}
.modal-step.is-visible {
  visibility: visible;
  pointer-events: auto;
  animation: slideFade 0.6s;
}
.modal-step.block-hidden {
  position: absolute;
  visibility: hidden;
  pointer-events: none;
  animation: slideFadeOff 0.6s;
}

@keyframes slideFade {
  0% {
    opacity: 0;
    position: static;
    transform: translateY(10px);
  }
   29% {
    opacity: 0.6;
    z-index: 1;
    transform: translateY(6px);
  }
  60% {
    opacity: 1;
  }
  100% {
    position: static;
    transform: translateY(0);
  }
}
@keyframes slideFadeOff {
  0% {
    opacity: 0.5;
    position: absolute;
    transform: translateY(0);
  }
  10% {
    opacity: 0.5;
    transform: translateY(-10px);
  }
  60% {
    opacity: 0;
    position: absolute;
  }
  100% {
    position: absolute;
    z-index: -2;
    pointer-events: none;
    transform: translateY(-20px);
  }
}

.form-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  margin-top: 30px;
}
.modal-step .modal-text {
  margin-bottom: 17px;
  font-size: 20px;
}
.modal-step .wpcf7-list-item {

}
.modal-step .radio__wrapper {
  margin-bottom: 15px;
}
form.wpcf7-form .modal-step .radio__wrapper input {
 appearance: none;
  display: none;
}
.modal-step .wpcf7-list-item-label {
  padding-left: 20px;
  display: flex;
  width: 100%;
  align-items: center;
  height: 50px;
  border: 1px solid var(--lightblue);
  cursor: pointer;
}
.modal-step .radio__wrapper label {
  background-color: transparent;
  width: 100%;
}
.modal-step .wpcf7-list-item-label::after {
  margin-left: auto;
  margin-right: 16px;
  display: block;
  content: "";
  width: 25px;
  height: 25px;
  background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_271_2076)"><path d="M17.3046 8.19232C17.6708 8.55853 17.6708 9.15216 17.3046 9.51819L11.0153 15.8077C10.649 16.1737 10.0556 16.1737 9.68939 15.8077L6.69543 12.8135C6.32922 12.4475 6.32922 11.8539 6.69543 11.4879C7.06146 11.1216 7.65509 11.1216 8.02112 11.4879L10.3522 13.819L15.9787 8.19232C16.3449 7.82629 16.9385 7.82629 17.3046 8.19232ZM24 12C24 18.633 18.6321 24 12 24C5.367 24 0 18.6321 0 12C0 5.367 5.36792 0 12 0C18.633 0 24 5.36792 24 12ZM22.125 12C22.125 6.40338 17.5959 1.875 12 1.875C6.40338 1.875 1.875 6.40411 1.875 12C1.875 17.5966 6.40411 22.125 12 22.125C17.5966 22.125 22.125 17.5959 22.125 12Z" fill="%23CBCFDC" /></g><defs><clipPath id="clip0_271_2076"><rect width="24" height="24" fill="white" /></clipPath></defs></svg>');
  background-position: center;
  background-repeat: no-repeat;
}
.modal-step input:checked ~ .wpcf7-list-item-label {
  
  background: var(--lightblue);
}
.modal-step input:checked ~ .wpcf7-list-item-label::after {
  background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_271_2071)"><path d="M17.3046 8.19232C17.6708 8.55853 17.6708 9.15216 17.3046 9.51819L11.0153 15.8077C10.649 16.1737 10.0556 16.1737 9.68939 15.8077L6.69543 12.8135C6.32922 12.4475 6.32922 11.8539 6.69543 11.4879C7.06146 11.1216 7.65509 11.1216 8.02112 11.4879L10.3522 13.819L15.9787 8.19232C16.3449 7.82629 16.9385 7.82629 17.3046 8.19232ZM24 12C24 18.633 18.6321 24 12 24C5.367 24 0 18.6321 0 12C0 5.367 5.36792 0 12 0C18.633 0 24 5.36792 24 12ZM22.125 12C22.125 6.40338 17.5959 1.875 12 1.875C6.40338 1.875 1.875 6.40411 1.875 12C1.875 17.5966 6.40411 22.125 12 22.125C17.5966 22.125 22.125 17.5959 22.125 12Z" fill="black" /></g><defs><clipPath id="clip0_271_2071"><rect width="24" height="24" fill="white" /></clipPath></defs></svg>');
  background-size: 100%;
}
[data-graph-target=object-request] .radio__wrapper label {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: inherit;
  margin-bottom: 14px;
  border: 1px solid var(--lightblue);
  background: var(--white);
  font-size: 16px;
}
[data-graph-target=object-request] .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: 20px;
}
[data-graph-target=object-request] .icon svg {
  fill: #CBCFDC;
}
[data-graph-target=object-request] .button__box {
  /*margin-bottom: 50px;*/
}
[data-graph-target=object-request] .button__box input,
[data-graph-target=object-request] .button__box button {
  color: var(--black);
}
[data-graph-target=object-request] .custom-radio {
  position: relative;
}
[data-graph-target=object-request] .custom-radio__field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
}
[data-graph-target=object-request] .custom-radio__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  line-height: 49px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 20px;
  cursor: pointer;
}
[data-graph-target=object-request] form {
  overflow: hidden;
}
/*[data-graph-target=object-request] .modal-step-2 {*/
/*  -webkit-transform: translateX(-200%);*/
/*  -ms-transform: translateX(-200%);*/
/*  transform: translateX(-200%);*/
/*}*/
[data-graph-target=object-request] form.wpcf7-form label + .custom-radio__field {
  background: var(--lightblue);
}
[data-graph-target=object-request] .custom-radio__field:checked + .custom-radio__content {
  background: var(--lightblue);
}
[data-graph-target=object-request] .custom-radio__field:checked + .custom-radio__content svg {
  fill: var(--black);
}
[data-graph-target=object-request] .custom-radio__field:focus + .custom-radio__content::before {
  outline: 7px solid var(--blue);
  outline-offset: -7px;
  background: #fff;
}
[data-graph-target=object-request] .custom-radio__field:disabled + .custom-radio__content {
  opacity: 0.4;
  pointer-events: none;
}
[data-graph-target=object-request] .btn__back-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;

  font-family: var(--second-family);
  font-size: 18px;
  color: #000;
}
[data-graph-target=object-request] .modal-step-1 .btn__back-close {
  margin-top: 50px;
  margin-bottom: 40px;
}
.modal-title {
  margin-bottom: 9px;
  font-family: var(--second-family);
  font-size: clamp(26px, 1.3609rem + 1.1268vw, 38px);
  line-height: 135%;
  color: var(--deep-blue);
}

.modal-subtitle {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 158%;
}

.modal-text {
  font-size: 16px;
  line-height: 158%;
  color: #000;
}

.hero {
  position: relative;
  min-height: 65vh;
  color: var(--white);
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  overflow: hidden;
}
.hero__bg img, .hero__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.hero__bg::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  content: "";
  background-color: rgba(12, 32, 65, 0.81); /* Цвет из SVG. */
}
.hero .h1-title {
  padding-top: 110px;
  margin-bottom: 15px;
  max-width: 930px;
  width: 100%;
}
.hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  max-width: 86%;
  width: 100%;
  font-size: 22px;
  line-height: 145%;
}
.home .hero {
  min-height: 70vh;
}
.home .hero__content{
  max-width: 690px;
}
.hero .btns__box {
  margin-top: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
.hero .btns__box .btn {
  font-size: 18px;
}
.hero .mouse__box {
  margin-top: 116px;
  padding-bottom: 78px;
}
.hero .mouse__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  opacity: 0.4;
  scroll-behavior: smooth;
  transition: opacity .28s ease-in-out;
}
.hero .mouse__link:hover {
  opacity: 1;
}

.home .hero__bg::before {
  width: 69%;
  right: auto;
  min-width: 880px;
  clip-path: polygon(0% 0%, 100% 0%, 64.17% 100%, 0% 100%, 0% 0%);
}

.services .section__title {
  margin-bottom: 48px;
  line-height: 1.1;
}
.services__slide {
  position: relative;
  color: var(--white);
  height: auto;
}
.services__slide img {
  max-height: 330px;
  object-position: center 60%;
}
.services .navigation__button {
  margin-top: -140px;
}

/*=============
Portfolio section
============*/
.portfolio {
  background-color: #f3f3f5;
  padding-bottom: 90px;
}
.portfolio .section__title {
  padding-top: 80px;
  margin-bottom: 5px;
}
.portfolio__navigation {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 10px;
}
.portfolio__swiper {
  color: var(--white);
}
.portfolio__swiper .swiper-slide {
  width: calc(50% - 15px);
}
/*.portfolio__slide {*/
/*  height: auto;*/
/*}*/
.portfolio__slide img {
  height: 400px;
}

.portfolio .subtitle {
  max-width: 920px;
  margin-bottom: 30px;
}
.portfolio .slide__content {
  padding-top: 23px !important;
}
.portfolio .slide__title {
  line-height: 1.3 !important;
}

/*=============
calculator result section
============*/
.result__navigation {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 44px;
}
.result__navigation .navigation__button {
  margin-top: -50px;
}

.result .section__title {
  line-height: 1.2;
}
.result .result__slide {
  max-width: 100%;
  place-content: center;
  position: relative;
  overflow: hidden;
  --position: 50%;
}
.result .image-container {
  max-width: 100%;
  max-height: 660px;
  display: flex;
}
.result .slider-image {
  width: 100%;
  height: 100%;
  max-height: 660px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left;
  object-position: left;
}
.result .image-before {
  position: absolute;
  inset: 0;
  width: var(--position);
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.result .slider_range {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
  /* for Firefox */
  width: 100%;
  height: 100%;
}
.result .slider_range:focus-visible ~ .slider-button {
  outline: 5px solid black;
  outline-offset: 3px;
}
.result .slider-line {
  position: absolute;
  inset: 0;
  width: 0.2rem;
  height: 100%;
  background-color: var(--orange);
  /* z-index: 10; */
  left: var(--position);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  pointer-events: none;
}
.result .slider-button {
  position: absolute;
  background-color: transparent;
  color: transparent;
  padding: 0.5rem;
  border-radius: 100vw;
  display: -ms-grid;
  display: grid;
  place-items: center;
  top: 50%;
  left: var(--position);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  /* z-index: 100; */
}
.result svg {
  position: static;
}

.about {
  position: relative;
}
.about__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
}
.about__bg::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  max-width: 990px;
  width: 100%;
  min-width: 65%;
  content: "";
  background-color: var(--deep-blue);
  clip-path: polygon(0 0, 100% 0, 66% 100%, 0 100%);
  z-index: 2;
}
.about__bg picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.about__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about__container {
  padding-top: 96px;
  padding-bottom: 65px;
  position: relative;
  z-index: 3;
}
.about__content {
  max-width: 790px;
  width: 100%;
}
.about .subtitle {
  margin-top: 5px;
  margin-bottom: 35px;
}
.about .counters-grid {
  display: -ms-grid;
  display: grid;

  grid-template-columns: repeat(3, 1fr);
}
.about .counter-item {
  max-width: 235px;
  margin-bottom: 3.6vw;
}
.about .counter-value {
  font-family: var(--second-family);
  font-size: 100px;
  color: var(--lightblue);
}
.about .counter-label {
  font-size: 18px;
  color: var(--white);
}

/*=============
works
============*/
.works {
  color: var(--white);
}
.works__navigation {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  margin-bottom: 25px;
}
.works__navigation .navigation__button {
  margin-top: -20px;
}
.works__slide picture{
  display: flex;
  aspect-ratio: 1 / 0.722;
  max-width: 100%;
  width: 100%;
}
.works__slide img {
  display: block;
  width: 100%;
  height: 330px;
}
/*=============
section how
============*/
.how {
  background-color: #f3f3f5;
  padding-top: 80px;
  padding-bottom: 100px;
}
.how .section__title, .how .subtitle {
  padding-left: 20px;
}
.how__navigation {
  padding-left: 20px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  margin-bottom: 25px;
}
.how__navigation .navigation__button {
  margin-top: -20px;
}
.how .swiper-wrapper {
  margin-left: 20px;
}

.step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--white);
  clip-path: polygon(0% 0%, 95.57% 0%, 100% 8.23%, 100% 100%, 0% 100%, 0% 0%);
}
.step__img {
  max-width: 453px;
}
.step img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.step__content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 22px 4vw 30px 30px;
}
.step__title {
  margin-bottom: 7px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1/3;
  font-family: var(--second-family);
  font-size: clamp(20PX, 0.9859rem + 1.1268vw, 32PX);
  color: #000;
  text-align: center;
}
.step__title .title-text {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.step__title .step__count {
  margin-right: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: start;
  align-self: flex-start;
  font-family: var(--second-family);
  font-size: clamp(40px, 1.8398rem + 2.8169vw, 70px);
  color: var(--deep-blue);
}
.step__content ul {
  margin-top: 0;
  padding-left: 2.1vw;
}
.step li {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: #000;
}
.step .btn {
  margin-left: 25px;
  margin-top: auto;
  margin-bottom: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.step .btn path {
  fill: #0C2041;
  -webkit-transition: fill 0.28s ease-in-out;
  transition: fill 0.28s ease-in-out;
}
.step .btn:hover path {
  fill: var(--orange);
}

.swiper__container {
  padding-left: max(15px, (100% - var(--content-width)) / 2);
}

.advantages {
  margin-bottom: 54px;
}
.advantages .section__title {
  max-width: 1190px;
  width: 100%;
  margin-bottom: 12px;
}
.advantages__grid {
  margin-top: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.advantages .grid__col {
  width: 50%;
}
.advantages .grid__item {
  margin-bottom: 48px;
  min-height: 143px;
  display: grid;
  grid-template-columns: 143px auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 34px;
  font-size: 18px;
}
.advantages .grid__item-img {
  grid-row: 1 / 3;
  max-width: 143px;
  width: 100%;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: #F3F3F5;
  clip-path: polygon(0% 0%, 68.53% 0%, 100% 32.17%, 100% 100%, 0% 100%, 0% 0%);
  text-align: center;
  color: #A5ACC3;
}
.advantages .grid__item-title {
  margin-bottom: 8px;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: clamp(20px, 0.9859rem + 1.1268vw, 32px);
  color: #000;
}
.grid__item-content {
  grid-column: 2;
}
.advantages .grid__svg {
  max-width: 64px;
}
.advantages .grid__svg svg {
  fill: #A5ACC3;
}

/*+++++++++
baner
__________*/
.baner {
  color: var(--white);
  padding-top: 80px;
  padding-bottom: 96px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 0;
}

.baner::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(12, 32, 65, .8);
  z-index: 1;
}
.baner__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  z-index: 2;
  text-align: center;
}
.baner__title {
  max-width: 1011px;
  margin-bottom: 24px;
  font-family: var(--second-family);
  font-size: clamp(32px, 1.5158rem + 2.0657vw, 54px);
  text-align: center;
  color: var(--white);
}
.baner .subtitle {
  font-size: 20px;
  text-align: center;
  color: var(--white);
}
.baner .show__all {
  margin-top: 36px;
}
.baner .show__all svg {
  fill: #FF6600;
}
.baner .show__all .btn:hover {
  color: var(--deep-blue);
}

/*=============
questions + accordion
============*/
.questions {
  margin-top: 93px;
}
.questions__title {
  max-width: 1012px;
  width: 100%;
  margin-bottom: 16px;
}

.accordion {
  overflow: hidden; /* Важно для корректного отображения границ */
}
.accordion-item {
  text-align: left;
}
.accordion-item:last-child {
  border-bottom: 1px solid #ebedf1;
}
.accordion {
  /* Стили для кнопки-заголовка */
}
.accordion-header {
  padding: 23px 0 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  width: 100%;
  cursor: pointer;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: clamp(18px, 0.993rem + 0.5634vw, 24px);
  line-height: 133%;
  color: #000;
  border-top: 1px solid #ebedf1;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.accordion-header:hover {
  background-color: #f0f0f0;
}
.accordion .header-text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1; /* Позволяет тексту занимать все доступное место */
}
.accordion {
  /* Стили для иконки (стрелки) */
}
.accordion .icon {
  margin-left: 10px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease; /* Плавное вращение */
}
.accordion {
  /* Поворот иконки при активном состоянии */
}
.accordion .accordion-header.active .icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); /* Поворот на 180 градусов (смотрит вверх) */
}
.accordion {
  /* Стили для скрываемого контента */
}
.accordion .accordion-content {
  max-width: 980px;
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  /* Плавный переход для max-height */
  -webkit-transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
.accordion .accordion-content.open {
  /* Открытое состояние: устанавливаем достаточно большое значение */
  /* Важно: max-height должен быть больше ожидаемой высоты контента */
  max-height: 500px;
  padding: 6px 20px;
}
.accordion .accordion-content p {
  margin: 0;
}

.page-id-11 .hero {
  min-height: 61vh;
  /*display: -webkit-box;*/
  /*display: -ms-flexbox;*/
  /*display: flex;*/
  /*-webkit-box-align: center;*/
  /*-ms-flex-align: center;*/
  /*align-items: center;*/
  /*-webkit-box-pack: start;*/
  /*-ms-flex-pack: start;*/
  /*justify-content: start;*/
}
.page-id-11 .hero__bg::before {
  width: 100%;
  left: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.page-id-11 .hero__container {
  width: 100%;
}
.page-id-11 .hero__content {
  max-width: 990px;
  width: 100%;
}
.page-id-11 .hero__content p {
  margin-bottom: 20px;
  line-height: 1.2;
}
.page-id-11 .hero .h1-title {
  /*padding-top: 56px;*/
  margin-bottom: 34px;
}
.post-type-archive .baner {
  margin-bottom: 0;
  background-image: url("../img/categories/baner.jpg");
}
.post-type-archive .baner::before {
  background-color: rgba(243, 243, 245, 0.85);
}
.post-type-archive .baner__title {
  color: var(--deep-blue);
}
.post-type-archive .baner .subtitle {
  color: var(--black);
}

.post-type-archive .baner .show__all {
  margin-top: 36px;
}
.post-type-archive .baner .show__all svg {
  fill: var(--deep-blue);
}
.post-type-archive .baner .show__all .btn:hover {
  color: var(--white);
}
.post-type-archive .baner .show__all .btn:hover svg {
  fill: var(--orange);
}

.categories__list {
  display: -ms-grid;
  display: grid;
  
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.categories__item-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.categories__item-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(207.67deg, rgba(0, 0, 0, 0) 17.2%, rgba(0, 0, 0, 0.5) 88.95%);
}
.categories__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.categories__item-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 36px;
  width: 100%;
  padding-right: 68px;
  padding-left: 34px;
  font-family: var(--second-family);
  font-size: clamp(26px, 1.4049rem + 0.939vw, 36px);
  line-height: 122%;
  color: var(--white);
}

/*=============
service single
============*/
.single-services .hero {
  min-height: 61vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}
.single-services .hero__bg::before {
  width: 100%;
  left: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.single-services .hero__container {
  width: 100%;
}
.single-services .hero__content {
  max-width: 990px;
  width: 100%;
}
.single-services .hero__content p {
  margin-bottom: 20px;
  line-height: 1.2;
}
.single-services .hero .h1-title {
  padding-top: 56px;
  margin-bottom: 34px;
}
.single-project .baner {
  margin-bottom: 0;
  background-image: url("../img/categories/baner.jpg");
}
.single-project .baner::before {
  background-color: rgba(243, 243, 245, 0.85);
}
.single-project .baner__title {
  color: var(--deep-blue);
}
.single-project .baner .subtitle {
  color: var(--black);
}
.single-project .baner .show__all {
  margin-top: 36px;
}
.single-project .baner .show__all svg {
  fill: var(--deep-blue);
}
.single-project .baner .show__all .btn:hover {
  color: var(--white);
}
.single-project .baner .show__all .btn:hover svg {
  fill: var(--orange);
}

article {
  background-color: var(--white);
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 152%;
  color: #000;
}
article h1, article h2 {
  margin-bottom: 20px;
  font-family: var(--second-family);
  font-size: 40px;
  color: var(--deep-blue);
  line-height: 1.34;
}
article p {
  margin-bottom: 8px;
}

.gallery-item {
  margin-bottom: 20px;
}
.gallery-item a {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery__navigation {
  display: none;
}

/*=============
seo text
============*/
.seo-text .seo__container {
  max-height: none;
  -webkit-transition: max-height 0.28s ease-in-out;
  transition: max-height 0.28s ease-in-out;
}
.seo-text::after {
  display: none;
}
.seo-text.over .seo__container {
  max-height: 370px;
  overflow-y: hidden;
  -webkit-transition: max-height 0.28s ease-in-out;
  transition: max-height 0.28s ease-in-out;
}
.seo-text.over {
  position: relative;
}
.seo-text.over::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100px;
  height: 165px;
  background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.seo-text .btn {
  margin-top: 40px;
}

/*=============
Calculator page
============*/
.page-id-15 .hero {
  min-height: 55vh;
  /*display: -webkit-box;*/
  /*display: -ms-flexbox;*/
  /*display: flex;*/
  /*-webkit-box-align: center;*/
  /*-ms-flex-align: center;*/
  /*align-items: center;*/
  /*-webkit-box-pack: start;*/
  /*-ms-flex-pack: start;*/
  /*justify-content: start;*/
}
.page-id-15 .hero__bg::before {
  width: 100%;
  left: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.page-id-15 .hero__container {
  width: 100%;
}
.page-id-15 .hero__content {
  max-width: 990px;
  width: 100%;
}
.page-id-15 .hero__content p {
  margin-bottom: 20px;
  line-height: 1.2;
}
.page-id-15 .hero .h1-title {
  /*padding-top: 26px;*/
  margin-bottom: 34px;
}
.page-id-15 input[type=number] {
  padding: 13px 20px;
  background: #f3f3f5;
  line-height: 25px;
  border: none;
  outline: none;
}
.page-id-15 .seo-text {
  padding-top: 100px;
}

.calc__top {
  font-size: 18px;
  color: #000;
}
.calc__top .col-3 {
  gap: 4.4vw;
}
.calc__top .col {
  max-width: 390px;
}
.calc__top .section__title {
  margin-bottom: 30px;
}
.calc__top .col__number {
  margin-bottom: 5px;
  font-family: var(--second-family);
  font-size: 100px;
  color: var(--lightblue);
}
.calc__top .col__title {
  margin-bottom: 19px;
  font-family: var(--second-family);
  font-size: 24px;
  color: #000;
}

/*=============
Calculator section
============*/
.calculator {
  margin-bottom: 0;
  padding-top: 78px;
  padding-bottom: 120px;
  background-color: #f3f3f5;
  font-size: 16px;
  color: #000;
}
.calculator .section__title {
  margin-bottom: 10px;
}
.calculator .subtitle {
  margin-bottom: 40px;
}
.calculator .calculator__box {
  padding: 40px 43px;
  background-color: #fff;
}
.radio__wrapper .custom-radio {
  position: relative;
}
.radio__wrapper .custom-radio__field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
}
.custom-radio__content {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 8px;
  padding-left: 34px;
  cursor: pointer;
  line-height: 1.6;
}
.custom-radio__content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border: 2px solid #dadae9;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  background: #f3f3f5;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.custom-radio__content::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-position: center;
  background-size: 10px 10px;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.custom-radio__field:checked ~ .custom-radio__content::after {
  opacity: 1;
}
.custom-radio__field:checked ~ .custom-radio__content::before {
  outline: 7px solid var(--blue);
  outline-offset: -7px;
  background: #fff;
}
.custom-radio__field:disabled + .custom-radio__content {
  opacity: 0.4;
  pointer-events: none;
}
.calculator .calculator__col {
  padding-right: 15px;
}
.calculator .calculator__col-title {
  margin-bottom: 18px;
  font-family: var(--second-family);
  font-size: 32px;
  color: #000;
}
.calculator .calculator__col-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 29px;
  height: 100%;
}
.calculator .inputs-title {
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 16px;
  line-height: 158%;
  color: #000;
}
.calculator .result {
  background-color: var(--deep-blue);
  padding: 50px 36px 45px;
  color: var(--white);
  clip-path: polygon(0% 0%, 86.91% 0%, 100% 7.9%, 100% 100%, 0% 100%, 0% 0%);
}
.calculator .result .total {
  margin-bottom: 15px;
  font-weight: 700;
}
.calculator .result__data {
  font-family: var(--second-family);
  font-size: 46px;
}
.calculator .result .btns__box {
  margin-top: auto;
}

/*=============
Portfolio page
============*/
.objects__list > .object__item {
  /*max-height: 655px;*/
}
.object__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 38px;
  background-color: #F3F3F5;
  clip-path: polygon(0% 0%, 96.69% 0%, 100% 9.81%, 100% 100%, 0% 100%, 0% 0%);
}
.object-slider {
  position: relative;
  width: 50%;
  overflow: hidden;
}
.object-slide {
  aspect-ratio: 1 / .7;
}
.object-slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.objects-container .object__item {
  /*max-height: 470px;*/
  /*overflow: clip;*/
}
.object-content {
  width: 50%;
  margin-bottom: 28px;
  padding: 34px 0 38px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 16px;
}
.object-content-top {
  margin-bottom: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  color: var(--white);
  padding-right: 3vw;
}
.object-content .number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding-left: 10px;
  padding-right: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 27px;
  border-radius: 90px;
  background-color: #fff;
  color: var(--black);
}
.object-content .category__name {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 27px;
  border-radius: 90px;
  background: #335dac;
}
.object-content .year {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 27px;
  border-radius: 90px;
  background: #d9b17c;
}
.object-content-text {
  padding-right: 5.5vw;
  
  max-height: 150px;
  overflow-y: auto;
}
.object-content .btn {
  margin-top: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--white);
}
.object-content svg {
  fill: #132E5B;
}
.object__title {
  margin-bottom: 8px;
  padding: 0 18px;
  background: #132e5b;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: clamp(20px, 0.9859rem + 1.1268vw, 32px);
  color: var(--white);
  line-height: 1.35;
}
.object__btns {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  bottom: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  z-index: 2;
}
.object__btns div {
  cursor: pointer;
}
.object__btns div:hover svg {
  fill: var(--orange);
}
.object__btns svg {
  fill: white;
}

.object__item .features-list {
  margin-top: 20px;
  margin-bottom: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 3.6vw;
}
.object-content-text::-webkit-scrollbar-track
{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.object-content-text::-webkit-scrollbar
{
  width: 12px;
  background-color: #F5F5F5;
}

.object-content-text::-webkit-scrollbar-thumb
{
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  background-color: var(--gold1);
}
.object__item .features-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.object__item .features-item img {
  display: inline-block;
  margin-right: 12px;
  max-width: 40px;
}
.object__item .features-item-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.object__item .features-item-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.object__item .features-item .value {
  font-weight: 700;
}
.object__item .zoom {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.4);
  z-index: 2;
}
.object__item .zoom a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0;
}
.object__item .zoom img {
  width: 24px;
  height: 24px;
}

.page-template-default .baner,
.tax-service_category .baner {
  margin-bottom: 0;
  background-image: url("../img/categories/baner.jpg");
}
.page-template-default .baner::before,
.tax-service_category .baner::before {
  background-color: rgba(243, 243, 245, 0.85);
}
.page-template-default .baner__title,
.tax-service_category  .baner__title{
  color: var(--deep-blue);
}
.page-template-default .baner .subtitle,
.tax-service_category .baner .subtitle{
  color: var(--black);
}
.page-template-default .baner .show__all,
.tax-service_category .baner .show__all{
  margin-top: 36px;
}
.page-template-default .baner .show__all svg,
.tax-service_category .baner .show__all svg{
  fill: var(--deep-blue);
}
.page-template-default .baner .show__all .btn:hover,
.tax-service_category .baner .show__all .btn:hover{
  color: var(--white);
}
.page-template-default .baner .show__all .btn:hover svg,
.tax-service_category .baner .show__all .btn:hover svg{
  fill: var(--orange);
}

/*=============
Contacts page
============*/
.contact-data {
  padding-bottom: 100px;
}
.contact-data.col-3 {
  -ms-grid-columns: 1fr 1fr auto;
  grid-template-columns: 1fr 1fr auto;
}
.contact-data a {
  display: block;
}
.data-title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
}

.data-col {
  padding-right: 3vw;
}
.data-col a {
  display: inline-block;
  font-size: 20px;
  line-height: 165%;
  color: var(--white);
}
.data-col .warring {
  max-width: 330px;
}

.warring {
  font-size: 16px;
  line-height: 156%;
  color: #ff1919;
}

.data-email {
  margin-bottom: 20px;
}

.contact-data-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-row: 2;
  grid-row: 2;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4.6vw;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -ms-grid-row-align: end;
  align-self: end;
}
.office p {
  width: max-content;
}
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.wpcf7 {
  max-width: 535px;
  -ms-grid-row-span: 2;
  grid-row: 2 span;
}

form.wpcf7-form label {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
  color: inherit;
}
form.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
form.wpcf7-form .wpcf7-form-control-wrap input, form.wpcf7-form .wpcf7-form-control-wrap textarea {
  display: block;
  padding: 13px 20px;
  width: 100%;
  border: none;
  outline: none;
  border-radius: 0;
  font-size: 16px;
  line-height: 158%;
  background: var(--white);
}
form.wpcf7-form .wpcf7-form-control-wrap input::-webkit-input-placeholder, form.wpcf7-form .wpcf7-form-control-wrap textarea::-webkit-input-placeholder {
  color: #c3c3c3;
}
form.wpcf7-form .wpcf7-form-control-wrap input::-moz-placeholder, form.wpcf7-form .wpcf7-form-control-wrap textarea::-moz-placeholder {
  color: #c3c3c3;
}
form.wpcf7-form .wpcf7-form-control-wrap input:-ms-input-placeholder, form.wpcf7-form .wpcf7-form-control-wrap textarea:-ms-input-placeholder {
  color: #c3c3c3;
}
form.wpcf7-form .wpcf7-form-control-wrap input::-ms-input-placeholder, form.wpcf7-form .wpcf7-form-control-wrap textarea::-ms-input-placeholder {
  color: #c3c3c3;
}
form.wpcf7-form .wpcf7-form-control-wrap input::placeholder, form.wpcf7-form .wpcf7-form-control-wrap textarea::placeholder {
  color: #c3c3c3;
}
form.wpcf7-form .wpcf7-form-control-wrap .wpcf7-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 13px;
  margin-left: 0;
}
form.wpcf7-form .wpcf7-form-control-wrap .wpcf7-list-item input {
  padding: 0;
  margin: 0;
  width: 22px;
  height: 22px;
  line-height: 1;
  font-size: 22px;
}

/* [class^="acceptance-"] {
    display: flex;
    align-items: center;
    gap: 13px;
}
    */
.footer {
  padding: 68px 0 64px;
  color: var(--white);
  font-size: 15px;
  background-color: var(--deep-blue);
}
.footer__top {
  display: -ms-grid;
  display: grid;
  /*-ms-grid-columns: (1fr)[4];*/

  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 40px;
}
.footer .col__contacts li {
  margin-bottom: 18px;
}
.footer .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.footer .logo__text {
  max-width: 85px;
}
.footer .col__services li {
  margin-bottom: 10px;
}
.footer .col__services a {
  text-decoration: underline;
}
.footer .col__pages li {
  margin-bottom: 22px;
}
.footer .col__pages a {
  font-weight: 500;
  font-size: 22px;
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer .copy a {
  display: inline-block;
  margin-left: 30px;
}
.footer .liberty a {
  display: inline-block;
  margin-left: 14px;
}

/*=============
MEdia query
============*/
@media (min-width: 577px) {
  .gallery-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
    height: auto;
  }
  .gallery-grid figure {
    padding: 0;
    margin: 0;
    width: calc(33.3333333333% - 20px);
    height: auto;
  }
}
.pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}
.page-numbers {
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 24px;
  color: #000;
}
@media (min-width: 1291px) {
  .header {
    padding-top: 35px;
  }
  .hero__container {
    max-width: 100%;
  }

  /*.header .btn-menu {*/
  /*  display: none;*/
  /*}*/
}
@media (min-width: 2100px) {
  .hero__container {
    max-width: calc(100% - (92px + 46px)*2);
  }

  /*.header .btn-menu {*/
  /*  display: none;*/
  /*}*/
}

@media (max-width: 1198px) {
  .header .header__nav {
    display: none;
  }
  .header .btn-menu {
    /*margin-right: -20px;*/
    margin-right: 0;
  }
  .footer__top {
    
    grid-template-columns: repeat(2, 1fr);
  }
  .col__contacts,
  .col__pages {
    text-align: right;
  }
  .calculator .result {
    padding: 30px 20px 36px;
  }
  .calculator .calculator__box {
    padding-left: 30px;
    padding-right: 30px;
  }
  .contact-data.col-3 .wpcf7{
    grid-column: 1 / 4;
    grid-row: 2;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .contact-data.col-3 .contact-data-contacts{
    grid-column: 1 / 4;
    grid-row: 3;
  }
  .data-title {
    font-size: 20px;
  }
  .data-col a {
    font-size: 16px;
  }
  .data-col .warring {
    font-size: 12px;
  }
  .hero-contact .h1-title {
    margin-bottom: 32px;
  }
}
@media (max-width: 998px) {
  .hero__bg::before {
    clip-path: none;
  }
  .video-wrap {
    width: 100%;
    float: none;
    aspect-ratio: 0.56;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    display: block;
    padding: 0;
    margin: 0 0 30px 0;
  }
  .video-wrap::after {
    display: none;
  }
  article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .calculator__box.col-3 {
    
    grid-template-columns: repeat(2, 1fr);
  }
  .calculator .result {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
    padding: 50px 36px 45px;
    margin-top: 30px;
    clip-path: polygon(0% 0%, 85.07% 0%, 100% 11.82%, 100% 100%, 0% 100%, 0% 0%);
  }
  .calc__top .col-3 {
    gap: 30px;
  }
  .calculator .calculator__col-title {
    font-size: 24px;
  }
  .object__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    clip-path: none;
  }
  .object-slider,
  .object-content {
    width: 100%;
  }
}
@media (max-width: 867px) {
  .header_form {
    display: none;
  }
  .mobile__nav {
    max-width: 390px;
  }
  .active .burger__line {
    fill: var(--white);
  }
}
@media (max-width: 767px) {
  .graph-modal [data-graph-target=object-slider] .object-content {
    display: none;
  }
  .object-content-top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .category__name {
    margin-top: 14px;
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .object__title {
    padding-left: 0;
    color: var(--black);
    background-color: transparent;
    font-size: 24px;
  }
  .object-content {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 5px;
    font-size: 14px;
  }
  .object-content .btn {
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .header .logo {
    margin-right: 16px;
  }
  .accordion .header-text {
    padding-right: 22px;
  }
  .accordion-content {
    font-size: 14px;
  }
  .accordion-header {
    padding: 16px 0 22px;
  }
  .step {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    clip-path: none;
  }
  .step img {
    -o-object-position: 40% 25%;
    object-position: 40% 25%;
  }
  .step__img {
    max-width: 100%;
    aspect-ratio: 335/190;
  }
  .step__content {
    margin-top: -8.5%;
    padding: 20px;
    background-color: #fff;
    clip-path: polygon(0% 0%, 93% 0%, 100% 8%, 100% 100%, 0% 100%, 0% 0%);
  }
  .how .swiper-wrapper {
    margin-left: 0;
  }
  .baner .subtitle {
    font-size: 16px;
  }
  .advantages__grid {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .advantages .grid__col {
    width: 100%;
  }
  .advantages .grid__item {
    row-gap: 26px;
    /*grid-template-rows: 143px auto;*/
  }
  .grid__item-content {
    grid-column: 1/3;
    grid-row: 2/3;
  }
  .advantages .grid__item-img {
    grid-row: 1 /2;
  }
  .about .counters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section {
    margin-bottom: 60px;
  }
  .swiper__container {
    margin: 0 auto;
    padding: 0 var(--container-offset);
    max-width: var(--container-width);
  }
  .categories__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .calc__top .col-3 {
    
    grid-template-columns: repeat(2, 1fr);
  }
  .calculator .calculator__box {
    padding-top: 29px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .calculator .calculator__col:nth-of-type(2) {
    padding-right: 0;
  }
}
@media (max-width: 600px) {
  :root {
    --container-offset: 20px;
  }
  .hero-contact.hero .h1-title {
    padding-top: 110px;
  }
  .contact-data.col-3 .wpcf7{
    grid-row: 4;
  }
  .contact-data.col-3 .contact-data-contacts{
    grid-row: 3;
  }
  .contact-data-partners {
    grid-row: 2;
    margin-bottom: 33px;
  }
  .footer__top {
    display: block;
  }
  .footer__col {
    margin-bottom: 40px;
  }
  .col__contacts,
  .col__pages {
    text-align: left;
  }
  .footer__bottom {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footer__bottom .liberty {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 40px;
  }
  .footer .copy a {
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }
  .header .btn__request {
    display: none;
  }
  .header .btn-menu {
    margin-left: auto;
  }
  .hero .btns__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
  .header .logo {
    margin-right: 21px;
  }
  .portfolio .section__title {
    padding-top: 50px;
  }
  .services .section__title {
    margin-bottom: 38px;
  }
  .navigation {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    bottom: 100px;
  }
  .services .navigation__button {
    margin-top: 0;
  }
  .show__all {
    margin-top: 105px;
  }
  .portfolio {
    margin-bottom: 0;
    padding-bottom: 65px;
  }
  .portfolio .navigation {
    bottom: 145px;
  } 

  .result {
    padding-top: 50px;
  }
  .section.result {
    margin-bottom: 110px;
  }
  .result .section__title {
    margin-bottom: 18px;
  }
  .about {
    margin-bottom: 0;
  }
  .works {
    padding-top: 70px;
    padding-bottom: 105px;
    margin-bottom: 0;
  }
  .works .subtitle {
    margin-bottom: 40px;
  }
  .works .navigation {
    bottom: 40px;
  }
  .result__navigation {
    bottom: -73px;
    margin-bottom: 0;
  }
  .result__navigation .navigation__button {
    margin-top: 0;
  }
  .advantages .section__title {
    line-height: 1;
  }
  .works__slide img {
    height: 100%;
  }
  .how {
    margin-bottom: 0;
    padding-bottom: 115px;
  }
  .step .btn {
    margin-bottom: 40px;
  }
  .how__navigation {
    bottom: 50px;
    margin-bottom: 0;
  }
  .how__navigation .navigation__button {
    margin-top: 0;
  }
  .works__navigation .navigation__button {
    margin-top: 0;
  }
  .works__navigation {
    margin-bottom: 0;
  }
  .swiper__container-works,
  .services__slider {
    padding-left: max(20px, (100% - var(--content-width)) / 2);
    padding-right: 0;
    margin: 0;
    max-width: 100%;
  }
  .how .subtitle {
    margin-bottom: 32px;
  }
  .advantages {
    padding-top: 62px;
  }
  .about__bg::before {
    clip-path: none;
    min-width: auto;
  }
  .categories__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 576px) {
  .header {
    padding-top: 11px;
  }
  .hero .h1-title {
    padding-top: 138px;
  }
  .main .hero__content {
    font-size: 16px;
    gap: 0;
  }
  .hero__content {
    display: none;
  }
  .page-id-15 .hero__content {
    display: block;
  }
   .hero,
   .page-id-11 .hero,
   .page-id-15 .hero{
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-height: 335px;
  }
   .home .hero {
     min-height: 70vh;
   }
  .page-id-15 .hero {
    margin-bottom: 40px;
  }
  .calc__top .col__number {
    line-height: 1.1;
  }
  .calc__top .section__title {
    margin-bottom: 8px;
  }
  .calc__top .col__title {
    margin-bottom: 13px;
  }
  .calc__top .col-3 {
    display: block;
  }
  .calc__top .col {
    margin-bottom: 10px;
  }
  .calculator {
    padding-top: 56px;
    padding-bottom: 50px;
    margin-bottom: 0;
  }
  .calculator .subtitle {
    margin-bottom: 35px;
  }
  .custom-radio__content {
    font-size: 14px;
  }
  .calculator__box.col-3 {
    display: block;
    padding-bottom: 0;
  }
  .page-id-15 .seo-text {
    padding-top: 50px;
  }
  .hero__content-mobile.visually-hidden {
    position: static;
    display: block;
    overflow: visible;
    margin: 0;
    border: 0;
    margin-bottom: 35px;
    width: 100%;
    height: auto;
    clip: auto;
    font-size: 16px;
    line-height: 1.44;
  }
  .categories__item img {
    aspect-ratio: 335/405;
  }
  .hero .btns__box {
    margin-top: 21px;
  }
  .hero .mouse__box {
    margin-top: 80px;
    padding-bottom: 40px;
  }
  .header__mobile-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .header .mobile__nav .menu {
    gap: 0;
  }
  /*.header__mobile {*/
  /*  padding-left: 20px;*/
  /*}*/
  .header__mobile-wrapper {
    padding-left: 20px;
  }
  .header__mobile .menu-item {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
  .header__mobile a {
    display: block;
    font-weight: 500;
    font-size: 20px;
    line-height: 247%;
    text-transform: capitalize;
    color: var(--white);
  }
  .header__mobile .sub-menu a {
    font-size: 17px;
    font-weight: 400;
  }
  .header__mobile .menu-item-has-children::after {
    top: 32px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: transform .28s ease-in-out;
    transform-origin: center;
  }
  .header__mobile .menu-item-open.menu-item-has-children::after {
    transform: rotate(-180deg);
  }
  .header__mobile .mobile_bottom {
    display: none;
  }
  .header .mobile__nav {
    margin-top: 90px;
  }
  .mobile__top {
    padding-top: 0;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .mobile__top .logo {
    display: none;
  }
  .o-hidden .header__container {
    position: fixed;
    z-index: 51;
  }
  .header .btn-menu {
    /*margin-right: -10px;*/
    margin-right: 0;
    outline: 2px solid #ccc;
    outline-offset: -3px;
  }
  .btn-menu .ham {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header .mobile__social {
    margin-left: 0;
  }
  .about .counters-grid {
    display: block;
  }
  .about .counter-item {
    max-width: 90%;
    margin-bottom: 25px;
  }
  .about__container {
    padding-top: 56px;
    padding-bottom: 45px;
  }
  .gallery__navigation {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: static;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
  }
  .calculator .result {
    padding: 34px 20px 45px;
    margin-left: -20px;
    margin-right: -20px;
  }
  .step__img {
    max-width: 100%;
    aspect-ratio: 335/210;
  }
  .step__content {
    margin-top: -13.5%;
  }
  [data-graph-target=modal-getcost],
  [data-graph-target=modal-getconsultation],
  [data-graph-target=object-request],
  [data-graph-target=modal-consultation],
  [data-graph-target=modal-1],
  [data-graph-target=modal-getprice],
  [data-graph-target=object-request]{
    padding: 20px;
  }
  .graph-modal__container {
    width: 97%;
  }
  [data-graph-target=modal-getcost] .graph-modal__content {
    max-width: 100%;
  }
  .graph-modal__content {
    max-width: 100% !important;
  }
}
@media (min-width: 1199px) and (max-width: 1290px) {
  .header .menu {
    margin-left: 12px;
  }
}
.page__body {
  min-height: 100vh;
  background-color: var(--white);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.37;
  color: var(--black);
}
.page__body.o-hidden {
  overflow: hidden;
}

.site-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 100vw;
  min-height: 100vh;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100vw;
}

.logo svg {
  fill: var(--white);
  max-height: 48px;
  max-width: 92px;
}

.social__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
}
.social__list li {
    display: flex;
    align-items: center;
}

.social__list a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 43px;
  height: 43px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
}
.social__list .telegram {
  background-color: #039BE5;
}
.social__list .viber {
  background-color: #665CAC;
}
.social__list .whatsapp {
  background-color: #2AA81A;
}
.social__list .instagram {
  background-image: url('data:image/svg+xml,<svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M42 21C42 9.40202 32.598 0 21 0C9.40202 0 0 9.40202 0 21C0 32.598 9.40202 42 21 42C32.598 42 42 32.598 42 21Z" fill="url(%23paint0_linear_271_1962)" /><path opacity="0.1" d="M36.8053 7.18427C33.7437 12.8045 29.4138 18.6016 24.0036 24.0119C18.5933 29.4222 12.7962 33.7437 7.18421 36.8053C6.83237 36.4995 6.49066 36.1808 6.15908 35.8493C4.15484 33.9119 2.55636 31.595 1.45684 29.0335C0.357318 26.472 -0.221236 23.7172 -0.245088 20.9298C-0.26894 18.1424 0.262387 15.3781 1.31791 12.7982C2.37344 10.2183 3.93204 7.87429 5.90283 5.90295C7.87362 3.93161 10.2172 2.37236 12.7968 1.31611C15.3764 0.259867 18.1406 -0.272232 20.928 -0.249158C23.7154 -0.226085 26.4703 0.351701 29.0321 1.45051C31.5939 2.54931 33.9113 4.14715 35.8492 6.15085C36.1808 6.48242 36.4995 6.8269 36.8053 7.18427Z" fill="white" /><defs><linearGradient id="paint0_linear_271_1962" x1="6.15079" y1="6.15079" x2="35.8492" y2="35.8492" gradientUnits="userSpaceOnUse"><stop stop-color="%23FAE100" /><stop offset="0.15" stop-color="%23FCB720" /><stop offset="0.3" stop-color="%23FF7950" /><stop offset="0.5" stop-color="%23FF1C74" /><stop offset="1" stop-color="%236C1CD1" /></linearGradient></defs></svg>');
  background-repeat: no-repeat;
  background-position: center;
}

.subtitle {
  font-size: clamp(16px, 0.912rem + 0.3756vw, 20px);
  color: #000;
}

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

.show-more-text {
  display: none;
  color: var(--black);
  -webkit-transition: color 0.28s ease-in-out, fill 0.28s ease-in-out;
  transition: color 0.28s ease-in-out, fill 0.28s ease-in-out;
}
.show-more-text path {
  fill: #A5ACC3;
}
.show-more-text:hover {
  color: var(--white);
}
.show-more-text:hover path {
  fill: var(--orange);
}

.active.show-more-text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.col-3 {
  display: -ms-grid;
  display: grid;

  grid-template-columns: repeat(3, 1fr);
}

.warring {
  font-size: 16px;
  line-height: 156%;
  color: #ff1919;
}/*# sourceMappingURL=main.css.map */
