@font-face {
  font-family: 'Euclid Square';
  src: url("fonts/EuclidSquare-Regular.eot");
  src: local("Euclid Square Regular"), local("EuclidSquare-Regular"), url("fonts/EuclidSquare-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/EuclidSquare-Regular.woff2") format("woff2"), url("fonts/EuclidSquare-Regular.woff") format("woff"), url("fonts/EuclidSquare-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Euclid Square';
  src: url("fonts/EuclidSquare-Medium.eot");
  src: local("Euclid Square Medium"), local("EuclidSquare-Medium"), url("fonts/EuclidSquare-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/EuclidSquare-Medium.woff2") format("woff2"), url("fonts/EuclidSquare-Medium.woff") format("woff"), url("fonts/EuclidSquare-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal; }
@font-face {
  font-family: 'Euclid Square';
  src: url("fonts/EuclidSquare-SemiBold.eot");
  src: local("Euclid Square SemiBold"), local("EuclidSquare-SemiBold"), url("fonts/EuclidSquare-SemiBold.eot?#iefix") format("embedded-opentype"), url("fonts/EuclidSquare-SemiBold.woff2") format("woff2"), url("fonts/EuclidSquare-SemiBold.woff") format("woff"), url("fonts/EuclidSquare-SemiBold.ttf") format("truetype");
  font-weight: 600;
  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: #104A27;
  border: 1px solid #ddd; }

.lazy {
  opacity: 0; }

.disabled {
  pointer-events: none; }

body {
  font-family: 'Euclid Square', sans-serif;
  font-size: 0.9rem;
  color: #104A27; }

.container {
  padding: 0 4rem; }

.section-title {
  font-weight: 600;
  font-size: 3.45rem; }

.section-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 1.3rem;
  height: 2.4rem;
  border-radius: 2.4rem;
  background: #104A27;
  color: #fff; }

.form input {
  width: 100%;
  height: 3.1rem;
  border-radius: 3rem;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  padding: 0 1.35rem; }
  .form input::placeholder {
    color: rgba(255, 255, 255, 0.5); }
.form .btn {
  width: 100%;
  height: 3.1rem;
  background: #fff;
  color: #104A27;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 3rem;
  border: 1px solid #fff; }
  .form .btn:hover {
    background: #0E6531;
    color: #fff; }

.fixed-btn {
  display: none; }

@keyframes preloaderLogo {
  50% {
    opacity: .5; }
  100% {
    opacity: 1;
    transform: none; } }
@keyframes scale {
  50% {
    transform: scale(1.1); } }
@keyframes svgPulse {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes pulse-btn {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 74, 39, 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: #104A27;
  background-size: cover;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center; }
  .preloader__logo {
    width: 13rem;
    animation: preloaderLogo 1.5s linear forwards;
    transform: scale(0.7);
    opacity: 0; }
    .preloader__logo img {
      width: 100%;
      display: block; }

.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: 1rem;
    background: #fff;
    width: 22rem;
    box-shadow: 0px 10px 40px 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: #104A27;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .6s all;
    cursor: pointer;
    user-select: none; }
    .feedback__close img {
      width: .7rem; }
    .feedback__close:hover {
      background: #0E6531; }
  .feedback__title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center; }
  .feedback__text {
    font-size: 0.7rem;
    line-height: 150%;
    text-align: center; }
  .feedback-form {
    margin: 2rem 0 0.8rem; }
    .feedback-form input {
      border-color: #104A27;
      color: #104A27;
      margin-bottom: .5rem; }
      .feedback-form input::placeholder {
        color: rgba(16, 74, 39, 0.5); }
    .feedback-form .btn {
      background: #104A27;
      color: #fff; }
      .feedback-form .btn:hover {
        background: #0E6531; }
  .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: 4.3rem 0 3.2rem;
    text-align: center; }
    .feedback__img img {
      display: inline-block;
      width: 9rem; }

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  background: #104A27;
  display: none; }
  .mobile-menu .container {
    padding-top: 1.5rem;
    padding-bottom: 7rem;
    height: 100dvh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: 100%; }
  .mobile-menu__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%; }
  .mobile-menu__close, .mobile-menu__tel {
    display: inline-flex;
    margin-top: 0.5rem; }
    .mobile-menu__close img, .mobile-menu__tel img {
      width: 1.5rem; }
  .mobile-menu__close img {
    width: 2.6rem; }
  .mobile-menu__tel {
    margin-left: 1.1rem; }
  .mobile-menu__logo {
    width: 8rem;
    display: inline-block; }
    .mobile-menu__logo img {
      width: 100%;
      display: block; }
  .mobile-menu__list {
    font-size: 2rem;
    text-align: center; }
    .mobile-menu__list li {
      margin-bottom: 2rem; }
    .mobile-menu__list a {
      color: #fff;
      padding-bottom: 0.2rem; }
      .mobile-menu__list a.current {
        border-bottom: 1px solid #fff; }
  .mobile-menu .footer-social {
    justify-content: center;
    margin-bottom: 2rem; }
  .mobile-menu__novas {
    font-size: 1.2rem;
    color: #fff; }
  .mobile-menu__wrap {
    text-align: center; }
  .mobile-menu__download {
    width: 15rem;
    height: 3rem;
    margin-bottom: 2rem; }

.header {
  position: fixed;
  top: 0;
  height: 7rem;
  width: 100%;
  transition: .6s all;
  left: 0;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.8rem;
  z-index: 6; }
  .header .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .header-mobile {
    display: none; }
  .header__logo {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 6.2rem; }
    .header__logo img {
      height: 100%;
      display: block; }
  .header-menu {
    display: flex;
    align-items: center;
    gap: 2rem; }
    .header-menu a {
      color: #fff;
      border-bottom: 1px solid transparent; }
      .header-menu a:hover {
        border-color: #fff; }
  .header-wrap {
    display: flex;
    align-items: center;
    gap: 1.7rem; }
  .header-lang {
    display: flex;
    gap: .2rem;
    color: #fff; }
    .header-lang a {
      color: #fff;
      border-bottom: 1px solid transparent; }
      .header-lang a:hover {
        border-color: #fff; }
  .header__tel {
    color: #fff;
    display: flex;
    align-items: center;
    gap: .3rem; }
    .header__tel img {
      width: 0.85rem; }
  .header__btn {
    font-size: 0.75rem;
    padding: 0 1.25rem;
    border: 1px solid #fff;
    height: 2.8rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 3rem;
    color: #fff; }
    .header__btn:hover {
      background: #104A27; }
  .header.scrolled {
    background: #104A27;
    border-bottom: 1px solid #fff;
    height: 4rem; }
    .header.scrolled .header__logo {
      height: 3.5rem; }

.main-content {
  overflow: hidden;
  height: 38rem;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  margin-bottom: 0.75rem; }
.main__bg {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  z-index: -1;
  background: url(../img/main.jpg) center center no-repeat;
  background-size: cover;
  animation: scale 40s linear infinite;
  content: ''; }
.main__title {
  font-weight: 500;
  font-size: 5rem; }
.main__text {
  font-size: 1.4rem;
  margin-bottom: 1.4rem; }
.main__btn {
  font-size: 0.8rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 3.3rem;
  padding: 0 1.6rem;
  border-radius: 3rem;
  background: #104A27;
  text-transform: uppercase;
  color: #fff; }
  .main__btn:hover {
    background: #0E6531; }
.main-offer {
  gap: .75rem;
  display: flex;
  font-weight: 600; }
.main-info {
  padding: 1.6rem 3rem 2rem 4rem;
  width: 66%;
  color: #fff;
  border-radius: 2.1rem 0 0 2.1rem;
  display: flex;
  align-items: center;
  gap: 5rem;
  background: #104A27; }
  .main-info__title {
    max-width: 31.5rem;
    font-size: 2.5rem;
    font-weight: 600; }
  .main-info__wrap {
    flex-shrink: 0;
    max-width: 19rem; }
  .main-info__text {
    display: flex;
    margin-bottom: 1.5rem; }
    .main-info__text p:first-child {
      padding-right: 1.25rem;
      margin-right: 1.25rem;
      border-right: .1rem solid #fff;
      width: 8rem;
      flex-shrink: 0; }
  .main-info .main__link {
    color: #fff; }
.main__link {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem; }
  .main__link:hover img {
    transform: translateX(-0.5rem); }
  .main__link img {
    width: 1rem;
    transition: .6s all; }
.main-rooms {
  width: 34%;
  border-radius: 0 2.1rem 2.1rem 0;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: #104A27;
  box-shadow: 0px 0.5rem 2rem 0px rgba(0, 0, 0, 0.1);
  padding: 0 1.5rem;
  background: #fff; }
  .main-rooms__title {
    font-size: 1.4rem;
    line-height: 107.7%;
    margin-bottom: 1.3rem; }
  .main-rooms__link {
    color: #104A27; }
  .main-rooms__img {
    width: 15rem;
    flex-shrink: 0;
    margin-top: -4rem;
    position: relative;
    z-index: 1;
    align-self: flex-end; }
    .main-rooms__img img {
      width: 100%;
      display: block; }

.about {
  padding: 9rem 0 8rem;
  position: relative;
  overflow: hidden;
  margin-top: -2rem; }
  .about .section-tag {
    position: absolute; }
  .about__leaf {
    position: absolute;
    right: 0;
    top: 0;
    width: 28rem;
    z-index: -1; }
    .about__leaf img {
      width: 100%;
      display: block; }
  .about .section-title {
    max-width: 30rem;
    margin: 0 auto 5.5rem;
    text-align: center;
    line-height: 1.07; }
  .about-main {
    display: flex;
    gap: 2rem; }
  .about-info {
    width: 31%; }
    .about-info__text {
      line-height: 150%;
      margin-bottom: 3.7rem; }
      .about-info__text span {
        font-weight: 600; }
    .about-info__wrap {
      display: flex; }
      .about-info__wrap img {
        width: 50%;
        height: 14rem;
        border-top-left-radius: 7rem;
        object-fit: cover; }
      .about-info__wrap p {
        width: 50%;
        border-radius: 7rem 0 7rem 7rem;
        color: #fff;
        background: #104A27;
        display: flex;
        align-items: center;
        text-align: center;
        padding: 1rem; }
    .about-info__video {
      overflow: hidden;
      border-radius: 7rem 0;
      height: 16rem; }
      .about-info__video video, .about-info__video img, .about-info__video iframe {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover; }
  .about-wrap {
    width: 69%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 43rem;
    position: relative; }
    .about-wrap__tag {
      position: absolute;
      right: -1.8rem;
      top: 0;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      background: #104A27;
      color: #fff;
      padding: 2.3rem 0.8rem;
      border-radius: 3.5rem 0;
      z-index: 2; }
  .about__img {
    overflow: hidden;
    border-radius: 1.5rem;
    position: relative;
    height: 43rem;
    width: 34rem;
    flex-shrink: 0;
    margin-right: 2rem; }
    .about__img:hover img {
      transform: scale(1.05); }
    .about__img img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: .6s all; }
  .about-father {
    width: calc(100% - 36rem);
    padding-top: 3.2rem; }
    .about-father__img {
      margin-bottom: 2rem; }
      .about-father__img img {
        width: 100%;
        display: block;
        object-fit: cover;
        max-height: 28rem;
        border-radius: 1.5rem; }
    .about-father__text {
      line-height: 150%;
      width: calc(100% - 36rem); }

.location {
  padding: 4rem 0 7rem;
  background: #104A27;
  border-radius: 6.5rem;
  color: #fff; }
  .location-content {
    text-align: center; }
  .location .section-tag {
    background: #0E6531;
    margin-bottom: 0.1rem; }
  .location .section-title {
    color: #fff;
    margin-bottom: 0.8rem;
    font-weight: 500; }
  .location__text {
    max-width: 39rem;
    margin: 0 auto 3.8rem; }
    .location__text p:not(:first-child) {
      margin-top: 0.75rem; }
  .location-line {
    position: relative;
    z-index: 1;
    margin-bottom: 3.5rem; }
    .location-line__img {
      position: absolute;
      width: 0%;
      left: 0;
      margin-top: 2.2rem;
      overflow: hidden;
      transition: 2s width; }
      .location-line__img img {
        width: 100vw;
        display: block;
        max-width: none; }
      .location-line__img.active {
        width: 100%; }
  .location-list {
    display: flex;
    justify-content: space-around;
    position: relative;
    z-index: 2;
    padding-right: 3rem; }
    .location-list__item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      font-size: 1rem;
      font-weight: 500; }
      .location-list__item:nth-child(2) {
        margin-top: 6.5rem; }
      .location-list__item:nth-child(4) {
        margin-top: 2.4rem; }
      .location-list__item:nth-child(5) {
        margin-top: 1rem; }
    .location-list__name {
      max-width: 9rem;
      margin-bottom: 0.5rem; }
    .location-list__dot {
      width: 1.5rem;
      height: 1.5rem;
      border-radius: 50%;
      border: 0.15rem solid #0E6531;
      margin-bottom: 0.5rem;
      background: #FFDA8A; }
    .location-list__dist div {
      font-size: 2.5rem;
      font-weight: 600;
      line-height: 1; }
  .location-map {
    height: 24.5rem;
    width: 100%;
    border-radius: 2.15rem;
    overflow: hidden; }
    .location-map #locationMap {
      width: 100%;
      height: 100%; }
  .location-info {
    display: flex;
    gap: 2.5rem;
    padding-top: 6.5rem; }
    .location-info__col {
      width: 25%;
      padding-top: 4rem; }
      .location-info__col:last-child {
        width: 27%;
        padding-left: 1.5rem; }
        .location-info__col:last-child .location-info__item:last-child {
          margin-top: 9rem; }
    .location-info__title {
      font-size: 2.2rem;
      font-weight: 600;
      margin-bottom: 6rem; }
    .location-info__item img {
      display: block;
      height: 1.5rem;
      margin-bottom: 1.25rem; }
    .location-info__item p {
      font-size: 1rem;
      line-height: 1.5; }
    .location-info__images {
      width: 48%;
      display: flex; }
      .location-info__images img {
        width: 50%;
        transition: 1s transform; }
        .location-info__images img:first-child {
          border-bottom-left-radius: 7.5rem; }
        .location-info__images img:last-child {
          border-top-right-radius: 7.5rem; }
      .location-info__images.active img:first-child {
        transform: translateY(2.5rem); }
      .location-info__images.active img:last-child {
        transform: translateY(-2.5rem); }

.happy {
  padding-top: 4.5rem;
  margin-top: -2.2rem; }
  .happy-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem; }
  .happy__text {
    margin-bottom: 2.8rem;
    line-height: 1.7;
    max-width: 42rem; }
  .happy-list {
    display: flex;
    gap: 2rem;
    align-items: flex-start; }
  .happy-item {
    height: 40rem;
    width: calc(33.3333% - 1.3333rem);
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    z-index: 1;
    color: #fff;
    background: #104A27; }
    .happy-item__img {
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      z-index: -1; }
      .happy-item__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover; }
    .happy-item__wrap {
      padding: 2rem; }
    .happy-item__title {
      font-size: 1.25rem;
      font-weight: 500;
      margin-bottom: 0.5rem; }
    .happy-item__text {
      font-size: 0.8rem;
      line-height: 1.7;
      max-width: 24rem; }
    .happy-item:nth-child(2) {
      margin-top: -2.2rem; }
      .happy-item:nth-child(2) .happy-item__img {
        position: static;
        height: 29rem; }
        .happy-item:nth-child(2) .happy-item__img img {
          border-radius: 1.5rem; }
    .happy-item:nth-child(3) {
      display: flex;
      align-items: flex-end; }

.consult {
  padding: 5rem 0; }
  .consult-card {
    padding: 1rem;
    border-radius: 1.5rem;
    background: #104A27;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 2.2rem; }
  .consult-main {
    width: 50%;
    padding-left: 1.5rem; }
  .consult__title {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 1rem; }
  .consult-form {
    display: flex;
    gap: .85rem;
    margin-bottom: 1rem; }
    .consult-form input {
      width: 35%; }
    .consult-form .btn {
      width: 30%; }
  .consult__text {
    font-size: 0.8rem;
    margin-bottom: 2.5rem; }
  .consult__advice {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5); }
  .consult__img {
    width: 50%;
    height: 17rem;
    border-radius: .75rem;
    overflow: hidden; }
    .consult__img img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover; }

.choose {
  position: relative; }
  .choose__img {
    width: 100%;
    height: 42.5rem;
    position: relative; }
    .choose__img img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover; }
    .choose__img svg {
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
      z-index: 2; }
      .choose__img svg path {
        cursor: pointer;
        opacity: 0;
        transition: .6s all;
        animation: svgPulse 2s infinite linear; }
        .choose__img svg path:hover {
          opacity: 1;
          animation: none; }
  .choose__btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 1.5rem;
    background: #104A27;
    border-radius: 3rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    height: 3.3rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    bottom: 2.5rem;
    z-index: 3; }
    .choose__btn:hover {
      background: #0E6531; }

.developer {
  padding: 6.2rem 0 7rem;
  background: #104A27;
  color: #fff;
  border-radius: 0 0 6.5rem 6.5rem; }
  .developer .container {
    display: flex;
    gap: 2.3rem; }
  .developer-col {
    width: 29%; }
    .developer-col:nth-child(1) {
      align-self: center; }
      .developer-col:nth-child(1) .developer__img span {
        top: -2.85rem;
        right: -2.9rem; }
    .developer-col:nth-child(2) {
      width: 42%; }
      .developer-col:nth-child(2) .developer__img span {
        bottom: -2.85rem;
        left: -2.9rem; }
    .developer-col:nth-child(3) {
      align-self: flex-end;
      padding-bottom: 2rem; }
      .developer-col:nth-child(3) .developer__img span {
        top: -2.85rem;
        left: -2.9rem;
        border-radius: 0 3.5rem; }
  .developer__img {
    position: relative; }
    .developer__img img {
      width: 100%;
      display: block;
      border-radius: 1.5rem; }
    .developer__img span {
      width: 5.8rem;
      height: 5.7rem;
      color: #fff;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      border-radius: 3.5rem 0;
      background: #0E6531;
      text-align: center;
      text-transform: uppercase;
      position: absolute;
      z-index: 2; }
  .developer-content {
    text-align: center; }
  .developer .section-tag {
    background: #0E6531;
    margin-bottom: 0.85rem; }
  .developer .section-title {
    text-transform: uppercase;
    margin-bottom: 0.8rem; }
  .developer__text {
    max-width: 28.5rem;
    margin: 0 auto 3.5rem;
    font-size: 1rem; }
    .developer__text p:not(:first-child) {
      margin-top: 0.75rem; }
  .developer-info {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.7rem 0; }
    .developer-info li {
      width: 45%;
      font-size: 1rem; }
      .developer-info li div {
        font-weight: 500;
        font-size: 1.75rem;
        margin-bottom: 0.3rem; }
      .developer-info li:nth-child(even) {
        width: 55%; }

.hall {
  padding-top: 6.3rem; }
  .hall .container {
    display: flex;
    align-items: flex-end;
    gap: 5.5rem; }
  .hall-left {
    width: calc(60% - 2.75rem);
    position: relative; }
    .hall-left .hall-slider__item {
      height: 28.5rem; }
  .hall-right {
    width: calc(40% - 2.75rem); }
    .hall-right .hall-slider__item {
      height: 41.7rem; }
  .hall-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.8rem; }
  .hall .section-title {
    max-width: 25rem;
    line-height: 1.07; }
  .hall .section-tag {
    position: absolute;
    bottom: 42.9rem;
    right: 0; }
  .hall__text {
    max-width: 37.5rem;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem; }
  .hall-slider__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 1.5rem; }
  .hall-arrows {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-end;
    gap: 1rem; }
    .hall-arrows span {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      transition: .6s all;
      cursor: pointer;
      user-select: none;
      width: 2.1rem; }
      .hall-arrows span img {
        width: 100%;
        display: block; }
      .hall-arrows span:hover {
        opacity: .5; }

.footer {
  padding-top: 2.6rem;
  color: #fff;
  position: relative;
  z-index: 1; }
  .footer::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 27rem;
    border-radius: 6.5rem 6.5rem 0 0;
    background: #104A27;
    z-index: -1;
    content: ''; }
  .footer__logo {
    margin: 0 auto 2rem;
    display: block;
    width: 8rem; }
    .footer__logo img {
      width: 100%;
      display: block; }
  .footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem; }
  .footer-social {
    display: flex;
    align-items: center;
    gap: 2rem; }
    .footer-social a {
      display: flex;
      align-items: center;
      gap: .65rem;
      color: #fff; }
      .footer-social a:hover span {
        border-color: #fff; }
      .footer-social a img {
        width: 2rem; }
      .footer-social a span {
        transition: .6s all;
        border-bottom: 1px solid transparent; }
  .footer__tel {
    font-weight: 600;
    font-size: 3.15rem;
    color: #fff; }
  .footer__address {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    line-height: 1.38;
    font-size: 1rem; }
    .footer__address p {
      max-width: 20.5rem; }
    .footer__address img {
      width: 2rem; }
  .footer__map {
    width: 100%;
    height: 20rem;
    border-radius: 2.15rem;
    overflow: hidden; }
    .footer__map #footerMap {
      width: 100%;
      height: 100%; }
  .footer-copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    font-size: 0.8rem;
    color: #104A27; }
    .footer-copy a {
      color: #104A27; }
      .footer-copy a:hover {
        color: #0E6531; }

@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; }

  .section-title {
    font-size: 2.5rem; }

  .fixed-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 4rem;
    right: 1rem;
    z-index: 5;
    background: #104A27;
    border-radius: 50%;
    color: #fff;
    animation: pulse-btn 2s infinite; }
    .fixed-btn svg {
      width: 3rem;
      height: 3rem; }

  .header {
    height: 6.5rem; }
    .header-menu, .header__btn {
      display: none; }
    .header-mobile {
      display: flex;
      width: 2.5rem;
      height: 2.5rem; }
      .header-mobile svg {
        width: 100%;
        height: 100%; }
    .header__logo {
      height: 5rem; }

  .main__title {
    font-size: 4rem; }
  .main-offer {
    display: block;
    margin-top: -2rem;
    position: relative;
    z-index: 2; }
  .main-info {
    width: 100%;
    border-radius: 2rem 2rem 0 0;
    padding: 1.6rem 4rem;
    display: block; }
    .main-info__title {
      margin-bottom: 2rem; }
  .main-rooms {
    width: 100%;
    justify-content: space-between;
    padding-right: 4rem;
    padding-left: 4rem;
    border-radius: 0 0 2rem 2rem; }

  .about {
    padding: 12rem 0 5rem; }
    .about__leaf {
      width: 15rem; }
    .about .section-tag {
      left: 50%;
      transform: translateX(-50%);
      margin-top: -4rem; }
    .about-main {
      display: block; }
    .about-info {
      width: 70%;
      margin-bottom: 2rem; }
    .about-wrap {
      flex-direction: row;
      height: auto;
      width: 100%; }
      .about-wrap__tag {
        top: -7.5rem;
        right: 0; }
    .about__img {
      width: calc(50% - 1rem);
      height: 25rem; }
    .about-father {
      width: calc(50% - 1rem);
      padding-top: 0; }
      .about-father__img {
        width: 100%;
        height: 25rem; }
        .about-father__img img {
          width: 100%;
          height: 100%;
          display: block;
          object-fit: cover; }
      .about-father__text {
        width: 100%; }

  .location {
    border-radius: 4.5rem; }
    .location__text {
      margin-bottom: 2.5rem; }
    .location-line__img {
      display: none; }
    .location-list {
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem 0;
      padding: 0 3rem; }
      .location-list__name {
        max-width: none; }
      .location-list__item {
        margin-top: 0 !important;
        width: 33.33%; }
      .location-list__dot {
        display: none; }
    .location-info {
      flex-direction: column; }
      .location-info__col {
        width: 100%;
        padding-top: 0; }
        .location-info__col:last-child {
          width: 100%;
          padding-left: 0; }
          .location-info__col:last-child .location-info__item:last-child {
            margin-top: 2.5rem; }
      .location-info__title {
        margin-bottom: 2.5rem; }
      .location-info__images {
        width: 70%;
        margin: 2rem auto 0;
        order: 99; }

  .happy-list {
    flex-wrap: wrap;
    justify-content: center; }
  .happy-item {
    width: 100%; }
    .happy-item:nth-child(2) {
      margin-top: 0; }

  .consult {
    padding: 4rem 0; }
    .consult-card {
      flex-direction: column; }
    .consult-main {
      padding: 1rem;
      width: 100%; }
    .consult__img {
      width: 100%; }

  .choose-wrap {
    overflow: auto; }
  .choose__img {
    width: 96rem;
    height: 43.5rem; }

  .developer {
    border-radius: 0 0 4.5rem 4.5rem;
    padding: 4rem 0; }
    .developer .container {
      flex-direction: column;
      align-items: center; }
    .developer-col {
      width: 80%; }
      .developer-col:first-child {
        order: 99; }
      .developer-col:nth-child(2) {
        width: 80%; }
      .developer-col:nth-child(3) {
        align-self: center;
        padding-bottom: 0; }
        .developer-col:nth-child(3) .developer__img span {
          left: auto;
          right: -2.9rem;
          border-radius: 3.5rem 0; }
    .developer__text {
      margin-bottom: 2rem; }

  .hall {
    padding-top: 4.5rem; }
    .hall .container {
      flex-direction: column;
      gap: 2rem; }
    .hall-left, .hall-right {
      width: 100%; }
    .hall .section-tag {
      position: static; }
    .hall-arrows {
      display: none; }

  .footer-wrap {
    flex-direction: column-reverse; }
  .footer::after {
    border-radius: 4.5rem 4.5rem 0 0;
    height: 36rem; } }
@media (max-width: 767.98px) {
  :root {
    font-size: 16px; }

  .container {
    padding: 0 1rem; }

  .section-title {
    font-size: 2rem; }

  .preloader__logo {
    width: 10rem; }

  .fixed-btn {
    bottom: 3rem;
    right: 0.5rem; }

  .feedback-content {
    width: calc(100% - 2rem); }
  .feedback__title {
    margin-bottom: 1rem; }
  .feedback__text {
    font-size: 0.85rem; }

  .mobile-menu .container {
    padding-bottom: 2rem;
    padding-top: 1rem; }
  .mobile-menu__logo {
    width: 6rem; }
  .mobile-menu__close img {
    width: 2.2rem; }
  .mobile-menu__tel {
    margin-left: 0.7rem; }
  .mobile-menu__list {
    font-size: 1.5rem;
    margin-bottom: 2rem; }
    .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 {
    height: 4.5rem; }
    .header__tel {
      height: 2.5rem;
      width: 2.5rem;
      border: 1px solid #fff;
      border-radius: 50%;
      justify-content: center; }
      .header__tel span {
        display: none; }
    .header__logo {
      height: 4rem; }
    .header-wrap {
      gap: 1rem; }
    .header.scrolled {
      height: 3.5rem; }
      .header.scrolled .header__logo {
        height: 3.2rem; }

  .main__title {
    font-size: 3rem;
    margin-bottom: 0.5rem; }
  .main__text {
    font-size: 1.2rem; }
  .main__btn {
    font-size: 0.9rem; }
  .main-info {
    padding: 1.6rem 1rem; }
    .main-info__title {
      font-size: 1.8rem; }
  .main-rooms {
    padding-left: 1rem;
    padding-right: 0;
    gap: .8rem; }
    .main-rooms__wrap {
      padding: 1.5rem 0; }
    .main-rooms__img {
      width: 50%; }
      .main-rooms__img img {
        border-radius: 0 0 2rem 2rem; }

  .about {
    padding-bottom: 4rem; }
    .about__leaf {
      width: 13rem;
      margin-top: -1rem; }
    .about .section-title {
      margin-bottom: 2rem; }
    .about-info {
      width: 100%;
      margin-bottom: 0; }
      .about-info__text {
        margin-bottom: 2.5rem; }
      .about-info__wrap img {
        height: 11rem; }
      .about-info__video {
        height: 14rem; }
    .about-wrap__tag {
      top: 12rem;
      right: auto;
      left: 0;
      padding-top: 1rem;
      padding-bottom: 1rem;
      border-radius: 2rem 0; }
    .about__img {
      width: 50%;
      height: 15rem;
      margin-right: 0; }
    .about-father {
      width: 50%; }
      .about-father__img {
        height: 15rem;
        margin-bottom: 1.5rem; }

  .location {
    border-radius: 2.5rem;
    padding: 3rem 0 5rem; }
    .location .section-tag {
      margin-bottom: 0.3rem; }
    .location-line {
      margin-bottom: 2.5rem; }
    .location-list {
      padding: 0 1rem; }
      .location-list li {
        width: 50%; }
    .location-map {
      height: 20rem;
      border-radius: 1.5rem; }
    .location-info {
      padding-top: 4rem; }
      .location-info__title {
        font-size: 1.7rem; }
      .location-info__images {
        width: 100%;
        margin-top: 1rem; }
        .location-info__images img:first-child {
          border-bottom-left-radius: 4.5rem; }
        .location-info__images img:last-child {
          border-top-right-radius: 4.5rem; }
        .location-info__images.active img:first-child {
          transform: translateY(1.5rem); }
        .location-info__images.active img:last-child {
          transform: translateY(-1.5rem); }

  .happy-head {
    flex-direction: column-reverse;
    gap: .5rem;
    text-align: center; }
  .happy .section-title {
    line-height: 1.07; }
  .happy__text {
    margin-bottom: 2rem; }
  .happy-item {
    height: 37rem; }
    .happy-item__wrap {
      padding: 1.5rem 1rem; }
    .happy-item:nth-child(2) .happy-item__img {
      height: 24rem; }
    .happy-item__text {
      font-size: 0.9rem; }

  .consult-card {
    padding: .5rem;
    gap: 1.5rem; }
  .consult-main {
    padding: 1rem 0.5rem; }
  .consult__title {
    font-size: 1.5rem; }
  .consult__text {
    margin-bottom: 2rem;
    font-size: 0.9rem; }
  .consult-form {
    flex-direction: column; }
    .consult-form input, .consult-form .btn {
      width: 100%; }
  .consult__advice {
    font-size: 0.85rem; }
  .consult__img {
    border-radius: 1rem; }

  .choose__img {
    width: 70rem;
    height: 35rem; }
  .choose__btn {
    font-size: 0.9rem;
    white-space: nowrap; }

  .developer {
    border-radius: 0 0 2.5rem 2.5rem;
    padding: 2.5rem 0; }
    .developer-col {
      width: 100%; }
      .developer-col:nth-child(1) .developer__img span {
        right: -1rem;
        top: -1rem; }
      .developer-col:nth-child(2) {
        width: 100%; }
        .developer-col:nth-child(2) .developer__img span {
          left: -1rem;
          bottom: -1rem; }
      .developer-col:nth-child(3) .developer__img span {
        right: -1rem;
        top: -1rem; }
    .developer-info li div {
      font-size: 1.5rem; }

  .hall {
    padding-top: 4rem; }
    .hall .container {
      gap: 1rem; }
    .hall-left .hall-slider__item {
      height: 17rem; }
    .hall-right .hall-slider__item {
      height: 27rem; }

  .footer {
    padding-top: 1.8rem; }
    .footer::after {
      border-radius: 2.5rem 2.5rem 0 0; }
    .footer-wrap {
      gap: 1rem; }
    .footer__address {
      gap: .75rem; }
    .footer__tel {
      font-size: 2.5rem; }
    .footer-social {
      gap: 1rem; }
      .footer-social a {
        gap: .5rem; }
    .footer__map {
      border-radius: 1.5rem; }
    .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 */
