@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.cdnfonts.com/css/helvetica-neue-55");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

@keyframes shake {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(8deg);
  }
}
body.no-scroll {
  overflow: hidden !important;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  padding: 0 16px;
  background: #1F2023;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all 200ms ease-out;
}
.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}
.mobile-nav--inner {
  display: flex;
  flex-direction: column;
  gap: 65px;
  width: 100%;
}
.mobile-nav--main-menu ul {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  gap: 32px;
}
.mobile-nav--main-menu ul li a {
  color: #fff;
  font-size: 20px;
  font-weight: 100;
  text-transform: uppercase;
  text-decoration: none;
}
.mobile-nav--secondary-menu ul {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  gap: 24px;
}
.mobile-nav--secondary-menu ul li a {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 84px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(55, 57, 62, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 100;
  transition: all 0.2s ease-out;
}
.site-header.header-hidden {
  top: -100px;
}
@media (max-width: 768px) {
  .site-header {
    height: 60px;
    padding: 0 16px;
  }
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.site-header--logo a {
  text-decoration: none;
}
.site-header--logo img {
  display: flex;
  width: 93px;
  height: auto;
}
@media (max-width: 768px) {
  .site-header--logo img {
    width: 58px;
  }
}
@media (max-width: 768px) {
  .site-header--nav {
    display: none;
  }
}
.site-header--nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}
.site-header--nav ul li a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 200ms ease-out;
}
.site-header--nav ul li a:hover {
  font-weight: 700;
}
.site-header--social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.site-header--social-links a {
  text-decoration: none;
  transition: all 200ms ease-out;
}
.site-header--social-links a:hover {
  transform: scale(1.1);
}
.site-header--social-links svg {
  display: flex;
}
.site-header--hamburger {
  display: none;
  position: relative;
  width: 30px;
  height: 22px;
  margin-left: 16px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10;
}
.site-header--hamburger:before {
  content: "";
  position: absolute;
  top: -20px;
  left: -16px;
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  transition: all 200ms ease-out;
}
.site-header--hamburger.active:before {
  opacity: 0;
}
.site-header--hamburger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
  width: 100%;
}
.site-header--hamburger.active span:nth-child(2) {
  opacity: 0;
}
.site-header--hamburger.active span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
  width: 100%;
}
.site-header--hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 200ms ease-out;
}
.site-header--hamburger span:nth-child(1) {
  top: 0;
  left: auto;
  right: 0;
  width: 60%;
}
.site-header--hamburger span:nth-child(2) {
  top: 10px;
}
.site-header--hamburger span:nth-child(3) {
  top: 20px;
  width: 60%;
}
@media (max-width: 768px) {
  .site-header--hamburger {
    display: flex;
  }
}

