@charset "UTF-8";
/* ОБНУЛЕНИЕ */
/**
  Нормализация блочной модели
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
     Упрощаем работу с изображениями
    */
img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}

/**
     Наследуем свойства шрифт для полей ввода
    */
input,
textarea,
select,
button {
  background: none;
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
  border-radius: 0px;
  font: inherit;
}

html {
  /**
     Пригодится в большинстве ситуаций
     (когда, например, нужно будет "прижать" футер к низу сайта)
    */
  height: 100%;
  /**
     Плавный скролл
    */
  scroll-behavior: smooth;
}

body {
  /**
     Пригодится в большинстве ситуаций
     (когда, например, нужно будет "прижать" футер к низу сайта)
    */
  min-height: 100%;
  /**
     Унифицированный интерлиньяж
    */
  line-height: 1.5;
}

div {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

svg,
svg path,
svg rect,
svg circle,
svg line {
  transition: 0.3s;
}

.icon {
  display: flex;
}

input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

/* Старый Edge / IE */
input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

/* Для надёжности: */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

/* Source Sans Pro */
@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/SourceSansPro-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/SourceSansPro-BlackItalic.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/SourceSansPro-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/SourceSansPro-BoldItalic.woff2") format("woff2");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/SourceSansPro-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/SourceSansPro-ExtraLightItalic.woff2") format("woff2");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/SourceSansPro-Italic.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/SourceSansPro-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/SourceSansPro-LightItalic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/SourceSansPro-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/SourceSansPro-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/SourceSansPro-SemiBoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
/* Arsenal */
@font-face {
  font-family: "Arsenal";
  src: url("../fonts/Arsenal-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Arsenal";
  src: url("../fonts/Arsenal-BoldItalic.woff2") format("woff2");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Arsenal";
  src: url("../fonts/Arsenal-Italic.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Arsenal";
  src: url("../fonts/Arsenal-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* Intel One Mono */
@font-face {
  font-family: "Intel One Mono";
  src: url("../fonts/IntelOneMono-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html,
body {
  overflow-x: clip;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #464646;
  font-family: "Source Sans Pro", sans-serif;
  background-color: #F7F2EF;
  font-size: 16px;
}
body::-webkit-scrollbar {
  width: 7px;
}
body::-webkit-scrollbar-thumb {
  background: #C2A07A;
  border-radius: 10px;
}
body::-webkit-scrollbar-track {
  background: transparent;
}

main {
  flex: 1 1 auto;
  overflow-x: clip;
}

html.is-page-loading,
html.is-page-loading body {
  overflow: hidden;
}

html.is-video-modal-open,
html.is-video-modal-open body {
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #F7F2EF;
  color: #464646;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}
.page-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-preloader__logo {
  width: clamp(140px, 42vw, 360px);
  max-width: calc(100vw - 48px);
  height: auto;
  aspect-ratio: 249/132;
  object-fit: contain;
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  animation: preloaderLogoIn 0.45s ease 0.05s forwards;
}

@keyframes preloaderLogoIn {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.js-scroll-parallax {
  will-change: transform;
}

.js-scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}
.js-scroll-reveal.is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.split-line {
  display: block;
  overflow: hidden;
  padding: 0.04em 0 0.14em;
  margin: -0.04em 0 -0.14em;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.reveal-line {
  display: block;
  overflow: hidden;
  padding: 0.04em 0 0.14em;
  margin: -0.04em 0 -0.14em;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.reveal-line-inner {
  display: block;
  transform: translateZ(0);
  backface-visibility: hidden;
}

[data-line-reveal] {
  transform: translateZ(0);
  backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .js-scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .toc_wrap_it.is-toc-reveal-init {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
  .js-scroll-parallax {
    transform: none !important;
  }
  .video-modal,
  .video-modal__dialog,
  .video-modal__close {
    transition: none;
  }
  .theatre_wrap_left_tape {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
    animation: none;
  }
  .mars_wrap_img_cloud {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .page-preloader {
    transition: none;
  }
  .page-preloader__logo {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .on_map_main_left_it_title_it,
  .on_map_main_left_it_title_icon,
  .on_map_main_left_it_subtitle,
  .on_map_main_left_it_subtitle_line,
  .on_map_main_imgs_points_group,
  .on_map_main_imgs_points_group_it {
    transition: none !important;
  }
}
.title_h3 {
  font-family: "Arsenal", sans-serif;
  font-size: clamp(2rem, 1.1666666667rem + 1.1111111111vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 1199px) {
  .title_h3 {
    font-size: 34px;
  }
}
@media screen and (max-width: 767px) {
  .title_h3 {
    font-size: 28px;
  }
}

.typ_text {
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1.0625rem, 0.75rem + 0.4166666667vw, 1.25rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 1.1666666667rem + 0.2777777778vw, 1.5rem);
}
.typ_text.medium {
  font-size: clamp(1.125rem, 0.7083333333rem + 0.5555555556vw, 1.375rem);
  line-height: clamp(1.5rem, 1.0833333333rem + 0.5555555556vw, 1.75rem);
}
.typ_text.small {
  font-size: clamp(1rem, 0.7916666667rem + 0.2777777778vw, 1.125rem);
  line-height: clamp(1.375rem, 1.1666666667rem + 0.2777777778vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  .typ_text {
    font-size: 14px;
    line-height: 20px;
  }
  .typ_text.medium {
    font-size: 14px;
    line-height: 20px;
  }
  .typ_text.small {
    font-size: 12px;
    line-height: 18px;
  }
}

.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 clamp(1.875rem, -0.2083333333rem + 2.7777777778vw, 3.125rem);
}

.row {
  --bs-gutter-x: clamp(1.125rem, -0.125rem + 1.6666666667vw, 1.875rem);
}
@media screen and (max-width: 1199px) {
  .row {
    --bs-gutter-x: 7px;
  }
}

.swiper-slide {
  user-select: none;
}

@media (hover: hover) {
  .swiper-button-prev:hover svg circle,
  .swiper-button-next:hover svg circle {
    stroke: rgb(70, 70, 70);
  }
  .swiper-button-prev:hover svg path,
  .swiper-button-next:hover svg path {
    stroke: rgb(70, 70, 70);
  }
}
@media (hover: none) {
  .swiper-button-prev:active svg circle,
  .swiper-button-next:active svg circle {
    stroke: rgb(70, 70, 70);
  }
  .swiper-button-prev:active svg path,
  .swiper-button-next:active svg path {
    stroke: rgb(70, 70, 70);
  }
}

.header {
  position: fixed;
  top: clamp(1rem, 0.5833333333rem + 0.5555555556vw, 1.25rem);
  left: 0;
  z-index: 50;
  width: 100%;
  pointer-events: none;
  transition: 0.4s ease;
}
@media screen and (max-width: 767px) {
  .header {
    top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .header .container {
    padding: 0 13px;
  }
}
.header.is-dark .header_wrap_nav a,
.header.is-dark .header_wrap_contact_link,
.header.is-dark .header_wrap_btn {
  background: rgba(255, 255, 255, 0.1);
  color: #F7F2EF;
}
@media (hover: hover) {
  .header.is-dark .header_wrap_nav a:hover,
  .header.is-dark .header_wrap_contact_link:hover,
  .header.is-dark .header_wrap_btn:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}
@media (hover: none) {
  .header.is-dark .header_wrap_nav a:active,
  .header.is-dark .header_wrap_contact_link:active,
  .header.is-dark .header_wrap_btn:active {
    background: rgba(255, 255, 255, 0.2);
  }
}
.header.is-dark .header_wrap_nav a {
  color: #C2A07A;
  filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.1));
}
.header.is-dark .header_wrap_btn_title {
  color: #F7F2EF;
}
.header.is-dark .header_wrap_btn_line span,
.header.is-dark .header_wrap_btn_line span::before,
.header.is-dark .header_wrap_btn_line span::after {
  background: #F7F2EF;
}
.header.is-dark .header_wrap_btn.active .header_wrap_btn_line span {
  background: transparent;
}
.header_wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.875rem, 0.25rem + 0.8333333333vw, 1.25rem);
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .header_wrap {
    justify-content: flex-end;
  }
}
.header_wrap_nav {
  position: absolute;
  top: calc(100% + clamp(0.875rem, 0.25rem + 0.8333333333vw, 1.25rem));
  left: 0;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 0.34s;
}
@media screen and (max-width: 1199px) {
  .header_wrap_nav {
    right: 0;
    left: auto;
  }
}
.header_wrap_nav.active {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.header_wrap_nav ul {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 120px);
  overflow: hidden;
}
.header_wrap_nav ul.is-scrollable {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #464646 rgba(70, 70, 70, 0.08);
}
.header_wrap_nav ul.is-scrollable::-webkit-scrollbar {
  width: 3px;
}
.header_wrap_nav ul.is-scrollable::-webkit-scrollbar-thumb {
  background: #464646;
}
.header_wrap_nav ul.is-scrollable::-webkit-scrollbar-track {
  background: rgba(70, 70, 70, 0.08);
}
.header_wrap_nav li {
  display: flex;
}
.header_wrap_nav a,
.header_wrap_nav button {
  display: flex;
  width: 100%;
  border: 0;
  padding: clamp(0.625rem, 0.4166666667rem + 0.2777777778vw, 0.75rem) clamp(1rem, 0.4791666667rem + 0.6944444444vw, 1.3125rem);
  background: rgba(70, 70, 70, 0.05);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  color: #464646;
  font-family: inherit;
  font-size: clamp(1rem, 0.7916666667rem + 0.2777777778vw, 1.125rem);
  line-height: clamp(1.375rem, 1.1666666667rem + 0.2777777778vw, 1.5rem);
  text-align: left;
  cursor: pointer;
  transform: translateX(clamp(0.875rem, 0.25rem + 0.8333333333vw, 1.25rem));
  opacity: 0;
  will-change: transform, opacity;
  transition: background 0.4s ease, color 0.4s ease;
}
@media screen and (max-width: 1199px) {
  .header_wrap_nav a,
  .header_wrap_nav button {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .header_wrap_nav a,
  .header_wrap_nav button {
    padding: 10px 14px;
    font-size: 14px;
    line-height: 1.28;
  }
}
@media (hover: hover) {
  .header_wrap_nav a:hover,
  .header_wrap_nav button:hover {
    background: rgba(70, 70, 70, 0.12);
  }
}
@media (hover: none) {
  .header_wrap_nav a:active,
  .header_wrap_nav button:active {
    background: rgba(70, 70, 70, 0.12);
  }
}
.header_wrap_nav a:focus-visible,
.header_wrap_nav button:focus-visible {
  outline: 1px solid #C2A07A;
  outline-offset: -1px;
}
.header_wrap_contact {
  display: flex;
  align-items: center;
  pointer-events: auto;
}
@media screen and (max-width: 1199px) {
  .header_wrap_contact {
    display: none;
  }
}
.header_wrap_contact_link {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: clamp(0.625rem, 0.4166666667rem + 0.2777777778vw, 0.75rem) clamp(1rem, 0.4791666667rem + 0.6944444444vw, 1.3125rem);
  background: rgba(70, 70, 70, 0.05);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  color: #464646;
  font-family: inherit;
  font-size: clamp(1rem, 0.7916666667rem + 0.2777777778vw, 1.125rem);
  line-height: clamp(1.375rem, 1.1666666667rem + 0.2777777778vw, 1.5rem);
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.4s ease, color 0.4s ease;
}
@media (hover: hover) {
  .header_wrap_contact_link:hover {
    background: rgba(70, 70, 70, 0.12);
  }
}
@media (hover: none) {
  .header_wrap_contact_link:active {
    background: rgba(70, 70, 70, 0.12);
  }
}
.header_wrap_contact_link:focus-visible {
  outline: 1px solid #C2A07A;
  outline-offset: -1px;
}
.header_wrap_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.375rem, 0.2708333333rem + 0.1388888889vw, 0.4375rem);
  border: 0;
  padding: clamp(0.625rem, 0.4166666667rem + 0.2777777778vw, 0.75rem) clamp(1rem, 0.4791666667rem + 0.6944444444vw, 1.3125rem);
  background: rgba(70, 70, 70, 0.05);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  pointer-events: auto;
  cursor: pointer;
  transition: background 0.4s ease;
}
@media screen and (max-width: 767px) {
  .header_wrap_btn {
    padding: 10px 14px;
  }
}
@media (hover: hover) {
  .header_wrap_btn:hover {
    background: rgba(70, 70, 70, 0.12);
  }
}
@media (hover: none) {
  .header_wrap_btn:active {
    background: rgba(70, 70, 70, 0.12);
  }
}
.header_wrap_btn:focus-visible {
  outline: 1px solid #C2A07A;
  outline-offset: -1px;
}
.header_wrap_btn.active .header_wrap_btn_line {
  transform: rotate(180deg);
}
.header_wrap_btn.active .header_wrap_btn_line span {
  background: transparent;
}
.header_wrap_btn.active .header_wrap_btn_line span::before {
  top: 0;
  transform: rotate(45deg);
}
.header_wrap_btn.active .header_wrap_btn_line span::after {
  bottom: 0;
  transform: rotate(-45deg);
}
.header_wrap_btn_line {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  transition: 0.4s ease;
}
@media screen and (max-width: 1199px) {
  .header_wrap_btn_line {
    height: 8px;
  }
}
.header_wrap_btn_line span {
  position: relative;
  display: block;
  width: 14px;
  height: 2px;
  background: #464646;
  transition: 0.4s ease;
}
@media screen and (max-width: 1199px) {
  .header_wrap_btn_line span {
    height: 1px;
  }
}
.header_wrap_btn_line span::before, .header_wrap_btn_line span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #464646;
  transition: 0.4s ease;
}
@media screen and (max-width: 1199px) {
  .header_wrap_btn_line span::before, .header_wrap_btn_line span::after {
    height: 1px;
  }
}
.header_wrap_btn_line span::before {
  top: -5px;
}
@media screen and (max-width: 1199px) {
  .header_wrap_btn_line span::before {
    top: -4px;
  }
}
.header_wrap_btn_line span::after {
  bottom: -5px;
}
@media screen and (max-width: 1199px) {
  .header_wrap_btn_line span::after {
    bottom: -4px;
  }
}
.header_wrap_btn_title {
  color: #464646;
  font-size: clamp(1rem, 0.7916666667rem + 0.2777777778vw, 1.125rem);
  line-height: clamp(1.375rem, 1.1666666667rem + 0.2777777778vw, 1.5rem);
  text-transform: uppercase;
  transition: color 0.4s ease;
}
@media screen and (max-width: 767px) {
  .header_wrap_btn_title {
    font-size: 14px;
    line-height: 1.28;
  }
}

.footer {
  padding: clamp(2.75rem, 1.0833333333rem + 2.2222222222vw, 3.75rem) 0 clamp(1.75rem, 0.8125rem + 1.25vw, 2.3125rem);
  background: #F7F2EF;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 40px 0;
  }
}
.footer_wrap {
  row-gap: 74px;
}
@media screen and (max-width: 767px) {
  .footer_wrap {
    row-gap: 40px;
  }
}
.footer_wrap_left_logo {
  display: flex;
  width: 100%;
  max-width: 484px;
  transition: opacity 0.4s ease;
}
@media screen and (max-width: 767px) {
  .footer_wrap_left_logo {
    max-width: 278px;
  }
}
@media (hover: hover) {
  .footer_wrap_left_logo:hover {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .footer_wrap_left_logo:active {
    opacity: 0.6;
  }
}
.footer_wrap_left_logo svg {
  width: 100%;
  height: auto;
}
.footer_wrap_left_developer {
  max-width: 690px;
  margin-top: 52px;
  color: #1D202E;
}
@media screen and (max-width: 767px) {
  .footer_wrap_left_developer {
    max-width: 100%;
    margin-top: 24px;
  }
}
.footer_wrap_left_bank {
  display: flex;
  width: 100%;
  max-width: 218px;
  margin-top: 35px;
  transition: opacity 0.4s ease;
}
@media screen and (max-width: 767px) {
  .footer_wrap_left_bank {
    max-width: 171px;
    margin-top: 24px;
  }
}
@media (hover: hover) {
  .footer_wrap_left_bank:hover {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .footer_wrap_left_bank:active {
    opacity: 0.6;
  }
}
.footer_wrap_left_bank svg {
  width: 100%;
  height: auto;
}
.footer_wrap_right {
  max-width: 433px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .footer_wrap_right {
    max-width: 100%;
    margin-left: 0;
  }
}
.footer_wrap_right_link {
  display: flex;
  width: fit-content;
  color: #1D202E;
  transition: opacity 0.4s ease;
}
@media (hover: hover) {
  .footer_wrap_right_link:hover {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .footer_wrap_right_link:active {
    opacity: 0.6;
  }
}
.footer_wrap_right_inform {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .footer_wrap_right_inform {
    row-gap: 0;
    margin-top: 14px;
  }
}
.footer_wrap_right_inform_address {
  display: flex;
  flex-direction: column;
  color: #1D202E;
}
.footer_wrap_right_inform_mail, .footer_wrap_right_inform_declaration {
  display: flex;
  width: fit-content;
  color: #1D202E;
  transition: opacity 0.4s ease;
}
@media (hover: hover) {
  .footer_wrap_right_inform_mail:hover, .footer_wrap_right_inform_declaration:hover {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .footer_wrap_right_inform_mail:active, .footer_wrap_right_inform_declaration:active {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .footer_wrap_right_inform_mail {
    margin-top: 14px;
  }
}
@media screen and (max-width: 767px) {
  .footer_wrap_right_inform_declaration {
    margin-top: 40px;
  }
}
.footer_wrap_right_action {
  display: flex;
  flex-direction: column;
  row-gap: clamp(0.875rem, 0.25rem + 0.8333333333vw, 1.25rem);
  margin-top: clamp(2.125rem, 0.6666666667rem + 1.9444444444vw, 3rem);
}
@media screen and (max-width: 767px) {
  .footer_wrap_right_action {
    max-width: 349px;
    margin-top: 40px;
    row-gap: 10px;
  }
}
.footer_wrap_right_action_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: clamp(0.5625rem, 0.3541666667rem + 0.2777777778vw, 0.6875rem) clamp(1rem, 0.5833333333rem + 0.5555555556vw, 1.25rem);
  border: 1px solid #1D202E;
  background: transparent;
  color: #1D202E;
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1.0625rem, 0.75rem + 0.4166666667vw, 1.25rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 1.1666666667rem + 0.2777777778vw, 1.5rem);
  text-align: center;
  cursor: pointer;
  transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
}
@media screen and (max-width: 767px) {
  .footer_wrap_right_action_link {
    padding: 11px 16px;
    font-size: 16px;
    line-height: 20px;
  }
}
@media (hover: hover) {
  .footer_wrap_right_action_link:hover {
    transform: translateY(-2px);
    background: #F7F2EF;
    border-color: transparent;
    color: #C2A07A;
    box-shadow: rgba(0, 0, 0, 0.28) 0 22px 52px, rgba(0, 0, 0, 0.14) 0 8px 18px, rgba(255, 255, 255, 0.32) 0 0 28px;
  }
}
@media (hover: none) {
  .footer_wrap_right_action_link:active {
    transform: translateY(-2px);
    background: #F7F2EF;
    border-color: transparent;
    color: #C2A07A;
    box-shadow: rgba(0, 0, 0, 0.28) 0 22px 52px, rgba(0, 0, 0, 0.14) 0 8px 18px, rgba(255, 255, 255, 0.32) 0 0 28px;
  }
}
.footer_wrap_right_action_link:focus-visible {
  outline: 1px solid #FFFFFF;
  outline-offset: 3px;
}
.footer_wrap_right_action_link.light {
  background: #C2A07A;
  color: #FFF;
  border: transparent;
}
@media (hover: hover) {
  .footer_wrap_right_action_link.light:hover {
    background: #C2A07A;
    color: #FFF;
  }
}
@media (hover: none) {
  .footer_wrap_right_action_link.light:active {
    background: #C2A07A;
    color: #FFF;
  }
}
.footer_wrap_documents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: clamp(0.875rem, 0.25rem + 0.8333333333vw, 1.25rem);
  row-gap: clamp(0.375rem, 0.1666666667rem + 0.2777777778vw, 0.5rem);
}
@media screen and (max-width: 1199px) {
  .footer_wrap_documents {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .footer_wrap_documents {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer_wrap_documents_link {
  display: flex;
  width: fit-content;
  color: #1D202E;
  opacity: 0.6;
  font-size: clamp(1rem, 0.7916666667rem + 0.2777777778vw, 1.125rem);
  line-height: clamp(1.375rem, 1.1666666667rem + 0.2777777778vw, 1.5rem);
  transition: opacity 0.4s ease;
}
@media screen and (max-width: 767px) {
  .footer_wrap_documents_link {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (hover: hover) {
  .footer_wrap_documents_link:hover {
    opacity: 1;
  }
}
@media (hover: none) {
  .footer_wrap_documents_link:active {
    opacity: 1;
  }
}
.footer_wrap_disclaimer {
  position: relative;
  margin-top: 34px;
  padding-top: 40px;
  color: #1D202E;
  opacity: 0.7;
  font-size: 14px;
  line-height: 20px;
}
@media screen and (max-width: 767px) {
  .footer_wrap_disclaimer {
    margin-top: 20px;
    padding-top: 20px;
  }
}
.footer_wrap_disclaimer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.hero_main {
  width: 100%;
  height: 100dvh;
  position: relative;
  overflow: hidden;
  min-height: 900px;
}
@media screen and (max-width: 1599px) {
  .hero_main {
    min-height: 700px;
  }
}
@media screen and (max-width: 1199px) {
  .hero_main {
    min-height: unset;
  }
}
.hero_main .container {
  height: 100%;
}
.hero_main_wrap {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
.hero_main_wrap_content {
  display: flex;
  flex-direction: column;
  row-gap: clamp(2.25rem, -0.25rem + 3.3333333333vw, 3.75rem);
  width: 100%;
  max-width: 1700px;
}
.hero_main_wrap_content_title {
  color: #FFF;
  font-family: "Arsenal", sans-serif;
  font-size: clamp(7.5rem, -0.8333333333rem + 11.1111111111vw, 12.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: clamp(7.5rem, -0.8333333333rem + 11.1111111111vw, 12.5rem);
  letter-spacing: calc(clamp(0.125rem, -0.0833333333rem + 0.2777777778vw, 0.25rem) * -1);
}
.hero_main_wrap_content_text {
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.375rem + 0.8333333333vw, 1.375rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 0.75rem + 0.8333333333vw, 1.75rem);
  color: #FFF;
  max-width: 500px;
  margin-left: auto;
}
.hero_main_wrap_video {
  display: flex;
  flex-direction: column;
  row-gap: clamp(0.875rem, 0.25rem + 0.8333333333vw, 1.25rem);
  position: absolute;
  bottom: clamp(2.75rem, 0.0416666667rem + 3.6111111111vw, 4.375rem);
  left: 0;
  width: 100%;
  max-width: clamp(13.75rem, 7.7083333333rem + 8.0555555556vw, 17.375rem);
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  appearance: none;
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero_main_wrap_video_thumb {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.hero_main_wrap_video_thumb img {
  width: 100%;
  height: auto;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}
.hero_main_wrap_video_control {
  display: flex;
  align-items: center;
  column-gap: clamp(0.75rem, 0.3333333333rem + 0.5555555556vw, 1rem);
}
.hero_main_wrap_video_control_icon {
  display: flex;
  flex-shrink: 0;
  width: clamp(2.125rem, 1.5rem + 0.8333333333vw, 2.5rem);
  height: clamp(2.125rem, 1.5rem + 0.8333333333vw, 2.5rem);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}
.hero_main_wrap_video_control_icon svg {
  width: 100%;
  height: 100%;
}
.hero_main_wrap_video_control span {
  color: #FFF;
  font-family: "Source Sans Pro";
  font-size: clamp(1rem, 0.7916666667rem + 0.2777777778vw, 1.125rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 1.1666666667rem + 0.2777777778vw, 1.5rem);
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) {
  .hero_main_wrap_video:hover {
    transform: translate3d(0, -4px, 0);
  }
  .hero_main_wrap_video:hover .hero_main_wrap_video_thumb img {
    transform: scale(1.04);
    opacity: 0.92;
  }
  .hero_main_wrap_video:hover .hero_main_wrap_video_control_icon {
    transform: translate3d(4px, 0, 0) scale(1.05);
  }
  .hero_main_wrap_video:hover .hero_main_wrap_video_control span {
    opacity: 0.8;
    transform: translate3d(4px, 0, 0);
  }
}
@media (hover: none) {
  .hero_main_wrap_video:active {
    transform: translate3d(0, -4px, 0);
  }
  .hero_main_wrap_video:active .hero_main_wrap_video_thumb img {
    transform: scale(1.04);
    opacity: 0.92;
  }
  .hero_main_wrap_video:active .hero_main_wrap_video_control_icon {
    transform: translate3d(4px, 0, 0) scale(1.05);
  }
  .hero_main_wrap_video:active .hero_main_wrap_video_control span {
    opacity: 0.8;
    transform: translate3d(4px, 0, 0);
  }
}
.hero_main_wrap_video:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 6px;
}
.hero_main_wrap_video:focus-visible .hero_main_wrap_video_thumb img {
  transform: scale(1.04);
}
.hero_main_wrap_video:focus-visible .hero_main_wrap_video_control_icon {
  transform: translate3d(4px, 0, 0) scale(1.05);
}
.hero_main_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  user-select: none;
  pointer-events: none;
}
.hero_main_img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 53.36%);
}
.hero_main_img img {
  width: 110%;
  height: 110%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3vw, 40px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 14, 14, 0.74);
  backdrop-filter: blur(10px);
}
.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100vw - 36px, 1120px);
  max-width: 100%;
  padding: clamp(14px, 2vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: rgba(22, 20, 18, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  transform: translate3d(0, 20px, 0) scale(0.98);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  outline: none;
}
.video-modal.is-open .video-modal__dialog {
  transform: translate3d(0, 0, 0) scale(1);
}
.video-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #FFF;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.video-modal__close:hover, .video-modal__close:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.38);
  transform: translate3d(0, -1px, 0);
}
.video-modal__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  min-height: 0;
  border-radius: 4px;
  background: #000;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 767px) {
  .video-modal__frame {
    aspect-ratio: 1/1;
  }
}
.video-modal__media {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  object-fit: contain;
  background: #000;
}

.toc {
  margin-top: clamp(6.875rem, 1.6666666667rem + 6.9444444444vw, 10rem);
}
.toc_wrap {
  display: flex;
  flex-direction: column;
  row-gap: clamp(0.75rem, 0.3333333333rem + 0.5555555556vw, 1rem);
  align-items: center;
  justify-content: flex-start;
}
.toc_wrap_it {
  display: flex;
  align-items: center;
  column-gap: clamp(0.875rem, 0.4583333333rem + 0.5555555556vw, 1.125rem);
}
.toc_wrap_it.is-toc-reveal-init {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  transition: opacity 0.5s ease, transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}
.toc_wrap_it.is-toc-reveal-init.is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
@media (hover: hover) {
  .toc_wrap_it:hover .toc_wrap_it_num {
    color: #CDCDCD;
  }
  .toc_wrap_it:hover .toc_wrap_it_title {
    color: #CDCDCD;
  }
}
@media (hover: none) {
  .toc_wrap_it:active .toc_wrap_it_num {
    color: #CDCDCD;
  }
  .toc_wrap_it:active .toc_wrap_it_title {
    color: #CDCDCD;
  }
}
.toc_wrap_it_num {
  color: #1D202E;
  font-family: "Arsenal", sans-serif;
  font-size: clamp(1.5rem, 0.875rem + 0.8333333333vw, 1.875rem);
  font-weight: 400;
  line-height: clamp(1.5rem, 0.875rem + 0.8333333333vw, 1.875rem);
  transition: 0.4s;
}
.toc_wrap_it_title {
  font-family: "Arsenal", sans-serif;
  font-size: clamp(34px, 6px + 3.6458333333vw, 76px);
  font-weight: 400;
  line-height: clamp(34px, 6px + 3.6458333333vw, 76px);
  color: #1D202E;
  transition: 0.4s;
}

.hero_second_wrap {
  position: relative;
}
.hero_second_wrap_text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Arsenal", sans-serif;
  font-size: clamp(34px, 6px + 3.6458333333vw, 76px);
  font-weight: 400;
  line-height: clamp(34px, 6px + 3.6458333333vw, 76px);
  color: #1D202E;
  width: 100%;
  max-width: 1205px;
  position: sticky;
  height: 100vh;
  margin: auto;
  right: 0;
  left: 0;
  top: 0;
}
.hero_second_wrap_imgs {
  display: flex;
  flex-direction: column;
  padding-top: 50vh;
  padding-bottom: 150vh;
  position: relative;
}
.hero_second_wrap_imgs_it {
  display: block;
  width: 100%;
  height: auto;
}
.hero_second_wrap_imgs_it:nth-of-type(1) {
  margin-top: 0px;
  margin-left: 50%;
  max-width: 433px;
}
.hero_second_wrap_imgs_it:nth-of-type(2) {
  margin-top: clamp(9.375rem, 0rem + 12.5vw, 15rem);
  margin-left: 5%;
  max-width: 433px;
}
.hero_second_wrap_imgs_it:nth-of-type(3) {
  margin-top: clamp(7.5rem, 0.7291666667rem + 9.0277777778vw, 11.5625rem);
  margin-left: 60%;
  max-width: 590px;
}
@media screen and (max-width: 1599px) {
  .hero_second_wrap_imgs_it:nth-of-type(3) {
    margin-left: 57%;
    max-width: 540px;
  }
}

.history_wrap_year {
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1.5rem, 0.875rem + 0.8333333333vw, 1.875rem);
  font-style: italic;
  font-weight: 400;
  line-height: clamp(1.5rem, 0.875rem + 0.8333333333vw, 1.875rem);
  color: #1D202E;
  position: sticky;
  top: 100px;
  margin-top: clamp(2.5rem, 0.4166666667rem + 2.7777777778vw, 3.75rem);
}
.history_wrap_list {
  display: flex;
  flex-direction: column;
  row-gap: clamp(4rem, 0.25rem + 5vw, 6.25rem);
}
.history_wrap_list_it {
  display: flex;
  flex-direction: column;
  row-gap: clamp(0.875rem, 0.25rem + 0.8333333333vw, 1.25rem);
}
.history_wrap_list_it_num {
  color: #C2A07A;
  font-family: "Arsenal", sans-serif;
  font-size: clamp(7.5rem, -0.8333333333rem + 11.1111111111vw, 12.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: clamp(7.5rem, -0.8333333333rem + 11.1111111111vw, 12.5rem);
  letter-spacing: calc(clamp(0.125rem, -0.0833333333rem + 0.2777777778vw, 0.25rem) * -1);
}
.history_wrap_list_it_title {
  font-family: "Arsenal", sans-serif;
  font-size: clamp(34px, 6px + 3.6458333333vw, 76px);
  font-weight: 400;
  line-height: clamp(34px, 6px + 3.6458333333vw, 76px);
  color: #1D202E;
  margin-left: clamp(11.25rem, -2.0833333333rem + 17.7777777778vw, 19.25rem);
  max-width: 745px;
}

.urban_silhouette {
  margin-top: clamp(13.75rem, 2.2916666667rem + 15.2777777778vw, 20.625rem);
  position: relative;
  margin-bottom: clamp(16.25rem, 1.6666666667rem + 19.4444444444vw, 25rem);
}
.urban_silhouette_wrap {
  position: relative;
}
.urban_silhouette_wrap_head {
  position: absolute;
  top: clamp(6.875rem, 0.8333333333rem + 8.0555555556vw, 10.5rem);
  left: clamp(6.875rem, 1.25rem + 7.5vw, 10.25rem);
  display: flex;
  flex-direction: column;
  row-gap: clamp(2.25rem, -0.25rem + 3.3333333333vw, 3.75rem);
  z-index: 1;
}
.urban_silhouette_wrap_head_title {
  display: flex;
  flex-direction: column;
  font-family: "Arsenal", sans-serif;
  font-size: clamp(34px, 6px + 3.6458333333vw, 76px);
  font-weight: 400;
  line-height: clamp(34px, 6px + 3.6458333333vw, 76px);
  font-style: italic;
  color: #FFF;
}
.urban_silhouette_wrap_head_title span:first-of-type {
  margin-left: clamp(6.25rem, 0.625rem + 7.5vw, 9.625rem);
}
.urban_silhouette_wrap_head_text {
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.375rem + 0.8333333333vw, 1.375rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 0.75rem + 0.8333333333vw, 1.75rem);
  color: #FFF;
  max-width: 435px;
  margin-left: 308px;
  text-wrap: balance;
}
.urban_silhouette_img {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  user-select: none;
  pointer-events: none;
}
.urban_silhouette_img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 53.36%);
}
.urban_silhouette_img img {
  width: 100%;
  height: 100%;
}
.urban_silhouette_img_one {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  position: absolute;
  bottom: 180px;
  right: 60px;
}
@media screen and (max-width: 1599px) {
  .urban_silhouette_img_one {
    max-width: 550px;
    bottom: 80px;
  }
}
.urban_silhouette_img_one img {
  width: 100%;
  height: auto;
}
.urban_silhouette_img_two {
  display: block;
  width: 100%;
  position: absolute;
  bottom: -140px;
  left: 200px;
  width: 100%;
  max-width: 470px;
  height: auto;
}
.urban_silhouette_img_two img {
  width: 100%;
  height: auto;
}

.nik_prospekt {
  margin-top: 360px;
}
.nik_prospekt_wrap_left {
  display: block;
  width: 100%;
  max-width: 180px;
  height: auto;
}
.nik_prospekt_wrap_left img {
  width: 100%;
  height: auto;
}
.nik_prospekt_wrap_content_title {
  font-family: "Arsenal", sans-serif;
  font-size: clamp(34px, 6px + 3.6458333333vw, 76px);
  font-weight: 400;
  line-height: clamp(34px, 6px + 3.6458333333vw, 76px);
  font-style: italic;
  color: #1D202E;
  text-align: center;
}
.nik_prospekt_wrap_content_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  margin-top: 60px;
}
.nik_prospekt_wrap_content_list_it {
  display: block;
  padding: 0 15px;
  width: 100%;
  max-width: 435px;
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.375rem + 0.8333333333vw, 1.375rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 0.75rem + 0.8333333333vw, 1.75rem);
  color: #1D202E;
  text-wrap: balance;
}
.nik_prospekt_wrap .mt60 {
  margin-top: 60px;
}
.nik_prospekt_wrap_small {
  display: flex;
  align-items: flex-end;
  margin: 0 -15px;
  flex-wrap: wrap;
}
.nik_prospekt_wrap_small_thumb {
  padding: 0 15px;
  width: 100%;
  max-width: 50%;
  height: auto;
}
.nik_prospekt_wrap_small_thumb img {
  width: 100%;
  height: auto;
}
.nik_prospekt_wrap_small_text {
  padding: 0 15px;
  width: 100%;
  max-width: 40%;
  color: rgba(29, 32, 46, 0.5);
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.7916666667rem + 0.2777777778vw, 1.125rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 1.1666666667rem + 0.2777777778vw, 1.5rem);
}
.nik_prospekt_wrap_last {
  margin-top: clamp(4.375rem, 1.25rem + 4.1666666667vw, 6.25rem);
}

.post_street {
  margin-top: clamp(13.125rem, 3.75rem + 12.5vw, 18.75rem);
}
.post_street .urban_silhouette_wrap_head {
  left: auto;
  right: clamp(3.25rem, 0.3333333333rem + 3.8888888889vw, 5rem);
}

.winter_club {
  margin-top: calc(clamp(7.5rem, 1.25rem + 8.3333333333vw, 11.25rem) * -1);
  position: relative;
  z-index: 1;
}
.winter_club_wrap_img {
  display: block;
  width: 100%;
  height: auto;
}
.winter_club_wrap_img img {
  width: 100%;
  height: auto;
}
.winter_club_wrap_year {
  display: flex;
  align-items: flex-end;
  height: 100%;
  color: rgba(29, 32, 46, 0.5);
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.7916666667rem + 0.2777777778vw, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: clamp(1.375rem, 1.1666666667rem + 0.2777777778vw, 1.5rem);
}
.winter_club_wrap_title {
  font-family: "Arsenal", sans-serif;
  font-size: clamp(1.875rem, -0.2083333333rem + 2.7777777778vw, 3.125rem);
  font-weight: 400;
  line-height: clamp(2rem, -0.5rem + 3.3333333333vw, 3.5rem);
  color: #1D202E;
  margin-bottom: clamp(1rem, -0.4583333333rem + 1.9444444444vw, 1.875rem);
  margin-top: clamp(1.25rem, -1.875rem + 4.1666666667vw, 3.125rem);
  max-width: 750px;
}
.winter_club_wrap_text p {
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.375rem + 0.8333333333vw, 1.375rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 0.75rem + 0.8333333333vw, 1.75rem);
  color: #1D202E;
  text-wrap: balance;
}

.theatre {
  margin-top: 180px;
}
.theatre_wrap_left_wp {
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding-bottom: 80px;
}
.theatre_wrap_left {
  display: flex;
  padding: 50px 40px 40px 40px;
  font-family: "Arsenal", sans-serif;
  font-size: clamp(1.5rem, 1.0833333333rem + 0.5555555556vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  line-height: clamp(1.75rem, 1.3333333333rem + 0.5555555556vw, 2rem);
  color: #1D202E;
  background-image: url("../image/theatre-left.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  max-width: 550px;
  margin-left: auto;
  margin-right: 120px;
  margin-top: auto;
}
.theatre_wrap_left_tape {
  position: absolute;
  width: 100%;
  max-width: 300px;
  height: auto;
  top: -59px;
  left: 50%;
  opacity: 0;
  transform: translate3d(-50%, -28px, 0) rotate(-8deg) scale(0.9);
  transform-origin: 50% 10%;
  will-change: transform, opacity;
  user-select: none;
  pointer-events: none;
}
.theatre_wrap_left_tape.is-inview {
  animation: theatreTapeStick 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.theatre_wrap_left_tape img {
  width: 100%;
  height: 100%;
}
.theatre_wrap_year {
  display: flex;
  height: 100%;
  align-items: flex-end;
  justify-content: flex-end;
  color: rgba(29, 32, 46, 0.5);
  width: 100%;
}
.theatre_wrap_content_thumb {
  display: block;
  width: 100%;
  height: auto;
}
.theatre_wrap_content_thumb img {
  width: 100%;
  height: auto;
}
.theatre_wrap_content_title {
  margin-top: 50px;
  font-family: "Arsenal", sans-serif;
  font-size: clamp(1.875rem, -0.2083333333rem + 2.7777777778vw, 3.125rem);
  font-weight: 400;
  line-height: clamp(2rem, -0.5rem + 3.3333333333vw, 3.5rem);
  color: #1D202E;
  max-width: 700px;
}
.theatre_wrap_content_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-left: -15px;
  margin-right: -15px;
}
.theatre_wrap_content_list_it {
  display: block;
  width: 100%;
  max-width: 50%;
  padding: 0 15px;
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.375rem + 0.8333333333vw, 1.375rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 0.75rem + 0.8333333333vw, 1.75rem);
  color: #1D202E;
}

.france {
  margin-top: 160px;
}
.france_wrap_head {
  position: relative;
  margin-bottom: 50px;
}
.france_wrap_head_route {
  position: relative;
  width: 100%;
}
.france_wrap_head_route_line {
  display: block;
  width: 100%;
  height: 100%;
}
.france_wrap_head_route_card {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(150px, 18vw, 346px);
  height: auto;
  transform: translate3d(-50%, -50%, 0) rotate(-11deg);
  transform-origin: center center;
  will-change: transform, left, top;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}
.france_wrap_head_route_flag {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: clamp(132px, 12vw, 210px);
  height: auto;
  transform: translate3d(-50%, -50%, 0);
  user-select: none;
  pointer-events: none;
  z-index: 1;
}
.france_wrap_content {
  font-family: "Arsenal", sans-serif;
  font-size: clamp(28px, 20px + 1.0416666667vw, 40px);
  line-height: 100%;
  font-weight: 400;
  color: #1D202E;
  text-wrap: balance;
}
@media screen and (max-width: 1199px) {
  .france {
    margin-top: 120px;
  }
  .france_wrap_head {
    margin-bottom: 48px;
  }
  .france_wrap_head_route {
    height: clamp(180px, 26vw, 280px);
  }
  .france_wrap_head_route_card {
    width: clamp(130px, 30vw, 240px);
  }
  .france_wrap_head_route_flag {
    width: clamp(110px, 20vw, 170px);
  }
}
@media screen and (max-width: 767px) {
  .france {
    margin-top: 80px;
  }
  .france_wrap_head {
    margin-bottom: 32px;
  }
  .france_wrap_head_route {
    height: 160px;
  }
  .france_wrap_head_route_card {
    width: clamp(122px, 40vw, 178px);
  }
  .france_wrap_head_route_flag {
    width: clamp(82px, 24vw, 122px);
  }
}

@keyframes theatreTapeStick {
  0% {
    opacity: 0;
    transform: translate3d(-50%, -28px, 0) rotate(-8deg) scale(0.9);
  }
  62% {
    opacity: 1;
    transform: translate3d(calc(-50% + 8px), 2px, 0) rotate(2.5deg) scale(1.02);
  }
  82% {
    transform: translate3d(calc(-50% - 4px), -1px, 0) rotate(-1.2deg) scale(0.995);
  }
  100% {
    opacity: 1;
    transform: translate3d(-50%, 0, 0) rotate(0deg) scale(1);
  }
}
.mars {
  margin-top: clamp(13.125rem, 3.75rem + 12.5vw, 18.75rem);
}
.mars_wrap_img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}
.mars_wrap_img .img {
  width: 100%;
  height: auto;
}
.mars_wrap_img_year {
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.7916666667rem + 0.2777777778vw, 1.125rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 1.1666666667rem + 0.2777777778vw, 1.5rem);
  color: rgba(29, 32, 46, 0.5);
  position: absolute;
  left: 0px;
  top: calc(100% + 20px);
}
.mars_wrap_img_cloud {
  display: block;
  position: absolute;
  top: 73px;
  left: calc(100% - 80px);
  width: 100%;
  max-width: 476px;
  height: auto;
  opacity: 0;
  transform: translate3d(46vw, -18px, 0) rotate(-8deg) scale(0.86);
  transform-origin: 100% 50%;
  will-change: transform, opacity;
  pointer-events: none;
}
.mars_wrap_img_cloud.is-inview {
  animation: marsCloudFlyIn 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.mars_wrap_img_cloud img {
  width: 100%;
  height: auto;
}
.mars_wrap_content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  row-gap: 30px;
}
.mars_wrap_content_title {
  font-family: "Arsenal", sans-serif;
  font-size: clamp(1.875rem, -0.2083333333rem + 2.7777777778vw, 3.125rem);
  font-weight: 400;
  font-style: italic;
  line-height: clamp(2rem, -0.5rem + 3.3333333333vw, 3.5rem);
  color: #1D202E;
  text-wrap: balance;
}
.mars_wrap_content_text {
  width: 100%;
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.375rem + 0.8333333333vw, 1.375rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 0.75rem + 0.8333333333vw, 1.75rem);
  color: #1D202E;
}

