@charset "UTF-8";
:root {
  --color-brand-beige: #CDA679;
  --color-light-beige: #E6D3BC;
  --color-accent-black: #272727;
  --color-secondary-gray: #D2D2D2;
  --color-white: #FFFFFF;
  --color-gradient-brand-gold: linear-gradient(64.15deg, #B39067 4.93%, #EDC892 48.93%, #B39067 92.93%);
  --color-gradient-photo-darker-180: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  --color-gradient-photo-darker: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  --color-mobile-gradient-photo-darker: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  --transition-default: all .2s ease;
}

@font-face {
  font-family: "Arsenal";
  src: url("../fonts/Arsenal/Arsenal-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Arsenal";
  src: url("../fonts/Arsenal/Arsenal-Italic.ttf");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Arsenal";
  src: url("../fonts/Arsenal/Arsenal-Bold.ttf");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Arsenal";
  src: url("../fonts/Arsenal/Arsenal-BoldItalic.ttf");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "", sans-serif;
  src: url("path/to/your/font.woff2") format("woff2");
  unicode-range: U+0021; /* Unicode для символа '!' */
}
/* Стилизация скроллбара */
*::-webkit-scrollbar {
  width: 12px; /* Ширина скроллбара */
}

/* Дорожка скроллбара */
*::-webkit-scrollbar-track {
  background: #f1f1f1; /* Цвет фона дорожки */
  border-radius: 10px; /* Закругление углов */
}

/* Ползунок скроллбара */
*::-webkit-scrollbar-thumb {
  background: #888; /* Цвет ползунка */
  border-radius: 10px; /* Закругление углов */
  border: 3px solid #f1f1f1; /* Отступ вокруг ползунка */
}

/* Изменение цвета ползунка при наведении */
*::-webkit-scrollbar-thumb:hover {
  background: #555; /* Цвет ползунка при наведении */
}

.ayal {
  display: block;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

blockquote,
body,
dd,
dl,
figcaption,
figure,
h1,
h2,
h3,
h4,
li,
ol,
p,
ul {
  margin: 0;
}

body {
  font-family: "HelveticaNeue", sans-serif;
  font-weight: 400;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
  height: 100%;
}

ol,
ul {
  padding: 0;
  list-style: none;
}

a {
  font-family: inherit;
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

html {
  font-size: 1.0526315789vw;
}
@media (max-width: 1024px) {
  html {
    font-size: 4.1237113402vw;
  }
}
@media (max-width: 560px) {
  html {
    font-size: 4.1237113402vw;
  }
}

body {
  background-color: var(--color-white);
  color: var(--color-accent-black);
  font-family: "Arsenal", sans-serif;
  overscroll-behavior-y: contain;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased; /* Сглаживание для WebKit браузеров */
  -moz-osx-font-smoothing: grayscale; /* Сглаживание для Firefox на macOS */
  font-smooth: always;
}

.container {
  max-width: 100rem;
  padding-left: 4rem;
  padding-right: 4rem;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (max-width: 560px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

.container--small {
  padding-left: 17.875rem;
  padding-right: 17.875rem;
}
@media (max-width: 1024px) {
  .container--small {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 560px) {
  .container--small {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.touchable {
  padding: 0.5rem;
  margin: -0.5rem;
}

.view {
  height: 100vh;
}
@media (max-width: 1024px) {
  .view {
    height: auto;
  }
}
.view__title h2,
.view__title h1 {
  font-weight: 700;
  font-size: 4rem;
  line-height: 4rem;
  text-transform: uppercase;
  letter-spacing: -0.12rem;
}
@media (max-width: 1024px) {
  .view__title h2,
  .view__title h1 {
    font-weight: 700;
    font-size: 2rem;
    line-height: 2.25rem;
    text-transform: uppercase;
  }
}

.line--2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  white-space: normal;
}

.line--3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  white-space: normal;
}

.line--4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  white-space: normal;
}

.hystmodal__window {
  background: transparent;
  width: auto;
}

.hystmodal__close:focus {
  outline: none;
}

@media (max-width: 1024px) {
  .hystmodal__close {
    top: 1rem;
    right: 1rem;
  }
}

.icon {
  width: 1.5rem;
  height: 1.5rem;
}

.button {
  display: block;
  -webkit-user-select: none;
          user-select: none;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6.25rem;
  color: var(--color-white);
  background-color: var(--color-brand-beige);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.1375rem;
  box-shadow: 0.125rem 0.125rem 0.5rem 0rem rgba(194, 140, 59, 0.3490196078);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
@media (hover: hover) {
  .button:hover {
    background-color: #C08E54;
    box-shadow: 2px 2px 8px 0px rgba(194, 140, 59, 0.3490196078);
  }
}
@media (hover: none) {
  .button:active, .button:focus {
    background-color: #C08E54;
    box-shadow: 2px 2px 8px 0px rgba(194, 140, 59, 0.3490196078);
  }
}

.radio-checkbox {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.625rem;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  position: relative;
}

.radio-checkbox input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}

.radio-mark {
  flex-shrink: 0;
  position: relative;
  height: 1rem;
  width: 1rem;
  background-color: transparent;
  border: 0.0625rem solid var(--color-secondary-gray);
  border-radius: 50%;
  margin-top: 0.2rem;
}

/* Hover effect */
.radio-checkbox:hover input ~ .radio-mark {
  border-color: var(--color-brand-beige);
}

/* Checked state */
.radio-checkbox input:checked ~ .radio-mark {
  border: 0.35rem solid var(--color-secondary-gray);
  border-color: var(--color-brand-beige);
}

/* Inner dot */
.radio-mark:after {
  content: "";
  position: absolute;
  display: none;
  left: 50%;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Show dot when checked */
.radio-checkbox input:checked ~ .radio-mark:after {
  display: block;
}

/* Disabled state */
.radio-checkbox input:disabled ~ .radio-mark {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Focus state */
.radio-checkbox input:focus-visible ~ .radio-mark {
  outline: 0.0625rem solid var(--color-brand-beige);
  outline-offset: 0.0625rem;
}

header {
  background-color: var(--color-white);
  position: fixed;
  width: 100vw;
  top: 0;
  left: 0;
  z-index: 10;
}
header .header {
  height: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header > * {
  flex: 1;
}
header .header__burger--opener {
  display: block;
}
header .header__burger--closer {
  display: none;
}
header .header__burger button {
  background-color: transparent;
  border: none;
}
header .header__burger button .icon {
  width: 2rem;
  height: 2rem;
}
@media (max-width: 1024px) {
  header .header__burger button .icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}
header .header__logo {
  flex: none;
  text-align: center;
  line-height: 0;
  height: 2.25rem;
}
header .header__logo img {
  height: 100%;
}
header .header__contacts {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}
header .header__contacts-tel {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5rem;
}
@media (max-width: 1024px) {
  header .header__contacts-tel {
    display: none;
  }
}
@media (max-width: 1024px) {
  header .header__contacts-button {
    display: none;
  }
}
header .header-window {
  display: none;
  padding: 8rem 0;
  height: calc(100vh - 4rem);
  overflow: auto;
}
@media (max-width: 1024px) {
  header .header-window {
    padding: 2rem 0;
  }
}
header .header-window__grid {
  display: grid;
  row-gap: 5rem;
  grid-template-areas: "menu info" "menu social";
}
@media (max-width: 1024px) {
  header .header-window__grid {
    row-gap: 0rem;
    grid-template-areas: "menu" "info" "social";
  }
}
header .header-window__item--menu {
  grid-area: menu;
  padding-left: 10.9375rem;
  padding-right: 5rem;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2rem;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  header .header-window__item--menu {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.625rem;
    text-transform: uppercase;
    padding: 0 0.75rem;
    padding-bottom: 3rem;
  }
}
header .header-window__item--menu ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 1024px) {
  header .header-window__item--menu ul {
    gap: 2.25rem;
    padding: 0 0.5rem;
  }
}
header .header-window__item--menu ul li {
  margin: -0.25rem 0;
}
@media (max-width: 1024px) {
  header .header-window__item--menu ul li {
    margin: -0.1875rem 0;
  }
}
header .header-window__item--info {
  grid-area: info;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  header .header-window__item--info {
    gap: 2rem;
    padding: 0 1.25rem;
  }
}
header .header-window__item--info-item--tel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 2.7rem;
}
@media (max-width: 1024px) {
  header .header-window__item--info-item--tel {
    font-weight: 700;
    font-size: 2rem;
    line-height: 2.25rem;
    text-transform: uppercase;
  }
}
header .header-window__item--info-item--tel .vyzov {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.645rem;
  text-decoration: underline;
  margin-top: 0.25rem;
  color: var(--color-brand-beige);
}
header .header-window__item--info-item--email {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 2.7rem;
}
@media (max-width: 1024px) {
  header .header-window__item--info-item--email {
    font-weight: 700;
    font-size: 2rem;
    line-height: 2.25rem;
    text-transform: uppercase;
    text-transform: lowercase;
  }
}
header .header-window__item--info-item--time {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 2.7rem;
}
@media (max-width: 1024px) {
  header .header-window__item--info-item--time {
    font-weight: 700;
    font-size: 2rem;
    line-height: 2.25rem;
    text-transform: uppercase;
  }
}
header .header-window__item--info-item--address {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.875rem;
}
header .header-window__item--social {
  grid-area: social;
  display: flex;
  align-items: flex-start;
  line-height: 0;
  gap: 2rem;
}
header .header-window__item--social-icon {
  width: 3rem;
  height: 3rem;
  color: var(--color-secondary-gray);
}
@media (max-width: 1024px) {
  header .header-window__item--social-icon {
    width: 3rem;
    height: 3rem;
  }
}
@media (max-width: 1024px) {
  header .header-window__item--social {
    justify-content: center;
    padding: 1.5rem 0;
  }
}
header.header--active .header__contacts {
  visibility: hidden;
}
header.header--active .header-window {
  display: block;
}
header.header--active .header__burger--closer {
  display: block;
}
header.header--active .header__burger--opener {
  display: none;
}
header .header__menu {
  display: none;
}

footer {
  background-color: var(--color-accent-black);
  color: var(--color-white);
  padding-top: 7.5rem;
  padding-bottom: 5rem;
}
@media (max-width: 1024px) {
  footer {
    padding-top: 6.125rem;
    padding-bottom: 4rem;
  }
}
footer .footer__grid {
  display: grid;
  row-gap: 5rem;
  column-gap: 8.125rem;
  grid-template-areas: "menu info" "logo social";
}
@media (max-width: 1024px) {
  footer .footer__grid {
    row-gap: 2rem;
    grid-template-areas: "menu" "info" "social" "logo";
  }
}
footer .footer__item--menu {
  grid-area: menu;
  padding: 0 5rem;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2rem;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  footer .footer__item--menu {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.625rem;
    text-transform: uppercase;
    padding: 0 0.75rem;
    padding-bottom: 4rem;
  }
}
footer .footer__item--menu ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 1024px) {
  footer .footer__item--menu ul {
    gap: 2.25rem;
  }
}
footer .footer__item--menu ul li {
  margin: -0.25rem 0;
}
@media (max-width: 1024px) {
  footer .footer__item--menu ul li {
    margin: -0.1875rem 0;
  }
}
footer .footer__item--info {
  grid-area: info;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (max-width: 1024px) {
  footer .footer__item--info {
    gap: 2rem;
  }
}
footer .footer__item--info-item {
  margin: -0.5rem 0;
}
@media (max-width: 1024px) {
  footer .footer__item--info-item {
    text-align: center;
    margin: -0.25rem 0;
  }
}
footer .footer__item--info-item--tel {
  font-weight: 700;
  font-size: 4rem;
  line-height: 4rem;
  text-transform: uppercase;
  letter-spacing: -0.12rem;
}
@media (max-width: 1024px) {
  footer .footer__item--info-item--tel {
    font-weight: 700;
    font-size: 2rem;
    line-height: 2.25rem;
    text-transform: uppercase;
    margin: -0.5rem 0;
  }
}
footer .footer__item--info-item--email {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 2.75rem;
  letter-spacing: -0.075rem;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  footer .footer__item--info-item--email {
    font-weight: 700;
    font-size: 2rem;
    line-height: 2.25rem;
    text-transform: uppercase;
    text-transform: lowercase;
  }
}
footer .footer__item--info-item--time {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 2.75rem;
  letter-spacing: -0.075rem;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  footer .footer__item--info-item--time {
    font-weight: 700;
    font-size: 2rem;
    line-height: 2.25rem;
    text-transform: uppercase;
  }
}
footer .footer__item--info-item--address {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.875rem;
}
footer .footer__item--info-item--legal {
  margin-top: 2rem;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5rem;
}
footer .footer__item--info-item--conf {
  margin-top: auto;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2rem;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  footer .footer__item--info-item--conf {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.625rem;
    text-transform: uppercase;
  }
}
footer .footer__item--logo {
  grid-area: logo;
  padding: 0 5rem;
  height: 5rem;
}
@media (max-width: 1024px) {
  footer .footer__item--logo {
    height: 3.375rem;
  }
}
footer .footer__item--logo img {
  height: 100%;
}
@media (max-width: 1024px) {
  footer .footer__item--logo img {
    width: 100%;
    object-fit: contain;
  }
}
footer .footer__item--social {
  grid-area: social;
  display: flex;
  align-items: flex-end;
  line-height: 0;
  gap: 2rem;
}
footer .footer__item--social-icon {
  width: 4rem;
  height: 4rem;
  color: var(--color-secondary-gray);
}
@media (max-width: 1024px) {
  footer .footer__item--social-icon {
    width: 3rem;
    height: 3rem;
  }
}
@media (max-width: 1024px) {
  footer .footer__item--social {
    justify-content: center;
    padding: 1.5rem 0;
  }
}

@media (max-width: 1024px) {
  #modal-iframe .hystmodal__close {
    top: -2.5rem;
    right: 0rem;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' stroke='%23fff' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M22 2L2 22'/%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M2 2l20 20'/%3E%3C/svg%3E");
  }
}

.modal {
  padding: 2rem;
  background-color: var(--color-white);
  border-radius: 2rem;
  width: 25rem;
}
.modal__iframe {
  width: auto;
  border-radius: 0;
  padding: 0;
  line-height: 0;
}
.modal__iframe iframe {
  width: 90vw;
  height: 90vh;
}
@media (max-width: 1024px) {
  .modal__iframe {
    width: auto !important;
  }
  .modal__iframe iframe {
    width: calc(100vw - 3rem);
    height: 85vh;
  }
}
@media (max-width: 1024px) {
  .modal {
    width: 22rem;
  }
}
.modal-form form {
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (max-width: 1024px) {
  .modal-form form {
    width: 100%;
  }
}
.modal-form__title {
  text-align: center;
  margin-bottom: 1.5rem;
}
.modal-form__title h2 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.4rem;
  letter-spacing: -0.06rem;
  text-transform: uppercase;
  text-transform: none;
}
.modal-form__desc {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5rem;
  text-align: center;
  color: var(--color-brand-beige);
}
.modal-form__fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.modal-form__field {
  padding: 0.5rem 0;
  background-color: transparent;
  outline: none;
  border: none;
  border-bottom: 0.0625rem solid var(--color-secondary-gray);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5rem;
}
.modal-form__field::placeholder {
  color: var(--color-secondary-gray);
}
@media (max-width: 1024px) {
  .modal-form__field {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.4rem;
  }
  .modal-form__field:-webkit-autofill {
    background-color: transparent !important;
  }
}
.modal-form__soglasie {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4rem;
  font-style: italic;
}
.modal-form__soglasie a {
  text-decoration: underline;
}
.modal-form__btn {
  display: flex;
  justify-content: center;
}
.modal-form__btn .button {
  width: 100%;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5rem;
}

.loader-runner {
  z-index: 10;
  position: fixed;
  top: 100vh;
  left: 0;
  width: 100vw;
  height: 130vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
.loader-runner-top-to-bottom {
  top: 130vh;
}
.loader-runner-bottom-to-top {
  top: -130vh;
}
.loader-runner--active-top-to-bottom {
  transition: top 1.5s ease;
  top: -130vh;
}
.loader-runner--active-bottom-to-top {
  transition: top 1.5s ease;
  top: 130vh;
}
.loader-runner__title {
  width: 300px;
}
.loader-runner__title img {
  width: 100%;
}

.banner {
  width: 100%;
  height: 100vh;
  position: relative;
}
.banner__img {
  position: relative;
  line-height: 0;
  width: 100%;
  height: 100%;
}
.banner__img::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-gradient-photo-darker-180);
  z-index: 1;
}
.banner__img img, .banner__img video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  pointer-events: none;
}
.banner__text {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.875rem;
}
.banner__text p {
  margin-top: 1.5rem;
}
.banner__title {
  position: absolute;
  z-index: 2;
  bottom: 4rem;
  left: 4rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: column;
  width: calc(100% - 8rem);
  gap: 3.75rem;
  align-items: flex-start;
  color: var(--color-white);
}
.banner__title h1 {
  font-weight: 700;
  font-size: 6rem;
  line-height: 6rem;
  text-transform: uppercase;
  letter-spacing: -0.18rem;
}
@media (max-width: 1024px) {
  .banner__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
    left: 0.75rem;
    bottom: 7rem;
    width: calc(100% - 1.5rem);
  }
  .banner__title h1 {
    font-weight: 700;
    font-size: 4rem;
    line-height: 4rem;
    text-transform: uppercase;
    letter-spacing: -0.12rem;
  }
}
.banner button {
  align-self: center;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.25em;
  padding: 0.7rem 6rem;
  padding-top: 0.5rem;
}
@media (max-width: 1024px) {
  .banner button {
    width: 100%;
  }
}

.about-project {
  display: flex;
  gap: 1.375rem;
}
@media (max-width: 1024px) {
  .about-project {
    flex-direction: column;
  }
}
.about-project .container {
  padding-right: 0;
}
@media (max-width: 1024px) {
  .about-project .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (max-width: 560px) {
  .about-project .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
.about-project__description {
  flex: 1;
  flex-shrink: 0;
  padding-top: 4rem;
}
.about-project__description-top {
  max-width: 33.375rem;
}
@media (max-width: 1024px) {
  .about-project__description-top {
    margin-bottom: 2rem;
  }
}
@media (max-width: 1024px) {
  .about-project__description-middle {
    margin: 0 -1.25rem;
  }
}
.about-project__description-upper-title {
  color: var(--color-brand-beige);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.about-project__description-upper-title span {
  margin: -0.5rem 0;
}
.about-project__description-title {
  margin-bottom: 1.75rem;
}
.about-project__description-title h2,
.about-project__description-title h1 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 2.75rem;
  letter-spacing: -0.075rem;
  text-transform: uppercase;
  margin: -0.125rem 0;
}
@media (max-width: 1024px) {
  .about-project__description-title h2,
  .about-project__description-title h1 {
    font-weight: 700;
    font-size: 2rem;
    line-height: 2.25rem;
    text-transform: uppercase;
  }
}
.about-project__description-under-title {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5rem;
}
@media (max-width: 1024px) {
  .about-project__description-under-title {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.4rem;
  }
}
.about-project__description-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 3rem;
  grid-column-gap: 1.25rem;
  padding-top: 7.75rem;
  padding-bottom: 4.75rem;
}
@media (max-width: 1024px) {
  .about-project__description-bottom {
    padding-top: 2rem;
  }
}
.about-project__description-item--top {
  font-weight: 400;
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1.25rem;
  margin: -0.31rem 0;
  padding-bottom: 1rem;
}
.about-project__description-item--number {
  font-weight: 700;
  font-size: 3rem;
  line-height: 3.75rem;
  color: var(--color-brand-beige);
  padding-bottom: 1rem;
  margin: -1rem 0;
}
.about-project__description-item--bottom {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 700;
  color: var(--color-brand-beige);
  margin: -0.4rem 0;
}
.about-project__slides {
  flex: 1;
  flex-shrink: 0;
  max-width: calc(50% - 1.25rem);
}
@media (max-width: 1024px) {
  .about-project__slides {
    max-width: 100%;
  }
}
.about-project__slides-swiper {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
}
@media (max-width: 1024px) {
  .about-project__slides-swiper {
    height: 28.75rem;
  }
}
.about-project__slides-swiper .swiper-pagination {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.625rem;
  height: -moz-fit-content;
  height: fit-content;
  width: 0.25rem;
  top: 50%;
  right: 4rem;
  left: auto;
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .about-project__slides-swiper .swiper-pagination {
    right: 1.25rem;
  }
}
@media (max-width: 560px) {
  .about-project__slides-swiper .swiper-pagination {
    right: 0.75rem;
  }
}
.about-project__slides-swiper .swiper-pagination-bullet {
  height: 2.6875rem;
  width: 0.25rem;
  border-radius: 10rem;
  transition: height 0.2s ease;
  background-color: #FFFFFF;
  opacity: 1;
}
.about-project__slides-swiper .swiper-pagination-bullet-active {
  height: 7.5rem;
  background-color: #FFFFFF;
}
.about-project__image {
  width: 100%;
  height: 100%;
}
.about-project__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mestopolozhenie {
  display: flex;
  gap: 1.25rem;
}
@media (max-width: 1024px) {
  .mestopolozhenie {
    flex-direction: column;
    gap: 0rem;
    padding-bottom: 2rem;
  }
}
.mestopolozhenie .container {
  display: flex;
  flex-direction: column;
  padding-right: 0;
}
@media (max-width: 1024px) {
  .mestopolozhenie .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (max-width: 560px) {
  .mestopolozhenie .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
.mestopolozhenie__info {
  padding-top: 5rem;
  width: calc(50% - 0.625rem);
}
@media (max-width: 1024px) {
  .mestopolozhenie__info {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.mestopolozhenie__map {
  width: calc(50% - 0.625rem);
  background-color: #d8b997;
}
.mestopolozhenie__map #map {
  height: 100%;
  width: 100%;
  transition: opacity 0.3s ease;
}
.mestopolozhenie__map #map .ymaps-2-1-79-map-copyrights-promo {
  display: none;
}
@media (max-width: 1024px) {
  .mestopolozhenie__map {
    width: 100%;
    height: 24.375rem;
    margin-bottom: 2.25rem;
  }
}
.mestopolozhenie__grid {
  display: grid;
  margin: auto 0;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.25rem;
  row-gap: 3rem;
}
.mestopolozhenie__grid-mobile {
  display: none;
}
@media (max-width: 1024px) {
  .mestopolozhenie__grid-mobile {
    display: block;
  }
}
@media (max-width: 1024px) {
  .mestopolozhenie__grid {
    padding: 0 2rem;
    column-gap: 2rem;
    row-gap: 2.25rem;
  }
}
.mestopolozhenie__item-title {
  font-weight: 700;
  font-size: 3rem;
  line-height: 3.75rem;
  color: var(--color-brand-beige);
  margin: -0.75rem 0;
  padding-bottom: 1rem;
}
.mestopolozhenie__item-desc {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5rem;
  margin: -0.3rem 0;
}
@media (max-width: 1024px) {
  .mestopolozhenie__item-desc {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.4rem;
  }
}

.partners__wrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.partners__payments {
  margin-top: 6.75rem;
}
@media (max-width: 1024px) {
  .partners__payments {
    margin-top: 5.875rem;
  }
}
.partners__subtitle {
  text-align: center;
  margin-bottom: 4rem;
}
.partners__subtitle h3 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 2.75rem;
  letter-spacing: -0.075rem;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .partners__subtitle h3 {
    font-weight: 700;
    font-size: 2rem;
    line-height: 2.4rem;
    letter-spacing: -0.06rem;
    text-transform: uppercase;
    text-transform: none;
  }
}
@media (max-width: 1024px) {
  .partners__subtitle {
    margin-bottom: 2.5rem;
  }
}
.partners__subtitle--gold {
  color: var(--color-brand-beige);
}
@media (max-width: 1024px) {
  .partners__cards {
    margin: -1.5rem calc(50% - 50vw);
  }
}
.partners__cards .swiper-wrapper {
  padding: 1.5rem 0;
  justify-content: center;
}
@media (max-width: 1024px) {
  .partners__cards .swiper-wrapper {
    justify-content: flex-start;
  }
}
.partners__cards .swiper-slide {
  width: -moz-fit-content;
  width: fit-content;
}
.partners__cards .swiper-slide:nth-child(2) .partners__card {
  transform: translate(0px, -0.625rem);
}
@media (max-width: 1024px) {
  .partners__cards .swiper-slide:nth-child(2) .partners__card {
    transform: translate(0px, 0px);
  }
}
.partners__card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  padding-bottom: 1.5rem;
  max-width: 16.75rem;
  min-height: 22.75rem;
  border: 0.0625rem solid var(--color-light-beige);
  border-radius: 1.25rem;
  box-shadow: 0.125rem 0.125rem 2rem 0rem rgba(194, 140, 59, 0.0705882353);
}
.partners__card-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 2.1875rem;
  padding-bottom: 1rem;
  margin-top: -0.5rem;
  border-bottom: 0.0625rem solid var(--color-light-beige);
}
.partners__card-text {
  margin-top: 1.5rem;
}
.partners__card-text * {
  color: #777777;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4rem;
  padding-bottom: 1.25rem;
  margin-bottom: -0.625rem;
}
.partners__card-text *:last-child {
  padding-bottom: 0;
}
.partners__card-btn {
  padding-top: 3rem;
  margin-top: auto;
}
.partners__card-btn .button {
  width: 100%;
  text-align: center;
}
.partners__our {
  display: none;
  margin-top: 12rem;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .partners__our {
    margin-top: 4.375rem;
  }
}
.partners__tags {
  padding: 1.75rem 0;
}
@media (max-width: 1024px) {
  .partners__tags {
    margin: 0 calc(50% - 50vw);
  }
}
.partners__tags .swiper-slide {
  width: -moz-fit-content;
  width: fit-content;
}
.partners__tags .swiper-wrapper {
  justify-content: center;
}
@media (max-width: 1024px) {
  .partners__tags .swiper-wrapper {
    margin: 0 calc(50% - 50vw);
    justify-content: flex-start;
  }
}
.partners__tag {
  display: block;
  width: 11.5rem;
  height: 6.25rem;
  border-radius: 0.75rem;
  overflow: hidden;
}
.partners__tag img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.partners__next {
  display: none;
  justify-content: center;
  padding-top: 7.75rem;
  padding-bottom: 4rem;
}
.partners__next-btn {
  display: flex;
  align-items: center;
  padding: 0.625rem;
  gap: 0.625rem;
}
.partners__next-text {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.875rem;
}
.smi__wrap {
  padding-top: 5rem;
  padding-bottom: 10rem;
}
.smi__banner {
  margin: 3.5rem calc(50% - 50vw);
  height: 20rem;
  line-height: 0;
}
@media (max-width: 1024px) {
  .smi__banner {
    margin: 2rem calc(50% - 50vw);
  }
}
.smi__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.smi__swiper {
  margin: 0 calc(50% - 50vw);
  padding-left: 4rem;
  padding-right: 4rem;
}
@media (max-width: 1024px) {
  .smi__swiper {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (max-width: 560px) {
  .smi__swiper {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
.smi__swiper .swiper-slide {
  width: -moz-fit-content;
  width: fit-content;
}
.smi__card {
  display: flex;
  flex-direction: column;
  width: 19.5rem;
  height: 11.8rem;
  background-color: #F7F7F7;
  border-radius: 0.75rem;
  padding: 1.25rem;
}
.smi__card-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4rem;
  font-style: italic;
  color: var(--color-brand-beige);
}
.smi__card-name {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5rem;
}
.smi__card-btn {
  display: flex;
  justify-content: flex-start;
  margin-top: auto;
}

@media (max-width: 1024px) {
  .news {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.news__wrap {
  padding-top: 5rem;
  padding-bottom: 2rem;
}
.news__swiper {
  padding-top: 4.125rem;
  padding-bottom: 2.25rem;
  padding-left: 4rem;
  padding-right: 4rem;
  margin: 0 calc(50% - 50vw);
}
@media (max-width: 1024px) {
  .news__swiper {
    padding-top: 2.125rem;
    padding-bottom: 5.55rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (max-width: 560px) {
  .news__swiper {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
.news__swiper .swiper-wrapper {
  padding-bottom: 0.5rem;
}
.news__swiper .swiper-slide {
  width: -moz-fit-content;
  width: fit-content;
}
.news__card {
  display: block;
  width: 19.5rem;
}
.news__card-img {
  background-color: #F4F4F4;
  width: 100%;
  height: 10.875rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
}
.news__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news__card-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.news__card-date {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4rem;
  font-style: italic;
  color: var(--color-brand-beige);
}
.news__card-name {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5rem;
}
.news__card-desc {
  position: relative;
  max-height: 5.5rem;
  overflow: hidden;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4rem;
  font-style: italic;
}
.news__card-desc::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
}
.news__card-btn {
  display: flex;
  justify-content: center;
}
.news__showmore {
  text-align: center;
}
.news__showmore-btn {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.645rem;
  text-decoration: underline;
}

.big-slider {
  height: 100vh;
}
.big-slider__item {
  position: relative;
  height: 100vh;
}
.big-slider__item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.big-slider__item-img::after {
  position: absolute;
  z-index: 2;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-gradient-photo-darker);
}
@media (max-width: 1024px) {
  .big-slider__item-img::after {
    background: var(--color-mobile-gradient-photo-darker);
  }
}
.big-slider__item-img img, .big-slider__item-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.big-slider__item-text {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .big-slider__item-text {
    padding-top: 5rem;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100vh - 10rem);
  }
}
.big-slider__item-subtitle {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
@media (max-width: 1024px) {
  .big-slider__item-subtitle {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.625rem;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
  }
}
.big-slider__item-title {
  font-weight: 700;
  font-size: 6rem;
  line-height: 6rem;
  text-transform: uppercase;
  letter-spacing: -0.18rem;
}
@media (max-width: 1024px) {
  .big-slider__item-title {
    font-weight: 700;
    font-size: 4rem;
    line-height: 4rem;
    text-transform: uppercase;
    letter-spacing: -0.12rem;
  }
}
.big-slider__item-desc {
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  line-height: 140%;
  width: 34.375rem;
}
@media (max-width: 1024px) {
  .big-slider__item-desc {
    font-weight: 400;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 140%;
    width: 100%;
  }
}
.big-slider__item-desc b {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2.1rem;
  font-style: italic;
  color: var(--color-light-beige);
}
@media (max-width: 1024px) {
  .big-slider__item-desc b {
    font-weight: 400;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 140%;
  }
}
.big-slider__arrows {
  z-index: 2;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
}
@media (max-width: 1024px) {
  .big-slider__arrows {
    display: none;
  }
}
.big-slider__arrow {
  width: 3rem;
  height: 3rem;
  border-radius: 100rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.51);
  -webkit-backdrop-filter: blur(22px);
          backdrop-filter: blur(22px);
  opacity: 1;
  transition: opacity 0.3s ease;
}
.big-slider__arrow .icon {
  width: 1rem;
  height: 1rem;
}
.big-slider__arrow.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.big-slider .swiper-pagination {
  display: flex;
  justify-content: center;
  bottom: 2.125rem;
}
@media (max-width: 1024px) {
  .big-slider .swiper-pagination {
    bottom: auto;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.625rem;
    height: -moz-fit-content;
    height: fit-content;
    width: 0.25rem;
    top: 50%;
    right: 1.25rem;
    left: auto;
    transform: translateY(-50%);
  }
}
@media (max-width: 560px) {
  .big-slider .swiper-pagination {
    right: 0.75rem;
  }
}
.big-slider .swiper-pagination-bullet {
  width: 2.6875rem;
  height: 0.25rem;
  border-radius: 10rem;
  transition: width 0.2s ease, height 0.2s ease;
  background-color: #FFFFFF;
  opacity: 1;
}
@media (max-width: 1024px) {
  .big-slider .swiper-pagination-bullet {
    height: 2.6875rem;
    width: 0.25rem;
  }
}
.big-slider .swiper-pagination-bullet-active {
  width: 7.5rem;
  background-color: #FFFFFF;
}
@media (max-width: 1024px) {
  .big-slider .swiper-pagination-bullet-active {
    height: 7.5rem;
    width: 0.25rem;
  }
}

.team__wrap {
  padding-top: 5rem;
  padding-bottom: 2rem;
}
@media (max-width: 1024px) {
  .team__wrap {
    padding-bottom: 0;
  }
}
.team__swiper {
  margin-top: 3.5rem;
}
.team__swiper .big-slider__arrow {
  background: rgba(210, 210, 210, 0.2);
}
@media (max-width: 1024px) {
  .team__swiper {
    margin-top: 3rem;
  }
}
.team__card {
  display: flex;
  gap: 1.25rem;
}
@media (max-width: 1024px) {
  .team__card {
    flex-direction: column-reverse;
    gap: 1.5rem;
  }
}
.team__card-text {
  width: 40.375rem;
  min-height: 33.4375rem;
  padding: 9.5625rem 6.9375rem;
}
@media (max-width: 1024px) {
  .team__card-text {
    width: 100%;
    min-height: auto;
    padding: 0;
    padding-bottom: 2.5rem;
  }
}
.team__card-name {
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.4rem;
  letter-spacing: -0.06rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.team__card-dolzh {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: var(--color-brand-beige);
  margin-bottom: 1.5rem;
}
.team__card-desc {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4rem;
  font-style: italic;
}
.team__card-img {
  flex-shrink: 0;
  width: 33.4375rem;
  height: 40.15625rem;
  border-top-left-radius: 100rem;
  border-top-right-radius: 100rem;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .team__card-img {
    width: 100%;
    height: 32.65rem;
  }
}
.team__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-form {
  position: relative;
  display: flex;
  overflow: hidden;
  justify-content: center;
  background-color: var(--color-accent-black);
  padding-bottom: 3.5rem;
  padding-top: 15.1875rem;
  border-top-left-radius: 100rem;
  border-top-right-radius: 100rem;
  margin-top: 1.875rem;
}
@media (max-width: 1024px) {
  .main-form {
    background-color: transparent;
    padding-bottom: 0;
    padding-top: 4.25rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .main-form::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 60.5rem;
    height: 60.5rem;
    top: 0;
    border-radius: 100rem;
    background-color: var(--color-accent-black);
  }
}
.main-form form {
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 31.125rem;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .main-form form {
    width: 100%;
    padding: 0 1.5rem;
  }
}
.main-form__title {
  margin: -0.5rem 0;
  margin-bottom: 1rem;
  text-align: center;
}
.main-form__title h2 {
  font-weight: 700;
  font-size: 4rem;
  line-height: 4rem;
  text-transform: uppercase;
  letter-spacing: -0.12rem;
}
@media (max-width: 1024px) {
  .main-form__title h2 {
    font-weight: 700;
    font-size: 2rem;
    line-height: 2.25rem;
    text-transform: uppercase;
  }
}
.main-form__desc {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: var(--color-light-beige);
  text-align: center;
}
@media (max-width: 1024px) {
  .main-form__desc {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.4rem;
  }
}
.main-form__fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.main-form__field {
  padding: 0.5rem 0;
  background-color: transparent;
  outline: none;
  border: none;
  caret-color: var(--color-white);
  color: var(--color-white);
  border-bottom: 0.0625rem solid var(--color-white);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5rem;
}
.main-form__field::placeholder {
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .main-form__field {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.4rem;
  }
  .main-form__field:-webkit-autofill {
    background-color: transparent !important;
  }
}
.main-form__btn {
  display: flex;
  justify-content: center;
}
.main-form__btn .button {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.main-form__soglasie {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4rem;
  font-style: italic;
}
.main-form__soglasie a {
  text-decoration: underline;
}

.invest__wrap {
  padding-top: 5rem;
  padding-bottom: 12rem;
}
@media (max-width: 1024px) {
  .invest__wrap {
    padding-bottom: 8rem;
  }
}
.invest__tabs {
  display: flex;
  gap: 2.25rem;
  margin-top: 4rem;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  .invest__tabs {
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 2.4rem;
  }
}
.invest__tab {
  cursor: pointer;
  color: var(--color-secondary-gray);
}
.invest__tab-name {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.875rem;
  text-transform: uppercase;
  padding-bottom: 0.25rem;
  margin-bottom: 0.25rem;
  border-bottom: 0.0625rem solid var(--color-secondary-gray);
}
.invest__tab-sq {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5rem;
}
.invest__tab--active {
  color: var(--color-brand-beige);
}
.invest__tab--active .invest__tab-name {
  border-bottom: 0.0625rem solid var(--color-brand-beige);
}
@media (max-width: 1024px) {
  .invest__table {
    overflow-x: auto;
  }
}
.invest__table--active {
  display: table !important;
}
.invest__table table {
  display: none;
  width: 100%;
  border-spacing: 0;
}
@media (max-width: 1024px) {
  .invest__table table {
    width: 200%;
  }
}
.invest__table table thead tr th {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 700;
  padding: 0;
  padding-bottom: 1.25rem;
  border-bottom: 0.0625rem solid var(--color-accent-black);
}
.invest__table table tbody tr td {
  padding: 1.25rem 0;
  border-bottom: 0.0625rem solid var(--color-secondary-gray);
  text-align: center;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.4rem;
}
.invest__table table tbody tr td:first-child {
  width: 19.5rem;
  text-align: left;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5rem;
}
@media (max-width: 1024px) {
  .invest__table table tbody tr td:first-child {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.4rem;
    width: 10.5rem;
  }
}
.invest__info {
  margin-top: 2rem;
}

.gallery {
  margin-top: 2rem;
}
.gallery__date {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.1rem;
  font-style: italic;
  color: var(--color-brand-beige);
  margin-top: 1rem;
}
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 4rem;
}
@media (max-width: 1024px) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }
}
.gallery__item {
  height: 15rem;
  overflow: hidden;
  border-radius: 1rem;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.statiya__wrap {
  padding-top: 8rem;
  padding-bottom: 6rem;
}
@media (max-width: 1024px) {
  .statiya__wrap {
    padding-top: 6rem;
  }
}
.statiya__title {
  margin-top: 1.75rem;
}
.statiya__title h1 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 2.75rem;
  letter-spacing: -0.075rem;
  text-transform: uppercase;
}
.statiya__content {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.statiya__content-block h2,
.statiya__content-block h1 {
  margin-bottom: 1.25rem;
}
.statiya__content-block p {
  margin-bottom: 1rem;
}
.statiya__content-block p:last-child {
  margin-bottom: 0;
}
.statiya__content-block__image-text {
  display: flex;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .statiya__content-block__image-text {
    flex-direction: column;
  }
}
.statiya__content-block__image-text__image {
  flex: 1;
}
.statiya__content-block__image-text__text {
  flex: 1;
}
.statiya__content-block__tabs h2,
.statiya__content-block__tabs h1 {
  text-align: center;
  margin-bottom: 2.25rem;
}
.statiya__content-block__quote {
  font-weight: 400;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0%;
}
.statiya__content-block__bordered {
  border: 1px solid var(--color-brand-beige);
  padding: 2rem;
  border-radius: 0.75rem;
}
.statiya__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .statiya__tabs {
    gap: 1rem;
  }
}
.statiya__tab {
  padding: 1.25rem;
  border: 1px solid var(--color-brand-beige);
  box-shadow: 2px 2px 16px 0px rgba(194, 140, 59, 0.2);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.2;
  border-radius: 0.75rem;
}
@media (max-width: 1024px) {
  .statiya__tab {
    width: 100% !important;
  }
}
.statiya__tab:nth-child(6n+1) {
  width: 45%;
}
.statiya__tab:nth-child(6n+2) {
  width: calc(55% - 2rem);
}
.statiya__tab:nth-child(6n+3) {
  width: calc(65% - 2rem);
}
.statiya__tab:nth-child(6n+4) {
  width: 35%;
}
.statiya__tab:nth-child(6n+5) {
  width: 40%;
}
.statiya__tab:nth-child(6n) {
  width: calc(60% - 2rem);
}
.statiya__bottom-go-back {
  margin-top: 4.4rem;
  text-align: center;
}
.statiya__bottom-go-back .go-to-home-link {
  color: var(--color-brand-beige);
}

.plan-solutions__wrap {
  padding-top: 5rem;
  padding-bottom: 2rem;
}
.plan-solutions__wrap iframe {
  margin-top: 2rem;
}

.static__wrap {
  padding-top: 5rem;
  padding-bottom: 12rem;
}
@media (max-width: 1024px) {
  .static__wrap {
    padding-bottom: 8rem;
  }
}
.static__content {
  margin-top: 2rem;
}
.static__content a {
  color: var(--color-brand-beige);
}
.static__content p, .static__content li, .static__content a {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5rem;
}
.static__content p {
  margin-bottom: 0.5rem;
}
.static__content p:last-child {
  margin-bottom: 0;
}
.static__content li {
  margin-bottom: 0.5rem;
}
.static__content li:last-child {
  margin-bottom: 0;
}
.static__content h2,
.static__content h1 {
  margin: 1rem 0;
}
.static__content h2:first-child,
.static__content h1:first-child {
  margin-top: 0;
}
.static__content ol {
  list-style: auto;
  margin-left: 1.5rem;
}
.static__content h2,
.static__content h1 {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2rem;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .static__content h2,
  .static__content h1 {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 2rem;
    text-transform: uppercase;
  }
}
.static__privacy .view__title {
  text-align: center;
}
.static__privacy .view__title h1 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 2.75rem;
  letter-spacing: -0.075rem;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .static__privacy .view__title h1 {
    font-weight: 700;
    font-size: 2rem;
    line-height: 2.25rem;
    text-transform: uppercase;
  }
}

.v3d__wrap {
  padding-top: 5rem;
  padding-bottom: 2rem;
}
.v3d__content {
  margin-top: 2rem;
  height: 90vh;
}
@media (max-width: 1024px) {
  .v3d__content {
    height: 65vh;
  }
}

.v404 {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v404__block {
  text-align: center;
}
.v404__title {
  font-weight: 700;
  font-size: 6rem;
  line-height: 6rem;
  text-transform: uppercase;
  letter-spacing: -0.18rem;
  margin-bottom: 2rem;
}
.v404__desc {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.875rem;
}
.v404__btn {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.show-more {
  position: relative;
}
.show-more__active::before {
  content: unset !important;
}
.show-more::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 33%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
}
.show-more__content {
  transition: height 0.3s ease;
}
.show-more__btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 8;
  color: var(--color-brand-beige);
}
.show-more__btn-text {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.875rem;
}
.scroller {
  position: fixed;
  bottom: -100px;
  transition: all 0.4s ease;
  z-index: 4;
  left: 50%;
  transform: translate(-50%, 0);
  padding-left: 25px;
  padding-right: 20px;
  padding-top: 20px;
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
  height: 90px;
  display: flex;
  justify-content: center;
  gap: 8px;
  background-color: rgba(0, 0, 0, 0.2509803922);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
.scroller--up {
  bottom: -10px;
}
.scroller--active .scroller__page--first {
  top: -30px;
  opacity: 0;
}
.scroller--active .scroller__page--second {
  top: 0px;
  opacity: 1;
}
.scroller--active .scroller__page--third {
  top: 30px;
  opacity: 0.5;
}
.scroller--active .scroller__scroll-item {
  top: 16px;
}
.scroller__pages {
  position: relative;
  width: 48px;
}
.scroller__page {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 48px;
  height: 28px;
  border-radius: 2px;
  background-color: #fff;
  transition: all 0.4s ease;
}
.scroller__page--first {
  top: 0px;
  background-color: #FFFFFF;
}
.scroller__page--second {
  top: 30px;
  background-color: #FFFFFF;
  opacity: 0.5;
}
.scroller__page--third {
  top: 60px;
  background-color: #FFFFFF;
  opacity: 0.25;
}
.scroller__scroll {
  position: relative;
  display: flex;
  width: 7px;
  height: 56px;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.5019607843);
}
.scroller__scroll-item {
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 3px;
  height: 21px;
  border-radius: 5px;
  background-color: #FFFFFF;
  transition: all 0.4s ease;
}

.mobile-scroller {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9;
  transition: all 0.5s ease;
}
.mobile-scroller__hand {
  position: absolute;
  opacity: 0;
  width: 125px;
  height: 125px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}
.mobile-scroller__hand--move {
  top: 40%;
  opacity: 0;
}
.mobile-scroller__hand img {
  width: 100%;
  height: 100%;
}

.go-to-home-link {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.645rem;
  text-decoration: underline;
  color: var(--color-secondary-gray);
  text-decoration: underline;
  margin-bottom: 1.75rem;
}

.general-color {
  color: var(--color-brand-beige);
}

.image {
  border-radius: 0.5rem;
  overflow: hidden;
}
.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wfull {
  width: 100%;
}

.h250 {
  height: 15.625rem;
}
.h420 {
  height: 26.25rem;
}

.fz18 {
  font-size: 1.125rem;
}
.fz20 {
  font-size: 1.25rem;
}
.fz22 {
  font-size: 1.375rem;
}
.fz24 {
  font-size: 1.5rem;
}

.fw400 {
  font-weight: 400;
}
.fw500 {
  font-weight: 500;
}
.fw600 {
  font-weight: 600;
}
.fw700 {
  font-weight: 700;
}

.lh100 {
  line-height: 100%;
}
.lh110 {
  line-height: 110%;
}
.lh120 {
  line-height: 120%;
}
.lh130 {
  line-height: 130%;
}
.lh140 {
  line-height: 140%;
}
.lh150 {
  line-height: 150%;
}