.hero {
  position: relative;
  background: #000;
}
.hero--get-consult {
  position: absolute;
  top: 300px;
  left: 82px;
  z-index: 10;
}
@media (max-width: 768px) {
  .hero--get-consult {
    top: auto;
    left: 13px;
    bottom: 100px;
  }
}
.hero--get-consult button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 323px;
  width: 280px;
  height: 323px;
  height: 280px;
  padding: 40px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.001);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all 200ms ease-out;
}
.hero--get-consult button:hover {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (max-width: 768px) {
  .hero--get-consult button {
    width: 152px;
    height: 152px;
    font-size: 12px;
  }
}
.hero--get-consult button span {
  position: relative;
  font-weight: inherit;
  z-index: 2;
}
.hero--side-btns {
  position: absolute;
  right: 32px;
  bottom: 89px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 10;
}
@media (max-width: 768px) {
  .hero--side-btns {
    position: fixed;
    right: 16px;
    bottom: 99px;
    z-index: 35;
  }
}
.hero--side-btns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 200ms ease-out;
}
.hero--side-btns a:hover {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (max-width: 768px) {
  .hero--side-btns a {
    width: 61px;
    height: 61px;
  }
}
.hero--side-btns a svg {
  display: flex;
  transition: all 200ms ease-out;
}
.hero--side-btns a.side-modal:hover svg {
  transform: scale(1.2);
}
.hero--side-btns a.side-call:hover svg {
  animation: shake 0.4s linear infinite;
}
.hero--slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero--slide {
  position: relative;
  width: 100%;
  height: 100vh;
}
.hero--slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2;
}
.hero--slide-bg img {
  width: 100%;
  height: 110%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
}
.hero--slide-bg img.hero--slide-bg-desktop {
  display: block;
}
@media (max-width: 768px) {
  .hero--slide-bg img.hero--slide-bg-desktop {
    display: none;
  }
}
.hero--slide-bg img.hero--slide-bg-mobile {
  display: none;
}
@media (max-width: 768px) {
  .hero--slide-bg img.hero--slide-bg-mobile {
    display: block;
  }
}
.hero--slide-inner {
  position: relative;
  z-index: 5;
  padding: 130px 82px 0;
}
@media (max-width: 768px) {
  .hero--slide-inner {
    padding: 84px 16px 0;
  }
}
.hero--title p {
  color: #ffffff;
  font-size: 64px;
  font-weight: 200;
  font-weight: 100;
  font-family: "Helvetica Neue", sans-serif;
}
@media (max-width: 768px) {
  .hero--title p {
    font-size: 36px;
  }
  .hero--title p strong {
    font-size: 40px;
  }
}
.hero--title p strong {
  font-weight: 500;
}
.hero--text {
  margin-top: 8px;
  color: #ffffff;
  font-weight: 300;
  font-weight: 100;
  font-size: 20px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .hero--text {
    font-size: 16px;
    font-weight: 300;
  }
}
.hero--text span {
  font-weight: 500;
}

.numbers {
  background: #737478;
}
.numbers--list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-columns: 33.333% 33.333% 33.333%;
  gap: 1px;
}
@media (max-width: 768px) {
  .numbers--list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.numbers--item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  height: 450px;
  padding: 0 60px 30px 0;
  padding: 30px 60px;
  background: #37393E;
}
@media (max-width: 768px) {
  .numbers--item {
    height: 254px;
    padding: 16px 24px;
  }
}
.numbers--item:hover:before {
  background: rgba(55, 57, 62, 0.8);
}
.numbers--item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #37393E;
  z-index: 2;
  transition: all 200ms ease-out;
}
.numbers--item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.numbers--item-num {
  position: relative;
  color: #ffffff;
  font-size: 96px;
  font-weight: 500;
  z-index: 5;
}
@media (max-width: 768px) {
  .numbers--item-num {
    font-size: 40px;
  }
}
.numbers--item-label {
  position: relative;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 100;
  text-align: right;
  z-index: 5;
}
@media (max-width: 768px) {
  .numbers--item-label {
    min-height: 30px;
    font-size: 13px;
    font-weight: 300;
    text-align: right;
  }
}

.object-map {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: #ccc;
}
.object-map--filters {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 67px;
  left: 34px;
  max-width: 240px;
  padding: 26px 14px;
  background: #37393E;
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 25;
  display: none;
}
@media (max-width: 768px) {
  .object-map--filters {
    top: 0;
    right: 0;
    left: auto;
    padding: 20px 14px;
  }
}
.object-map--filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 45px;
  margin-bottom: 5px;
  padding: 0 15px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  transition: all 200ms ease-out;
  cursor: pointer;
}
.object-map--filter-btn:hover {
  background: #46474d;
}
.object-map--filter-btn.active {
  background: #fff;
}
.object-map--filter-btn.active span {
  color: #000;
}
.object-map--filter-btn.active svg path {
  fill: #37393E;
}
.object-map--filter-btn:last-child {
  margin-bottom: 0;
}
.object-map--filter-btn span {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  font-family: "Helvetica Neue", sans-serif;
}
.object-map--filter-btn span.text-desktop {
  display: flex;
}
@media (max-width: 768px) {
  .object-map--filter-btn span.text-desktop {
    display: none;
  }
}
.object-map--filter-btn span.text-mobile {
  display: none;
}
@media (max-width: 768px) {
  .object-map--filter-btn span.text-mobile {
    display: flex;
  }
}
.object-map--filter-btn svg {
  display: flex;
}
.object-map--filter-btn svg path {
  transition: all 200ms ease-out;
}
@media (max-width: 768px) {
  .object-map--filter-btn {
    justify-content: center;
    width: 45px;
    padding: 0;
  }
  .object-map--filter-btn:not(.all) span {
    display: none;
  }
}
.object-map h3 {
  margin: 0 0 25px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: "Helvetica Neue", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .object-map h3 {
    display: none;
  }
}