@keyframes marsCloudFlyIn {
  0% {
    opacity: 0;
    transform: translate3d(46vw, -18px, 0) rotate(-8deg) scale(0.86);
  }
  58% {
    opacity: 1;
    transform: translate3d(-22px, 4px, 0) rotate(2deg) scale(1.04);
  }
  78% {
    transform: translate3d(12px, -2px, 0) rotate(-1deg) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0) scale(1);
  }
}
.railway {
  margin-top: clamp(4.5rem, 1.5833333333rem + 3.8888888889vw, 6.25rem);
  clip-path: inset(-100%, -100%, 0, -100%);
}
.railway_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: clamp(100rem, 58.3333333333rem + 55.5555555556vw, 125rem);
}
.railway_wrap_title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #1D202E;
  text-align: center;
  font-family: "Arsenal", sans-serif;
  font-size: clamp(7.5rem, -0.8333333333rem + 11.1111111111vw, 12.5rem);
  font-weight: 400;
  line-height: clamp(7.5rem, -0.8333333333rem + 11.1111111111vw, 12.5rem);
  position: sticky;
  top: 0;
  height: 100vh;
}
.railway_wrap_icon {
  margin-top: 0;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  --railway-icon-scale: 1;
  --railway-icon-width: 276px;
  --railway-icon-height: 700px;
  pointer-events: none;
}
.railway_wrap_icon svg {
  width: var(--railway-icon-width);
  height: var(--railway-icon-height);
  flex: 0 0 auto;
  shape-rendering: geometricPrecision;
  will-change: width, height;
  transition: unset;
}

