.container {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

@media only screen and (max-width: 1299px) {
  .container {
    max-width: 960px;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
@media only screen and (max-width: 575px) {
  .container {
    max-width: 100%;
  }
}
@font-face {
  font-family: "TTFirsNeue";
  src: url("./fonts/TTFirsNeue-Light.woff2") format("woff2"), url("./fonts/TTFirsNeue-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TTFirsNeue";
  src: url("./fonts/TTFirsNeue-Regular.woff2") format("woff2"), url("./fonts/TTFirsNeue-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TTFirsNeue";
  src: url("./fonts/TTFirsNeue-Medium.woff2") format("woff2"), url("./fonts/TTFirsNeue-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.slideInLeftOpacity {
  -webkit-animation-name: slideInLeftOpacity;
          animation-name: slideInLeftOpacity;
}

@-webkit-keyframes slideInLeftOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInLeftOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.slideInRightOpacity {
  -webkit-animation-name: slideInRightOpacity;
          animation-name: slideInRightOpacity;
}

@-webkit-keyframes slideInRightOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInRightOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.slideInUpOpacity {
  -webkit-animation-name: slideInUpOpacity;
          animation-name: slideInUpOpacity;
}

@-webkit-keyframes slideInUpOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideInUpOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.slideInDownOpacity {
  -webkit-animation-name: slideInDownOpacity;
          animation-name: slideInDownOpacity;
}

@-webkit-keyframes slideInDownOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideInDownOpacity {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeInOpacity {
  -webkit-animation-name: fadeInOpacity;
          animation-name: fadeInOpacity;
}

@-webkit-keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes zoomInImage {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomInImage {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.zoomInImage {
  -webkit-animation-name: zoomInImage;
          animation-name: zoomInImage;
}

:root {
  --taupe: #7a726f;
  --grey: #525252;
  --white: #fcfdfd;
  --beige: #C3AB94;
  --accent-color: var(--beige);
  --hover: #E8E0D8;
}

body {
  font-family: "TTFirsNeue", sans-serif;
  font-size: 16px;
  min-width: 320px;
  color: var(--taupe);
  font-weight: 300;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  background-color: var(--white);
  margin: 0;
}
body.noscroll {
  overflow: hidden;
}

img {
  max-width: 100%;
}

input:required, textarea:required {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
input:invalid, textarea:invalid {
  -webkit-box-shadow: none;
          box-shadow: none;
}
input:focus, textarea:focus {
  outline: none;
}

a {
  text-decoration: none;
  color: var(--text-color);
}
a:focus, a:hover {
  outline: none;
  text-decoration: none;
}

button:active, button:focus {
  outline: none;
}

button::-moz-focus-inner {
  border: 0;
}

ul, li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

input, select, button {
  outline: none;
}

input,
textarea {
  -webkit-appearance: none;
}

input:disabled {
  opacity: 1;
}

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

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

input[type=number]:hover,
input[type=number]:focus {
  -moz-appearance: number-input;
}

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

input[type=text]::-ms-clear,
input[type=tel]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal,
input[type=tel]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

* {
  -webkit-tap-highlight-color: transparent;
}

svg {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.wrap {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.format-text-p p {
  margin: 30px 0;
}
.format-text-p p:nth-child(1) {
  margin-top: 0;
}
.format-text-p p:last-child {
  margin-bottom: 0;
}

.section {
  padding: 80px 0;
}
.section--dark {
  background-color: var(--taupe);
  color: var(--white);
}
.section-title {
  margin: 0;
  font-weight: 500;
  font-size: 52px;
  line-height: 120%;
  text-transform: uppercase;
  display: inline-block;
  text-align: left;
  position: relative;
  z-index: 2;
}
.section-title small {
  text-transform: lowercase;
  font-size: 52px;
}
.section-title span {
  position: relative;
  padding: 6px 0 0;
  display: inline-block;
}
.section-title span:before {
  position: absolute;
  content: "";
  top: 0;
  right: -10px;
  bottom: 0;
  left: -5px;
  background-color: var(--accent-color);
  z-index: -1;
  opacity: 0;
}
.section-title span.highlight {
  color: var(--white);
}
.section-title span.highlight:before {
  opacity: 1;
}
.section-title span.highlight.left-highlight:before {
  left: -100vw;
}
.section-title span.highlight.right-highlight:before {
  right: -100vw;
}
.section-title span.highlight.left-right-highlight:before {
  left: -100vw;
  right: -100vw;
}

.h3 {
  margin: 0;
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
  text-transform: uppercase;
  color: #7a726f;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  padding: 0px 32px;
  height: 60px;
  color: var(--white);
  background-color: var(--beige);
  position: relative;
  text-decoration: none;
  line-height: normal;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn:active {
  background-color: var(--hover);
}
.btn--outline {
  border: 1px solid var(--beige);
  background-color: transparent;
  color: var(--beige);
  padding: 29px 69px;
}
.btn--outline:active {
  background-color: transparent;
  border-color: #E8E0D8;
  color: #E8E0D8;
}
.btn__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
}

@media (hover) {
  .btn:hover {
    background-color: var(--hover);
  }
  .btn--outline:hover {
    background-color: transparent;
    border-color: #E8E0D8;
    color: #E8E0D8;
  }
}
.back,
.next {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  border: 1px solid #5C94C0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.back svg path,
.next svg path {
  -webkit-transition: stroke 0.3s;
  transition: stroke 0.3s;
}
.back:focus-visible,
.next:focus-visible {
  outline: none;
}
.back.swiper-button-disabled,
.next.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.back:active,
.next:active {
  background-color: #5C94C0;
}
.back:active svg path,
.next:active svg path {
  stroke: #fff;
}

@media (hover) {
  .back:hover,
  .next:hover {
    background-color: #5C94C0;
  }
  .back:hover svg path,
  .next:hover svg path {
    stroke: #fff;
  }
}
.wow {
  visibility: hidden;
}

.swiper-pagination {
  z-index: 3;
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: transparent;
  border: 1px solid #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 10em;
  margin: 0 20px;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: #fff;
  width: 80px;
}

@media (hover) {
  .swiper-pagination-bullet:hover {
    background-color: #fff;
  }
}
.up {
  cursor: pointer;
  width: 60px;
  height: 60px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #5C94C0;
  position: fixed;
  z-index: 5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 100%;
  right: 20px;
  bottom: 20px;
  -webkit-transform: translateY(200%);
          transform: translateY(200%);
}
.up.visible {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
.up:active {
  background-color: #5C94C0;
}
.up:active svg path {
  stroke: #fff;
}

@media (hover) {
  .up:hover {
    background-color: #5C94C0;
  }
  .up:hover svg path {
    stroke: #fff;
  }
}
@media only screen and (max-width: 1299px) {
  .section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 38px;
  }
  .section-title small {
    font-size: 38px;
  }
  .h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 575px) {
  .section {
    padding: 45px 0;
  }
  .section-title {
    font-size: 24px;
  }
  .section-title small {
    font-size: 24px;
  }
  .section-title span {
    padding: 6px 0 2px;
  }
  .section-title span.highlight.left-highlight:before {
    right: -100vw;
  }
  .section-title span.highlight.right-highlight:before {
    left: -100vw;
  }
  .h3 {
    font-size: 20px;
  }
  .btn {
    height: 50px;
  }
  .up {
    width: 50px;
    height: 50px;
    right: 10px;
    bottom: 10px;
  }
}
.logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.logo img {
  width: 100%;
}

.language {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: var(--white);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.language:active {
  color: var(--accent-color);
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.social-link {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 100%;
  border: none;
  background-color: transparent;
  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;
}
.social-link svg {
  width: 32px;
  height: 32px;
}
.social-link svg path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.social-link + .social-link {
  margin-left: 15px;
}
.social-link:active svg path {
  fill: var(--hover);
}

.hamburger {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  padding: 0;
  height: 23px;
}
.hamburger .hamburger-box {
  width: 50px;
  height: 23px;
}
.hamburger .hamburger-box .hamburger-inner,
.hamburger .hamburger-box .hamburger-inner::after,
.hamburger .hamburger-box .hamburger-inner::before {
  background-color: var(--white);
  height: 3px;
  width: 50px;
  border-radius: 0;
}
.hamburger .hamburger-box .hamburger-inner::before {
  top: 10px;
}
.hamburger .hamburger-box .hamburger-inner::after {
  top: 20px;
}
.hamburger:hover {
  opacity: 1;
}

.header {
  z-index: 20;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  background-color: var(--taupe);
  height: 80px;
  color: var(--white);
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.header.hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.header-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 80px;
  border-bottom: 1px solid rgba(82, 82, 82, 0.2);
}
.header__logo {
  width: 205px;
  margin-right: auto;
}
.header__language {
  margin-right: 35px;
}
.header.opened .menu {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.menu {
  width: 330px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  background-color: var(--taupe);
  z-index: 20;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 80px;
  margin-bottom: 80px;
}
.menu__item + .menu__item {
  margin-top: 30px;
}
.menu__item.current_page_item .menu__link, .menu__item.current_page_parent .menu__link {
  color: var(--accent-color);
}
.menu__link {
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--white);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.menu__link:active {
  color: var(--accent-color);
}
.menu-footer {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  max-width: 250px;
}
.menu-address {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.menu-phone {
  margin-top: 30px;
  font-size: 20px;
  white-space: nowrap;
  width: 100%;
}
.menu__social {
  margin-top: 30px;
}
.menu__hamburger {
  display: none;
}

@media (hover) {
  .language:hover {
    color: var(--accent-color);
  }
  .social-link:hover svg path {
    fill: var(--hover);
  }
  .menu__link:hover {
    color: var(--accent-color);
  }
}
.overlay {
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  height: 100vh;
  left: 0;
  right: 0;
  z-index: 19;
  cursor: pointer;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.overlay.visible {
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 575px) {
  .hamburger {
    height: 1px;
  }
  .hamburger .hamburger-box {
    width: 20px;
    height: 11px;
  }
  .hamburger .hamburger-box .hamburger-inner,
  .hamburger .hamburger-box .hamburger-inner::after,
  .hamburger .hamburger-box .hamburger-inner::before {
    height: 1px;
    width: 20px;
  }
  .hamburger .hamburger-box .hamburger-inner::before {
    top: 5px;
  }
  .hamburger .hamburger-box .hamburger-inner::after {
    top: 10px;
  }
  .hamburger:hover {
    opacity: 1;
  }
  .hamburger.is-active .hamburger-inner {
    top: 5px;
  }
  .hamburger.is-active .hamburger-inner:after {
    top: 20px;
  }
  .header {
    height: 44px;
  }
  .header-block {
    height: 44px;
  }
  .header__logo {
    width: 77px;
  }
  .header__language {
    margin-right: 20px;
    font-size: 12px;
  }
  .menu {
    width: 100vw;
  }
  .menu__hamburger {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    right: 10px;
    top: 10px;
    position: absolute;
  }
}
.form *::-webkit-input-placeholder {
  font-size: 16px;
  color: var(--taupe);
  font-weight: 300;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  text-transform: uppercase;
}
.form *::-moz-placeholder {
  font-size: 16px;
  color: var(--taupe);
  font-weight: 300;
  opacity: 1;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
  text-transform: uppercase;
}
.form *:-ms-input-placeholder {
  font-size: 16px;
  color: var(--taupe);
  font-weight: 300;
  opacity: 1;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
  text-transform: uppercase;
}
.form *::-ms-input-placeholder {
  font-size: 16px;
  color: var(--taupe);
  font-weight: 300;
  opacity: 1;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
  text-transform: uppercase;
}
.form *::placeholder {
  font-size: 16px;
  color: var(--taupe);
  font-weight: 300;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  text-transform: uppercase;
}
.form input[type=text],
.form input[type=tel],
.form input[type=url],
.form input[type=email],
.form input[type=password],
.form input[type=number],
.form textarea {
  position: relative;
  font-size: 16px;
  height: 71px;
  font-weight: 300;
  text-align: left;
  background-color: transparent;
  padding: 0;
  color: var(--taupe);
  border: none;
  border-bottom: 1px solid rgba(122, 114, 111, 0.2);
  width: 100%;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form input[type=text]:focus,
.form input[type=tel]:focus,
.form input[type=url]:focus,
.form input[type=email]:focus,
.form input[type=password]:focus,
.form input[type=number]:focus,
.form textarea:focus {
  border-color: var(--taupe);
}
.form input[type=text]:focus::-webkit-input-placeholder, .form input[type=tel]:focus::-webkit-input-placeholder, .form input[type=url]:focus::-webkit-input-placeholder, .form input[type=email]:focus::-webkit-input-placeholder, .form input[type=password]:focus::-webkit-input-placeholder, .form input[type=number]:focus::-webkit-input-placeholder, .form textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::-moz-placeholder, .form input[type=tel]:focus::-moz-placeholder, .form input[type=url]:focus::-moz-placeholder, .form input[type=email]:focus::-moz-placeholder, .form input[type=password]:focus::-moz-placeholder, .form input[type=number]:focus::-moz-placeholder, .form textarea:focus::-moz-placeholder {
  opacity: 0;
}
.form input[type=text]:focus:-ms-input-placeholder, .form input[type=tel]:focus:-ms-input-placeholder, .form input[type=url]:focus:-ms-input-placeholder, .form input[type=email]:focus:-ms-input-placeholder, .form input[type=password]:focus:-ms-input-placeholder, .form input[type=number]:focus:-ms-input-placeholder, .form textarea:focus:-ms-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::-ms-input-placeholder, .form input[type=tel]:focus::-ms-input-placeholder, .form input[type=url]:focus::-ms-input-placeholder, .form input[type=email]:focus::-ms-input-placeholder, .form input[type=password]:focus::-ms-input-placeholder, .form input[type=number]:focus::-ms-input-placeholder, .form textarea:focus::-ms-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::placeholder,
.form input[type=tel]:focus::placeholder,
.form input[type=url]:focus::placeholder,
.form input[type=email]:focus::placeholder,
.form input[type=password]:focus::placeholder,
.form input[type=number]:focus::placeholder,
.form textarea:focus::placeholder {
  opacity: 0;
}
.form textarea {
  resize: none;
}
.form input:-webkit-autofill,
.form input:-webkit-autofill:hover,
.form input:-webkit-autofill:focus,
.form input:-webkit-autofill:active {
  -webkit-box-shadow: inset 0 0 0 71px #fff;
  -webkit-text-fill-color: var(--taupe);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.iti {
  width: 100%;
}
.iti__flag-container {
  padding: 0;
}
.iti .iti__selected-flag {
  outline: none;
  font-weight: 300;
  font-size: 16px;
  border-radius: 0;
  color: var(--taupe);
  padding: 0;
  background-color: transparent !important;
}
.iti__divider {
  margin-bottom: 0;
  padding-bottom: 0;
}
.iti__arrow {
  border-top: 4px solid var(--taupe);
}
.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid var(--taupe);
}
.iti__country-list {
  max-height: 240px;
  z-index: 11;
  margin: 0;
  border: 1px solid rgba(122, 114, 111, 0.2);
  white-space: normal;
  color: var(--taupe);
  font-size: 16px;
  font-weight: 300;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.iti__country-list li {
  color: var(--taupe);
}
.iti-mobile .iti--container {
  z-index: 100000;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.iti-mobile .iti__country-list {
  margin: 0;
  border-radius: 0;
  width: calc(100% - 20px);
}

.wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding-left: 26px;
  text-align: left;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--taupe);
}
.wpcf7-list-item-label:before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 2px;
  height: 16px;
  width: 16px;
  top: calc(50% - 9px);
  left: 0px;
  border: 1px solid var(--taupe);
  background-color: transparent;
}
.wpcf7-list-item-label:after {
  display: block;
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  top: calc(50% - 9px);
  left: 4px;
  background-image: url("./img/check-icon.svg");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wpcf7-list-item input[type=checkbox] {
  display: none;
}
.wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
  visibility: visible;
}

.wpcf7-acceptance {
  margin-top: 40px;
  display: block;
}
.wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 16px;
  line-height: 120%;
  color: rgba(122, 114, 111, 0.3);
}
.wpcf7-acceptance .wpcf7-list-item-label a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.wpcf7-acceptance .wpcf7-list-item-label a:active {
  color: rgb(122, 114, 111);
}

@media (hover) {
  .wpcf7-acceptance .wpcf7-list-item-label a:hover {
    color: rgb(122, 114, 111);
  }
}
.wpcf7 form .wpcf7-spinner {
  display: none;
}

.form-title {
  font-size: 16px;
  line-height: 120%;
  color: rgba(122, 114, 111, 0.3);
  margin-top: 40px;
  margin-bottom: 20px;
}
.form .btn {
  margin-top: 40px;
}

.contact-methods {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contact-methods .wpcf7-list-item-label {
  text-transform: uppercase;
}
.contact-methods .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 20px;
}

@media only screen and (max-width: 575px) {
  .wpcf7-acceptance {
    margin-top: 30px;
  }
  .form-title {
    margin-top: 30px;
  }
  .form .btn {
    margin-top: 30px;
  }
}
.hero {
  background-color: var(--taupe);
  padding: 160px 0 80px;
  color: var(--white);
}
.hero__title {
  text-align: center;
  margin: 0 -10px;
}
.hero-block {
  margin-top: 60px;
  position: relative;
  border-radius: 4px;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.hero-image {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  position: relative;
  aspect-ratio: 2;
}
.hero-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-cta {
  border: 2px solid rgba(195, 171, 148, 0.5);
  border-radius: 4px;
  width: 320px;
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 20px;
  z-index: 2;
}
.hero-cta__title {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  text-transform: uppercase;
}
.hero-cta__btn {
  width: 100%;
  margin-top: 20px;
}

@media only screen and (max-width: 1299px) {
  .hero {
    padding: 140px 0 60px;
  }
  .hero-block {
    margin-top: 40px;
  }
  .hero__title {
    margin: 0;
  }
}
@media only screen and (max-width: 991px) {
  .hero-image {
    aspect-ratio: 1.5;
  }
}
@media only screen and (max-width: 767px) {
  .hero-block:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background: -webkit-gradient(linear, left top, left bottom, from(#000), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  }
  .hero-cta {
    top: 20px;
    right: 20px;
    width: auto;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .hero-cta__btn {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media only screen and (max-width: 575px) {
  .hero {
    padding: 64px 0 45px;
  }
  .hero-block {
    margin-top: 30px;
  }
  .hero__title {
    text-align: left;
  }
  .hero-cta {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}
.smart-solutions-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
}
.smart-solutions-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  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-right: 60px;
  width: 48.3%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.smart-solutions-image img {
  width: 100%;
}
.smart-solutions-content {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  border-top: 1px solid rgba(122, 114, 111, 0.2);
}
.smart-solutions__btn {
  margin-top: 40px;
}

.smart-solution {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid rgba(122, 114, 111, 0.2);
}
.smart-solution__icon {
  width: 32px;
  height: 32px;
  margin-right: 50px;
}
.smart-solution__info {
  text-align: right;
  padding-right: 40px;
}
.smart-solution__title {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  text-transform: uppercase;
}
.smart-solution__text {
  font-size: 16px;
  margin-top: 25px;
  line-height: 140%;
  max-width: 350px;
}

@media only screen and (max-width: 1299px) {
  .smart-solutions-block {
    margin-top: 50px;
  }
  .smart-solutions-image {
    width: 46%;
  }
  .smart-solution {
    padding: 20px 0;
  }
  .smart-solution__info {
    padding-right: 0;
  }
  .smart-solution__text {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .smart-solutions-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .smart-solutions-image {
    margin-right: 0;
    width: 100%;
  }
  .smart-solutions-content {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .smart-solutions-block {
    margin-top: 30px;
  }
  .smart-solutions-content {
    margin-top: 30px;
  }
  .smart-solutions__btn {
    margin-top: 30px;
    width: 100%;
  }
  .smart-solution {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px 0;
  }
  .smart-solution__info {
    text-align: left;
  }
  .smart-solution__icon {
    margin-bottom: 20px;
  }
  .smart-solution__text {
    margin-top: 15px;
  }
}
.advantages-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 -22px -44px;
}
.advantages-title {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  padding: 30px 0;
  border-top: 1px solid rgba(122, 114, 111, 0.2);
  border-bottom: 1px solid rgba(122, 114, 111, 0.2);
}

.advantage {
  width: calc(33.33% - 44px);
  margin: 0 22px 44px;
  border: 1px solid #7a726f;
  border-radius: 4px;
  padding: 20px;
  min-height: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.advantage-title {
  margin: 0;
  font-weight: 500;
  font-size: 32px;
  line-height: 100%;
}
.advantage-title span {
  color: var(--accent-color);
}
.advantage-subtitle {
  margin: 0;
  margin-top: 30px;
  font-weight: 300;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
}
.advantage:nth-child(1) {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border: none;
  padding: 0;
  min-height: auto;
  border-radius: 0;
}
.advantage:nth-child(3), .advantage:nth-child(4) {
  background-color: var(--taupe);
  color: var(--white);
}

@media only screen and (max-width: 1299px) {
  .advantage {
    width: calc(50% - 44px);
    min-height: 200px;
  }
  .advantage:nth-child(4) {
    background-color: transparent;
    color: var(--taupe);
  }
  .advantage:nth-child(6) {
    background-color: var(--taupe);
    color: var(--white);
  }
  .advantage-title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 991px) {
  .advantages-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: -30px;
  }
  .advantages-title {
    padding: 0;
    border: 0;
  }
  .advantage {
    width: calc(100% - 44px);
    margin-bottom: 30px;
  }
  .advantage:nth-child(1) {
    margin-bottom: 35px;
  }
  .advantage:nth-child(6) {
    background-color: transparent;
    color: var(--taupe);
  }
  .advantage:nth-child(5) {
    background-color: var(--taupe);
    color: var(--white);
  }
  .advantage-title {
    padding: 0;
  }
}
@media only screen and (max-width: 575px) {
  .advantage {
    min-height: 130px;
  }
  .advantage-title {
    font-size: 20px;
  }
  .advantage-subtitle {
    margin-top: 15px;
    text-transform: lowercase;
  }
}
.examples-block {
  margin-top: 80px;
}

.example {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.example + .example {
  margin-top: 80px;
}
.example-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 48%;
  margin-left: 60px;
}
.example-image img {
  width: 100%;
}
.example-content {
  width: 100%;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.example-title {
  margin: 0;
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
  text-transform: uppercase;
  margin-top: -5px;
}
.example-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  margin-top: 5px;
}
.example-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid rgba(122, 114, 111, 0.2);
  margin-top: 30px;
  margin-bottom: 40px;
}
.example-li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid rgba(122, 114, 111, 0.2);
  padding: 14px 0;
}
.example-li__title {
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  padding-right: 20px;
}
.example-li__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  width: 57%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 20px;
}
.example-li__text ul li {
  position: relative;
}
.example-li__text ul li:before {
  position: absolute;
  content: ".";
  left: -14px;
  top: -4px;
  font-size: 20px;
  line-height: 1;
}
.example-li__text ul li + li {
  margin-top: 10px;
}
.example__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: var(--accent-color);
  margin-top: auto;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--accent-color);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.example__btn:active {
  color: var(--hover);
}
.example__btn:active svg {
  margin-left: 20px;
}
.example__btn:active svg path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
  fill: var(--hover);
}
.example__btn svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 10px;
  -webkit-transition: margin-left 0.3s;
  transition: margin-left 0.3s;
}

@media (hover) {
  .example__btn:hover {
    color: var(--hover);
  }
  .example__btn:hover svg {
    margin-left: 20px;
  }
  .example__btn:hover svg path {
    -webkit-transition: fill 0.3s;
    transition: fill 0.3s;
    fill: var(--hover);
  }
}
@media only screen and (max-width: 1299px) {
  .examples-block {
    margin-top: 50px;
  }
  .example + .example {
    margin-top: 50px;
  }
  .example-image {
    width: 47.5%;
  }
  .example-title {
    font-size: 26px;
  }
  .example-list {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .example {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .example-image {
    width: 100%;
    margin-left: 0;
    margin-bottom: 50px;
  }
  .example-title {
    margin-top: 0;
  }
}
@media only screen and (max-width: 575px) {
  .examples__section-title {
    text-align: center;
    display: block;
  }
  .examples-block {
    margin-top: 35px;
  }
  .example + .example {
    margin-top: 35px;
  }
  .example-image {
    margin-bottom: 35px;
  }
  .example-title {
    font-size: 20px;
  }
  .example-subtitle {
    margin-top: 15px;
  }
  .example-li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 22px 0;
  }
  .example-li__title {
    padding: 0;
    width: 100%;
  }
  .example-li__text {
    padding: 0;
    width: 100%;
    margin-top: 10px;
  }
  .example-li__text ul li {
    padding-left: 20px;
  }
  .example-li__text ul li:before {
    left: 5px;
  }
  .example__btn {
    padding: 0;
  }
}
.tizers__section-title {
  margin-right: -10px;
}
.tizers-block {
  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;
  margin-top: 80px;
}
.tizers-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  margin-left: 40px;
  width: 48%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.tizers-image img {
  width: 100%;
}
.tizers-content {
  width: 100%;
}
.tizers__btn {
  margin-top: 40px;
}
.tizers-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid rgba(252, 253, 253, 0.2);
}

.tizer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid rgba(252, 253, 253, 0.2);
  padding: 30px 0;
}
.tizer__icon {
  width: 32px;
  height: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 30px;
}
.tizer__text {
  text-align: left;
  font-weight: 500;
  text-transform: uppercase;
  width: 380px;
  padding-right: 40px;
}

@media only screen and (max-width: 1299px) {
  .tizers-block {
    margin-top: 50px;
  }
  .tizers-image {
    width: 47.5%;
  }
  .tizer {
    padding: 20px 0;
  }
  .tizer__text {
    padding-right: 0;
    width: 350px;
  }
}
@media only screen and (max-width: 991px) {
  .tizers-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tizers-image {
    width: 100%;
    margin-left: 0;
    margin-bottom: 50px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .tizer__text {
    width: 380px;
  }
}
@media only screen and (max-width: 575px) {
  .tizers__section-title {
    margin-right: -20px;
    margin-left: -20px;
    padding: 10px 20px;
    background-color: var(--accent-color);
  }
  .tizers__section-title br {
    display: none;
  }
  .tizers__section-title span {
    padding: 0;
  }
  .tizers__section-title span:before {
    display: none;
  }
  .tizers-block {
    margin-top: 35px;
  }
  .tizers-image {
    margin-bottom: 35px;
  }
  .tizers__btn {
    margin-top: 30px;
    width: 100%;
  }
  .tizer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .tizer__icon {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .tizer__text {
    font-size: 20px;
    width: 100%;
  }
}
.request-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 80px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.request__subtitle {
  font-size: 20px;
  margin-top: 30px;
}
.request-image {
  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-right: 40px;
  width: calc(50% - 20px);
  border-radius: 4px;
  overflow: hidden;
}
.request-image img {
  width: 100%;
}
.request-form {
  width: calc(50% - 20px);
}
.request-form .form {
  width: 100%;
}

@media only screen and (max-width: 1299px) {
  .request-block {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .request-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .request-image {
    margin-right: 0;
    width: 100%;
  }
  .request__subtitle {
    margin-top: 20px;
  }
  .request-form {
    margin-top: 20px;
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .request {
    text-align: center;
  }
  .request__section-title {
    display: block;
    text-align: center;
  }
  .request-block {
    margin-top: 25px;
  }
  .request__subtitle {
    margin-top: 10px;
  }
  .request-form {
    margin-top: 10px;
    text-align: left;
  }
}
.footer {
  background-color: #525252;
  color: var(--white);
}
.footer-block {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer-contact {
  font-size: 20px;
  position: relative;
  padding-left: 40px;
}
.footer-contact__icon {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 20px;
  max-height: 20px;
}
.footer-contact + .footer-contact {
  margin-top: 30px;
}
.footer-contact a {
  color: var(--white);
  font-size: 48px;
  white-space: nowrap;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  line-height: 1.2;
}
.footer-contact a:active {
  color: var(--accent-color);
}
.footer__social {
  margin-left: 40px;
  margin-top: 50px;
}
.footer__social .social-link svg {
  width: 50px;
  height: 50px;
}
.footer-copy {
  margin-top: 80px;
  font-size: 20px;
  line-height: 140%;
  color: rgba(252, 253, 253, 0.2);
}
.footer-copy br {
  display: none;
}

.map {
  border: 2px solid #c3ab94;
  border-radius: 4px;
  min-height: 100%;
  margin-left: 40px;
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (hover) {
  .footer-contact a:hover {
    color: var(--accent-color);
  }
}
@media only screen and (max-width: 1299px) {
  .footer-contact {
    font-size: 18px;
  }
  .footer-contact a {
    font-size: 32px;
  }
  .footer-copy {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 50px;
  }
  .footer-copy {
    margin-top: 50px;
  }
  .footer-copy br {
    display: inline;
  }
  .map {
    height: 300px;
    margin-left: 0;
    width: 100%;
    margin-top: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .footer {
    text-align: center;
  }
  .footer-block {
    margin-top: 35px;
  }
  .footer-contact {
    font-size: 16px;
    text-align: left;
  }
  .footer-contact a {
    font-size: 24px;
  }
  .footer-copy {
    font-size: 16px;
    margin-top: 35px;
  }
  .footer__social {
    margin-top: 35px;
  }
  .map {
    margin-top: 35px;
  }
}
.fancybox-bg {
  background-color: #000;
}

.fancybox-is-open .fancybox-bg {
  background-color: #000;
  opacity: 0.75;
}

.mfp-bg {
  background-color: #000;
  opacity: 0.75;
}

/* Custom animation */
.fancybox-fx-slide-in-down.fancybox-slide--previous {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.fancybox-fx-slide-in-down.fancybox-slide--next {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.fancybox-fx-slide-in-down.fancybox-slide--current {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fancybox-fx-slide-in-up.fancybox-slide--previous {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.fancybox-fx-slide-in-up.fancybox-slide--next {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.fancybox-fx-slide-in-up.fancybox-slide--current {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fancybox-fx-slide-in-right.fancybox-slide--previous {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.fancybox-fx-slide-in-right.fancybox-slide--next {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.fancybox-fx-slide-in-right.fancybox-slide--current {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.popup {
  background-color: var(--taupe);
  color: var(--white);
  border-radius: 4px;
  width: 320px;
  padding: 46px 20px;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: relative;
  display: none;
  margin: 20px auto;
  text-align: center;
}
.popup-title {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  text-transform: uppercase;
}
.popup-subtitle {
  margin: 0;
  margin-top: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
}
.popup-form {
  width: 100%;
}
.popup-form .form {
  margin-top: 5px;
  text-align: left;
  color: rgba(252, 253, 253, 0.3);
}
.popup-form .form *::-webkit-input-placeholder {
  font-size: 14px;
  color: rgba(252, 253, 253, 0.3);
  text-transform: capitalize;
}
.popup-form .form *::-moz-placeholder {
  font-size: 14px;
  color: rgba(252, 253, 253, 0.3);
  text-transform: capitalize;
}
.popup-form .form *:-ms-input-placeholder {
  font-size: 14px;
  color: rgba(252, 253, 253, 0.3);
  text-transform: capitalize;
}
.popup-form .form *::-ms-input-placeholder {
  font-size: 14px;
  color: rgba(252, 253, 253, 0.3);
  text-transform: capitalize;
}
.popup-form .form *::placeholder {
  font-size: 14px;
  color: rgba(252, 253, 253, 0.3);
  text-transform: capitalize;
}
.popup-form .form input[type=text],
.popup-form .form input[type=tel],
.popup-form .form input[type=url],
.popup-form .form input[type=email],
.popup-form .form input[type=password],
.popup-form .form input[type=number] {
  height: 41px;
  font-size: 14px;
  color: #fcfdfd;
  border-color: rgba(252, 253, 253, 0.3);
}
.popup-form .form input[type=text]:focus,
.popup-form .form input[type=tel]:focus,
.popup-form .form input[type=url]:focus,
.popup-form .form input[type=email]:focus,
.popup-form .form input[type=password]:focus,
.popup-form .form input[type=number]:focus {
  border-color: #fcfdfd;
}
.popup-form .form input:-webkit-autofill,
.popup-form .form input:-webkit-autofill:hover,
.popup-form .form input:-webkit-autofill:focus,
.popup-form .form input:-webkit-autofill:active {
  -webkit-box-shadow: inset 0 0 0 41px var(--taupe);
  -webkit-text-fill-color: rgba(252, 253, 253, 0.3);
}
.popup-form .form-title {
  font-size: 14px;
  margin-top: 20px;
  color: rgba(252, 253, 253, 0.3);
}
.popup-form .form .btn {
  margin-top: 20px;
  height: 40px;
  font-size: 12px;
  color: #7a726f;
  background-color: var(--white);
}
.popup-form .form .btn:hover {
  background-color: var(--accent-color);
  color: var(--white);
}
.popup-form .form .iti .iti__selected-flag {
  font-size: 14px;
  color: #fcfdfd;
}
.popup-form .form .iti__arrow {
  border-top: 4px solid #fcfdfd;
}
.popup-form .form .iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #fcfdfd;
}
.popup-form .form .iti__country-list {
  border: 1px solid rgba(252, 253, 253, 0.3);
  font-size: 14px;
}
.popup-form .form .wpcf7-list-item-label {
  padding-left: 20px;
  font-size: 14px;
  color: #fcfdfd;
}
.popup-form .form .wpcf7-list-item-label:before {
  height: 12px;
  width: 12px;
  top: calc(50% - 7px);
  border: 1px solid #fcfdfd;
}
.popup-form .form .wpcf7-list-item-label:after {
  height: 12px;
  width: 12px;
  top: calc(50% - 7px);
  left: 3px;
  background-image: url("./img/check-icon-light.svg");
  background-size: 10px;
}
.popup-form .form .wpcf7-acceptance {
  margin-top: 20px;
}
.popup-form .form .wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 12px;
  color: rgba(252, 253, 253, 0.3);
}
.popup-form .form .wpcf7-acceptance .wpcf7-list-item-label a:hover {
  color: rgba(252, 253, 253, 0.6);
}
.popup .fancybox-close-small {
  display: none;
}
.popup__close {
  position: absolute;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  cursor: pointer;
  padding: 0;
  height: 10px;
  width: 10px;
  z-index: 3;
  top: 10px;
  right: 10px;
  border-radius: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
}
.popup .iti__country-list {
  width: 280px;
}

@media only screen and (max-width: 374px) {
  .popup {
    width: calc(100% - 40px);
  }
}
.page-hero {
  padding-top: 110px;
  padding-bottom: 80px;
  background-color: var(--taupe);
}
.page-hero-block {
  position: relative;
  padding: 56px 20px 20px;
  min-height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-hero__title {
  width: 100%;
  margin-bottom: auto;
}
.page-hero__title span:before {
  background-color: rgba(195, 171, 148, 0.8);
}
.page-hero__text {
  font-size: 20px;
  color: #fcfdfd;
  max-width: 685px;
  padding: 15px 20px;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  background-color: rgba(0, 0, 0, 0.4);
  margin-bottom: -21px;
  margin-left: -20px;
  border-radius: 4px;
}
.page-hero__btn {
  height: 50px;
}
.page-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 4px;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.page-hero__image:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: #525252;
  mix-blend-mode: hard-light;
  opacity: 0.4;
}
.page-hero__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.projects-hero .page-hero__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.projects-hero .page-hero__title span {
  margin-bottom: 5px;
}
.projects-hero .page-hero__title span:nth-child(1) {
  margin-right: auto;
}
.projects-hero .page-hero__title span:nth-child(3) {
  margin-left: auto;
}
.projects-hero .page-hero__text {
  max-width: 545px;
}

@media only screen and (max-width: 1299px) {
  .page-hero__text {
    max-width: 600px;
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .page-hero {
    padding-bottom: 60px;
  }
  .page-hero-block {
    min-height: auto;
    padding: 0;
  }
  .page-hero__text {
    max-width: 100%;
    padding: 0;
    -webkit-backdrop-filter: 0;
            backdrop-filter: 0;
    background-color: transparent;
    margin-bottom: 0;
    margin-left: 0;
    border-radius: 0;
    margin-top: 30px;
    padding: 0;
  }
  .page-hero__image {
    position: relative;
    aspect-ratio: 1.5;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 40px;
  }
  .page-hero__image:after {
    display: none;
  }
  .page-hero__btn {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .page-hero {
    padding-top: 65px;
    padding-bottom: 45px;
  }
  .page-hero__title span {
    display: inline;
  }
  .page-hero__title span:before {
    display: none;
  }
  .page-hero__title span:nth-child(1) {
    display: inline-block;
  }
  .page-hero__title span:nth-child(1):before {
    display: block;
  }
  .page-hero__text {
    font-size: 16px;
    margin-top: 20px;
  }
  .page-hero__image {
    margin-top: 20px;
  }
  .page-hero__btn {
    margin-top: 20px;
  }
  .projects-hero .page-hero__title span:nth-child(2) {
    text-align: center;
  }
  .projects-hero .page-hero__title span:nth-child(3) {
    margin-left: 0;
    text-align: right;
  }
  .projects-hero .page-hero__title span:nth-child(3):before {
    display: block;
  }
}
.about-smart-solutions-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 80px;
}
.about-smart-solutions-block:nth-child(2n+1) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.about-smart-solutions-block:nth-child(2n+1) .about-smart-solutions-image {
  margin-left: 0;
  margin-right: 100px;
}
.about-smart-solutions-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  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-left: 100px;
  margin-right: 0;
  width: 48.3%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.about-smart-solutions-image img {
  width: 100%;
}
.about-smart-solutions-content {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  border-top: 1px solid rgba(122, 114, 111, 0.2);
}
.about-smart-solutions__btn {
  margin-top: 35px;
}

.about-smart-solution {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px 0 25px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid rgba(122, 114, 111, 0.2);
}
.about-smart-solution__title {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  text-transform: uppercase;
}
.about-smart-solution__text {
  font-size: 16px;
  margin-top: 15px;
  line-height: 140%;
}

@media only screen and (max-width: 1299px) {
  .about-smart-solutions-block {
    margin-top: 50px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .about-smart-solutions-block + .about-smart-solutions-block {
    margin-top: 60px;
  }
  .about-smart-solutions-block:nth-child(2n+1) .about-smart-solutions-image {
    margin-left: 0;
    margin-right: 60px;
  }
  .about-smart-solutions-image {
    width: 47.5%;
    margin-left: 60px;
  }
  .about-smart-solution {
    padding: 20px 0;
  }
  .about-smart-solution__text {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .about-smart-solutions-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-smart-solutions-block:nth-child(2n+1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-smart-solutions-block:nth-child(2n+1) .about-smart-solutions-image {
    margin-right: 0px;
  }
  .about-smart-solutions-image {
    margin-right: 0;
    width: 100%;
    margin-left: 0;
  }
  .about-smart-solutions-content {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .about-smart-solutions .section-title {
    text-align: center;
  }
  .about-smart-solutions-block {
    margin-top: 30px;
  }
  .about-smart-solutions-block + .about-smart-solutions-block {
    margin-top: 45px;
  }
  .about-smart-solutions-content {
    margin-top: 30px;
  }
  .about-smart-solutions__btn {
    margin-top: 30px;
    width: 100%;
  }
  .about-smart-solutions-image {
    border-radius: 4px;
  }
  .about-smart-solution {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.about-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about-block {
  width: calc(51.7% - 100px);
  margin-bottom: 50px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.about-block:nth-child(2n+1) {
  width: 48.3%;
}
.about-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}
.about-image img {
  width: 100%;
}
.about-text {
  margin-top: 40px;
}
.about-text p {
  margin: 20px 0;
}

@media only screen and (max-width: 1299px) {
  .about-block {
    width: calc(52.5% - 60px);
  }
  .about-block:nth-child(2n+1) {
    width: 47.5%;
  }
}
@media only screen and (max-width: 991px) {
  .about-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
  }
  .about-block {
    margin-bottom: 0;
    padding: 40px 0;
    width: 100%;
    border-bottom: 1px solid rgba(122, 114, 111, 0.2);
  }
  .about-block:nth-child(2n+1) {
    width: 100%;
  }
  .about-block--image {
    border: none;
    padding: 0;
  }
  .about-text {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .about-block {
    padding: 30px 0;
  }
  .about-block--image {
    padding: 0;
  }
  .about-text {
    margin-top: 20px;
  }
  .about-text p {
    margin: 15px 0;
  }
  .about-image {
    border-radius: 4px;
    aspect-ratio: 1;
    position: relative;
  }
  .about-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.about-advantages-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 80px -22px -44px;
}

.about__section-title {
  display: inline-block;
  text-transform: uppercase;
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  padding: 25px 0;
  border-top: 1px solid rgba(122, 114, 111, 0.2);
  border-bottom: 1px solid rgba(122, 114, 111, 0.2);
}

.about-advantage {
  width: calc(33.33% - 44px);
  margin: 0 22px 44px;
  border: 1px solid var(--taupe);
  border-radius: 4px;
  padding: 45px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.about-advantage__title {
  margin: 0;
  font-weight: 500;
  font-size: 32px;
  line-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about-advantage__text {
  margin: 0;
  margin-top: 30px;
  font-weight: 300;
  font-size: 16px;
  line-height: 120%;
}
.about-advantage__text ul li {
  position: relative;
  padding-left: 25px;
}
.about-advantage__text ul li:before {
  position: absolute;
  content: ".";
  left: 11px;
  top: -6px;
  font-size: 20px;
  line-height: 1;
}
.about-advantage__text ul li + li {
  margin-top: 10px;
}
.about-advantage:nth-child(1) {
  background-color: var(--taupe);
  color: var(--white);
}
.about-advantage:nth-child(2) {
  background-color: var(--beige);
  border-color: var(--beige);
  color: var(--white);
}

@media only screen and (max-width: 1299px) {
  .about-advantages-block {
    margin-top: 50px;
  }
  .about-advantage__title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 991px) {
  .about-advantage {
    width: calc(50% - 44px);
    padding: 30px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .about-advantages-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: -30px;
  }
  .about-advantage {
    width: calc(100% - 44px);
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .about-advantages-block {
    margin-top: 35px;
  }
  .about-advantages .about__section-title {
    text-align: center;
  }
  .about__section-title {
    padding: 0;
    border: none;
    width: 100%;
  }
  .about-advantage {
    padding: 20px;
  }
  .about-advantage__title {
    font-size: 20px;
  }
  .about-advantage__text {
    margin-top: 15px;
  }
}
.feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.feature + .feature {
  margin-top: 80px;
}
.feature-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 48.3%;
  margin-left: 100px;
}
.feature-image img {
  width: 100%;
}
.feature-text {
  margin-top: 50px;
}
.feature__btn {
  margin-top: 50px;
}

@media only screen and (max-width: 1299px) {
  .feature + .feature {
    margin-top: 60px;
  }
  .feature-image {
    width: 47.5%;
    margin-left: 60px;
  }
  .feature-text {
    margin-top: 40px;
  }
  .feature__btn {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .feature {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .feature-image {
    margin-left: 0;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
    margin-bottom: 40px;
  }
  .feature-text {
    margin-top: 30px;
  }
  .feature__btn {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .feature + .feature {
    margin-top: 30px;
  }
  .feature-image {
    margin-bottom: 30px;
    aspect-ratio: 1;
    position: relative;
  }
  .feature-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .feature-text {
    margin-top: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(122, 114, 111, 0.2);
  }
}
.certificates-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.certificates-block .about__section-title {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-left: 105px;
}
.certificates-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px -30px;
  width: calc(48.3% + 30px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.certificate {
  width: calc(50% - 30px);
  margin: 0 15px 30px;
  border: 1px solid #7a726f;
  border-radius: 4px;
  padding: 20px;
}
.certificate__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
}
.certificate__subtitle {
  font-size: 16px;
  margin-top: 15px;
}

@media only screen and (max-width: 1299px) {
  .certificates-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .certificates-block .about__section-title {
    margin-left: 0px;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .certificates-grid {
    width: auto;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .certificate {
    width: calc(100% - 30px);
  }
}
@media only screen and (max-width: 575px) {
  .certificates-grid {
    margin-top: 30px;
  }
}
.projects-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px -40px;
}
.projects__btn {
  margin-top: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding-left: 30px;
  padding-right: 30px;
}
.projects__btn svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 15px;
}
.projects__btn svg path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.projects__btn:active svg path {
  fill: #E8E0D8;
}

.project {
  width: calc(50% - 40px);
  margin: 0 20px 40px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  overflow: hidden;
  padding: 20px;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  color: #fcfdfd;
  min-height: 350px;
}
.project-head {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  overflow: hidden;
  max-width: calc(100% - 66px);
  padding: 4px 10px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.project__title {
  margin: 0;
  font-weight: 400;
  font-size: 32px;
  text-transform: uppercase;
}
.project__subtitle {
  margin-top: 5px;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
}
.project__location {
  padding: 4px 10px;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.4);
  font-size: 16px;
  text-transform: uppercase;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.project__more {
  position: absolute;
  top: 47px;
  right: 20px;
  width: 46px;
  height: 20px;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.4);
  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;
  -webkit-transition: right 0.3s, background-color 0.3s;
  transition: right 0.3s, background-color 0.3s;
}

@media (hover) {
  .project:hover .project-head, .project:hover .project__location, .project:hover .project__more {
    background-color: rgba(0, 0, 0, 0.6);
  }
  .project:hover .project__more {
    right: 10px;
  }
  .projects__btn:hover svg path {
    fill: #E8E0D8;
  }
}
@media only screen and (max-width: 1299px) {
  .projects-grid {
    margin: 0 -15px -30px;
  }
  .projects__btn {
    margin-top: 50px;
  }
  .project {
    min-height: 260px;
    margin: 0 15px 30px;
  }
  .project-head {
    padding-top: 6px;
  }
  .project__title {
    font-size: 26px;
  }
  .project__subtitle {
    margin-top: 0;
  }
  .project__more {
    top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .projects-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .project {
    margin: 0;
    width: 100%;
    min-height: 300px;
  }
  .project + .project {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .projects__btn {
    margin-top: 40px;
    width: 100%;
  }
  .project-head {
    max-width: 100%;
    width: 100%;
    padding-top: 8px;
  }
  .project__title {
    font-size: 20px;
  }
  .project__location {
    max-width: calc(100% - 66px);
  }
  .project__more {
    top: auto;
    bottom: 20px;
    right: 20px;
  }
}
.popup--project {
  width: 900px;
  padding: 20px;
}
.popup--project .popup__close {
  width: 17px;
  height: 17px;
  top: 15px;
  right: 15px;
}

.project-slider {
  width: 100%;
  aspect-ratio: 1.48;
  overflow: hidden;
}
.project-slider-wrap {
  width: 520px;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.project-slide {
  border-radius: 4px;
  overflow: hidden;
}
.project-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-thumbs-slider {
  width: 100%;
  overflow: hidden;
  margin-top: 10px;
}
.project-thumbs-slide {
  border-radius: 4px;
  overflow: hidden;
  height: 100px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.project-thumbs-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.popup-project-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.popup-project-info {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
  padding-top: 25px;
}
.popup-project-title {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
}
.popup-project-subtitle {
  font-size: 14px;
  line-height: 140%;
  margin-top: 5px;
}
.popup-project-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid rgba(252, 253, 253, 0.2);
  margin-top: 25px;
  width: 100%;
}
.popup-project-li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid rgba(252, 253, 253, 0.2);
  padding: 10px 0;
}
.popup-project-li__title {
  font-size: 12px;
  text-transform: uppercase;
  padding-right: 20px;
}
.popup-project-li__text {
  font-size: 12px;
  line-height: 140%;
  width: 60%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.popup-project-li__text ul li {
  line-height: 1.2;
}
.popup-project-li__text ul li + li {
  margin-top: 10px;
}
.popup-project-btns {
  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;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 10px;
}
.popup-project-btns .btn {
  font-size: 12px;
  height: 40px;
  padding-left: 10px;
  padding-right: 10px;
}
.popup-project__link {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #fcfdfd;
  margin-left: 10px;
  text-align: center;
}

@media only screen and (max-width: 991px) {
  .popup--project {
    width: calc(100% - 40px);
    padding-top: 50px;
  }
  .popup--project .popup__close {
    top: 20px;
    right: 20px;
  }
  .project-sliders-wrap {
    width: 50%;
  }
  .project-thumbs-slide {
    height: 100%;
    aspect-ratio: 1.15;
  }
}
@media only screen and (max-width: 767px) {
  .project-slider-wrap {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .popup-project-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .popup-project-btns {
    margin-bottom: 0;
    margin-top: 20px;
  }
  .popup-project-info {
    width: 100%;
    padding-top: 0;
  }
  .popup-project-list {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 399px) {
  .popup-project-btns .btn {
    font-size: 11px;
  }
  .popup-project__link {
    font-size: 11px;
  }
}