.gallery {
  padding: 0 0 118px;
}
@media (max-width: 768px) {
  .gallery {
    padding: 0 0 36px;
  }
}
.gallery--heading {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 96px 68px 49px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .gallery--heading {
    padding: 43px 16px 25px;
  }
}
.gallery--heading-overlay {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  .gallery--heading-overlay svg {
    width: auto;
    height: 108px;
  }
}
.gallery--heading-left {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  z-index: 5;
}
.gallery--heading-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  z-index: 5;
  display: none;
}
.gallery--heading-title {
  color: #000000;
  font-size: 64px;
  font-weight: 300;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .gallery--heading-title {
    font-size: 24px;
  }
}
.gallery--heading-subtitle {
  margin-right: 8px;
  color: #000000;
  font-size: 20px;
  font-weight: 300;
  text-transform: uppercase;
}
.gallery--heading-subtitle span {
  font-weight: 500;
}
@media (max-width: 768px) {
  .gallery--heading-subtitle {
    margin-right: 0;
    font-size: 10px;
  }
}
.gallery--heading-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  color: #000000;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.45);
  text-decoration: none;
  transition: all 200ms ease-out;
}
.gallery--heading-btn:hover {
  color: #fff;
  background: #000000;
}
.gallery--heading-btn:hover svg path {
  fill: #ffffff;
}
@media (max-width: 768px) {
  .gallery--heading-btn {
    display: none;
  }
}
.gallery--heading-btn span {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.gallery--heading-btn svg {
  display: flex;
}
.gallery--heading-btn svg path {
  transition: all 200ms ease-out;
}
.gallery--items {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 1px;
  padding: 0;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
.gallery--items::-webkit-scrollbar {
  display: none;
}
.gallery--item {
  flex: 0 0 auto;
  position: relative;
  height: 530px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .gallery--item {
    height: 210px;
  }
}
.gallery--item img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery--item img:hover {
  transform: scale(1.1);
}

.commercial {
  position: relative;
  overflow: hidden;
}
.commercial--inner {
  position: relative;
  display: flex;
}
@media (max-width: 768px) {
  .commercial--inner {
    flex-wrap: wrap;
  }
}
.commercial--left {
  width: 55%;
}
.commercial--left-mobile {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  padding: 20px 16px 0;
}
@media (max-width: 768px) {
  .commercial--left-mobile {
    display: flex;
  }
}
@media (max-width: 768px) {
  .commercial--left {
    width: 100%;
    background: #fff;
  }
}
.commercial--right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 155px;
  width: 45%;
  padding: 103px 69px 60px;
  background: #fff;
  overflow: hidden;
}
@media (max-width: 768px) {
  .commercial--right {
    gap: 27px;
    width: 100%;
    padding: 28px 16px;
  }
  .commercial--right .commercial--title,
  .commercial--right .commercial--subtitle {
    display: none;
  }
}
.commercial--right-top, .commercial--right-bottom {
  position: relative;
  z-index: 5;
}
.commercial--right-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 105%;
  z-index: 1;
}
.commercial--right-overlay svg {
  display: flex;
  width: 100%;
  height: auto;
}
.commercial--img {
  display: flex;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .commercial--img {
    height: 324px;
  }
}
.commercial--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.commercial--title {
  margin: 0 0 8px -7px;
  color: #000000;
  font-size: 64px;
  font-weight: 300;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .commercial--title {
    font-size: 24px;
    margin: 0;
  }
}
.commercial--subtitle {
  margin: 0 0 43px;
  color: #000000;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
}
.commercial--subtitle span {
  font-weight: 500;
}
@media (max-width: 768px) {
  .commercial--subtitle {
    margin-bottom: 25px;
    font-size: 10px;
  }
}
.commercial--text {
  margin: 0 0 32px;
}
@media (max-width: 768px) {
  .commercial--text {
    margin-bottom: 0;
  }
}
.commercial--text p {
  margin: 0 0 18px;
  color: #000000;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  text-transform: uppercase;
}
.commercial--text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .commercial--text p {
    margin-bottom: 1px;
    font-size: 14px;
  }
}
.commercial--btn-wrap {
  display: flex;
  justify-content: flex-end;
}
.commercial--btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px 19px;
  color: #000000;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.45);
  text-decoration: none;
  transition: all 200ms ease-out;
}
.commercial--btn:hover {
  color: #fff;
  background: #000000;
}
.commercial--btn:hover svg path {
  fill: #ffffff;
}
@media (max-width: 768px) {
  .commercial--btn {
    width: 100%;
    justify-content: center;
  }
}
.commercial--btn span {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.commercial--btn svg {
  display: flex;
}
.commercial--btn svg path {
  transition: all 200ms ease-out;
}

.crm-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 85vh;
  background: #ccc;
}
.crm-plan iframe {
  position: static;
  width: 100%;
  height: 100%;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.options {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 108px 0 80px;
  background: #37393E;
}
@media (max-width: 768px) {
  .options {
    padding: 90px 0 35px;
  }
}
.options--title {
  width: 100%;
  margin: 0 0 60px;
  color: #FFFFFF;
  font-size: 64px;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 768px) {
  .options--title {
    margin-bottom: 75px;
    font-size: 24px;
  }
}
.options--inner {
  position: relative;
  width: 100%;
}
.options--center-img {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .options--center-img {
    display: none;
  }
}
.options--center-img svg {
  display: flex;
}
.options--left {
  display: flex;
  flex-direction: column;
  gap: 53px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 30px;
  padding-left: 40px;
}
@media (max-width: 768px) {
  .options--left {
    display: none;
  }
}
.options--right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 69px;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  padding-top: 30px;
  padding-right: 40px;
}
@media (max-width: 768px) {
  .options--right {
    display: none;
  }
}
.options--right .option-item {
  align-items: flex-end;
}
.options--right .option-item-box {
  right: auto;
  left: -32px;
}
.options .option-item {
  position: relative;
  display: flex;
  flex-direction: column;
}
.options .option-item-title {
  color: #ADC1D9;
  font-size: 16px;
  font-weight: 700;
}
.options .option-item-text {
  color: #fff;
  font-size: 15px;
  font-weight: 300;
}
.options .option-item-line {
  margin: 2px 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform-origin: left center;
}
.options .option-item-box {
  position: absolute;
  top: 5px;
  right: -32px;
  width: 32px;
  height: 32px;
  background: rgba(173, 193, 217, 0.8);
}
.options .option-item.l1 {
  width: 33%;
}
.options .option-item.l2 {
  width: 54%;
}
.options .option-item.l3 {
  width: 56%;
}
.options .option-item.l4 {
  width: 25%;
}
.options .option-item.l5 {
  width: 24%;
}
.options .option-item.l6 {
  width: 55%;
}
.options .option-item.r1 {
  width: 46%;
}
.options .option-item.r2 {
  width: 39%;
}
.options .option-item.r3 {
  width: 26%;
}
.options .option-item.r4 {
  width: 23%;
}
.options .option-item.r5 {
  width: 53%;
}
.options .options-mobile-slider {
  display: none;
}
@media (max-width: 768px) {
  .options .options-mobile-slider {
    display: flex;
    flex-direction: column;
  }
}
.options .options-mobile-slider .slick-slide:nth-child(1) .option--slide {
  display: flex !important;
  justify-content: flex-end;
}
.options .options-mobile-slider .slick-slide:nth-child(2) .option--slide {
  display: flex !important;
  justify-content: flex-start;
}
.options .options-mobile-slider .option--slide-inner {
  display: flex;
  width: 100%;
}
.options .options-mobile-slider .option--slide-inner.first {
  justify-content: flex-end;
}
.options .options-mobile-slider .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  width: 100%;
  margin-top: 80px;
  list-style-type: none;
  z-index: 10;
}
.options .options-mobile-slider .slick-dots li.slick-active button {
  background: #ffffff;
}
.options .options-mobile-slider .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: none;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 0;
  cursor: pointer;
}