.railway_main {
  background: #C2A07A;
  padding-top: clamp(6rem, 1.4166666667rem + 6.1111111111vw, 8.75rem);
}
.railway_main_wrap {
  position: relative;
  --railway-main-content-opacity: 1;
  --railway-main-content-shift: 0px;
  --railway-main-year-opacity: 0;
  --railway-main-year-shift: 20px;
}
.railway_main_wrap_title {
  display: flex;
  flex-direction: column;
  font-family: "Arsenal", sans-serif;
  font-size: clamp(34px, 6px + 3.6458333333vw, 76px);
  font-weight: 400;
  line-height: clamp(34px, 6px + 3.6458333333vw, 76px);
  font-style: italic;
  color: #1D202E;
}
.railway_main_wrap_title .first {
  margin-left: clamp(6.25rem, 0.625rem + 7.5vw, 9.625rem);
}
.railway_main_wrap_top {
  width: 100%;
  max-width: 75%;
  margin-left: auto;
  position: relative;
}
.railway_main_wrap_top_images {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-top: clamp(4.5rem, 0.5416666667rem + 5.2777777778vw, 6.875rem);
  position: relative;
  z-index: 1;
  overflow: visible;
}
.railway_main_wrap_top_images_it {
  width: 100%;
  max-width: 50%;
  padding: 0 15px;
}
.railway_main_wrap_top_images_it.is-railway-main-primary-init {
  position: relative;
  z-index: 2;
  transform-origin: center top;
  will-change: transform;
}
.railway_main_wrap_top_images_it img {
  display: block;
  width: 100%;
  height: auto;
}
.railway_main_wrap_top_feature_slot {
  width: 83.3334%;
  margin-top: clamp(3rem, 0.7083333333rem + 3.0555555556vw, 4.375rem);
  margin-left: -33.3333%;
  pointer-events: none;
  visibility: hidden;
}
.railway_main_wrap_top_feature_target {
  width: 100%;
  aspect-ratio: 741/485;
}
.railway_main_wrap_top_feature_year {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1.5rem, 0.875rem + 0.8333333333vw, 1.875rem);
  font-weight: 400;
  line-height: clamp(1.5rem, 0.875rem + 0.8333333333vw, 1.875rem);
  color: #1D202E;
  white-space: nowrap;
  pointer-events: none;
  opacity: var(--railway-main-year-opacity);
  transform: translate3d(0, var(--railway-main-year-shift), 0);
  will-change: transform, opacity;
}
.railway_main_wrap .relative {
  position: relative;
  margin-top: clamp(4.5rem, 1.5833333333rem + 3.8888888889vw, 6.25rem);
}
.railway_main_wrap_bottom {
  width: 100%;
  max-width: 66.6667%;
  margin-left: auto;
}
.railway_main_wrap_bottom_right.is-railway-main-content-init {
  opacity: var(--railway-main-content-opacity);
  transform: translate3d(0, var(--railway-main-content-shift), 0);
  will-change: transform, opacity;
}
.railway_main_wrap_bottom_title {
  font-family: "Arsenal", sans-serif;
  font-size: clamp(34px, 6px + 3.6458333333vw, 76px);
  font-weight: 400;
  line-height: clamp(34px, 6px + 3.6458333333vw, 76px);
  font-style: italic;
  color: #1D202E;
}
.railway_main_wrap_bottom_text {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 0 -15px;
  margin-top: clamp(2.25rem, -0.25rem + 3.3333333333vw, 3.75rem);
}
.railway_main_wrap_bottom_text_it {
  display: block;
  padding: 0 15px;
  width: 100%;
  max-width: 435px;
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.375rem + 0.8333333333vw, 1.375rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 0.75rem + 0.8333333333vw, 1.75rem);
  color: #1D202E;
  text-wrap: balance;
}
.railway_main_wrap_bottom_icon {
  display: flex;
  width: 100%;
  max-width: clamp(28.75rem, 12.2916666667rem + 21.9444444444vw, 38.625rem);
  height: auto;
  position: absolute;
  top: 0;
  left: 0%;
}
@media screen and (max-width: 1599px) {
  .railway_main_wrap_bottom_icon {
    max-width: 440px;
  }
}
.railway_main_wrap_bottom_icon svg {
  width: 100%;
  height: auto;
}
.railway_main_wrap_bottom_icon.is-railway-slide-init {
  opacity: 0;
  transform: translate3d(calc(-100% - 56px), 0, 0);
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease;
  will-change: transform, opacity;
}
.railway_main_wrap_bottom_icon.is-railway-slide-init.is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.railway_main_trash {
  position: relative;
  padding-top: clamp(6.875rem, 2.7083333333rem + 5.5555555556vw, 9.375rem);
  margin-top: clamp(9.375rem, 2.0833333333rem + 9.7222222222vw, 13.75rem);
  padding-bottom: clamp(6.25rem, 2.0833333333rem + 5.5555555556vw, 8.75rem);
}
.railway_main_trash_content {
  display: flex;
  flex-direction: column;
  row-gap: clamp(2.5rem, 0.4166666667rem + 2.7777777778vw, 3.75rem);
  position: relative;
  z-index: 1;
}
.railway_main_trash_content_title {
  font-family: "Arsenal", sans-serif;
  font-size: clamp(28px, 20px + 1.0416666667vw, 40px);
  line-height: 100%;
  font-weight: 400;
  font-style: italic;
  color: #FFF;
}
.railway_main_trash_content_text {
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.375rem + 0.8333333333vw, 1.375rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 0.75rem + 0.8333333333vw, 1.75rem);
  color: #FFF;
  max-width: 435px;
  margin-left: auto;
  margin-right: 16.666%;
}
.railway_main_trash_bg {
  display: flex;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 105dvw !important;
  height: 100%;
  max-height: 100%;
  user-select: none;
  pointer-events: none;
}
.railway_main_trash_bg img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  max-width: unset;
  object-position: top left;
}
.railway_main_trash_img {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: clamp(31.25rem, 5.2083333333rem + 34.7222222222vw, 46.875rem);
  height: auto;
}
@media screen and (max-width: 1599px) {
  .railway_main_trash_img {
    max-width: 600px;
  }
}
@media screen and (max-width: 1199px) {
  .railway_main_trash_img {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .railway_main_wrap_bottom_icon.is-railway-slide-init {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .railway_main_wrap_bottom_right.is-railway-main-content-init {
    transform: none;
  }
  .railway_main_wrap_top_feature_year {
    transform: none;
  }
}
@media (max-width: 1199px) {
  .railway_main_wrap_top {
    max-width: 100%;
  }
  .railway_main_wrap_top_feature_slot {
    width: 85%;
    margin-left: 0;
    margin-top: 56px;
  }
  .railway_main_wrap_top_feature_year {
    font-size: 16px;
    line-height: 22px;
  }
  .railway_main_wrap_bottom {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .railway_main {
    padding-top: 100px;
  }
  .railway_main_wrap_top_images {
    row-gap: 20px;
    margin-top: 48px;
  }
  .railway_main_wrap_top_images_it {
    max-width: 100%;
  }
  .railway_main_wrap_top_feature_slot {
    width: 100%;
    margin-top: 28px;
  }
  .railway_main_wrap_top_feature_year {
    position: static;
    margin-top: 16px;
    transform: none;
    white-space: normal;
  }
  .railway_main_wrap .relative {
    margin-top: 56px;
  }
  .railway_main_wrap_bottom_text_it {
    max-width: 100%;
  }
}
.marks {
  margin-top: clamp(11.875rem, 2.5rem + 12.5vw, 17.5rem);
}
.marks_wrap_title {
  font-family: "Arsenal", sans-serif;
  font-size: clamp(34px, 6px + 3.6458333333vw, 76px);
  font-weight: 400;
  line-height: clamp(34px, 6px + 3.6458333333vw, 76px);
  font-style: italic;
  color: #1D202E;
}
.marks_wrap_content {
  margin-top: clamp(4.375rem, 1.25rem + 4.1666666667vw, 6.25rem);
}
.marks_wrap_content_img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}
.marks_wrap_content_img .main {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.marks_wrap_content_img .background {
  position: absolute;
  width: 800px;
  height: auto;
  top: -37px;
  left: -43px;
  z-index: 1;
}
.marks_wrap_content_img .circle {
  position: absolute;
  width: 135px;
  height: 131px;
  top: 0;
  left: calc(100% - 32px);
  z-index: 3;
}
.marks_wrap_content_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  margin-top: clamp(1.875rem, 0.3125rem + 2.0833333333vw, 2.8125rem);
}
.marks_wrap_content_list_it {
  display: block;
  padding: 0 15px;
  width: 100%;
  max-width: 50%;
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.375rem + 0.8333333333vw, 1.375rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 0.75rem + 0.8333333333vw, 1.75rem);
  color: #1D202E;
  text-wrap: balance;
}

.bank {
  margin-top: 50px;
}
.bank_wrap {
  position: relative;
}
.bank_wrap_block {
  display: flex;
  column-gap: clamp(1.125rem, -0.125rem + 1.6666666667vw, 1.875rem);
  position: absolute;
  top: clamp(7.375rem, 0.9166666667rem + 8.6111111111vw, 11.25rem);
  left: clamp(7.875rem, 1.2083333333rem + 8.8888888889vw, 11.875rem);
  z-index: 1;
}
.bank_wrap_num {
  color: #FFF;
  font-family: "Arsenal", sans-serif;
  font-size: clamp(11.875rem, 0.4166666667rem + 15.2777777778vw, 18.75rem);
  font-weight: 400;
  line-height: clamp(11.875rem, 0.4166666667rem + 15.2777777778vw, 18.75rem);
  letter-spacing: calc(clamp(0.1875rem, -0.125rem + 0.4166666667vw, 0.375rem) * -1);
}
.bank_wrap_content {
  max-width: 435px;
  width: 100%;
  margin-top: clamp(4.75rem, 0.6875rem + 5.4166666667vw, 7.1875rem);
}
.bank_wrap_content_title {
  font-family: "Arsenal", sans-serif;
  font-size: clamp(34px, 6px + 3.6458333333vw, 76px);
  font-weight: 400;
  line-height: clamp(34px, 6px + 3.6458333333vw, 76px);
  color: #FFF;
}
.bank_wrap_content_text {
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.375rem + 0.8333333333vw, 1.375rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 0.75rem + 0.8333333333vw, 1.75rem);
  color: #FFF;
  margin-top: clamp(1.75rem, 0.5rem + 1.6666666667vw, 2.5rem);
}
.bank_wrap_content_date {
  display: flex;
  align-items: center;
  column-gap: clamp(0.625rem, 0.2083333333rem + 0.5555555556vw, 0.875rem);
  margin-top: clamp(1.375rem, 0.5416666667rem + 1.1111111111vw, 1.875rem);
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.375rem + 0.8333333333vw, 1.375rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 0.75rem + 0.8333333333vw, 1.75rem);
  color: #FFF;
}
.bank_wrap_content_date .line {
  display: block;
  width: clamp(1.375rem, 0.5416666667rem + 1.1111111111vw, 1.875rem);
  height: 1px;
  background: #FFF;
}
.bank .bank_text_block {
  margin-top: calc(clamp(11.25rem, 2.9166666667rem + 11.1111111111vw, 16.25rem) * -1);
  z-index: 1;
  position: relative;
}
.bank .bank_text_block_content {
  display: flex;
  flex-direction: column;
  row-gap: clamp(1.875rem, 0.3125rem + 2.0833333333vw, 2.8125rem);
}
.bank .bank_text_block_img {
  display: block;
  width: 100%;
  height: auto;
}
.bank .bank_text_block_img img {
  width: 100%;
  height: auto;
}
.bank .bank_text_block_text {
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.375rem + 0.8333333333vw, 1.375rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 0.75rem + 0.8333333333vw, 1.75rem);
  color: #1D202E;
  width: 100%;
  max-width: 66.6666%;
}
.bank .bank_text_block .history_wrap_list {
  margin-top: 170px;
}

