/**
  Lark Sass
  Version: 4.0.3
  Author: Dima Boro
  Website: theboro.ru

  Description:
  This library contains general styles and settings
  that can be used when developing web interfaces using this library.
*/
/**
  Overridden styles
*/
:root {
  --img-cover-bg: #333;
  --container-padding-x: 15px;
  --gap: 20px;
  --scrollbar-width: 17px;
  --xxs: 0;
  --xs: 365px;
  --sm: 576px;
  --md: 768px;
  --lg: 992px;
  --xl: 1200px;
  --xxl: 1500px;
}
@media (max-width: 767.98px) {
  :root {
    --scrollbar-width: 0;
  }
}
* {
  margin: 0;
  padding: 0;
  outline: none;
  border: 0;
  box-sizing: border-box;
}
input,
textarea,
select,
pre,
blockquote,
button {
  font: inherit;
  background: transparent;
}
input {
  appearance: none;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}
input[type=number] {
  appearance: textfield;
}
textarea {
  resize: none;
}
:focus {
  outline: 0;
}
[hidden] {
  display: none;
}
[draggable=false] {
  user-select: none;
}
img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
img,
svg {
  pointer-events: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font: inherit;
}
a {
  color: currentColor;
}
a,
a:hover {
  text-decoration: none;
}
li {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button {
  cursor: pointer;
}
@keyframes round {
  0% {
    transform: none;
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 0.95;
  }
}
@keyframes dots {
  0% {
    content: ".";
  }
  50% {
    content: "..";
  }
  66%, 100% {
    content: "...";
  }
}
@keyframes sheens {
  0%, 79% {
    transform: rotateZ(120deg) translate(-5em, 7.5em);
    opacity: 0;
  }
  80% {
    transform: rotateZ(120deg) translate(-5em, 7.5em);
    opacity: 1;
  }
  95% {
    transform: rotateZ(120deg) translate(1em, -11em);
    opacity: 1;
  }
  100% {
    transform: rotateZ(120deg) translate(1em, -9em);
    opacity: 0;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.container,
.container-full {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding-x, 15px);
  padding-right: var(--container-padding-x, 15px);
}
@media (min-width: 365px) {
  .container {
    max-width: 365px;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 375px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1500px) {
  .container {
    max-width: 1275px;
  }
}
.visible-xxs {
  display: none !important;
}
.hidden-xxs {
  display: none !important;
}
@media (max-width: 364.98px) {
  .visible-xs {
    display: none !important;
  }
}
@media (min-width: 365px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (max-width: 575.98px) {
  .visible-sm {
    display: none !important;
  }
}
@media (min-width: 576px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  .visible-md {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .hidden-md {
    display: none !important;
  }
}
@media (max-width: 991.98px) {
  .visible-lg {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .hidden-lg {
    display: none !important;
  }
}
@media (max-width: 1199.98px) {
  .visible-xl {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-xl {
    display: none !important;
  }
}
@media (max-width: 1499.98px) {
  .visible-xxl {
    display: none !important;
  }
}
@media (min-width: 1500px) {
  .hidden-xxl {
    display: none !important;
  }
}
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap, 20px);
}
.grid-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--gap, 20px);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap, 20px);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap, 20px);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap, 20px);
}
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--gap, 20px);
}
.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--gap, 20px);
}
@media (min-width: 365px) {
  .grid-xs {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-xs-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-xs-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-xs-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-xs-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-xs-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-xs-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--gap, 20px);
  }
}
@media (min-width: 576px) {
  .grid-sm {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-sm-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-sm-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-sm-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-sm-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-sm-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-sm-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--gap, 20px);
  }
}
@media (min-width: 768px) {
  .grid-md {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-md-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-md-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-md-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-md-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-md-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-md-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--gap, 20px);
  }
}
@media (min-width: 992px) {
  .grid-lg {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-lg-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-lg-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-lg-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-lg-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-lg-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-lg-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--gap, 20px);
  }
}
@media (min-width: 1200px) {
  .grid-xl {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-xl-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-xl-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-xl-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-xl-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-xl-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-xl-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--gap, 20px);
  }
}
@media (min-width: 1500px) {
  .grid-xxl {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-xxl-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-xxl-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-xxl-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-xxl-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-xxl-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--gap, 20px);
  }
  .grid-xxl-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--gap, 20px);
  }
}
.col-full {
  grid-column: 1/-1;
}
.col {
  grid-column: auto/span 1;
}
.col-1 {
  grid-column: auto/span 1;
}
.col-2 {
  grid-column: auto/span 2;
}
.col-3 {
  grid-column: auto/span 3;
}
.col-4 {
  grid-column: auto/span 4;
}
.col-5 {
  grid-column: auto/span 5;
}
.col-6 {
  grid-column: auto/span 6;
}
.col-7 {
  grid-column: auto/span 7;
}
.col-8 {
  grid-column: auto/span 8;
}
.col-9 {
  grid-column: auto/span 9;
}
.col-10 {
  grid-column: auto/span 10;
}
.col-11 {
  grid-column: auto/span 11;
}
.col-12 {
  grid-column: auto/span 12;
}
.col-start-1 {
  grid-column-start: 1;
}
.col-start-2 {
  grid-column-start: 2;
}
.col-start-3 {
  grid-column-start: 3;
}
.col-start-4 {
  grid-column-start: 4;
}
.col-start-5 {
  grid-column-start: 5;
}
.col-start-6 {
  grid-column-start: 6;
}
.col-start-7 {
  grid-column-start: 7;
}
.col-start-8 {
  grid-column-start: 8;
}
.col-start-9 {
  grid-column-start: 9;
}
.col-start-10 {
  grid-column-start: 10;
}
.col-start-11 {
  grid-column-start: 11;
}
@media (min-width: 365px) {
  .col-xs-full {
    grid-column: 1/-1;
  }
  .col-xs {
    grid-column: auto/span 1;
  }
  .col-xs-1 {
    grid-column: auto/span 1;
  }
  .col-xs-2 {
    grid-column: auto/span 2;
  }
  .col-xs-3 {
    grid-column: auto/span 3;
  }
  .col-xs-4 {
    grid-column: auto/span 4;
  }
  .col-xs-5 {
    grid-column: auto/span 5;
  }
  .col-xs-6 {
    grid-column: auto/span 6;
  }
  .col-xs-7 {
    grid-column: auto/span 7;
  }
  .col-xs-8 {
    grid-column: auto/span 8;
  }
  .col-xs-9 {
    grid-column: auto/span 9;
  }
  .col-xs-10 {
    grid-column: auto/span 10;
  }
  .col-xs-11 {
    grid-column: auto/span 11;
  }
  .col-xs-12 {
    grid-column: auto/span 12;
  }
  .col-start-xs-1 {
    grid-column-start: 1;
  }
  .col-start-xs-2 {
    grid-column-start: 2;
  }
  .col-start-xs-3 {
    grid-column-start: 3;
  }
  .col-start-xs-4 {
    grid-column-start: 4;
  }
  .col-start-xs-5 {
    grid-column-start: 5;
  }
  .col-start-xs-6 {
    grid-column-start: 6;
  }
  .col-start-xs-7 {
    grid-column-start: 7;
  }
  .col-start-xs-8 {
    grid-column-start: 8;
  }
  .col-start-xs-9 {
    grid-column-start: 9;
  }
  .col-start-xs-10 {
    grid-column-start: 10;
  }
  .col-start-xs-11 {
    grid-column-start: 11;
  }
}
@media (min-width: 576px) {
  .col-sm-full {
    grid-column: 1/-1;
  }
  .col-sm {
    grid-column: auto/span 1;
  }
  .col-sm-1 {
    grid-column: auto/span 1;
  }
  .col-sm-2 {
    grid-column: auto/span 2;
  }
  .col-sm-3 {
    grid-column: auto/span 3;
  }
  .col-sm-4 {
    grid-column: auto/span 4;
  }
  .col-sm-5 {
    grid-column: auto/span 5;
  }
  .col-sm-6 {
    grid-column: auto/span 6;
  }
  .col-sm-7 {
    grid-column: auto/span 7;
  }
  .col-sm-8 {
    grid-column: auto/span 8;
  }
  .col-sm-9 {
    grid-column: auto/span 9;
  }
  .col-sm-10 {
    grid-column: auto/span 10;
  }
  .col-sm-11 {
    grid-column: auto/span 11;
  }
  .col-sm-12 {
    grid-column: auto/span 12;
  }
  .col-start-sm-1 {
    grid-column-start: 1;
  }
  .col-start-sm-2 {
    grid-column-start: 2;
  }
  .col-start-sm-3 {
    grid-column-start: 3;
  }
  .col-start-sm-4 {
    grid-column-start: 4;
  }
  .col-start-sm-5 {
    grid-column-start: 5;
  }
  .col-start-sm-6 {
    grid-column-start: 6;
  }
  .col-start-sm-7 {
    grid-column-start: 7;
  }
  .col-start-sm-8 {
    grid-column-start: 8;
  }
  .col-start-sm-9 {
    grid-column-start: 9;
  }
  .col-start-sm-10 {
    grid-column-start: 10;
  }
  .col-start-sm-11 {
    grid-column-start: 11;
  }
}
@media (min-width: 768px) {
  .col-md-full {
    grid-column: 1/-1;
  }
  .col-md {
    grid-column: auto/span 1;
  }
  .col-md-1 {
    grid-column: auto/span 1;
  }
  .col-md-2 {
    grid-column: auto/span 2;
  }
  .col-md-3 {
    grid-column: auto/span 3;
  }
  .col-md-4 {
    grid-column: auto/span 4;
  }
  .col-md-5 {
    grid-column: auto/span 5;
  }
  .col-md-6 {
    grid-column: auto/span 6;
  }
  .col-md-7 {
    grid-column: auto/span 7;
  }
  .col-md-8 {
    grid-column: auto/span 8;
  }
  .col-md-9 {
    grid-column: auto/span 9;
  }
  .col-md-10 {
    grid-column: auto/span 10;
  }
  .col-md-11 {
    grid-column: auto/span 11;
  }
  .col-md-12 {
    grid-column: auto/span 12;
  }
  .col-start-md-1 {
    grid-column-start: 1;
  }
  .col-start-md-2 {
    grid-column-start: 2;
  }
  .col-start-md-3 {
    grid-column-start: 3;
  }
  .col-start-md-4 {
    grid-column-start: 4;
  }
  .col-start-md-5 {
    grid-column-start: 5;
  }
  .col-start-md-6 {
    grid-column-start: 6;
  }
  .col-start-md-7 {
    grid-column-start: 7;
  }
  .col-start-md-8 {
    grid-column-start: 8;
  }
  .col-start-md-9 {
    grid-column-start: 9;
  }
  .col-start-md-10 {
    grid-column-start: 10;
  }
  .col-start-md-11 {
    grid-column-start: 11;
  }
}
@media (min-width: 992px) {
  .col-lg-full {
    grid-column: 1/-1;
  }
  .col-lg {
    grid-column: auto/span 1;
  }
  .col-lg-1 {
    grid-column: auto/span 1;
  }
  .col-lg-2 {
    grid-column: auto/span 2;
  }
  .col-lg-3 {
    grid-column: auto/span 3;
  }
  .col-lg-4 {
    grid-column: auto/span 4;
  }
  .col-lg-5 {
    grid-column: auto/span 5;
  }
  .col-lg-6 {
    grid-column: auto/span 6;
  }
  .col-lg-7 {
    grid-column: auto/span 7;
  }
  .col-lg-8 {
    grid-column: auto/span 8;
  }
  .col-lg-9 {
    grid-column: auto/span 9;
  }
  .col-lg-10 {
    grid-column: auto/span 10;
  }
  .col-lg-11 {
    grid-column: auto/span 11;
  }
  .col-lg-12 {
    grid-column: auto/span 12;
  }
  .col-start-lg-1 {
    grid-column-start: 1;
  }
  .col-start-lg-2 {
    grid-column-start: 2;
  }
  .col-start-lg-3 {
    grid-column-start: 3;
  }
  .col-start-lg-4 {
    grid-column-start: 4;
  }
  .col-start-lg-5 {
    grid-column-start: 5;
  }
  .col-start-lg-6 {
    grid-column-start: 6;
  }
  .col-start-lg-7 {
    grid-column-start: 7;
  }
  .col-start-lg-8 {
    grid-column-start: 8;
  }
  .col-start-lg-9 {
    grid-column-start: 9;
  }
  .col-start-lg-10 {
    grid-column-start: 10;
  }
  .col-start-lg-11 {
    grid-column-start: 11;
  }
}
@media (min-width: 1200px) {
  .col-xl-full {
    grid-column: 1/-1;
  }
  .col-xl {
    grid-column: auto/span 1;
  }
  .col-xl-1 {
    grid-column: auto/span 1;
  }
  .col-xl-2 {
    grid-column: auto/span 2;
  }
  .col-xl-3 {
    grid-column: auto/span 3;
  }
  .col-xl-4 {
    grid-column: auto/span 4;
  }
  .col-xl-5 {
    grid-column: auto/span 5;
  }
  .col-xl-6 {
    grid-column: auto/span 6;
  }
  .col-xl-7 {
    grid-column: auto/span 7;
  }
  .col-xl-8 {
    grid-column: auto/span 8;
  }
  .col-xl-9 {
    grid-column: auto/span 9;
  }
  .col-xl-10 {
    grid-column: auto/span 10;
  }
  .col-xl-11 {
    grid-column: auto/span 11;
  }
  .col-xl-12 {
    grid-column: auto/span 12;
  }
  .col-start-xl-1 {
    grid-column-start: 1;
  }
  .col-start-xl-2 {
    grid-column-start: 2;
  }
  .col-start-xl-3 {
    grid-column-start: 3;
  }
  .col-start-xl-4 {
    grid-column-start: 4;
  }
  .col-start-xl-5 {
    grid-column-start: 5;
  }
  .col-start-xl-6 {
    grid-column-start: 6;
  }
  .col-start-xl-7 {
    grid-column-start: 7;
  }
  .col-start-xl-8 {
    grid-column-start: 8;
  }
  .col-start-xl-9 {
    grid-column-start: 9;
  }
  .col-start-xl-10 {
    grid-column-start: 10;
  }
  .col-start-xl-11 {
    grid-column-start: 11;
  }
}
@media (min-width: 1500px) {
  .col-xxl-full {
    grid-column: 1/-1;
  }
  .col-xxl {
    grid-column: auto/span 1;
  }
  .col-xxl-1 {
    grid-column: auto/span 1;
  }
  .col-xxl-2 {
    grid-column: auto/span 2;
  }
  .col-xxl-3 {
    grid-column: auto/span 3;
  }
  .col-xxl-4 {
    grid-column: auto/span 4;
  }
  .col-xxl-5 {
    grid-column: auto/span 5;
  }
  .col-xxl-6 {
    grid-column: auto/span 6;
  }
  .col-xxl-7 {
    grid-column: auto/span 7;
  }
  .col-xxl-8 {
    grid-column: auto/span 8;
  }
  .col-xxl-9 {
    grid-column: auto/span 9;
  }
  .col-xxl-10 {
    grid-column: auto/span 10;
  }
  .col-xxl-11 {
    grid-column: auto/span 11;
  }
  .col-xxl-12 {
    grid-column: auto/span 12;
  }
  .col-start-xxl-1 {
    grid-column-start: 1;
  }
  .col-start-xxl-2 {
    grid-column-start: 2;
  }
  .col-start-xxl-3 {
    grid-column-start: 3;
  }
  .col-start-xxl-4 {
    grid-column-start: 4;
  }
  .col-start-xxl-5 {
    grid-column-start: 5;
  }
  .col-start-xxl-6 {
    grid-column-start: 6;
  }
  .col-start-xxl-7 {
    grid-column-start: 7;
  }
  .col-start-xxl-8 {
    grid-column-start: 8;
  }
  .col-start-xxl-9 {
    grid-column-start: 9;
  }
  .col-start-xxl-10 {
    grid-column-start: 10;
  }
  .col-start-xxl-11 {
    grid-column-start: 11;
  }
}
img,
svg {
  user-select: none;
  pointer-events: none;
}
img.to-svg {
  opacity: 0;
}
.wrap-img-cover {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.wrap-img-cover.hover {
  cursor: pointer;
  background: var(--img-cover-bg, #333);
}
.wrap-img-cover.hover video img {
  transition: all 0.25s;
}
.wrap-img-cover.hover .show-more {
  position: absolute;
  z-index: 2;
  transition: opacity 0.25s;
  pointer-events: none;
  opacity: 0;
}
.wrap-img-cover.hover:hover video,
.wrap-img-cover.hover:hover img {
  transform: scale(1.05);
  opacity: 0.2;
  filter: blur(3px);
}
.wrap-img-cover.hover:hover .show-more {
  opacity: 1;
}
.wrap-img-cover img,
.wrap-img-cover video,
.img-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.25s;
  pointer-events: none;
  object-fit: cover;
}
*::selection {
  background: #333;
  color: #fff;
}
body,
html {
  scroll-behavior: smooth;
}
html {
  touch-action: manipulation;
  overflow-x: hidden;
}
html.noscroll {
  overflow: hidden !important;
  padding-right: var(--scrollbar-width);
}
body:not(.preload) .preload-box {
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
}
.preload * {
  transition: none !important;
}
[class*=-box] {
  position: relative;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.sticky {
  position: sticky;
}
[tabs-here] [data-tab-name]:not(.tab-active) {
  cursor: pointer;
}
[tabs-here] [data-tab-content]:not(.tab-active) {
  display: none;
}
[toggling] [toggle-click] {
  cursor: pointer;
}
[toggling] [toggle-click] .icon {
  flex-shrink: 0;
  transition: transform 0.2s;
}
[toggling]:not(.initialized):not(.active) [toggle-el] {
  display: none;
}
[toggling].active [toggle-click] .icon {
  transform: rotate(180deg);
}
/**
  Current general variables
*/
/**
  Overridden styles
*/
@font-face {
  font-family: "Gilroy";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: local("Gilroy"), url("/assets/Gilroy-Bold-2a9aa52d.woff2") format("woff2"), url("/assets/Gilroy-Bold-570bd4a6.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: local("Gilroy"), url("../fonts/Gilroy-SemiBold.woff2") format("woff2"), url("../fonts/Gilroy-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: local("Gilroy"), url("/assets/Gilroy-Medium-eef7281c.woff2") format("woff2"), url("/assets/Gilroy-Medium-d33fe7a2.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: local("Gilroy"), url("../fonts/Gilroy-Italic.woff2") format("woff2"), url("../fonts/Gilroy-Italic.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: local("Gilroy"), url("/assets/Gilroy-Regular-85863738.woff2") format("woff2"), url("/assets/Gilroy-Regular-51c52013.woff") format("woff");
}
/* ========= General ========= */
::selection {
  background: #fcdf00;
  color: #303030;
}
body {
  font: 400 16px/1.5 "Gilroy", sans-serif;
  color: #303030;
}
.wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 1920px;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.1);
  overflow-x: clip;
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  transition: all 0.15s linear;
  text-align: center;
  text-decoration: none !important;
  color: #303030 !important;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 600;
}
.btn span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn.btn-toggle.active .b-active {
  display: none;
}
.btn.btn-toggle:not(.active) .b-else {
  display: none;
}
.btn {
  height: 82px;
  padding: 0 49px;
  background: #fcdf00;
}
.btn:hover {
  background: #fcca00;
}
.btn-mini {
  height: 59px;
  padding: 0 45px;
  font-size: 18px;
}
.btn-nano {
  height: 52px;
  padding: 0 30px;
  letter-spacing: 0.16px;
  font-size: 12px;
}
.sheens {
  position: relative;
  overflow: hidden;
}
.sheens::before {
  position: absolute;
  z-index: 2;
  top: -50%;
  right: -100%;
  bottom: -50%;
  left: -100%;
  content: "";
  animation: sheens 3.5s infinite;
  opacity: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0) 80%);
}
.delay-1::before {
  animation-delay: 0.3s;
}
.delay-2::before {
  animation-delay: 0.75s;
}
.delay-3::before {
  animation-delay: 1.2s;
}
.form .form-input {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 15px;
}
.form .form-input .form-title {
  margin-left: 25px;
  margin-bottom: 7px;
  color: #a3a3a3;
  font-size: 13px;
  line-height: 184.615%;
  letter-spacing: 0.12px;
}
.form .form-input input,
.form .form-input textarea,
.form .form-input select {
  display: block;
  width: 100%;
  min-height: 75px;
  padding: 0 27px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  border-radius: 17px;
  border: 2px solid #efefef;
  background: #ffffff;
  transition: all 0.25s;
}
.form .form-input input::placeholder,
.form .form-input textarea::placeholder,
.form .form-input select::placeholder {
  color: #808080;
}
.form .form-input input:focus,
.form .form-input textarea:focus,
.form .form-input select:focus {
  border-color: #ccc;
}
.form .form-input input:focus, .form .form-input input.valid,
.form .form-input textarea:focus,
.form .form-input textarea.valid,
.form .form-input select:focus,
.form .form-input select.valid {
  color: currentColor;
}
.form .form-input input.invalid, .form .form-input input.invalid::placeholder,
.form .form-input textarea.invalid,
.form .form-input textarea.invalid::placeholder,
.form .form-input select.invalid,
.form .form-input select.invalid::placeholder {
  color: #eb5757;
}
.form .form-input textarea {
  padding-top: 30px;
  min-height: 124px;
}
.form .form-big-title {
  padding: 10px 0 15px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.12px;
}
.form .form-social-list {
  gap: 15px;
  margin-bottom: 20px;
}
.form .fs-item {
  padding: 15px 0 12px;
  border-radius: 17px;
  border: 2px solid #efefef;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12px;
  text-align: center;
  transition: border-color 0.25s;
}
.form .fs-item.tab-active {
  border-color: #fcdf00;
}
.form .fs-item img {
  margin-bottom: 4px;
}
.form .btn {
  margin-top: 5px;
  width: 100%;
}
.form .form-policy {
  display: flex;
  align-items: center;
  margin: 20px 0 0;
  margin-left: 32px;
  color: #a3a3a3;
  font-size: 12px;
  line-height: 166.667%;
  letter-spacing: 0.12px;
  cursor: pointer;
}
.form .form-options input:not(:focus) ~ .options-list {
  visibility: hidden;
  opacity: 0;
}
.form .form-options input:focus ~ .icon:not(.valid-icon) {
  transform: rotate(180deg);
}
.form .form-options .options-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 300px;
  min-height: 44px;
  padding: 15px 21px;
  background: #fff;
  overflow: hidden;
  overflow-y: auto;
  border-radius: 17px;
  z-index: 10;
  transition: visibility 0.25s, opacity 0.25s;
  border-top: none;
}
.form .form-options .options-value {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 156.666%;
  transition: color 0.2s;
  color: #808080;
  cursor: pointer;
}
.form .form-options .options-value.active, .form .form-options .options-value:hover {
  color: #303030;
}
.form .form-options .icon {
  position: absolute;
  top: 56px;
  right: 28px;
  transition: transform 0.25s;
}
.form input[type=checkbox],
.form input[type=radio] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 21px;
  background: #fff no-repeat 50%;
  border-radius: 3px;
  outline: 0;
  transition-property: background-color border;
  transition-duration: 0.25s;
  appearance: none;
  cursor: pointer;
}
.form input[type=checkbox]:checked,
.form input[type=radio]:checked {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%228%22%20viewBox%3D%220%200%2010%208%22%20fill%3D%22none%22%3E%0A%20%20%3Cpath%20d%3D%22M9.77093%200.231509C9.70478%200.158151%209.62608%200.099926%209.53938%200.0601915C9.45267%200.0204571%209.35966%200%209.26573%200C9.1718%200%209.07879%200.0204571%208.99208%200.0601915C8.90538%200.099926%208.82668%200.158151%208.76053%200.231509L3.45949%206.07013L1.23235%203.61259C1.16367%203.53961%201.08259%203.48223%200.993752%203.44372C0.904911%203.40521%200.810045%203.38633%200.714569%203.38814C0.619093%203.38996%200.524877%203.41244%200.437301%203.45431C0.349725%203.49618%200.270503%203.55661%200.204159%203.63215C0.137815%203.7077%200.085649%203.79687%200.050638%203.89459C0.015627%203.99231%20-0.00154303%204.09666%200.000108809%204.20167C0.00176064%204.30669%200.0222019%204.41032%200.0602651%204.50665C0.0983283%204.60298%200.153268%204.69012%200.221948%204.76309L2.95429%207.76849C3.02044%207.84185%203.09914%207.90007%203.18585%207.93981C3.27256%207.97954%203.36556%208%203.45949%208C3.55343%208%203.64643%207.97954%203.73314%207.93981C3.81985%207.90007%203.89855%207.84185%203.96469%207.76849L9.77093%201.38201C9.84315%201.30872%209.9008%201.21977%209.94022%201.12077C9.97965%201.02176%2010%200.914848%2010%200.806761C10%200.698675%209.97965%200.59176%209.94022%200.492754C9.9008%200.393749%209.84315%200.304798%209.77093%200.231509Z%22%20fill%3D%22black%22%2F%3E%0A%3C%2Fsvg%3E");
}
.form.loading .form-input,
.form.loading .form-file,
.form.loading .btn,
.form.loading input,
.form.loading select,
.form.loading textarea,
.form.loading button, .form.done .form-input,
.form.done .form-file,
.form.done .btn,
.form.done input,
.form.done select,
.form.done textarea,
.form.done button {
  pointer-events: none;
}
.form.loading .btn, .form.done .btn {
  color: transparent !important;
}
.form.loading .btn .icon, .form.done .btn .icon {
  display: none;
}
.form.loading {
  pointer-events: none;
  animation: blink 0.5s infinite alternate;
}
.form.loading .btn {
  filter: grayscale(100%);
}
.form.loading .btn::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #fff;
  border-left-color: transparent;
  border-right-color: transparent;
  animation: round 1s linear infinite;
}
.form.done .btn::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.1454 0L5.01224 6.32097L1.99556 3.24593L0 5.03209L4.8736 10L14 1.92022L12.1454 0Z' fill='white'/%3E%3C/svg%3E") no-repeat 50% 50%;
  background-size: contain;
  opacity: 0.7;
}
.form-white {
  padding: 38px 47px;
  border-radius: 15px;
  background: #fff;
}
.form-white .form-input input,
.form-white .form-input textarea,
.form-white .form-input select {
  background: #f4f4f4;
}
.form-white input[type=checkbox],
.form-white input[type=radio] {
  background-color: #f4f4f4;
}
.swiper-button {
  position: relative;
  flex-shrink: 0;
  height: 60px;
  width: 60px;
  cursor: pointer;
  border-radius: 50%;
  transition: transform 0.25s, opacity 0.25s;
  z-index: 5;
  -webkit-tap-highlight-color: transparent;
}
.swiper-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/assets/sw_arrow-74b8038d.svg") no-repeat 50%;
  background-size: contain;
}
.swiper-button:hover {
  transform: scale(1.1);
}
.swiper-button-prev {
  order: -1;
}
.swiper-button-prev::before {
  transform: scale(-1);
}
.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}
.swiper-scrollbar {
  background: #f4f4f4;
  width: 100%;
  height: 7px;
  border-radius: 4px;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  background: #fcc503;
  border-radius: 4px;
}
body .lg-backdrop {
  background: rgba(27, 27, 27, 0.85);
  backdrop-filter: blur(2.5px);
}
body .lg-outer .lg-thumb-outer {
  background: transparent;
}
body .lg-outer .lg-thumb-item.active,
body .lg-outer .lg-thumb-item:hover {
  border-color: #fcdf00;
}
a,
.a {
  transition: color 0.2s, opacity 0.2s;
  text-decoration: none;
  cursor: pointer;
  color: currentColor;
}
a:hover,
.a:hover {
  color: #fcca00;
}
a.secondary:hover {
  color: #75c026;
}
.link {
  text-decoration: underline;
  color: #fcdf00;
  cursor: pointer;
  transition: color 0.2s, opacity 0.2s;
}
.link:hover {
  color: #fcca00;
  text-decoration: underline;
}
.link.secondary {
  color: #8fc026;
}
.link.secondary:hover {
  color: #75c026;
}
.link img,
.link svg {
  margin-left: 8px;
}
.color,
.primary {
  color: #fcdf00;
}
.secondary {
  color: #8fc026;
}
.mark-yellow {
  background: #fcdf00;
  padding: 0 0.32em 0.2em;
  font-weight: 700;
  letter-spacing: -0.2px;
  border-radius: 5px;
  line-height: 1;
}
.underline {
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 3px;
  text-decoration-color: #fcdf00;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.h {
  letter-spacing: -0.02em;
}
.h1 b,
.h2 b,
.h3 b,
.h4 b,
.h5 b,
.h6 b,
.h b {
  font-weight: 600;
}
.h1 {
  font-size: 60px;
  line-height: 1;
  font-weight: 600;
}
.h2 {
  font-size: 56px;
  line-height: 115.179%;
}
.h3 {
  font-size: 48px;
  line-height: 134.3%;
}
.h4 {
  font-size: 42px;
  line-height: 115.179%;
}
.h5 {
  font-size: 24px;
  line-height: 115.179%;
}
b,
strong {
  font-weight: 700;
}
p:not(:last-child),
.p:not(:last-child) {
  margin-bottom: 1.5em;
}
.styled-text {
  font-size: 16px;
  line-height: 150%;
}
.styled-text h1,
.styled-text h2,
.styled-text h3,
.styled-text h4,
.styled-text h5,
.styled-text h6 {
  margin: 2em 0 1.75em;
  font-weight: 700;
  letter-spacing: 0;
}
.styled-text h1 {
  font-size: 35px;
}
.styled-text h2 {
  font-size: 27px;
}
.styled-text h3 {
  font-size: 24px;
}
.styled-text h4 {
  font-size: 18px;
}
.styled-text ul,
.styled-text ol {
  margin: 10px 0 20px;
}
.styled-text li {
  margin: 0;
}
.styled-text ul li {
  position: relative;
  display: flex;
  padding-left: 21px;
}
.styled-text ul li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0.45em;
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 50%;
}
.styled-text ol li {
  list-style: decimal outside;
  margin-left: 20px;
}
.styled-text p:not(:last-child) {
  margin-bottom: 1.4em;
}
.styled-text > *:first-child {
  margin-top: 0;
}
.styled-text > *:last-child {
  margin-bottom: 0;
}
.header-box {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  transition: box-shadow 0.25s, backround 0.25s;
}
.header-box.sticky {
  background: rgba(255, 255, 255, 0.8666666667);
  box-shadow: 0 11px 19px rgba(14, 12, 36, 0.05);
  backdrop-filter: blur(15px);
}
.header-row {
  display: flex;
  align-items: center;
  height: 80px;
  color: #808080;
  font-size: 14px;
}
.header-row .logo {
  display: block;
}
.header-row .logo:hover {
  opacity: 0.7;
}
.header-row .col-sublogo {
  margin-left: 36px;
  font-weight: 500;
  max-width: 310px;
  line-height: 150%;
}
.header-row .col-phone-text {
  display: flex;
  align-items: center;
  line-height: 150%;
  margin: auto;
  padding-right: 26px;
}
.header-row .col-phone-text .phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-right: 18px;
  width: 35px;
  height: 35px;
  background: #f3f3f3;
  border-radius: 50%;
}
.header-row .col-contact {
  margin-right: 32px;
  text-align: right;
  font-size: 13px;
}
.header-row .col-contact a {
  font-size: 22px;
  font-weight: 600;
  color: #303030;
  letter-spacing: -0.44px;
}
.header-row .col-contact a:hover {
  color: #8fc026;
}
.header-row .col-icons a {
  width: 35px;
}
.icons {
  display: flex;
}
.icons a {
  transition: opacity 0.2s;
  margin-right: 8px;
}
.icons a:last-child {
  margin-right: 0;
}
.icons a:hover {
  opacity: 0.8;
}
.header-row .col-hamburger {
  margin-left: 52px;
}
.hamburger-icon {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.hamburger-icon path {
  transition: 0.25s;
}
.hamburger-icon:hover path {
  fill: #8fc026;
}
.popup-boxes > .popup:not(.active) {
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
}
.popup-boxes > .popup:not(.active) .popup-content {
  opacity: 0;
}
.popup-boxes > .popup:not(.active).to-right .popup-content {
  transform: translateX(-80%);
}
.popup-boxes > .popup:not(.active).to-left .popup-content {
  transform: translateX(80%);
}
.popup-boxes > .popup:not(.active).to-top .popup-content {
  transform: translateY-(80%);
}
.popup-boxes > .popup:not(.active).to-left .popup-content {
  transform: translateY(80%);
}
.popup {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 50px 10px;
  cursor: pointer;
  transition: 0.35s;
  background: rgba(48, 48, 48, 0.5);
  -webkit-tap-highlight-color: transparent;
}
.popup > * {
  cursor: initial;
}
.popup .close-popup {
  cursor: pointer;
}
.popup .container {
  position: relative;
  margin: auto;
  pointer-events: none;
}
.popup .close-btn {
  position: absolute;
  z-index: 5;
  top: 36px;
  right: 36px;
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
  background: url(/assets/close-88bee53e.svg) no-repeat 50%;
}
.popup .close-btn:hover {
  transform: rotate(90deg) scale(1.1);
}
.popup .popup-content {
  position: relative;
  padding: 41px 50px 60px;
  transition: 0.35s;
  pointer-events: auto;
  border-radius: 24px;
  background: #fff no-repeat 100% 100%;
}
.popup .popup-title {
  margin-bottom: 12px;
  letter-spacing: -0.48px;
  font-size: 24px;
  font-weight: 600;
  line-height: 135%;
}
.popup .p-yellow-info {
  max-width: 480px;
  padding: 28px 35px;
  letter-spacing: -0.48px;
  border: 2px solid #fcdf00;
  border-radius: 17px;
  font-size: 23px;
  font-weight: 600;
  line-height: 135%;
}
.popup-price .p-man-row img {
  margin-top: -8px;
  margin-left: -26px;
}
.popup-price .popup-title:not(:first-child) {
  margin-top: 34px;
}
.popup-price ul {
  max-width: 520px;
}
@media (min-width: 1500px) {
  .popup-price .col-right {
    margin-left: -23px;
  }
}
.popup-price .py-last {
  max-width: 526px;
  margin: 30px 0 47px;
}
.popup-exit .popup-content {
  background-image: url(/assets/p_price_bg-36103141.png);
}
.popup-exit .h2 span {
  font-size: 0.8571em;
}
.popup-exit .sub-title {
  max-width: 735px;
  margin: 26px 0 30px;
  font-size: 20px;
}
.popup-exit .sub-title b {
  font-weight: 600;
}
.popup-exit .bottom-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 963px;
}
.popup-exit .p-yellow-info {
  max-width: 435px;
}
@media (min-width: 1500px) {
  .popup-exit .p-yellow-info {
    margin-top: -11px;
  }
}
.popup-form .popup-content {
  max-width: 520px;
  margin: auto;
  background: #f4f4f4;
}
.popup-form .sub-h {
  margin: 15px 0 17px;
  font-size: 23px;
  line-height: 140%;
}
.popup-form .sub-h b {
  font-weight: 600;
}
.popup-form .sub-mini {
  max-width: 353px;
  margin-bottom: 24px;
  color: #757373;
  line-height: 140%;
}
.popup-menu {
  margin-right: auto;
  padding: 0;
}
.popup-menu .popup-menu-wrapper {
  pointer-events: none;
}
.popup-menu .popup-content {
  position: relative;
  max-width: 488px;
  min-height: 100vh;
  padding: 36px 56px 40px;
  border-radius: 0;
}
.popup-menu .close-btn {
  top: 29px;
  right: 26px;
}
.popup-menu .sublogo-row {
  max-width: 310px;
  margin: 20px 0 45px;
  color: #ababab;
  font-size: 14px;
  font-weight: 500;
}
.popup-menu .menu-list {
  display: grid;
  margin-bottom: 34px;
  font-size: 22px;
  font-weight: 600;
  gap: 16px;
}
.popup-menu .menu-list a:not(:hover)::after {
  margin-left: 50px;
  opacity: 0;
}
.popup-menu .menu-list a::after {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: -10px 10px;
  content: "";
  transition: 0.2s;
  background: url(data:image/png;base64,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) no-repeat 50%;
  background-size: contain;
}
.popup-menu .contact {
  display: flex;
  align-items: flex-start;
  margin-top: 56px;
}
.popup-menu .contact img {
  margin-top: 10px;
  margin-right: 33px;
}
.popup-menu .contact .phone {
  display: inline-block;
  letter-spacing: -0.44px;
  font-size: 22px;
  font-weight: 600;
}
.popup-menu .contact .gray-text {
  max-width: 180px;
  margin: 13px 0 12px;
  color: #808080;
  font-size: 13px;
  font-weight: 500;
  line-height: 130%;
}
.popup-menu .contact .icons a {
  width: 35px;
}
.popup-video {
  align-items: flex-end;
  justify-content: flex-start;
  padding: 30px 10px !important;
}
@media (min-width: 768px) {
  .popup-video:not(.full) {
    position: static;
    overflow: hidden;
    pointer-events: none;
  }
  .popup-video:not(.full) .popup-content {
    position: fixed;
    z-index: 400;
    bottom: 20px;
    left: 20px;
    width: 570px;
    height: 315px;
    cursor: pointer;
    pointer-events: auto;
    filter: drop-shadow(0px 11px 19px rgba(14, 12, 36, 0.3));
  }
  .popup-video:not(.full) iframe {
    pointer-events: none;
  }
}
.popup-video .close-btn {
  top: 0 !important;
  right: 0 !important;
  border-radius: 0 0 0 50%;
  background-color: #fff;
  background-size: 10px;
}
.popup-video .close-btn:hover {
  border-radius: 0 0 50% 0;
}
.popup-video .popup-content {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 !important;
  border-radius: 15px;
  background: #000;
}
.popup-video .iframe-wrap,
.popup-video iframe {
  width: 100%;
  height: 100%;
}
.home-box {
  padding: 0 30px 41px;
}
.home-box .home-big {
  width: 100%;
  max-width: 1685px;
  margin: auto;
  border-radius: 24px;
  background: #333 url(/assets/home_bg-383bd9be.png) no-repeat 50% 50%;
  background-size: cover;
  filter: drop-shadow(0px 11px 19px rgba(14, 12, 36, 0.1));
}
.home-box .container {
  display: grid;
  grid-template-columns: repeat(1fr, auto);
}
.home-box .col-left {
  padding-top: 67px;
  padding-bottom: 74px;
  color: #fff;
}
.home-box .h1 {
  max-width: 8.5em;
}
.home-box .sub-h {
  max-width: 654px;
  margin-top: 20px;
  font-size: 24px;
  font-weight: 500;
}
.home-box .check-list {
  display: grid;
  max-width: 743px;
  margin: 27px 0 43px;
  font-size: 18px;
  grid-template-columns: repeat(3, auto);
  gap: 20px;
}
.frosted-glass {
  position: relative;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
}
.frosted-glass::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  pointer-events: none;
  border: 1px solid transparent;
  border-radius: inherit;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