.benefits {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #37393E;
}
@media (max-width: 768px) {
  .benefits {
    min-height: auto;
  }
  .benefits .slick-track {
    display: flex !important;
  }
  .benefits .slick-slide {
    height: inherit !important;
  }
  .benefits .slick-slide > div {
    height: 100%;
  }
}
.benefits--slider {
  position: relative;
  width: 100%;
}
.benefits .slick-dots {
  position: absolute;
  left: 0;
  bottom: 49px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  width: 50vw;
  list-style-type: none;
  z-index: 10;
}
@media (max-width: 768px) {
  .benefits .slick-dots {
    bottom: 35px;
    width: 100%;
  }
}
.benefits .slick-dots li.slick-active button {
  background: #ffffff;
}
.benefits .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: #000000;
  border: 2px solid #000000;
  border-radius: 50%;
  font-size: 0;
  cursor: pointer;
}
@media (max-width: 768px) {
  .benefits--slide {
    height: 100%;
  }
}
.benefits--slide-inner {
  display: flex;
}
@media (max-width: 768px) {
  .benefits--slide-inner {
    flex-direction: column-reverse;
    height: 100%;
  }
}
.benefits--slide-title {
  margin: 0 0 84px;
  color: #000000;
  font-size: 64px;
  font-weight: 300;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .benefits--slide-title {
    margin: 0 0 20px;
    font-size: 24px;
  }
}
.benefits--slide-text {
  color: #000000;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}
@media (max-width: 768px) {
  .benefits--slide-text {
    font-size: 10px;
    line-height: 17px;
  }
}
.benefits--slide-img {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .benefits--slide-img {
    height: 390px;
  }
}
.benefits--slide-img img {
  display: flex;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.benefits--left {
  width: 50%;
  padding: 96px 68px;
  background: #fff;
}
@media (max-width: 768px) {
  .benefits--left {
    width: 100%;
    height: 390px;
    padding: 40px 39px;
  }
}
.benefits--right {
  width: 50%;
}
@media (max-width: 768px) {
  .benefits--right {
    width: 100%;
  }
}

.object-tabs {
  border-bottom: 1px solid #37393E;
}
.object-tabs--heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 45px 83px 42px;
  background: #37393E;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}
@media (max-width: 768px) {
  .object-tabs--heading {
    gap: 13px;
    padding: 75px 23px 18px;
    overflow-x: auto;
    white-space: nowrap;
  }
}
.object-tabs--heading-btn {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 200ms ease-out;
}
.object-tabs--heading-btn.active {
  font-weight: 600;
}
.object-tabs--content-inner {
  display: flex;
}
@media (max-width: 768px) {
  .object-tabs--content-inner {
    flex-direction: column-reverse;
  }
}
.object-tabs--content-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 100px;
  width: 50%;
  padding: 87px 83px;
  background: #37393E;
}
@media (max-width: 768px) {
  .object-tabs--content-left {
    gap: 27px;
    width: 100%;
    padding: 40px 16px;
  }
}
.object-tabs--content-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  background: #fff;
  overflow: hidden;
}
@media (max-width: 768px) {
  .object-tabs--content-right {
    width: 100%;
  }
}
.object-tabs--content-right-slider {
  width: 100%;
}
.object-tabs--content-right-slider-item {
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  height: 100%;
}
@media (max-width: 768px) {
  .object-tabs--content-right-slider-item {
    padding: 40px 0;
  }
}
.object-tabs--content-right-slider-item a {
  outline: none;
  text-decoration: none;
}
.object-tabs--content-right-slider-item img {
  transition: all 200ms ease-out;
}
@media (max-width: 768px) {
  .object-tabs--content-right-slider-item img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.object-tabs--content-right-slider-item img:hover {
  transform: scale(1.05);
}
.object-tabs--content-right .slick-track {
  display: flex !important;
}
.object-tabs--content-right .slick-slide {
  height: inherit !important;
}
.object-tabs--content-right .slick-slide > div {
  height: 100%;
}
.object-tabs--content-right .slick-arrow {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 32px;
  background: none;
  border: 0;
  padding: 0;
  outline: none;
  cursor: pointer;
  z-index: 10;
  transition: all 200ms ease-out;
}
.object-tabs--content-right .slick-arrow.slick-disabled {
  display: none !important;
}
.object-tabs--content-right .slick-arrow:hover {
  transform: scale(1.1);
}
.object-tabs--content-right .slick-arrow.slick-prev {
  top: 50%;
  left: 32px;
  transform: translateY(-50%);
}
.object-tabs--content-right .slick-arrow.slick-next {
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
}
.object-tabs--content-title {
  margin: 0 0 19px;
  color: #FFFFFF;
  font-size: 36px;
  font-weight: 300;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .object-tabs--content-title {
    margin-bottom: 8px;
    font-size: 24px;
  }
}
.object-tabs--content-text {
  margin: 0 0 84px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .object-tabs--content-text {
    margin-bottom: 33px;
    font-size: 10px;
  }
}
.object-tabs--content-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  counter-reset: numbers-counter;
}
@media (max-width: 768px) {
  .object-tabs--content-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.object-tabs--content-list p {
  counter-increment: numbers-counter;
  position: relative;
  margin: 0;
  padding-left: 36px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .object-tabs--content-list p {
    font-size: 12px;
  }
}
.object-tabs--content-list p:before {
  content: counter(numbers-counter);
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 768px) {
  .object-tabs--content-list p:before {
    top: 1px;
    width: 18px;
    height: 18px;
    font-size: 12px;
  }
}
.object-tabs--content-btn {
  display: flex;
  align-items: center;
}
.object-tabs--content-btn-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 20px 16px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: all 200ms ease-out;
}
.object-tabs--content-btn-link:hover {
  background: #fff;
}
.object-tabs--content-btn-link:hover span {
  color: #37393E;
}
.object-tabs--content-btn-link:hover svg path {
  fill: #37393E;
}
.object-tabs--content-btn-link span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 200ms ease-out;
}
.object-tabs--content-btn-link svg {
  display: flex;
}
.object-tabs--content-btn-link svg path {
  transition: all 200ms ease-out;
}
@media (max-width: 768px) {
  .object-tabs--content-btn-link {
    width: 100%;
    justify-content: center;
    background: #fff;
  }
  .object-tabs--content-btn-link span {
    color: #37393E;
  }
  .object-tabs--content-btn-link svg path {
    fill: #37393E;
  }
}

