:root {
  --scrollbarWidth: 17px;
  --body-width: min( calc(100vw - var(--scrollbarWidth)), 1920px );
  --content-width: 1710px;
  --side-width: calc( ( var(--body-width) - var(--content-width) + 30px ) / 2 );
}

@font-face {
  font-family: "Manrope";
  font-weight: 200;
  font-style: normal;
  font-display: swap;
  src: local("Manrope"), url("../fonts/Manrope-ExtraLight.woff2") format("woff2"), url("../fonts/Manrope-ExtraLight.woff") format("woff");
}
@font-face {
  font-family: "Manrope";
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: local("Manrope"), url("../fonts/Manrope-Light.woff2") format("woff2"), url("../fonts/Manrope-Light.woff") format("woff");
}
@font-face {
  font-family: "Manrope";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: local("Manrope"), url("../fonts/Manrope-Regular.woff2") format("woff2"), url("../fonts/Manrope-Regular.woff") format("woff");
}
@font-face {
  font-family: "Manrope";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: local("Manrope"), url("../fonts/Manrope-Medium.woff2") format("woff2"), url("../fonts/Manrope-Medium.woff") format("woff");
}
@font-face {
  font-family: "Manrope";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: local("Manrope"), url("../fonts/Manrope-SemiBold.woff2") format("woff2"), url("../fonts/Manrope-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Manrope";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: local("Manrope"), url("../fonts/Manrope-Bold.woff2") format("woff2"), url("../fonts/Manrope-Bold.woff") format("woff");
}
@font-face {
  font-family: "Days One";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: local("Days One"), url("../fonts/DaysOne-Regular.woff2") format("woff2"), url("../fonts/DaysOne-Regular.woff") format("woff");
}
/* ********************
 * * Lark.sass.mini v3.0.0
 * * Description: CSS reset and adaptive layout
 * * Author: Dima Boro
 * * LastUpd: 06.02.2022
 * ******************** */
* {
  outline: none;
  border: 0;
}

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

input, textarea, select, pre, blockquote, button {
  font: inherit;
  background: transparent;
}

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

textarea {
  resize: none;
}

:focus {
  outline: 0;
}

[hidden] {
  display: none;
}

[draggable=false] {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

img, svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

a {
  color: currentColor;
}

a, a:hover {
  text-decoration: none;
}

li {
  list-style: none;
}

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

button {
  cursor: pointer;
}

.preload * {
  transition: none !important;
}

/* ========= General ========= */
::-moz-selection {
  background: #3B5F4E;
  color: #fff;
}
::selection {
  background: #3B5F4E;
  color: #fff;
}

body, html {
  scroll-behavior: smooth;
}

html {
  touch-action: manipulation;
  overflow-x: hidden;
}
html.noscroll {
  overflow: hidden !important;
  padding-right: var(--scrollbarWidth);
}

body {
  font: 400 16px/1.5 "Manrope", sans-serif;
  color: #2A2C32;
  background: #f9f9f9;
}

.wrapper {
  position: relative;
  margin: 0 auto;
  background: #fff;
  width: 100%;
}

[class*=-box] {
  position: relative;
}

a, .a {
  transition: color 0.15s;
  text-decoration: none;
  color: currentColor;
  cursor: pointer;
}
a:hover, .a:hover {
  text-decoration: none;
  color: #3B5F4E;
}

.alt-a, .l-content a,
a.alt-a {
  color: #4388D2;
  text-decoration: underline;
  text-decoration-color: #D4E2F0;
  text-underline-offset: 7px;
  transition: 0.2s;
}
.alt-a:hover, .l-content a:hover,
a.alt-a:hover {
  color: #4388D2;
  text-decoration-color: #4388D2;
}

.color, .primary {
  color: #3B5F4E;
}

.secondary {
  color: #4388D2;
}

.h1, .h2, .h3, .h4, .h5, .h6, .h, .price-el {
  font-family: "Days One";
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.33;
}

.h1 {
  font-size: 72px;
  line-height: 131%;
}

.h2 {
  font-size: 58px;
  line-height: 1.21;
}

.h3 {
  font-size: 30px;
  line-height: 1.33;
}

.h4 {
  font-size: 24px;
  line-height: 1.5;
}

.h5 {
  font-size: 18px;
}

.h6 {
  font-size: 16px;
}

p, .p {
  line-height: 1.5;
}

b, strong {
  font-weight: 600;
}

img, svg {
  pointer-events: none;
}

.dotted-underline {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.3333333333), rgba(255, 255, 255, 0.3333333333) 50%, transparent 50%, transparent 100%);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  transition: background-size 0.5s ease-in-out, background-position 0.5s ease-in-out;
  background-position: 100% 97%, 0 97%;
}

.text {
  line-height: 162%;
}
.text p {
  white-space: pre-line;
}
.text p:not(:last-child) {
  margin-bottom: 2em;
}
.text img {
  margin-top: 17px;
  margin-bottom: 10px;
}
.text ul {
  margin-top: -0.45em;
  margin-bottom: 1.5em;
}
.text ul li {
  display: flex;
}
.text ul li:not(:last-child) {
  margin-bottom: 1.15em;
}
.text ul li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 19px;
  margin-right: 24px;
  width: 12px;
  height: 12px;
  background: #3B5F4E;
  border-radius: 50%;
}
.text .tac {
  text-align: center;
}

.wow {
  visibility: hidden;
}

:root {
  --btn-height: 86px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  flex: 0 0 auto;
  height: 100%;
  color: #fff !important;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.389;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.2s;
  cursor: pointer;
  padding: 17px 22px 15px 32px;
  height: var(--btn-height);
  max-height: var(--btn-height);
  background: #3B5F4E;
}
.btn:hover {
  background: rgb(49.2305194805, 79.2694805195, 65.0844155844);
}
.btn.with-arrow {
  background-image: url(../images/icons/arrow-45.svg);
  background-position: calc(100% - 22px) 17px;
  background-repeat: no-repeat;
}
.btn.with-subtext .subtext {
  position: absolute;
  top: 17px;
  right: 30px;
  font-size: 12px;
}

.btn-alt:not(:hover) {
  background-color: transparent;
  box-shadow: inset 0 0 0 1px #3B5F4E;
  color: #3B5F4E !important;
}
.btn-alt:not(:hover).with-arrow {
  background-image: url(../images/icons/arrow-45-green.svg);
}

.btn-white {
  box-shadow: inset 0 0 0 1px #fff;
}
.btn-white:not(:hover) {
  background-color: #fff !important;
  color: #3B5F4E !important;
}
.btn-white:not(:hover).with-arrow {
  background-image: url(../images/icons/arrow-45-green.svg);
}

.btn-alt-white {
  box-shadow: inset 0 0 0 1px #fff;
}
.btn-alt-white:not(:hover) {
  background-color: transparent;
  color: #fff !important;
}
.btn-alt-white:not(:hover).with-arrow {
  background-image: url(../images/icons/arrow-45.svg);
}

.btn-prev.with-arrow:not(:hover) {
  background-position-y: 23px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='11' viewBox='0 0 24 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.9367 6.45636L6.02256 9.54222C6.02256 9.54222 6.08885 9.61072 6.13194 9.67922C6.37114 10.0598 6.19657 10.6399 5.769 10.8167C5.51322 10.9233 5.2011 10.8796 4.98289 10.7056C4.95251 10.6819 4.94588 10.6741 4.91771 10.6471L0.498289 6.22766C0.487793 6.21716 0.478402 6.20667 0.467905 6.19617C0.442494 6.16634 0.435865 6.15971 0.413768 6.12767C0.219314 5.85477 0.226494 5.45537 0.439731 5.18799C0.464038 5.15816 0.47122 5.15098 0.498289 5.1228L4.91771 0.703388C5.29336 0.34873 5.98499 0.457006 6.19215 0.956952C6.29767 1.21273 6.25458 1.5254 6.08112 1.74306C6.05626 1.77344 6.04963 1.78007 6.02256 1.80824L2.9367 4.8941L23.1489 4.8941C23.2064 4.90073 23.266 4.90073 23.3224 4.91399C23.7731 5.01674 24.0687 5.5653 23.8527 6.01442C23.7505 6.226 23.5516 6.3851 23.3229 6.43703C23.2655 6.45029 23.2069 6.45029 23.1484 6.45692L2.9367 6.45636V6.45636Z' fill='%233B5F4E'/%3E%3C/svg%3E");
}

.btn-prev.with-arrow:hover {
  background-position-y: 23px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='11' viewBox='0 0 24 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.9367 6.45636L6.02256 9.54222C6.02256 9.54222 6.08885 9.61072 6.13194 9.67922C6.37114 10.0598 6.19657 10.6399 5.769 10.8167C5.51322 10.9233 5.2011 10.8796 4.98289 10.7056C4.95251 10.6819 4.94588 10.6741 4.91771 10.6471L0.498289 6.22766C0.487793 6.21716 0.478402 6.20667 0.467905 6.19617C0.442494 6.16634 0.435865 6.15971 0.413768 6.12767C0.219314 5.85477 0.226494 5.45537 0.439731 5.18799C0.464038 5.15816 0.47122 5.15098 0.498289 5.1228L4.91771 0.703388C5.29336 0.34873 5.98499 0.457006 6.19215 0.956952C6.29767 1.21273 6.25458 1.5254 6.08112 1.74306C6.05626 1.77344 6.04963 1.78007 6.02256 1.80824L2.9367 4.8941L23.1489 4.8941C23.2064 4.90073 23.266 4.90073 23.3224 4.91399C23.7731 5.01674 24.0687 5.5653 23.8527 6.01442C23.7505 6.226 23.5516 6.3851 23.3229 6.43703C23.2655 6.45029 23.2069 6.45029 23.1484 6.45692L2.9367 6.45636V6.45636Z' fill='white'/%3E%3C/svg%3E");
}

.btn-next.with-arrow,
.btn-next.with-arrow:hover {
  background-position-y: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M27.2556 16.889L24.166 13.8069C24.166 13.8069 24.0996 13.7384 24.0564 13.67C23.8168 13.2897 23.9906 12.7094 24.418 12.5321C24.6736 12.4252 24.9858 12.4684 25.2042 12.6422C25.2346 12.6659 25.2413 12.6736 25.2695 12.7007L29.6943 17.1147C29.7048 17.1252 29.7142 17.1357 29.7247 17.1461C29.7501 17.1759 29.7568 17.1826 29.7789 17.2146C29.9737 17.4872 29.967 17.8867 29.7541 18.1543C29.7298 18.1841 29.7226 18.1913 29.6956 18.2195L25.2816 22.6443C24.9064 22.9994 24.2146 22.892 24.0068 22.3923C23.901 22.1367 23.9437 21.824 24.1169 21.6061C24.1417 21.5757 24.1483 21.569 24.1754 21.5408L27.2575 18.4512L7.04528 18.4758C6.98782 18.4692 6.92816 18.4693 6.8718 18.4561C6.42089 18.3539 6.12468 17.8057 6.34013 17.3563C6.44207 17.1446 6.64075 16.9853 6.86939 16.9331C6.92683 16.9198 6.98539 16.9197 7.04393 16.913L27.2556 16.889Z' fill='white'/%3E%3C/svg%3E");
}

.form-title {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1;
  text-align: left;
}

