@font-face {
  font-family: 'Euclid Square';
  src: url("fonts/EuclidSquare-SemiBold.eot");
  src: local("Euclid Square SemiBold"), local("fonts/EuclidSquare-SemiBold"), url("fonts/EuclidSquare-SemiBold.eot?#iefix") format("embedded-opentype"), url("fonts/EuclidSquare-SemiBold.woff2") format("woff2"), url("fonts/EuclidSquare-SemiBold.woff") format("woff"), url("fonts/EuclidSquare-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal; }
@font-face {
  font-family: 'Euclid Square';
  src: url("fonts/EuclidSquare-Medium.eot");
  src: local("Euclid Square Medium"), local("fonts/EuclidSquare-Medium"), url("fonts/EuclidSquare-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/EuclidSquare-Medium.woff2") format("woff2"), url("fonts/EuclidSquare-Medium.woff") format("woff"), url("fonts/EuclidSquare-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal; }
@font-face {
  font-family: 'Euclid Square';
  src: url("fonts/EuclidSquare-Regular.eot");
  src: local("Euclid Square Regular"), local("fonts/EuclidSquare-Regular"), url("fonts/EuclidSquare-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/EuclidSquare-Regular.woff2") format("woff2"), url("fonts/EuclidSquare-Regular.woff") format("woff"), url("fonts/EuclidSquare-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Euclid Square';
  src: url("fonts/EuclidSquare-Light.eot");
  src: local("Euclid Square Light"), local("fonts/EuclidSquare-Light"), url("fonts/EuclidSquare-Light.eot?#iefix") format("embedded-opentype"), url("fonts/EuclidSquare-Light.woff2") format("woff2"), url("fonts/EuclidSquare-Light.woff") format("woff"), url("fonts/EuclidSquare-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal; }
:root {
  font-size: 20px; }

ul, li {
  margin: 0;
  padding: 0;
  display: block; }

a {
  -webkit-transition: .3s all;
  transition: .3s all;
  outline: none;
  text-decoration: none; }
  a:hover {
    text-decoration: none; }

h1, h2, h3, h4, h5, p {
  margin: 0; }

html {
  scroll-behavior: smooth; }

body {
  font-family: 'Euclid Square';
  margin-top: 4rem; }

.mobile-fixed {
  display: none; }

strong {
  font-weight: 600; }

.toast {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-150%);
          transform: translateX(-50%) translateY(-150%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: .85rem;
  min-width: 25rem;
  max-width: calc(100% - 2rem);
  padding: .9rem 1.5rem .9rem .9rem;
  color: #fff;
  background: -webkit-linear-gradient(315deg, #C89665 0%, #B7875B 100%);
  background: linear-gradient(135deg, #C89665 0%, #B7875B 100%);
  border-radius: 1.2rem;
  -webkit-box-shadow: 0 1rem 2.5rem rgba(183, 135, 91, 0.38);
          box-shadow: 0 1rem 2.5rem rgba(183, 135, 91, 0.38);
  z-index: 1000000;
  pointer-events: none;
  -webkit-transition: -webkit-transform .55s cubic-bezier(0.2, 0.9, 0.3, 1.1);
  transition: -webkit-transform .55s cubic-bezier(0.2, 0.9, 0.3, 1.1);
  transition: transform .55s cubic-bezier(0.2, 0.9, 0.3, 1.1);
  transition: transform .55s cubic-bezier(0.2, 0.9, 0.3, 1.1), -webkit-transform .55s cubic-bezier(0.2, 0.9, 0.3, 1.1); }
  .toast.show {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0); }
  .toast.error {
    background: -webkit-linear-gradient(315deg, #d85b5b 0%, #b83232 100%);
    background: linear-gradient(135deg, #d85b5b 0%, #b83232 100%);
    -webkit-box-shadow: 0 1rem 2.5rem rgba(184, 50, 50, 0.35);
            box-shadow: 0 1rem 2.5rem rgba(184, 50, 50, 0.35); }
  .toast__icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
    .toast__icon svg {
      width: 1.3rem;
      height: 1.3rem;
      stroke: #fff;
      stroke-width: 3;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
      -webkit-animation: toast-icon-draw .5s ease .15s backwards;
              animation: toast-icon-draw .5s ease .15s backwards; }
  .toast__content {
    min-width: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .toast__title {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: .15rem; }
  .toast__text {
    font-size: .82rem;
    line-height: 1.3;
    font-weight: 400;
    opacity: .94; }

@-webkit-keyframes toast-icon-draw {
  from {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5); }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes toast-icon-draw {
  from {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5); }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); } }

.section-title {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 130%;
  text-align: center;
  margin-bottom: 5rem;
  position: relative; }
  .section-title strong {
    font-weight: 600; }

.carousel-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }
  .carousel-arrows span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 3.5rem;
    height: 3.5rem;
    border: 1px solid #D9D9D9;
    cursor: pointer;
    -webkit-transition: .4s all;
    transition: .4s all; }
    .carousel-arrows span:hover {
      border-color: #B7875B;
      position: relative;
      z-index: 2; }
    .carousel-arrows span svg {
      width: 2rem; }
    .carousel-arrows span.arrow-right {
      margin-left: -1px; }

.owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 10; }
  .owl-dots .owl-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #D9D9D9 !important;
    margin: 0 0.25rem; }
  .owl-dots .active {
    border-radius: .5rem;
    width: 1.8rem;
    background: #B7875B !important; }

.tel-popup {
  position: fixed;
  z-index: 10;
  bottom: 12vh;
  right: 5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  -webkit-animation: pulse-yellow 2s infinite;
          animation: pulse-yellow 2s infinite;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 199, 0, 0.3);
          box-shadow: 0 0 0 0 rgba(255, 199, 0, 0.3);
  cursor: pointer; }
  .tel-popup svg {
    width: 3rem;
    height: 3rem; }

@-webkit-keyframes pulse-yellow {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 199, 0, 0.3);
            box-shadow: 0 0 0 0 rgba(255, 199, 0, 0.3); }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 0 0 1rem rgba(255, 121, 63, 0);
            box-shadow: 0 0 0 1rem rgba(255, 121, 63, 0); }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 121, 63, 0);
            box-shadow: 0 0 0 0 rgba(255, 121, 63, 0); } }