.recent-projects--heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 86px 68px 64px;
  background: #fff;
}
@media (max-width: 768px) {
  .recent-projects--heading {
    justify-content: center;
    padding: 43px 16px 46px;
  }
  .recent-projects--heading .recent-projects--btn {
    display: none;
  }
}
.recent-projects--title {
  color: #000000;
  font-size: 64px;
  font-weight: 300;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .recent-projects--title {
    font-size: 24px;
  }
}
.recent-projects--btn.mobile {
  display: none;
}
@media (max-width: 768px) {
  .recent-projects--btn.mobile {
    display: flex;
    padding: 62px 16px 34px;
  }
}
.recent-projects--btn-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px 19px;
  color: #000000;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.45);
  text-decoration: none;
  transition: all 200ms ease-out;
}
.recent-projects--btn-link:hover {
  color: #fff;
  background: #000000;
}
.recent-projects--btn-link:hover svg path {
  fill: #ffffff;
}
@media (max-width: 768px) {
  .recent-projects--btn-link {
    width: 100%;
    justify-content: center;
  }
}
.recent-projects--btn-link span {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .recent-projects--btn-link span {
    font-size: 10px;
  }
}
.recent-projects--btn-link svg {
  display: flex;
}
.recent-projects--btn-link svg path {
  transition: all 200ms ease-out;
}
.recent-projects--list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.recent-projects--item-link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  min-height: 600px;
  padding: 25px;
  text-decoration: none;
  overflow: hidden;
}
.recent-projects--item-link:hover .recent-projects--item-img img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .recent-projects--item-link {
    min-height: 252px;
  }
}
.recent-projects--item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.recent-projects--item-img img {
  display: flex;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 200ms ease-out;
}
.recent-projects--item-name {
  position: relative;
  margin-bottom: 4px;
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 5;
}
@media (max-width: 768px) {
  .recent-projects--item-name {
    font-size: 12px;
  }
}
.recent-projects--item-address {
  position: relative;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  z-index: 5;
}
@media (max-width: 768px) {
  .recent-projects--item-address {
    display: none;
  }
}

.contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #37393E;
}
@media (max-width: 768px) {
  .contacts {
    flex-direction: column;
    background: #fff;
  }
}
.contacts--left {
  padding: 74px 111px;
  width: 50%;
}
@media (max-width: 768px) {
  .contacts--left {
    width: 100%;
    padding: 43px 23px;
  }
}
.contacts--right {
  width: 50%;
}
@media (max-width: 768px) {
  .contacts--right {
    width: 100%;
  }
}
.contacts--title {
  margin: 0 0 38px;
  color: #FFFFFF;
  font-size: 64px;
  font-weight: 300;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .contacts--title {
    color: #000;
    font-size: 24px;
  }
}
.contacts--list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 21px 60px;
}
@media (max-width: 768px) {
  .contacts--list {
    gap: 24px;
  }
}
.contacts--list-label {
  margin-bottom: 11px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .contacts--list-label {
    color: #000;
    font-size: 10px;
  }
}
.contacts--list-link a {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}
@media (max-width: 768px) {
  .contacts--list-link a {
    color: #000;
    font-size: 12px;
  }
}
.contacts--list-hours {
  display: flex;
}
.contacts--list-hours span {
  min-width: 70px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .contacts--list-hours span {
    color: #000;
    font-size: 12px;
  }
}
.contacts--social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
}
.contacts--social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
}
@media (max-width: 768px) {
  .contacts--social-links svg {
    display: flex;
  }
  .contacts--social-links svg path {
    fill: #000;
  }
}
.contacts--map {
  width: 100%;
  height: 100%;
}
.contacts--map img {
  display: flex;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.callback {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 65px 200px;
  background: #37393E;
  border-top: 1px solid #595959;
}
@media (max-width: 768px) {
  .callback {
    display: none;
  }
}
.callback--title {
  width: 100%;
  margin: 0 0 61px;
  color: #FFFFFF;
  font-size: 64px;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
}
.callback--form {
  width: 100%;
}
.callback .wpcf7-form {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  gap: 21px;
}
.callback .form-item {
  width: 100%;
}
.callback .form-item.form-item--submit {
  max-width: 218px;
}
.callback .form-item p {
  width: 100%;
}
.callback .form-item input {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  color: rgb(255, 255, 255);
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  font-size: 14px;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  transition: all 200ms ease-out;
}
.callback .form-item input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.callback .form-item input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.callback .form-item input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.75);
}
.callback .form-item button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  width: 100%;
  height: 58px;
  padding: 0 18px;
  color: rgb(255, 255, 255);
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 14px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 200ms ease-out;
}
.callback .form-item button br {
  display: none;
}
.callback .form-item button:hover {
  border-color: rgb(255, 255, 255);
}
.callback .wpcf7-not-valid-tip {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
}
.callback .wpcf7 form .wpcf7-response-output {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

.site-footer {
  display: flex;
  flex-direction: column;
  padding: 51px 43px 27px;
  background: #1B1B1B;
}
@media (max-width: 768px) {
  .site-footer {
    padding: 100px 23px 9px;
  }
}
.site-footer--inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .site-footer--inner {
    gap: 29px 0;
  }
}
.site-footer--col {
  width: 25%;
}
.site-footer--col.wide {
  width: 100%;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .site-footer--col {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .site-footer--col:nth-child(1) {
    width: 100%;
  }
  .site-footer--col:nth-child(1) .site-footer--social-links {
    display: none;
  }
}
@media (max-width: 768px) {
  .site-footer--col:nth-child(4) {
    width: 100%;
  }
}
.site-footer--logo svg {
  display: flex;
}
@media (max-width: 768px) {
  .site-footer--logo svg {
    width: 83px;
    height: auto;
  }
}
.site-footer--social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 93px;
}
.site-footer--social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
}
.site-footer--label {
  margin-bottom: 24px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}