.house {
  margin-top: clamp(13.125rem, 3.75rem + 12.5vw, 18.75rem);
}
.house_wrap_title {
  display: flex;
  flex-direction: column;
  font-family: "Arsenal", sans-serif;
  font-size: clamp(34px, 6px + 3.6458333333vw, 76px);
  font-weight: 400;
  line-height: clamp(34px, 6px + 3.6458333333vw, 76px);
  font-style: italic;
  color: #1D202E;
}
.house_wrap_title span.first {
  margin-left: clamp(6.25rem, 0.625rem + 7.5vw, 9.625rem);
}
.house_wrap_content {
  display: flex;
  flex-direction: column;
  margin-top: clamp(2.5rem, 0.4166666667rem + 2.7777777778vw, 3.75rem);
}
.house_wrap_content_img {
  display: block;
  width: 100%;
  height: auto;
}
.house_wrap_content_img img {
  width: 100%;
  height: auto;
}
.house_wrap_content_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 0 -15px;
  margin-top: clamp(2.25rem, 0.7916666667rem + 1.9444444444vw, 3.125rem);
}
.house_wrap_content_list_it {
  display: block;
  padding: 0 15px;
  width: 100%;
  max-width: 37.5%;
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.375rem + 0.8333333333vw, 1.375rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 0.75rem + 0.8333333333vw, 1.75rem);
  color: #1D202E;
  text-wrap: balance;
}