.form-input {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  width: 100%;
}
.form-input input, .form-input textarea {
  display: block;
  padding: 0 45px 4px 25px;
  height: 60px;
  width: 100%;
  background: transparent;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: currentColor;
  border-bottom: 1px solid #DADADB;
  transition: 0.2s;
}
.form-input input::-moz-placeholder, .form-input textarea::-moz-placeholder {
  color: #777;
}
.form-input input::placeholder, .form-input textarea::placeholder {
  color: #777;
}
.form-input input:focus, .form-input textarea:focus {
  border-color: #3B5F4E;
}
.form-input input:focus ~ .icon, .form-input textarea:focus ~ .icon {
  color: rgba(59, 95, 78, 0.7);
}
.form-input textarea {
  min-height: 153px;
}
.form-input.invalid input:not(:focus) {
  left: 0;
  right: 0;
  opacity: 1;
  border-color: #FF2424;
}
.form-input.valid::after {
  opacity: 1;
}
.form-input .icon {
  position: absolute;
  right: 19px;
  margin-top: -5px;
  transition: color 0.2s;
  color: #DADBDC;
}
.form-input.form-white .icon {
  color: rgba(255, 255, 255, 0.4666666667);
}
.form-input.form-white input, .form-input.form-white textarea {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.form-input.form-white input::-moz-placeholder, .form-input.form-white textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.form-input.form-white input::placeholder, .form-input.form-white textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.form-input.form-white input:focus, .form-input.form-white textarea:focus {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.form-input.form-white input:focus ~ .icon, .form-input.form-white textarea:focus ~ .icon {
  color: #fff;
}

.form-file {
  padding: 0 45px 4px 25px;
  height: 60px;
  width: 100%;
  font-size: 16px;
  border-bottom: 1px solid #DADADB;
  cursor: pointer;
}
.form-file:not(.valid) input[type=file] {
  display: none;
}
.form-file.valid span {
  display: none;
}
.form-file input[type=file] {
  padding: 0;
  width: auto;
  max-width: 100%;
  font-size: 12px;
  opacity: 1;
  line-height: 1;
  pointer-events: none;
  height: auto;
  border: 0;
}
.form-file input[type=file]::-webkit-file-upload-button, .form-file input[type=file]::file-selector-button {
  display: none;
}

.form-input input:focus ~ .options-list {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  visibility: visible;
}
.form-input input:focus ~ .options-list:not(:first-child)::after {
  opacity: 1;
}
.form-input .options-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: grid;
  background: #fff;
  border: 1px solid #DADDDE;
  max-height: 370px;
  overflow-y: auto;
  visibility: hidden;
  transition: 0.2s;
  cursor: pointer;
  z-index: 20;
}
.form-input .options-list .col-value:not(.hidden) {
  display: flex;
  min-height: 40px;
}
.form-input .col-value {
  display: flex;
  align-items: center;
  min-height: inherit;
  transition: background 0.2s;
  line-height: 1.2;
}
.form-input .col-value:hover {
  background: #f7f7f7;
}
.form-input .col-value {
  position: relative;
  padding: 5px 16px;
  width: 100%;
}
.form-input .col-value:not(.active), .form-input .col-value.hidden {
  display: none;
}
.form-input .col-value:not(:first-child)::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 16px;
  right: 16px;
  border-top: 1px solid #EBEEEF;
  opacity: 0;
}

.form-politic {
  margin-top: 17px;
  font-size: 13px;
  text-align: center;
  line-height: 1.38461;
}

.slick-general {
  --gap: 48px;
  margin: 0 calc(var(--gap) / 2 * -1);
}
.slick-general.slick-slider {
  display: flex;
  align-items: center;
}
.slick-general.slick-outside .slick-list {
  overflow: visible;
}
.slick-general .slick-list {
  max-width: 100%;
  width: 100%;
}
.slick-general .slick-track {
  display: flex;
  align-items: stretch;
}
.slick-general .slick-slide {
  margin: 0 calc(var(--gap) / 2);
  height: auto;
}
.slick-general:not(.slick-initialized) {
  visibility: hidden;
}

.sl-arrows {
  display: flex;
  height: 89px;
}
.sl-arrows .sl-arrow {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  color: #8B8B8B;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.sl-arrows .sl-arrow:hover {
  background: rgba(187, 187, 187, 0.0666666667);
}
.sl-arrows .sl-arrow::before {
  content: url("../images/icons/arrow-right-gray.svg");
  padding-left: 22px;
  height: 33px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.sl-arrows .sl-prev {
  border-right: 1px solid #ECECEC;
  padding: 0 48px 0 39px;
}
.sl-arrows .sl-prev::before {
  transform: scaleX(-1);
}
.sl-arrows .sl-next {
  padding: 0 39px 0 48px;
  flex-direction: row-reverse;
}
.sl-arrows .slick-disabled {
  pointer-events: none;
  color: rgba(139, 139, 139, 0.1);
}
.sl-arrows .slick-disabled::before {
  opacity: 0.1;
}

.tabs-here [data-tab-name] {
  cursor: pointer;
}
.tabs-here [data-tab-name]:not(.active) {
  display: none;
}
.tabs-here [data-tab-content]:not(.active) {
  display: none;
}

.tabs-list {
  display: flex;
  align-items: center;
}
.tabs-list > span[data-tab-name], .tabs-list > span {
  display: flex;
  margin-right: 50px;
  font-weight: 700;
  transition: color 0.2s;
}
.tabs-list > span[data-tab-name]:not(.active), .tabs-list > span:not(.active) {
  display: flex;
}
.tabs-list > span[data-tab-name]:hover, .tabs-list > span[data-tab-name].active, .tabs-list > span:hover, .tabs-list > span.active {
  color: #3B5F4E;
}
.tabs-list > [data-tab-name].btn, .tabs-list > .btn {
  display: flex;
  margin-right: 10px;
}
.tabs-list > [data-tab-name].btn:not(:hover), .tabs-list > .btn:not(:hover) {
  border-color: #DADDDE;
}
.tabs-list > [data-tab-name].btn:not(:hover).active, .tabs-list > .btn:not(:hover).active {
  color: #3B5F4E;
  border-color: #4388D2;
}

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

.c-mini {
  --content-width: 1470px;
}

.box-middle-row {
  margin: 36px 0 46px;
  border: 1px solid #ECECEC;
  border-left: none;
  border-right: none;
}
.box-middle-row .bm-title {
  display: flex;
  justify-content: space-between;
}
.box-middle-row .bm-title > *:first-child {
  border-right: 1px solid #ECECEC;
}
.box-middle-row .bm-link {
  padding: 0 48px;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #3B5F4E;
  transition: background 0.2s;
}
.box-middle-row .bm-link:hover {
  background: rgba(187, 187, 187, 0.0666666667);
}
.box-middle-row .bm-link:first-child {
  margin-left: -48px;
}
.box-middle-row .bm-link .icon {
  margin-left: 30px;
  flex-shrink: 0;
}

.subtitle {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.3888;
  color: #8B8B8B;
}

.close-button {
  display: inline-flex;
  align-items: center;
  height: var(--header-height);
  color: #8B8B8B;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 3px solid #3B5F4E;
  margin-bottom: -1px;
  transition: color 0.2s, border 0.2s;
}
.close-button .icon {
  margin-left: 8px;
  margin-right: 21px;
}
.close-button .icon line {
  transition: stroke 0.2s;
}
.close-button:hover {
  color: #3B5F4E;
}
.close-button:hover line {
  stroke: #3B5F4E;
}

.price-el {
  display: flex;
  align-items: baseline;
  font-size: 12px;
}
.price-el .price-from {
  margin-right: 0.8em;
  letter-spacing: inherit;
}
.price-el .price-int {
  font-size: 2em;
  letter-spacing: inherit;
}
.price-el .price-rub {
  margin-left: 0.7em;
}

.cover-image, .social_previews-box .sp-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}

.l-content {
  font-size: 14px;
}
.l-content .l-title {
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 700;
  color: #8B8B8B;
  text-transform: uppercase;
}
.l-content .l-text {
  color: #333;
}
.l-content .l-sub {
  margin-top: 5px;
  font-size: 10px;
  line-height: 1.5;
}
.l-content .l-phones {
  max-width: 151px;
}
.l-content .l-phones .l-text:not(:last-child) {
  margin-bottom: 21px;
  padding-bottom: 17px;
  border-bottom: 1px solid #ECECEC;
}
.l-content .l-social {
  display: flex;
}
.l-content .l-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: 1px solid #ECECEC;
  transition: background 0.2s;
}
.l-content .l-social a:not(:last-child) {
  margin-right: 8px;
}
.l-content .l-social a:hover {
  background: #ECECEC;
}

.breadcrumbs {
  padding: 54px 0 12px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #8B8B8B;
}
.breadcrumbs .b-icon {
  margin-right: 15px;
  flex-shrink: 0;
}
.breadcrumbs .b-delimetr {
  margin: 0 10px;
}

.custom-scroll::-webkit-scrollbar-thumb {
  background: #3B5F4E;
  background-clip: content-box;
  -webkit-transition: background 0.25s;
  transition: background 0.25s;
}
.custom-scroll::-webkit-scrollbar-track {
  background: #272727;
}
.custom-scroll::-webkit-scrollbar {
  width: 20px;
  height: 20px;
  -webkit-appearance: none;
}
.custom-scroll::-webkit-scrollbar-corner {
  background: transparent;
}

@keyframes round {
  0% {
    transform: none;
  }
  100% {
    transform: rotate(360deg);
  }
}
.popup-boxes > .popup:not(.active) {
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}
.popup-boxes > .popup:not(.active) .content-element {
  opacity: 0;
}

.popup {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  transition: opacity 0.5s;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 700;
  padding: 0;
  display: flex;
}
.popup .close-popup {
  cursor: pointer;
}
.popup .empty-space {
  position: absolute;
  top: 0;
  left: -100vw;
  right: 0;
  bottom: 0;
}
.popup .container {
  position: relative;
  margin: auto;
}
.popup .form-title {
  font-size: 12px;
}
.popup .form-politic {
  text-align: left;
  font-size: 12px;
  color: #8B8B8B;
  line-height: 1.75;
}

.popup-right {
  background: rgba(0, 0, 0, 0.1);
}
.popup-right:not(.active) .content-element {
  transform: translateX(100%);
}
.popup-right .content-wrapper {
  margin-left: auto;
}
.popup-right .content-element {
  position: relative;
  padding: 0 60px 60px;
  max-width: 477px;
  min-height: 100vh;
  width: 100%;
  background: #fff;
  transition: opacity 0.4s, transform 0.5s;
  overflow: hidden;
}
.popup-right .close-button {
  padding-top: 5px;
  margin-bottom: 14px;
}
.popup-right .close-button .icon {
  margin-left: 0;
}
.popup-right .close-button:not(:hover) {
  border-color: transparent;
}
.popup-right .h-subtitle {
  margin: 11px 0 37px;
  color: #8B8B8B;
  line-height: 1.5625;
}
.popup-right .btn {
  margin-top: 16px;
  margin-bottom: 8px;
  width: 100%;
}

@media (min-width: 1750px) {
  .popup-file .form {
    margin-top: -15px;
  }
}
.popup-thanks .plane {
  margin-top: 8px;
  margin-left: -60px;
  margin-bottom: 133px;
}
.popup-thanks .btn {
  margin-top: 143px;
  background-image: url(../images/icons/btn-like.svg);
}

.popup-big .content-wrapper {
  width: 100%;
}
.popup-big .content-element {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  background: #F8F8F8;
  transition: opacity 0.3s;
}
.popup-big .close-title {
  background: #fff;
  border-bottom: 1px solid #E4E4E4;
}

.popup-menu .sub {
  font-size: 0.615em;
  color: #8B8B8B;
  vertical-align: super;
}
.popup-menu .menu-content {
  padding: 112px 0 120px;
}
.popup-menu .menu-content .container {
  display: flex;
  justify-content: space-between;
}
.popup-menu .left-col {
  padding-top: 5px;
  max-width: 240px;
}
.popup-menu .left-col .l-phones a:not(:hover) {
  text-decoration-color: rgba(255, 255, 255, 0);
}
.popup-menu .left-col .l-item:not(:last-child) {
  margin-bottom: 38px;
}
.popup-menu .middle-col,
.popup-menu .right-col {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.popup-menu .middle-col {
  max-width: 357px;
}
.popup-menu .middle-col .btn {
  margin-top: auto;
}
.popup-menu .right-col {
  max-width: 738px;
}
.popup-menu .big-title {
  margin-bottom: 10px;
}
.popup-menu .b-subtitle {
  display: inline-block;
  margin: 14px 0 6px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  color: #8B8B8B;
}
.popup-menu .b-line {
  margin: 18px 0 25px;
  height: 1px;
  width: 100%;
  background: #ECECEC;
}
.popup-menu .b-item {
  margin-bottom: 60px;
}
.popup-menu .b-item ul {
  display: flex;
  flex-wrap: wrap;
}
.popup-menu .b-item ul li {
  margin-right: 32px;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 500;
}
.popup-menu .b-item ul li:last-child {
  margin-right: 0;
}
.popup-menu .b-extra {
  margin-top: auto;
  margin-bottom: 34px;
}
.popup-menu .b-extra ul {
  justify-content: space-between;
}
.popup-menu .btns-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}
@media (min-width: 1750px) {
  .popup-menu .middle-col {
    margin-right: 108px;
  }
}