@keyframes pulse-yellow {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 199, 0, 0.3);
            box-shadow: 0 0 0 0 rgba(255, 199, 0, 0.3); }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 0 0 1rem rgba(255, 121, 63, 0);
            box-shadow: 0 0 0 1rem rgba(255, 121, 63, 0); }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 121, 63, 0);
            box-shadow: 0 0 0 0 rgba(255, 121, 63, 0); } }
.zoom-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.67);
  z-index: 9999;
  display: none; }
  .zoom-popup__close {
    position: absolute;
    right: 5rem;
    top: 2rem;
    cursor: pointer;
    width: 1.5rem;
    height: 1.5rem; }
    .zoom-popup__close path {
      fill: #fff; }
  .zoom-popup img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 70vw;
    height: 80vh;
    -o-object-fit: contain;
       object-fit: contain; }

.feedback {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.6);
  display: none; }
  .feedback-content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    top: 55%;
    width: 22rem;
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem 2rem; }
  .feedback-done {
    display: none;
    text-align: center; }
  .feedback-close {
    cursor: pointer;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: -5rem;
    -webkit-box-shadow: 0px 10px 15px rgba(255, 255, 255, 0.3);
            box-shadow: 0px 10px 15px rgba(255, 255, 255, 0.3);
    border-radius: 50%; }
    .feedback-close img {
      display: block;
      width: 3rem; }
  .feedback__title {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 1rem; }
  .feedback__text {
    line-height: 134%;
    margin-bottom: 2rem; }
  .feedback-form__input {
    margin-bottom: 1rem; }
    .feedback-form__input label {
      color: #999;
      font-size: 0.8rem;
      margin-bottom: 0.5rem;
      display: inline-block; }
    .feedback-form__input input {
      width: 100%;
      padding: 0.9rem 1rem;
      font-size: 0.9rem;
      color: #111;
      font-weight: 500;
      background: #F8F8F8;
      border: .1px solid #F8F8F8;
      outline: none;
      border-radius: .5rem; }
      .feedback-form__input input:focus {
        border-color: #FFC700; }
  .feedback-form .btn {
    margin-top: 0.5rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 3rem;
    background: #000;
    -webkit-transition: .4s all;
    transition: .4s all;
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    border: none; }
    .feedback-form .btn:hover {
      background: #FFC700; }
  .feedback__img {
    margin-bottom: 2rem; }
    .feedback__img img {
      width: 5rem; }
  .feedback__phone {
    display: none; }

.buttons {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: rgba(0, 0, 0, 0.6);
  display: none; }
  .buttons-content {
    position: absolute;
    bottom: 3rem;
    right: 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
    .buttons-content a {
      width: 20rem;
      height: 3.5rem;
      color: #fff;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      font-weight: 600;
      font-size: 0.9rem;
      margin-bottom: 1rem;
      border-radius: .5rem; }
      .buttons-content a svg {
        width: 1.2rem;
        margin-right: .5rem; }
      .buttons-content a.blue {
        background: #00AAED;
        -webkit-box-shadow: 0px 10px 15px rgba(0, 178, 255, 0.3);
                box-shadow: 0px 10px 15px rgba(0, 178, 255, 0.3); }
      .buttons-content a.green {
        background: #00C44E;
        -webkit-box-shadow: 0px 10px 15px rgba(0, 255, 102, 0.3);
                box-shadow: 0px 10px 15px rgba(0, 255, 102, 0.3); }
      .buttons-content a.purple {
        background: #8F00FF;
        -webkit-box-shadow: 0px 10px 15px rgba(143, 0, 255, 0.3);
                box-shadow: 0px 10px 15px rgba(143, 0, 255, 0.3); }
      .buttons-content a.orange {
        background: #FF6600;
        -webkit-box-shadow: 0px 10px 15px rgba(255, 102, 0, 0.3);
                box-shadow: 0px 10px 15px rgba(255, 102, 0, 0.3); }
  .buttons-close {
    cursor: pointer;
    -webkit-box-shadow: 0px 10px 15px rgba(255, 255, 255, 0.3);
            box-shadow: 0px 10px 15px rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin-top: 1.5rem; }
    .buttons-close img {
      display: block;
      width: 3rem; }

.header {
  padding: 1rem 0;
  background: #fff;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.25); }
  .header-mobile {
    display: none; }
  .header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .header__logo a {
    display: block; }
    .header__logo a img {
      display: block;
      width: 8.25rem; }
  .header-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .header-menu li {
      margin-right: 2rem; }
      .header-menu li a {
        font-size: 0.9rem;
        color: #808080;
        font-weight: 300; }
        .header-menu li a:hover {
          color: #000; }
    .header-menu li.header-menu__call {
      margin-right: 0;
      margin-left: 3rem; }
      .header-menu li.header-menu__call a {
        font-weight: 500;
        color: #B7875B; }
  .header-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .header-social li {
      margin-right: 1rem; }
      .header-social li:last-child {
        margin-right: 0; }
      .header-social li a {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        background: #F3F3F3; }
        .header-social li a:hover {
          background: #B7875B; }
          .header-social li a:hover svg path {
            fill: #fff; }
        .header-social li a svg {
          width: 1.2rem; }

.main {
  height: 40rem;
  background: url(../img/main.jpg) center center no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff; }
  .main-content {
    max-width: 45rem; }
  .main__title {
    font-weight: 300;
    font-size: 2.8rem;
    line-height: 150%;
    margin-bottom: 3rem; }
    .main__title strong {
      font-weight: 500; }
  .main__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 3rem; }
    .main__list li {
      width: 44%;
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 1rem; }
      .main__list li::before {
        content: '';
        width: 1.75rem;
        height: 1.75rem;
        background: url(../img/check.svg) center center no-repeat;
        background-size: contain;
        margin-right: 0.75rem; }
  .main__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .main__btns a {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 16rem;
      height: 3.5rem;
      font-weight: 500;
      font-size: 1.1rem;
      background: #000;
      color: #fff;
      border-radius: .5rem;
      position: relative;
      overflow: hidden;
      -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.18);
              box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.18);
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-transition: background .3s ease, color .3s ease, -webkit-transform .25s ease, -webkit-box-shadow .25s ease;
      transition: background .3s ease, color .3s ease, -webkit-transform .25s ease, -webkit-box-shadow .25s ease;
      transition: transform .25s ease, box-shadow .25s ease, background .3s ease, color .3s ease;
      transition: transform .25s ease, box-shadow .25s ease, background .3s ease, color .3s ease, -webkit-transform .25s ease, -webkit-box-shadow .25s ease; }
      .main__btns a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -75%;
        width: 45%;
        height: 100%;
        background: -webkit-linear-gradient(330deg, transparent 0%, rgba(255, 255, 255, 0.36) 50%, transparent 100%);
        background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.36) 50%, transparent 100%);
        -webkit-transform: skewX(-20deg);
                transform: skewX(-20deg);
        -webkit-animation: hero-btn-shine 3.4s ease-in-out infinite;
                animation: hero-btn-shine 3.4s ease-in-out infinite;
        pointer-events: none; }
      .main__btns a:hover {
        background: #fff;
        color: #000;
        -webkit-transform: translateY(-0.12rem);
                transform: translateY(-0.12rem);
        -webkit-box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.24);
                box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.24); }
      .main__btns a:active {
        -webkit-transform: translateY(0) scale(0.98);
                transform: translateY(0) scale(0.98); }
      .main__btns a.btn-brown {
        margin-left: 2rem;
        background: #B7875B; }
        .main__btns a.btn-brown::before {
          -webkit-animation-delay: 1.2s;
                  animation-delay: 1.2s; }
        .main__btns a.btn-brown svg {
          width: 1.25rem;
          margin-right: .5rem;
          -webkit-animation: hero-call-pulse 2.6s ease-in-out infinite;
                  animation: hero-call-pulse 2.6s ease-in-out infinite;
          -webkit-transform-origin: center;
                  transform-origin: center; }
        .main__btns a.btn-brown:hover {
          background: #000;
          color: #fff; }

@-webkit-keyframes hero-btn-shine {
  0%, 45% {
    left: -75%; }
  70%, 100% {
    left: 125%; } }
@keyframes hero-btn-shine {
  0%, 45% {
    left: -75%; }
  70%, 100% {
    left: 125%; } }
@-webkit-keyframes hero-call-pulse {
  0%, 82%, 100% {
    -webkit-transform: rotate(0) scale(1);
            transform: rotate(0) scale(1); }
  87% {
    -webkit-transform: rotate(-10deg) scale(1.08);
            transform: rotate(-10deg) scale(1.08); }
  92% {
    -webkit-transform: rotate(10deg) scale(1.08);
            transform: rotate(10deg) scale(1.08); } }
@keyframes hero-call-pulse {
  0%, 82%, 100% {
    -webkit-transform: rotate(0) scale(1);
            transform: rotate(0) scale(1); }
  87% {
    -webkit-transform: rotate(-10deg) scale(1.08);
            transform: rotate(-10deg) scale(1.08); }
  92% {
    -webkit-transform: rotate(10deg) scale(1.08);
            transform: rotate(10deg) scale(1.08); } }
.discounts {
  padding: 5rem 0 0; }
  .discounts-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .discounts-item {
    width: 32%;
    min-height: 16.4rem;
    padding: 1.8rem;
    background: #F8F8F8;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: .4s all;
    transition: .4s all; }
    .discounts-item::before {
      content: '%';
      position: absolute;
      right: -1.2rem;
      top: -1rem;
      font-size: 6.8rem;
      line-height: 1;
      font-weight: 600;
      color: rgba(183, 135, 91, 0.09);
      pointer-events: none; }
    .discounts-item:nth-child(3)::before {
      content: '0'; }
    .discounts-item:hover {
      -webkit-box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 64.8148px 46.8519px rgba(0, 0, 0, 0.0531481), 0px 38.5185px 25.4815px rgba(0, 0, 0, 0.0425185), 0px 20px 13px rgba(0, 0, 0, 0.035), 0px 8.14815px 6.51852px rgba(0, 0, 0, 0.0274815), 0px 1.85185px 3.14815px rgba(0, 0, 0, 0.0168519);
              box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 64.8148px 46.8519px rgba(0, 0, 0, 0.0531481), 0px 38.5185px 25.4815px rgba(0, 0, 0, 0.0425185), 0px 20px 13px rgba(0, 0, 0, 0.035), 0px 8.14815px 6.51852px rgba(0, 0, 0, 0.0274815), 0px 1.85185px 3.14815px rgba(0, 0, 0, 0.0168519); }
      .discounts-item:hover .discounts-item__btn {
        background: #000; }
    .discounts-item__percent {
      color: #B7875B;
      font-size: 2.6rem;
      line-height: 1;
      font-weight: 600;
      margin-bottom: .55rem;
      position: relative;
      z-index: 1; }
    .discounts-item__label {
      display: inline-block;
      -ms-flex-item-align: start;
          align-self: flex-start;
      padding: .45rem .85rem;
      margin-bottom: 1rem;
      color: #fff;
      background: #B7875B;
      border-radius: 2rem;
      font-size: .75rem;
      font-weight: 500;
      text-transform: uppercase;
      position: relative;
      z-index: 1; }
    .discounts-item__title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: .8rem;
      position: relative;
      z-index: 1; }
    .discounts-item__text {
      font-size: .95rem;
      line-height: 150%;
      font-weight: 300;
      margin-bottom: 1.25rem;
      position: relative;
      z-index: 1; }
    .discounts-item__btn {
      position: relative;
      z-index: 1;
      margin-top: auto;
      -ms-flex-item-align: start;
          align-self: flex-start;
      padding: .75rem 1rem;
      min-width: 10.5rem;
      text-align: center;
      color: #fff;
      background: #B7875B;
      border-radius: .75rem;
      font-weight: 500;
      -webkit-transition: .4s all;
      transition: .4s all; }

.choose {
  padding: 5rem 0; }
  .choose-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .choose-item {
    width: 23.5%;
    margin-right: 2%;
    padding: 2rem 2rem 4rem;
    background: #F8F8F8;
    border-radius: 1rem;
    position: relative;
    -webkit-transition: .4s all;
    transition: .4s all;
    overflow: hidden; }
    .choose-item:nth-child(4n) {
      margin-right: 0; }
    .choose-item:hover {
      -webkit-box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 64.8148px 46.8519px rgba(0, 0, 0, 0.0531481), 0px 38.5185px 25.4815px rgba(0, 0, 0, 0.0425185), 0px 20px 13px rgba(0, 0, 0, 0.035), 0px 8.14815px 6.51852px rgba(0, 0, 0, 0.0274815), 0px 1.85185px 3.14815px rgba(0, 0, 0, 0.0168519);
              box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 64.8148px 46.8519px rgba(0, 0, 0, 0.0531481), 0px 38.5185px 25.4815px rgba(0, 0, 0, 0.0425185), 0px 20px 13px rgba(0, 0, 0, 0.035), 0px 8.14815px 6.51852px rgba(0, 0, 0, 0.0274815), 0px 1.85185px 3.14815px rgba(0, 0, 0, 0.0168519); }
      .choose-item:hover .choose-item__ico {
        background: #000; }
    .choose-item__title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 1rem; }
    .choose-item__text {
      line-height: 150%;
      font-weight: 300; }
    .choose-item__ico {
      border-radius: 1rem 0;
      padding: .85rem 1rem;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-transition: .4s all;
      transition: .4s all;
      background: #B7875B;
      position: absolute;
      right: 0;
      bottom: 0; }
      .choose-item__ico img {
        width: 2rem; }

.products {
  padding: 7.5rem 0 9rem;
  background: #F8F8F8;
  border-radius: 5rem; }
  .products-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 3rem; }
  .products-item {
    width: 23.5%;
    margin-right: 2%;
    border-radius: 1rem 1rem 2.5rem 1rem;
    overflow: hidden;
    height: 18rem;
    margin-bottom: 2rem;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 2rem 1.5rem;
    color: #fff;
    -webkit-transition: .4s all;
    transition: .4s all; }
    .products-item::after {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      content: '';
      background: -webkit-gradient(linear, left bottom, left top, color-stop(3.79%, rgba(0, 0, 0, 0.8)), color-stop(38.14%, rgba(3, 3, 3, 0.3)), color-stop(68.97%, rgba(0, 0, 0, 0)));
      background: linear-gradient(360deg, rgba(0, 0, 0, 0.8) 3.79%, rgba(3, 3, 3, 0.3) 38.14%, rgba(0, 0, 0, 0) 68.97%); }
    .products-item:hover {
      -webkit-box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 64.8148px 46.8519px rgba(0, 0, 0, 0.0531481), 0px 38.5185px 25.4815px rgba(0, 0, 0, 0.0425185), 0px 20px 13px rgba(0, 0, 0, 0.035), 0px 8.14815px 6.51852px rgba(0, 0, 0, 0.0274815), 0px 1.85185px 3.14815px rgba(0, 0, 0, 0.0168519);
              box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 64.8148px 46.8519px rgba(0, 0, 0, 0.0531481), 0px 38.5185px 25.4815px rgba(0, 0, 0, 0.0425185), 0px 20px 13px rgba(0, 0, 0, 0.035), 0px 8.14815px 6.51852px rgba(0, 0, 0, 0.0274815), 0px 1.85185px 3.14815px rgba(0, 0, 0, 0.0168519); }
      .products-item:hover .products-item__btn {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex; }
      .products-item:hover::after {
        background: -webkit-gradient(linear, left bottom, left top, color-stop(3.79%, #B7875B), color-stop(38.14%, rgba(167, 96, 57, 0.5)), color-stop(68.97%, rgba(183, 135, 91, 0)));
        background: linear-gradient(360deg, #B7875B 3.79%, rgba(167, 96, 57, 0.5) 38.14%, rgba(183, 135, 91, 0) 68.97%); }
    .products-item:nth-child(3n) {
      margin-right: 0; }
    .products-item__big {
      width: 49%; }
    .products-item__img {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 0; }
      .products-item__img img {
        width: 100%;
        height: 100%;
        display: block;
        -o-object-fit: cover;
           object-fit: cover; }
    .products-item__name {
      position: relative;
      z-index: 2;
      font-size: 1.1rem;
      font-weight: 500; }
    .products-item__btn {
      position: relative;
      z-index: 2;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      font-weight: 500;
      font-size: 0.75rem;
      color: #000;
      background: #fff;
      margin-top: 1.5rem;
      width: 6.5rem;
      height: 1.75rem;
      border-radius: .25rem;
      display: none; }
      .products-item__btn:hover {
        background: #000;
        color: #fff; }
  .products-guarant {
    margin: -9rem 0 7.5rem; }
    .products-guarant__wrap {
      border-radius: 2.5rem;
      -webkit-box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 64.8148px 46.8519px rgba(0, 0, 0, 0.0531481), 0px 38.5185px 25.4815px rgba(0, 0, 0, 0.0425185), 0px 20px 13px rgba(0, 0, 0, 0.035), 0px 8.14815px 6.51852px rgba(0, 0, 0, 0.0274815), 0px 1.85185px 3.14815px rgba(0, 0, 0, 0.0168519);
              box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 64.8148px 46.8519px rgba(0, 0, 0, 0.0531481), 0px 38.5185px 25.4815px rgba(0, 0, 0, 0.0425185), 0px 20px 13px rgba(0, 0, 0, 0.035), 0px 8.14815px 6.51852px rgba(0, 0, 0, 0.0274815), 0px 1.85185px 3.14815px rgba(0, 0, 0, 0.0168519);
      background: url(../img/guarant-bg.png) center center no-repeat;
      background-size: cover;
      padding: 3.5rem 5rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
    .products-guarant__left {
      width: 40%; }
    .products-guarant__right {
      width: 55%; }
    .products-guarant__title {
      font-size: 1.9rem;
      font-weight: 300;
      margin-bottom: 1.5rem; }
      .products-guarant__title strong {
        display: block; }
    .products-guarant__btn {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      font-weight: 500;
      font-size: 1.1rem;
      background: #000;
      color: #fff;
      width: 11.5rem;
      height: 3.5rem;
      border-radius: .5rem; }
      .products-guarant__btn:hover {
        color: #fff;
        background: #B7875B; }
    .products-guarant__info {
      margin-bottom: 1rem; }
    .products-guarant__img img {
      width: 90%; }

.workflow {
  padding: 0 0 7.5rem; }
  .workflow-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .workflow-item {
    width: 23.5%;
    min-height: 15.5rem;
    padding: 2rem 1.6rem 4.8rem;
    background: #F8F8F8;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    -webkit-transition: .4s all;
    transition: .4s all; }
    .workflow-item::before {
      content: '';
      position: absolute;
      right: 0;
      bottom: 0;
      width: 3.5rem;
      height: 3.5rem;
      background: #B7875B;
      border-radius: 1rem 0 1rem 0;
      z-index: 0; }
    .workflow-item:hover {
      -webkit-box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 64.8148px 46.8519px rgba(0, 0, 0, 0.0531481), 0px 38.5185px 25.4815px rgba(0, 0, 0, 0.0425185), 0px 20px 13px rgba(0, 0, 0, 0.035), 0px 8.14815px 6.51852px rgba(0, 0, 0, 0.0274815), 0px 1.85185px 3.14815px rgba(0, 0, 0, 0.0168519);
              box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 64.8148px 46.8519px rgba(0, 0, 0, 0.0531481), 0px 38.5185px 25.4815px rgba(0, 0, 0, 0.0425185), 0px 20px 13px rgba(0, 0, 0, 0.035), 0px 8.14815px 6.51852px rgba(0, 0, 0, 0.0274815), 0px 1.85185px 3.14815px rgba(0, 0, 0, 0.0168519); }
    .workflow-item__num {
      color: #B7875B;
      font-size: 2.8rem;
      line-height: 1;
      font-weight: 600;
      margin-bottom: 1.7rem; }
    .workflow-item__title {
      font-size: 1.15rem;
      font-weight: 600;
      margin-bottom: .85rem; }
    .workflow-item__text {
      line-height: 150%;
      font-weight: 300;
      padding-right: 0;
      position: relative;
      z-index: 1; }
    .workflow-item__ico {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 3.5rem;
      height: 3.5rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      z-index: 1; }
      .workflow-item__ico img {
        width: 1.75rem;
        max-height: 1.75rem;
        -o-object-fit: contain;
           object-fit: contain;
        -webkit-filter: brightness(0) invert(1);
                filter: brightness(0) invert(1); }
      .workflow-item__ico svg {
        width: 1.75rem;
        height: 1.75rem; }

.projects-carousel .owl-stage-outer {
  padding-bottom: 10rem; }
.projects-carousel .owl-dot {
  margin-top: -7rem; }
.projects-item {
  height: 20rem;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  color: #fff;
  padding: 2rem;
  -webkit-transition: .4s all;
  transition: .4s all; }
  .projects-item:hover {
    -webkit-box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 64.8148px 46.8519px rgba(0, 0, 0, 0.0531481), 0px 38.5185px 25.4815px rgba(0, 0, 0, 0.0425185), 0px 20px 13px rgba(0, 0, 0, 0.035), 0px 8.14815px 6.51852px rgba(0, 0, 0, 0.0274815), 0px 1.85185px 3.14815px rgba(0, 0, 0, 0.0168519);
            box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 64.8148px 46.8519px rgba(0, 0, 0, 0.0531481), 0px 38.5185px 25.4815px rgba(0, 0, 0, 0.0425185), 0px 20px 13px rgba(0, 0, 0, 0.035), 0px 8.14815px 6.51852px rgba(0, 0, 0, 0.0274815), 0px 1.85185px 3.14815px rgba(0, 0, 0, 0.0168519); }
  .projects-item__img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
    .projects-item__img img {
      width: 100%;
      height: 100%;
      display: block;
      -o-object-fit: cover;
         object-fit: cover; }
  .projects-item__head {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 1.5rem; }
  .projects-item__location {
    font-size: 0.7rem;
    background: rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: .25rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.3rem 0.5rem; }
  .projects-item__zoom {
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    -webkit-transition: .4s all;
    transition: .4s all;
    background: rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: .25rem; }
    .projects-item__zoom:hover {
      background: #B7875B; }
    .projects-item__zoom img {
      width: 1.75rem !important; }
  .projects-item__name {
    font-weight: 600;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem; }
  .projects-item__list {
    position: relative;
    z-index: 2;
    font-size: 0.9rem; }
    .projects-item__list li {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-bottom: 0.8rem; }
      .projects-item__list li:last-child {
        margin-bottom: 0; }
      .projects-item__list li span:first-child {
        font-weight: 300;
        color: #D2D2D2;
        width: 6rem;
        margin-right: 1rem; }
      .projects-item__list li span:last-child {
        font-weight: 500; }
  .projects-item__btn {
    position: absolute;
    z-index: 2;
    right: 2rem;
    bottom: 2rem;
    width: 9rem;
    height: 2.5rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    background: #B7875B;
    border-radius: .5rem; }
    .projects-item__btn:hover {
      background: #000; }

.faq {
  padding: 0 0 7.5rem; }
  .faq-wrap {
    width: 70%;
    margin: 0 auto; }
  .faq-item {
    background: #F8F8F8;
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    -webkit-transition: .4s all;
    transition: .4s all; }
    .faq-item.active {
      -webkit-box-shadow: 0px 40px 60px rgba(0, 0, 0, 0.06);
              box-shadow: 0px 40px 60px rgba(0, 0, 0, 0.06); }
      .faq-item.active .faq-item__answer {
        display: block; }
      .faq-item.active .faq-item__toggle {
        background: #B7875B; }
        .faq-item.active .faq-item__toggle::after {
          -webkit-transform: translate(-50%, -50%) rotate(90deg);
                  transform: translate(-50%, -50%) rotate(90deg);
          opacity: 0; }
    .faq-item__question {
      cursor: pointer;
      padding: 1.35rem 1.5rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 1rem;
      font-size: 1.05rem;
      font-weight: 600; }
    .faq-item__toggle {
      width: 2rem;
      height: 2rem;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      border: none;
      border-radius: 50%;
      background: #000;
      position: relative;
      cursor: pointer;
      -webkit-transition: .4s all;
      transition: .4s all; }
      .faq-item__toggle::before, .faq-item__toggle::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        width: .8rem;
        height: .08rem;
        background: #fff;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        -webkit-transition: .4s all;
        transition: .4s all; }
      .faq-item__toggle::after {
        -webkit-transform: translate(-50%, -50%) rotate(90deg);
                transform: translate(-50%, -50%) rotate(90deg); }
    .faq-item__answer {
      display: none;
      padding: 0 1.5rem 1.45rem;
      line-height: 150%;
      font-weight: 300;
      color: #555; }

.reviews {
  margin-bottom: 7.5rem; }
  .reviews-carousel .owl-dots {
    margin-top: 3rem; }
  .reviews-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    height: 22.5rem;
    border-radius: 1.5rem;
    overflow: hidden; }
    .reviews-item__info {
      width: 50%;
      padding: 3rem 2.5rem;
      border: 1px solid #D9D9D9;
      border-radius: 1.5rem 0 0 1.5rem; }
    .reviews-item__wrap, .reviews-item__head {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .reviews-item__head {
      margin-bottom: 2.5rem; }
    .reviews-item__photo {
      width: 3.5rem;
      height: 3.5rem;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-right: 1rem; }
      .reviews-item__photo img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        border-radius: 50%; }
    .reviews-item__name {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0.15rem; }
    .reviews-item__from {
      color: #A1A1A1;
      font-size: 0.8rem; }
    .reviews-item__mark svg {
      width: 6rem;
      height: 1rem; }
    .reviews-item__text {
      line-height: 150%; }
    .reviews-item__img {
      width: 50%; }
      .reviews-item__img img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover; }

.partners {
  border-radius: 5rem 5rem 0 0;
  overflow: hidden;
  background: url(../img/partners-bg.jpg) center center no-repeat;
  background-size: cover;
  padding: 5rem 0; }
  .partners__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 3.5rem; }
    .partners__title strong {
      margin-left: .5rem; }
    .partners__title span {
      border: .1rem solid #DFDFDF;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: .4rem .6rem;
      background: #f00;
      border-radius: 1.25rem;
      font-size: 0.8rem;
      line-height: 0.8rem;
      color: #fff;
      font-weight: 600;
      margin-left: 1rem; }
  .partners-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .partners-item {
    width: 10rem;
    height: 10rem;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 30px 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 30px 30px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: .4s all;
    transition: .4s all;
    border: .25rem solid transparent;
    margin-right: 2rem; }
    .partners-item:last-child {
      margin-right: 0; }
    .partners-item:hover {
      border-color: #B7875B; }
    .partners-item img {
      max-width: 90%;
      max-height: 90%;
      -o-object-fit: contain;
         object-fit: contain; }

.footer-map {
  height: 35rem;
  position: relative; }
  .footer-map #map {
    width: 100%;
    height: 100%; }
.footer-contact {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 20vw;
  padding: 2.5rem 2rem;
  background: rgba(44, 44, 44, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 5;
  border-radius: 1rem;
  width: 22rem; }
  .footer-contact__title {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #fff; }
  .footer-contact__list li {
    margin-bottom: 1rem; }
    .footer-contact__list li a, .footer-contact__list li div {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      color: #fff;
      font-weight: 500;
      font-size: 0.9rem;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; }
      .footer-contact__list li a img, .footer-contact__list li div img {
        width: 1.25rem;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        margin-right: .75rem; }
    .footer-contact__list li a:hover {
      color: #B7875B; }
.footer-bot {
  -webkit-box-shadow: 0px 0px 50px rgba(0, 117, 255, 0.1);
          box-shadow: 0px 0px 50px rgba(0, 117, 255, 0.1);
  padding: 1rem 0; }
  .footer-bot .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
.footer__logo {
  width: 20.3rem; }
  .footer__logo a {
    display: inline-block; }
    .footer__logo a img {
      display: block;
      width: 10.5rem; }
.footer-copy {
  color: #4f4f4f;
  font-size: 0.8rem; }
.footer-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .footer-icons li {
    margin-right: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .footer-icons li img {
      display: block; }
    .footer-icons li.footer-top {
      margin-right: 0;
      margin-left: 3rem;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      cursor: pointer;
      width: 2rem;
      height: 2rem;
      background: #B7875B;
      border-radius: 50%;
      -webkit-box-shadow: 0px 15px 20px rgba(183, 135, 91, 0.25);
              box-shadow: 0px 15px 20px rgba(183, 135, 91, 0.25); }
      .footer-icons li.footer-top svg {
        width: 1.5rem; }

@media (max-width: 1700.98px) {
  :root {
    font-size: 19px; } }
@media (max-width: 1550.98px) {
  :root {
    font-size: 18px; } }
@media (max-width: 1400.98px) {
  :root {
    font-size: 17px; } }
@media (max-width: 1200.98px) {
  :root {
    font-size: 15px; }

  .partners-item {
    height: 9rem; }

  .products-item {
    height: 16rem; } }
@media (max-width: 992.98px) {
  :root {
    font-size: 13px; } }
@media (max-width: 767.98px), (max-width: 1080px) and (orientation: portrait) {
  :root {
    font-size: 18px; }

  .tel-popup {
    right: 2rem; }

  .section-title {
    margin-bottom: 3rem; }

  .carousel-arrows {
    display: none; }

  .header-menu {
    display: none; }
  .header-mobile {
    display: block; }

  .main {
    height: 90vh; }
    .main__title {
      font-size: 2.5rem; }
    .main__list li {
      width: 50%; }
    .main__btns {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .main__btns a {
        width: 48%; }
        .main__btns a.btn-brown {
          margin-left: 0; }

  .choose {
    padding: 3rem 0; }
    .choose-wrap {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
    .choose-item {
      width: 48%;
      margin-right: 0;
      margin-bottom: 1.5rem; }

  .discounts {
    padding-top: 3rem; }
    .discounts-wrap {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
    .discounts-item {
      width: 48%;
      margin-bottom: 1.5rem; }
      .discounts-item:last-child {
        width: 100%;
        min-height: 14.5rem; }

  .products {
    padding-top: 4rem;
    border-radius: 3.5rem; }
    .products-item {
      width: 32%;
      height: 14rem; }
      .products-item__big {
        width: 32%; }
    .products-guarant {
      margin-bottom: 4.5rem; }
      .products-guarant__wrap {
        padding: 2.5rem; }
      .products-guarant__img img {
        width: 100%; }

  .workflow {
    padding-bottom: 4rem; }
    .workflow-wrap {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
    .workflow-item {
      width: 48%;
      min-height: 14.8rem;
      margin-bottom: 1.5rem; }

  .faq-wrap {
    width: 100%; }

  .projects-carousel .owl-stage-outer {
    padding-bottom: 7rem; }
  .projects-carousel .owl-dots {
    margin-top: 3rem;
    margin-bottom: -3rem; }
  .projects-item {
    height: 25rem;
    padding: 1.5rem; }
    .projects-item__btn {
      position: relative;
      left: 0;
      bottom: 0;
      margin: 2rem 0; }

  .reviews {
    margin-bottom: 4rem; }
    .reviews-item {
      display: block;
      border: 1px solid #D9D9D9;
      height: auto; }
      .reviews-item__info {
        border: none;
        width: 100%;
        padding: 2rem; }
      .reviews-item__head {
        margin-bottom: 1.5rem; }
      .reviews-item__img {
        width: 100%; }

  .partners {
    padding: 3rem 0;
    border-radius: 3rem 3rem 0 0; }
    .partners-wrap {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
    .partners-item {
      width: 32%;
      margin-right: 2%;
      margin-bottom: 1.5rem; }
      .partners-item:nth-child(3n) {
        margin-right: 0; }

  .footer-contact {
    left: 2rem; }
  .footer-copy {
    display: none; }
  .footer__logo {
    width: auto; }
  .footer-icons li.footer-top {
    margin-left: 0; } }
@media (max-width: 767.98px) {
  :root {
    font-size: 16px; }

  body {
    margin-top: 0;
    padding-bottom: 4.35rem; }

  .header {
    position: static; }

  .section-title {
    font-size: 1.7rem;
    margin-bottom: 2rem; }

  .tel-popup {
    display: none; }

  .mobile-fixed {
    position: fixed;
    left: .75rem;
    right: .75rem;
    bottom: .75rem;
    z-index: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: .65rem;
    pointer-events: none; }
    .mobile-fixed a {
      height: 3rem;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      min-width: 0;
      border-radius: 1rem;
      color: #fff;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: .55rem;
      font-size: .95rem;
      font-weight: 600;
      position: relative;
      overflow: hidden;
      pointer-events: auto;
      -webkit-box-shadow: 0 .7rem 1.5rem rgba(0, 0, 0, 0.22);
              box-shadow: 0 .7rem 1.5rem rgba(0, 0, 0, 0.22);
      -webkit-transition: .25s all;
      transition: .25s all; }
      .mobile-fixed a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: -webkit-linear-gradient(330deg, transparent 0%, rgba(255, 255, 255, 0.34) 50%, transparent 100%);
        background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.34) 50%, transparent 100%);
        -webkit-transform: skewX(-20deg);
                transform: skewX(-20deg);
        -webkit-animation: mobile-btn-shine 3.2s ease-in-out infinite;
                animation: mobile-btn-shine 3.2s ease-in-out infinite;
        pointer-events: none; }
      .mobile-fixed a:active {
        -webkit-transform: scale(0.97);
                transform: scale(0.97); }
      .mobile-fixed a img,
      .mobile-fixed a svg {
        width: 1.25rem;
        height: 1.25rem;
        -ms-flex-negative: 0;
            flex-shrink: 0; }
      .mobile-fixed a img {
        -webkit-filter: brightness(0) invert(1);
                filter: brightness(0) invert(1);
        -webkit-animation: mobile-call-wiggle 2.6s infinite;
                animation: mobile-call-wiggle 2.6s infinite;
        -webkit-transform-origin: center;
                transform-origin: center; }
    .mobile-fixed__call {
      background: -webkit-linear-gradient(315deg, #C89665 0%, #B7875B 100%);
      background: linear-gradient(135deg, #C89665 0%, #B7875B 100%); }
    .mobile-fixed__request {
      background: #000; }
      .mobile-fixed__request::before {
        -webkit-animation-delay: 1.5s;
                animation-delay: 1.5s; }

  @-webkit-keyframes mobile-btn-shine {
    0%, 45% {
      left: -75%; }
    70%, 100% {
      left: 125%; } }

  @keyframes mobile-btn-shine {
    0%, 45% {
      left: -75%; }
    70%, 100% {
      left: 125%; } }

  @-webkit-keyframes mobile-call-wiggle {
    0%, 88%, 100% {
      -webkit-transform: rotate(0);
              transform: rotate(0); }
    91% {
      -webkit-transform: rotate(-12deg);
              transform: rotate(-12deg); }
    94% {
      -webkit-transform: rotate(12deg);
              transform: rotate(12deg); }
    97% {
      -webkit-transform: rotate(-8deg);
              transform: rotate(-8deg); } }

  @keyframes mobile-call-wiggle {
    0%, 88%, 100% {
      -webkit-transform: rotate(0);
              transform: rotate(0); }
    91% {
      -webkit-transform: rotate(-12deg);
              transform: rotate(-12deg); }
    94% {
      -webkit-transform: rotate(12deg);
              transform: rotate(12deg); }
    97% {
      -webkit-transform: rotate(-8deg);
              transform: rotate(-8deg); } }

  .buttons-content {
    left: 5%;
    width: 90%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .buttons-content a {
      width: 100%; }

  .feedback {
    background: rgba(0, 0, 0, 0.62); }
    .feedback-content {
      top: auto;
      left: 0;
      bottom: 0;
      -webkit-transform: none;
              transform: none;
      width: 100%;
      max-height: calc(100vh - 1rem);
      overflow: auto;
      padding: 3.2rem 1.35rem 1.6rem;
      border-radius: 1.45rem 1.45rem 0 0;
      -webkit-box-shadow: 0 -1rem 3rem rgba(0, 0, 0, 0.18);
              box-shadow: 0 -1rem 3rem rgba(0, 0, 0, 0.18); }
      .feedback-content::before {
        content: '';
        position: absolute;
        top: .7rem;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        width: 3rem;
        height: .22rem;
        background: #D9D9D9;
        border-radius: 2rem; }
    .feedback-close {
      top: 1rem;
      right: 1rem;
      left: auto;
      -webkit-transform: none;
              transform: none;
      width: 2.3rem;
      height: 2.3rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      background: #F2F2F2;
      -webkit-box-shadow: none;
              box-shadow: none;
      z-index: 3; }
      .feedback-close img {
        width: .9rem; }
    .feedback__phone {
      width: 3.1rem;
      height: 3.1rem;
      margin: 0 auto 1.35rem;
      border-radius: 50%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      background: rgba(183, 135, 91, 0.13);
      -webkit-box-shadow: 0 .8rem 2rem rgba(183, 135, 91, 0.18);
              box-shadow: 0 .8rem 2rem rgba(183, 135, 91, 0.18); }
      .feedback__phone img {
        width: 1.15rem; }
    .feedback__title {
      font-size: 1.45rem;
      text-align: center;
      margin-bottom: .75rem; }
    .feedback__text {
      text-align: center;
      margin-bottom: 1.4rem; }
    .feedback-form__input {
      margin-bottom: .75rem; }
      .feedback-form__input label {
        display: none; }
      .feedback-form__input input {
        height: 3.35rem;
        padding: 0 1.35rem;
        border-radius: 1.7rem;
        border: 1px solid #E6E6E6;
        background: #fff; }
        .feedback-form__input input:focus {
          border-color: #B7875B;
          -webkit-box-shadow: 0 0 0 .18rem rgba(183, 135, 91, 0.14);
                  box-shadow: 0 0 0 .18rem rgba(183, 135, 91, 0.14); }
    .feedback-form .btn {
      height: 3.45rem;
      margin-top: .85rem;
      border-radius: 1.7rem;
      background: #B7875B;
      -webkit-box-shadow: 0 .7rem 1.5rem rgba(183, 135, 91, 0.25);
              box-shadow: 0 .7rem 1.5rem rgba(183, 135, 91, 0.25); }
      .feedback-form .btn:hover {
        background: #000; }
    .feedback-done {
      padding: 1rem 0 .5rem; }

  .toast {
    top: 1rem;
    min-width: auto;
    width: calc(100% - 1.5rem);
    padding: .75rem 1.2rem .75rem .75rem;
    border-radius: 1rem; }
    .toast__icon {
      width: 2rem;
      height: 2rem; }
      .toast__icon svg {
        width: 1.1rem;
        height: 1.1rem; }
    .toast__title {
      font-size: .95rem; }
    .toast__text {
      font-size: .75rem; }

  .main__title {
    font-size: 1.7rem;
    line-height: 120%; }
  .main__list li {
    width: 100%; }
  .main__btns {
    display: block; }
    .main__btns a {
      width: 100%; }
      .main__btns a.btn-brown {
        margin-top: 1rem; }

  .choose-item {
    width: 100%; }

  .discounts .container {
    padding: 0; }
  .discounts__title {
    padding: 0 20px; }
  .discounts-wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    max-width: 100%;
    overflow: auto;
    padding-left: 20px;
    padding-bottom: 1rem; }
  .discounts-item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
      width: 82vw;
      min-height: 18.5rem;
    margin-right: 1rem;
    margin-bottom: 0; }
      .discounts-item:last-child {
        width: 82vw;
        min-height: 18.5rem;
        margin-right: 2rem; }
    .discounts-item__percent {
      font-size: 2.5rem; }

  .workflow {
    padding-bottom: 3.5rem; }
    .workflow .container {
      padding: 0; }
    .workflow__title {
      padding: 0 20px; }
    .workflow-wrap {
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      max-width: 100%;
      overflow: auto;
      padding-left: 20px;
      padding-bottom: 1rem; }
    .workflow-item {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: 82vw;
      min-height: 16rem;
      margin-right: 1rem;
      margin-bottom: 0; }
      .workflow-item:last-child {
        margin-right: 2rem; }

  .faq {
    padding-bottom: 4rem; }
    .faq-item__question {
      padding: 1.15rem 1.15rem;
      font-size: 1rem; }
    .faq-item__answer {
      padding: 0 1.15rem 1.25rem; }

  .products .container {
    padding: 0; }
  .products-wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    max-width: 100%;
    overflow: auto;
    padding-left: 20px;
    margin-bottom: 2rem; }
  .products-item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 80vw;
    margin-right: 1rem; }
    .products-item:nth-child(3n) {
      margin-right: 2rem; }
  .products-guarant {
    margin-bottom: 3rem; }
    .products-guarant__title {
      font-size: 1.5rem; }
    .products-guarant__btn {
      position: absolute;
      bottom: 2rem;
      width: 85%;
      left: 7.5%; }
    .products-guarant__wrap {
      padding: 2rem 2rem 7rem;
      display: block;
      position: relative; }
    .products-guarant__left {
      width: 100%;
      margin-bottom: 1.5rem; }
    .products-guarant__right {
      width: 100%; }

  .projects .container {
    padding: 0; }

  .partners {
    -webkit-box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 5; }
    .partners-wrap {
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
    .partners-item {
      width: 48%;
      margin-right: 0; }

  .footer-map {
    height: 45rem; }
  .footer-contact {
    width: 90%;
    left: 5%;
    top: 3rem;
    -webkit-transform: none;
            transform: none; }
  .footer__logo a img {
    width: 8.25rem; }
  .footer-icons li {
    margin-right: 1rem; }
    .footer-icons li img {
      width: 2rem; } }
@media (max-width: 343.98px) {
  :root {
    font-size: 12px; } }
@media (max-width: 300.98px) {
  :root {
    font-size: 10px; } }

/*# sourceMappingURL=main.css.map */
