@font-face {
  font-family: 'Orchidea Pro';
  src: url("fonts/OrchideaPro-Regular.eot");
  src: local("Orchidea Pro Regular"), local("OrchideaPro-Regular"), url("fonts/OrchideaPro-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/OrchideaPro-Regular.woff2") format("woff2"), url("fonts/OrchideaPro-Regular.woff") format("woff"), url("fonts/OrchideaPro-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Orchidea Pro';
  src: url("fonts/OrchideaPro-Medium.eot");
  src: local("Orchidea Pro Medium"), local("OrchideaPro-Medium"), url("fonts/OrchideaPro-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/OrchideaPro-Medium.woff2") format("woff2"), url("fonts/OrchideaPro-Medium.woff") format("woff"), url("fonts/OrchideaPro-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal; }
:root {
  font-size: 30px; }

ul, li {
  margin: 0;
  padding: 0;
  display: block; }

a {
  transition: .3s all;
  outline: none;
  text-decoration: none; }
  a:hover {
    text-decoration: none; }

button {
  transition: .6s all;
  border: none;
  outline: none;
  background: none;
  padding: 0; }

h1, h2, h3, h4, h5, p {
  margin: 0; }

input {
  outline: none;
  border-radius: 0; }
  input.error {
    color: red !important;
    border-color: red !important; }

body {
  font-family: 'Orchidea Pro', sans-serif;
  background: #181D24;
  color: #fff;
  font-size: 1.05rem; }

.overflowH {
  overflow: hidden;
  height: 100svh; }

::-webkit-scrollbar {
  width: .5rem;
  height: 0.5rem; }

::-webkit-scrollbar-track {
  background: #ddd; }

::-webkit-scrollbar-thumb {
  background: #181D24;
  border: 1px solid #ddd; }

.lazy {
  opacity: 0; }

.disabled {
  pointer-events: none; }

.container {
  padding: 0 4rem;
  width: 100%; }

.section-title {
  display: inline-block;
  margin-left: -4rem;
  padding-left: 4rem;
  border-bottom: 1px solid #fff;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.5; }

.btn {
  width: 15rem;
  height: 3rem;
  border: 1px solid #fff;
  font-size: 1.3rem;
  color: #fff;
  transition: .6s all;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1; }
  .btn::after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: #181D24;
    content: '';
    z-index: -1;
    transition: .6s all; }
  .btn:hover::after {
    width: 100%; }

.arrows {
  display: flex;
  gap: 2.25rem; }
  .arrows span {
    width: 2.75rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .6s all;
    cursor: pointer;
    user-select: none; }
    .arrows span img {
      width: 100%;
      display: block; }

.count {
  font-size: 0.8rem; }

#ascrail2000 {
  z-index: 40 !important; }

.owl-item img {
  transition: .8s all;
  transform: scale(1.5); }
.owl-item.active img {
  transition: none;
  transform: none; }

@keyframes lds-ring {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
@keyframes strokeLines {
  100% {
    stroke-dashoffset: 0; } }
@keyframes fill {
  100% {
    fill: #fff; } }
.preloader {
  background: #181D24;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4rem;
  padding-right: 0.5rem; }
  .preloader svg {
    width: auto;
    height: 11rem;
    display: block; }
    .preloader svg path {
      fill: transparent;
      animation: strokeLines 2.5s forwards, fill .5s forwards 2s; }
      .preloader svg path:nth-child(1) {
        stroke-dasharray: 1412;
        stroke-dashoffset: 1412; }
      .preloader svg path:nth-child(2) {
        stroke-dasharray: 1009;
        stroke-dashoffset: 1009; }
      .preloader svg path:nth-child(3) {
        stroke-dasharray: 1518;
        stroke-dashoffset: 1518; }
      .preloader svg path:nth-child(4) {
        stroke-dasharray: 1009;
        stroke-dashoffset: 1009; }
      .preloader svg path:nth-child(5) {
        stroke-dasharray: 600;
        stroke-dashoffset: 600; }
      .preloader svg path:nth-child(6) {
        stroke-dasharray: 600;
        stroke-dashoffset: 600; }

.feedback {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  display: none;
  font-size: 0.9rem; }
  .feedback-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2rem;
    border-bottom: 0.65rem solid #181D24;
    background: #fff;
    color: #181D24;
    width: 22rem; }
  .feedback__close {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -3.5rem;
    width: 2.5rem;
    border-radius: 50%;
    height: 2.5rem;
    color: #fff;
    background: #181D24;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .6s all;
    cursor: pointer;
    user-select: none;
    z-index: 3;
    border: 1px solid #fff; }
    .feedback__close:hover {
      background: #fff;
      color: #181D24; }
    .feedback__close svg {
      width: .5rem;
      height: .5rem; }
  .feedback__title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase; }
  .feedback__text {
    line-height: 1.2;
    text-align: center; }
  .feedback-form {
    margin: 2rem 0 0.8rem; }
    .feedback-form input {
      margin-bottom: 2rem;
      border: none;
      border-bottom: 1px solid #181D24;
      width: 100%;
      padding-bottom: 0.5rem; }
    .feedback-form .btn {
      margin-top: -.5rem;
      width: 100%;
      background: #181D24;
      border-color: #181D24; }
      .feedback-form .btn:hover {
        color: #181D24; }
      .feedback-form .btn::after {
        background: #fff; }
  .feedback__agree {
    font-size: 0.7rem;
    text-align: center;
    max-width: 13rem;
    margin: 0 auto; }
  .feedback-done {
    display: none; }
    .feedback-done .feedback__text {
      margin-bottom: 1rem;
      padding: 0 1rem; }
  .feedback__img {
    margin: 3.5rem 0 2.5rem;
    text-align: center; }
    .feedback__img img {
      display: inline-block;
      width: 8rem; }

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 6;
  transition: .7s all;
  transform: translateX(-100%);
  display: none; }
  .mobile-menu .container {
    height: 100%;
    padding-bottom: 7rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
  .mobile-menu__list {
    font-size: 2.5rem; }
    .mobile-menu__list li {
      margin-bottom: 2rem; }
    .mobile-menu__list a {
      color: #181D24; }
  .mobile-menu .header-theme {
    display: flex;
    margin-top: 2rem; }
  .mobile-menu .header__tel {
    color: #181D24; }
    .mobile-menu .header__tel span {
      border-color: #181D24; }
  .mobile-menu__lang {
    display: flex;
    gap: 1rem; }
    .mobile-menu__lang a {
      color: #181D24; }
  .mobile-menu__head {
    padding: 1rem 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .mobile-menu__empty {
    width: 8rem; }
  .mobile-menu__logo {
    width: 8rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .mobile-menu.active {
    transform: none; }

.header {
  padding: 0.8rem .75rem;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 5; }
  .header-mobile {
    display: none; }
  .header .container {
    padding: 0.75rem 1rem .75rem 3.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 1s all;
    clip-path: inset(0px 0px 0px 0px); }
  .header-wrap {
    display: flex;
    align-items: center;
    gap: 1.5rem; }
  .header__logo {
    margin-right: 2rem;
    width: 8rem;
    transition: .5s all;
    transition-delay: .2s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
    .header__logo img {
      width: 100%;
      display: block; }
    .header__logo.active {
      opacity: 0;
      visibility: hidden; }
  .header-menu {
    display: flex;
    gap: 3.5rem; }
    .header-menu a {
      color: #fff; }
  .header-lang {
    display: flex;
    align-items: center;
    gap: .45rem;
    cursor: pointer;
    padding-bottom: 10rem;
    margin-bottom: -10rem;
    text-transform: uppercase; }
    .header-lang p {
      display: flex;
      flex-direction: column;
      gap: 1px; }
      .header-lang p span {
        display: block;
        width: 9px;
        height: 2px;
        border-radius: 2px;
        background: #fff;
        transition: .6s all; }
    .header-lang.active p span:nth-child(1) {
      transform: translateY(1.5px); }
    .header-lang.active p span:nth-child(2) {
      transform: translateY(-1.5px); }
  .header-dropdown {
    position: absolute;
    display: none;
    width: 3rem;
    right: 20rem;
    padding-left: 1rem; }
    .header-dropdown li {
      margin-bottom: 1rem;
      text-transform: uppercase;
      margin-top: 1rem; }
    .header-dropdown a {
      color: #fff; }
  .header__tel {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    color: #fff;
    margin-left: 1.5rem; }
    .header__tel span {
      border: .1rem solid #fff;
      border-radius: 50%;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      background: rgba(255, 255, 255, 0.13);
      width: 1.1rem;
      height: 1.1rem; }
      .header__tel span svg {
        width: .5rem; }
    .header__tel img {
      width: 1.1rem;
      border-radius: 50%;
      box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.3), 0px 0px 5px rgba(255, 255, 255, 0.25), 0px 0px 1px rgba(255, 255, 255, 0.04); }
  .header__btn {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0.7rem;
    cursor: pointer;
    gap: 2px;
    opacity: 0; }
    .header__btn span {
      height: 2px;
      border-radius: 3px;
      width: 1.1rem;
      background: #181D24;
      display: block;
      transition: .6s all; }
    .header__btn:hover span:nth-child(1), .header__btn.active span:nth-child(1) {
      transform: translateY(2px); }
    .header__btn:hover span:nth-child(2), .header__btn.active span:nth-child(2) {
      transform: translateY(-2px); }
  .header.scrolled {
    pointer-events: none; }
    .header.scrolled .header__btn {
      pointer-events: auto;
      opacity: 1; }
    .header.scrolled .header-menu a {
      color: #181D24; }
      .header.scrolled .header-menu a:hover {
        color: #3C4757; }
    .header.scrolled .header__tel {
      color: #181D24; }
      .header.scrolled .header__tel span {
        border-color: #181D24; }
      .header.scrolled .header__tel:hover {
        color: #3C4757; }
    .header.scrolled .header-lang {
      color: #181D24; }
      .header.scrolled .header-lang p span {
        background: #181D24; }
    .header.scrolled .container {
      background: #fff;
      clip-path: inset(0px 0px 0px calc(100% - 4.5rem)); }
  .header.active {
    pointer-events: auto; }
    .header.active .container {
      clip-path: inset(0px 0px 0px 0px); }

.main {
  height: 100dvh;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none; }
  .main__video {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: -1;
    transition: 1.5s all ease-in-out; }
    .main__video::after {
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      content: '';
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 26.76%, #000 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.17) 0%, rgba(0, 0, 0, 0.17) 100%); }
    .main__video video {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover; }
      .main__video video.mob {
        display: none; }
  .main__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: -2rem;
    display: flex;
    perspective: 800px;
    width: 100%;
    justify-content: center; }
    .main__logo img {
      height: 11rem;
      transition: .8s all; }
      .main__logo img:nth-child(1) {
        transition-delay: 0s; }
      .main__logo img:nth-child(2) {
        transition-delay: 0.1s; }
      .main__logo img:nth-child(3) {
        transition-delay: 0.2s; }
      .main__logo img:nth-child(4) {
        transition-delay: 0.3s; }
      .main__logo img:nth-child(5) {
        transition-delay: 0.4s; }
      .main__logo img:nth-child(6) {
        transition-delay: 0.5s; }
  .main__text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5rem;
    transition: .8s all;
    width: 16.6rem; }
    .main__text img {
      width: 100%;
      display: block; }
  .main.active .main__video {
    opacity: 0;
    visibility: hidden;
    transition-delay: .3s; }
  .main.active .main__logo img {
    transform: rotateY(90deg);
    opacity: 0; }
  .main.active .main__text {
    bottom: -4rem; }
  .main.active .main__bot {
    bottom: -4rem; }

.about {
  padding: 18rem 0 18rem;
  overflow: hidden;
  position: relative;
  z-index: 1; }
  .about.active .about__logo, .about.active .about__text {
    opacity: 1;
    transform: none; }
  .about-patterns img {
    position: absolute;
    display: block;
    z-index: -1; }
    .about-patterns img:first-child {
      bottom: 0;
      left: 0;
      width: 80vw; }
    .about-patterns img:last-child {
      width: 70vw;
      top: 0;
      right: 0; }
  .about .section-title {
    margin-bottom: 3.3rem; }
  .about-main {
    display: flex;
    gap: 8rem; }
  .about-left {
    padding-bottom: 16rem;
    width: calc(50% - 8rem); }
    .about-left .about__img {
      margin-left: calc(100% - 26rem); }
  .about-line {
    margin-top: 7.5rem;
    background: #fff;
    opacity: .4;
    width: 1px; }
  .about-right {
    width: calc(50% - 8rem);
    align-self: center; }
    .about-right .about__img {
      margin-bottom: 12rem; }
  .about__logo {
    width: 16.5rem;
    margin-bottom: 3.3rem;
    transform: translateY(2rem);
    opacity: 0;
    transition: .8s all; }
    .about__logo img {
      width: 100%;
      display: block; }
  .about__text {
    font-size: 1.15rem;
    line-height: 1.4;
    max-width: 36rem;
    transform: translateY(2rem);
    opacity: 0;
    transition: .8s all;
    transition-delay: .4s; }
  .about__img {
    width: 26rem;
    overflow: hidden; }
    .about__img img {
      width: 100%;
      display: block; }
  .about-numbers {
    margin: 2.7rem 0 14rem;
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 500; }
    .about-numbers div {
      line-height: 1;
      font-size: 3.5rem;
      margin-bottom: .5rem;
      transform: scale(15);
      transform-origin: center left;
      transition: 1s all;
      opacity: 0; }
    .about-numbers.active div {
      transform: none;
      opacity: 1; }

.projects {
  padding: 5rem 0 8rem;
  margin-top: -12rem;
  position: relative;
  z-index: 1; }
  .projects-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem; }
  .projects-choose {
    display: flex;
    gap: 2.5rem; }
    .projects-choose li {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      transition: .6s all;
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid transparent; }
      .projects-choose li.active {
        border-color: #fff; }
  .projects-no {
    height: 30rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    position: absolute;
    left: 0;
    width: 100%; }
  .projects-list {
    display: flex;
    flex-direction: column;
    gap: 15rem;
    min-height: 30rem; }
  .projects-item {
    width: 100%; }
  .projects-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 22rem;
    height: 11rem;
    margin-top: -5rem; }
    .projects-logo img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain; }
  .projects-slider__wrap {
    position: relative; }
  .projects-slider__item {
    overflow: hidden;
    height: 100vh;
    transition: .7s transform ease-out;
    position: relative; }
    .projects-slider__item img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover; }
    .projects-slider__item::after {
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      background: rgba(0, 0, 0, 0.25);
      content: ''; }
    .projects-slider__item.active {
      transform: scale(1.2); }
  .projects-wrap {
    position: relative;
    margin-top: -14rem;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end; }
  .projects-left {
    display: flex;
    align-items: flex-end;
    gap: 2.75rem; }
  .projects-main {
    width: 55rem;
    background: #fff;
    display: flex; }
  .projects-info {
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    color: #181D24;
    width: calc(100% - 16.5rem); }
  .projects-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem; }
  .projects__name {
    font-size: 2.15rem;
    line-height: 1.25;
    font-weight: 500;
    max-width: 18rem; }
  .projects__status {
    height: 2rem;
    padding: 0 1.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 9.3rem;
    background: rgba(49, 49, 49, 0.33);
    backdrop-filter: blur(15.3500003815px);
    -webkit-backdrop-filter: blur(15.3500003815px);
    color: #fff;
    font-size: 0.8rem;
    flex-shrink: 0; }
  .projects__text {
    line-height: 1.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    font-size: 0.85rem;
    height: 6rem;
    margin-bottom: 1.2rem; }
  .projects-link {
    text-align: right; }
    .projects-link a {
      height: 2.1rem;
      width: 9.3rem;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      background: #D3AB85;
      color: #fff;
      font-size: .8rem; }
      .projects-link a:hover {
        background: #181D24; }
  .projects-gallery {
    width: 16.5rem; }
    .projects-gallery__item {
      height: 19rem;
      overflow: hidden; }
      .projects-gallery__item img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover; }
  .projects-mobile {
    display: none; }
  .projects-count {
    padding-right: 4rem; }

.soon {
  height: 55rem;
  background: url(../img/soon.jpg) center center no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; }
  .soon__subtitle, .soon__text {
    font-size: 1.25rem; }
  .soon__title {
    font-size: 15rem;
    line-height: 1.1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.1) 60%, rgba(255, 255, 255, 0) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    margin-top: 1rem; }
  .soon__btn {
    margin-top: 3rem; }

.news {
  padding-top: 2.5rem; }
  .news .section-title {
    margin-bottom: 3rem; }
  .news-wrap {
    display: flex;
    align-items: flex-end; }
  .news-img {
    width: 42%; }
    .news-img__item {
      height: 38.5vw;
      position: relative; }
    .news-img__img {
      width: 100%;
      height: 100%;
      position: relative;
      z-index: 1;
      overflow: hidden; }
      .news-img__img::after {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        position: absolute;
        content: '';
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%); }
      .news-img__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover; }
    .news-img__date {
      position: absolute;
      z-index: 2;
      top: 1.5rem;
      left: 1.5rem;
      height: 2rem;
      width: 9.3rem;
      font-size: 1rem;
      background: rgba(49, 49, 49, 0.33);
      backdrop-filter: blur(15.3500003815px);
      display: inline-flex;
      justify-content: center;
      align-items: center; }
  .news-info {
    width: 63%;
    margin-left: -5%; }
  .news-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.8rem;
    padding-right: 6.7rem; }
  .news-info {
    background: #fff;
    color: #181D24;
    position: relative;
    z-index: 2; }
    .news-info__item {
      padding: 2rem 2rem 2rem 3rem; }
    .news-info__title {
      font-size: 2.15rem;
      line-height: 1.2;
      margin-bottom: 1.7rem;
      max-width: 44.5rem;
      font-weight: 500; }
    .news-info__text {
      overflow: hidden;
      text-overflow: ellipsis;
      -webkit-box-orient: vertical;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      line-height: 1.2rem;
      font-size: 0.85rem;
      height: 3.6rem;
      margin-bottom: 1.2rem;
      max-width: 44.5rem; }
      .news-info__text strong {
        font-weight: 500; }
    .news-info__link {
      text-align: right; }
      .news-info__link a {
        color: #181D24;
        border-bottom: 1px solid #181D24; }
        .news-info__link a:hover {
          border-color: transparent; }
  .news-popup {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 6;
    display: none;
    color: #fff; }
    .news-popup__close {
      width: 2.5rem;
      height: 2.5rem;
      position: absolute;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      transition: .6s all;
      cursor: pointer;
      user-select: none;
      background: #3C4757;
      color: #fff;
      top: 0;
      right: 0; }
      .news-popup__close:hover {
        color: #181D24;
        background: #fff; }
    .news-popup__content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: #181D24;
      box-shadow: 0px 0.35rem 0.9rem rgba(167, 167, 167, 0.25);
      width: 70rem;
      max-width: calc(100% - 2rem);
      padding: 1.1rem;
      display: flex;
      gap: 1.1rem;
      max-height: calc(100svh - 5rem);
      overflow: auto;
      line-height: 1.4; }
      .news-popup__content strong {
        font-weight: 500; }
    .news-popup__img {
      width: 45%;
      position: sticky;
      top: 0; }
      .news-popup__img img {
        width: 100%;
        display: block;
        object-fit: cover;
        max-height: 87vh; }
    .news-popup__wrap {
      width: 55%; }
    .news-popup__title {
      font-size: 1.8rem;
      font-weight: 400;
      margin-bottom: 1.5rem;
      padding-right: 2rem; }

.footer {
  padding: 5rem 0 1.5rem; }
  .footer .section-title {
    margin-bottom: 8rem; }
  .footer-wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem; }
  .footer-item__ico {
    border: .1rem solid #fff;
    display: flex;
    width: 1.5rem;
    border-radius: 50%;
    margin-bottom: 1.4rem; }
    .footer-item__ico img {
      width: 100%;
      display: block;
      border-radius: 50%;
      border-radius: 55px;
      background: rgba(255, 255, 255, 0.13);
      box-shadow: 0px 0px 20px 0px rgba(255, 255, 255, 0.3), 0px 0px 5px 0px rgba(255, 255, 255, 0.25), 0px 0px 1px 0px rgba(255, 255, 255, 0.04); }
  .footer-item__text {
    font-size: 1.1rem;
    line-height: 1;
    max-width: 18rem; }
    .footer-item__text > a {
      color: #fff;
      border-bottom: .1rem solid transparent; }
      .footer-item__text > a:hover {
        border-color: #fff; }
  .footer-social {
    display: flex;
    gap: .5rem; }
    .footer-social li {
      display: flex; }
    .footer-social a {
      display: flex;
      width: 1.5rem; }
      .footer-social a:hover {
        opacity: .8; }
      .footer-social a img {
        width: 100%; }
  .footer__map {
    position: relative;
    height: 20rem; }
    .footer__map::after {
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      content: '';
      pointer-events: none; }
    .footer__map #footerMap {
      width: 100%;
      height: 100%; }
  .footer-copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #A4A4A4;
    font-size: 0.9rem;
    padding-top: 1.5rem; }
    .footer-copy a {
      color: #A4A4A4; }
      .footer-copy a:hover {
        color: #fff; }

@media (max-width: 2800.98px) {
  :root {
    font-size: 26px; } }
@media (max-width: 2600.98px) {
  :root {
    font-size: 24px; } }
@media (max-width: 2300.98px) {
  :root {
    font-size: 22px; } }
@media (max-width: 2100.98px) {
  :root {
    font-size: 20px; } }
@media (max-width: 1800.98px) {
  :root {
    font-size: 19px; } }
@media (max-width: 1700.98px) {
  :root {
    font-size: 18px; } }
@media (max-width: 1600.98px) {
  :root {
    font-size: 17px; } }
@media (max-width: 1500.98px) {
  :root {
    font-size: 16px; } }
@media (max-width: 1400.98px) {
  :root {
    font-size: 15px; } }
@media (max-width: 1300.98px) {
  :root {
    font-size: 14px; } }
@media (max-width: 1200.98px) {
  :root {
    font-size: 13px; } }
@media (max-width: 1100.98px) {
  :root {
    font-size: 12px; } }
@media (max-width: 1000.98px) {
  :root {
    font-size: 11px; } }
@media (max-width: 900.98px) {
  :root {
    font-size: 10px; } }
@media (max-width: 767.98px), (max-width: 1080px) and (orientation: portrait) {
  :root {
    font-size: 17px; }

  .container {
    padding: 0 3rem; }

  .mobile-menu {
    display: block; }

  .preloader svg {
    height: 7rem; }

  .header {
    padding: 0;
    background: transparent;
    transition: .6s all; }
    .header-menu, .header-theme, .header-lang, .header__btn {
      display: none; }
    .header .container {
      padding: 1rem 3rem; }
    .header-mobile {
      position: fixed;
      left: 3rem;
      top: .7rem;
      z-index: 7;
      display: flex;
      background: #fff; }
      .header-mobile .header__btn {
        display: flex;
        pointer-events: none;
        position: relative;
        z-index: 5;
        opacity: 1; }
    .header.scrolled {
      pointer-events: auto;
      background: #fff; }
      .header.scrolled .container {
        background: transparent;
        clip-path: inset(0px 0px 0px 0); }

  .main__logo img {
    height: 7rem; }

  .about-main {
    flex-direction: column; }
  .about-left {
    width: 100%;
    padding-bottom: 0; }
    .about-left .about__img {
      margin-left: 0; }
  .about-numbers {
    margin-bottom: 8rem; }
  .about-line {
    width: 100%;
    margin-top: 0;
    height: 1px; }
  .about-right {
    width: 100%;
    display: flex;
    flex-direction: column-reverse; }
    .about-right .about__img {
      margin-bottom: 0;
      margin-top: 4rem; }
  .about__img {
    width: 100%; }

  .projects {
    padding-top: 8rem; }
    .projects-wrap {
      flex-direction: column; }
    .projects-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 3rem; }
    .projects-main {
      width: 90%; }
    .projects-info {
      padding-left: 3rem; }
    .projects-list {
      gap: 7rem; }
    .projects-slider__item {
      height: 55rem; }
    .projects-left {
      flex-direction: column;
      align-items: flex-start; }
    .projects__name {
      font-size: 1.8rem; }
    .projects-arrows {
      padding-left: 3rem; }
    .projects-count {
      padding-right: 3rem;
      margin-bottom: 0;
      margin-top: -2rem; }

  .soon {
    height: 60rem; }
    .soon__title {
      font-size: 10rem; }

  .news {
    padding-bottom: 8rem;
    position: relative; }
    .news-wrap {
      flex-direction: column;
      align-items: flex-start; }
    .news-nav {
      position: absolute;
      bottom: 4rem;
      width: 100%;
      left: 0;
      padding: 0 3rem; }
    .news-img {
      width: 80%; }
      .news-img__item {
        height: 70vw; }
    .news-info {
      width: 90%;
      margin-left: 0;
      align-self: flex-end;
      margin-top: -5rem; }
    .news-popup__content {
      display: block; }
    .news-popup__close {
      transform: none;
      right: 0;
      top: 0;
      width: 3rem;
      height: 3rem; }
    .news-popup__img {
      width: 100%;
      position: static; }
    .news-popup__title {
      padding-right: 0;
      font-size: 1.4rem; }
    .news-popup__wrap {
      width: 100%;
      padding-top: 1rem; }

  .footer-wrap {
    flex-wrap: wrap;
    gap: 2rem 0; }
  .footer-item {
    width: 50%; } }
@media (max-width: 767.98px) {
  :root {
    font-size: 16px; }

  body {
    font-size: 1rem; }

  .container {
    padding: 0 1rem; }

  .section-title {
    padding-left: 1rem;
    margin-left: -1rem;
    font-size: 1.7rem; }

  .arrows {
    gap: 1.5rem; }

  .preloader svg {
    height: 4rem; }

  .feedback-content {
    width: calc(100% - 2rem);
    padding: 2rem 1rem; }

  .mobile-menu .container {
    padding-bottom: 5rem; }
  .mobile-menu__logo {
    width: 5rem; }
  .mobile-menu__list {
    font-size: 2rem; }
  .mobile-menu__empty {
    width: 1.125rem; }

  .header .container {
    padding: .8rem 1rem; }
  .header-mobile {
    left: 1rem;
    top: .5rem; }
  .header__logo {
    width: 5rem; }
  .header__tel div {
    display: none; }
  .header__tel img {
    width: 2rem; }

  .main__logo img {
    height: 4rem; }
  .main__video video.desk {
    display: none; }
  .main__video video.mob {
    display: block; }
  .main__text {
    width: 12rem; }
  .main__bot {
    right: -2rem; }

  .about {
    padding: 15rem 0 5rem; }
    .about-main {
      gap: 5rem; }
    .about-patterns img:first-child {
      display: none; }
    .about-patterns img:last-child {
      width: 140vw; }
    .about__logo {
      width: 10rem; }
    .about__text {
      font-size: 1rem; }
    .about-numbers {
      flex-direction: column;
      font-size: 1.1rem;
      gap: 1.5rem;
      margin-bottom: 5rem; }
      .about-numbers div {
        font-size: 3.5rem; }

  .projects {
    padding: 7rem 0 5rem;
    position: relative;
    margin-top: 0; }
    .projects-top {
      gap: 2.5rem;
      flex-direction: column;
      align-items: flex-start; }
    .projects-mobile {
      display: flex;
      gap: .5rem; }
      .projects-mobile img {
        width: 0.7rem;
        transition: .6s all; }
      .projects-mobile.active img {
        transform: rotate(45deg); }
    .projects-no {
      font-size: 1.7rem;
      height: 20rem; }
    .projects-choose {
      display: none;
      padding: 1.5rem 2.2rem;
      background: #181D24;
      position: absolute;
      z-index: 2;
      top: 13rem;
      width: 100%;
      left: 0; }
      .projects-choose li {
        display: flex;
        justify-content: flex-start;
        margin-bottom: 0.5rem; }
        .projects-choose li:last-child {
          margin-bottom: 0; }
        .projects-choose li.active {
          border: none;
          opacity: .7; }
    .projects-slider__item {
      height: 70vw; }
    .projects-logo {
      margin-top: 0;
      width: 10rem;
      height: 5rem; }
    .projects__text {
      display: block;
      height: auto; }
    .projects-wrap {
      margin-top: 0; }
    .projects-main {
      width: 100%;
      flex-direction: column; }
    .projects-info {
      width: 100%;
      padding: 1.5rem; }
    .projects-gallery {
      display: none; }
    .projects__status {
      padding: 0 1rem;
      height: 1.8rem;
      min-width: 7rem;
      font-size: 0.9rem;
      flex-shrink: 0; }
    .projects__name {
      font-size: 1.6rem;
      max-width: 11rem; }
    .projects-list {
      gap: 5rem;
      min-height: 20rem; }
    .projects-left {
      gap: 1rem; }
    .projects-arrows {
      padding-left: 1rem; }
    .projects__text {
      font-size: 0.9rem; }
    .projects-link a {
      font-size: 0.9rem; }
    .projects-count {
      padding-right: 2rem; }

  .soon {
    height: 40rem; }
    .soon__subtitle, .soon__text {
      font-size: 1.1rem; }
    .soon__title {
      font-size: 5rem; }

  .news-nav {
    padding: 0 1rem; }
  .news-img {
    width: calc(100% - 2rem); }
    .news-img__item {
      height: 85vw; }
    .news-img__date {
      padding: 0 1rem;
      height: 1.8rem;
      width: 7rem;
      font-size: 0.9rem;
      top: 1rem;
      left: 1rem; }
  .news-info {
    width: 90%;
    margin-top: -3rem; }
    .news-info__item {
      padding: 1.5rem; }
    .news-info__title {
      font-size: 1.6rem;
      margin-bottom: 1.5rem; }
    .news-info__text {
      -webkit-line-clamp: 5;
      height: 6rem;
      font-size: 0.8rem; }

  .footer {
    padding-top: 3rem; }
    .footer .section-title {
      margin-bottom: 2rem; }
    .footer__logo {
      width: 8rem; }
    .footer-wrap {
      gap: 1.5rem 0; }
    .footer-item__text {
      font-size: .95rem; }
    .footer-item:nth-child(2) {
      order: 9999;
      width: 100%; }
    .footer-copy span {
      display: none; } }
@media (max-width: 389.98px) {
  :root {
    font-size: 15px; } }
@media (max-width: 375.98px) {
  :root {
    font-size: 14px; } }
@media (max-width: 345.98px) {
  :root {
    font-size: 13px; } }
@media (max-width: 330.98px) {
  :root {
    font-size: 12px; } }
@media (max-width: 320.98px) {
  :root {
    font-size: 11px; } }
@media (max-width: 300.98px) {
  :root {
    font-size: 10px; } }
@media (max-width: 1000px) and (orientation: landscape) {
  :root {
    font-size: 8.5px; } }
@media (max-width: 700px) and (orientation: landscape) {
  :root {
    font-size: 8px; } }

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