.popup-quiz .quiz-content {
  padding: 107px 0;
}
@media (min-width: 1300px) {
  .popup-quiz .quiz-content .container {
    max-width: 1030px;
  }
}
.popup-quiz .quiz-stages-content {
  display: none;
}
.popup-quiz:not(.final) .quiz-final {
  display: none;
}
.popup-quiz:not(.final) .quiz-stages-content {
  display: block;
}
.popup-quiz .top-row {
  text-align: center;
}
.popup-quiz .h-subtitle {
  color: #8B8B8B;
  margin: 11px 0 35px;
}
.popup-quiz .q-title {
  margin-bottom: 13px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.popup-quiz .q-title .sub {
  margin-right: 0.2em;
  font-size: 0.615em;
  vertical-align: super;
}
.popup-quiz .q-title .mini {
  font-size: 14px;
  color: #8B8B8B;
}
.popup-quiz .quiz-variants {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 auto;
  min-height: 215px;
}
.popup-quiz .quiz-item {
  margin: 12px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 30px 33px;
  border: 1px solid #E5E9E7;
  max-width: 287px;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
}
.popup-quiz .quiz-item::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: #fff;
  transition: 0.2s;
}
.popup-quiz .quiz-item.active .circle {
  background-color: #3B5F4E;
  background-image: url(../images/icons/check-white.svg);
}
.popup-quiz .quiz-item:hover::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.popup-quiz .quiz-item input {
  display: none;
}
.popup-quiz .quiz-item input[type=checkbox] ~ .circle {
  border-radius: 0;
}
.popup-quiz .quiz-item span {
  position: relative;
}
.popup-quiz .quiz-item .circle {
  margin-right: 15px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #F8F8F8 no-repeat 50%;
  transition: background 0.2s;
}
.popup-quiz .quiz-step.active:not(.allowed) ~ .btns-row .btn-next {
  opacity: 0.7;
  pointer-events: none;
}
.popup-quiz .quiz-step:not(.active) {
  display: none;
}
.popup-quiz .quiz-step-1.active ~ .btns-row .btn-prev {
  visibility: hidden;
}
.popup-quiz .btns-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 75px auto 0;
  max-width: 738px;
}
.popup-quiz .quiz-final {
  background: url("../images/main/popup-thanks.png") no-repeat 68% 85px;
  flex: 1;
}
.popup-quiz .quiz-final .container {
  display: grid;
  grid-template-columns: 703fr 379fr;
  gap: 70px;
}
@media (min-width: 1750px) {
  .popup-quiz .quiz-final .container {
    max-width: 1182px;
  }
}
@media (min-width: 1300px) {
  .popup-quiz .quiz-final .container {
    max-width: 1010px;
  }
}
.popup-quiz .quiz-final .right-side {
  display: flex;
  flex-direction: column;
}
.popup-quiz .quiz-final .logo-img {
  margin: 13px 7px 129px auto;
  max-width: 57px;
}
.popup-quiz .quiz-final .rs-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 22px;
  line-height: 1.388;
  letter-spacing: 0.02em;
}
.popup-quiz .quiz-final .btn {
  margin-bottom: 8px;
  width: 100%;
  max-width: 357px;
}

:root {
  --header-height: 108px;
}

.wrapper {
  padding-top: var(--header-height);
}

.header-box {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9333333333);
  z-index: 10;
  transition: background 0.2s;
}
.header-box:hover {
  background: #fff;
}
.header-box::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: #E4E4E4;
}
.header-box .container {
  display: flex;
  align-items: center;
  height: var(--header-height);
}
.header-box .hamburger {
  margin-right: 41px;
  font-size: 18px;
  font-weight: 500;
  color: #8B8B8B;
  cursor: pointer;
  transition: color 0.2s;
}
.header-box .hamburger:hover {
  color: #3B5F4E;
}
.header-box .hamburger:hover line {
  stroke: #3B5F4E;
}
.header-box .hamburger .icon {
  margin-right: 13px;
}
.header-box .hamburger .icon line {
  transition: stroke 0.2s;
}
.header-box .menu-list {
  display: flex;
  align-items: center;
}
.header-box .menu-item {
  position: relative;
  height: var(--header-height);
  display: flex;
  align-items: center;
  padding: 0 32px;
  transition: 0.2s color;
}
.header-box .menu-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 2px solid #3B5F4E;
  opacity: 0;
  transition: 0.2s opacity;
}
.header-box .menu-item:hover {
  color: #3B5F4E;
}
.header-box .menu-item:hover::before {
  opacity: 1;
}
.header-box .menu-item:hover .m-item-sub-menu {
  opacity: 1;
  visibility: visible;
  z-index: 3;
}
.header-box .m-name {
  max-width: 115px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.333;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
}
.header-box .m-item-sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  background: #F8F8F8;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}
.header-box .mis-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 75px;
  padding: 0 40px;
  min-width: 333px;
  transition: 0.2s;
}
.header-box .mis-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: -1px;
  height: 1px;
  background: #ECECEC;
}
.header-box .mis-item:hover {
  background: #3B5F4E;
  color: #fff;
}
.header-box .mis-item:hover::before {
  opacity: 1;
}
.header-box .mis-item::before {
  position: absolute;
  content: url(../images/icons/arrow-45.svg);
  top: 11px;
  right: 20px;
  opacity: 0;
  transition: opacity 0.2s;
}
.header-box .mis-item .int {
  margin-left: 3px;
  font-size: 0.615em;
  color: #9C9DA0;
  vertical-align: super;
}
.header-box .logo {
  margin: auto;
}
.header-box .logo .logo-img {
  max-width: 113px;
}
.header-box .search-icon {
  cursor: pointer;
}
.header-box .search-icon path {
  transition: 0.2s;
}
.header-box .search-icon:hover path {
  fill: #3B5F4E;
}
.header-box .phone {
  margin-left: 34px;
  margin-right: 44px;
  font-size: 18px;
  font-weight: 500;
}
.header-box .btn {
  margin-bottom: auto;
  width: 100%;
  max-width: 357px;
}
.header-box.search-active .container {
  display: none;
}
.header-box.search-active .search-container {
  display: flex;
}
.header-box .search-container {
  display: none;
  justify-content: space-between;
}
.header-box .search-container .search-input {
  width: 100%;
  height: 100%;
  font-weight: 500;
  transition: 0.2s;
}
.header-box .search-container .search-input::-moz-placeholder {
  color: #8B8B8B;
}
.header-box .search-container .search-input::placeholder {
  color: #8B8B8B;
}
.header-box .search-container .s-btn {
  flex-shrink: 0;
}

@media (min-width: 1300px) {
  .header-box .m-name {
    padding-top: 5px;
  }
  .header-box .logo {
    padding-top: 4px;
  }
  .header-box .logo-img {
    margin-right: 32px;
  }
  .header-box .search-icon {
    padding-top: 8px;
  }
  .header-box .phone {
    padding-top: 8px;
  }
}
.home-box {
  overflow: hidden;
}
.home-box::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: #3B5F4E url("../images/main/home-bg.png") no-repeat 50% 50%;
  background-size: cover;
}
.home-box .grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
}
.home-box .grid .s {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  transition: 0.2s;
  backdrop-filter: blur(8px);
}
.home-box .grid .s::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(228, 228, 228, 0.25);
  border-right: none;
  border-bottom: none;
}
.home-box .grid .s.w {
  background: #fff;
}
.home-box .grid .s.hovered {
  backdrop-filter: none;
  background: rgba(255, 255, 255, 0);
}
.home-box.white-hovered .h1 {
  color: #fff;
}
.home-box .home-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 851px;
  pointer-events: none;
}
.home-box .h1 {
  max-width: 7.7em;
  text-align: center;
  transition: color 0.2s;
}

.we_building-box {
  padding: 107px 0 123px;
}
.we_building-box .container {
  display: grid;
  grid-template-columns: 685fr 928fr;
  gap: 66px;
}
.we_building-box .wb-list {
  display: flex;
  margin: 25px 0;
  padding: 17px 0;
  max-width: 742px;
  border: 1px solid #E6E6E6;
  border-left: none;
  border-right: none;
}
.we_building-box .wb-image {
  width: 100%;
  background: no-repeat 50% 50%;
  background-size: cover;
}
.we_building-box .wb-image-1 {
  padding-bottom: 121.60583%;
}
.we_building-box .wb-image-2 {
  padding-bottom: 43.1034%;
}
.we_building-box .right-side {
  display: flex;
  flex-direction: column;
}
.we_building-box .right-side .wb-bottom {
  margin-top: auto;
}
.we_building-box .right-side .wb-image-1 {
  display: none;
}
.we_building-box .h2 span {
  display: none;
}
.we_building-box .wb-item {
  display: flex;
  align-items: center;
  padding: 2px 30px 2px 29px;
}
.we_building-box .wb-item:not(:last-child) {
  border-right: 1px solid #E6E6E6;
}
.we_building-box .wb-item .wb-int {
  margin-right: 25px;
  color: #9C9DA0;
}
.we_building-box .wb-item .wb-text {
  line-height: 156%;
}

@media (min-width: 1750px) {
  .we_building-box .h2 {
    margin-top: -10px;
    margin-left: -6px;
  }
}
.projects-box {
  padding: 104px 0 118px;
  background: #F8F8F8;
}
.projects-box .pr-title {
  align-items: center;
}
.projects-box .pr-title .subtitle {
  grid-column: span 3;
}
.projects-box .pr-title .h2 {
  grid-column: span 4;
}
.projects-box .projects-slider:not(.slick-initialized) {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.projects-box .project-item {
  background: #fff;
  cursor: pointer;
}
.projects-box .project-item:hover .pr-img {
  transform: scale(1.03);
}
.projects-box .project-item:hover .btn {
  opacity: 1;
}
.projects-box .project-item:hover .price-el {
  opacity: 0;
}
.projects-box .project-item .pr-top {
  position: relative;
  width: 100%;
  padding-bottom: 54.779%;
  overflow: hidden;
}
.projects-box .project-item .pr-top .pr-img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  transition: transform 0.2s;
}
.projects-box .project-item .pr-top .pr-int {
  position: absolute;
  top: 14px;
  left: 16px;
  letter-spacing: 0.02em;
  color: #AAAAAA;
  z-index: 2;
}
.projects-box .project-item .pr-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-left: 122px;
  padding-right: 131px;
  height: var(--btn-height);
}
.projects-box .project-item .pr-info-list {
  display: flex;
}
.projects-box .project-item .pri-item {
  display: flex;
  align-items: center;
  margin-right: 23px;
}
.projects-box .project-item .pri-item .icon {
  flex-shrink: 0;
  margin-right: 10px;
}
.projects-box .project-item .price-el {
  padding-top: 3px;
  margin: auto 0;
  transition: opacity 0.2s;
}
.projects-box .project-item .btn {
  position: absolute;
  top: 0;
  right: 0;
  padding-right: 135px;
  opacity: 0;
}

.stages-box {
  padding: 0 0 120px;
  background: #F8F8F8;
  z-index: 3;
}
.stages-box .st-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stages-box .st-item {
  position: relative;
  padding: 68px 77px;
  border: 1px solid #ECECEC;
  height: 602px;
  overflow: hidden;
  transition: 0.2s;
}
.stages-box .st-item:not(:last-child) {
  border-right: none;
}
.stages-box .st-item:hover {
  overflow: visible;
}
.stages-box .st-item .subtitle {
  margin: 16px 0 45px;
  font-weight: 600;
  color: inherit;
}
.stages-box .st-item .st-link {
  display: inline-block;
  margin-left: 3px;
  font-size: 18px;
  font-weight: 500;
  color: #3B5F4E;
}
.stages-box .st-item .st-link:hover span:not(.sub) {
  border-color: currentColor;
}
.stages-box .st-item .st-link span:not(.sub) {
  padding-bottom: 5px;
  border-bottom: 1px solid #F9DAC9;
  transition: border 0.2s;
}
.stages-box .st-item .st-link .sub {
  position: relative;
  top: -1.3em;
  margin-left: 0.4em;
  font-size: 0.666em;
}
.stages-box .st-item:nth-child(2) .st-image {
  margin-top: 18px;
}
.stages-box .st-item:nth-child(3) .st-image {
  margin-top: -63px;
  margin-left: 78px;
}
.stages-box .st-item .st-image {
  position: absolute;
  display: flex;
  justify-content: center;
  top: 317px;
  left: -14px;
  right: 0;
}
.stages-box .st-item .st-image img {
  max-width: none;
  height: 100%;
}

.twenty_years-box {
  background: #F8F8F8 url("../images/main/ty-bg.png") no-repeat 50% 0%;
  background-size: cover;
  padding: 107px 0;
  min-height: 960px;
}
.twenty_years-box .content-row {
  margin: auto;
  max-width: 707px;
  text-align: center;
}
.twenty_years-box .btn {
  margin-top: 31px;
  width: 100%;
  max-width: 357px;
}