.site-footer--nav ul {
  list-style: none;
}
.site-footer--nav li {
  margin-bottom: 8px;
}
.site-footer--nav li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer--nav li a:hover {
  color: rgb(255, 255, 255);
}
.site-footer--contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .site-footer--contacts {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .site-footer--list-item {
    width: 48%;
  }
}
@media (max-width: 768px) {
  .site-footer--list-item:nth-child(3) {
    order: 4;
  }
}
@media (max-width: 768px) {
  .site-footer--list-item:nth-child(4) {
    order: 3;
  }
}
.site-footer--list-label {
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .site-footer--list-label {
    font-size: 10px;
  }
}
.site-footer--list-link a {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
}
@media (max-width: 768px) {
  .site-footer--list-link a {
    font-size: 12px;
  }
  .site-footer--list-link a br {
    display: none;
  }
}
.site-footer--list-hours {
  display: flex;
}
.site-footer--list-hours span {
  min-width: 70px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .site-footer--list-hours span {
    font-size: 12px;
  }
}
.site-footer--copy {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-footer--copy a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
}
.site-footer--copy a:hover {
  color: rgb(255, 255, 255);
}

.fancybox__caption {
  display: none;
}

.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #1F2023;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all 200ms ease-out;
}
.contact-modal.active {
  opacity: 1;
  visibility: visible;
  z-index: 125;
}
.contact-modal--inner {
  position: relative;
  width: 100%;
  max-width: 933px;
  padding: 76px;
  border: 1px solid #fff;
}
@media (max-width: 768px) {
  .contact-modal--inner {
    padding-left: 16px;
    padding-right: 16px;
    border: 0;
  }
}
.contact-modal--close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.contact-modal--close:hover svg {
  transform: rotate(90deg);
}
.contact-modal--close svg {
  display: flex;
  transition: all 200ms ease-out;
}
.contact-modal--title {
  margin: 0 0 20px;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  text-align: center;
}
.contact-modal--text {
  width: 100%;
  max-width: 402px;
  margin: 0 auto 55px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}
.contact-modal--form {
  width: 100%;
  max-width: 528px;
  margin: 0 auto;
}
.contact-modal .form-item {
  width: 100%;
  margin-bottom: 23px;
}
.contact-modal .wpcf7-form-control-wrap {
  width: 100%;
}
.contact-modal input {
  display: flex;
  align-items: center;
  width: 100%;
  height: 58px;
  padding: 0 18px;
  color: rgb(255, 255, 255);
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  font-size: 14px;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  outline: none;
  transition: all 200ms ease-out;
}
.contact-modal input:focus, .contact-modal input:hover {
  border-color: rgba(255, 255, 255, 0.75);
}
.contact-modal input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.contact-modal input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.contact-modal .form-item--submit {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .contact-modal .form-item--submit {
    justify-content: center;
    margin-top: 40px;
  }
  .contact-modal .form-item--submit > p {
    width: 100%;
  }
}
.contact-modal .form-item--submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  transition: all 200ms ease-out;
}
.contact-modal .form-item--submit-btn:hover {
  gap: 12px;
}
.contact-modal .form-item--submit-btn br {
  display: none;
}
.contact-modal .form-item--submit-btn span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .contact-modal .form-item--submit-btn span {
    font-size: 10px;
  }
}
.contact-modal .form-item--submit-btn svg {
  display: flex;
}
@media (max-width: 768px) {
  .contact-modal .form-item--submit-btn {
    width: 100%;
    height: 58px;
    gap: 12px;
    background: #fff;
  }
  .contact-modal .form-item--submit-btn:hover {
    gap: 6px;
  }
  .contact-modal .form-item--submit-btn span {
    color: #000;
    font-size: 10px;
  }
  .contact-modal .form-item--submit-btn svg {
    transform: scale(0.7);
  }
  .contact-modal .form-item--submit-btn svg path {
    fill: #000;
  }
}
.contact-modal .wpcf7-not-valid-tip {
  font-size: 12px;
}
.contact-modal .wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}/*# sourceMappingURL=style.css.map */