/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.5s;
  z-index: 100;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
}
@media (max-width: 1024px) {
  .header__inner {
    padding: 20px 0;
  }
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__logo {
  z-index: 1000;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1024px) {
  .header__nav-list {
    gap: 25px;
  }
}
@media (max-width: 900px) {
  .header__nav-list {
    gap: 15px;
  }
}
.header__nav-link {
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 2.5%;
  color: var(--light);
}
@media (max-width: 1024px) {
  .header__nav-link {
    font-size: 14px;
  }
}
.header__langs {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  background-color: transparent;
  appearance: auto;
  -webkit-appearance: auto;
  -moz-appearance: auto;
}
@media (max-width: 768px) {
  .header__langs {
    margin-left: auto;
  }
}
.header__langs option {
  color: var(--black);
}
/* HEADER */
/* INTRO */
.intro {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media (max-width: 1024px) {
  .intro {
    background-attachment: scroll;
  }
}
.intro__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: var(--height-header) 0 30px;
}
@media (max-width: 768px) {
  .intro__inner {
    align-items: center;
    padding: var(--height-header) 0 10px;
  }
}
.intro__title {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 1500px;
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .intro__title {
    font-size: 46px;
  }
}
@media (max-width: 1024px) {
  .intro__title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .intro__title {
    max-width: none;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .intro__title {
    font-size: 34px;
  }
}
@media (max-width: 360px) {
  .intro__title {
    font-size: 30px;
  }
}
.intro__subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.45px;
  margin-bottom: 30px;
  max-width: 835px;
}
@media (max-width: 1440px) {
  .intro__subtitle {
    font-size: 16px;
    max-width: 650px;
  }
}
@media (max-width: 768px) {
  .intro__subtitle {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .intro__subtitle {
    font-size: 14px;
  }
}
.intro__link {
  max-width: 400px;
  background: linear-gradient(180deg, #0047ff, #0d3db8 100%, #fff 0);
  box-shadow: inset 0 1.5px 1.5px #ffffff26;
}
@media (max-width: 1440px) {
  .intro__link {
    font-size: 16px;
    max-width: 300px;
  }
}
@media (max-width: 1440px) {
  .intro__link {
    font-size: 14px;
    max-width: 250px;
  }
}
/* INTRO */
/* SPACES */
.slider__inner {
  padding: 140px 0 120px;
  position: relative;
}
@media (max-width: 1200px) {
  .slider__inner {
    padding: 100px 0 40px;
  }
}
@media (max-width: 768px) {
  .slider__inner {
    padding: 70px 0 10px;
  }
}
.slider__overlay {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 1440px) {
  .slider__overlay {
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  .slider__overlay {
    gap: 30px;
  }
}
.slider__subtitle {
  max-width: 830px;
}
@media (max-width: 1024px) {
  .slider__subtitle {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .slider__subtitle {
    font-size: 14px;
  }
}
.slider__swiper {
  padding-bottom: 60px;
}
.slider__slide {
  max-width: 540px;
  width: 100%;
}
@media (max-width: 900px) {
  .slider__slide {
    max-width: 400px;
  }
}
@media (max-width: 480px) {
  .slider__slide {
    max-width: initial;
  }
}
.slider__slide-box {
  position: relative;
}
@media (hover: hover) {
  .slider__slide-box:hover img {
    transform: scale(1.1);
  }
}
.slider__slide-picture {
  margin-bottom: 15px;
  overflow: hidden;
}
.slider__slide-picture::after {
  content: "";
  position: absolute;
  inset: 0;
}
.slider__slide-picture img {
  transition: 0.5s;
  height: 600px;
  object-fit: cover;
  object-position: bottom;
}
@media (max-width: 900px) {
  .slider__slide-picture img {
    height: 550px;
  }
}
@media (max-width: 768px) {
  .slider__slide-picture img {
    height: 450px;
  }
}
@media (max-width: 600px) {
  .slider__slide-picture img {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .slider__slide-picture img {
    height: 450px;
  }
}
.slider__slide-title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.6px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .slider__slide-title {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .slider__slide-title {
    font-size: 20px;
  }
}
.slider__next,
.slider__prev {
  top: 97% !important;
}
@media (max-width: 1200px) {
  .slider__next,
  .slider__prev {
    top: 96% !important;
  }
}
.slider__prev {
  left: auto !important;
  right: 150px !important;
}
.slider__next {
  right: 100px !important;
}
@media (max-width: 768px) {
  .slider__prev {
    left: 35% !important;
    right: auto !important;
  }
}
@media (max-width: 480px) {
  .slider__prev {
    font-size: 16px;
    left: 40% !important;
  }
}
@media (max-width: 768px) {
  .slider__next {
    right: 35% !important;
  }
}
@media (max-width: 480px) {
  .slider__next {
    font-size: 16px;
    right: 40% !important;
  }
}

.slider__prev::after,
.slider__next::after {
  font-size: 25px;
  color: var(--white) !important;
}
/* SPACES */
/* ADVANTAGES */
.advantages__inner {
  padding: 90px 0 105px;
}
@media (max-width: 1200px) {
  .advantages__inner {
    padding: 80px 0;
  }
}
@media (max-width: 1024px) {
  .advantages__inner {
    padding: 60px 0;
  }
}
.advantages__list {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1350px) {
  .advantages__list {
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .advantages__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .advantages__list {
    gap: 15px;
  }
}
@media (max-width: 540px) {
  .advantages__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.advantages__box {
  align-items: center;
  background-color: var(--dark);
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 65px 10px;
}
@media (max-width: 1350px) {
  .advantages__box {
    padding: 45px 10px;
  }
}
.advantages__icon {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .advantages__icon {
    margin-bottom: 30px;
  }
}
.advantages__label {
  max-width: 315px;
  text-align: center;
}
@media (max-width: 1350px) {
  .advantages__label {
    font-size: 16px;
  }
}
@media (max-width: 1152px) {
  .advantages__label {
    font-size: 15px;
  }
}
@media (max-width: 1024px) {
  .advantages__label {
    font-size: 16px;
  }
}
/* ADVANTAGES */
/* FAQS */
.faqs__inner {
  padding: 90px 0;
}
@media (max-width: 1024px) {
  .faqs__inner {
    padding: 45px 0;
  }
}
.faqs__box {
  border-bottom: 1px solid #0047ff;
}
.faqs__box.is-open {
  background-color: var(--dark);
  border: 1px solid #0047ff;
}
.faqs__box.is-open .faqs__header {
  padding: 30px 30px 15px 30px;
}
@media (max-width: 1024px) {
  .faqs__box.is-open .faqs__header {
    padding: 20px 20px 10px 20px;
  }
}
@media (max-width: 768px) {
  .faqs__box.is-open .faqs__header {
    padding: 20px 15px 10px 15px;
  }
}
.faqs__box.is-open .faqs__icon {
  transform: rotate(45deg);
}
.faqs__box.is-open .faqs__content {
  padding: 15px 30px 30px;
}
@media (max-width: 1024px) {
  .faqs__box.is-open .faqs__content {
    padding: 10px 20px 20px;
  }
}
@media (max-width: 768px) {
  .faqs__box.is-open .faqs__content {
    padding: 10px 15px 15px;
  }
}
.faqs__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 30px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .faqs__header {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .faqs__header {
    padding: 20px 15px;
  }
}
.faqs__question {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.6px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .faqs__question {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .faqs__question {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .faqs__question {
    font-size: 16px;
  }
}
.faqs__icon {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .faqs__icon {
    width: 35px;
  }
}
@media (max-width: 480px) {
  .faqs__icon {
    width: 25px;
  }
}
.faqs__content {
  font-size: 14px;
  color: var(--grey);
  letter-spacing: 0.45px;
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .faqs__content {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .faqs__content {
    padding: 0 15px;
  }
}
/* FAQS */
/* BLOG */
.articles__inner {
  padding: 90px 0 50px;
}
@media (max-width: 1024px) {
  .articles__inner {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .articles__inner {
    padding: 40px 0 50px;
  }
}
.articles__list {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .articles__list {
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .articles__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.articles__box {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.articles__image {
  height: auto;
}
.articles__image img {
  height: 350px;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .articles__image img {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .articles__image img {
    height: 250px;
  }
}
@media (max-width: 480px) {
  .articles__image img {
    height: 200px;
  }
}
@media (hover: hover) {
  .articles__image {
    overflow: hidden;
  }
  .articles__box:hover img {
    transform: scale(1.1);
  }
}
.articles__image img {
  transition: 0.5s;
}
.articles__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--dark);
  padding: 30px;
}
@media (max-width: 768px) {
  .articles__content {
    padding: 20px 15px;
  }
}
.articles__date {
  color: var(--grey);
  font-size: 12px;
  margin-bottom: 10px;
}
.articles__label {
  font-size: 20px;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .articles__label {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .articles__label {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .articles__label {
    font-size: 14px;
  }
}
.articles__link {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.articles__link::after {
  content: "";
  position: absolute;
  inset: 0;
}
.articles__link span:first-child {
  font-size: 16px;
  letter-spacing: 0.4px;
}
@media (max-width: 768px) {
  .articles__link span:first-child {
    font-size: 14px;
  }
}
.articles__link span:last-child {
  display: flex;
  align-items: center;
}
/* BLOG */
/* ARTICLE */
.article__inner {
  padding: 130px 0;
}
@media (max-width: 1024px) {
  .article__inner {
    padding-bottom: 120px;
  }
}
@media (max-width: 768px) {
  .article__inner {
    padding-bottom: 80px;
    padding-top: 100px;
  }
}
.article__title {
  color: var(--white);
  font-size: clamp(25px, 3vw + 1rem, 50px);
  font-weight: 600;
  margin-bottom: 40px;
  margin-inline: auto;
  text-align: center;
}
.article__content {
  text-align: justify;
}
.article__content img {
  width: 100%;
}
@media (max-width: 1024px) {
  .article__content {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .article__content {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .article__content {
    font-size: 18px;
  }
}
.articles__more {
  font-size: 15px;
  max-width: 260px;
  height: 45px;
}
/* ARTICLE */
/* CONTACT */
.contact__inner {
  padding: 40px 0 105px;
}
@media (max-width: 480px) {
  .contact__inner {
    padding: 40px 0 80px;
  }
}
.contact__overlay {
  display: flex;
  border: 1px solid var(--blue);
}
@media (max-width: 768px) {
  .contact__overlay {
    flex-direction: column;
  }
}
.contact__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  max-width: 565px;
  padding: 50px;
  width: 100%;
}
@media (max-width: 1350px) {
  .contact__content {
    padding: 30px 50px;
  }
}
@media (max-width: 1050px) {
  .contact__content {
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  .contact__content {
    align-items: center;
    max-width: initial;
    padding: 30px;
  }
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact__link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact__link span:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--blue);
  border-radius: 50%;
  height: 30px;
  width: 30px;
}
.contact__link span:last-child {
  letter-spacing: 0.6px;
}
@media (max-width: 1350px) {
  .contact__link span:last-child {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .contact__link span:last-child {
    font-size: 14px;
  }
}
.contact__address {
  letter-spacing: 0.6px;
}
@media (max-width: 1350px) {
  .contact__address {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .contact__address {
    font-size: 14px;
    text-align: center;
  }
}
.contact__socials {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 25px;
}
@media (max-width: 1350px) {
  .contact__socials {
    margin-top: 15px;
  }
}
@media (max-width: 768px) {
  .contact__socials {
    justify-content: center;
  }
}
.contact__social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--blue);
  border-radius: 50%;
  height: 55px;
  width: 55px;
}
@media (max-width: 1350px) {
  .contact__social-link {
    height: 45px;
    width: 45px;
  }
}
@media (max-width: 480px) {
  .contact__social-link {
    height: 40px;
    width: 40px;
  }
}
.contact__social-link img {
  height: 32px;
}
@media (max-width: 1350px) {
  .contact__social-link img {
    height: 25px;
    width: 25px;
  }
}
@media (max-width: 480px) {
  .contact__social-link img {
    height: 20px;
    width: 20px;
  }
}
.contact__iframe {
  height: 0;
  overflow: hidden;
  padding-bottom: 29.17%;
  position: relative;
  width: 100%;
}
.contact__iframe iframe {
  filter: grayscale(100%) invert(100%);
  height: 100%;
  left: 0;
  outline-width: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media (max-width: 1050px) {
  .contact__iframe {
    padding-bottom: 40.17%;
  }
}
@media (max-width: 600px) {
  .contact__iframe {
    padding-bottom: 70%;
  }
}
@media (max-width: 480px) {
  .contact__iframe {
    padding-bottom: 80%;
  }
}
@media (max-width: 360px) {
  .contact__iframe {
    padding-bottom: 90%;
  }
}
/* CONTACT */
/* INTRO BLOG */
.intro-blog {
  background-attachment: fixed;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1024px) {
  .intro-blog {
    background-attachment: scroll;
  }
}
.intro-blog__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 315px 0 225px;
}
@media (max-width: 1350px) {
  .intro-blog__inner {
    padding: 245px 0 225px;
  }
}
@media (max-width: 1024px) {
  .intro-blog__inner {
    padding: 200px 0 170px;
  }
}
@media (max-width: 768px) {
  .intro-blog__inner {
    padding: 150px 0 120px;
  }
}
.intro-blog__title {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0.03em;
  max-width: 1500px;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 1350px) {
  .intro-blog__title {
    font-size: 45px;
  }
}
@media (max-width: 1024px) {
  .intro-blog__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .intro-blog__title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .intro-blog__title {
    font-size: 25px;
  }
}
/* INTRO BLOG */
/* INTRO PAGE */
.intro-page {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
}
.intro-page__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - var(--height-header));
  padding: var(--height-header) 0 30px;
}
@media (max-width: 768px) {
  .intro-page__inner {
    padding: var(--height-header) 0 10px;
  }
}
.intro-page__title {
  margin-bottom: 50px;
}
@media (max-width: 1350px) {
  .intro-page__title {
    margin-bottom: 45px;
  }
}
@media (max-width: 1152px) {
  .intro-page__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .intro-page__title {
    margin-bottom: 20px;
  }
}
.intro-page__subtitle {
  margin-bottom: 50px;
  max-width: 740px;
  text-align: center;
}
@media (max-width: 1024px) {
  .intro-page__subtitle {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .intro-page__subtitle {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .intro-page__subtitle {
    margin-bottom: 30px;
  }
}
.intro-page__link {
  max-width: 340px;
  width: 100%;
  padding: 15px;
}
@media (max-width: 1152px) {
  .intro-page__link {
    max-width: 300px;
  }
}
@media (max-width: 1024px) {
  .intro-page__link {
    max-width: 280px;
  }
}
@media (max-width: 768px) {
  .intro-page__link {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .intro-page__link {
    font-size: 14px;
    max-width: 240px;
  }
}
/* INTRO PAGE */
/* GALLERY */
.gallery__inner {
  padding: 75px 0;
}
@media (max-width: 1024px) {
  .gallery__inner {
    padding: 50px 0;
  }
}
@media (max-width: 480px) {
  .gallery__inner {
    padding: 40px 0;
  }
}
.gallery__title {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .gallery__title {
    margin-bottom: 35px;
  }
}
@media (max-width: 480px) {
  .gallery__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 360px) {
  .gallery__title {
    margin-bottom: 25px;
  }
}
.gallery__wrapper {
  padding-bottom: 55px;
}
/* GALLERY */
/* STEPS RESIDENT */
.steps-resident__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 40px 0px 90px;
}
@media (max-width: 1024px) {
  .steps-resident__inner {
    padding: 40px 0px 60px;
  }
}
.steps-resident__title {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .steps-resident__title {
    margin-bottom: 35px;
  }
}
@media (max-width: 480px) {
  .steps-resident__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 360px) {
  .steps-resident__title {
    margin-bottom: 25px;
  }
}
.steps-resident__subtitle {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 95px;
  max-width: 660px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}
@media (max-width: 1024px) {
  .steps-resident__subtitle {
    margin-bottom: 75px;
  }
}
@media (max-width: 768px) {
  .steps-resident__subtitle {
    margin-bottom: 45px;
  }
}
.steps-resident__list {
  display: grid;
  gap: 90px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1350px) {
  .steps-resident__list {
    gap: 40px;
  }
}
@media (max-width: 1152px) {
  .steps-resident__list {
    gap: 40px 20px;
  }
}
@media (max-width: 1024px) {
  .steps-resident__list {
    gap: 40px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .steps-resident__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .steps-resident__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.steps-resident__box {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.steps-resident__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--white);
  border-radius: 50%;
  height: 155px;
  margin-bottom: 30px;
  width: 155px;
}
@media (max-width: 1024px) {
  .steps-resident__icon {
    height: 130px;
    width: 130px;
  }
}
@media (max-width: 768px) {
  .steps-resident__icon {
    height: 100px;
    width: 100px;
  }
}
@media (max-width: 1024px) {
  .steps-resident__icon img {
    height: 75px;
    width: 75px;
  }
}
@media (max-width: 768px) {
  .steps-resident__icon img {
    height: 55px;
    width: 55px;
  }
}
.steps-resident__circle {
  background-color: var(--blue);
  border-radius: 50%;
  height: 35px;
  margin-bottom: 20px;
  width: 35px;
}
.steps-resident__number {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .steps-resident__number {
    font-size: 38px;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .steps-resident__number {
    font-size: 35px;
    margin-bottom: 10px;
  }
}
.steps-resident__text {
  font-size: 16px;
  letter-spacing: 0.4px;
  text-align: center;
}
@media (max-width: 480px) {
  .steps-resident__text {
    font-size: 14px;
  }
}
/* STEPS RESIDENT */
/* ADVANTAGES RESIDENT */
.advantages-residents__inner {
  padding: 80px 0;
}
@media (max-width: 1024px) {
  .advantages-residents__inner {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .advantages-residents__inner {
    padding: 40px 0;
  }
}
.advantages-residents__title {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .advantages-residents__title {
    margin-bottom: 35px;
  }
}
@media (max-width: 480px) {
  .advantages-residents__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 360px) {
  .advantages-residents__title {
    margin-bottom: 25px;
  }
}
.advantages-residents__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 768px) {
  .advantages-residents__list {
    gap: 40px;
  }
}
.advantages-residents__label {
  font-size: 28px;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .advantages-residents__label {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .advantages-residents__label {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .advantages-residents__label {
    font-size: 18px;
  }
}
.advantages-residents__text {
  font-size: 24px;
}
@media (max-width: 1024px) {
  .advantages-residents__text {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .advantages-residents__text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .advantages-residents__text {
    font-size: 16px;
  }
}
/* ADVANTAGES RESIDENT */
/* HUMANS */
.humans__inner {
  padding: 80px 0;
}
@media (max-width: 1024px) {
  .humans__inner {
    padding: 60px 0;
  }
}
@media (max-width: 480px) {
  .humans__inner {
    padding: 40px 0;
  }
}
.humans__title {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .humans__title {
    margin-bottom: 35px;
  }
}
@media (max-width: 480px) {
  .humans__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 360px) {
  .humans__title {
    margin-bottom: 25px;
  }
}
.humans__wrapper {
  padding-bottom: 55px;
}
.humans__slide {
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 570px;
}
@media (max-width: 640px) {
  .humans__slide {
    max-width: none;
  }
}
.humans__slide-picture {
  margin-bottom: 25px;
}
.humans__slide-picture img {
  border-radius: 50%;
}
.humans__slide-name {
  font-size: 32px;
  letter-spacing: 0.8px;
  line-height: 1.6;
  margin-bottom: 5px;
  text-align: center;
}
@media (max-width: 1152px) {
  .humans__slide-name {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .humans__slide-name {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  .humans__slide-name {
    font-size: 20px;
  }
}
.humans__slide-job {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
}
.humans__slide-description {
  font-size: 20px;
  letter-spacing: 0.5px;
  text-align: center;
}
@media (max-width: 1024px) {
  .humans__slide-description {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .humans__slide-description {
    font-size: 16px;
  }
}
/* HUMANS */
/* ABOUT INTRO */
.about-intro {
  background-attachment: fixed;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
}
@media (max-width: 1024px) {
  .about-intro {
    background-attachment: scroll;
  }
}
.about-intro__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - var(--height-header));
  padding: var(--height-header) 0 30px;
}
@media (max-width: 768px) {
  .about-intro__inner {
    padding: var(--height-header) 0 10px;
  }
}
.about-intro__title {
  font-size: clamp(25px, 3vw + 1rem, 42px);
  max-width: 1350px;
  text-align: center;
}
/* ABOUT INTRO */
/* OUR VALUES */
.our-values__inner {
  padding: 80px 0 50px;
}
@media (max-width: 1024px) {
  .our-values__inner {
    padding: 80px 0 30px;
  }
}
@media (max-width: 768px) {
  .our-values__inner {
    padding: 60px 0 30px;
  }
}
.our-values__title {
  text-transform: uppercase;
  margin-bottom: 40px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .our-values__title {
    margin-bottom: 35px;
  }
}
@media (max-width: 480px) {
  .our-values__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 360px) {
  .our-values__title {
    margin-bottom: 25px;
  }
}
.our-values__list {
  display: grid;
  gap: 120px 50px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1024px) {
  .our-values__list {
    gap: 70px 50px;
  }
}
@media (max-width: 768px) {
  .our-values__list {
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .our-values__list {
    gap: 30px 15px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.our-values__box {
  height: 100%;
}
.our-values__picture {
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .our-values__picture {
    margin-bottom: 30px;
  }
}
.our-values__label {
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 25px;
  text-transform: uppercase;
}
@media (max-width: 1152px) {
  .our-values__label {
    font-size: 35px;
  }
}
@media (max-width: 1024px) {
  .our-values__label {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .our-values__label {
    font-size: 25px;
  }
}
@media (max-width: 640px) {
  .our-values__label {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
.our-values__text {
  font-size: 24px;
  line-height: 1.6;
}
@media (max-width: 1152px) {
  .our-values__text {
    font-size: 22px;
  }
}
@media (max-width: 1024px) {
  .our-values__text {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .our-values__text {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .our-values__text {
    font-size: 16px;
  }
}
/* OUR VALUES */
/* FOUNDER */
.founder__inner {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .founder__inner {
    padding: 60px 0;
  }
}
@media (max-width: 480px) {
  .founder__inner {
    padding: 40px 0;
  }
}
.founder__title {
  line-height: 1.5;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
}
@media (max-width: 1152px) {
  .founder__title {
    text-align: center;
  }
}
.founder__picture {
  float: right;
  margin-bottom: 50px;
  margin-left: 50px;
  max-width: 47.8%;
}
@media (max-width: 768px) {
  .founder__picture {
    float: none;
    margin-bottom: 30px;
    margin-left: 0;
    max-width: none;
  }
}
.founder__content {
  font-size: 16px;
}
/* FOUNDER */
/* INFORMATION */
.information__inner {
  padding: 160px 0 80px;
}
@media (max-width: 1024px) {
  .information__inner {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .information__inner {
    padding: 60px 0;
  }
}
@media (max-width: 480px) {
  .information__inner {
    padding: 40px 0;
  }
}
.information__overlay {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media (max-width: 1440px) {
  .information__overlay {
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  .information__overlay {
    gap: 30px;
    margin-bottom: 50px;
  }
}
.information__title {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
}
.information__subtitle {
  max-width: 830px;
}
@media (max-width: 1024px) {
  .information__subtitle {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .information__subtitle {
    font-size: 14px;
  }
}
.information__video {
  height: 0;
  overflow: hidden;
  padding-bottom: 45.25%;
  position: relative;
  width: 100%;
}
.information__video iframe {
  border-width: 0;
  height: 100%;
  left: 0;
  outline-width: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
/* INFORMATION */
/* INFORMATION SPACE */
.information-space__inner {
  padding: 90px 0;
}
@media (max-width: 1024px) {
  .information-space__inner {
    padding: 50px 0;
  }
}
.information-space__list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 1024px) {
  .information-space__list {
    gap: 50px;
  }
}
.information-space__box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
@media (max-width: 1024px) {
  .information-space__box {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 768px) {
  .information-space__box {
    gap: 30px;
  }
}
.information-space__iframe {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  width: 100%;
  max-width: 810px;
}
.information-space__iframe img {
  width: 100%;
}
@media (max-width: 1024px) {
  .information-space__iframe {
    max-width: initial;
  }
}
.information-space__iframe.is-honest {
  order: 2;
}
@media (max-width: 1024px) {
  .information-space__iframe.is-honest {
    order: 1;
  }
}
.information-space__iframe video {
  border-width: 0;
  height: 100%;
  left: 0;
  outline-width: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.information-space__content {
  max-width: 810px;
}
@media (max-width: 1024px) {
  .information-space__content {
    max-width: initial;
  }
}
.information-space__content.is-honest {
  order: 1;
}
@media (max-width: 1024px) {
  .information-space__content.is-honest {
    order: 2;
  }
}
.information-space__title {
  font-size: clamp(24px, 2vw + 1rem, 40px);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 25px;
}
.information-space__subtitle {
  margin-bottom: 60px;
}
@media (max-width: 1152px) {
  .information-space__subtitle {
    margin-bottom: 35px;
  }
}
@media (max-width: 768px) {
  .information-space__subtitle {
    font-size: 16px;
  }
}
.information-space__advantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 45px;
}
@media (max-width: 1152px) {
  .information-space__advantages {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .information-space__advantages {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-bottom: 30px;
  }
}
.information-space__advantage-box {
  display: flex;
  gap: 25px;
}
.information-space__advantage-circle {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  border: 1px solid var(--blue);
  border-radius: 50%;
}
.information-space__advantage-text {
  font-size: 16px;
}
.information-space__link {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 255px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto 0 0;
}
@media (max-width: 1024px) {
  .information-space__link {
    height: 55px;
  }
}
@media (max-width: 768px) {
  .information-space__link {
    font-size: 16px;
    height: 45px;
    max-width: 220px;
  }
}
@media (max-width: 480px) {
  .information-space__link {
    font-size: 14px;
    max-width: 200px;
  }
}
/* INFORMATION SPACE */
/* DEMO DAY */
.demoday {
  position: relative;
}
.demoday__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 170px 0 135px;
}
@media (max-width: 1024px) {
  .demoday__inner {
    padding: 130px 0;
  }
}
@media (max-width: 768px) {
  .demoday__inner {
    padding: 100px 0;
  }
}
@media (max-width: 480px) {
  .demoday__inner {
    padding: 70px 0;
  }
}
@media (max-width: 360px) {
  .demoday__inner {
    padding: 50px 0;
  }
}
.demoday__title {
  text-align: center;
}
.demoday__subtitle {
  font-weight: 500;
  margin-bottom: 50px;
  max-width: 950px;
  text-align: center;
}
@media (max-width: 768px) {
  .demoday__subtitle {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .demoday__subtitle {
    font-size: 14px;
  }
}
.demoday__form {
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 540px;
  width: 100%;
}
.demoday__field {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background: #09090980;
  border: none;
  border-radius: 4px;
  font-size: 17px;
  padding: 10px 20px;
  width: 100%;
  max-width: 540px;
  border: 1px solid var(--blue);
  color: var(--white);
}
.demoday__field::placeholder {
  color: #9e8888;
}
.demoday__submit {
  font-size: 15px;
  background: linear-gradient(180deg, #0047ff, #0d3db8 100%, #fff 0);
  box-shadow: inset 0 1.5px 1.5px #ffffff26;
  max-width: 540px;
  height: 50px;
}
.demoday-decor {
  position: absolute;
  left: 0;
  top: 60%;
  transform: translateY(-50%);
  width: 100%;
  z-index: -1;
}
.demoday-decor img {
  width: 100%;
}
/* DEMO DAY */
/* PLANS */
.plans__wrapper {
  padding-bottom: 55px;
}
.plans__slide {
  height: 100%;
}
.plans__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  border: 1px solid var(--blue);
  padding: 30px;
  height: 100%;
  width: 100%;
}
@media (max-width: 1024px) {
  .plans__box {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .plans__box {
    gap: 15px;
  }
}
.plans__label {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 768px) {
  .plans__label {
    font-size: 20px;
  }
}
.plans__body {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}
@media (max-width: 768px) {
  .plans__body {
    gap: 15px;
  }
}
.plans__tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}
.plans__tab {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  height: 55px;
  text-transform: uppercase;
  width: 100%;
  border: 1px solid #686868;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .plans__tab {
    font-size: 16px;
  }
}
.plans__tab.is-active {
  border: 1px solid var(--blue);
}
.plans__content {
  display: none;
  flex-direction: column;
  gap: 25px;
}
@media (max-width: 768px) {
  .plans__content {
    gap: 15px;
  }
}
.plans__content.is-active {
  display: flex;
}
.plans__price {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  color: #868686;
  text-align: center;
}
@media (max-width: 768px) {
  .plans__price {
    font-size: 20px;
  }
}
.plans__subs {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 768px) {
  .plans__subs {
    gap: 10px;
  }
}
.plans__sub-box {
  display: flex;
  align-items: center;
  gap: 15px;
}
.plans__circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #0047ff 19.57%, #0d3db8 62.61%);
}
.plans__link {
  width: 100%;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .plans__link {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .plans__link {
    font-size: 16px;
  }
}
/* PLANS */
/* BOOKING */
.booking__inner {
  padding: calc(var(--height-header) + 100px) 0 100px;
}
@media (max-width: 768px) {
  .booking__inner {
    padding: calc(var(--height-header) + 40px) 0 80px;
  }
}
.booking__form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  width: 100%;
}
@media (max-width: 1024px) {
  .booking__form {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .booking__form {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
}
.booking__field {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background: #09090980;
  border: none;
  border-radius: 4px;
  font-size: 17px;
  padding: 0 20px;
  width: 100%;
  max-width: 550px;
  height: 50px;
  border: 1px solid var(--blue);
  color: var(--white);
}
.booking__field::placeholder {
  color: #9e8888;
}
.booking__field::-webkit-calendar-picker-indicator {
  color: var(--white);
  background-color: var(--white);
}
.booking__submit {
  font-size: 15px;
  background: linear-gradient(180deg, #0047ff, #0d3db8 100%, #fff 0);
  box-shadow: inset 0 1.5px 1.5px #ffffff26;
  height: 50px;
}
/* BOOKING */
/* FOOTER */
.footer {
  background-color: var(--dark);
}
.footer__inner {
  padding: 45px 0 40px;
}
.footer__overlay {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .footer__overlay {
    gap: 30px 50px;
    margin-bottom: 40px;
  }
}
@media (max-width: 800px) {
  .footer__overlay {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 540px) {
  .footer__overlay {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .footer__overlay {
    align-items: center;
    gap: 40px;
  }
}
.footer__payments {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 640px) {
  .footer__payments {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .footer__payments {
    flex-direction: column;
    gap: 30px;
  }
}
.footer__nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .footer__nav-list {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .footer__nav-list {
    align-items: center;
  }
}
@media (max-width: 480px) {
  .footer__payment {
    max-width: 80px;
  }
}
.footer__copyright,
.footer__nav-link {
  font-size: 15px;
  color: var(--dark-grey);
}
@media (max-width: 480px) {
  .footer__copyright {
    display: flex;
    justify-content: center;
    text-align: center;
  }
}
/* FOOTER */