.tp-box .tp-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
}
.tp-box .tp-list .tp-item {
  display: block;
  padding: 68px 77px 79px;
  border: 1px solid #ECECEC;
  overflow: hidden;
}
.tp-box .tp-list .tp-item:hover .img {
  transform: scale(1.05);
}
.tp-box .tp-list .tp-item:not(:last-child) {
  border-right: none;
}
.tp-box .tp-list .tp-item .img {
  margin-top: 98px;
  transition: transform 0.2s;
}

.technology-box {
  padding-top: 117px;
}

.payment-box {
  padding-top: 115px;
  padding-bottom: 120px;
}
.payment-box .tp-item {
  position: relative;
  min-height: 603px;
}
.payment-box .tp-item .img {
  position: absolute;
  margin: 0;
  right: 0;
  bottom: 9px;
}
.payment-box .tp-item:nth-child(2) .img {
  margin-bottom: -10px;
}
.payment-box .tp-item:nth-child(3) .img {
  margin-bottom: 30px;
}

.first_step-box {
  padding-top: 105px;
  padding-bottom: 121px;
  background: #F1F1F1;
}
.first_step-box .h2 {
  margin: 0 auto 91px;
  max-width: 19.8em;
  text-align: center;
}
.first_step-box .fs-list {
  font-size: 18px;
}
.first_step-box .fs-list .fs-item {
  display: grid;
  align-items: center;
  grid-template-columns: 123px 1fr 318px 318px;
  gap: 16px;
  padding: 0 83px;
}
.first_step-box .fs-list .fs-item:not(:last-child) {
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 48px;
  padding-bottom: 48px;
}
.first_step-box .fs-list .fs-stage {
  padding: 12px;
  margin-right: 16px;
  color: #AAAAAA;
  background: #fff;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 178%;
}
.first_step-box .fs-list .fs-big {
  grid-column: span 2;
}
.first_step-box .fs-list .h4 {
  padding-right: 40px;
}
.first_step-box .fs-list .fs-gray {
  color: #8B8B8B;
}

.social_previews-box {
  padding: 114px 0 110px;
  overflow: hidden;
}
.social_previews-box .subtitle {
  margin-bottom: -9px;
  max-width: 380px;
  color: inherit;
  font-weight: 700;
}
.social_previews-box .subtitle-vk {
  margin-top: 114px;
}
.social_previews-box .slick-general {
  margin-top: -5px;
  --gap: 44px;
}
.social_previews-box .sp-item {
  display: block;
  position: relative;
  padding-bottom: 73.5849%;
  overflow: hidden;
}
.social_previews-box .sp-item:hover img {
  opacity: 0.7;
  transform: scale(1.05);
}
.social_previews-box .sp-item img {
  transition: 0.2s;
}
.social_previews-box .slick-yt .sp-item {
  display: flex;
  padding-bottom: 60.3773%;
}
.social_previews-box .slick-yt .sp-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/icons/triangle-white.svg") no-repeat 50% 50%;
  background-size: 20px auto;
  transition: 0.2s;
}
.social_previews-box .slick-yt .sp-item:hover::after {
  background-size: 30px auto;
}

.footer-box {
  padding: 52px 0 48px;
  background: #fff;
  border-top: 1px solid #ECECEC;
}
.footer-box .top-row {
  display: flex;
  justify-content: space-between;
}
.footer-box .top-row .logo {
  align-self: center;
}
.footer-box .top-row .logo .logo-img {
  max-width: 113px;
}
.footer-box .middle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 46px 0;
  padding: 26px 0;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid #E5E5E5;
  border-left: none;
  border-right: none;
}
.footer-box .bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}
.footer-box .bottom-row .copy {
  color: #8B8B8B;
}
.footer-box .bottom-row .dev {
  margin-top: -1px;
  display: flex;
  align-items: center;
  color: #8B8B8B;
}
.footer-box .bottom-row .dev span {
  margin-right: 16px;
  line-height: 22px;
}
.footer-box .bottom-row .dev img {
  margin-top: -2px;
}

@media (min-width: 1750px) {
  .footer-box .top-row .logo {
    margin-top: -6px;
  }
  .footer-box .top-row .l-address {
    margin-left: 120px;
  }
  .footer-box .top-row .l-phones {
    margin-left: 207px;
    margin-right: 196px;
  }
  .footer-box .top-row .l-item:last-child {
    margin-left: auto;
  }
  .bottom-row .politic {
    margin-right: 75px;
  }
}
.details-box {
  padding: 20px 0 0;
  background: #F8F8F8;
  z-index: 2;
}
.details-box .box-middle-row .bm-left {
  display: flex;
  width: 100%;
}
.details-box .box-middle-row .bm-link {
  cursor: pointer;
  padding: 0 19px;
  margin-right: -3px;
}
.details-box .box-middle-row .bm-link:first-child {
  margin-left: -19px;
}
.details-box .box-middle-row .bm-link .icon {
  margin-left: 0;
  margin-right: 15px;
}
.details-box .box-middle-row .sub {
  margin-left: 3px;
  font-size: 0.615em;
  color: #2C2C2C;
  vertical-align: super;
}
.details-box .box-middle-row .sl-next {
  margin-right: -39px;
}
.details-box .box-middle-row .sl-arrow::before {
  padding-left: 16px;
}
.details-box .details-info {
  position: relative;
  align-items: start;
}
.details-box .d-images {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  margin-bottom: 100px;
  display: grid;
  grid-template-columns: 161px 1fr;
  gap: 16px;
  grid-column: span 4;
  width: 100%;
}
.details-box .d-images .d-p-item {
  position: relative;
  display: block;
  overflow: hidden;
}
.details-box .d-images .d-p-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.details-box .d-images .d-previews {
  width: 100%;
  min-width: 1px;
}
.details-box .d-images .d-previews .slick-slide {
  padding-bottom: 8.074%;
  cursor: pointer;
}
.details-box .d-images .d-previews .slick-current {
  pointer-events: none;
}
.details-box .d-images .d-previews .slick-current .d-p-item::after {
  opacity: 1;
}
.details-box .d-images .d-previews .d-p-item {
  padding-bottom: 62.1118%;
}
.details-box .d-images .d-previews .d-p-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 0 1px #3B5F4E;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 3;
}
.details-box .d-images .d-previews .d-p-item:hover::after {
  opacity: 0.3;
}
.details-box .d-images .d-big {
  width: 100%;
  min-width: 1px;
}
.details-box .d-images .d-big .d-p-item {
  padding-bottom: 86.970172%;
}
.details-box .d-content {
  grid-column: span 3;
}
.details-box .d-content .d-top-item {
  padding: 34px 54px 42px;
  border-top: 1px solid #ECECEC;
}
.details-box .d-content .d-with-border {
  border: 1px solid #ECECEC;
  border-bottom: none;
}
.details-box .d-content .d-white {
  padding-left: 48px;
  padding-right: 48px;
  margin-top: 24px;
  background: #fff;
  border: 1px solid #fff;
}
.details-box .d-content .d-title {
  margin-bottom: 7px;
  color: #8B8B8B;
  font-size: 16px;
}
.details-box .d-content .d-title b {
  font-weight: 600;
  color: #2A2C32;
}
.details-box .d-content .h3 {
  letter-spacing: normal;
}
.details-box .d-content .d-first {
  display: flex;
}
.details-box .d-content .d-first .d-title {
  padding-top: 10px;
}
.details-box .d-content .d-first .d-col:not(:last-child) {
  margin-right: 38px;
}
.details-box .d-content .d-first .d-el {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px;
}
.details-box .d-content .d-variants {
  padding-bottom: 0;
}
.details-box .d-content .d-variants .d-v-list {
  display: flex;
}
.details-box .d-content .d-variants .d-v-list .dv-item {
  padding-bottom: 40px;
  margin-bottom: -1px;
  color: #8B8B8B;
  transition: 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  cursor: pointer;
}
.details-box .d-content .d-variants .d-v-list .dv-item:not(:last-child) {
  margin-right: 26px;
}
.details-box .d-content .d-variants .d-v-list .dv-item.active {
  color: #3B5F4E;
  font-weight: 600;
  border-bottom: 1px solid #3B5F4E;
}
.details-box .d-content .d-btn {
  display: flex;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 27px;
  padding-right: 0;
  border-bottom: 1px solid #ECECEC;
}
.details-box .d-content .d-btn .db-left {
  display: grid;
  gap: 6px;
  font-size: 18px;
  font-weight: 500;
  color: #3B5F4E;
}
.details-box .d-content .d-btn .db-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 10px;
}
.details-box .d-content .d-btn .db-row:hover span {
  text-decoration: underline;
}
.details-box .d-content .d-btn .db-row .i-wrap {
  display: flex;
  justify-content: center;
}
.details-box .d-content .d-btn .btn {
  margin-left: auto;
  min-width: 230px;
}
.details-box .d-content .d-list ol {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}
.details-box .d-content .d-list ol li {
  display: flex;
  align-items: center;
}
.details-box .d-content .d-list ol .int {
  margin-right: 9px;
  width: 1.25em;
  color: #9C9DA0;
}
.details-box .d-content .d-list .btn {
  margin-top: 30px;
  width: 100%;
}
.details-box .d-content .d-action {
  position: relative;
}
.details-box .d-content .d-action .da-content {
  max-width: 300px;
  line-height: 1.75;
}
.details-box .d-content .d-action .h3 {
  margin-top: 4px;
  margin-bottom: 8px;
}
.details-box .d-content .d-action .da-bg {
  position: absolute;
  right: 0;
  bottom: 0;
}
.details-box .d-content .d-want {
  padding-top: 20px;
  padding-bottom: 39px;
}
.details-box .d-content .d-want a {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #3B5F4E;
  border-bottom: 1px dotted currentColor;
}
.details-box .d-content .d-middle a {
  font-weight: 600;
  color: #3B5F4E;
}
.details-box .d-content .d-middle a:hover {
  text-decoration: underline;
}
.details-box .d-content .d-middle .dm-list {
  margin: 13px 0 38px;
}
.details-box .d-content .d-middle .dm-value {
  display: grid;
  align-items: center;
  grid-template-columns: 30px 1fr auto;
  gap: 15px;
  padding: 23.8px;
  padding-left: 39px;
  padding-right: 48px;
  border-bottom: 1px solid #ECECEC;
}
.details-box .d-content .d-middle .dm-value:first-child {
  border-top: 1px solid #ECECEC;
}
.details-box .d-content .d-middle .d-icon {
  display: flex;
  justify-content: center;
}
.details-box .d-content .d-credits {
  margin-top: -3px;
  margin-bottom: -74px;
}
.details-box .d-content .d-credits .d-top-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  margin: 16px 0 0;
}
.details-box .d-content .d-credits .d-top-item .d-image {
  position: absolute;
  right: -10px;
}
.details-box .d-content .d-credits .d-text {
  max-width: 303px;
  line-height: 1.75;
}
.details-box .d-content .d-credits .d-item-1 .d-image {
  max-width: 190px;
}
.details-box .d-content .d-credits .d-item-2 .d-image {
  max-width: 194px;
  margin-top: -66px;
}
.details-box .d-content .d-credits .d-item-3 .d-image {
  max-width: 153px;
  right: 0;
}

.project_360-box {
  padding-top: 122px;
}
.project_360-box .left-side {
  position: relative;
  grid-column: span 4;
}
.project_360-box .left-side .pr-icon {
  position: absolute;
  top: 16px;
  left: 16px;
}
.project_360-box .right-side {
  grid-column: span 3;
  padding: 40px 46px;
  border: 1px solid #ECECEC;
  line-height: 1.5625;
}
.project_360-box .right-side b {
  font-weight: 600;
}
.project_360-box .right-side .pr-middle {
  display: flex;
  align-items: center;
  margin: 22px 0 28px;
  border: 1px solid #ECECEC;
  border-left: 0;
  border-right: 0;
}
.project_360-box .right-side .pr-middle img {
  margin-top: -8px;
  margin-left: -7px;
  margin-right: 16px;
  flex-shrink: 0;
}

.price_includes-box {
  padding-top: 110px;
}
.price_includes-box .pi-list {
  display: flex;
  justify-content: space-between;
  margin-top: 27px;
  padding: 18px 35px;
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
}
.price_includes-box .pi-list .v-line {
  margin: 0 auto;
  width: 1px;
  background: #E6E6E6;
}
.price_includes-box .pi-list .pi-item {
  display: flex;
  align-items: center;
  line-height: 1.625;
}
.price_includes-box .pi-list .pi-item .int {
  color: #9C9DA0;
  margin-right: 21px;
}

.equipment-box {
  padding: 110px 0 122px;
}
.equipment-box .h3 {
  letter-spacing: normal;
}
.equipment-box .eq-row {
  display: grid;
  grid-template-columns: 1fr repeat(3, 331px);
  gap: 16px;
}
.equipment-box .eq-info .eq-value {
  display: flex;
  flex-direction: column;
}
.equipment-box .eq-info .eq-value > * {
  margin-left: 35px;
}
.equipment-box .eq-info ul {
  margin: 14px 0 7px;
}
.equipment-box .eq-info ul li {
  display: flex;
  align-items: center;
  margin-bottom: 11px;
}
.equipment-box .eq-info ul li::before {
  content: "";
  width: 11px;
  height: 11px;
  margin-right: 8px;
  flex-shrink: 0;
  background: no-repeat 50% 50%;
  background-size: contain;
}
.equipment-box .eq-info ul li.plus {
  color: #3B5F4E;
  font-weight: 500;
}
.equipment-box .eq-info ul li.plus::before {
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='11' viewBox='0 0 11 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5.5H10' stroke='%233B5F4E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.5 10V1' stroke='%233B5F4E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.equipment-box .eq-info ul li.minus::before {
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='3' viewBox='0 0 11 3' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5H10' stroke='%23323232' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.equipment-box .eq-table:not(.eq-info) .eq-title-row {
  grid-template-columns: 1fr;
  padding-top: 40px;
  padding-bottom: 23px;
}
.equipment-box .eq-table:not(.eq-info) .eq-row {
  border-bottom: 1px solid #E6E6E6;
}
.equipment-box .eq-table:not(.eq-info) .eq-row.gray .eq-value {
  background: #F8F8F8;
}
.equipment-box .eq-table:not(.eq-info) .eq-name {
  align-self: center;
  padding: 20.3px 0;
  line-height: 1.625;
  margin-bottom: 3px;
}
.equipment-box .eq-table:not(.eq-info) .eq-name div {
  max-width: 355px;
  white-space: pre-line;
}
.equipment-box .eq-table:not(.eq-info) .eq-value {
  display: flex;
  align-items: center;
  justify-content: center;
}
.equipment-box .eq-table:not(.eq-info) .eq-plus,
.equipment-box .eq-table:not(.eq-info) .eq-minus {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -1px 0;
  min-height: 134px;
}
.equipment-box .eq-table:not(.eq-info) .eq-plus::before, .equipment-box .eq-table:not(.eq-info) .eq-plus::after,
.equipment-box .eq-table:not(.eq-info) .eq-minus::before,
.equipment-box .eq-table:not(.eq-info) .eq-minus::after {
  content: "";
  position: absolute;
  height: 1.5px;
  width: 41px;
  border-radius: 1px;
  background: #3B5F4E;
}
.equipment-box .eq-table:not(.eq-info) .eq-plus::after {
  transform: rotate(90deg);
}
.equipment-box .eq-info-bottom {
  padding-top: 40px;
}
.equipment-box .eq-info-bottom .eq-value.active .btn-uncheck {
  display: none;
}
.equipment-box .eq-info-bottom .eq-value:not(.active) .btn-check {
  display: none;
}
.equipment-box .eq-info-bottom .price-el {
  margin-top: 14px;
  margin-bottom: 23px;
  color: #3B5F4E;
}
.equipment-box .eq-info-bottom .btn {
  width: 100%;
}
.equipment-box .eq-info-bottom .btn-check {
  background-image: url("data:image/svg+xml,%3Csvg width='29' height='19' viewBox='0 0 29 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 1L11.1226 18L1 7.7941' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 27px auto;
  pointer-events: none;
}
.equipment-box .eq-info-bottom .btn-wrap {
  margin-left: 0;
}

.options-box {
  padding: 120px 0 120px;
  background: #F8F8F8;
}
.options-box .h3 {
  letter-spacing: normal;
}
.options-box .top-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.options-box .top-row .btn {
  max-width: 332px;
  width: 100%;
}
.options-box .options-col {
  margin-bottom: 43px;
}
.options-box .h3 {
  margin-bottom: 22px;
}
.options-box .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.options-box .options-value {
  display: flex;
  align-items: center;
  padding: 27px 33px;
  background: #fff;
  cursor: pointer;
}
.options-box .options-value input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  flex-shrink: 0;
  width: 41px;
  height: 41px;
  margin-right: 16px;
  background: #F8F8F8 no-repeat 50% 50%;
  border-radius: 0;
  border: 0;
  outline: 0;
  pointer-events: none;
}
.options-box .options-value input:checked {
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 8.5H16' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.5 16V1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-color: #3B5F4E;
}
.options-box .options-value .ov-middle {
  display: grid;
  gap: 5px;
  line-height: 1.375;
  margin-right: 25px;
}
.options-box .options-value .ovm-title {
  font-weight: 600;
}
.options-box .options-value .ov-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  margin-left: auto;
  margin-bottom: -9px;
  font-size: 13px;
  line-height: 1.3846;
}
.options-box .options-value .ov-price .ovp-info {
  margin-top: -9px;
}
.options-box .options-value .ov-price .price-el {
  margin-bottom: 4px;
  font-size: 9px;
  color: #3B5F4E;
}
.options-box .options-col:last-child,
.options-box .options-row:last-child {
  margin-bottom: 0;
}
@media (min-width: 1750px) {
  .options-box .subtitle {
    margin-top: -5px;
  }
  .options-box .options-row .options-col:nth-child(2) .options-value {
    min-height: 183px;
  }
  .options-box .op-col-last .options-value {
    min-height: 106px;
  }
}

.how_order-box {
  padding-top: 104px;
}
.how_order-box .top-row {
  text-align: center;
  margin-bottom: 39px;
}
.how_order-box .top-row .subtitle {
  margin-top: 14px;
}
.how_order-box .ho-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #ECECEC;
}
.how_order-box .ho-item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 70px 78px 80px;
}
.how_order-box .ho-item:not(:last-child) {
  border-right: 1px solid #ECECEC;
}
.how_order-box .ho-item .h3 {
  margin-right: -30px;
}
.how_order-box .ho-item .mini-int {
  position: absolute;
  top: 26px;
  left: 21px;
  font-size: 13px;
  color: #3B5F4E;
}
.how_order-box .ho-item .hi-sub {
  margin-top: 10px;
  margin-bottom: 140px;
  font-size: 18px;
  line-height: 1.777;
}
.how_order-box .ho-item .btn {
  margin-top: auto;
}

.excursion-box {
  margin-top: 120px;
  padding: 105px 0 117px;
  background: #3B5F4E url("../images/main/ex-bg.png") no-repeat 50% 50%;
  background-size: cover;
  color: #fff;
}
@media (min-width: 1300px) {
  .excursion-box .container {
    max-width: 1052px;
  }
}
.excursion-box .top-row {
  margin-bottom: 41px;
  text-align: center;
}
.excursion-box .top-row .subtitle {
  color: #fff;
  margin-top: 20px;
}
.excursion-box .ex-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 33px;
}
.excursion-box .form-title {
  margin-top: 13px;
  opacity: 0.5;
}
.excursion-box .btn {
  width: 100%;
}
.excursion-box .form-politic {
  opacity: 0.5;
}

.examples-box {
  padding-top: 121px;
}
.examples-box .top-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 31px;
}
.examples-box .top-row .btn {
  width: 100%;
  max-width: 332px;
}
.examples-box .top-row .subtitle {
  color: currentColor;
}
.examples-box .ex-grid {
  display: grid;
  gap: 22px 25px;
  grid-template-columns: 1fr 1fr 1fr;
}
.examples-box .ex-grid img {
  width: 100%;
  transition: transform 0.2s;
}
.examples-box .ex-grid .ex-item {
  overflow: hidden;
}
.examples-box .ex-grid .ex-item:hover img {
  transform: scale(1.03);
}
.examples-box .ex-grid .ex-item-big {
  grid-column: span 2;
}
@media (min-width: 1750px) {
  .examples-box .btn {
    margin-top: 7px;
  }
}

.similar-box {
  margin-top: 10px;
}
.similar-box .subtitle {
  padding: 9px 0;
  color: currentColor;
  font-weight: 700;
}

