@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; }
: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: #C52C3C;
  border: 1px solid #ddd; }

.lazy {
  opacity: 0; }

.disabled {
  pointer-events: none; }

body {
  font-family: 'Gilroy', sans-serif;
  font-size: 1rem;
  color: #151B31; }

.container {
  padding: 0 10rem; }

.section-title {
  font-size: 4rem;
  color: #C52C3C;
  font-weight: 500; }

.section-text {
  line-height: 1.4; }
  .section-text p {
    margin-bottom: 1.5rem; }
    .section-text p:last-child {
      margin-bottom: 0; }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 12rem;
  height: 3.1rem;
  border-radius: 2rem;
  background: #C52C3C;
  color: #fff;
  font-weight: 500;
  font-size: 0.8rem; }
  .btn:hover {
    background: #151B31; }

.blue-bg {
  background: #151B31;
  color: #fff; }
  .blue-bg .section-title {
    color: #fff; }

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

@keyframes scale {
  50% {
    transform: scale(1.1); } }
@keyframes preloaderLogo {
  50% {
    opacity: .5; }
  100% {
    opacity: 1;
    transform: none; } }
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #151B31;
  background-size: cover;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center; }
  .preloader__logo {
    width: 20rem;
    animation: preloaderLogo 1.5s linear forwards;
    transform: scale(0.7);
    opacity: 0; }
    .preloader__logo img {
      width: 100%;
      display: block; }

.menu {
  background: #151B31;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 7;
  padding: 2rem 0 2.6rem;
  transition: 1s transform ease-in-out;
  transform: translateX(-100%); }
  .menu__bg {
    position: absolute;
    right: 0;
    z-index: 2;
    top: 0;
    height: 100%;
    width: 62%; }
    .menu__bg img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover; }
  .menu .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
  .menu .header-lang {
    display: none; }
  .menu-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 3;
    font-size: 0.8rem; }
  .menu-list li {
    height: 4.5rem;
    display: flex;
    align-items: center;
    position: relative; }
  .menu-list a {
    font-size: 1.2rem;
    color: #fff;
    transition: .7s all; }
    .menu-list a::after {
      position: absolute;
      pointer-events: none;
      width: 11rem;
      transition: .7s all;
      height: 1px;
      background: #fff;
      content: '';
      left: 0;
      bottom: 0; }
    .menu-list a:hover {
      color: #C52C3C;
      font-weight: 500;
      font-size: 2.5rem; }
      .menu-list a:hover::after {
        background: #C52C3C;
        width: 30rem; }
  .menu__close {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .6s all;
    cursor: pointer;
    user-select: none;
    color: #C52C3C;
    border: 1px solid #C52C3C;
    border-radius: 50%; }
    .menu__close:hover {
      background: #C52C3C;
      color: #fff; }
    .menu__close svg {
      width: 0.7rem;
      height: 0.7rem; }
  .menu-btn {
    position: absolute;
    bottom: 3rem;
    right: 0;
    pointer-events: none;
    z-index: 3; }
    .menu-btn .btn {
      pointer-events: auto; }
  .menu.active {
    transform: none; }

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

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 6;
  padding: 2.2rem 0;
  transition: .6s all;
  font-size: 0.8rem; }
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .header-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem; }
  .header__menu {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .6s all;
    cursor: pointer;
    user-select: none;
    border-radius: 2.5rem;
    height: 2.5rem;
    width: 4.5rem;
    background: #C52C3C;
    border: 1px solid #C52C3C; }
    .header__menu img {
      width: 1.6rem; }
    .header__menu:hover {
      background: transparent; }
  .header__choose {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 2.5rem;
    height: 2.5rem;
    width: 9.5rem;
    border: 1px solid #C52C3C;
    color: #fff; }
    .header__choose:hover {
      background: #C52C3C; }
  .header__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9.5rem;
    transition: .6s all;
    cursor: pointer; }
    .header__logo img {
      width: 100%;
      display: block; }
  .header-lang__btn {
    width: 4.5rem;
    height: 2.5rem;
    border-radius: 2.5rem;
    background: #C52C3C;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    gap: .5rem;
    color: #fff;
    padding: 0.3rem;
    cursor: default; }
    .header-lang__btn img {
      width: 1.9rem; }
  .header-lang__list {
    position: absolute;
    width: 4.5rem;
    padding: 0.3rem;
    border-radius: 1rem;
    background: #C52C3C;
    display: none; }
    .header-lang__list.active {
      display: block; }
    .header-lang__list a {
      display: flex;
      align-items: center;
      gap: .5rem;
      color: #fff;
      margin-bottom: 0.3rem; }
      .header-lang__list a:last-child {
        margin-bottom: 0; }
      .header-lang__list a img {
        width: 1.9rem; }
  .header__btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 2.5rem;
    height: 2.5rem;
    width: 15rem;
    border: 1px solid #fff;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500; }
    .header__btn img {
      display: none; }
    .header__btn:hover {
      background: #C52C3C;
      border-color: #C52C3C; }
  .header.scrolled {
    padding: .75rem 0;
    background: #151B31;
    border-bottom: 1px solid #C52C3C; }
    .header.scrolled .header__logo {
      width: 6rem; }

.main {
  height: 100vh;
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 1.5rem 0; }
  .main__bg {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: -1;
    content: '';
    overflow: hidden; }
    .main__bg img {
      animation: scale 40s linear infinite;
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover; }
  .main .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem; }
  .main .section-title {
    max-width: 40rem;
    margin-bottom: 1.5rem;
    color: #fff; }
  .main-info {
    width: 26rem;
    flex-shrink: 0;
    align-self: flex-end; }
    .main-info__card {
      width: 100%;
      height: 13.5rem;
      border-radius: 1rem;
      padding: 1.5rem;
      background: #151B31 url(../img/main/card.jpg) center center no-repeat;
      background-size: cover;
      font-size: 1.4rem; }
      .main-info__card p {
        max-width: 14rem; }
    .main-info__list {
      display: flex; }
      .main-info__list li {
        flex-shrink: 0;
        width: 10rem;
        height: 10rem;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 2rem;
        font-weight: 500;
        font-size: 1.2rem;
        position: relative; }
        .main-info__list li:nth-child(1) {
          background: #C52C3C;
          border-radius: 0 5rem;
          z-index: 2; }
        .main-info__list li:nth-child(2) {
          background: #fff;
          color: #151B31;
          border-radius: 5rem;
          margin-left: -1.5rem;
          z-index: 1; }
        .main-info__list li:nth-child(3) {
          background: #27208F;
          border-radius: 5rem 0;
          margin-left: -2.5rem;
          padding-right: 1rem;
          padding-left: 3rem; }

.about {
  padding: 5rem 0;
  background: #151B31 url(../img/pattern-left.png) top left no-repeat;
  background-size: contain; }
  .about .container {
    display: flex;
    align-items: flex-end;
    gap: 2rem; }
  .about-wrap {
    width: 41.5%; }
  .about .section-title {
    margin-bottom: 3rem; }
  .about-numbers {
    margin-top: 3.3rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap; }
    .about-numbers li {
      width: calc(50% - .5rem);
      background: #233061;
      border-radius: 1.5rem;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      flex-direction: column;
      height: 9rem; }
      .about-numbers li div {
        font-size: 4rem; }
        .about-numbers li div span {
          font-size: 0.9rem; }
      .about-numbers li p {
        max-width: 7rem; }
  .about__img {
    width: 58.5%;
    height: 33.5rem;
    border-radius: 1.5rem;
    overflow: hidden; }
    .about__img img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover; }

.location-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem; }
.location .section-text {
  max-width: 22.5rem; }
.location-map {
  position: relative;
  height: 28rem; }
  .location-map__img {
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
    overflow: hidden; }
    .location-map__img img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover; }
  .location-map__btn {
    position: absolute;
    z-index: 2;
    bottom: 1.5rem;
    right: 1.5rem; }

.consult {
  padding: 5rem 12rem 0;
  position: relative; }
  .consult__box {
    position: absolute;
    left: 0;
    width: 12rem;
    margin-top: 3rem;
    z-index: 2; }
    .consult__box img {
      width: 100%;
      display: block; }
  .consult__title {
    text-align: center;
    font-weight: 500;
    margin-bottom: 3rem;
    font-size: 2.5rem; }
  .consult-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 3rem;
    font-size: 0.95rem; }
    .consult-form > input {
      width: calc(38% - 2rem);
      border: none;
      background: transparent;
      border-bottom: 1px solid #BFBFBF;
      padding-bottom: 1rem;
      color: #fff; }
      .consult-form > input:focus {
        border-color: #C52C3C;
        color: #C52C3C; }
      .consult-form > input::placeholder {
        color: #fff; }
    .consult-form button {
      width: calc(24% - 2rem);
      display: flex;
      align-items: center;
      gap: 1.4rem; }
      .consult-form button:hover {
        color: #C52C3C; }
        .consult-form button:hover span {
          background: #C52C3C; }
      .consult-form button span {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 50%;
        border: 1px solid #C52C3C;
        transition: .6s all;
        flex-shrink: 0; }
        .consult-form button span img {
          width: 0.6rem; }
    .consult-form label {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      transition: .6s all;
      cursor: pointer;
      user-select: none;
      gap: .5rem;
      font-size: 0.8rem; }
      .consult-form label input {
        border: 1px solid #C52C3C;
        background: transparent;
        appearance: none;
        flex-shrink: 0;
        width: 1.2rem;
        height: 1.2rem;
        border-radius: 50%;
        transition: .6s all; }
        .consult-form label input:checked {
          background: #C52C3C; }
          .consult-form label input:checked + span {
            color: #fff; }
      .consult-form label span {
        transition: .6s all;
        color: #ccc; }
  .consult-commerce .consult-form > input {
    color: #151B31; }
    .consult-commerce .consult-form > input::placeholder {
      color: #151B31; }
    .consult-commerce .consult-form > input:focus {
      color: #C52C3C; }
  .consult-commerce .consult-form button img {
    filter: invert(1);
    transition: .6s all; }
  .consult-commerce .consult-form button:hover img {
    filter: none; }
  .consult-commerce .consult-form label input:checked + span {
    color: #151B31; }

.advantages {
  padding: 5rem 0 7rem;
  background: #151B31 url(../img/pattern-right.png) bottom right no-repeat;
  background-size: contain; }
  .advantages-wrap {
    margin-top: -2rem;
    display: flex;
    align-items: flex-start; }
  .advantages-list {
    padding-top: 6rem;
    margin-right: -1rem; }
    .advantages-list li {
      height: 7rem;
      display: flex;
      align-items: center;
      font-size: 0.9rem;
      transition: .6s all;
      border-bottom: 1px solid #72757f; }
      .advantages-list li div {
        width: 48%;
        transition: .6s all;
        font-size: 1.2rem; }
      .advantages-list li p {
        width: 52%;
        padding-right: 2rem; }
      .advantages-list li.active {
        color: #C52C3C;
        border-color: #fff; }
        .advantages-list li.active div {
          font-size: 1.4rem; }
  .advantages-images {
    width: 26rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    background: #151B31;
    height: 20rem;
    border-radius: 10rem;
    overflow: hidden;
    transition: .8s transform; }
    .advantages-images__img {
      position: absolute;
      width: 100%;
      height: 100%;
      transition: .6s all;
      opacity: 0; }
      .advantages-images__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover; }
      .advantages-images__img.active {
        opacity: 1; }
  .advantages-arrows {
    display: none; }

.hall {
  margin-top: -2rem;
  padding-bottom: 4rem;
  overflow: hidden;
  position: relative; }
  .hall .section-title {
    max-width: 23rem;
    margin: 0 auto;
    margin-bottom: 5rem; }
  .hall-main {
    display: flex; }
  .hall-col {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start; }
    .hall-col:first-child {
      width: 52%; }
    .hall-col:last-child {
      width: 48%; }
  .hall-item {
    border-radius: 6.9rem 0;
    background: #C52C3C;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.25;
    transition: 2s all;
    opacity: 0; }
    .hall-item img {
      width: 2.25rem;
      margin-bottom: 1rem; }
    .hall-item-1 {
      width: 18rem;
      padding: 3rem 1.5rem 2rem;
      position: absolute;
      margin-top: -10rem;
      margin-left: 5rem;
      height: 17rem;
      transform: translate(50%, -50%);
      z-index: 2; }
    .hall-item-2 {
      padding: 5rem 2.5rem 3.15rem;
      width: 54%;
      height: 21.5rem;
      transform: translate(50%, -50%); }
    .hall-item-3 {
      width: 60%;
      margin-left: -14%;
      padding: 2.5rem 3.5rem 1.3rem;
      height: 14.5rem;
      transform: translate(-50%, 50%); }
    .hall-item.active {
      opacity: 1;
      transform: none; }
  .hall__img {
    overflow: hidden;
    transition: 2s all;
    opacity: 0; }
    .hall__img img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover; }
    .hall__img-1 {
      border-radius: 7rem 0;
      width: 36%;
      margin-top: 7rem;
      height: 33.5rem;
      transform: translate(-50%, 50%); }
    .hall__img-2 {
      border-radius: 0 10rem;
      width: 64%;
      height: 36rem;
      transform: translate(50%, -50%); }
    .hall__img-3 {
      border-radius: 0 7.5rem;
      width: 46%;
      height: 21.5rem;
      transform: translate(-50%, -50%); }
    .hall__img-4 {
      border-radius: 0 10rem;
      width: 54%;
      height: 20.5rem;
      transform: translate(50%, 50%); }
    .hall__img.active {
      opacity: 1;
      transform: none; }
  .hall__pattern {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 8rem;
    width: 20rem; }
    .hall__pattern img {
      width: 100%;
      display: block; }

.plans {
  padding-top: 5rem; }
  .plans .section-title {
    margin-bottom: 2rem; }
  .plans__img {
    padding: 0 5rem;
    height: 24rem;
    margin-bottom: 2.5rem; }
    .plans__img img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
      max-width: 58rem;
      margin: 0 auto; }
  .plans .owl-stage-outer {
    padding-bottom: 5rem; }
  .plans-item {
    height: 8rem;
    border-radius: 1.5rem;
    padding: 1rem;
    background: #fff;
    box-shadow: 0px 1.5rem 1rem 0px rgba(107, 107, 107, 0.2);
    transition: .6s all;
    cursor: pointer; }
    .plans-item img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain; }
    .plans-item.active {
      background: #C52C3C; }
  .plans-arrows {
    position: relative;
    z-index: 2;
    margin-top: -3rem;
    justify-content: flex-end; }

.commerce {
  padding-top: 2rem;
  background: url(../img/pattern-left.png) left 2rem no-repeat;
  background-size: 30rem;
  font-size: 0.9rem; }
  .commerce-main {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 2rem; }
  .commerce-left {
    width: 30%; }
    .commerce-left .commerce-item__list {
      padding-right: 1rem; }
  .commerce .section-title {
    font-size: 3.25rem;
    margin-bottom: 2rem; }
  .commerce-item__title {
    font-weight: 500;
    margin-bottom: 1.2rem; }
  .commerce-item__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem 0; }
    .commerce-item__list li {
      display: flex;
      gap: 1.3rem;
      align-items: flex-end; }
      .commerce-item__list li p {
        font-size: 2.95rem;
        line-height: 1;
        color: #C52C3C;
        letter-spacing: -.05em;
        margin-bottom: -0.5rem; }
        .commerce-item__list li p span {
          font-size: 1.5rem; }
  .commerce-images {
    width: 35%;
    display: flex;
    padding-top: 4rem; }
    .commerce-images img {
      width: 50%;
      height: 33rem;
      transition: .8s transform; }
      .commerce-images img:first-child {
        border-bottom-left-radius: 7.5rem; }
      .commerce-images img:last-child {
        border-top-right-radius: 7.5rem; }
    .commerce-images.active img:first-child {
      transform: translateY(2rem); }
    .commerce-images.active img:last-child {
      transform: translateY(-2rem); }
  .commerce-right {
    width: 35%;
    align-self: flex-end;
    padding-bottom: 3rem; }

.func {
  padding-top: 5rem; }
  .func .section-title {
    max-width: 45rem;
    margin-bottom: 3.5rem; }
  .func-wrap {
    display: flex;
    gap: 1.5rem; }
  .func-item {
    width: calc(33.3333% - 1rem);
    height: 35rem;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    color: #fff;
    background: #C52C3C; }
    .func-item:nth-child(2) {
      display: block; }
      .func-item:nth-child(2) .func-item__img {
        position: static;
        height: 19.3rem;
        border-radius: 1.5rem;
        overflow: hidden; }
    .func-item__img {
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      z-index: -1; }
      .func-item__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover; }
    .func-item__info {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      height: 15.5rem;
      justify-content: space-between; }
    .func-item__text {
      line-height: 1.2;
      margin-bottom: 1.7rem; }
    .func-item__advice {
      font-size: 0.9rem; }
    .func-item__name {
      font-size: 1.75rem; }

.developer {
  padding: 5rem 0 7.5rem; }
  .developer .container {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem; }
  .developer-info {
    width: 50%; }
  .developer__logo {
    width: 9rem;
    margin-bottom: 1rem; }
    .developer__logo img {
      width: 100%;
      display: block; }
  .developer .section-title {
    margin-bottom: 1.5rem; }
  .developer .section-text {
    margin-bottom: 2rem; }
  .developer-numbers {
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding-right: 3rem; }
    .developer-numbers div {
      font-size: 2.95rem;
      color: #C52C3C;
      margin-bottom: 0.5rem; }
      .developer-numbers div span {
        font-size: 1.2rem; }
    .developer-numbers p {
      max-width: 11rem;
      margin: 0 auto; }
    .developer-numbers li:last-child p {
      max-width: 9rem; }
  .developer__img {
    width: 50%;
    padding-top: 2rem; }
    .developer__img img {
      width: 100%;
      display: block; }

.footer__map {
  height: 29rem;
  position: relative; }
  .footer__map::after {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 1;
    content: '';
    pointer-events: none;
    background: rgba(0, 0, 255, 0.05); }
  .footer__map #footerMap {
    height: 100%;
    width: 100%; }
.footer-main {
  padding: 4.8rem 0 4.2rem; }
.footer-menu {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 6rem; }
  .footer-menu a {
    color: #fff; }
    .footer-menu a:hover {
      color: #C52C3C; }
.footer-wrap {
  display: flex;
  justify-content: space-between; }
  .footer-wrap:last-child {
    align-items: center; }
.footer-address {
  padding-top: 2.3rem;
  font-size: 0.8rem;
  width: 16rem; }
  .footer-address div {
    margin-bottom: 0.75rem; }
  .footer-address p {
    color: #C52C3C;
    margin-bottom: 1.25rem; }
  .footer-address a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 2.5rem;
    width: 9.5rem;
    border-radius: 2rem;
    border: 1px solid #C52C3C;
    color: #fff; }
    .footer-address a:hover {
      background: #C52C3C; }
.footer-info {
  text-align: center;
  margin-bottom: -2rem; }
.footer__logo {
  width: 24rem;
  margin-bottom: 4rem; }
  .footer__logo img {
    width: 100%;
    display: block; }
.footer__tel {
  color: #C52C3C;
  font-weight: 500;
  font-size: 3rem; }
.footer-worktime {
  width: 11rem;
  margin-left: 5rem;
  padding-top: 2.3rem; }
  .footer-worktime__title {
    font-size: 0.8rem;
    margin-bottom: 0.75rem; }
  .footer-worktime__item {
    margin-bottom: 0.65rem; }
    .footer-worktime__item p {
      color: #C52C3C;
      margin-top: 0.1rem; }
.footer-social {
  display: flex;
  gap: .75rem; }
  .footer-social li {
    display: flex; }
  .footer-social a {
    display: flex;
    width: 1.5rem;
    height: 1.5rem;
    color: #fff; }
    .footer-social a:hover {
      color: #C52C3C; }
    .footer-social a svg {
      width: 100%;
      height: 100%; }
.footer__top {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  color: #fff;
  gap: 1rem; }
  .footer__top img {
    width: 2.4rem; }
  .footer__top:hover {
    color: #C52C3C; }
.footer-copy {
  font-size: 0.8rem;
  background: #fff;
  padding: 1rem 0;
  color: #151B31; }
  .footer-copy .container {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .footer-copy a {
    color: #151B31; }
    .footer-copy a:hover {
      color: #C52C3C; }

@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; }

  .container {
    padding: 0 9rem; } }
@media (max-width: 1700.98px) {
  :root {
    font-size: 18px; } }
@media (max-width: 1600.98px) {
  :root {
    font-size: 17px; }

  .container {
    padding: 0 8rem; } }
@media (max-width: 1500.98px) {
  :root {
    font-size: 16px; } }
@media (max-width: 1400.98px) {
  :root {
    font-size: 15px; }

  .container {
    padding: 0 7rem; } }
@media (max-width: 1300.98px) {
  :root {
    font-size: 14px; } }
@media (max-width: 1200.98px) {
  :root {
    font-size: 13px; }

  .container {
    padding: 0 6rem; } }
@media (max-width: 1100.98px) {
  :root {
    font-size: 12px; }

  .container {
    padding: 0 5rem; } }
@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; }

  .menu__bg {
    z-index: -1;
    width: 100%; }
    .menu__bg::after {
      content: '';
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      background: rgba(21, 27, 49, 0.95); }

  .header__choose {
    display: none; }
  .header__menu {
    width: 2.5rem;
    background: transparent;
    border-color: #fff; }
  .header__btn {
    width: 2.5rem;
    height: 2.5rem; }
    .header__btn img {
      display: block;
      width: 0.9rem; }
    .header__btn span {
      display: none; }

  .main {
    height: 55rem;
    padding-bottom: 5rem; }
    .main-info {
      position: absolute;
      bottom: -10rem; }

  .about {
    padding-top: 15rem;
    background-size: 25rem; }
    .about .container {
      flex-direction: column;
      gap: 2.5rem; }
    .about-wrap, .about__img {
      width: 100%; }

  .location-head {
    flex-direction: column;
    gap: 2rem; }
  .location-map {
    height: 22rem; }

  .consult {
    padding-left: 0;
    padding-right: 0; }
    .consult__box {
      display: none; }
    .consult-form button {
      gap: .7rem; }

  .advantages {
    background-size: 25rem;
    background-position-y: center; }
    .advantages-wrap {
      flex-direction: column;
      margin-top: 0;
      gap: 1.5rem; }
    .advantages-list {
      margin-right: 0;
      padding-top: 3rem; }
      .advantages-list li {
        color: #C52C3C;
        display: block;
        border: none;
        height: auto; }
        .advantages-list li div {
          font-size: 1.2rem !important;
          margin-bottom: 1rem;
          width: 100%; }
        .advantages-list li p {
          width: 100%;
          max-width: 30rem; }
    .advantages-images {
      width: 100%;
      border-radius: 0;
      height: auto; }
      .advantages-images__img {
        position: static;
        opacity: 1;
        height: 25rem;
        border-radius: 1rem;
        overflow: hidden; }
    .advantages-arrows {
      display: flex;
      margin-top: 1.5rem;
      justify-content: center; }

  .hall-main {
    flex-direction: column; }
  .hall .section-title {
    margin-bottom: 6.5rem; }
  .hall-col:first-child {
    width: 100%; }
  .hall-col:last-child {
    width: 100%; }
  .hall-item-3 {
    margin-left: 0;
    width: 46%;
    height: 18rem; }
  .hall__img-1 {
    margin-top: 2.5rem; }
  .hall__pattern {
    width: 10rem; }

  .plans__img {
    padding: 0; }

  .commerce {
    background-size: 25rem; }
    .commerce-main {
      gap: 2rem;
      flex-direction: column;
      align-items: center;
      padding-bottom: 0; }
    .commerce-left, .commerce-right {
      width: 100%;
      padding-bottom: 0; }
    .commerce-images {
      width: 70%;
      margin-bottom: 2rem;
      padding-top: 2rem; }

  .func-wrap {
    flex-wrap: wrap; }
  .func-item {
    width: 100%; }

  .developer {
    padding-bottom: 5rem; }
    .developer .container {
      flex-direction: column;
      align-items: center; }
    .developer-info {
      width: 100%; }
    .developer__img {
      width: 70%; }

  .footer-wrap {
    flex-wrap: wrap; }
    .footer-wrap:last-child {
      margin-top: 2rem; }
  .footer-info {
    order: -1;
    width: 100%;
    margin-bottom: 0; }
  .footer__logo {
    margin: 0 auto; } }
@media (max-width: 767.98px) {
  :root {
    font-size: 16px; }

  .container {
    padding: 0 1rem; }

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

  .btn {
    font-size: 0.9rem; }

  .preloader__logo {
    width: 13rem; }

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

  .menu {
    padding: 1rem 0 2rem;
    transition: .6s transform ease-in-out; }
    .menu .header__btn {
      display: none; }
    .menu .header-lang {
      display: block; }
    .menu-list {
      margin-top: -5vh; }
      .menu-list a:hover::after {
        width: 100%; }
    .menu-btn {
      position: static;
      margin: -5vh 0 5vh; }
      .menu-btn .btn {
        width: 100%; }
      .menu-btn .container {
        padding: 0; }
    .menu .footer-social {
      justify-content: center; }

  .header {
    padding: 1.5rem 0; }
    .header-lang {
      display: none; }
    .header__logo {
      width: 8rem; }
    .header.scrolled {
      padding: 0.6rem 0; }

  .main {
    height: 45rem; }
    .main .section-title {
      font-size: 2.5rem; }
    .main-info {
      width: calc(100% - 2rem);
      bottom: -32vw; }
      .main-info__card {
        font-size: 1.2rem;
        height: 12rem; }
      .main-info__list li {
        width: 33.333vw;
        height: 33.333vw;
        font-size: 1rem; }
        .main-info__list li:nth-child(1) {
          border-radius: 0 3.5rem; }
        .main-info__list li:nth-child(2) {
          border-radius: 50%;
          margin-left: -1rem; }
        .main-info__list li:nth-child(3) {
          border-radius: 3.5rem 0;
          margin-left: -1rem;
          padding-left: 2rem; }

  .about {
    padding: calc(33vw + 3rem) 0 4rem;
    background-size: 15rem; }
    .about .section-title {
      margin-bottom: 1.8rem; }
    .about-numbers li div {
      font-size: 3rem; }
    .about__img {
      height: 25rem; }

  .location-head {
    gap: 1.8rem; }
  .location-map {
    height: 130vw; }
    .location-map__img img {
      object-position: center; }
    .location-map__btn {
      right: 50%;
      transform: translateX(50%);
      bottom: 1rem; }

  .consult {
    padding-top: 4rem; }
    .consult__title {
      font-size: 1.7rem; }
    .consult-form {
      flex-direction: column; }
      .consult-form > input {
        width: 100%; }
      .consult-form button {
        order: 999;
        align-self: center;
        width: auto; }

  .advantages {
    padding: 4rem 0;
    background-size: 15rem; }
    .advantages-list {
      padding-top: 1.8rem; }
    .advantages-images__img {
      height: 20rem; }

  .hall {
    padding-top: 2rem; }
    .hall .section-title {
      margin-bottom: 2rem; }
    .hall-item {
      padding: 2.5rem 1rem 1rem;
      border-radius: 5rem 0; }
      .hall-item-1 {
        position: static;
        margin: 0;
        width: 70%;
        height: 18rem;
        transform: translate(-50%, -50%); }
      .hall-item-2 {
        position: absolute;
        right: 1rem;
        height: 17rem;
        margin-top: -17rem;
        z-index: 2;
        width: 65%; }
      .hall-item-3 {
        order: 9999;
        width: 100%;
        height: 12rem; }
    .hall__img-1 {
      width: 35%;
      margin-left: -5%;
      height: 22rem;
      border-radius: 5rem 0;
      margin-top: 0; }
    .hall__img-2 {
      margin-top: -4rem;
      width: 55%;
      height: 20rem;
      border-radius: 0 5rem;
      transform: translate(-50%, 50%); }
    .hall__img-3, .hall__img-4 {
      width: 50%;
      border-radius: 0 5rem;
      height: 17rem; }
    .hall__pattern {
      display: none; }

  .plans {
    padding-top: 4rem; }
    .plans__img {
      height: 18rem;
      margin-bottom: 2rem; }
    .plans-item {
      border-radius: 1rem;
      padding: 0.7rem;
      height: 7rem; }

  .commerce {
    background-size: 15rem; }
    .commerce .section-title {
      font-size: 2rem;
      margin-bottom: 1.8rem; }
    .commerce-left .commerce-item__list {
      padding-right: 0; }
    .commerce-item__list {
      gap: 1.5rem; }
      .commerce-item__list li {
        gap: 1rem; }
        .commerce-item__list li p {
          font-size: 2.3rem;
          margin-bottom: -0.2rem; }
    .commerce-images {
      width: 100%;
      padding-top: 1.5rem;
      margin-bottom: 1.5rem; }
      .commerce-images img {
        height: 25rem; }
        .commerce-images img:first-child {
          border-bottom-left-radius: 5rem; }
        .commerce-images img:last-child {
          border-top-right-radius: 5rem; }
      .commerce-images.active img:first-child {
        transform: translateY(1.5rem); }
      .commerce-images.active img:last-child {
        transform: translateY(-1.5rem); }

  .func {
    padding-top: 4rem; }
    .func .section-title {
      margin-bottom: 1.8rem; }
    .func-item {
      height: 30rem; }
      .func-item:nth-child(2) .func-item__img {
        height: 16rem; }
      .func-item__info {
        padding: 1rem;
        height: 14rem; }
      .func-item__name {
        font-size: 1.4rem; }

  .developer {
    padding: 4rem 0; }
    .developer-numbers {
      padding-right: 0;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem; }
    .developer__img {
      padding-top: 1rem;
      width: 100%; }

  .footer__map {
    height: 24rem; }
  .footer-main {
    padding: 3.5rem 0 2.5rem; }
  .footer-menu {
    flex-wrap: wrap;
    margin-bottom: 3rem; }
  .footer__logo {
    width: 18rem;
    margin-bottom: 2rem; }
  .footer__tel {
    font-size: 2.5rem; }
  .footer-address {
    font-size: 0.9rem;
    width: 100%; }
  .footer-worktime {
    width: 100%;
    margin-left: 0;
    padding-top: 1.5rem; }
    .footer-worktime__title {
      font-size: 0.9rem; }
  .footer__top {
    font-size: 0.9rem; }
  .footer-copy {
    font-size: 0.9rem; }
    .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 */