.home-box .check-list .check-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
}
.home-box .check-list .check-item::before {
  display: block;
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  margin-right: 15px;
  content: "";
  background: url(/assets/check-yellow-dae9f27e.svg) 50% no-repeat;
  background-size: contain;
}
.home-box .btn-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-videos-box {
  margin-bottom: 104px;
}
.video-list {
  gap: 19px;
}
.video-list .video-item {
  width: 100%;
  font-size: 18px;
  font-weight: 500;
}
.video-list .v-thumb {
  margin-bottom: 23px;
  border-radius: 24px;
  padding: 29.4264339152% 0;
}
.video-list .v-thumb::after {
  z-index: 2;
  content: "";
  background: rgba(27, 27, 27, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.video-list .v-thumb::before {
  position: absolute;
  z-index: 3;
  content: url("/assets/play-40f3d7df.svg");
  transition: transform 0.2s;
  animation: pulse 1.5s infinite;
}
.video-list .v-thumb:hover::before {
  transform: scale(1.1);
}
.materials-box .sub-h {
  margin-bottom: 11px;
  color: #808080;
  font-size: 22px;
}
.materials-box .middle-content {
  display: grid;
  grid-template-columns: 190px 1fr 392px;
  align-items: start;
  gap: 30px;
  margin-top: 32px;
  padding-bottom: 44px;
}
.materials-box .middle-content .col-tabs .m-tab {
  position: relative;
  margin-bottom: 2px;
  padding: 18px 24px;
  padding-right: 5px;
  font-size: 17px;
  font-weight: 500;
  background: #f3f3f3;
  line-height: 120%;
  border-radius: 12px;
  -webkit-tap-highlight-color: transparent;
}
.materials-box .middle-content .col-tabs .m-tab::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(to right, #fcdf00 8px, transparent 8px);
  border-radius: 12px 0 0 12px;
  opacity: 0;
  transition: 0.25s;
}
.materials-box .middle-content .col-tabs .m-tab::after {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  width: 94px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='73' fill='none'%3E%3Cpath d='M17.6867 35.7388C17.8874 36.2264 17.8874 36.7736 17.6867 37.2612L3.84948 70.8813C3.01559 72.9074 4.19211e-08 72.3111 1.37692e-07 70.1201L3.07685e-06 2.87993C3.17262e-06 0.688941 3.01559 0.0926326 3.84948 2.11873L17.6867 35.7388Z' fill='%23EAEAEA'/%3E%3C/svg%3E") no-repeat 100%;
  background-size: 17px 100%;
  right: -11px;
  opacity: 0;
}
.materials-box .middle-content .col-tabs .m-tab.tab-active {
  font-weight: 700;
  border-top-right-radius: 12px 12px;
  border-bottom-right-radius: 12px 12px;
  background: #eaeaea;
}
.materials-box .middle-content .col-tabs .m-tab.tab-active::before {
  width: 24px;
  opacity: 1;
}
.materials-box .middle-content .col-tabs .m-tab.tab-active::after {
  opacity: 1;
}
.materials-box .middle-content .values-list {
  text-align: center;
  gap: 31px 21px;
}
.materials-box .middle-content .values-list .v-item {
  font-size: 18px;
  font-weight: 700;
}
.materials-box .middle-content .values-list .v-item:nth-child(6) ~ .v-item {
  display: none;
}
.materials-box .middle-content .values-list .v-item.to-hide ~ .col-gray {
  display: none;
}
.materials-box .middle-content .values-list .v-image {
  margin-bottom: 8px;
  padding: 43.279% 0;
  border-radius: 12px;
  background-color: #333;
}
.materials-box .middle-content .values-list .col-gray {
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}
.materials-box .middle-content .values-list .col-gray a:not(:hover) {
  color: #808080;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.materials-box .middle-content .col-info {
  position: relative;
  margin-bottom: -200px;
  padding: 10px;
  border-radius: 15px;
  background: #f3f3f3;
  box-shadow: 0px 14px 30px 0px rgba(0, 0, 0, 0.07);
}
.materials-box .middle-content .col-info .white-wrapper {
  padding: 36px 34px 49px;
  background: #fff;
  border-radius: 10px;
}
.materials-box .middle-content .col-info .ww-text {
  margin: 33px 0 10px;
  font-size: 17px;
  font-weight: 500;
  line-height: 140%;
}
.materials-box .middle-content .col-info .ww-text p:first-child {
  font-size: 18px;
}
.materials-box .middle-content .col-info .for-you {
  display: inline-block;
  margin-top: 22px;
  font-size: 20px;
  letter-spacing: -0.2px;
}
.materials-box .middle-content .col-info .for-you .mark-yellow {
  margin-left: -2px;
}
.materials-box .middle-content .col-info .big-yellow {
  display: inline-flex;
  align-items: center;
  margin-top: 17px;
  padding: 10px 21px 10px 10px;
  font-size: 34px;
  border-radius: 12px;
}
.materials-box .middle-content .col-info .big-yellow img {
  margin-right: 16px;
}
.materials-box .middle-content .col-info .just-text {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 500;
  color: #808080;
}
.materials-box .big-row {
  background: #383838 url(/assets/mat_bg-2ba3286c.png) no-repeat 50%;
  background-size: cover;
  color: #fff;
  width: 100%;
}
.materials-box .big-row .bottom-info {
  padding-bottom: 65px;
  display: flex;
  align-items: end;
  margin-left: auto;
  height: 622px;
  max-width: 330px;
}
.materials-box .big-row .check-element::before {
  margin-top: -38px;
}
.check-element {
  display: flex;
  align-items: center;
  font-weight: 500;
}
.check-element::before {
  content: "";
  display: block;
  margin-right: 25px;
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  background: url(/assets/check-white-7c0c0916.svg) 50% no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .check-element.to-right {
    margin-left: auto;
    flex-direction: row-reverse;
    text-align: right;
  }
}
@media (min-width: 768px) and (min-width: 1500px) {
  .check-element.to-right {
    margin-right: 3px;
  }
}
@media (min-width: 768px) {
  .check-element.to-right::before {
    margin: 0;
    margin-left: 25px;
  }
}
.check-element.check-gray::before {
  background-image: url(/assets/check-gray-b613b620.svg);
}
.check-element a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.beauty-box {
  padding: 98px 0 62px;
  background: #f3f3f3 url(/assets/beauty_bg-414c29f0.png) no-repeat 50% 100%;
}
.beauty-box .col-left .big-yellow {
  display: inline-flex;
  align-items: center;
  margin-top: 477px;
  padding: 23px 35px 23px 27px;
  font-size: 34px;
  font-weight: 600;
  border-radius: 15px;
}
.beauty-box .col-left .big-yellow img {
  margin-right: 23px;
}
.beauty-box .b-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.beauty-box .b-list .icon {
  position: absolute;
  top: 28px;
  right: 28px;
}
.beauty-box .b-list .b-item {
  position: relative;
  padding: 34px 53px 38px 42px;
  background: #fff;
  border-radius: 15px;
}
.beauty-box .b-list .bi-title {
  margin-bottom: 29px;
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  max-width: 210px;
}
.beauty-box .b-list .bi-text {
  font-weight: 500;
}
.beauty-box .check-element {
  margin-top: 37px;
  max-width: 550px;
}
.beauty-box .check-element::before {
  margin-top: -28px;
}
.price-box {
  padding: 78px 0 100px;
  background: #555 url(/assets/price_bg-33a00a50.png) no-repeat 50%;
  background-size: cover;
  filter: drop-shadow(0px 11px 19px rgba(14, 12, 36, 0.08));
}
.price-box .client-el {
  display: inline-flex;
  align-items: center;
  padding: 12px 17px;
  padding-right: 37px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
.price-box .client-el .dot {
  margin: auto 13px auto 23px;
  width: 9px;
  height: 9px;
  background: #fcc503;
  border-radius: 50%;
}
.price-box .h2 {
  margin: 23px 0 30px;
  color: #fff;
}
.price-box .info-list {
  align-items: stretch;
  gap: 20px;
}
.price-box .info-item {
  position: relative;
  padding: 45px 45px;
  background: #fff;
  border-radius: 24px;
}
.price-box .info-item b {
  font-weight: 600;
}
.price-box .info-item .ii-icon {
  position: absolute;
  top: 30px;
  right: 30px;
}
.price-box .info-item .ii-title {
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -0.48px;
}
.price-box .info-item .sub-text {
  font-size: 18px;
  letter-spacing: -0.36px;
}
.price-box .ii-first {
  display: flex;
}
.price-box .ii-first .ii-icon {
  width: 24px;
  height: 24px;
}
.price-box .ii-first .ii-icon path {
  fill-opacity: 1;
}
.price-box .ii-first .info-man {
  margin-right: 40px;
  font-size: 15px;
  text-align: center;
}
.price-box .ii-first .info-man img {
  border-radius: 24px;
  background-color: #eee;
}
.price-box .ii-first .info-man .im-name {
  margin-top: 28px;
  font-weight: 700;
}
.price-box .ii-first .info-man .im-post {
  font-weight: 500;
  color: #919191;
}
.price-box .ii-first .ii-title {
  max-width: 340px;
}
.price-box .ii-first .sub-text {
  margin: 18px 0 16px;
}
.price-box .ii-first ul {
  padding-bottom: 8px;
}
.price-box .ii-second .sub-text {
  margin: 34px 0 82px;
  max-width: 260px;
}
.price-box .ii-third .ii-title {
  max-width: 230px;
}
.price-box .ii-third ul {
  margin: 26px 0 0;
  max-width: 260px;
}
.price-box .ii-third .sub-text {
  margin: 29px 0 25px;
  max-width: 260px;
}
.price-box .ii-fourth .ii-icon {
  width: 24px;
  height: 24px;
}
.price-box .ii-fourth .ii-icon path {
  fill-opacity: 1;
}
.price-box .ii-fourth .mark-yellow {
  margin-left: -8px;
}
.price-box .ii-fourth .line {
  margin: 30px 0;
  border-bottom: 1px solid #e6e6e6;
}
.price-box .ii-fourth ul {
  margin: -13px 0 0;
  line-height: 170%;
}
.visually-box {
  padding: 70px 0 0;
}
.visually-box .sub-h {
  margin-top: 28px;
  margin-bottom: 60px;
  max-width: 820px;
  color: #808080;
  font-size: 20px;
}
.visually-box .house-image {
  position: static;
  filter: drop-shadow(0px 11px 19px rgba(14, 12, 36, 0.08));
}
.visually-box .house-image img {
  position: static;
  border-radius: 24px;
  background: #eee;
}
.visually-box .table-title {
  margin-bottom: 41px;
  max-width: 480px;
  font-size: 28px;
  line-height: 140%;
  letter-spacing: -0.28px;
}
.visually-box .table-title b {
  font-weight: 600;
}
.visually-box .table {
  border-collapse: separate;
  width: 100%;
}
.visually-box .table tbody {
  box-shadow: 0 0 0 1px #f3f3f3;
  border-radius: 12px;
}
.visually-box .table tbody tr:first-child td:first-child,
.visually-box .table tbody tr:first-child th:first-child {
  border-radius: 12px 0 0 0;
}
.visually-box .table tbody tr:first-child td:last-child,
.visually-box .table tbody tr:first-child th:last-child {
  border-radius: 0 12px 0 0;
}
.visually-box .table tbody tr:last-child td:first-child,
.visually-box .table tbody tr:last-child th:first-child {
  border-radius: 0 0 0 12px;
}
.visually-box .table tbody tr:last-child td:last-child,
.visually-box .table tbody tr:last-child th:last-child {
  border-radius: 0 0 12px 0;
}
.visually-box .table tbody tr:nth-child(even) th {
  background: #fafafa;
}
.visually-box .table tbody td,
.visually-box .table tbody th {
  border: 1px solid #f3f3f3;
  padding: 17.6px 25px;
}
.visually-box .table tbody th {
  font-weight: 600;
  font-size: 17px;
  background: #f3f3f3;
}
.visually-box .table tbody td {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.visually-box .first-row .col-right {
  grid-column: span 7;
}
@media (min-width: 1500px) {
  .visually-box .first-row .col-right {
    padding-left: 55px;
  }
}
.visually-box .first-row .table {
  max-width: 658px;
}
.visually-box .first-row .table tbody {
  border-bottom-right-radius: 0;
}
.visually-box .first-row .table tbody th {
  width: 180px;
}
.visually-box .first-row .table tbody tr:last-child td:last-child,
.visually-box .first-row .table tbody tr:last-child th:last-child {
  border-radius: 0;
}
.visually-box .first-row .table tfoot td {
  position: relative;
  padding: 15.3px 10px;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.visually-box .first-row .table tfoot td span {
  position: relative;
}
.visually-box .first-row .table tfoot td::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 0;
  background: #fcdf00;
  border-radius: 0px 0px 12px 12px;
}
.visually-box .first-row .table tfoot td:last-child::before {
  right: -1px;
}
.visually-box .first-row .bottom-arrow {
  position: relative;
  top: 15px;
  left: -33px;
}
.visually-box .second-row {
  padding-top: 4px;
  padding-bottom: 98px;
}
.visually-box .second-row .col-left {
  grid-column: span 7;
}
.visually-box .second-row .col-right {
  grid-column: span 5;
}
.visually-box .second-row .table {
  margin-top: 2px;
  max-width: 661px;
}
.visually-box .second-row .table tbody th {
  font-size: 17px;
  font-weight: 500;
  text-align: left;
}
.visually-box .second-row .table tbody td {
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}
@media (min-width: 1500px) {
  .visually-box .second-row .table tbody td,
  .visually-box .second-row .table tbody th {
    padding: 15.4px 14px;
  }
  .visually-box .second-row .table tbody th {
    padding-left: 29px;
  }
}
.icons-box {
  padding: 40px 30px;
  background: url(/assets/vi_bg-33015815.png) no-repeat 50% 100%;
  background-size: cover;
  color: #fff;
}
.icons-box .icons-big {
  margin: auto;
  width: 100%;
  max-width: 1685px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}
.icons-box .icons-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 38px 0 33px;
}
.icons-box .icons-item {
  display: flex;
  font-size: 17px;
  max-width: 310px;
}
.icons-box .icons-item:first-child {
  max-width: 200px;
}
@media (min-width: 1500px) {
  .icons-box .icons-item:first-child {
    margin-right: 50px;
  }
}
.icons-box .icons-item .icon {
  flex-shrink: 0;
  margin-right: 29px;
}
.icons-box .icons-item .icons-title {
  margin-top: -4px;
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 20px;
}
.icons-box .icons-man {
  display: flex;
  align-items: center;
  max-width: 240px;
  font-size: 14px;
  font-weight: 600;
  text-align: right;
}
.icons-box .icons-man img {
  margin-left: 15px;
}
.estimates-box {
  padding: 98px 0 99px;
  background: #f3f3f3 url(/assets/es_bg-4b234b90.png) no-repeat 50% 50%;
}
.estimates-box .col-left .h2 {
  margin: 0 0 29px;
}
@media (min-width: 1500px) {
  .estimates-box .col-left .h2 {
    margin-top: 4px;
  }
}
.estimates-box .col-left .sub-h {
  font-size: 23px;
}
.estimates-box .col-left .sub-h b {
  font-weight: 600;
}
@media (min-width: 1500px) {
  .estimates-box .col-right {
    margin-left: -10px;
  }
}
.facade-box {
  padding: 97px 0 56px;
}
.facade-box .facade-list {
  margin-top: 67px;
  gap: 20px 64px;
}
.facade-box .facade-item {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}
.facade-box .fi-image {
  margin-bottom: 16px;
  padding: 35.1752021563% 0;
  border-radius: 12px;
  background-color: #eee;
}
@media (min-width: 1500px) {
  .facade-box .facade-info {
    margin-top: -7px;
  }
}
.facade-box .facade-info .info-title {
  font-size: 23px;
  font-weight: 700;
  line-height: 130%;
}
.facade-box .facade-info .info-subtitle {
  margin: 16px 0;
  font-weight: 500;
  font-size: 16px;
}
.facade-box .facade-info .info-man {
  display: flex;
  align-items: center;
  max-width: 280px;
  margin-bottom: 28px;
  color: #808080;
  font-size: 14px;
  font-weight: 500;
}
.facade-box .facade-info .info-man img {
  margin-right: 27px;
  background-color: #eee;
  border-radius: 50%;
}
.honestly-box {
  padding: 97px 0 100px;
  background: url(/assets/ho_bg-2dba446b.png) no-repeat 50% 100%;
  background-size: cover;
  filter: drop-shadow(0px 11px 19px rgba(14, 12, 36, 0.08));
  color: #fff;
}
.honestly-box .sub-h {
  max-width: 680px;
  margin: 34px 0 155px;
  font-size: 23px;
}
.honestly-box .sub-h b {
  font-weight: 600;
}
.honestly-box .sub-h .u {
  text-decoration: underline;
}
.honestly-box .sub-h p:last-child {
  max-width: 450px;
}
.honestly-box .check-element {
  max-width: 380px;
}
.honestly-box .check-list {
  display: flex;
  justify-content: space-between;
  margin-top: 196px;
  text-align: center;
}
.honestly-box .check-list .check-item {
  position: relative;
  font-size: 22px;
  font-weight: 500;
  line-height: 130%;
}
.honestly-box .check-list .check-item:nth-child(1) {
  margin-top: 65px;
  margin-left: -241px;
}
.honestly-box .check-list .check-item:nth-child(2) {
  margin-top: 142px;
}
@media (min-width: 1500px) {
  .honestly-box .check-list .check-item:nth-child(2) {
    left: 9px;
  }
}
.honestly-box .check-list .check-item:nth-child(3) {
  margin-top: 0px;
}
@media (min-width: 1500px) {
  .honestly-box .check-list .check-item:nth-child(3) {
    left: -40px;
  }
}
.honestly-box .check-list .check-item:nth-child(4) {
  margin-top: 123px;
  margin-right: 10px;
}
.honestly-box .check-list .check-item img {
  margin-bottom: 16px;
}
.guarantees-box {
  padding: 104px 0 67px;
  background: #fff url(/assets/gu_bg-147b20c0.png) no-repeat 50% 100%;
}
.guarantees-box .h2 {
  margin-bottom: 52px;
}
.guarantees-box .gu-item {
  display: flex;
  margin-bottom: 55px;
  font-size: 23px;
}
.guarantees-box .gu-item b {
  font-weight: 600;
}
.guarantees-box .gu-item .circle-int {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 30px;
  height: 30px;
  font-size: 16px;
  margin-right: 16px;
  padding: 3px;
  background: #f1f1f1;
  font-weight: 600;
  border-radius: 15px;
}
.guarantees-box .gu-squares {
  display: flex;
  flex-wrap: wrap;
  margin: -33px 0 43px;
}
.guarantees-box .gu-squares .gu-sq-item {
  margin-right: 20px;
  padding: 32px 29px 20px;
  border: 2px solid #fcdf00;
  border-radius: 15px;
}
.guarantees-box .gu-squares .gusi-big {
  margin-bottom: 23px;
  font-size: 45px;
  font-weight: 600;
  line-height: 43.333%;
  letter-spacing: -0.9px;
}
.guarantees-box .gu-squares .gusi-small {
  font-size: 20px;
}
.guarantees-box .gu-squares .gu-sq-note {
  width: 100%;
  margin-top: 24px;
  color: #808080;
  font-size: 18px;
}
.guarantees-box .col-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}
.guarantees-box .col-right .plus-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 146px;
  height: 146px;
  margin-right: 282px;
  margin-bottom: 44px;
  background: #fff;
  border: 33px solid #fcdf00;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.25s;
}
.guarantees-box .col-right .plus-img:hover {
  transform: scale(1.2);
}
.guarantees-box .col-right .white-element {
  padding: 23px 30px;
  background-color: #fff;
  filter: drop-shadow(0px 4px 100px rgba(0, 0, 0, 0.15));
  border-radius: 15px;
}
@media (min-width: 1500px) {
  .guarantees-box .col-right .white-element {
    margin-right: 3px;
    margin-bottom: 33px;
  }
}
.calculation-box {
  padding: 97px 0 110px;
  background: #3f3c35 url(/assets/ca_bg-94996d59.png) no-repeat 50%;
  background-size: cover;
  color: #fff;
}
.calculation-box .col-left {
  display: flex;
  align-items: flex-end;
}
@media (min-width: 1500px) {
  .calculation-box .col-left {
    margin-bottom: 13px;
  }
}
.calculation-box .col-left .check-element {
  max-width: 350px;
}
.calculation-box .h2 {
  margin-bottom: 43px;
}
@media (min-width: 1500px) {
  .calculation-box .h2 {
    max-width: 460px;
  }
}
.calculation-box .calc-list {
  display: grid;
  gap: 27px;
  max-width: 430px;
  margin-bottom: 44px;
}
.calculation-box .calc-item {
  display: flex;
  align-items: center;
}
.calculation-box .calc-item .ci-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  width: 82px;
  height: 82px;
  flex-shrink: 0;
  border-radius: 24px;
}
.calculation-box .calc-item .ci-top {
  margin-bottom: 5px;
  font-size: 28px;
  font-weight: 600;
}
.calculation-box .calc-item .ci-text {
  font-size: 17px;
  line-height: 140%;
}
.period-box {
  padding: 108px 0 66px;
}
.period-box .h2 {
  margin-bottom: 40px;
}
.period-box .pl-item {
  display: flex;
  align-items: center;
  margin-bottom: 54px;
}
.period-box .pl-item .pi-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  width: 82px;
  height: 82px;
  margin-right: 25px;
  flex-shrink: 0;
  border-radius: 24px;
  background: #f4f4f4;
}
.period-box .pl-item .pi-top {
  margin-bottom: 5px;
  font-size: 28px;
  font-weight: 600;
}
.period-box .pl-item .pi-text {
  font-size: 17px;
  line-height: 140%;
}
.period-box .pl-arrow {
  display: block;
  margin: 66px 80px 0 auto;
}
.period-box .period-img img {
  border-radius: 24px;
  filter: drop-shadow(0px 11px 19px rgba(14, 12, 36, 0.08));
}
@media (min-width: 1500px) {
  .period-box .period-img img {
    margin-top: 9px;
  }
}
.period-box .pr-info {
  position: relative;
  display: flex;
  max-width: 532px;
  padding: 22px 31px;
  margin: -155px auto 0;
  background: #fff;
  border: 2px solid #fcdf00;
  border-radius: 15px;
}
@media (min-width: 1500px) {
  .period-box .pr-info {
    left: -4px;
  }
}
.period-box .pr-info .pri-title {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  line-height: 130%;
}
.period-box .pr-info .pri-text {
  line-height: 140%;
}
.period-box .pr-info .pri-right {
  margin-top: 14px;
  margin-left: 15px;
  color: #808080;
  text-align: center;
  font-size: 14px;
}
.period-box .pr-info .pri-right img {
  margin-bottom: 20px;
}
.callback-box {
  background: #f3f3f3;
  background-size: cover;
}
.callback-box .cb-back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.callback-box .col-left-img {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background: #3f3c35 url(/assets/cb_bg-d5d275a3.png) no-repeat 50%;
  background-size: cover;
}
.callback-box .container {
  position: relative;
}
.callback-box .col-left {
  display: flex;
  align-items: flex-end;
}
.callback-box .col-left .cb-man {
  margin-left: auto;
  margin-right: -89px;
  margin-bottom: 157px;
  max-width: 183px;
  width: 100%;
  padding: 31px 20px 29px;
  border-radius: 15px;
  border: 2px solid #fcdf00;
  background: #fff;
  text-align: center;
}
.callback-box .col-left .cb-man .cm-title {
  margin: 16px 0;
  font-weight: 600;
  line-height: 135%;
}
.callback-box .col-left .cb-man .cm-name {
  font-size: 12px;
  color: #808080;
}
.callback-box .col-right {
  margin: 100px 0 97px 114px;
  max-width: 422px;
}
.callback-box .sub-h {
  margin: 15px 0 17px;
  font-size: 23px;
  line-height: 140%;
}
.callback-box .sub-h b {
  font-weight: 600;
}
.callback-box .sub-mini {
  max-width: 353px;
  margin-bottom: 24px;
  line-height: 140%;
  color: #757373;
}
.about-box {
  padding: 100px 0 121px;
  background: url(/assets/ab_bg-6203613b.png) 50% 20px no-repeat;
}
@media (min-width: 1500px) {
  .about-box .h2 {
    margin-right: -25px;
  }
}
.about-box .sub-h {
  padding: 29px 0 32px;
  max-width: 617px;
  font-size: 23px;
}
.about-box .sub-h b {
  font-weight: 600;
}
.about-box .ab-slider-row {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-width: 1px;
}
@media (min-width: 1500px) {
  .about-box .ab-slider-row {
    margin-right: 9px;
  }
}
.about-box .ab-slider-row .swiper {
  min-width: 1px;
}
.about-box .ab-slider-row .swiper-button {
  position: absolute;
}
.about-box .ab-slider-row .swiper-button-prev {
  left: -88px;
}
.about-box .ab-slider-row .swiper-button-next {
  right: -88px;
}
.about-box .about-man {
  margin: 20px 0 35px;
  text-align: center;
}
.about-box .about-man .am-img {
  padding: 62.7840909091% 0;
  border-radius: 15px;
  background-color: #eee;
}
.about-box .about-man .am-name {
  margin-top: 21px;
  font-weight: 600;
}
.about-box .about-man .am-info {
  margin: 0 -5px;
  font-weight: 500;
  color: #808080;
}
.about-box .col-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}
.about-box .col-right .btw-white {
  margin-bottom: 28px;
  padding: 32px 39px;
  border-radius: 15px;
  border: 2px solid #fcdf00;
  background: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
}
@media (min-width: 1500px) {
  .about-box .col-right .btw-white {
    margin-right: 2px;
  }
}
.about-box .col-right .man-info {
  text-align: right;
}
@media (min-width: 1500px) {
  .about-box .col-right .man-info {
    margin-right: 9px;
    margin-bottom: -3px;
  }
}
.about-box .col-right .man-info .mi-name {
  font-weight: 600;
}
.about-box .col-right .man-info .mi-info {
  color: #808080;
  font-weight: 500;
}
.contacts-box {
  padding: 100px 0 132px;
  background: #f3f3f3;
}
.contacts-box .cb-back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.contacts-box .col-right-img {
  display: flex;
  align-items: flex-end;
  background: #3f3c35 url(/assets/co_bg-dcf8bf39.png) no-repeat 50%;
  background-size: cover;
}
.contacts-box .col-right-img .co-logo {
  margin-left: 100px;
  margin-bottom: 82px;
}
.contacts-box .container {
  position: relative;
}
.contacts-box .h2 {
  margin-bottom: 40px;
}
.contacts-box .co-item {
  display: flex;
  align-items: center;
  margin-bottom: 26px;
}
.contacts-box .co-item .co-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 43px;
  width: 64px;
  height: 64px;
  border-radius: 24px;
  background: #fff;
  line-height: 140%;
}
.contacts-box .co-item .co-text {
  font-size: 23px;
  font-weight: 500;
}
.contacts-box .co-item .co-text b {
  font-weight: 700;
}
.contacts-box .co-info {
  position: relative;
  display: flex;
  margin-top: 57px;
  margin-right: -65px;
  padding: 39px 22px 41px 36px;
  background: #fff;
  border: 2px solid #fcdf00;
  border-radius: 15px;
}
@media (min-width: 1500px) {
  .contacts-box .co-info {
    left: 4px;
  }
}
.contacts-box .co-info .icon {
  position: absolute;
  top: 33px;
  right: 33px;
  width: 24px;
  height: 24px;
}
.contacts-box .co-info .icon path {
  fill-opacity: 1;
}
.contacts-box .co-info .co-left {
  flex-shrink: 0;
  margin-top: 10px;
  margin-right: 84px;
  font-size: 14px;
  text-align: center;
}
.contacts-box .co-info .co-left img {
  margin-bottom: 22px;
}
.contacts-box .co-info .co-left .co-name {
  font-weight: 600;
}
.contacts-box .co-info .co-left .co-who {
  font-weight: 500;
  color: #808080;
}
.contacts-box .co-info .co-title {
  margin-bottom: 32px;
  font-size: 23px;
  font-weight: 700;
  line-height: 130%;
}
.contacts-box .co-info .co-text {
  max-width: 340px;
}
.contacts-box .co-info .co-text b {
  font-weight: 600;
}
.footer-box {
  padding: 65px 0 70px;
}
.footer-box .bottom-row {
  align-items: center;
  margin-top: 25px;
  padding-top: 43px;
  border-top: 2px solid #f1f1f1;
  color: #bababa;
  font-size: 14px;
  font-weight: 500;
}
.footer-box .bottom-row .fb-item {
  margin: 6px 0;
}
.footer-box .bottom-row .fb-dev {
  padding-top: 8px;
}
.footer-box .bottom-row .col-left {
  display: flex;
  flex-wrap: wrap;
}
.footer-box .bottom-row .col-left .fb-item {
  margin-right: 40px;
}
.footer-box .bottom-row .col-right {
  text-align: right;
}
.footer-box .bottom-row .col-right .u {
  text-decoration: underline;
}
.footer-box .col-btns .btn:first-child {
  margin-right: 40px;
}
.footer-box .col-to {
  text-align: center;
  font-weight: 500;
  font-size: 12px;
}
.footer-box .col-to img {
  margin-bottom: 8px;
}
.thx_estimate-box {
  padding: 46px 0 37px;
}
.thx_estimate-box .bottom-row {
  display: grid;
  grid-template-columns: 1fr 223px;
  gap: 50px;
  max-width: 693px;
  margin-top: 58px;
}
.thx_estimate-box .styled-text {
  font-size: 18px;
}
.thx_estimate-box .h5 {
  margin-bottom: 18px;
}
.thx_estimate-box ol li {
  margin-bottom: 1.4em;
}
.thx_estimate-box .cb-man {
  position: relative;
  margin-top: 14px;
  padding: 11px 20px 29px;
  border-radius: 15px;
  border: 2px solid #fcdf00;
  background: #fff;
  text-align: center;
}
.thx_estimate-box .cb-man .cm-title {
  margin: 16px 0 30px;
  font-size: 18px;
  font-weight: 600;
  line-height: 135%;
}
.thx_estimate-box .cb-man .cm-name {
  margin: 24px 0 11px;
  font-size: 12px;
  color: #808080;
}
.thx_estimate-box .cb-man .cm-info {
  font-weight: 500;
}
.thx_estimate-box .col-right .img-phone {
  margin-top: -320px;
  margin-left: -199px;
  margin-bottom: -76px;
  max-width: none;
}
.thx_price-box {
  padding: 40px 0 115px;
  margin-bottom: -100px;
  background: url(/assets/th_bg-4e8e7334.png) no-repeat 50% 50%;
  background-size: contain;
}
.thx_price-box .top-row {
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  margin-bottom: 90px;
}
.thx_price-box .top-row img {
  flex-shrink: 0;
  margin-top: 10px;
  margin-right: 84px;
}
.thx_price-box .top-row .sub-title {
  max-width: 430px;
  margin-top: 6px;
}
.thx_price-box .top-row .phone {
  display: inline-block;
  margin: 10px 0;
  font-size: 26px;
  font-weight: 600;
}
.thx_price-box .h5 {
  margin-bottom: 40px;
}
.thx_price-box .col-left .styled-text {
  max-width: 350px;
  font-size: 18px;
}
.thx_price-box .col-left .styled-text b {
  font-weight: 600;
}
.thx_price-box .col-left .styled-text ol {
  margin-bottom: 40px;
}
@media (min-width: 1200px) {
  .thx_price-box .col-left .styled-text p:nth-child(3) {
    max-width: 330px;
  }
}
@media (min-width: 1200px) {
  .thx_price-box .video-list {
    margin-top: -10px;
  }
}
@media (max-width: 1599.98px) {
  .honestly-box .check-list .check-item {
    font-size: 16px;
  }
  .honestly-box .check-list .check-item:nth-child(1) {
    margin-left: -150px;
  }
  .honestly-box .check-list .check-item:nth-child(4) {
    margin-right: 0;
  }
}
@media (max-width: 1499.98px) {
  .btn-mini {
    padding: 0 35px;
  }
  .header-row {
    font-size: 12px;
  }
  .header-row .col-sublogo {
    margin-left: 25px;
    font-size: 12px;
    max-width: 22em;
  }
  .home-box {
    padding: 0 15px 40px;
  }
  .home-box .sub-h {
    font-size: 20px;
    max-width: 27em;
  }
  .video-list .video-item {
    font-size: 16px;
  }
  .materials-box .middle-content {
    grid-template-columns: 170px 1fr 330px;
  }
  .materials-box .middle-content .col-tabs .m-tab {
    font-size: 14px;
  }
  .materials-box .middle-content .values-list .v-item {
    font-size: 16px;
  }
  .materials-box .middle-content .values-list .v-image {
    padding: 35.5029585799% 0;
  }
  .materials-box .middle-content .values-list {
    gap: 20px;
  }
  .materials-box .middle-content .col-info .white-wrapper {
    padding: 26px 27px 35px;
  }
  .materials-box .middle-content .col-info .ww-text {
    font-size: 14px;
  }
  .materials-box .middle-content .col-info .just-text {
    font-size: 14px;
  }
  .materials-box .middle-content .col-info .big-yellow {
    font-size: 17px;
  }
  .beauty-box {
    padding-top: 70px;
  }
  .beauty-box .h2 {
    max-width: 550px;
  }
  .beauty-box .col-left .big-yellow {
    font-size: 28px;
  }
  .beauty-box .col-left .big-yellow {
    padding: 18px 25px 18px 20px;
  }
  .beauty-box .b-list .b-item {
    padding: 24px 22px 28px 26px;
  }
  .beauty-box .b-list .bi-title {
    margin-bottom: 15px;
    font-size: 23px;
  }
  .visually-box .first-row .bottom-arrow {
    top: -20px;
    left: 0;
  }
  .icons-box {
    padding: 30px 15px;
  }
  .icons-box .icons-item {
    font-size: 14px;
  }
  .icons-box .icons-item .icons-title {
    font-size: 17px;
  }
  .estimates-box {
    padding: 70px 0;
  }
  .estimates-box .col-left .sub-h {
    font-size: 20px;
    max-width: 500px;
  }
  .facade-box .facade-list {
    gap: 20px 40px;
  }
  .honestly-box {
    padding: 70px 0;
  }
  .honestly-box .sub-h {
    font-size: 20px;
    margin-bottom: 100px;
  }
  .honestly-box .check-list .check-item {
    font-size: 14px;
  }
  .honestly-box .check-list .check-item img {
    width: 68px;
    margin-bottom: 9px;
  }
  .honestly-box .check-list .check-item:nth-child(1) {
    margin-left: 30px;
  }
  .guarantees-box {
    padding: 70px 0;
  }
  .guarantees-box .gu-item {
    margin-bottom: 30px;
  }
  .guarantees-box .gu-squares {
    margin: 0 0 20px;
  }
  .guarantees-box .gu-squares .gusi-big {
    font-size: 40px;
  }
  .guarantees-box .col-right .plus-img {
    margin-left: auto;
    margin-right: auto;
  }
  .calculation-box {
    padding: 70px 0;
  }
  .period-box {
    padding: 70px 0;
  }
  .period-box .pl-item {
    margin-bottom: 35px;
  }
  .callback-box .col-left-img img {
    margin: 0 -150px;
    max-width: none;
  }
  .callback-box .col-left .cb-man {
    margin-top: 300px;
    margin-bottom: auto;
  }
  .callback-box .col-right {
    margin-left: 90px;
  }
  .about-box {
    padding: 70px 0 100px;
  }
  .about-box .sub-h {
    font-size: 20px;
  }
  .contacts-box {
    padding: 70px 0 100px;
  }
  .contacts-box .co-info .co-left {
    margin-right: 40px;
  }
  .footer-box .bottom-row {
    grid-template-columns: 1fr auto 1fr;
  }
  .footer-box .col-btns {
    display: flex;
    align-items: center;
  }
  .popup-exit .popup-content {
    background-size: 90% auto;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .visually-box .first-row,
  .visually-box .second-row {
    gap: 50px;
  }
}
@media (max-width: 1199.98px) {
  .form-white {
    padding: 23px 32px;
  }
  .styled-text {
    font-size: 14px;
  }
  .h1 {
    font-size: 56px;
  }
  .h2 {
    font-size: 48px;
  }
  .h3 {
    font-size: 42px;
  }
  .h4 {
    font-size: 36px;
  }
  .form .form-input .form-title {
    margin-left: 18px;
  }
  .form .form-input input,
  .form .form-input textarea,
  .form .form-input select {
    padding: 0 18px;
    min-height: 60px;
    font-size: 16px;
  }
  .form .form-input .form-title {
    font-size: 12px;
  }
  .form .form-options .icon {
    top: 46px;
    right: 17px;
  }
  .btn {
    height: 68px;
    font-size: 16px;
  }
  .btn-mini {
    height: 50px;
    font-size: 16px;
  }
  .btn-nano {
    height: 45px;
    font-size: 12px;
  }
  .header-row {
    height: 75px;
  }
  .header-row .logo {
    max-width: 125px;
  }
  .header-row .col-contact {
    margin-left: auto;
  }
  .home-videos-box {
    margin-bottom: 70px;
  }
  .video-list .v-thumb::before {
    transform: scale(0.6279);
  }
  .video-list .v-thumb:hover::before {
    transform: scale(0.8);
  }
  .video-list .v-thumb {
    margin-bottom: 15px;
  }
  .video-list .video-item {
    font-size: 14px;
  }
  .materials-box .middle-content {
    grid-template-columns: 1fr 350px;
  }
  .materials-box .col-tabs-wrap {
    position: relative;
    margin: 0 -15px;
    grid-column: 1/-1;
  }
  .materials-box .col-tabs-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: 2;
    height: 70px;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0) 15px, rgba(255, 255, 255, 0) calc(100% - 15px), #fff);
    pointer-events: none;
  }
  .materials-box .middle-content .col-tabs {
    display: flex;
    padding: 0 15px;
    margin-bottom: -15px;
    padding-bottom: 15px;
    overflow-x: auto;
  }
  .materials-box .middle-content .col-tabs .m-tab {
    display: flex;
    align-items: center;
    margin: 0 6px 0 0;
    padding: 17px 19px;
    text-align: center;
  }
  .materials-box .middle-content .col-tabs .m-tab::before {
    background: linear-gradient(to bottom, #fcdf00 7px, transparent 7px);
  }
  .materials-box .middle-content .col-tabs .m-tab.tab-active::before {
    width: 100%;
    border-radius: 12px;
  }
  .materials-box .middle-content .col-tabs .m-tab::after {
    display: none;
  }
  .beauty-box .col-left .big-yellow {
    margin-top: 200px;
  }
  .beauty-box .check-element {
    max-width: 340px;
  }
  .price-box {
    padding: 70px 0;
  }
  .price-box .info-item {
    padding: 30px;
  }
  .price-box .ii-first .info-man {
    margin-right: 25px;
  }
  .price-box .info-item .ii-icon {
    top: 24px;
    right: 24px;
  }
  .price-box .info-item .ii-icon {
    width: 38px;
    height: 38px;
  }
  .price-box .ii-first .ii-icon,
  .price-box .ii-fourth .ii-icon {
    width: 20px;
    height: 20px;
  }
  .price-box .ii-fourth .line {
    margin: 14px 0;
  }
  .price-box .ii-third ul {
    margin-top: 9px;
  }
  .price-box .ii-third .sub-text {
    margin: 15px 0;
  }
  .price-box .info-item .sub-text {
    margin-bottom: 14px;
    font-size: 14px;
  }
  .price-box .info-item .ii-title {
    font-size: 20px;
  }
  .visually-box .first-row .table tbody th {
    width: auto;
  }
  .visually-box .table-title {
    font-size: 20px;
  }
  .visually-box .table {
    line-height: 120%;
  }
  .visually-box .table tbody td,
  .visually-box .table tbody th {
    padding: 4px 15px;
  }
  .visually-box .table tbody th {
    font-size: 12px;
  }
  .visually-box .table tbody td {
    font-size: 13px;
  }
  .visually-box .first-row .table tbody td {
    height: 60px;
  }
  .visually-box .first-row .table tfoot td {
    padding: 6px 8px;
    font-size: 12px;
  }
  .visually-box .second-row .table tbody td,
  .visually-box .second-row .table tbody th {
    height: 40px;
    font-size: 13px;
  }
  .icons-box .icons-item .icon {
    margin-right: 16px;
  }
  .icons-box .icons-list {
    flex-wrap: wrap;
  }
  .icons-box .icons-item {
    width: 33%;
  }
  .icons-box .icons-man {
    margin: 30px auto 0;
    justify-content: center;
    flex-direction: row-reverse;
    flex-shrink: 0;
    max-width: 320px;
    width: 100%;
    text-align: left;
  }
  .icons-box .icons-man img {
    width: 68px;
    margin: 0 25px 0 0;
  }
  .estimates-box .col-left .sub-h {
    font-size: 16px;
    max-width: 430px;
  }
  .facade-box {
    padding: 70px 0;
  }
  .facade-box .facade-item {
    margin-bottom: 0;
    font-size: 15px;
  }
  .facade-box .facade-list {
    gap: 20px 30px;
  }
  .honestly-box .sub-h {
    font-size: 17px;
  }
  .honestly-box .check-list {
    margin-top: 130px;
  }
  .guarantees-box .gu-item {
    font-size: 19px;
  }
  .guarantees-box .gu-squares .gu-sq-item {
    padding: 25px 20px 15px;
    font-size: 14px;
  }
  .guarantees-box .gu-squares .gusi-big {
    font-size: 26px;
    margin-bottom: 4px;
  }
  .guarantees-box .gu-squares .gusi-small {
    font-size: 14px;
  }
  .calculation-box .calc-item .ci-text {
    font-size: 14px;
  }
  .period-box .pl-arrow {
    margin-top: 0;
  }
  .period-box .pl-item .pi-text {
    font-size: 14px;
  }
  .callback-box .col-right {
    margin: 70px 0;
    margin-left: 20px;
  }
  .callback-box .col-left .cb-man {
    margin-left: auto;
    margin-right: auto;
    max-width: 230px;
  }
  .about-box {
    background: #fff;
  }
  .about-box .h2 {
    max-width: 600px;
  }
  .about-box .col-left {
    position: relative;
  }
  .about-box .col-right {
    margin-top: -60px;
    align-items: center;
  }
  .about-box .swiper {
    overflow: visible;
  }
  .about-box .about-man .am-name {
    margin-top: 15px;
  }
  .about-box .col-right .btw-white {
    margin-top: -90px;
  }
  .about-box .col-right .man-info {
    text-align: center;
  }
  .about-box .ab-slider-row .swiper-button-prev {
    left: 0;
  }
  .about-box .ab-slider-row .swiper-button-next {
    right: 0;
  }
  .contacts-box .col-right-img .co-logo {
    margin-left: 30px;
    margin-bottom: 30px;
  }
  .contacts-box .co-item .co-icon {
    margin-right: 25px;
  }
  .contacts-box .co-item .co-text {
    font-size: 18px;
  }
  .contacts-box .co-info {
    margin-top: 40px;
    margin-right: -175px;
  }
  .footer-box {
    padding: 40px 0;
  }
  .footer-box .bottom-row {
    padding-top: 35px;
    grid-template-columns: min-content 1fr auto;
  }
  .footer-box .col-btns .btn:first-child {
    margin-right: 12px;
  }
  .popup .p-yellow-info {
    font-size: 18px;
  }
  .popup-price .p-man-row img {
    margin: 0;
  }
  .popup-price .py-last {
    margin-bottom: 30px;
  }
  .popup .p-yellow-info {
    padding: 25px 30px;
  }
  .popup-menu .popup-content {
    padding: 30px 40px;
  }
  .thx_estimate-box .bottom-row {
    align-items: start;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .footer-box .bottom-row .col-left {
    flex-direction: column;
  }
  .thx_estimate-box .grid {
    gap: 50px;
  }
  .thx_price-box .grid {
    gap: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .callback-box .col-left-img img {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .form .form-big-title {
    padding: 2px 0 7px;
    font-size: 16px;
  }
  .form .form-input .form-title {
    margin-bottom: 1px;
  }
  .form .form-input {
    margin-bottom: 7px;
  }
  .form .form-input input,
  .form .form-input textarea,
  .form .form-input select {
    min-height: 50px;
  }
  .form .form-options .icon {
    top: 38px;
    width: 20px;
  }
  .form .form-options .options-value {
    font-size: 14px;
  }
  .form .form-social-list {
    gap: 10px;
    margin-bottom: 14px;
  }
  .form .fs-item {
    padding: 9px 0;
    font-size: 12px;
    border-radius: 12px;
  }
  .form .fs-item img {
    width: 24px;
    margin-bottom: 5px;
  }
  .form .form-policy {
    margin: 13px 0 0 17px;
    line-height: 1.2;
  }
  .form input[type=checkbox],
  .form input[type=radio] {
    width: 13px;
    height: 13px;
    margin-right: 13px;
  }
  .swiper-button {
    width: 38px;
    height: 38px;
  }
  .h1 {
    font-size: 48px;
  }
  .h2 {
    font-size: 42px;
  }
  .h3 {
    font-size: 36px;
  }
  .h4 {
    font-size: 30px;
  }
  .header-row .col-sublogo {
    display: none;
  }
  .header-row .col-contact a {
    font-size: 20px;
  }
  .header-row .col-contact {
    font-size: 12px;
  }
  .home-box .check-list {
    font-size: 14px;
  }
  .home-box .check-list .check-item::before {
    width: 14px;
    margin-right: 8px;
  }
  .video-container {
    position: relative;
  }
  .video-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0) 15px, rgba(255, 255, 255, 0) calc(100% - 15px), #fff);
    pointer-events: none;
  }
  .video-list {
    display: flex;
    overflow-x: auto;
    margin: 0 -15px -20px;
    padding: 0 15px 20px;
    gap: 0;
  }
  .video-list .video-item {
    margin-right: 18px;
    min-width: 228px;
  }
  .materials-box .middle-content {
    gap: 30px 15px;
  }
  .materials-box .middle-content .values-list .v-image {
    padding: 28.9940828402% 0;
  }
  .materials-box .middle-content .values-list {
    gap: 15px 10px;
  }
  .beauty-box .col-left {
    order: 3;
  }
  .beauty-box .h2 {
    max-width: none;
  }
  .beauty-box .col-left .big-yellow {
    margin-top: 0;
  }
  .price-box .ii-second {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .price-box .ii-second .btn {
    margin-top: auto;
  }
  .estimates-box {
    padding-bottom: 30px;
    background-size: 1320px auto;
  }
  .estimates-box .col-right {
    margin: 30px auto 0;
    max-width: 450px;
  }
  .estimates-box .col-right {
    margin: auto;
  }
  .facade-box {
    padding-bottom: 40px;
  }
  .facade-box .facade-list {
    align-items: flex-start;
    margin-top: 40px;
    gap: 10px;
  }
  .facade-box .facade-info {
    padding: 14px;
    border-radius: 12px;
    border: 2px solid #fcdf00;
  }
  .facade-box .fi-image {
    margin-bottom: 9px;
  }
  .facade-box .facade-info .info-title {
    font-size: 12px;
  }
  .facade-box .facade-info .info-subtitle {
    font-size: 11px;
  }
  .facade-box .facade-info .info-man {
    margin-bottom: 0;
    font-size: 10px;
  }
  .facade-box .facade-info .info-man img {
    width: 41px;
    margin-right: 9px;
  }
  .facade-box .col-btn {
    margin-top: 10px;
    text-align: center;
  }
  .honestly-box .check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 60px;
  }
  .honestly-box .check-list .check-item:nth-child(1) {
    margin: 0;
  }
  .honestly-box .check-list .check-item:nth-child(3) {
    margin: 0;
  }
  .honestly-box .check-list .check-item:nth-child(4) {
    margin: 0;
  }
  .honestly-box .check-list .check-item:nth-child(2) {
    order: 7;
    margin: 0;
  }
  .guarantees-box {
    background-size: 1600px auto;
  }
  .guarantees-box .col-right .white-element {
    padding: 20px;
  }
  .guarantees-box .col-right .plus-img {
    width: 101px;
    height: 101px;
    border-width: 23px;
  }
  .guarantees-box .col-right .plus-img img {
    width: 18px;
  }
  .calculation-box .col-left {
    order: 2;
  }
  .period-box .pr-info {
    margin: -76px 28px 0;
    padding: 18px 22px;
    font-size: 13px;
  }
  .period-box .pr-info .pri-title {
    font-size: 15px;
  }
  .period-box .pr-info {
    display: block;
  }
  .period-box .pr-info .pri-right {
    display: flex;
    align-items: center;
    margin: 16px 0 0;
    font-size: 10px;
    text-align: left;
    max-width: 180px;
  }
  .period-box .pr-info .pri-right img {
    width: 49px;
    margin: 0 16px 0 10px;
  }
  .contacts-box .co-info {
    align-items: center;
    margin-right: -150px;
    padding: 25px;
  }
  .contacts-box .co-info .co-title {
    font-size: 17px;
    margin-bottom: 15px;
  }
  .footer-box .bottom-row {
    grid-template-columns: 1fr;
  }
  .footer-box .bottom-row .col-left {
    justify-content: center;
  }
  .footer-box .col-btns {
    justify-content: center;
  }
  .footer-box .bottom-row .col-right {
    text-align: center;
  }
  .footer-box .bottom-row .fb-dev {
    padding-top: 0;
  }
  .popup .close-btn,
  .popup-menu .close-btn {
    top: 16px;
    right: 16px;
    background-size: 14px;
  }
  .popup .popup-content {
    padding: 30px 40px 45px;
  }
  .popup .p-yellow-info {
    padding: 15px 20px;
    font-size: 16px;
    max-width: 330px;
  }
  .popup-form .popup-content {
    max-width: 370px;
  }
  .popup-menu .logo {
    display: inline-block;
    max-width: 125px;
  }
  .popup-menu .menu-list {
    font-size: 17px;
    gap: 10px;
  }
  .popup-exit .popup-content {
    background-size: 80% auto;
  }
  .popup-exit .sub-title {
    font-size: 18px;
  }
  .thx_estimate-box .col-right .img-phone {
    max-width: 400px;
    margin: -120px 0 -50px;
  }
  .thx_price-box .top-row img {
    max-width: 180px;
    margin-right: 40px;
  }
  .thx_price-box .top-row {
    margin-bottom: 50px;
  }
  .thx_price-box .bottom-row {
    gap: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .estimates-box .sub-h {
    background: rgba(255, 255, 255, 0.6666666667);
    box-shadow: 0 0 25px 25px rgba(255, 255, 255, 0.6666666667);
  }
  .honestly-box .check-list .check-item:nth-child(1) {
    margin-right: -70px;
  }
  .honestly-box .check-list .check-item:nth-child(3) {
    margin-top: 80px;
  }
  .honestly-box .check-list .check-item:nth-child(2) {
    margin-top: 70px;
    margin-left: -50px;
  }
  .calculation-box .col-left {
    padding-top: 50px;
  }
  .calculation-box .col-left,
  .calculation-box .col-right {
    padding-left: 200px;
  }
  .period-box .pl-arrow {
    display: none;
  }
}
@media (max-width: 767.98px) {
  body {
    font-size: 14px;
  }
  .h1 {
    font-size: 30px;
  }
  .h2 {
    font-size: 28px;
  }
  .h3 {
    font-size: 28px;
  }
  .h4 {
    font-size: 28px;
  }
  .h5 {
    font-size: 17px;
  }
  .btn-nano {
    padding: 0 20px;
  }
  .header-row {
    height: 57px;
  }
  .header-row .logo {
    max-width: 93px;
  }
  .header-row .col-icons {
    margin-left: auto;
  }
  .header-row .col-icons .phone-icon {
    order: 9;
  }
  .header-row .col-icons a {
    width: 32px;
    margin-right: 7px;
  }
  .header-row .col-hamburger {
    margin-left: 20px;
  }
  .home-box .home-big {
    background-image: url(/assets/home_bg-91ebcb65.png);
    background-size: cover;
  }
  .home-box .col-left {
    padding-top: 28px;
    padding-bottom: 34px;
    text-align: center;
  }
  .home-box .h1 {
    display: inline-block;
  }
  .home-box .sub-h {
    margin: 10px 0 23px;
    font-size: 15px;
  }
  .home-box .check-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 0;
  }
  .home-box .check-list .check-item {
    margin-bottom: 8px;
    padding: 10px 15px;
  }
  .home-box .btn-row {
    display: block;
  }
  .home-box .btn-row .btn {
    margin: 132px auto 19px;
  }
  .home-box .btn-row .check-element {
    display: inline-flex;
  }
  .check-element {
    font-size: 12px;
    text-align-last: left;
  }
  .check-element::before {
    margin-right: 15px;
  }
  .home-videos-box {
    margin-bottom: 36px;
  }
  .materials-box .sub-h {
    margin-bottom: 8px;
    font-size: 13px;
  }
  .materials-box .middle-content {
    display: block;
    margin-top: 15px;
  }
  .materials-box .col-tabs-wrap {
    margin-bottom: 20px;
  }
  .materials-box .middle-content .values-list {
    margin-bottom: 30px;
  }
  .materials-box .middle-content .values-list .col-gray {
    padding: 5px 0 0;
  }
  .materials-box .middle-content .col-info {
    margin-bottom: -214px;
  }
  .materials-box .middle-content .col-info img {
    max-width: 105px;
  }
  .materials-box .middle-content .col-info .ww-text {
    margin: 17px 0 20px;
    margin-right: -5px;
  }
  .materials-box .middle-content .col-info .ww-text p:first-child {
    font-size: 14px;
  }
  .materials-box .middle-content .col-info .for-you {
    margin: 0 0 13px;
    font-size: 14px;
  }
  .materials-box .middle-content .col-info .big-yellow {
    margin-top: 0;
  }
  .materials-box .middle-content .col-info .yellow-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .materials-box .middle-content .col-info .big-yellow img {
    width: 36px;
    margin-right: 13px;
  }
  .materials-box .middle-content .col-info .just-text {
    margin: 0;
  }
  .materials-box .big-row {
    background-image: url(/assets/mat_bg-eaff9483.png);
    background-position: 10% 80%;
  }
  .materials-box .big-row .bottom-info {
    height: 629px;
  }
  .beauty-box {
    padding: 30px 0 196px;
    background-image: url(/assets/beauty_bg-e29f0abb.png);
    background-position: 50% 100%;
    background-size: auto;
  }
  .beauty-box .b-list {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-top: 24px;
  }
  .beauty-box .b-list .b-item {
    padding: 25px 39px;
  }
  .beauty-box .b-list .icon {
    top: 17px;
    right: 28px;
  }
  .beauty-box .b-list .bi-title {
    max-width: none;
    margin-right: 20px;
    margin-bottom: 10px;
    font-size: 18px;
  }
  .beauty-box .b-list .bi-text {
    font-size: 15px;
  }
  .beauty-box .check-element {
    margin: 20px 0 0;
    max-width: 250px;
  }
  .price-box {
    padding: 23px 0 25px;
    background-image: url(/assets/price_bg-0fcb7e94.png);
    background-position: 50% 100%;
    background-size: cover;
  }
  .price-box .client-el {
    padding: 10px 12px;
    max-width: 303px;
    width: 100%;
    font-size: 14px;
  }
  .price-box .client-el img {
    width: 45px;
  }
  .price-box .client-el .dot {
    margin: auto 13px;
    flex-shrink: 0;
  }
  .price-box .h2 {
    margin: 14px 0 17px;
  }
  .price-box .info-list {
    gap: 10px;
  }
  .price-box .info-item {
    padding: 19px;
  }
  .price-box .info-item .ii-title {
    font-size: 17px;
    line-height: 135%;
    margin-right: 40px;
  }
  .price-box .info-item .styled-text {
    font-size: 13px;
  }
  .price-box .ii-first {
    display: block;
  }
  .price-box .ii-first .info-man {
    display: flex;
    align-items: center;
    margin: 0 0 13px;
    text-align: left;
    font-size: 13px;
  }
  .price-box .ii-first .info-man img {
    width: 89px;
    margin-right: 24px;
  }
  .price-box .ii-first .info-man .im-name {
    margin: 0;
  }
  .price-box .info-item .sub-text {
    margin: 8px 0 13px;
  }
  .visually-box {
    padding: 26px 0 30px;
  }
  .visually-box .sub-h {
    margin: 12px 0 16px;
    font-size: 13px;
  }
  .visually-box .table-title {
    margin: 11px 0 13px;
    font-size: 18px;
  }
  .visually-box .first-row .bottom-arrow {
    top: -10px;
    left: 25px;
    width: 50px;
  }
  .visually-box .second-row {
    padding: 0;
  }
  .visually-box .second-row .table {
    margin-top: 16px;
  }
  .visually-box .second-row .table-title {
    margin-top: 0;
  }
  .visually-box .first-row .table tbody td,
  .visually-box .first-row .table tbody th {
    padding-left: 2px;
    padding-right: 2px;
  }
  .icons-box .icons-list {
    display: grid;
    gap: 23px;
  }
  .icons-box .icons-item {
    width: 100%;
    max-width: none !important;
  }
  .icons-box .icons-item .icon {
    width: 28px;
  }
  .icons-box .icons-man {
    margin: 5px 0 0;
  }
  .estimates-box {
    padding: 30px 0;
    background: #fff url(/assets/es_bg-c280a2c3.png) no-repeat 50% 100%;
  }
  .estimates-box .col-left .h2 {
    margin-bottom: 14px;
  }
  .estimates-box .col-left .sub-h {
    margin-bottom: 197px;
    font-size: 14px;
  }
  .facade-box {
    padding: 30px 0;
  }
  .facade-box .h2 {
    max-width: 290px;
  }
  .facade-box .facade-list {
    margin-top: 16px;
    gap: 10px;
  }
  .facade-box .facade-item {
    margin-bottom: 0;
  }
  .facade-box .facade-info .info-man {
    margin-right: -5px;
    line-height: 1.2;
  }
  .facade-box .facade-info .info-subtitle {
    margin: 6px 0;
  }
  .honestly-box {
    padding: 30px 0 35px;
    background: #333 url(/assets/ho_bg-a33438b8.png) no-repeat 50% 50%;
    background-size: cover;
  }
  .honestly-box .sub-h {
    margin: 15px 0 0;
    font-size: 15px;
    line-height: 1.4;
  }
  .honestly-box .check-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 310px;
    margin: 13px auto 35px;
  }
  .honestly-box .check-list .check-item:nth-child(1) {
    margin-left: 68px;
    margin-right: -20px;
  }
  .honestly-box .check-list .check-item:nth-child(3) {
    margin-top: 47px;
    margin-bottom: -2em;
  }
  .honestly-box .check-list .check-item:nth-child(2) {
    margin-top: 70px;
    margin-right: 30px;
  }
  .honestly-box .check-element {
    max-width: 280px;
  }
  .guarantees-box {
    padding: 30px 0 20px;
    background: #fff url(/assets/gu_bg-6b19bd04.png) no-repeat 50% 100%;
  }
  .guarantees-box .h2 {
    margin-bottom: 22px;
  }
  .guarantees-box .gu-item {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .guarantees-box .gu-item .circle-int {
    margin-right: 10px;
    min-width: 23px;
    height: 23px;
    font-size: 12px;
  }
  .guarantees-box .gu-squares .gu-sq-item {
    margin-right: 14px;
    padding: 22px 19px 13px;
  }
  .guarantees-box .gu-squares .gu-sq-note {
    margin-top: 12px;
    font-size: 12px;
  }
  .guarantees-box .col-right .plus-img {
    margin: 85px auto 22px;
  }
  .guarantees-box .col-right .white-element {
    margin: auto;
    padding: 15px 18px;
  }
  .guarantees-box .col-right .white-element .check-element {
    flex-direction: row-reverse;
    text-align: right;
    line-height: 120%;
  }
  .guarantees-box .col-right .white-element .check-element::before {
    margin-left: 16px;
    margin-right: 0;
    width: 13px;
  }
  .calculation-box {
    padding: 30px 0 35px;
    background: #333 url(/assets/ca_bg-b508ec5a.png) no-repeat 50% 50%;
    background-size: cover;
  }
  .calculation-box .container {
    gap: 0;
  }
  .calculation-box .h2 {
    margin-bottom: 23px;
  }
  .calculation-box .calc-list {
    gap: 20px;
    max-width: 300px;
    margin-bottom: 160px;
  }
  .calculation-box .calc-item .ci-icon {
    width: 59px;
    height: 59px;
    margin-right: 19px;
    border-radius: 15px;
  }
  .calculation-box .calc-item .ci-icon img {
    transform: scale(0.741935);
  }
  .calculation-box .calc-item .ci-top {
    font-size: 18px;
  }
  .calculation-box .col-left .check-element {
    max-width: 270px;
  }
  .period-box {
    padding: 30px 0 20px;
  }
  .period-box .h2 {
    margin-bottom: 20px;
  }
  .period-box .pl-item {
    margin-bottom: 20px;
    max-width: 300px;
  }
  .period-box .pl-item .pi-icon {
    width: 59px;
    height: 59px;
    margin-right: 19px;
    border-radius: 15px;
  }
  .period-box .pl-item .pi-icon img {
    transform: scale(0.741935);
  }
  .period-box .pl-item .pi-top {
    font-size: 18px;
  }
  .period-box .pl-left .check-element {
    max-width: 270px;
  }
  .period-box .pl-arrow {
    margin: -62px 0 20px 170px;
    transform: rotate(230deg) scale(-0.47);
  }
  .callback-box {
    padding: 30px 0 0;
    display: flex;
    flex-direction: column-reverse;
  }
  .callback-box .cb-back {
    width: 100%;
  }
  .callback-box .cb-back {
    position: static;
  }
  .callback-box .col-left-img {
    margin-top: -60px;
    background: #333 url(/assets/cb_bg-f4d9ab4b.png) no-repeat 50% 50%;
    background-size: cover;
    height: 343px;
  }
  .callback-box .col-left-img img {
    margin: auto auto 0;
  }
  .callback-box .container {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .callback-box .col-left {
    order: 2;
  }
  .callback-box .col-left .cb-man {
    display: flex;
    align-items: center;
    max-width: 300px;
    margin-top: 17px;
    padding: 19px 18px 22px;
    text-align: left;
  }
  .callback-box .col-left .cb-man img {
    width: 75px;
    margin-right: 16px;
    flex-shrink: 0;
  }
  .callback-box .col-left .cb-man .cm-title {
    margin: 0 0 5px;
  }
  .callback-box .col-left .cb-man .cm-name {
    font-size: 11px;
  }
  .callback-box .col-right {
    margin: 0;
  }
  .callback-box .sub-h {
    margin: 14px 0 16px;
    max-width: 300px;
    font-size: 16px;
  }
  .callback-box .sub-mini {
    margin-bottom: 15px;
    font-size: 13px;
  }
  .about-box {
    padding: 30px 0 22px;
  }
  .about-box .sub-h {
    padding: 0;
    margin: 16px 0 23px;
    font-size: 14px;
  }
  .about-box .swiper {
    max-width: 246px;
    margin-left: 0;
    width: 100%;
  }
  .about-box .about-man {
    margin: 0 0 20px;
    font-size: 13px;
  }
  .about-box .about-man .am-name {
    margin: 11px -15px 0;
  }
  .about-box .about-man .am-info {
    margin: 0 -10px;
  }
  .about-box .swiper-scrollbar {
    height: 4px;
  }
  .about-box .col-right .btw-white {
    margin-top: -135px;
    margin-bottom: 15px;
    padding: 14px 22px;
    font-size: 14px;
  }
  .contacts-box {
    padding: 30px 0 0;
    display: flex;
    flex-direction: column-reverse;
  }
  .contacts-box .cb-back {
    position: static;
  }
  .contacts-box .col-right-img {
    margin-top: -137px;
    width: 100%;
    height: 504px;
    background-image: url(/assets/co_bg-daf2115e.png);
    background-position-x: 100%;
  }
  .contacts-box .col-right-img .co-logo {
    margin: auto auto 30px 0;
    max-width: 90px;
  }
  .contacts-box .h2 {
    margin-bottom: 20px;
  }
  .contacts-box .co-item {
    margin-bottom: 20px;
  }
  .contacts-box .co-item .co-icon {
    width: 59px;
    height: 59px;
    margin-right: 19px;
    border-radius: 15px;
  }
  .contacts-box .co-item .co-icon img {
    transform: scale(0.741935);
  }
  .contacts-box .co-item .co-text {
    font-size: 14px;
  }
  .contacts-box .co-info {
    display: block;
    margin: 27px 0 0;
    padding: 20px;
  }
  .contacts-box .co-info .icon {
    top: 24px;
    right: 24px;
    width: 20px;
    height: 20px;
  }
  .contacts-box .co-info .co-left {
    display: flex;
    align-items: center;
    margin: 0 0 14px;
    text-align: left;
  }
  .contacts-box .co-info .co-left img {
    width: 72px;
    margin: 0 18px 0 0;
  }
  .contacts-box .co-info .co-title {
    margin-bottom: 10px;
    font-size: 17px;
  }
  .footer-box {
    padding: 30px 0;
  }
  .footer-box .header-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: auto;
  }
  .footer-box .header-row .col-sublogo {
    display: block;
    margin: 29px auto;
  }
  .footer-box .header-row .col-phone-text {
    display: flex !important;
    font-size: 12px;
    padding: 0 0 11px;
    order: 7;
  }
  .footer-box .header-row .col-contact {
    display: flex;
    flex-direction: column-reverse;
    margin: auto auto 28px;
    max-width: none;
  }
  .footer-box .header-row .col-icons {
    margin: auto;
    order: 8;
  }
  .footer-box .header-row .col-btns {
    margin-top: 30px;
    order: 9;
  }
  .footer-box .bottom-row {
    gap: 10px;
    margin-top: 30px;
    padding-top: 25px;
    border-width: 1px;
    font-size: 12px;
  }
  .footer-box .bottom-row .col-left .fb-item,
  .footer-box .bottom-row .fb-item {
    margin: 4px 10px;
  }
  .footer-box .col-to {
    padding-top: 10px;
  }
  .popup:not(.popup-menu) {
    padding: 50px 0;
  }
  .popup .popup-content,
  .popup-form .popup-content {
    padding: 34px 25px;
  }
  .popup-menu .popup-content {
    padding: 12px 15px 30px;
    width: 375px;
    max-width: 100vw;
  }
  .popup-menu .logo {
    display: inline-block;
    max-width: 93px;
  }
  .popup-menu .close-btn {
    top: 13px;
  }
  .popup-menu .sublogo-row {
    margin: 17px 0 18px;
    max-width: 250px;
    font-size: 12px;
  }
  .popup-menu .menu-list {
    margin-bottom: 26px;
    gap: 7px;
  }
  .popup-menu .contact {
    margin-top: 26px;
  }
  .popup-menu .contact img {
    margin: 0 19px 0 0;
    width: 79px;
  }
  .popup-menu .contact .phone {
    font-size: 18px;
  }
  .popup-menu .contact .gray-text {
    margin: 6px 0 12px;
  }
  .popup-form .sub-h {
    font-size: 16px;
  }
  .popup-form .sub-mini {
    font-size: 13px;
  }
  .popup .popup-title {
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 17px;
  }
  .popup-price .p-man-row img {
    display: block;
    max-width: 227px;
    margin-left: auto;
    margin-right: auto;
  }
  .popup .p-yellow-info {
    padding: 14px 18px;
    font-size: 14px;
  }
  .popup-price .col-right {
    margin-top: 15px;
  }
  .popup-price .popup-title:not(:first-child) {
    margin-top: 15px;
  }
  .popup-price .py-last {
    margin: 15px 0;
  }
  .popup-exit .sub-title {
    margin: 15px 0;
    font-size: 14px;
  }
  .popup-exit .popup-content {
    background-size: 160% auto;
  }
  .popup-exit .bottom-row {
    display: grid;
    gap: 120px;
  }
  .thx_estimate-box {
    padding: 30px 0 10px;
  }
  .thx_estimate-box .bottom-row {
    margin-top: 18px;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .thx_estimate-box .styled-text {
    font-size: 14px;
  }
  .thx_estimate-box .cb-man {
    margin: 0;
    padding: 20px 20px 28px;
  }
  .thx_estimate-box .cb-man .cm-title {
    margin: 0 0 20px;
  }
  .thx_estimate-box .cb-man .cm-middle {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 245px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .thx_estimate-box .cb-man .cm-middle img {
    width: 90px;
    margin-right: 22px;
    flex-shrink: 0;
  }
  .thx_estimate-box .cb-man .cm-name {
    margin: 0 0 12px;
  }
  .thx_estimate-box .col-right .img-phone {
    max-width: 325px;
    margin: -55px -10px -32px;
  }
  .thx_price-box {
    margin: 0;
    padding: 30px 0 10px;
  }
  .thx_price-box .h3 {
    margin-bottom: 24px;
  }
  .thx_price-box .top-row {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .thx_price-box .top-row img {
    max-width: 109px;
    margin-right: 9px;
  }
  .thx_price-box .top-row .sub-title {
    margin: 0;
  }
  .thx_price-box .top-row .phone {
    margin: 3px 0 5px;
    font-size: 20px;
  }
  .thx_price-box .h5 {
    margin-bottom: 20px;
  }
  .thx_price-box .col-left .styled-text {
    font-size: 14px;
  }
  .thx_price-box .col-left .styled-text ol {
    margin-bottom: 20px;
  }
  .thx_price-box .bottom-row {
    gap: 20px;
  }
}
@media (max-width: 364.98px) {
  .header-row .col-icons a {
    width: 28px;
    margin-right: 5px;
  }
  .header-row .col-hamburger {
    margin-left: 10px;
  }
  .materials-box .middle-content .col-info .yellow-wrap {
    display: grid;
    gap: 9px;
  }
  .visually-box .second-row .col-left,
  .visually-box .first-row .col-right {
    overflow-x: auto;
  }
  .guarantees-box .gu-squares .gu-sq-item {
    padding: 20px 15px 11px;
  }
  .btn {
    padding: 0 35px;
  }
  .btn-nano {
    padding: 0 15px;
  }
}/**
 * Swiper 10.0.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 8, 2023
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, 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") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  overflow: clip;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */