@font-face {
  font-family: 'Gilroy';
  src: url("fonts/Gilroy-Regular.eot");
  src: local("Gilroy Regular"), local("Gilroy-Regular"), url("fonts/Gilroy-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Gilroy-Regular.woff2") format("woff2"), url("fonts/Gilroy-Regular.woff") format("woff"), url("fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Gilroy';
  src: url("fonts/Gilroy-Medium.eot");
  src: local("Gilroy Medium"), local("Gilroy-Medium"), url("fonts/Gilroy-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/Gilroy-Medium.woff2") format("woff2"), url("fonts/Gilroy-Medium.woff") format("woff"), url("fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal; }
@font-face {
  font-family: 'Gilroy';
  src: url("fonts/Gilroy-Semibold.eot");
  src: local("Gilroy Semibold"), local("Gilroy-Semibold"), url("fonts/Gilroy-Semibold.eot?#iefix") format("embedded-opentype"), url("fonts/Gilroy-Semibold.woff2") format("woff2"), url("fonts/Gilroy-Semibold.woff") format("woff"), url("fonts/Gilroy-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal; }
@font-face {
  font-family: 'Berold';
  src: url("fonts/Berold.otf");
  src: local("Berold"), url("fonts/Berold.otf") format("opentype");
  font-weight: 400;
  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; }

html {
  scroll-behavior: smooth; }

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

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

::-webkit-scrollbar-thumb {
  background: #4A89C8;
  border: 1px solid #ddd; }

.lazy {
  opacity: 0; }

.disabled {
  pointer-events: none; }

body {
  font-family: 'Gilroy', sans-serif;
  font-size: 0.9rem;
  background: #4A89C8;
  color: #fff; }

.container {
  padding: 0 4rem; }

.btn {
  background: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  color: #4A89C8; }
  .btn:hover {
    background: #fff; }

.section-title {
  font-weight: 500;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: #fff;
  font-family: "Berold"; }

.arrows {
  display: flex;
  align-items: center; }
  .arrows span {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .6s all;
    cursor: pointer;
    user-select: none;
    border-radius: 50%;
    color: #fff; }
    .arrows span svg {
      width: 1rem;
      height: 1rem; }
    .arrows span:hover {
      background: #fff;
      color: #4A89C8; }

.form input {
  height: 3.1rem;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 3rem;
  background: transparent;
  border: 1px solid #ACACAC;
  color: #fff;
  padding: 0 1.7rem;
  background: #4A89C8; }
  .form input:focus {
    border-color: #fff; }
  .form input::placeholder {
    color: #ACACAC; }
.form .btn {
  background: #fff;
  margin-top: 0.5rem;
  height: 3.1rem; }
  .form .btn:hover {
    background: #fff; }

@keyframes preloaderLogo {
  50% {
    opacity: .5; }
  100% {
    opacity: 1;
    transform: none; } }
@keyframes pulse-btn {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); }
  70% {
    box-shadow: 0 0 0 1rem rgba(255, 121, 63, 0); }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 121, 63, 0); } }
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #4A89C8;
  background-size: cover;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center; }
  .preloader__logo {
    width: 18rem;
    animation: preloaderLogo 1.5s linear forwards;
    transform: scale(0.7);
    opacity: 0; }
    .preloader__logo img {
      width: 100%;
      display: block; }

.fixed-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: .6s all;
  cursor: pointer;
  user-select: none;
  position: fixed;
  bottom: 4rem;
  right: 1rem;
  z-index: 5;
  background: #4A89C8;
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
  animation: pulse-btn 2s infinite;
  width: 3.2rem;
  height: 3.2rem; }
  .fixed-btn:hover {
    background: #fff; }
  .fixed-btn img {
    width: 1rem; }

.feedback {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 7;
  background: rgba(0, 0, 0, 0.6);
  display: none; }
  .feedback-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2.1rem;
    border-radius: 1.5rem;
    background: #4A89C8;
    width: 22rem;
    box-shadow: 0px 0.5rem 2rem 0px rgba(0, 0, 0, 0.1); }
  .feedback__close {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -3.5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #4A89C8;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .6s all;
    cursor: pointer;
    user-select: none; }
    .feedback__close:hover {
      background: #fff;
      color: #4A89C8; }
    .feedback__close svg {
      width: .7rem;
      height: 0.7rem; }
  .feedback__title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center; }
  .feedback__text {
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 150%;
    text-align: center; }
  .feedback-form {
    margin: 2rem 0 0.8rem; }
    .feedback-form input {
      width: 100%;
      margin-bottom: 0.8rem; }
    .feedback-form .btn {
      width: 100%;
      height: 3.1rem;
      margin-top: .4rem; }
  .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: 3rem 0 2.5rem;
    text-align: center; }
    .feedback__img img {
      display: inline-block;
      width: 9rem; }

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 70vw;
  z-index: 7;
  padding: 2rem 0;
  background: #4A89C8;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  display: none; }
  .mobile-menu .header-switch {
    display: none; }
  .mobile-menu__close {
    margin-bottom: 10vh;
    width: 1rem; }
    .mobile-menu__close img {
      width: 100%;
      display: block; }
  .mobile-menu__list {
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 10vh; }
    .mobile-menu__list li {
      margin-bottom: 1.8rem; }
      .mobile-menu__list li:last-child {
        margin-bottom: 0; }
    .mobile-menu__list a {
      color: #fff; }
  .mobile-menu .header__btn {
    display: inline-flex;
    margin-bottom: 2rem;
    font-weight: 500; }
  .mobile-menu .footer-social a {
    color: #4A89C8; }
    .mobile-menu .footer-social a:hover {
      color: #fff; }

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 2rem 0;
  z-index: 5;
  font-weight: 500;
  transition: .6s all; }
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .header-mobile {
    display: none; }
  .header-menu {
    display: flex;
    gap: 3.5rem; }
    .header-menu a {
      color: #fff; }
      .header-menu a:hover {
        color: #fff; }
  .header__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15rem;
    display: block; }
    .header__logo img {
      width: 100%;
      display: block; }
  .header-wrap {
    display: flex;
    align-items: center;
    gap: 1.5rem; }
  .header__tel {
    display: inline-flex;
    align-items: center;
    color: #fff;
    gap: .8rem; }
    .header__tel img {
      width: 2.5rem; }
    .header__tel:hover {
      color: #fff; }
  .header__lang {
    color: #fff;
    display: flex;
    align-items: center;
    gap: .25rem;
    height: 2.5rem;
    width: 4.5rem;
    padding: 0.5rem;
    border: 1px solid #fff;
    border-radius: 5rem; }
    .header__lang img {
      width: 1.6rem; }
    .header__lang:hover {
      color: #fff;
      border-color: #fff; }
  .header__btn {
    height: 2.6rem;
    padding: 0 1rem;
    text-transform: uppercase;
    font-size: 0.8rem; }
  .header.header-scrolled {
    padding: 0.8rem 0;
    background: #4A89C8;
    border-bottom: 1px solid #fff; }
    .header.header-scrolled .header__logo {
      width: 11rem; }

.main {
  padding-top: 6rem; }
  .main .container {
    display: flex;
    padding-right: 0; }
  .main-content {
    padding-top: 6rem;
    width: 35rem;
    position: relative;
    z-index: 1; }
  .main__title {
    margin-bottom: .5rem;
    font-weight: 400;
    font-size: 5rem;
    line-height: 1.2;
    font-family: "Berold"; }
  .main__text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem; }
  .main__btn {
    font-size: 0.8rem;
    min-width: 13rem;
    padding: 0 1rem;
    height: 3.1rem; }
  .main__img {
    width: calc(100% - 26rem);
    margin-left: -9rem;
    pointer-events: none; }
    .main__img img {
      width: 100%;
      display: block; }

.about {
  padding-top: 5rem;
  margin-top: -1rem; }
  .about-wrap {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem; }
  .about-info {
    width: 50%; }
    .about-info .about__img {
      width: 100%;
      height: 24.5rem; }
  .about-numbers {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-weight: 500; }
    .about-numbers li {
      width: calc(50% - .75rem);
      display: flex;
      align-items: flex-end;
      gap: .75rem; }
      .about-numbers li div {
        text-transform: uppercase;
        font-size: 3rem;
        flex-shrink: 0; }
        .about-numbers li div span {
          font-size: 2rem; }
      .about-numbers li p {
        padding-bottom: 0.5rem;
        max-width: 6.5rem; }
  .about__img {
    width: 50%;
    height: 42rem;
    overflow: hidden;
    border-radius: 1.5rem; }
    .about__img img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: .6s all; }
      .about__img img:hover {
        transform: scale(1.05); }

.build {
  padding-top: 7rem; }
  .build-wrap {
    display: flex;
    gap: 1.5rem; }
  .build-list {
    width: 41.5%; }
  .build-item {
    margin-bottom: 1rem;
    display: flex;
    border-radius: 1.5rem;
    background: #fff;
    justify-content: space-between;
    transition: .6s all;
    overflow: hidden;
    height: 11rem;
    color: #000; }
    .build-item:hover {
      background: #D3ECF8; }
    .build-item__text {
      padding: 2rem;
      font-weight: 500;
      text-transform: uppercase;
      max-width: 17rem;
      font-weight: 600; }
    .build-item__img {
      flex-shrink: 0; }
      .build-item__img img {
        width: 100%;
        display: block; }
    .build-item__list {
      margin: 1rem 3.8rem 0 -4rem;
      width: calc(100% - 6rem); }
      .build-item__list li {
        padding-bottom: 0.4rem;
        border-bottom: 2px solid #000;
        text-align: right;
        margin-bottom: 0.4rem;
        position: relative; }
        .build-item__list li::after {
          position: absolute;
          bottom: -.25rem;
          left: -.25rem;
          width: 0.5rem;
          height: 0.5rem;
          border-radius: 50%;
          background: #000;
          content: ''; }
        .build-item__list li:nth-child(2) {
          margin-bottom: 2rem;
          margin-left: 1rem; }
        .build-item__list li:nth-child(3) {
          margin-left: 2rem; }
    .build-item:nth-child(1) .build-item__img {
      width: 10.5rem;
      margin-right: 2.1rem; }
    .build-item:nth-child(2) .build-item__img {
      width: 17.7rem; }
    .build-item:nth-child(3) {
      margin-bottom: 0; }
      .build-item:nth-child(3) .build-item__img {
        width: 10.7rem;
        margin-left: 0.6rem;
        margin-top: 0.45rem; }
  .build__img {
    border-radius: 1.5rem;
    overflow: hidden;
    width: 58.5%; }
    .build__img img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: .6s all; }
      .build__img img:hover {
        transform: scale(1.05); }

.advantages {
  padding: 5rem 0 2rem; }
  .advantages .container {
    padding-right: 0; }
  .advantages-wrap {
    display: flex; }
  .advantages-left {
    width: 41%; }
  .advantages-slider__item {
    height: 26.5rem;
    border-radius: 1.5rem;
    overflow: hidden; }
    .advantages-slider__item img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover; }
  .advantages-list .owl-stage-outer {
    padding-left: 1.5rem; }
  .advantages-item {
    margin-right: 1.5rem;
    width: 21rem;
    height: 26.5rem;
    border-radius: 1.5rem;
    background: #fff;
    color: #000;
    padding: 1rem;
    overflow: hidden;
    font-size: 1rem;
    transition: 1s all; }
    .advantages-item__number {
      margin-bottom: 5rem; }
    .advantages-item__name {
      font-size: 1.75rem;
      font-weight: 500;
      margin-bottom: 1.5rem; }
    .advantages-item__text {
      color: #5D5D5D;
      transition: 1s all; }
    .advantages-item.active {
      background: #D3ECF8; }
  .advantages-right {
    width: 59%; }
  .advantages-arrows {
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-right: 4rem; }

.developer {
  background: #fff;
  color: #000;
  padding: 3.7rem 0 5rem;
  position: relative;
  z-index: 1; }
  .developer .container {
    display: flex;
    align-items: center;
    gap: 4.5rem; }
  .developer-images {
    width: 58%;
    display: flex;
    align-items: flex-start; }
    .developer-images img {
      width: 60%;
      border-radius: 1.5rem; }
      .developer-images img:first-child {
        position: relative;
        z-index: 1;
        transform: translateY(5rem); }
      .developer-images img:last-child {
        margin-left: -20%; }
  .developer-info {
    width: 42%; }
  .developer .section-title {
    color: #000;
    margin-bottom: 1rem; }
  .developer__text {
    padding-right: 4rem;
    line-height: 1.5;
    font-size: 0.8rem; }

.plans {
  padding-top: 5rem;
  background: #fff; }
  .plans .section-title {
    color: #000;
    margin-bottom: 3rem; }
  .plans-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem; }
  .plans-main {
    position: relative; }
  .plans-list {
    display: flex;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #F3D395;
    height: 2rem;
    font-size: 0.8rem;
    border-radius: 2rem; }
    .plans-list li {
      color: #F3D395;
      height: 100%;
      width: 16rem;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      transition: .6s all;
      cursor: pointer;
      user-select: none; }
      .plans-list li:hover {
        background: #F3D395;
        color: #fff; }
      .plans-list li.active {
        pointer-events: none;
        background: #F3D395;
        color: #fff; }
  .plans-item {
    padding: 0 7.5rem;
    display: flex;
    justify-content: center;
    align-items: center; }
    .plans-item__img {
      height: 34rem;
      width: 100%; }
      .plans-item__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain; }
      .plans-item__img:hover + .plans-item__zoom {
        opacity: 1; }
    .plans-item__zoom {
      position: absolute;
      z-index: 2;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      transition: .6s all;
      cursor: pointer;
      user-select: none;
      background: #fff;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      opacity: 0;
      border: 1px solid transparent; }
      .plans-item__zoom:hover {
        background: #fff;
        opacity: 1;
        border-color: #4A89C8; }
      .plans-item__zoom img {
        width: 0.9rem !important; }
  .plans-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 4rem;
    width: 100%;
    pointer-events: none;
    z-index: 2;
    display: flex;
    justify-content: space-between; }
    .plans-arrows span {
      pointer-events: auto;
      color: #4A89C8;
      border-color: #4A89C8; }
      .plans-arrows span:hover {
        color: #fff;
        background: #4A89C8; }
  .plans-zoom {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 7;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    cursor: pointer; }
    .plans-zoom__img {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      padding: 3rem;
      height: calc(100svh - 6rem);
      width: 65vw;
      background: #fff;
      cursor: default; }
      .plans-zoom__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain; }

.consult {
  padding: 5rem 0;
  background: #fff;
  position: relative; }
  .consult::after {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    pointer-events: none;
    content: '';
    background: url(../img/patterns/consult.png) center left no-repeat;
    background-size: 45vw 26rem; }
  .consult .container {
    display: flex;
    gap: 1.5rem; }
  .consult-main {
    width: 48%;
    border-radius: 3rem;
    background: #4A89C8;
    color: #fff;
    padding: 4rem; }
  .consult-wrap {
    max-width: 26rem; }
  .consult .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #fff; }
  .consult__text {
    font-size: 1rem;
    margin-bottom: 1.5rem; }
  .consult__img {
    width: 52%;
    border-radius: 3rem;
    overflow: hidden; }
    .consult__img img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover; }
  .consult-form {
    max-width: 23.5rem;
    position: relative;
    z-index: 2; }
    .consult-form .btn {
      width: 8rem;
      margin-bottom: 1rem; }
  .consult__policy {
    font-size: 0.8rem; }

.footer {
  background: #fff; }
  .footer-main {
    color: #fff;
    padding: 4rem 0 2.7rem;
    border-radius: 3rem;
    background: #4A89C8 url(../img/patterns/footer.png) bottom center no-repeat;
    background-size: 100%; }
  .footer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4.5rem;
    gap: 1.5rem; }
  .footer .section-title {
    color: #fff;
    margin-bottom: 0;
    flex-shrink: 0; }
  .footer-info {
    font-size: 1rem;
    line-height: 1.5; }
    .footer-info a {
      color: #fff;
      font-weight: 600; }
      .footer-info a:hover {
        color: #fff; }
  .footer-map {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    height: 22.2rem;
    margin-bottom: 2.5rem;
    position: relative; }
    .footer-map #footerMap {
      width: 100%;
      height: 100%; }
  .footer__btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1.5rem;
    height: 3.1rem;
    width: 13rem;
    font-size: 0.8rem;
    border: 1px solid #fff; }
    .footer__btn:hover {
      border-color: #4A89C8; }
  .footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; }
  .footer-text {
    max-width: 37rem;
    font-size: 0.8rem;
    line-height: 1.5; }
    .footer-text p {
      margin-bottom: 1.5rem; }
      .footer-text p:last-child {
        margin-bottom: 0; }
  .footer-social {
    display: flex;
    gap: 3rem;
    padding-top: 0.75rem; }
    .footer-social li {
      display: inline-flex; }
    .footer-social a {
      display: inline-flex;
      align-items: center;
      color: #4A89C8;
      font-size: 1.2rem;
      gap: 1.25rem; }
      .footer-social a span {
        color: #fff; }
      .footer-social a:hover {
        color: #D3ECF8; }
      .footer-social a svg {
        width: 2.75rem;
        height: 2.75rem; }
  .footer-copy {
    padding: 1.4rem 0;
    font-size: 0.8rem;
    color: #4A89C8; }
    .footer-copy .container {
      display: flex;
      justify-content: space-between;
      align-items: center; }
    .footer-copy a {
      color: #4A89C8; }
      .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; }

  .header {
    padding: 1.5rem 0; }
    .header-menu, .header__btn {
      display: none; }
    .header__tel span {
      display: none; }
    .header-mobile {
      display: flex;
      width: 2.5rem; }
      .header-mobile img {
        width: 100%;
        display: block; }
    .header__logo {
      width: 13rem; }

  .main .container {
    flex-direction: column;
    gap: 1.5rem; }
  .main-content {
    padding-top: 3rem; }
  .main__img {
    align-self: flex-end;
    width: 80%; }

  .about-wrap {
    flex-direction: column; }
  .about-info {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    gap: 1.5rem; }
  .about-numbers {
    margin-bottom: 0; }
  .about__img {
    width: 100%; }

  .build {
    padding-top: 5rem; }
    .build-wrap {
      flex-direction: column; }
    .build-list {
      width: 100%; }
    .build__img {
      width: 100%; }

  .advantages .container {
    padding-right: 3rem; }
  .advantages-left {
    width: 50%; }
  .advantages-right {
    width: 50%; }
  .advantages-item {
    width: calc(50vw - 4.75rem); }
  .advantages-arrows {
    padding-right: 0; }

  .developer .container {
    gap: 3rem;
    flex-direction: column-reverse; }
  .developer-info {
    width: 100%; }
  .developer-images {
    width: 100%; }
  .developer__text {
    padding-right: 0;
    max-width: 30rem; }

  .plans-item {
    padding: 0 6.5rem; }
    .plans-item__img {
      height: 25rem; }
  .plans-arrows {
    padding: 0 3rem; }
  .plans-zoom__img {
    padding: 1.5rem;
    width: calc(100% - 6rem);
    height: 70vh; }

  .consult .container {
    flex-direction: column; }
  .consult-main, .consult__img {
    width: 100%; }

  .footer-head {
    margin-bottom: 2.5rem;
    padding-right: 0;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start; }
  .footer-wrap {
    flex-direction: column;
    gap: 2rem; } }
@media (max-width: 767.98px) {
  :root {
    font-size: 16px; }

  .container {
    padding: 0 1rem; }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem; }

  .fixed-btn {
    right: 0.5rem;
    width: 2.5rem;
    height: 2.5rem; }
    .fixed-btn img {
      width: .8rem; }

  .preloader__logo {
    width: 14rem; }

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

  .mobile-menu {
    width: 20rem; }
    .mobile-menu .container {
      padding-bottom: 2rem; }
    .mobile-menu__logo {
      width: 6rem; }
    .mobile-menu__close img {
      width: 2.2rem; }
    .mobile-menu__tel {
      margin-left: 0.7rem; }
    .mobile-menu__list {
      font-size: 1rem; }
      .mobile-menu__list li {
        margin-bottom: 1.5rem; }
    .mobile-menu__novas {
      font-size: 1rem; }
    .mobile-menu .footer-social {
      flex-direction: row; }
      .mobile-menu .footer-social li a span {
        display: none; }

  .header__logo {
    width: 10rem;
    position: static;
    transform: none; }
  .header__btn {
    font-size: 0.9rem;
    padding: 0 1rem; }
  .header.header-scrolled {
    padding: 0.5rem 0; }
    .header.header-scrolled .header__logo {
      width: 8rem; }
  .header__lang {
    width: 2.5rem; }
    .header__lang span {
      display: none; }
  .header-wrap {
    gap: .5rem; }

  .main-content {
    padding-right: 1rem;
    width: 100%; }
  .main__title {
    font-size: 4rem; }
  .main__text {
    font-size: 1.1rem;
    margin-bottom: 1.8rem; }
  .main__btn {
    font-size: 0.9rem; }
  .main__img {
    margin-left: -4rem;
    width: calc(100% + 4rem); }

  .about {
    margin-top: -2rem; }
    .about-info .about__img {
      height: 17rem; }
    .about-numbers {
      justify-content: center;
      gap: 1.5rem 2.5rem; }
      .about-numbers li {
        flex-direction: column;
        align-items: center;
        font-size: 1rem;
        width: auto;
        gap: .2rem; }
        .about-numbers li:nth-child(2) {
          order: 9999; }
        .about-numbers li div {
          font-size: 2.4rem; }
          .about-numbers li div span {
            font-size: 1.5rem; }
        .about-numbers li p {
          padding-bottom: 0; }
    .about__img {
      height: 25rem; }

  .build {
    padding-top: 4rem; }
    .build-item {
      height: 10rem; }
      .build-item__text {
        padding: 1rem; }
      .build-item__list {
        margin: .5rem 1rem 0 -3rem;
        width: calc(100% - 6rem); }
        .build-item__list li {
          padding-bottom: 0.3rem;
          border-bottom: 1px solid #4A89C8;
          margin-bottom: 0.5rem; }
          .build-item__list li::after {
            bottom: -.2rem;
            left: -.2rem;
            width: 0.4rem;
            height: 0.4rem; }
          .build-item__list li:nth-child(2) {
            margin-bottom: 1.5rem;
            margin-left: .5rem; }
          .build-item__list li:nth-child(3) {
            margin-left: 1rem; }
      .build-item:nth-child(1) .build-item__img {
        width: 8rem;
        margin-right: .5rem;
        margin-top: 1rem; }
      .build-item:nth-child(2) .build-item__img {
        width: 12rem; }
      .build-item:nth-child(3) {
        margin-bottom: 0; }
        .build-item:nth-child(3) .build-item__img {
          width: 9rem;
          margin-left: 0; }
    .build__img {
      height: 20rem; }

  .advantages {
    padding-top: 4rem; }
    .advantages .container {
      padding-right: 1rem; }
    .advantages-wrap {
      flex-direction: column;
      gap: 1rem; }
    .advantages-left, .advantages-right {
      width: 100%; }
    .advantages-slider__item {
      height: 19rem; }
    .advantages-list .owl-stage-outer {
      padding-left: 0; }
    .advantages-item {
      width: calc(100vw - 2rem);
      margin-right: 10px;
      height: 17rem;
      font-size: 0.9rem; }
      .advantages-item__number {
        margin-bottom: 1rem; }
      .advantages-item__name {
        font-size: 1.4rem;
        margin-bottom: .5rem; }

  .developer {
    padding-bottom: 3rem; }
    .developer__text {
      font-size: 0.9rem; }
    .developer-images img {
      width: 85%; }
      .developer-images img:first-child {
        transform: translateY(3rem); }
      .developer-images img:last-child {
        margin-left: -70%; }

  .plans {
    margin-top: -1rem; }
    .plans .section-title {
      margin-bottom: 1.5rem; }
    .plans-wrap {
      margin-left: -1rem;
      width: calc(100% + 2rem);
      overflow: auto;
      justify-content: flex-start;
      padding: 0 1rem;
      margin-bottom: 1rem; }
      .plans-wrap::-webkit-scrollbar {
        display: none; }
    .plans-list {
      flex-shrink: 0; }
      .plans-list li {
        width: calc(50vw - 1rem); }
    .plans-item {
      padding: 0 2.25rem; }
      .plans-item__img {
        width: 100%;
        height: 18rem; }
    .plans-arrows {
      padding: 0 1rem; }
    .plans-zoom__img {
      width: calc(100% - 2rem);
      padding: 1rem;
      height: 55vh; }

  .consult {
    padding: 3rem 0; }
    .consult-main {
      border-radius: 1.5rem;
      padding: 2rem 1rem; }
    .consult .section-title {
      font-size: 1.5rem;
      margin-bottom: 1rem; }
    .consult__img {
      border-radius: 1.5rem; }

  .footer-main {
    padding: 2.5rem 0 2rem;
    border-radius: 1.7rem;
    background-size: 60rem; }
  .footer-head {
    gap: 1.5rem; }
  .footer-wrap {
    gap: 1.5rem; }
  .footer__btn {
    bottom: 2rem;
    font-size: 0.9rem; }
  .footer-social {
    gap: 1.5rem; }
    .footer-social li {
      font-size: 1rem; }
    .footer-social a span {
      display: none; }
  .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 */