.gardens {
  margin-top: clamp(13.125rem, 3.75rem + 12.5vw, 18.75rem);
}
.gardens_first {
  position: relative;
}
.gardens_first_flower {
  display: block;
  position: absolute;
  top: clamp(6.25rem, 1.7708333333rem + 5.9722222222vw, 8.9375rem);
  right: calc(clamp(1.75rem, -0.5416666667rem + 3.0555555556vw, 3.125rem) * -1);
  width: 100%;
  max-width: 405px;
  height: auto;
}
.gardens_first_flower img {
  width: 100%;
  height: auto;
}
.gardens_wrap {
  position: relative;
  --gardens-wrap-radius-start: 50;
  --gardens-wrap-gap-start: 100px;
  --gardens-wrap-radius: calc(var(--gardens-wrap-radius-start) * 1%);
  --gardens-wrap-inline-gap: var(--gardens-wrap-gap-start);
  padding-top: clamp(2.5rem, 0.4166666667rem + 2.7777777778vw, 3.75rem);
  padding-bottom: clamp(7.5rem, 2.2916666667rem + 6.9444444444vw, 10.625rem);
}
.gardens_wrap::after {
  content: "";
  display: block;
  width: calc(100vw - var(--gardens-wrap-inline-gap));
  height: 100%;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  top: 0;
  user-select: none;
  pointer-events: none;
  background: #0A1F07;
  z-index: -1;
  border-radius: var(--gardens-wrap-radius) var(--gardens-wrap-radius) 0 0;
}
.gardens_wrap_title {
  color: #C2A07A;
  text-align: center;
  font-family: "Arsenal", sans-serif;
  font-size: clamp(7.5rem, -0.8333333333rem + 11.1111111111vw, 12.5rem);
  font-weight: 400;
  line-height: clamp(7.5rem, -0.8333333333rem + 11.1111111111vw, 12.5rem);
  margin-bottom: clamp(4.75rem, 0.6875rem + 5.4166666667vw, 7.1875rem);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.gardens_img {
  display: block;
  width: 100%;
  height: auto;
}
.gardens_img img {
  width: 100%;
  height: auto;
}
.gardens_text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.375rem + 0.8333333333vw, 1.375rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 0.75rem + 0.8333333333vw, 1.75rem);
  color: #C2A07A;
}
.gardens_last {
  display: flex;
  flex-direction: column;
  row-gap: clamp(1.75rem, 0.5rem + 1.6666666667vw, 2.5rem);
  margin-top: clamp(6rem, 1.4166666667rem + 6.1111111111vw, 8.75rem);
}
.gardens_last_line {
  display: block;
  width: clamp(8.625rem, 3.625rem + 6.6666666667vw, 11.625rem);
  height: 1px;
  background: #C2A07A;
  margin-left: calc(clamp(3.375rem, 1.2916666667rem + 2.7777777778vw, 4.625rem) * -1);
}
.gardens_last_text {
  font-family: "Arsenal", sans-serif;
  font-size: clamp(1.875rem, -0.2083333333rem + 2.7777777778vw, 3.125rem);
  font-weight: 400;
  font-style: italic;
  line-height: clamp(2rem, -0.5rem + 3.3333333333vw, 3.5rem);
  color: #C2A07A;
}
.gardens_bottom {
  margin-top: calc(clamp(3rem, 0.7083333333rem + 3.0555555556vw, 4.375rem) * -1);
}
.gardens_bottom_img {
  display: block;
  width: 100%;
  height: auto;
}
.gardens_bottom_img img {
  width: 100%;
  height: auto;
}
.gardens_bottom_date {
  display: flex;
  align-items: flex-end;
  height: 100%;
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.7916666667rem + 0.2777777778vw, 1.125rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 1.1666666667rem + 0.2777777778vw, 1.5rem);
  color: rgba(29, 32, 46, 0.6);
  max-width: 250px;
}
.gardens_bottom_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  margin-top: clamp(2.25rem, 0.7916666667rem + 1.9444444444vw, 3.125rem);
}
.gardens_bottom_list_it {
  display: block;
  padding: 0 15px;
  width: 100%;
  max-width: 50%;
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.375rem + 0.8333333333vw, 1.375rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 0.75rem + 0.8333333333vw, 1.75rem);
  color: #1D202E;
  text-wrap: balance;
}

.education {
  margin-top: clamp(13.125rem, 3.75rem + 12.5vw, 18.75rem);
}
.education_wrap_title {
  color: #1D202E;
  text-align: center;
  font-family: "Arsenal", sans-serif;
  font-size: clamp(7.5rem, -0.8333333333rem + 11.1111111111vw, 12.5rem);
  font-weight: 400;
  line-height: clamp(7.5rem, -0.8333333333rem + 11.1111111111vw, 12.5rem);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.education_wrap_content {
  position: relative;
  margin-top: clamp(3.5rem, 1rem + 3.3333333333vw, 5rem);
  height: 100vh;
}
.education_wrap_content.is-static {
  height: auto;
}
.education_wrap_content_sticky {
  position: sticky;
  top: 120px;
}
.education_wrap_content_track {
  display: flex;
  gap: clamp(1.125rem, 0.5rem + 0.8333333333vw, 1.5rem);
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.education_wrap_content_track > .education_block {
  flex: 0 0 min(1920px, 100vw - 100px);
  width: min(1920px, 100vw - 100px);
  margin-left: 0;
  margin-right: 0;
}
.education_wrap_content_card {
  width: min(420px, 80vw);
  min-height: clamp(15rem, 10.8333333333rem + 5.5555555556vw, 17.5rem);
  padding: clamp(1.375rem, 0.75rem + 0.8333333333vw, 1.75rem);
  border: 1px solid rgba(29, 32, 46, 0.2);
  background-color: #FAF7F5;
  color: #1D202E;
}
.education_wrap_content_card_year {
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.7916666667rem + 0.2777777778vw, 1.125rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 1.1666666667rem + 0.2777777778vw, 1.5rem);
  color: rgba(29, 32, 46, 0.6);
}
.education_wrap_content_card_title {
  margin-top: clamp(1rem, 0.375rem + 0.8333333333vw, 1.375rem);
  font-family: "Arsenal", sans-serif;
  font-size: clamp(1.875rem, 1.0416666667rem + 1.1111111111vw, 2.375rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
.education_wrap_content_card_text {
  margin-top: clamp(1.125rem, 0.5rem + 0.8333333333vw, 1.5rem);
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.375rem + 0.8333333333vw, 1.375rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 0.75rem + 0.8333333333vw, 1.75rem);
  color: rgba(29, 32, 46, 0.9);
  text-wrap: balance;
}
.education_block_img {
  display: block;
  width: 100%;
  height: auto;
}
.education_block_img img {
  width: 100%;
  height: auto;
}
.education_block_content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
}
.education_block_content_title {
  font-family: "Arsenal", sans-serif;
  font-size: clamp(1.875rem, -0.2083333333rem + 2.7777777778vw, 3.125rem);
  font-weight: 400;
  font-style: italic;
  line-height: clamp(2rem, -0.5rem + 3.3333333333vw, 3.5rem);
  color: #1D202E;
}
.education_block_content_text {
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.375rem + 0.8333333333vw, 1.375rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 0.75rem + 0.8333333333vw, 1.75rem);
  color: #1D202E;
  margin-top: clamp(1.375rem, 0.5416666667rem + 1.1111111111vw, 1.875rem);
}
.education_commet {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: clamp(3rem, -0.3333333333rem + 4.4444444444vw, 5rem);
  width: 100%;
  max-width: 100vw;
  padding-right: clamp(6rem, 0.375rem + 7.5vw, 9.375rem);
}
.education_commet_left {
  font-family: "Arsenal", sans-serif;
  font-size: clamp(1.875rem, -0.2083333333rem + 2.7777777778vw, 3.125rem);
  font-weight: 400;
  font-style: italic;
  line-height: clamp(2rem, -0.5rem + 3.3333333333vw, 3.5rem);
  color: #C2A07A;
  text-align: left;
  width: 100%;
  max-width: 900px;
}
.education_commet_right {
  display: flex;
  flex-direction: column;
  row-gap: clamp(0.875rem, 0.25rem + 0.8333333333vw, 1.25rem);
  width: 100%;
  max-width: 400px;
}
.education_commet_right_img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.education_commet_right_img img {
  width: 100%;
  height: auto;
}
.education_commet_right figcaption {
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.7916666667rem + 0.2777777778vw, 1.125rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 1.1666666667rem + 0.2777777778vw, 1.5rem);
  color: rgba(29, 32, 46, 0.6);
}

@media (max-width: 1199px) {
  .education {
    margin-top: 220px;
  }
  .education_wrap_title {
    font-size: 120px;
    line-height: 0.95;
  }
  .education_wrap_content {
    margin-top: 56px;
  }
  .education_wrap_content_sticky {
    top: 100px;
    padding: 28px 0;
  }
  .education_wrap_content_track > .education_block {
    flex-basis: calc(100vw - 80px);
    width: calc(100vw - 80px);
  }
  .education_wrap_content_card {
    min-height: 250px;
    padding: 22px;
  }
  .education_wrap_content_card_title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .education {
    margin-top: 160px;
  }
  .education_wrap_title {
    font-size: 68px;
  }
  .education_wrap_content {
    margin-top: 34px;
  }
  .education_wrap_content_sticky {
    top: 84px;
  }
  .education_wrap_content_track {
    gap: 14px;
  }
  .education_wrap_content_track > .education_block {
    flex-basis: calc(100vw - 32px);
    width: calc(100vw - 32px);
  }
  .education_wrap_content_card {
    width: min(340px, 86vw);
    min-height: 220px;
  }
  .education_wrap_content_card_title {
    font-size: 26px;
    line-height: 1.05;
  }
}
@media (prefers-reduced-motion: reduce) {
  .education_wrap_content {
    height: auto !important;
  }
  .education_wrap_content_sticky {
    position: static;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
  }
  .education_wrap_content_track {
    transform: none !important;
    padding-bottom: 6px;
  }
}
.temples {
  margin-top: clamp(13.125rem, 3.75rem + 12.5vw, 18.75rem);
}
.temples_wrap {
  display: flex;
  flex-direction: column;
  row-gap: clamp(2.125rem, 0.4583333333rem + 2.2222222222vw, 3.125rem);
}
.temples_wrap_title {
  color: #1D202E;
  text-align: center;
  font-family: "Arsenal", sans-serif;
  font-size: clamp(7.5rem, -0.8333333333rem + 11.1111111111vw, 12.5rem);
  font-weight: 400;
  line-height: clamp(7.5rem, -0.8333333333rem + 11.1111111111vw, 12.5rem);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.temples_wrap .row.second {
  row-gap: clamp(2.875rem, 0.375rem + 3.3333333333vw, 4.375rem);
}
.temples_item_img {
  display: block;
  width: 100%;
  height: auto;
}
.temples_item_img img {
  width: 100%;
  height: auto;
}
.temples_item_content {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.temples_item_content.custom-mt {
  margin-top: 60px;
}
.temples_item_content_num {
  font-family: "Arsenal", sans-serif;
  font-size: clamp(1.875rem, -0.2083333333rem + 2.7777777778vw, 3.125rem);
  font-weight: 400;
  font-style: italic;
  line-height: clamp(2rem, -0.5rem + 3.3333333333vw, 3.5rem);
  color: #1D202E;
  width: 100%;
  max-width: 16.6666%;
  padding: 0 15px;
}
.temples_item_content_texts {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 66.6667%;
  padding: 0 15px;
}
.temples_item_content_texts_title {
  font-family: "Arsenal", sans-serif;
  font-size: clamp(1.875rem, -0.2083333333rem + 2.7777777778vw, 3.125rem);
  font-weight: 400;
  font-style: italic;
  line-height: clamp(2rem, -0.5rem + 3.3333333333vw, 3.5rem);
  color: #1D202E;
}
.temples_item_content_texts_text {
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.375rem + 0.8333333333vw, 1.375rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 0.75rem + 0.8333333333vw, 1.75rem);
  color: #1D202E;
  margin-top: clamp(1.375rem, 0.5416666667rem + 1.1111111111vw, 1.875rem);
}

.fabric {
  margin-top: clamp(2.25rem, 0.7916666667rem + 1.9444444444vw, 3.125rem);
}
.fabric_head {
  position: relative;
  height: 100vh;
}
.fabric_head.is-static {
  height: auto;
}
.fabric_head_sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
}
.fabric_title {
  color: #1D202E;
  font-family: "Arsenal", sans-serif;
  font-size: clamp(7.5rem, -0.8333333333rem + 11.1111111111vw, 12.5rem);
  font-weight: 400;
  line-height: clamp(7.5rem, -0.8333333333rem + 11.1111111111vw, 12.5rem);
  text-align: left;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.fabric_wrap {
  row-gap: clamp(2.5rem, 0.4166666667rem + 2.7777777778vw, 3.75rem);
}
.fabric_wrap_first {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  align-items: flex-end;
}
.fabric_wrap_first .fabric_wrap_img,
.fabric_wrap_first .fabric_wrap_first_text {
  display: block;
  padding: 0 15px;
  width: 100%;
  max-width: 50%;
}
.fabric_wrap_img {
  display: block;
  width: 100%;
  height: auto;
}
.fabric_wrap_img img {
  width: 100%;
  height: auto;
}
.fabric_wrap .fabric_wrap_first_text {
  display: flex;
  align-items: flex-end;
  height: 100%;
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.7916666667rem + 0.2777777778vw, 1.125rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 1.1666666667rem + 0.2777777778vw, 1.5rem);
  color: rgba(29, 32, 46, 0.5);
}
.fabric_wrap .fabric_wrap_first_text.right {
  text-align: right;
}
.fabric_wrap_item_title {
  font-family: "Arsenal", sans-serif;
  font-size: clamp(1.875rem, -0.2083333333rem + 2.7777777778vw, 3.125rem);
  font-weight: 400;
  font-style: italic;
  line-height: clamp(2rem, -0.5rem + 3.3333333333vw, 3.5rem);
  color: #1D202E;
  margin-top: clamp(2.5rem, 0.4166666667rem + 2.7777777778vw, 3.75rem);
  width: 100%;
  max-width: 75%;
}
.fabric_wrap_item_text {
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.375rem + 0.8333333333vw, 1.375rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 0.75rem + 0.8333333333vw, 1.75rem);
  color: #1D202E;
  margin-top: clamp(1.375rem, 0.5416666667rem + 1.1111111111vw, 1.875rem);
  width: 100%;
  max-width: 75%;
}
.fabric_benefits {
  justify-content: space-between;
  margin-top: clamp(6rem, 1.4166666667rem + 6.1111111111vw, 8.75rem);
  align-items: flex-start !important;
}
.fabric_benefits.mt80 {
  margin-top: clamp(3.5rem, 1rem + 3.3333333333vw, 5rem);
}
.fabric_benefits_it {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  row-gap: clamp(0.875rem, 0.25rem + 0.8333333333vw, 1.25rem);
}
.fabric_benefits_it.left {
  align-items: flex-start;
}
.fabric_benefits_it.center {
  align-items: center;
}
.fabric_benefits_it.right {
  align-items: flex-end;
}
.fabric_benefits_it_num {
  font-family: "Arsenal", sans-serif;
  font-size: clamp(34px, 6px + 3.6458333333vw, 76px);
  font-weight: 400;
  line-height: clamp(34px, 6px + 3.6458333333vw, 76px);
  font-style: italic;
  color: #C2A07A;
}
.fabric_benefits_it_title {
  color: #1D202E;
  font-family: "Arsenal", sans-serif;
  font-size: clamp(1.75rem, 1.125rem + 0.8333333333vw, 2.125rem);
  font-weight: 400;
  line-height: clamp(2rem, 1.1666666667rem + 1.1111111111vw, 2.5rem);
}
.fabric_benefits_it_title.left {
  text-align: left;
}
.fabric_benefits_it_title.center {
  text-align: center;
}
.fabric_benefits_it_title.right {
  text-align: right;
}
.fabric_armavir {
  margin-top: clamp(13.125rem, 3.75rem + 12.5vw, 18.75rem);
}
.fabric_armavir_title {
  font-family: "Arsenal", sans-serif;
  font-size: clamp(34px, 6px + 3.6458333333vw, 76px);
  font-weight: 400;
  line-height: clamp(34px, 6px + 3.6458333333vw, 76px);
  font-style: italic;
  color: #1D202E;
  margin-bottom: clamp(10rem, 1.6666666667rem + 11.1111111111vw, 15rem);
}
.fabric_armavir_wrap {
  display: flex;
  flex-direction: column;
  row-gap: clamp(10rem, 1.6666666667rem + 11.1111111111vw, 15rem);
}
.fabric_armavir_item .row {
  align-items: center;
}
.fabric_armavir_item_img {
  display: block;
  width: 100%;
  height: auto;
}
.fabric_armavir_item_img img {
  width: 100%;
  height: auto;
}
.fabric_armavir_item_content_title {
  font-family: "Arsenal", sans-serif;
  font-size: clamp(1.875rem, -0.2083333333rem + 2.7777777778vw, 3.125rem);
  font-weight: 400;
  font-style: italic;
  line-height: clamp(2rem, -0.5rem + 3.3333333333vw, 3.5rem);
  color: #1D202E;
}
.fabric_armavir_item_content_text {
  margin-top: clamp(1.375rem, 0.5416666667rem + 1.1111111111vw, 1.875rem);
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.375rem + 0.8333333333vw, 1.375rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 0.75rem + 0.8333333333vw, 1.75rem);
  color: #1D202E;
}

@media (max-width: 1199px) {
  .fabric_title {
    font-size: 120px;
    line-height: 0.95;
  }
}
@media (max-width: 767px) {
  .fabric_title {
    font-size: 68px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fabric_head {
    height: auto !important;
  }
  .fabric_head_sticky {
    position: static;
    height: auto;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
  }
  .fabric_title {
    transform: none !important;
    padding-bottom: 6px;
  }
}
.our_days {
  margin-top: clamp(13.125rem, 3.75rem + 12.5vw, 18.75rem);
}
.our_days_title {
  color: #1D202E;
  text-align: center;
  font-family: "Arsenal", sans-serif;
  font-size: clamp(3.5rem, 1.4166666667rem + 2.7777777778vw, 4.75rem);
  font-weight: 400;
  line-height: clamp(3.5rem, 1.4166666667rem + 2.7777777778vw, 4.75rem);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: sticky;
  bottom: 0;
}
.our_days_main {
  position: relative;
  margin-top: clamp(6.5rem, 1.7083333333rem + 6.3888888889vw, 9.375rem);
}
.our_days_main_img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50% 50% 0 0;
  overflow: hidden;
}
.our_days_main_img img {
  width: 100%;
  height: auto;
}
.our_days_main_title {
  font-family: "Arsenal", sans-serif;
  font-size: clamp(34px, 6px + 3.6458333333vw, 76px);
  font-weight: 400;
  line-height: clamp(34px, 6px + 3.6458333333vw, 76px);
  font-style: italic;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: clamp(6rem, 0.375rem + 7.5vw, 9.375rem);
  max-width: 770px;
  width: 100%;
}

.now_block {
  display: flex;
  margin-top: clamp(1.25rem, -1.875rem + 4.1666666667vw, 3.125rem);
  flex-direction: column;
  row-gap: clamp(0.75rem, 0.3333333333rem + 0.5555555556vw, 1rem);
}
.now_block_head {
  display: flex;
  align-items: center;
  column-gap: clamp(0.625rem, 0.2083333333rem + 0.5555555556vw, 0.875rem);
  width: fit-content;
  max-width: 100%;
}
.now_block_line {
  display: block;
  width: 100%;
  max-width: clamp(1.375rem, 0.5416666667rem + 1.1111111111vw, 1.875rem);
  flex-shrink: 0;
  background: #1D202E;
  height: 1px;
}
.now_block_title {
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.7916666667rem + 0.2777777778vw, 1.125rem);
  font-weight: 400;
  font-style: italic;
  line-height: clamp(1.375rem, 1.1666666667rem + 0.2777777778vw, 1.5rem);
  color: #1D202E;
  flex-shrink: 0;
}
.now_block_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(1.125rem, 0.7083333333rem + 0.5555555556vw, 1.375rem);
  height: clamp(1.125rem, 0.7083333333rem + 0.5555555556vw, 1.375rem);
  flex-shrink: 0;
  padding: 0;
  border: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
@media (hover: hover) {
  .now_block_icon:hover {
    transform: translateY(-1px);
    opacity: 0.75;
  }
}
@media (hover: none) {
  .now_block_icon:active {
    transform: translateY(-1px);
    opacity: 0.75;
  }
}
.now_block_icon:focus-visible {
  outline: 1px solid #1D202E;
  outline-offset: 4px;
}
.now_block_icon svg {
  width: 100%;
  height: 100%;
  transition: transform 0.25s ease;
}
.now_block_icon.is-active svg {
  transform: rotate(180deg);
}
.now_block_text {
  width: 100%;
  max-width: 500px;
  padding: clamp(0.5rem, 0.2916666667rem + 0.2777777778vw, 0.625rem) clamp(0.75rem, 0.5416666667rem + 0.2777777778vw, 0.875rem) clamp(0.625rem, 0.4166666667rem + 0.2777777778vw, 0.75rem) clamp(0.75rem, 0.5416666667rem + 0.2777777778vw, 0.875rem);
  background: #EDE6DC;
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.7916666667rem + 0.2777777778vw, 1.125rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 1.1666666667rem + 0.2777777778vw, 1.5rem);
  color: #1D202E;
}

.tippy-box[data-theme~=now-block-tooltip] {
  max-width: 500px !important;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #1D202E;
  box-shadow: none;
  position: relative;
  overflow: visible;
}
.tippy-box[data-theme~=now-block-tooltip] .tippy-content {
  padding: 0;
}
.tippy-box[data-theme~=now-block-tooltip]::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: #EDE6DC;
  transform: rotate(45deg);
}

.tippy-box[data-theme~=now-block-tooltip][data-placement^=bottom]::before {
  top: -9px;
  left: clamp(12px, var(--now-tooltip-arrow-offset-x, 50%) - 9px, 100% - 30px);
}

.tippy-box[data-theme~=now-block-tooltip][data-placement^=top]::before {
  bottom: -9px;
  left: clamp(12px, var(--now-tooltip-arrow-offset-x, 50%) - 9px, 100% - 30px);
}

.tippy-box[data-theme~=now-block-tooltip][data-placement^=right]::before {
  left: -9px;
  top: clamp(12px, var(--now-tooltip-arrow-offset-y, 50%) - 9px, 100% - 30px);
}

.tippy-box[data-theme~=now-block-tooltip][data-placement^=left]::before {
  right: -9px;
  top: clamp(12px, var(--now-tooltip-arrow-offset-y, 50%) - 9px, 100% - 30px);
}

.now_block_tooltip_content {
  width: 100%;
  max-width: min(500px, 100vw - 32px);
  padding: clamp(0.5rem, 0.2916666667rem + 0.2777777778vw, 0.625rem) clamp(0.75rem, 0.5416666667rem + 0.2777777778vw, 0.875rem) clamp(0.625rem, 0.4166666667rem + 0.2777777778vw, 0.75rem) clamp(0.75rem, 0.5416666667rem + 0.2777777778vw, 0.875rem);
  background: #EDE6DC;
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.7916666667rem + 0.2777777778vw, 1.125rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 1.1666666667rem + 0.2777777778vw, 1.5rem);
  color: #1D202E;
}
.now_block_tooltip_content p {
  margin: 0;
}

.tippy-box[data-theme~=on-map-point-tooltip] {
  max-width: 420px !important;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #FFF;
  box-shadow: none;
  position: relative;
  overflow: visible;
}
.tippy-box[data-theme~=on-map-point-tooltip] .tippy-content {
  padding: 0;
}
.tippy-box[data-theme~=on-map-point-tooltip]::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: #1D202E;
  transform: rotate(45deg);
}

.tippy-box[data-theme~=on-map-point-tooltip][data-placement^=bottom]::before {
  top: -9px;
  left: clamp(12px, var(--now-tooltip-arrow-offset-x, 50%) - 9px, 100% - 30px);
}

.tippy-box[data-theme~=on-map-point-tooltip][data-placement^=top]::before {
  bottom: -9px;
  left: clamp(12px, var(--now-tooltip-arrow-offset-x, 50%) - 9px, 100% - 30px);
}

.tippy-box[data-theme~=on-map-point-tooltip][data-placement^=right]::before {
  left: -9px;
  top: clamp(12px, var(--now-tooltip-arrow-offset-y, 50%) - 9px, 100% - 30px);
}

.tippy-box[data-theme~=on-map-point-tooltip][data-placement^=left]::before {
  right: -9px;
  top: clamp(12px, var(--now-tooltip-arrow-offset-y, 50%) - 9px, 100% - 30px);
}