.faq-box {
  padding: 0 0 111px;
  background: #F8F8F8;
}
.faq-box .left-side {
  grid-column: span 2;
}
.faq-box .left-side .subtitle {
  margin: 13px 0 14px;
  max-width: 305px;
}
.faq-box .left-side .btn {
  margin-top: 13px;
  width: 100%;
  max-width: 358px;
}
.faq-box .right-side {
  grid-column: span 5;
}
.faq-box .right-side .faq-list {
  margin-top: 12px;
  border-top: 1px solid #DFDFDF;
}
.faq-box .right-side .faq-item:not(.active) .faq-title {
  border-bottom: 1px solid #DFDFDF;
}
.faq-box .right-side .faq-item:not(.active) .f-state::before {
  opacity: 1;
}
.faq-box .right-side .faq-title {
  display: grid;
  align-items: center;
  grid-template-columns: 20px 1fr auto;
  padding: 35px 54px 35px 32px;
  gap: 20px;
  cursor: pointer;
}
.faq-box .right-side .faq-title .f-int {
  font-size: 14px;
  color: #3B5F4E;
  line-height: 1;
}
.faq-box .right-side .faq-title .h4 {
  letter-spacing: normal;
}
.faq-box .right-side .faq-title .f-state {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-box .right-side .faq-title .f-state::before, .faq-box .right-side .faq-title .f-state::after {
  content: "";
  position: absolute;
  height: 1.5px;
  width: 25px;
  border-radius: 1px;
  background: #3B5F4E;
  transition: opacity 0.2s;
}
.faq-box .right-side .faq-title .f-state::before {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-box .right-side .faq-text {
  display: none;
  border-top: 1px solid #DFDFDF;
  border-bottom: 1px solid #DFDFDF;
  padding: 35px 54px 35px 32px;
}
@media (min-width: 1750px) {
  .faq-box {
    margin-top: -13px;
  }
  .faq-box .left-side .subtitle {
    margin-left: 6px;
  }
  .faq-box .right-side {
    padding-left: 5px;
  }
}

.tell_details-box {
  padding: 105px 0 116px;
  background: #3B5F4E url("../images/main/ex-bg.png") no-repeat 50% 50%;
  background-size: cover;
  color: #fff;
}
.tell_details-box .h4 {
  margin-bottom: 33px;
}
.tell_details-box .subtitle {
  color: rgba(255, 255, 255, 0.4666666667);
}
.tell_details-box .td-left {
  grid-column: span 2;
}
.tell_details-box .td-left .subtitle {
  margin-top: 23px;
  max-width: 240px;
}
.tell_details-box .td-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 33px;
  grid-column: span 5;
}
.tell_details-box .form-title {
  padding-top: 13px;
  opacity: 0.5;
}
.tell_details-box .form-politic {
  max-width: none;
  opacity: 0.5;
  grid-column: 1/-1;
}
.tell_details-box .btn {
  width: 100%;
}
@media (min-width: 1750px) {
  .tell_details-box .form-politic {
    margin-top: -4px;
    padding-left: 25px;
    text-align: left;
  }
}

.prod_panel-box {
  position: fixed;
  bottom: 0;
  padding: 30px 0;
  max-width: var(--body-width);
  width: 100%;
  background: rgba(255, 255, 255, 0.9333333333);
  border-top: 1px solid #E4E4E4;
  transition: all 0.2s, transform 0.4s;
  z-index: 10;
}
.prod_panel-box:hover {
  background: #fff;
}
.prod_panel-box:not(.active) {
  transform: translateY(110%);
  visibility: hidden;
  opacity: 0;
}
.prod_panel-box .container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto 330px;
  gap: 20px;
}
.prod_panel-box.prod_panel_big-box .p-collapse {
  position: absolute;
  top: -21px;
  right: 15px;
}
.prod_panel-box .p-collapse {
  cursor: pointer;
  color: #4388D2;
}
.prod_panel-box .p-collapse:hover {
  text-decoration: underline;
}
.prod_panel-box .price-el {
  margin-top: 25px;
}
.prod_panel-box .left-col {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.prod_panel-box .btn {
  max-height: 75px;
}
.prod_panel-box .form-input {
  margin-bottom: 0;
}
.prod_panel-box .form-input .options-list {
  transform: translateY(-100%);
}
.prod_panel-box .form-input input {
  padding: 0;
}

.prod_panel_mini-box {
  padding: 10px 0;
}
.prod_panel_mini-box .container {
  grid-template-columns: repeat(3, 1fr) auto auto;
  align-items: center;
}
.prod_panel_mini-box .price-el {
  margin: 0;
  font-size: 9px;
}

@media (min-width: 1750px) {
  .container {
    max-width: var(--content-width);
  }
}
@media (max-width: 1749.98px) {
  :root {
    --header-height: 100px;
  }
  .slick-general {
    --gap: 30px;
  }
  .h1 {
    font-size: 65px;
  }
  .h2 {
    font-size: 50px;
  }
  .h3 {
    font-size: 27px;
  }
  .h4 {
    font-size: 22px;
  }
  .btn {
    font-size: 16px;
  }
  .sl-arrows {
    height: 70px;
  }
  .sl-arrows .sl-arrow,
  .box-middle-row .bm-link {
    font-size: 14px;
  }
  .sl-arrows .sl-arrow::before {
    padding-left: 15px;
  }
  .box-middle-row .bm-link .icon {
    margin-left: 15px;
  }
  .sl-arrows .sl-prev {
    padding: 0 18px 0 15px;
  }
  .sl-arrows .sl-next {
    padding: 0 15px 0 18px;
  }
  .details-box .box-middle-row .sl-next {
    margin-right: -18px;
  }
  .details-box .box-middle-row .sl-arrow::before {
    padding-left: 6px;
  }
  .header-box .btn {
    max-width: 275px;
  }
  .header-box .menu-item {
    padding: 0 15px;
  }
  .header-box .m-name {
    font-size: 14px;
  }
  .header-box .hamburger span {
    display: none;
  }
  .header-box .logo {
    max-width: 130px;
  }
  .header-box .m-name {
    max-width: 88px;
  }
  .header-box .mis-item {
    padding: 0 30px;
    height: 60px;
    min-width: 300px;
    font-size: 14px;
  }
  .header-box .mis-item::before {
    transform: scale(0.7);
  }
  .popup-menu .menu-content {
    padding: 80px 0;
  }
  .popup-menu .middle-col {
    max-width: 333px;
  }
  .popup-menu .btns-row {
    grid-template-columns: 1fr;
    max-width: 357px;
  }
  .popup-menu .right-col {
    max-width: 500px;
  }
  .home-box .home-content {
    min-height: 700px;
  }
  .we_building-box .container {
    grid-template-columns: 530fr 928fr;
    gap: 50px;
  }
  .we_building-box .wb-item .wb-int {
    margin-right: 15px;
  }
  .we_building-box .left-side {
    position: relative;
    display: flex;
    overflow: hidden;
  }
  .projects-box .project-item .pr-bottom {
    padding: 0 30px;
  }
  .projects-box .project-item .btn {
    padding-right: 55px;
  }
  .stages-box .st-item {
    padding: 45px;
  }
  .stages-box .st-item .st-link {
    font-size: 16px;
    margin: 0;
  }
  .tp-box .tp-list .tp-item {
    padding: 45px;
  }
  .tp-box .tp-list .tp-item .img {
    margin-top: 60px;
  }
  .payment-box .tp-item .img {
    max-width: 75%;
  }
  .payment-box .tp-item {
    min-height: 500px;
  }
  .first_step-box .fs-list .fs-item {
    padding: 0 45px;
  }
  .first_step-box .fs-list .fs-item {
    grid-template-columns: 100px 1fr 280px 280px;
  }
  .first_step-box .fs-list {
    font-size: inherit;
  }
  .details-box .d-images {
    grid-template-columns: 138px 1fr;
  }
  .details-box .d-content .d-top-item {
    padding-left: 40px;
    padding-right: 40px;
  }
  .details-box .d-content .d-title {
    font-size: inherit;
  }
  .details-box .d-content .d-variants .d-v-list .dv-item:not(:last-child) {
    margin-right: 15px;
  }
  .details-box .d-content .d-variants .d-v-list .dv-item {
    padding-top: 5px;
    padding-bottom: 35px;
    font-size: 14px;
  }
  .details-box .d-content .d-btn .db-left {
    font-size: inherit;
  }
  .details-box .d-content .d-btn {
    display: grid;
    gap: 20px;
  }
  .details-box .d-content .d-btn .btn {
    width: 100%;
  }
  .details-box .d-content .d-middle .dm-value {
    padding: 22px 30px;
  }
  .equipment-box .eq-row {
    grid-template-columns: 1fr repeat(3, 270px);
  }
  .how_order-box .ho-item {
    padding: 60px;
  }
  .footer-box .middle-row {
    font-size: inherit;
  }
  .faq-box .right-side .faq-title {
    padding: 25px 30px;
  }
  .popup-quiz .quiz-final .logo-img {
    margin-bottom: 80px;
  }
}
@media (max-width: 1299.98px) {
  :root {
    --header-height: 80px;
    --btn-height: 70px;
  }
  .h1 {
    font-size: 50px;
  }
  .h2 {
    font-size: 42px;
  }
  .h3 {
    font-size: 24px;
  }
  .h4 {
    font-size: 20px;
  }
  .price-el {
    font-size: 10px;
  }
  .btn {
    font-size: 15px;
    padding-left: 25px;
    padding-bottom: 10px;
  }
  .btn.with-arrow {
    background-position: calc(100% - 10px) 10px !important;
    background-size: 19px !important;
  }
  .btn.with-subtext .subtext {
    top: 10px;
    right: 15px;
  }
  .close-button {
    font-size: inherit;
  }
  .popup-menu .menu-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .popup-menu .left-col {
    display: grid;
    grid-column: 1/-1;
    grid-template-columns: 240px auto 1fr;
    gap: 0 30px;
    max-width: 100%;
  }
  .popup-menu .l-content .l-phones {
    grid-column: 1/-1;
    display: flex;
    justify-content: space-between;
    max-width: none;
    order: -1;
    max-width: 800px;
  }
  .popup-menu .l-content .l-phones .l-text {
    margin-left: 20px;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .popup-menu .left-col .l-item:not(:last-child) {
    margin-bottom: 25px;
  }
  .popup-menu .b-item ul li {
    font-size: inherit;
  }
  .popup-menu .b-subtitle {
    margin-top: 0;
  }
  .popup-menu .b-item {
    margin-bottom: 40px;
  }
  .popup-menu .b-extra ul {
    justify-content: flex-start;
  }
  .header-box .menu-list {
    display: none;
  }
  .home-box .grid {
    grid-template-columns: repeat(7, 1fr);
  }
  .home-box .grid .s:nth-child(9n),
  .home-box .grid .s:nth-child(9n+1) {
    display: none;
  }
  .home-box .home-content {
    min-height: 520px;
  }
  .we_building-box .left-side {
    display: none;
  }
  .we_building-box .container {
    grid-template-columns: 1fr;
  }
  .we_building-box .wb-list {
    justify-content: space-between;
    max-width: none;
  }
  .we_building-box .wb-item:not(:last-child) {
    padding-right: 90px;
  }
  .we_building-box .wb-item:last-child {
    padding-right: 40px;
  }
  .we_building-box .right-side .wb-bottom {
    display: grid;
    grid-template-columns: 71fr 200fr;
    gap: 20px;
    margin-top: 20px;
  }
  .we_building-box .right-side .wb-image-1 {
    display: block;
  }
  .projects-box .project-item .pr-bottom {
    display: grid;
    grid-template-columns: auto 180px;
    gap: 10px 30px;
    height: auto;
  }
  .projects-box .project-item .pr-info-list {
    padding: 16px 0;
    grid-column: 1/-1;
  }
  .projects-box .project-item .btn {
    position: static;
    margin-right: -30px;
    padding-right: 20px;
    opacity: 1;
  }
  .projects-box .project-item:hover .price-el {
    opacity: 1;
  }
  .stages-box .st-item .st-image {
    display: flex;
    justify-content: center;
    left: 0;
    right: 0;
    top: 240px;
  }
  .stages-box .st-item .st-image img {
    max-width: 80%;
  }
  .stages-box .st-item:nth-child(3) .st-image {
    margin-top: 0;
    margin-left: 10%;
  }
  .stages-box .st-item {
    height: 400px;
  }
  .stages-box .st-item:hover {
    overflow: hidden;
  }
  .stages-box .st-item {
    padding: 35px;
  }
  .stages-box .st-item .st-link {
    font-size: 14px;
    white-space: nowrap;
  }
  .twenty_years-box {
    min-height: 740px;
  }
  .tp-box .tp-list .tp-item {
    padding: 35px 25px;
  }
  .tp-box .tp-list .tp-item .img {
    margin-top: 40px;
  }
  .payment-box .tp-item {
    min-height: 380px;
  }
  .first_step-box .fs-list .fs-item {
    padding: 0;
    grid-template-columns: 100px 1fr repeat(2, 240px);
  }
  .first_step-box .fs-list .fs-item:not(:last-child) {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .social_previews-box {
    padding: 80px 0;
  }
  .social_previews-box .subtitle-vk {
    margin-top: 70px;
  }
  .social_previews-box .slick-general {
    --gap: 30px;
  }
  .footer-box .bottom-row .copy {
    max-width: 450px;
  }
  .details-box .box-middle-row .bm-link .icon {
    margin-right: 10px;
    max-width: 20px;
  }
  .details-box .box-middle-row .bm-title {
    flex-wrap: wrap;
  }
  .details-box .box-middle-row .bm-link {
    height: 70px;
  }
  .details-box .box-middle-row .bm-left {
    border-right: 0;
    border-bottom: 1px solid #ECECEC;
  }
  .details-box .d-images {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
  }
  .details-box .d-images .d-previews {
    margin: 20px -5px 0;
  }
  .details-box .d-images .d-previews .slick-slide {
    padding: 0 5px;
  }
  .details-box .sl-arrows {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .details-box .sl-arrow {
    width: 100%;
    justify-content: center;
  }
  .details-box .d-images {
    grid-column: span 3;
    grid-template-columns: 88.5px 1fr;
  }
  .details-box .d-content {
    grid-column: span 4;
  }
  .project_360-box .left-side {
    grid-column: span 3;
  }
  .project_360-box .right-side {
    grid-column: span 4;
  }
  .price_includes-box .pi-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr 1px);
    padding: 0;
    font-size: 14px;
  }
  .price_includes-box .pi-list .pi-item:nth-child(n+6) {
    border-top: 1px solid #E6E6E6;
  }
  .price_includes-box .pi-list .pi-item {
    padding: 10px 20px;
    min-width: 30%;
    line-height: 1.3;
  }
  .price_includes-box .pi-list .pi-item .int {
    margin-right: 15px;
  }
  .price_includes-box .pi-list .v-line:nth-child(6) {
    visibility: hidden;
  }
  .equipment-box {
    padding: 80px 0;
  }
  .equipment-box .eq-info .eq-value > * {
    margin-left: 0;
  }
  .equipment-box .eq-row {
    grid-template-columns: 1fr repeat(3, 200px);
  }
  .equipment-box .eq-info ul li {
    margin-bottom: 2px;
  }
  .equipment-box .eq-table:not(.eq-info) .eq-name {
    padding: 15px 0;
  }
  .options-box .options-value {
    padding: 15px 15px;
    font-size: 14px;
    min-height: 80px;
  }
  .options-box .options-value input {
    width: 25px;
    height: 25px;
    background-size: 50%;
    margin-right: 12px;
  }
  .options-box .options-value .ov-middle {
    margin-right: 10px;
  }
  .options-box {
    padding: 80px 0;
  }
  .how_order-box .ho-item {
    padding: 30px 25px;
  }
  .how_order-box .ho-item .mini-int {
    top: 9px;
    left: 7px;
  }
  .how_order-box .ho-item .hi-sub {
    margin-bottom: 80px;
    font-size: inherit;
  }
  .excursion-box .top-row .subtitle {
    display: inline-block;
    max-width: 700px;
  }
  .excursion-box .form-title {
    margin-top: 0;
  }
  .examples-box .top-row .btn {
    max-width: 294px;
  }
  .faq-box .left-side {
    grid-column: span 3;
  }
  .faq-box .right-side {
    grid-column: span 4;
  }
  .tell_details-box .form-title {
    padding-top: 0;
  }
  .tell_details-box .td-left .subtitle {
    margin-top: 13px;
  }
  .popup-quiz .quiz-variants {
    min-height: 115px;
  }
  .popup-quiz .quiz-item {
    padding: 25px 30px;
  }
  .popup-quiz .btns-row {
    max-width: 500px;
  }
  .btn-prev.with-arrow {
    background-position-y: 14px !important;
  }
  .popup-quiz .quiz-final .container {
    grid-template-columns: 492fr 379fr;
  }
  .popup-quiz .quiz-final {
    background-position-y: 155px;
    background-size: 1300px;
  }
  .popup-quiz .quiz-final .logo-img {
    margin-bottom: 60px;
  }
  .popup-quiz .quiz-content {
    padding: 80px 0;
  }
  .popup-right .content-element {
    padding: 0 40px 40px;
    max-width: 440px;
  }
  .popup-right .btn {
    margin-top: 0;
    margin-bottom: 0;
  }
  .popup-thanks .plane {
    margin-top: 0;
    margin-left: -40px;
    margin-bottom: 30px;
    width: 200px;
  }
  .popup-thanks .btn {
    margin-top: 40px;
  }
  .prod_panel_big-box .container {
    grid-template-columns: repeat(3, 1fr) auto 230px;
  }
  .prod_panel-box .form-input {
    font-size: 14px;
  }
  .prod_panel-box .form-input input {
    font-size: 14px;
  }
}
@media (max-width: 991.98px) {
  :root {
    --header-height: 76px;
    --btn-height: 62px;
    --scrollbarWidth: 0;
  }
  body {
    font-size: 14px;
  }
  .h1 {
    font-size: 42px;
  }
  .h2 {
    font-size: 34px;
  }
  .h3 {
    font-size: 22px;
  }
  .h4 {
    font-size: 18px;
  }
  .btn {
    font-size: 14px;
    padding-left: 20px;
    padding-bottom: 10px;
  }
  .subtitle {
    font-size: 16px;
  }
  .box-middle-row {
    margin-top: 25px;
  }
  .box-middle-row .bm-link {
    padding: 0 20px;
  }
  .box-middle-row .bm-link:first-child {
    margin-left: -20px;
  }
  .header-box .btn {
    max-width: 240px;
  }
  .header-box .phone {
    font-size: 14px;
    margin: auto;
  }
  .popup-menu .menu-content {
    padding: 50px 0;
  }
  .popup-menu .btns-row {
    margin-top: 0;
  }
  .we_building-box {
    padding: 60px 0;
  }
  .we_building-box .right-side .wb-image {
    max-width: 100%;
  }
  .we_building-box .wb-item:not(:last-child) {
    padding-right: 36px;
  }
  .projects-box {
    padding: 60px 0;
  }
  .projects-box .project-item .pr-bottom {
    grid-template-columns: 1fr;
  }
  .projects-box .project-item .btn {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .projects-box .project-item .pri-item {
    margin-right: 15px;
  }
  .projects-box .project-item .pri-item .icon {
    max-width: 15px;
  }
  .projects-box .project-item .pr-info-list {
    padding-bottom: 7px;
  }
  .projects-box .project-item .price-el {
    padding: 0 0 8px;
  }
  .stages-box .st-list {
    grid-template-columns: 1fr;
    border: 1px solid #ECECEC;
  }
  .stages-box .st-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    border: 0;
  }
  .stages-box .st-item:not(:last-child) {
    border-bottom: 1px solid #ECECEC;
  }
  .stages-box .st-item .subtitle {
    margin: 5px 0 20px;
  }
  .stages-box .st-item .st-image {
    left: auto;
    top: 10px;
    bottom: 10px;
    width: 190px;
    justify-content: center;
    align-items: center;
    margin: 0 !important;
  }
  .stages-box .st-item .st-image img {
    max-width: 100%;
  }
  .stages-box .st-item:nth-child(3) .st-image {
    margin-right: -1.5vw !important;
  }
  .stages-box {
    padding-bottom: 60px;
  }
  .twenty_years-box {
    padding: 60px 0;
    min-height: 640px;
  }
  .tp-box {
    padding-top: 60px;
  }
  .tp-box .subtitle {
    text-align: center;
  }
  .tp-box .tp-list {
    grid-template-columns: 1fr;
    margin: 30px auto 0;
    max-width: 600px;
    border: 1px solid #ECECEC;
  }
  .tp-box .tp-list .tp-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 0;
  }
  .tp-box .tp-list .tp-item:not(:last-child) {
    border-bottom: 1px solid #ECECEC;
  }
  .tp-box .tp-list .tp-item .h3 {
    position: relative;
    z-index: 2;
    max-width: 400px;
  }
  .tp-box .tp-list .tp-item .img {
    margin: 0;
  }
  .technology-box .tp-list {
    max-width: 360px;
    text-align: center;
  }
  .technology-box .tp-list .tp-item .img {
    margin-top: 30px;
  }
  .payment-box {
    padding-bottom: 60px;
  }
  .payment-box .tp-item {
    min-height: 140px;
  }
  .payment-box .tp-item .img {
    max-width: 170px;
    margin: 0;
  }
  .social_previews-box {
    padding: 60px 0;
  }
  .first_step-box {
    padding: 60px 0;
  }
  .first_step-box .h2 {
    margin-bottom: 40px;
  }
  .first_step-box .fs-list {
    max-width: 480px;
    margin: auto;
  }
  .first_step-box .fs-list .btn {
    width: 48%;
    margin: 15px 1% 0;
  }
  .first_step-box .fs-list .fs-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    text-align: center;
  }
  .first_step-box .fs-list .fs-stage {
    margin: 0 auto;
    min-width: 120px;
  }
  .first_step-box .fs-list .h4 {
    margin: 20px auto;
    padding: 0;
    width: 100%;
    max-width: 380px;
  }
  .first_step-box .fs-list .fs-info {
    width: 100%;
  }
  .footer-box .l-content {
    font-size: 13px;
  }
  .footer-box .top-row {
    flex-wrap: wrap;
  }
  .footer-box .top-row .logo {
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
  }
  .footer-box .middle-row {
    display: none;
  }
  .footer-box .bottom-row {
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #E5E5E5;
  }
  .footer-box .bottom-row .copy {
    max-width: none;
    width: 100%;
    margin-bottom: 25px;
  }
  .breadcrumbs {
    padding-top: 40px;
  }
  .details-box .details-info {
    display: block;
  }
  .details-box .d-images {
    position: static;
    width: 100%;
    margin: 0 auto 30px;
  }
  .details-box .d-images .d-big .d-p-item {
    max-height: 350px;
    height: 60vw;
    padding-bottom: 0;
    overflow: hidden;
  }
  .details-box .d-content {
    max-width: 510px;
    margin: auto;
  }
  .details-box .d-content .d-action .da-bg {
    max-width: 220px;
  }
  .details-box .d-content .d-want a {
    font-size: 16px;
  }
  .details-box .d-content .d-middle .dm-value {
    padding: 15px 10px;
  }
  .project_360-box .container {
    display: block;
  }
  .project_360-box .left-side {
    max-width: 500px;
    margin: 0 auto 20px;
  }
  .project_360-box .right-side {
    max-width: 500px;
    margin: 0 auto;
  }
  .price_includes-box {
    padding-top: 60px;
  }
  .equipment-box {
    overflow: hidden;
    padding: 40px 0;
  }
  .equipment-box .container {
    position: relative;
  }
  .equipment-box .container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    box-shadow: inset 0 0 5px 10px #fff;
    z-index: 2;
    pointer-events: none;
  }
  .equipment-box .eq-table-wrap {
    overflow-x: auto;
    margin: 0 -15px;
    padding: 20px 15px;
  }
  .equipment-box .eq-value {
    position: relative;
  }
  .equipment-box .eq-value ul {
    font-size: 13px;
  }
  .equipment-box .eq-table {
    min-width: 770px;
  }
  .equipment-box .eq-row {
    grid-template-columns: 1fr repeat(3, 160px);
  }
  .equipment-box .eq-table:not(.eq-info) .eq-plus, .equipment-box .eq-table:not(.eq-info) .eq-minus {
    min-height: 0;
  }
  .equipment-box .eq-table:not(.eq-info) .eq-plus::before, .equipment-box .eq-table:not(.eq-info) .eq-plus::after, .equipment-box .eq-table:not(.eq-info) .eq-minus::before, .equipment-box .eq-table:not(.eq-info) .eq-minus::after {
    width: 30px;
  }
  .equipment-box .eq-table-wrap {
    position: relative;
  }
  .equipment-box .eq-table-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../images/icons/hand.png") no-repeat rgba(255, 255, 255, 0.2);
    background-size: 70px auto;
    background-position: 30px 30px;
    backdrop-filter: blur(2px);
    animation: 1.5s infinite alternate handLR;
    z-index: 8;
    transition: opacity 0.2s;
    pointer-events: none;
  }
  .equipment-box .eq-table-wrap:hover::after, .equipment-box .eq-table-wrap.hovered::after {
    opacity: 0;
  }
  @keyframes handLR {
    from {
      background-position: 20px 30px;
    }
    to {
      background-position: 100px 30px;
    }
  }
  .options-box {
    padding: 60px 0;
  }
  .options-box .top-row {
    margin-bottom: 40px;
  }
  .options-box .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .options-box .options-row {
    margin-bottom: 43px;
  }
  .options-box .options-row .options-col {
    margin-bottom: 0;
  }
  .how_order-box {
    padding: 60px 0 0;
  }
  .how_order-box .ho-list {
    margin: 0 auto;
    grid-template-columns: 1fr;
    border: 1px solid #ECECEC;
    max-width: 450px;
  }
  .how_order-box .ho-item {
    padding: 40px;
  }
  .how_order-box .ho-item:not(:last-child) {
    border-bottom: 1px solid #ECECEC;
  }
  .how_order-box .ho-item .h3 {
    margin-right: 0;
  }
  .how_order-box .ho-item .mini-int {
    top: 14px;
    left: 13px;
  }
  .how_order-box .ho-item .hi-sub {
    margin-bottom: 40px;
  }
  .excursion-box {
    margin-top: 60px;
    padding: 60px 0;
  }
  .excursion-box .ex-form {
    grid-template-columns: 1fr 1fr;
  }
  .excursion-box .form-input {
    margin-bottom: 0;
  }
  .excursion-box .form-btn-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-column: 1/-1;
  }
  .excursion-box .form-btn-wrap .btn {
    max-width: 300px;
  }
  .excursion-box .form-btn-wrap .form-politic {
    max-width: 400px;
  }
  .examples-box {
    padding-top: 60px;
  }
  .examples-box .ex-grid {
    gap: 10px;
  }
  .examples-box .ex-item {
    position: relative;
  }
  .examples-box .ex-item:not(.ex-item-big) {
    padding-bottom: 100%;
  }
  .examples-box .ex-grid img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    pointer-events: none;
  }
  .faq-box .right-side .faq-text {
    padding: 25px 30px;
  }
  .faq-box {
    padding-bottom: 60px;
  }
  .tell_details-box {
    padding: 60px 0;
  }
  .tell_details-box .middle {
    grid-template-columns: 1fr;
  }
  .tell_details-box .td-left .subtitle {
    margin: 0 0 20px;
    max-width: none;
  }
  .tell_details-box .td-form {
    grid-template-columns: 1fr 1fr;
  }
  .tell_details-box .form-btn-wrap {
    display: flex;
    justify-content: center;
    grid-column: 1/-1;
  }
  .tell_details-box .form-btn-wrap .btn {
    max-width: 270px;
  }
  .popup-quiz .quiz-content {
    padding: 60px 0;
  }
  .popup-quiz .quiz-item {
    margin: 6px;
    padding: 20px 25px;
    font-size: inherit;
  }
  .popup-quiz .quiz-item .circle {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  .popup-quiz .quiz-final .container {
    display: block;
  }
  .popup-quiz .quiz-final .logo-img {
    display: none;
  }
  .popup-quiz .quiz-final .left-side,
  .popup-quiz .quiz-final .right-side {
    margin: auto;
    max-width: 400px;
  }
  .popup-quiz .quiz-final {
    background-image: none;
  }
  .prod_panel_mini-box .form-title {
    font-size: 11px;
  }
  .prod_panel_mini-box .price-el {
    font-size: 6px;
  }
  .prod_panel_big-box .container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px 10px;
  }
  .prod_panel-box .form-input input {
    height: 50px;
  }
}
@media (max-width: 767.98px) {
  .h1 {
    font-size: 36px;
  }
  .h2 {
    font-size: 30px;
  }
  .h3 {
    font-size: 22px;
  }
  .h4 {
    font-size: 18px;
  }
  .header-box .btn {
    max-width: 210px;
  }
  .header-box .search-icon {
    max-width: 25px;
  }
  .header-box .logo {
    display: none;
  }
  .popup-menu .l-content .l-item {
    grid-column: 2/3;
  }
  .popup-menu .l-content .l-phones {
    display: grid;
    grid-row: 1/4;
    grid-column: 1/2;
    gap: 5px;
  }
  .popup-menu .l-content .l-phones .l-text {
    margin-left: 0;
  }
  .popup-menu .left-col {
    grid-template-columns: 1fr 1fr;
  }
  .popup-menu .left-col .l-item:not(:last-child) {
    margin-bottom: 10px;
  }
  .popup-menu .btn {
    padding-right: 0;
  }
  .home-box::before {
    background-position-x: 64%;
  }
  .home-box .grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .home-box .grid .s:nth-child(9n+2),
  .home-box .grid .s:nth-child(9n-1) {
    display: none;
  }
  .home-box .home-content {
    min-height: 440px;
  }
  .we_building-box .wb-item {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 13px;
  }
  .we_building-box .wb-item:not(:last-child) {
    padding-right: 25px;
  }
  .we_building-box .right-side .wb-bottom {
    margin-top: 0;
    display: block;
  }
  .we_building-box .right-side .wb-image-1 {
    display: none;
  }
  .we_building-box .wb-item:first-child {
    padding-left: 0;
  }
  .we_building-box .wb-item:last-child {
    padding-right: 0;
  }
  .we_building-box .wb-item .wb-int {
    margin-right: 10px;
  }
  .sl-arrows .sl-arrow {
    font-size: 0;
  }
  .sl-arrows .sl-arrow::before {
    padding-left: 0;
  }
  .tp-box .tp-list .tp-item .h3 {
    max-width: 300px;
  }
  .social_previews-box .slick-general {
    --gap: 20px;
  }
  .footer-box .top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .footer-box .top-row .logo {
    grid-column: 1/-1;
    width: auto;
  }
  .footer-box .top-row .logo {
    margin-bottom: 20px;
  }
  .breadcrumbs {
    padding-top: 30px;
  }
  .details-box .box-middle-row .bm-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 10px 0;
  }
  .details-box .box-middle-row .bm-link {
    margin-left: -18px;
    min-width: 255px;
    height: 40px;
  }
  .details-box .box-middle-row .bm-link,
  .details-box .sl-arrows .sl-arrow {
    font-size: 13px;
  }
  .details-box .sl-arrows {
    width: 100%;
    height: 60px;
  }
  .details-box .sl-arrow {
    width: 50%;
  }
  .price_includes-box .pi-list {
    grid-template-columns: repeat(3, auto 1px);
  }
  .price_includes-box .pi-list .pi-item {
    padding: 8px 10px;
  }
  .price_includes-box .pi-list .pi-item .int {
    margin-right: 10px;
  }
  .options-box .top-row {
    flex-direction: column;
    align-items: center;
  }
  .options-box .top-row .btn {
    margin: 20px 0 0;
    max-width: 250px;
  }
  .options-box .grid-3 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .options-box .h3 {
    margin-bottom: 15px;
  }
  .options-box .options-row {
    margin: 0;
    gap: 0;
  }
  .options-box .options-col {
    margin-bottom: 30px !important;
  }
  .examples-box .top-row {
    flex-direction: column;
    align-items: center;
  }
  .examples-box .top-row .btn {
    margin: 20px 0 0;
    max-width: 250px;
  }
  .faq-box .container {
    display: block;
  }
  .faq-box .left-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    text-align: center;
  }
  .faq-box .left-side .btn {
    max-width: 250px;
  }
  .popup-quiz .quiz-item {
    max-width: 230px;
  }
  .popup-thanks .plane {
    width: 160px;
  }
  .popup-thanks .btn {
    margin-top: 0;
  }
}
@media (max-width: 575.98px) {
  .container, .container-fluid, .container-xl, .container-lg, .container-md, .container-sm {
    padding-left: 20px;
    padding-right: 20px;
  }
  .h1 {
    font-size: 33px;
  }
  .h2 {
    font-size: 24px;
  }
  .h3 {
    font-size: 22px;
  }
  .h4 {
    font-size: 16px;
  }
  .header-box .phone {
    display: none;
  }
  .header-box .hamburger {
    margin-right: 0;
  }
  .header-box .search-icon {
    margin: auto;
  }
  .popup-menu .left-col {
    display: block;
  }
  .popup-menu .left-col .l-item {
    max-width: 270px;
  }
  .popup-menu .left-col .l-item:not(:last-child) {
    margin-bottom: 20px;
  }
  .l-content .l-title {
    margin-bottom: 4px;
  }
  .l-content .l-sub {
    margin-top: 0;
  }
  .popup-menu .menu-content .container {
    grid-template-columns: 1fr;
  }
  .home-box .grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-box .grid .s:nth-child(9n+3),
  .home-box .grid .s:nth-child(9n-2) {
    display: none;
  }
  .home-box .grid .s {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
  }
  .home-box .grid .s.w {
    background: rgba(255, 255, 255, 0.9333333333);
  }
  .home-box .grid .s.hovered {
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0);
  }
  .we_building-box {
    text-align: center;
  }
  .we_building-box .wb-list {
    display: block;
    border: 0;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 330px;
    width: 100%;
  }
  .we_building-box .wb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 17px 0 !important;
    border: 0 !important;
    font-size: inherit;
  }
  .we_building-box .wb-item:not(:last-child) {
    border-bottom: 1px solid #E6E6E6 !important;
  }
  .we_building-box .wb-item .wb-int {
    margin: 0 0 3px;
  }
  .projects-box .pr-title {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 0;
  }
  .projects-box .pr-title .h2 {
    margin-bottom: 14px;
  }
  .projects-box .box-middle-row .bm-link .icon {
    display: none;
  }
  .stages-box .st-item {
    padding: 25px;
    padding-right: 100px;
  }
  .stages-box .st-item .st-image {
    width: 80px;
  }
  .stages-box .st-item .st-image img {
    max-width: 100%;
    height: auto;
  }
  .stages-box .st-item:nth-child(3) .st-image img {
    transform: scale(1.3);
  }
  .twenty_years-box {
    min-height: 450px;
  }
  .twenty_years-box .btn {
    max-width: 240px;
  }
  .technology-box .tp-list .tp-item .img {
    margin-top: 25px;
  }
  .payment-box .tp-item {
    padding: 20px;
    padding-right: 100px;
  }
  .payment-box .tp-item .img {
    max-width: 80px;
    bottom: auto;
  }
  .first_step-box .fs-list .btn {
    width: 100%;
    margin: 10px 0 0;
  }
  .social_previews-box .bm-link .icon {
    display: none;
  }
  .footer-box .top-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }
  .footer-box .top-row .l-item {
    margin-bottom: 20px;
  }
  .footer-box .bottom-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    text-align: center;
  }
  .footer-box .bottom-row .dev {
    margin-top: 20px;
  }
  .details-box .box-middle-row .bm-link .icon {
    width: 20px;
    max-height: 18px;
  }
  .details-box .sl-arrow span.tohide {
    display: none;
  }
  .details-box .box-middle-row .bm-left {
    grid-template-columns: 1fr;
  }
  .details-box .d-content .d-top-item {
    padding: 24px 30px 30px;
  }
  .details-box .d-content .d-first {
    display: block;
  }
  .details-box .d-content .d-first .d-col:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .details-box .d-content .d-variants {
    padding-bottom: 0;
  }
  .details-box .d-content .d-action {
    padding-right: 120px;
  }
  .details-box .d-content .d-action .da-text {
    line-height: 1.4;
  }
  .details-box .d-content .d-action .da-bg {
    max-width: 150px;
  }
  .details-box .d-content .d-middle .dm-value {
    grid-template-columns: 20px 1fr auto;
    gap: 12px;
    padding: 12px 5px;
  }
  .details-box .d-content .d-credits .d-top-item {
    padding-right: 120px;
  }
  .details-box .d-content .d-credits .d-top-item .d-image {
    max-width: 100px;
    margin: 0;
  }
  .details-box .d-content .d-credits .d-item-2 .d-image {
    margin-top: -30px;
  }
  .project_360-box .right-side {
    padding: 30px;
  }
  .project_360-box .right-side .pr-middle p {
    padding: 10px 0;
  }
  .project_360-box .right-side .pr-middle img {
    margin-top: auto;
    margin-left: -25px;
  }
  .price_includes-box .pi-list {
    grid-template-columns: repeat(2, 1fr 1px);
  }
  .price_includes-box .pi-list .v-line:nth-child(6) {
    visibility: visible;
  }
  .price_includes-box .pi-list .v-line:nth-child(4n) {
    visibility: hidden;
  }
  .price_includes-box .pi-list .pi-item:nth-child(n+4) {
    border-top: 1px solid #E6E6E6;
  }
  .excursion-box .ex-form {
    grid-template-columns: 1fr;
  }
  .examples-box .ex-grid {
    grid-template-columns: 1fr 1fr;
  }
  .examples-box .ex-grid .ex-item-big {
    padding-bottom: 50%;
  }
  .faq-box .right-side .faq-title {
    padding: 15px 0;
    grid-template-columns: 20px 1fr 20px;
    gap: 10px;
  }
  .faq-box .right-side .faq-title .f-state::before, .faq-box .right-side .faq-title .f-state::after {
    width: 20px;
  }
  .tell_details-box .h2, .tell_details-box .h4,
  .tell_details-box .td-left {
    text-align: center;
  }
  .tell_details-box .middle {
    display: block;
  }
  .tell_details-box .td-form {
    grid-template-columns: 1fr;
  }
  .tell_details-box .form-btn-wrap .btn {
    max-width: 100%;
  }
  .form-input input, .form-input textarea {
    padding-left: 15px;
  }
  .popup-right .content-element {
    max-width: 440px;
    width: 100%;
  }
  .popup-right .content-element {
    padding: 0 25px 35px;
  }
  .popup-thanks .plane {
    margin-left: -25px;
  }
  .popup-quiz .btns-row {
    gap: 15px;
  }
  .popup-quiz .btn-next .s-n {
    display: none;
  }
  .popup-quiz .quiz-final {
    text-align: center;
  }
  .popup-quiz .quiz-final .rs-title {
    font-size: 16px;
  }
  .popup-quiz .form-politic {
    text-align: center;
  }
  .prod_panel-box {
    background: #fff;
  }
  .prod_panel_big-box {
    box-shadow: 0 0 40px 40px #fff;
  }
  .prod_panel_big-box .container {
    grid-template-columns: 1fr;
  }
  .prod_panel_mini-box .form-title {
    font-size: 10px;
  }
  .prod_panel_mini-box .container {
    grid-template-areas: "a b d" "a c e";
    grid-template-columns: auto 1fr auto;
    gap: 5px 12px;
  }
  .prod_panel_mini-box .form-title:first-child {
    grid-area: a;
  }
  .prod_panel_mini-box .form-title:nth-child(2) {
    grid-area: b;
  }
  .prod_panel_mini-box .form-title:nth-child(3) {
    grid-area: c;
  }
  .prod_panel_mini-box .p-collapse {
    grid-area: d;
    text-align: right;
  }
}
@media (max-width: 379.98px) {
  .header-box .hamburger .icon {
    margin-right: 0;
  }
  .header-box .btn {
    font-size: 13px;
    max-width: 190px;
    padding-right: 0;
  }
  .we_building-box .h2 {
    font-size: 22px;
  }
  .we_building-box .h2 span {
    display: inline;
  }
  .projects-box .project-item .pr-info-list {
    flex-wrap: wrap;
  }
  .stages-box .st-item {
    padding-right: 25px;
  }
  .stages-box .st-item .st-image {
    display: none;
  }
  .stages-box .st-item .st-link {
    font-size: 12px;
  }
  .twenty_years-box {
    background-position-y: 0;
    background-size: auto 560px;
  }
  .payment-box .tp-item .img {
    display: none;
  }
  .details-box .sl-arrows .sl-prev {
    padding-left: 0;
  }
  .details-box .sl-arrows .sl-next {
    padding-right: 0;
  }
  .details-box .box-middle-row .sl-arrow::before {
    margin-top: -3px;
    padding-left: 0;
  }
  .price_includes-box .pi-list {
    margin-top: 10px;
    padding-bottom: 17px;
    grid-template-columns: 1fr;
    border: 0;
  }
  .price_includes-box .pi-list br {
    display: none;
  }
  .price_includes-box .pi-list .v-line {
    display: none;
  }
  .price_includes-box .pi-list .pi-item:nth-child(n+2) {
    border-top: 1px solid #E6E6E6;
  }
  .how_order-box .ho-item .h3 {
    font-size: 22px;
  }
  .how_order-box .ho-item .h3 span {
    display: none;
  }
  .how_order-box .ho-item {
    padding: 30px 20px;
  }
  .how_order-box .ho-item .mini-int {
    top: 10px;
    left: 8px;
    font-size: 11px;
  }
  .how_order-box .ho-item .hi-sub {
    margin-bottom: 30px;
  }
}