.on_map_point_tooltip_content {
  width: 100%;
  max-width: min(420px, 100vw - 32px);
  padding: clamp(0.625rem, 0.4166666667rem + 0.2777777778vw, 0.75rem) clamp(0.8125rem, 0.5rem + 0.4166666667vw, 1rem) clamp(0.6875rem, 0.375rem + 0.4166666667vw, 0.875rem) clamp(0.8125rem, 0.5rem + 0.4166666667vw, 1rem);
  background: #1D202E;
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.7916666667rem + 0.2777777778vw, 1.125rem);
  font-weight: 400;
  line-height: clamp(1.375rem, 1.1666666667rem + 0.2777777778vw, 1.5rem);
  color: #FFF;
}
.on_map_point_tooltip_content p {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .now_block_icon {
    transition: none;
  }
  .on_map_main_left_it,
  .on_map_main_left_it_title_it,
  .on_map_main_left_it_title_icon,
  .on_map_main_left_it_subtitle,
  .on_map_main_left_it_subtitle_line,
  .on_map_main_imgs_points_group,
  .on_map_main_imgs_points_group_it {
    transition: none !important;
  }
}
.on_map {
  margin-top: clamp(13.125rem, 3.75rem + 12.5vw, 18.75rem);
  --on-map-map-translate-x: 0px;
  --on-map-map-translate-y: 0px;
  --on-map-map-scale-x: 1;
  --on-map-map-scale-y: 1;
  --on-map-map-opacity: 1;
}
.on_map_wrap {
  position: relative;
}
.on_map_wrap_title {
  color: #1D202E;
  text-align: center;
  font-family: "Arsenal", sans-serif;
  font-size: clamp(7.5rem, -0.8333333333rem + 11.1111111111vw, 12.5rem);
  font-weight: 400;
  line-height: clamp(7.5rem, -0.8333333333rem + 11.1111111111vw, 12.5rem);
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}
.on_map_preview_anchor {
  width: clamp(150px, 14vw, 240px);
  aspect-ratio: 710/476;
  margin: clamp(2.25rem, 0.5833333333rem + 2.2222222222vw, 3.25rem) auto 0;
  pointer-events: none;
}
.on_map_main {
  margin-top: clamp(4.375rem, 1.25rem + 4.1666666667vw, 6.25rem);
}
.on_map_main_left {
  display: flex;
  flex-direction: column;
  row-gap: clamp(1.75rem, 0.5rem + 1.6666666667vw, 2.5rem);
  pointer-events: none;
}
.on_map.is-on-map-revealed .on_map_main_left {
  pointer-events: auto;
}
.on_map_main_left_it {
  cursor: pointer;
  outline: none;
  opacity: 0;
  transform: translate3d(-28px, 0, 0);
  transition: opacity 0.42s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.on_map.is-on-map-revealed .on_map_main_left_it {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.on_map_main_left_it:nth-child(1) {
  transition-delay: 0s;
}
.on_map_main_left_it:nth-child(2) {
  transition-delay: 0.08s;
}
.on_map_main_left_it:nth-child(3) {
  transition-delay: 0.16s;
}
.on_map_main_left_it:nth-child(4) {
  transition-delay: 0.24s;
}
.on_map_main_left_it:nth-child(5) {
  transition-delay: 0.32s;
}
.on_map_main_left_it:focus-visible {
  outline: 1px solid #1D202E;
  outline-offset: 6px;
}
.on_map_main_left_it:focus-visible .on_map_main_left_it_title_it {
  color: #1D202E;
}
@media (hover: hover) {
  .on_map_main_left_it:hover .on_map_main_left_it_title_it {
    color: #1D202E;
  }
}
@media (hover: none) {
  .on_map_main_left_it:active .on_map_main_left_it_title_it {
    color: #1D202E;
  }
}
.on_map_main_left_it_title {
  display: inline-block;
}
.on_map_main_left_it_title_it {
  display: inline;
  color: rgb(205, 205, 205);
  font-family: "Arsenal", sans-serif;
  font-size: clamp(1.625rem, 1rem + 0.8333333333vw, 2rem);
  font-weight: 400;
  line-height: clamp(1.625rem, 1rem + 0.8333333333vw, 2rem);
  max-width: min-content;
  transition: color 0.35s ease;
}
.on_map_main_left_it_title_icon {
  display: inline-block;
  width: clamp(0.875rem, 0.6666666667rem + 0.2777777778vw, 1rem);
  height: clamp(0.875rem, 0.6666666667rem + 0.2777777778vw, 1rem);
  flex-shrink: 0;
  margin-left: clamp(0.25rem, 0.1458333333rem + 0.1388888889vw, 0.3125rem);
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  cursor: inherit;
  opacity: 0;
  visibility: hidden;
  user-select: none;
  pointer-events: none;
  vertical-align: baseline;
  transform: translate3d(0, 6px, 0);
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.35s;
}
.on_map_main_left_it_title_icon:focus-visible {
  outline: 1px solid #1D202E;
  outline-offset: 4px;
}
.on_map_main_left_it_title_icon svg {
  width: 100%;
  height: 100%;
}
.on_map_main_left_it_subtitle {
  display: flex;
  align-items: center;
  margin-top: 0;
  column-gap: clamp(0.625rem, 0.2083333333rem + 0.5555555556vw, 0.875rem);
  font-family: "Source Sans Pro", sans-serif;
  font-size: clamp(1rem, 0.7916666667rem + 0.2777777778vw, 1.125rem);
  font-weight: 400;
  font-style: italic;
  line-height: clamp(1.375rem, 1.1666666667rem + 0.2777777778vw, 1.5rem);
  color: #1D202E;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(0, -6px, 0);
  transition: margin-top 0.45s cubic-bezier(0.22, 1, 0.36, 1), max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.on_map_main_left_it_subtitle_line {
  display: block;
  width: 100%;
  max-width: 30px;
  height: 1px;
  background: #1D202E;
  flex-shrink: 0;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}
.on_map_main_left_it.active .on_map_main_left_it_title_it {
  color: #1D202E;
}
.on_map_main_left_it.active .on_map_main_left_it_title_icon {
  opacity: 1;
  visibility: visible;
  user-select: auto;
  pointer-events: all;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}
.on_map_main_left_it.active .on_map_main_left_it_subtitle {
  margin-top: 14px;
  max-height: 64px;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}
.on_map_main_left_it.active .on_map_main_left_it_subtitle_line {
  opacity: 1;
  transform: scaleX(1);
}
.on_map_main_imgs {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  opacity: var(--on-map-map-opacity);
  transform: translate3d(var(--on-map-map-translate-x), var(--on-map-map-translate-y), 0) scale(var(--on-map-map-scale-x), var(--on-map-map-scale-y));
  transform-origin: left top;
}
.on_map.is-on-map-scroll-init .on_map_main_imgs {
  will-change: transform, opacity;
}
.on_map_main_imgs img {
  width: 100%;
  height: auto;
}
.on_map_main_imgs_points {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.on_map_main_imgs_points_group {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}
.on_map_main_imgs_points_group.active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.on_map_main_imgs_points_group.active .on_map_main_imgs_points_group_it {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.on_map_main_imgs_points_group_it {
  display: flex;
  width: 48px;
  height: 60px;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translate(-50%, calc(-50% + 12px)) scale(0.92);
  transition: opacity 0.35s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}
.on_map_main_imgs_points_group_it:nth-child(1) {
  transition-delay: 0s;
}
.on_map_main_imgs_points_group_it:nth-child(2) {
  transition-delay: 0.06s;
}
.on_map_main_imgs_points_group_it:nth-child(3) {
  transition-delay: 0.12s;
}
.on_map_main_imgs_points_group_it:nth-child(4) {
  transition-delay: 0.18s;
}
@media screen and (max-width: 1199px) {
  .on_map_main_imgs_points_group_it {
    width: 32px;
    height: 40px;
  }
}
.on_map_main_imgs_points_group_it svg {
  width: 100%;
  height: 100%;
  max-width: 32px;
  max-height: 40px;
}

.on_map.is-on-map-scroll-init:not(.is-on-map-revealed) .on_map_main_imgs_points_group.active .on_map_main_imgs_points_group_it {
  opacity: 0;
  transform: translate(-50%, calc(-50% + 12px)) scale(0.92);
}

@media (min-width: 320px) and (max-width: 1199px) {
  .split-line,
  .reveal-line,
  .reveal-line-inner,
  [data-line-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    will-change: auto !important;
  }
}
@media (max-width: 1199px) {
  html,
  body,
  main {
    overflow-x: clip;
  }
  main > section {
    margin-top: 56px;
  }
  main > section:first-child {
    margin-top: 0 !important;
  }
  .container {
    padding: 0 20px;
  }
  .row {
    --bs-gutter-x: 20px;
  }
  [data-scroll],
  .js-scroll-parallax {
    transform: none !important;
  }
  .js-scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero_main {
    min-height: 0;
    height: auto;
  }
  .hero_main .container, .hero_main_wrap {
    height: auto;
  }
  .hero_main_wrap {
    align-items: flex-end;
    padding: 100px 0;
  }
  .hero_main_wrap_content {
    row-gap: 24px;
  }
  .hero_main_wrap_content_title {
    font-size: clamp(56px, 10vw, 92px);
    line-height: 0.92;
    letter-spacing: -0.03em;
  }
  .hero_main_wrap_content_text {
    max-width: none;
    margin-left: 0;
  }
  .hero_main_wrap_video {
    position: static;
    max-width: 280px;
    margin-top: 24px;
  }
  .hero_main_img img {
    width: 100%;
    height: 100%;
  }
  .toc {
    margin-top: 72px;
  }
  .toc_wrap {
    align-items: stretch;
  }
  .toc_wrap_it {
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(29, 32, 46, 0.12);
  }
  .hero_second_wrap_text {
    position: static;
    height: auto;
    max-width: none;
    padding-top: 0;
    justify-content: flex-start;
    text-align: left;
  }
  .hero_second_wrap_imgs {
    gap: 16px;
    padding-top: 20px;
    padding-bottom: 0;
  }
  .hero_second_wrap_imgs_it {
    margin-top: 0 !important;
    margin-left: 0 !important;
    width: 100%;
    max-width: none !important;
  }
  .nik_prospekt_wrap_content_title,
  .on_map_wrap_title,
  .gardens_wrap_title,
  .education_wrap_title,
  .temples_wrap_title,
  .our_days_title,
  .fabric_title {
    text-align: left;
  }
  .nik_prospekt_wrap {
    row-gap: 16px;
  }
  .nik_prospekt_wrap_content_list {
    margin: 20px 0 0;
    row-gap: 16px;
  }
  .nik_prospekt_wrap_content_list_it {
    max-width: 100%;
    padding: 0;
    text-wrap: pretty;
  }
  .nik_prospekt_wrap .mt60 {
    margin-top: 0;
  }
  .nik_prospekt_wrap .col-xl-8,
  .nik_prospekt_wrap .col-xl-4,
  .nik_prospekt_wrap .col-xl-6 {
    margin-top: 0px;
  }
  .nik_prospekt_wrap_small {
    margin: 0;
    column-gap: 16px;
    row-gap: 16px;
  }
  .nik_prospekt_wrap_small_thumb, .nik_prospekt_wrap_small_text {
    padding: 0;
  }
  .nik_prospekt_wrap .nik_prospekt_wrap_last {
    margin-top: 0px;
  }
  .history {
    margin-top: 120px;
  }
  .history_wrap_year {
    position: static;
    margin-top: 0;
    margin-bottom: 16px;
  }
  .history_wrap_list {
    row-gap: 40px;
  }
  .history_wrap_list_it {
    row-gap: 14px;
  }
  .history_wrap_list_it_num {
    font-size: clamp(64px, 11vw, 104px);
    line-height: 0.92;
    letter-spacing: -0.03em;
  }
  .history_wrap_list_it_title {
    margin-left: 0;
    max-width: none;
  }
  .on_map {
    margin-top: 160px;
  }
  .on_map_wrap_title {
    font-size: clamp(58px, 10vw, 96px);
    line-height: 0.92;
  }
  .on_map_preview_anchor {
    display: none;
  }
  .on_map_main {
    margin-top: 36px;
    row-gap: 28px;
  }
  .on_map_main_left {
    row-gap: 18px;
    pointer-events: auto;
  }
  .on_map_main_left_it {
    opacity: 1 !important;
    transform: none !important;
  }
  .on_map_main_left_it_title_it {
    font-size: clamp(28px, 4vw, 36px);
    line-height: 1;
    max-width: none;
  }
  .on_map_main_imgs {
    transform: none !important;
    opacity: 1 !important;
  }
  .urban_silhouette,
  .post_street {
    margin-top: 140px;
    margin-bottom: 0;
  }
  .urban_silhouette .urban_silhouette_wrap_head,
  .post_street .urban_silhouette_wrap_head {
    position: static;
    padding: 24px;
    background: #1D202E;
    row-gap: 20px;
  }
  .urban_silhouette .urban_silhouette_wrap_head_title,
  .post_street .urban_silhouette_wrap_head_title {
    font-size: clamp(40px, 8vw, 62px);
    line-height: 0.95;
  }
  .urban_silhouette .urban_silhouette_wrap_head_title span:first-of-type,
  .post_street .urban_silhouette_wrap_head_title span:first-of-type {
    margin-left: 0;
  }
  .urban_silhouette .urban_silhouette_wrap_head_text,
  .post_street .urban_silhouette_wrap_head_text {
    max-width: none;
    margin-left: 0;
  }
  .urban_silhouette .urban_silhouette_img,
  .post_street .urban_silhouette_img {
    margin-top: 0;
    min-height: 420px;
  }
  .urban_silhouette .urban_silhouette_img img,
  .post_street .urban_silhouette_img img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
  }
  .urban_silhouette .urban_silhouette_img_one,
  .urban_silhouette .urban_silhouette_img_two,
  .post_street .urban_silhouette_img_one,
  .post_street .urban_silhouette_img_two {
    display: none;
  }
  .winter_club {
    margin-top: 60px;
  }
  .winter_club_wrap_title {
    margin-top: 28px;
    max-width: none;
  }
  .theatre {
    margin-top: 60px;
  }
  .theatre_wrap_left_wp {
    padding-bottom: 0;
  }
  .theatre_wrap_left {
    max-width: none;
    margin-right: 0;
    padding: 32px 24px 24px;
  }
  .theatre_wrap_left_tape {
    display: none;
  }
  .theatre_wrap_year {
    justify-content: flex-start;
    margin-top: 16px;
  }
  .theatre_wrap_content_title {
    margin-top: 28px;
  }
  .theatre_wrap_content_list {
    row-gap: 18px;
    margin-top: 24px;
  }
  .theatre_wrap_content_list_it {
    max-width: 100%;
  }
  .france {
    margin-top: 96px;
  }
  .france_wrap_head {
    margin-bottom: 28px;
  }
  .france_wrap_head_route {
    height: 144px;
  }
  .france_wrap_head_route_card, .france_wrap_head_route_flag {
    display: none;
  }
  .mars {
    margin-top: 160px;
  }
  .mars_wrap_img_cloud {
    display: none;
  }
  .mars_wrap_content {
    margin-top: 24px;
    row-gap: 20px;
  }
  .mars_wrap_content_text {
    max-width: none;
  }
  .railway {
    margin-top: 80px;
  }
  .railway_wrap {
    height: auto;
  }
  .railway_wrap_title {
    position: static;
    height: auto;
    font-size: clamp(58px, 10vw, 96px);
    line-height: 0.92;
    padding: 0 0 24px;
    align-items: flex-start;
    text-align: left;
  }
  .railway_wrap_icon {
    position: static;
    top: auto;
    height: auto;
    padding-bottom: 12px;
  }
  .railway_wrap_icon svg {
    width: min(100%, 780px);
    height: auto;
  }
  .railway_main {
    padding-top: 96px;
  }
  .railway_main_wrap_title .first {
    margin-left: 0;
  }
  .railway_main_wrap_top {
    max-width: 100%;
  }
  .railway_main_wrap_top_images {
    row-gap: 20px;
    margin: 40px 0 0;
  }
  .railway_main_wrap_top_images_it {
    max-width: 100%;
    padding: 0;
  }
  .railway_main_wrap_top_feature_slot, .railway_main_wrap_top_feature_year {
    display: none;
  }
  .railway_main_wrap .relative {
    margin-top: 48px;
  }
  .railway_main_wrap_bottom {
    max-width: 100%;
  }
  .railway_main_wrap_bottom_text {
    row-gap: 18px;
    margin: 28px 0 0;
  }
  .railway_main_wrap_bottom_text_it {
    max-width: 100%;
    padding: 0;
  }
  .railway_main_wrap_bottom_icon {
    display: none;
  }
  .railway_main_wrap_bottom_right.is-railway-main-content-init {
    opacity: 1;
    transform: none;
  }
  .railway_main_trash {
    margin-top: 72px;
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .railway_main_trash_content {
    row-gap: 28px;
  }
  .railway_main_trash_content_text {
    max-width: none;
    margin-right: 0;
  }
  .railway_main_trash_bg {
    display: none;
  }
  .marks {
    margin-top: 140px;
  }
  .marks_wrap_content {
    margin-top: 40px;
  }
  .marks_wrap_content_img .background,
  .marks_wrap_content_img .circle {
    display: none;
  }
  .marks_wrap_content_list {
    row-gap: 18px;
    margin: 24px 0 0;
  }
  .marks_wrap_content_list_it {
    max-width: 100%;
    padding: 0;
  }
  .bank {
    margin-top: 72px;
  }
  .bank_wrap_block {
    position: static;
    flex-direction: column;
    row-gap: 20px;
    margin-bottom: 24px;
  }
  .bank_wrap_num {
    font-size: clamp(64px, 11vw, 110px);
    line-height: 0.9;
    letter-spacing: -0.03em;
  }
  .bank_wrap_content {
    max-width: none;
    margin-top: 0;
  }
  .bank .bank_text_block {
    margin-top: 32px;
  }
  .bank .bank_text_block_text {
    max-width: none;
  }
  .bank .bank_text_block .history_wrap_list {
    margin-top: 40px;
  }
  .house {
    margin-top: 160px;
  }
  .house_wrap_title .first {
    margin-left: 0;
  }
  .house_wrap_content_list {
    row-gap: 20px;
    margin: 28px 0 0;
  }
  .house_wrap_content_list_it {
    max-width: 100%;
    padding: 0;
  }
  .gardens {
    margin-top: 160px;
  }
  .gardens_first_flower {
    display: none;
  }
  .gardens_wrap {
    padding-top: 32px;
    padding-bottom: 64px;
    --gardens-wrap-radius-start: 18;
    --gardens-wrap-gap-start: 0px;
  }
  .gardens_wrap::after {
    width: 100%;
    border-radius: 32px 32px 0 0;
  }
  .gardens_wrap_title {
    margin-bottom: 40px;
    font-size: clamp(58px, 10vw, 96px);
    line-height: 0.92;
  }
  .gardens_text {
    margin-top: 24px;
  }
  .gardens_last {
    margin-top: 32px;
  }
  .gardens_last_line {
    width: 96px;
    margin-left: 0;
  }
  .gardens_bottom {
    margin-top: 40px;
  }
  .gardens_bottom_list {
    row-gap: 16px;
    margin: 24px 0 0;
  }
  .gardens_bottom_list_it {
    max-width: 100%;
    padding: 0;
  }
  .gardens_bottom_date {
    max-width: none;
    margin-top: 12px;
  }
  .education {
    margin-top: 160px;
  }
  .education_wrap_title {
    font-size: clamp(58px, 10vw, 96px);
    line-height: 0.92;
  }
  .education_wrap_content {
    height: auto;
    margin-top: 36px;
  }
  .education_wrap_content_sticky {
    position: static;
    top: auto;
    padding: 0;
  }
  .education_wrap_content_track {
    display: grid;
    gap: 40px;
    width: 100%;
    transform: none !important;
  }
  .education_wrap_content_track > .education_block {
    width: 100% !important;
    flex: auto;
  }
  .education_block_content {
    margin-top: 18px;
  }
  .education_commet {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 20px;
    padding-right: 0;
  }
  .education_commet_left, .education_commet_right {
    max-width: none;
  }
  .temples {
    margin-top: 160px;
  }
  .temples_wrap {
    row-gap: 32px;
  }
  .temples_wrap_title {
    font-size: clamp(58px, 10vw, 96px);
    line-height: 0.92;
  }
  .temples_wrap .row.second {
    row-gap: 32px;
  }
  .temples_item_content {
    display: block;
    margin: 24px 0 0;
  }
  .temples_item_content.custom-mt {
    margin-top: 24px;
  }
  .temples_item_content_num, .temples_item_content_texts {
    max-width: 100%;
    padding: 0;
  }
  .temples_item_content_num {
    margin-bottom: 14px;
  }
  .fabric {
    margin-top: 32px;
  }
  .fabric_head {
    height: auto;
  }
  .fabric_head_sticky {
    position: static;
    height: auto;
  }
  .fabric_title {
    width: 100%;
    white-space: normal;
    font-size: clamp(58px, 10vw, 96px);
    line-height: 0.92;
    transform: none !important;
  }
  .fabric_wrap {
    row-gap: 40px;
  }
  .fabric_wrap_first {
    margin: 0;
    row-gap: 24px;
  }
  .fabric_wrap_first .fabric_wrap_img,
  .fabric_wrap_first .fabric_wrap_first_text {
    max-width: 100%;
    padding: 0;
  }
  .fabric_wrap_item_title, .fabric_wrap_item_text {
    max-width: 100%;
  }
  .fabric_benefits {
    margin-top: 48px;
    row-gap: 24px;
  }
  .fabric_benefits.mt80 {
    margin-top: 48px;
  }
  .fabric_benefits_it {
    align-items: flex-start !important;
  }
  .fabric_benefits_it_title {
    text-align: left !important;
  }
  .fabric_armavir {
    margin-top: 140px;
  }
  .fabric_armavir_title {
    margin-bottom: 56px;
  }
  .fabric_armavir_wrap {
    row-gap: 64px;
  }
  .our_days {
    margin-top: 160px;
  }
  .our_days_title {
    position: static;
    margin-bottom: 24px;
    font-size: clamp(34px, 7vw, 56px);
    line-height: 1;
  }
  .our_days_main {
    margin-top: 0;
  }
  .our_days_main_img {
    border-radius: 28px 28px 0 0;
  }
  .our_days_main_title {
    position: static;
    transform: none;
    max-width: none;
    padding: 24px 20px 0;
    color: #1D202E;
  }
  .footer_wrap {
    row-gap: 32px;
  }
  .footer_wrap_documents {
    row-gap: 12px;
  }
  .now_block {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }
  .row {
    --bs-gutter-x: 16px;
  }
  .header .container {
    padding: 0 16px;
  }
  .header_wrap {
    justify-content: space-between;
  }
  .header_wrap_nav {
    top: calc(100% + 12px);
    right: 0;
    left: 0;
  }
  .header_wrap_nav ul {
    max-height: calc(100vh - 110px);
  }
  .header_wrap_nav a,
  .header_wrap_nav button {
    padding: 12px 14px;
  }
  .hero_main_wrap {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 100px 0;
  }
  .hero_main_wrap_content_title {
    font-size: clamp(48px, 14vw, 64px);
  }
  .hero_main_wrap_video {
    width: auto;
    max-width: 100%;
  }
  .hero_main_wrap_video_thumb {
    display: none;
  }
  .urban_silhouette .urban_silhouette_img,
  .post_street .urban_silhouette_img {
    min-height: 360px;
  }
  .urban_silhouette .urban_silhouette_img img,
  .post_street .urban_silhouette_img img {
    min-height: 360px;
  }
  .our_days_main_title {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 1599px) {
  .toc,
  .hero_second,
  .history,
  .on_map,
  .urban_silhouette,
  .nik_prospekt,
  .post_street,
  .winter_club,
  .theatre,
  .france,
  .mars,
  .railway,
  .railway_main,
  .marks,
  .bank,
  .house,
  .gardens,
  .education,
  .temples,
  .fabric,
  .our_days {
    margin-top: 120px;
  }
}
@media screen and (max-width: 1199px) {
  .container {
    padding: 0 12px;
  }
  .now_block_head {
    column-gap: 10px;
  }
  .toc,
  .hero_second,
  .history,
  .on_map,
  .urban_silhouette,
  .nik_prospekt,
  .post_street,
  .winter_club,
  .theatre,
  .france,
  .mars,
  .railway,
  .railway_main,
  .marks,
  .bank,
  .house,
  .gardens,
  .education,
  .temples,
  .fabric,
  .our_days {
    margin-top: 60px;
  }
  .railway_wrap_title,
  .on_map_wrap_title,
  .gardens_wrap_title,
  .education_wrap_title,
  .temples_wrap_title,
  .fabric_title {
    font-size: 40px;
    line-height: 100%;
  }
  .hero_second .hero_second_wrap_text {
    font-size: 30px;
    line-height: 100%;
  }
  .hero_second .hero_second_wrap_imgs {
    padding-top: 20px;
    margin-top: 0px;
    row-gap: 16px;
  }
  .history .history_wrap_year {
    margin-bottom: 20px;
  }
  .history .history_wrap_list {
    row-gap: 20px;
  }
  .history .history_wrap_list .history_wrap_list_it {
    row-gap: 10px;
    height: auto;
  }
  .history .history_wrap_list .history_wrap_list_it .history_wrap_list_it_num {
    font-size: 50px;
    line-height: 100%;
  }
  .history .history_wrap_list .history_wrap_list_it .history_wrap_list_it_title {
    font-size: 30px;
    line-height: 100%;
  }
  .on_map .on_map_main {
    margin-top: 20px;
    row-gap: 20px;
  }
  .on_map .on_map_main .on_map_main_left {
    row-gap: 16px;
  }
  .on_map .on_map_main .on_map_main_left .on_map_main_left_it_subtitle {
    margin-top: 4px;
  }
  .urban_silhouette .urban_silhouette_wrap_head {
    padding: 16px;
    row-gap: 16px;
  }
  .urban_silhouette .urban_silhouette_wrap_head .urban_silhouette_wrap_head_title {
    display: inline-block;
    font-size: 30px;
    line-height: 100%;
  }
  .nik_prospekt .nik_prospekt_wrap {
    row-gap: 20px;
  }
  .nik_prospekt .nik_prospekt_wrap .nik_prospekt_wrap_left {
    max-width: 140px;
    margin-bottom: -10px;
  }
  .nik_prospekt .nik_prospekt_wrap .nik_prospekt_wrap_content_title {
    font-size: 30px;
    line-height: 100%;
    text-wrap: balance;
  }
  .nik_prospekt .nik_prospekt_wrap .nik_prospekt_wrap_small {
    column-gap: 10px;
  }
  .nik_prospekt .nik_prospekt_wrap .nik_prospekt_wrap_content_list {
    margin-top: 12px;
  }
  .post_street .urban_silhouette_wrap_head {
    padding: 16px;
    row-gap: 16px;
  }
  .post_street .urban_silhouette_wrap_head_title {
    display: inline-block;
    font-size: 30px;
    line-height: 100%;
  }
  .winter_club .winter_club_wrap_year {
    margin-top: 2px;
  }
  .winter_club .winter_club_wrap_title {
    margin-top: 20px;
    margin-bottom: 12px;
  }
  .theatre .theatre_wrap_left {
    padding: 30px 16px 16px 16px;
    font-size: 20px;
    line-height: 110%;
  }
  .theatre .theatre_wrap_left .theatre_wrap_left_tape {
    display: block;
    max-width: 200px;
    top: -45px;
  }
  .theatre .theatre_wrap_year {
    height: auto;
    margin-top: 2px;
  }
  .theatre .theatre_wrap_content {
    margin-top: 20px;
  }
  .theatre .theatre_wrap_content_title {
    margin-top: 16px;
  }
  .theatre .theatre_wrap_content_list {
    margin-top: 12px;
    row-gap: 16px;
  }
  .france {
    margin-top: 30px;
  }
  .france .france_wrap_head {
    margin-bottom: 20px;
  }
  .france .france_wrap_head .france_wrap_head_route {
    height: auto;
  }
  .france .france_wrap_head .france_wrap_head_route_line {
    display: none;
  }
  .france .france_wrap_head .france_wrap_head_route_flag {
    display: none;
  }
  .france .france_wrap_head .france_wrap_head_route_card {
    display: block;
    position: unset;
    transform: unset !important;
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .france .france_wrap_content {
    font-size: 30px;
    line-height: 100%;
    text-wrap: balance;
  }
  .mars .mars_wrap_img_year {
    position: unset;
    margin-top: 2px;
  }
  .mars .mars_wrap_content {
    margin-top: 20px;
    height: auto;
    row-gap: 12px;
  }
  .railway {
    margin-bottom: 20px;
  }
  .railway .railway_wrap_icon {
    display: none;
  }
  .railway .railway_wrap_title {
    width: 100%;
    max-width: 100%;
    margin-left: unset;
    margin-right: unset;
    justify-content: flex-start;
    align-items: flex-start;
    display: inline-block;
    padding-bottom: 0;
    font-size: 36px;
    line-height: 100%;
  }
  .railway_main {
    margin-top: 0px;
    padding-top: 20px;
  }
  .railway_main .railway_main_wrap_title {
    display: inline-block;
    font-size: 30px;
    line-height: 100%;
    max-width: 700px;
  }
  .railway_main .railway_main_wrap_top_images {
    margin-top: 20px;
    row-gap: 16px;
  }
  .railway_main .railway_main_wrap .relative {
    margin-top: 20px;
  }
  .railway_main .railway_main_wrap_bottom_title {
    font-size: 30px;
    line-height: 100%;
  }
  .railway_main .railway_main_wrap_bottom_text {
    margin-top: 12px;
    row-gap: 16px;
  }
  .railway_main .railway_main_trash {
    padding-top: 70px;
    margin-top: 20px;
    padding-bottom: 20px;
  }
  .railway_main .railway_main_trash_content {
    row-gap: 12px;
  }
  .railway_main .railway_main_trash_content .railway_main_trash_content_title {
    font-size: 30px;
    line-height: 100%;
  }
  .railway_main .railway_main_trash_bg {
    display: flex;
    height: 100%;
    width: auto;
    left: -13px;
    min-width: 100%;
    transform: unset;
  }
  .railway_main .railway_main_trash_bg img {
    max-width: unset;
    width: auto;
    height: 100%;
  }
  .marks .marks_wrap_title {
    font-size: 30px;
    line-height: 100%;
  }
  .marks .marks_wrap_content {
    margin-top: 20px;
    row-gap: 16px;
  }
  .marks .marks_wrap_content_list {
    margin-top: 12px;
    row-gap: 16px;
  }
  .bank .bank_wrap .bank_wrap_block {
    padding: 16px;
    background: #1D202E;
    margin-bottom: 0px;
    row-gap: 6px;
  }
  .bank .bank_wrap .bank_wrap_content_text {
    margin-top: 12px;
  }
  .bank .bank_wrap .bank_wrap_content_date {
    margin-top: 12px;
  }
  .bank .bank_text_block {
    margin-top: 60px;
  }
  .bank .bank_text_block_content {
    row-gap: 12px;
  }
  .bank .bank_text_block .history_wrap_list {
    row-gap: 20px;
  }
  .bank .bank_text_block .history_wrap_list .history_wrap_list_it {
    row-gap: 10px;
    height: auto;
  }
  .bank .bank_text_block .history_wrap_list .history_wrap_list_it .history_wrap_list_it_num {
    font-size: 50px;
    line-height: 100%;
  }
  .bank .bank_text_block .history_wrap_list .history_wrap_list_it .history_wrap_list_it_title {
    font-size: 30px;
    line-height: 100%;
  }
  .house .house_wrap_title {
    font-size: 30px;
    line-height: 100%;
    display: inline-block;
  }
  .house .house_wrap_title .first {
    margin-left: 0px;
  }
  .house .house_wrap_content {
    margin-top: 20px;
  }
  .house .house_wrap_content_list {
    margin-top: 12px;
    row-gap: 20px;
  }
  .house .now_block {
    margin-top: 12px;
  }
  .gardens .gardens_wrap {
    padding: 20px 0;
  }
  .gardens .gardens_wrap::after {
    width: calc(100vw + 2px);
    border-radius: unset;
  }
  .gardens .gardens_wrap .gardens_wrap_title {
    font-size: 36px;
    line-height: 100%;
    margin-bottom: 20px;
  }
  .gardens .gardens_wrap .gardens_text {
    margin-top: 12px;
    height: auto;
    row-gap: 16px;
  }
  .gardens .gardens_wrap .gardens_last {
    row-gap: 12px;
  }
  .gardens .gardens_wrap .gardens_last_line {
    width: 120px;
    margin-left: -20px;
  }
  .gardens .gardens_bottom {
    margin-top: 60px;
  }
  .gardens .gardens_bottom .gardens_bottom_date {
    height: auto;
    margin-top: 4px;
  }
  .gardens .gardens_bottom .gardens_bottom_list {
    margin-top: 20px;
    row-gap: 12px;
  }
  .education .education_wrap_title {
    font-size: 34px;
    line-height: 100%;
  }
  .education .education_wrap_content {
    margin-top: 20px;
  }
  .education .education_block_content {
    height: auto;
    margin-top: 20px;
  }
  .education .education_block_content_text {
    margin-top: 12px;
  }
  .education .education_block {
    margin-left: 0;
    margin-right: 0;
  }
  .education .education_block > * {
    padding-left: 0;
    padding-right: 0;
  }
  .education .education_block_content {
    margin-top: 12px;
  }
  .education .education_wrap_content_track {
    row-gap: 20px;
  }
  .education .education_commet {
    row-gap: 12px;
  }
  .education .education_commet_right {
    row-gap: 4px;
  }
  .temples .temples_wrap {
    row-gap: 20px;
  }
  .temples .temples_wrap .temples_wrap_title {
    font-size: 34px;
    line-height: 100%;
  }
  .temples .temples_item_content {
    margin-top: 20px;
  }
  .temples .temples_item_content .temples_item_content_num {
    margin-bottom: 4px;
  }
  .temples .temples_item_content .temples_item_content_texts_text {
    margin-top: 12px;
  }
  .temples .temples_wrap .row.second {
    row-gap: 30px;
  }
  .temples .now_block {
    margin-top: 12px;
  }
  .fabric .fabric_title {
    font-size: 34px;
    line-height: 100%;
    text-wrap: balance;
  }
  .fabric .fabric_wrap {
    margin-top: 20px;
    row-gap: 20px;
  }
  .fabric .fabric_wrap .fabric_wrap_first {
    row-gap: 4px;
  }
  .fabric .fabric_wrap_item .fabric_wrap_item_title {
    margin-top: 20px;
  }
  .fabric .fabric_wrap_item .fabric_wrap_item_text {
    margin-top: 12px;
  }
  .fabric .fabric_wrap_item .fabric_wrap_item_text.right {
    margin-top: -16px;
  }
  .fabric .fabric_wrap_item .now_block {
    margin-top: 12px;
  }
  .fabric .fabric_wrap .fabric_wrap_first_text.right {
    margin-top: -16px;
    text-align: left;
    height: auto;
  }
  .fabric .fabric_benefits {
    row-gap: 20px !important;
    margin-top: 20px;
  }
  .fabric .fabric_benefits .fabric_benefits_it {
    row-gap: 10px;
    height: auto;
  }
  .fabric .fabric_benefits .fabric_benefits_it .fabric_benefits_it_num {
    font-size: 40px;
    line-height: 100%;
  }
  .fabric .fabric_benefits .fabric_benefits_it .fabric_benefits_it_title {
    font-size: 24px;
    line-height: 100%;
  }
  .fabric .fabric_armavir {
    margin-top: 60px;
  }
  .fabric .fabric_armavir .fabric_armavir_title {
    font-size: 30px;
    line-height: 100%;
    text-wrap: balance;
    margin-bottom: 60px;
  }
  .fabric .fabric_armavir_wrap {
    row-gap: 40px;
  }
  .fabric .fabric_armavir_item .row {
    row-gap: 12px;
  }
  .fabric .fabric_armavir_item .fabric_armavir_item_content_text {
    margin-top: 12px;
  }
  .fabric .fabric_armavir_item .now_block {
    margin-top: 12px;
  }
  .our_days .our_days_title {
    margin-bottom: 20px;
  }
  .our_days .our_days_main_img {
    border-radius: 0;
    aspect-ratio: 1/1.1;
  }
  .our_days .our_days_main_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .our_days .our_days_main_img::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    position: absolute;
    top: 0;
    left: 0;
  }
  .our_days .our_days_main_title {
    padding: 0 13px;
    position: absolute;
    bottom: 13px;
    left: 0;
    max-width: 100%;
    height: auto;
    color: #FFF;
    font-size: 30px;
    line-height: 100%;
    top: auto;
  }
}
