

/* Start:/local/templates/jsi/assets/css/style.css?177919539797345*/
@charset "UTF-8";
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--white---160);
  z-index: 100;
  transition: all 0.4s ease;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1100px) {
  .header__wrapper {
    padding: 0 24px;
  }
}
@media (max-width: 819px) {
  .header__wrapper {
    padding: 0 16px;
  }
}
@media (max-width: 819px) {
  .header__logo svg {
    width: 190px;
  }
}
.header__burger {
  display: none;
  position: relative;
}
@media (max-width: 1100px) {
  .header__burger {
    display: flex;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    justify-content: center;
    align-items: center;
    background: white;
  }
}
.header__burger span {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.header__burger span::before {
  content: "";
  top: 4px;
  transition: top 0.3s 0.3s, transform 0.3s;
}
.header__burger span::after {
  content: "";
  top: -4px;
  transition: top 0.3s 0.3s, transform 0.3s;
}
.header__burger span, .header__burger span::after, .header__burger span::before {
  position: absolute;
  width: 12px;
  height: 1px;
  border-radius: 80px;
  background-color: #1d212b;
  -webkit-transition: all 0.5s ease;
}
.header-nav {
  display: flex;
  gap: 64px;
  padding: 8px 0;
}
.header-nav__link {
  font-size: 16px;
  position: relative;
  height: min-content;
}
.header-nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--secondary-dark-secondary---hover);
  transition: width 0.3s ease;
}
.header-nav__link:hover::after {
  width: 100%;
}
.header-nav__link:hover {
  color: var(--secondary-dark-secondary---hover);
}
@media (max-width: 1100px) {
  .header-nav {
    display: none;
  }
}
.header-group {
  display: flex;
  gap: 64px;
  justify-content: end;
}
.header-group, .header-nav.header-nav--first {
  flex: 1;
}
.header__phone {
  display: flex;
  flex-direction: column;
}
.header__phone a {
  font-size: 14px;
  position: relative;
}
.header__phone a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--white);
  transition: width 0.3s ease;
}
.header__phone a:hover::after {
  width: 100%;
}
.header__phone span {
  font-weight: 500;
  font-size: 12px;
  line-height: 133%;
  text-align: left;
  color: var(--white);
  cursor: pointer;
  position: relative;
  width: fit-content;
}
.header__phone span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--white);
  transition: width 0.3s ease;
}
.header__phone span:hover::after {
  width: 100%;
}
@media (max-width: 1100px) {
  .header__phone {
    display: none;
  }
}
.header a {
  font-weight: 500;
  line-height: 150%;
  text-align: center;
  color: var(--white);
}
.header * {
  transition: all 0.4s ease;
}
.header--active {
  background: var(--primary);
}
.header--active .header-nav__link::after {
  background: var(--white);
}
.header--active .header-nav__link:hover {
  color: var(--white);
}
.header--open-mobile {
  background: var(--primary);
  height: 100vh;
}
.header--open-mobile .header-mobile {
  display: flex;
}
@media (max-width: 1100px) {
  .header--open-mobile {
    padding-bottom: 0;
  }
}
.header--open-mobile span {
  transition: background 0.3s 0s;
  background: 0 0;
}
.header--open-mobile span::before {
  transform: rotate3d(0, 0, 1, -45deg);
  transition: top 0.3s, transform 0.3s 0.3s;
  top: 0;
}
.header--open-mobile span::after {
  transform: rotate3d(0, 0, 1, 45deg);
  transition: top 0.3s, transform 0.3s 0.3s;
  top: 0;
}
.header-mobile {
  display: none;
  flex-direction: column;
  margin: 40px 0;
}
.header-mobile__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  padding: 38px 0;
}
@media (max-width: 819px) {
  .header-mobile__nav {
    order: 1;
  }
}
.header-mobile__main {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media (min-width: 819px) {
  .header-mobile__main .line-border {
    background: rgba(255, 255, 255, 0.16);
    height: auto;
    width: 1px;
  }
  .header-mobile__main .line-border::before {
    top: unset;
    bottom: -4px;
    transform: translateY(0);
    left: -4px;
    background: rgba(255, 255, 255, 0.16);
  }
  .header-mobile__main .line-border::after {
    top: 0;
    bottom: unset;
    transform: translateY(0);
    left: -4px;
    background: rgba(255, 255, 255, 0.16);
  }
}
@media (max-width: 819px) {
  .header-mobile__main .line-border {
    width: calc(100% - 32px);
    margin: 0 auto;
  }
}
.header-mobile__main .line-border, .header-mobile__main .line-border::after, .header-mobile__main .line-border::before {
  background: rgba(255, 255, 255, 0.16);
}
.header-mobile__main .line-border::before {
  left: -4px;
  bottom: 1px;
}
.header-mobile__main .line-border::after {
  top: 1px;
  right: -7px;
}
@media (max-width: 819px) {
  .header-mobile__main .line-border {
    order: 3;
  }
}
@media (max-width: 1100px) {
  .header-mobile__main {
    padding: 40px 24px;
  }
}
@media (max-width: 819px) {
  .header-mobile__main {
    padding: 0;
    flex-direction: column;
  }
}
.header-mobile__down {
  overflow: hidden;
}
.header-mobile__down svg {
  transform: translateX(-40%);
}
@media (max-width: 376px) {
  .header-mobile__down svg {
    height: 70px;
  }
}
@media (max-width: 819px) {
  .header-mobile__down--tablet {
    display: none;
  }
}
@media (min-width: 819px) {
  .header-mobile__down--mobile {
    display: none;
  }
}
.header-mobile__contacts {
  flex: 1;
  height: auto;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 819px) {
  .header-mobile__contacts {
    background: unset;
    order: 4;
  }
}
.header-mobile__contacts a {
  font-weight: 500;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: -2%;
  text-align: center;
}
.header-mobile__contacts span {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  color: white;
}
@media (max-width: 819px) {
  .header-mobile__down {
    order: 2;
  }
}
@media (max-width: 819px) {
  .header-mobile__nav, .header-mobile .line-border, .header-mobile__contacts {
    padding: 0 16px;
  }
}
@media (max-width: 1100px) {
  .header__container.container {
    padding: 0;
  }
}
@media (max-width: 1200px) {
  .header-nav {
    gap: 24px;
  }
}
@font-face {
  font-family: "Golos";
  src: url("/local/templates/jsi/assets/fonts/GolosText-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Golos";
  src: url("/local/templates/jsi/assets/fonts/GolosText-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Golos";
  font-weight: 400;
}
:root {
  --title-font-size: 88px;
  --white: rgba(255, 255, 255, 1);
  --primary: rgba(29, 33, 43, 1);
  --text-01: rgba(137, 143, 154, 1);
  --white---400: rgba(255, 255, 255, 0.4);
  --white---160: rgba(255, 255, 255, 0.16);
  --white---640: rgba(255, 255, 255, 0.64);
  --secondary-dark-secondary: #f9c98e;
  --warning: rgba(255, 56, 60, 1);
  --warning---100: ;
  /* кнопки */
  --button-border-radius: 64px;
  --primary---hover: rgba(60, 65, 78, 1);
  --border: rgba(224, 224, 225, 1);
  --secondary-dark-secondary---hover: rgba(251, 220, 183, 1);
  --text-02: rgba(172, 177, 189, 1);
}
a {
  text-decoration: none;
  outline: none;
  color: unset;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
div {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--white);
  color: var(--primary);
  font-family: Golos;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  body.smooth {
    overflow: hidden;
  }
}
@media (min-width: 768px) {
  #smooth-wrapper {
    height: 100%;
    overflow: hidden;
  }
  #smooth-content {
    will-change: transform;
  }
}
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1920px;
  padding: 0 32px;
}
a {
  cursor: pointer;
  text-decoration: none;
}
.title {
  font-size: var(--title-font-size);
  line-height: 96px;
}
@media (max-width: 1100px) {
  .title {
    font-size: 72px;
    line-height: 111%;
  }
}
.flex {
  display: flex;
}
.flex-c {
  display: flex;
  align-items: center;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-row {
  display: flex;
  justify-content: space-between;
}
section {
  margin: 80px 0;
}
nav {
  display: flex;
  gap: 64px;
}
nav a {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--white);
}
.breadcrumbs {
  margin: 72px 0 120px 0;
  width: 100%;
}
.breadcrumbs__wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  padding: 32px;
}
@media (max-width: 1440px) {
  .breadcrumbs__wrapper {
    padding: 24px;
  }
}
.breadcrumbs-page__index {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: var(--primary);
}
.breadcrumbs-page__active {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: var(--text-02);
}
@media (max-width: 819px) {
  .breadcrumbs {
    margin: 72px 0 64px 0;
  }
}
@media (min-width: 2100px) {
  .breadcrumbs {
    margin: 72px 0 160px 0;
  }
}
.next-page {
  padding: 64px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  background: #f0f0f0;
  cursor: url("/local/templates/jsi/assets/images/cursor-object.png"), pointer;
}
.next-page__map {
  width: 100%;
  height: 480px;
}
@media (max-width: 1100px) {
  .next-page {
    padding: 120px 0 0 0;
  }
}
@media (max-width: 819px) {
  .next-page {
    padding: 64px 0 0 0;
    gap: 40px;
    margin: 64px 0 0 0;
  }
}
.next-page__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.next-page__nav span {
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  text-align: center;
  color: var(--text-01);
}
@media (max-width: 1100px) {
  .next-page__nav span {
    font-size: 16px;
    line-height: 150%;
  }
}
@media (max-width: 819px) {
  .next-page__nav span {
    font-size: 14px;
    line-height: 143%;
  }
}
.next-page__el {
  font-weight: 400;
  font-size: 72px;
  line-height: 111%;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--primary);
}
@media (max-width: 1100px) {
  .next-page__el {
    font-size: 52px;
    line-height: 115%;
  }
}
@media (max-width: 819px) {
  .next-page__el {
    font-size: 32px;
    line-height: 137%;
    letter-spacing: -0.02em;
    text-align: center;
  }
}
.next-page img, .next-page__map {
  width: 100%;
  height: calc(100vh - 72px);
  object-fit: cover;
}
@media (min-width: 2000px) {
  .next-page img, .next-page__map {
    height: 1160px;
  }
}
@media (max-width: 1440px) {
  .next-page img, .next-page__map {
    height: 680px;
  }
}
@media (max-width: 1100px) {
  .next-page img, .next-page__map {
    height: 480px;
  }
}
@media (max-width: 600px) {
  .next-page img, .next-page__map {
    height: 220px;
  }
}
.next-page__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.next-page__content img {
  width: auto !important;
  max-height: 120px;
  max-width: 330px;
  height: auto;
}
@media (max-width: 1440px) {
  .next-page__content img {
    width: 72px;
  }
}
@media (max-width: 1100px) {
  .next-page__content img {
    width: 85px;
  }
}
@media (max-width: 600px) {
  .next-page__content img {
    width: auto;
    max-height: 120px;
    max-width: 240px;
    object-fit: cover;
    height: auto;
  }
}
section.next-page {
  margin-bottom: 0;
}
.ymaps3x0--controls_left.ymaps3x0--controls_center, .ymaps3x0--controls_right.ymaps3x0--controls_center {
  z-index: 1;
}
@media (max-width: 1100px) {
  .title {
    font-size: 72px;
    line-height: 111%;
  }
  section {
    margin: 60px 0;
  }
  .container {
    padding: 0 24px;
  }
}
@media (max-width: 991px) {
  .title {
    font-size: 64px;
  }
}
@media (max-width: 819px) {
  .title {
    font-size: 40px;
  }
  section {
    margin: 48px 0;
  }
  .container {
    padding: 0 16px;
  }
}
@media (max-width: 500px) {
  .title {
    font-size: 32px;
  }
}
.page-placehollder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  justify-content: center;
  height: 100dvh;
}
@media (max-width: 600px) {
  .page-placehollder {
    gap: 24px;
    padding: 16px;
  }
  .page-placehollder__content svg {
    width: 47px;
    height: 48px;
  }
}
.page-placehollder__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 540px;
}
.page-placehollder__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.page-placehollder .title {
  font-size: 72px;
  font-weight: 400;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .page-placehollder .title {
    font-weight: 400;
    font-size: 40px;
    line-height: 140%;
  }
}
.page-placehollder__descr {
  font-size: 20px;
  line-height: 160%;
  text-align: center;
  color: var(--text-01);
}
@media (max-width: 600px) {
  .page-placehollder__descr {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
  }
}
.page-placehollder .button {
  gap: 64px;
}
@media (max-width: 600px) {
  .page-placehollder .button {
    gap: unset;
    justify-content: space-between;
  }
}
.popup input.input__custom {
  border: none;
  outline: none;
  font-weight: 500;
  font-size: 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
  border: 1px solid var(--white---160);
  border-radius: 40px;
  padding: 16px 24px;
  transition: all 0.3s ease;
}
.popup input.input__custom::placeholder {
  color: var(--white---400);
}
.popup input.input__custom:focus {
  outline: none;
  border: 2px solid var(--secondary-dark-secondary);
}
.popup input.input__error {
  border: 2px solid var(--warning);
  background: var(--warning---100);
}
.popup input.input__error::placeholder {
  color: var(--white);
}
.scroll-tip {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 64px;
  z-index: 2;
  color: var(--white---640);
}
.scroll-tip--mobile.scroll-tip {
  display: none;
}
@media (max-width: 819px) {
  .scroll-tip {
    bottom: 80px;
    white-space: nowrap;
  }
  .scroll-tip--mobile.scroll-tip {
    display: flex;
  }
  .scroll-tip--desctop.scroll-tip {
    display: none;
  }
}
.circle {
  border: 1px solid var(--white---160);
  border-radius: 80px;
  padding: 8px;
  width: 72px;
  height: 72px;
  min-width: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .circle:hover {
    background: var(--white);
    border: var(--white) solid 1px;
  }
  .circle:hover .circle__el {
    background: var(--secondary-dark-secondary);
  }
}
.circle__el {
  border-radius: 999px;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
  transition: all 0.3s ease;
}
@media (max-width: 819px) {
  .circle {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }
  .circle .circle__el {
    width: 40px;
    height: 40px;
  }
  .circle .circle__el svg {
    width: 16px;
    height: 16px;
  }
}
.swiper__pagination.swiper-pagination-horizontal {
  border-radius: 1000px;
  background: var(--white---160);
  padding: 12px;
  max-height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
@media (max-width: 819px) {
  .swiper__pagination.swiper-pagination-horizontal {
    padding: 8px;
  }
}
.swiper .swiper-pagination-bullet {
  width: 32px;
  height: 6px;
  min-height: 6px;
  background: var(--white---400);
  opacity: 1;
  transition: all 0.4s ease;
  margin: unset;
  padding: unset;
  border-radius: 32px;
}
@media (max-width: 819px) {
  .swiper .swiper-pagination-bullet {
    height: 4px;
    min-height: 4px;
  }
}
.swiper .swiper-pagination-bullet-active {
  background: var(--white);
}
.arrow-circle {
  border: 1px solid var(--border);
  border-radius: 80px;
  width: 72px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 819px) {
  .arrow-circle {
    width: 56px;
    height: 56px;
  }
  .arrow-circle svg {
    width: 12px;
    height: 10px;
  }
}
.scroll-tip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 171%;
  text-align: center;
  color: var(--white---640);
}
.button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 104px;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.button * {
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .button:hover {
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--primary---hover);
  }
  .button:hover .button__circle {
    background: var(--secondary-dark-secondary---hover);
  }
  .button.button__white:hover .button__circle svg path {
    fill: #1D212B;
  }
}
.button--24 {
  padding: 8px 8px 8px 24px;
  gap: 64px;
}
.button--32 {
  padding: 8px 8px 8px 32px;
}
.button__white {
  color: var(--primary);
  background: var(--white);
}
.button__white .button__circle {
  background: var(--primary);
}
.button__blue {
  color: var(--white);
  background: var(--primary);
}
.button__blue .button__circle {
  background: var(--white);
}
.button__secondary {
  color: var(--white);
  background: transparent;
  border: 1px solid var(--white---160);
}
.button__secondary .button__circle {
  background: var(--white);
}
.button__circle {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
}
@media (max-width: 500px) {
  .button {
    width: 100%;
  }
}
.custom-cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  background: center/contain no-repeat;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.3s ease;
  z-index: 9999;
}
.custom-cursor.visible {
  opacity: 1;
}
/* Первое состояние */
.custom-cursor[data-dir="left"] {
  background-image: url("/local/templates/jsi/assets/images/triangle-left.png");
}
.custom-cursor[data-dir="right"] {
  background-image: url("/local/templates/jsi/assets/images/triangle-right.png");
}
/* Второе состояние через 0.5 сек */
.custom-cursor.active[data-dir="left"] {
  background-image: url("/local/templates/jsi/assets/images/triangle-left-active.png");
}
.custom-cursor.active[data-dir="right"] {
  background-image: url("/local/templates/jsi/assets/images/triangle-right-active.png");
}
.line-border {
  height: 1px;
  background: var(--border);
  width: 100%;
  position: relative;
}
.line-border::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--border);
  border-radius: 100px;
  top: 0px;
  transform: translateY(-55%);
  right: 0px;
  z-index: 2;
}
.line-border::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--border);
  border-radius: 100px;
  top: 0px;
  transform: translateY(-55%);
  left: 0px;
  z-index: 2;
}
@media (min-width: 819px) {
  .line-border--vertical {
    height: auto;
    width: 1px;
  }
}
@media (min-width: 819px) {
  .line-border--vertical::before, .line-border--vertical::after {
    transform: translate(-50%, -55%);
  }
}
@media (min-width: 819px) {
  .line-border--vertical::after {
    top: unset;
    bottom: -8px;
    left: 0;
    right: unset;
  }
}
.hero {
  height: calc(100vh);
  width: 100%;
  margin-top: 0;
}
.hero__swiper.swiper {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero__media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero__button {
  display: flex;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  width: fit-content;
  bottom: 22%;
  z-index: 11;
}
@media (max-width: 1440px) {
  .hero__button {
    bottom: 200px;
  }
}
@media (max-width: 1100px) {
  .hero__button {
    bottom: 150px;
  }
}
@media (max-width: 819px) {
  .hero__button {
    width: calc(100% - 16px);
    bottom: 132px;
  }
}
.hero__preview, .hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
.hero__preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__preview {
  opacity: 1;
  z-index: 2;
}
.hero__preview.hide {
  opacity: 0;
  z-index: 1;
}
@media (max-width: 819px) {
  .hero__preview {
    object-position: 5%;
  }
}
.hero__video {
  opacity: 0;
  z-index: 1;
}
.hero__video.loaded {
  opacity: 1;
  z-index: 2;
}
.hero .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .swiper-slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: rgba(0, 0, 0, 0.6);
}
.hero .swiper-slide.swiper-slide--video::before {
  cursor: url("/local/templates/jsi/assets/images/cursor-video.png"), pointer;
}
.hero .swiper__pagination.swiper-pagination-horizontal {
  position: absolute;
  bottom: 64px;
  right: 64px;
  z-index: 2;
  width: fit-content;
  left: unset;
}
@media (max-width: 819px) {
  .hero .swiper__pagination.swiper-pagination-horizontal {
    bottom: 96px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.hero__title, .hero__title-default {
  position: absolute;
  z-index: 3;
  top: initial;
  left: 50%;
  transform: translateX(-50%) !important;
  display: flex;
  flex-direction: column;
  width: max-content;
  opacity: 0;
  transition: opacity 0.8s ease-out;
}
.hero__title.active, .hero__title-default.active {
  opacity: 1;
  animation: slide-up 0.8s forwards;
}
@media (max-width: 1024px) {
  .hero__title, .hero__title-default {
    left: unset;
    transform: unset !important;
    display: flex;
    justify-content: center;
    width: 100%;
  }
}
.hero__title.active span, .hero__title-default.active span {
  display: flex;
  gap: 24px;
  font-weight: 400;
  font-size: 100px;
  line-height: 100%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(50px);
  animation: slide-up 0.8s forwards;
}
@media (min-width: 2100px) {
  .hero__title.active span, .hero__title-default.active span {
    font-size: 140px;
    line-height: 140px;
  }
}
.hero__title.active span:nth-child(1), .hero__title-default.active span:nth-child(1) {
  margin-left: -44px;
  animation-delay: 0.3s;
}
.hero__title.active span:nth-child(2), .hero__title-default.active span:nth-child(2) {
  text-align: end;
  padding-right: 130px;
  animation-delay: 0.55s;
}
@media (max-width: 500px) {
  .hero__title.active span:nth-child(2), .hero__title-default.active span:nth-child(2) {
    padding-right: 60px;
  }
}
.hero__title.active span:nth-child(3), .hero__title-default.active span:nth-child(3) {
  padding-left: 160px;
  animation-delay: 0.75s;
}
@media (max-width: 500px) {
  .hero__title.active span:nth-child(3), .hero__title-default.active span:nth-child(3) {
    padding-left: unset;
  }
}
@media (max-width: 1200px) {
  .hero__title.active span, .hero__title-default.active span {
    margin-left: unset;
  }
  .hero__title.active span:nth-child(1), .hero__title-default.active span:nth-child(1) {
    margin-left: unset;
  }
}
@media (max-width: 991px) {
  .hero__title.active span, .hero__title-default.active span {
    font-size: 64px;
  }
}
@media (max-width: 819px) {
  .hero__title.active span, .hero__title-default.active span {
    font-size: 40px;
    line-height: 120%;
    flex-direction: column;
    gap: unset;
  }
}
@media (max-width: 500px) {
  .hero__title, .hero__title-default {
    width: calc(100%);
  }
}
.hero__title--first.active span:nth-child(1), .hero__title-default--first.active span:nth-child(1) {
  padding-left: 22px;
}
.hero__title--first.active span:nth-child(2), .hero__title-default--first.active span:nth-child(2) {
  padding-right: unset;
  padding-left: 111px;
  text-align: unset;
}
.hero__title--first.active span:nth-child(3), .hero__title-default--first.active span:nth-child(3) {
  padding-left: 28px;
}
@media (min-width: 1440px) {
  .hero__title--first.active span:nth-child(1), .hero__title-default--first.active span:nth-child(1) {
    padding-left: 22px;
  }
  .hero__title--first.active span:nth-child(2), .hero__title-default--first.active span:nth-child(2) {
    padding-right: 130px;
    padding-left: 111px;
    text-align: unset;
    margin-left: auto;
  }
  .hero__title--first.active span:nth-child(3), .hero__title-default--first.active span:nth-child(3) {
    padding-left: 140px;
  }
}
.hero__title--second.active span:nth-child(2), .hero__title-default--second.active span:nth-child(2) {
  padding-right: 24px;
}
.hero__title--second.active span:nth-child(1), .hero__title-default--second.active span:nth-child(1) {
  margin-left: 16px;
}
.hero__title--second.active span:nth-child(1) p:nth-child(1), .hero__title-default--second.active span:nth-child(1) p:nth-child(1) {
  padding-left: 32px;
}
.hero__title--second.active span:nth-child(3), .hero__title-default--second.active span:nth-child(3) {
  padding-left: 53px;
}
@media (min-width: 1024px) {
  .hero__title--second.active span:nth-child(2), .hero__title-default--second.active span:nth-child(2) {
    padding-right: 0;
    padding-left: 210px;
  }
  .hero__title--second.active span:nth-child(1), .hero__title-default--second.active span:nth-child(1) {
    margin-left: 0;
  }
  .hero__title--second.active span:nth-child(1) p:nth-child(1), .hero__title-default--second.active span:nth-child(1) p:nth-child(1) {
    padding-left: 0;
  }
  .hero__title--second.active span:nth-child(3), .hero__title-default--second.active span:nth-child(3) {
    padding-left: 0;
    margin-left: auto;
    margin-right: -25px;
  }
}
.hero__title--third.active span:nth-child(1), .hero__title-default--third.active span:nth-child(1) {
  margin-left: 16px;
}
.hero__title--third.active span:nth-child(1) p:nth-child(2), .hero__title-default--third.active span:nth-child(1) p:nth-child(2) {
  text-align: right;
  padding-right: 44px;
}
.hero__title--third.active span:nth-child(2), .hero__title-default--third.active span:nth-child(2) {
  padding-right: 52px;
}
.hero__title--third.active span:nth-child(2) p:nth-child(1), .hero__title-default--third.active span:nth-child(2) p:nth-child(1) {
  text-align: left;
  padding-left: 38px;
}
.hero__title--third.active span:nth-child(3), .hero__title-default--third.active span:nth-child(3) {
  padding-right: 10px;
  text-align: right;
}
.hero__title--four.active span:nth-child(1), .hero__title-default--four.active span:nth-child(1) {
  margin-left: 16px;
}
.hero__title--four.active span:nth-child(1) p:nth-child(2), .hero__title-default--four.active span:nth-child(1) p:nth-child(2) {
  text-align: center;
}
.hero__title--four.active span:nth-child(2), .hero__title-default--four.active span:nth-child(2) {
  padding-right: 56px;
}
.hero__title--four.active span:nth-child(3), .hero__title-default--four.active span:nth-child(3) {
  padding-right: 36px;
  text-align: right;
}
@media (min-width: 1024px) {
  .hero__title--four.active span:nth-child(1), .hero__title-default--four.active span:nth-child(1) {
    display: flex;
    margin-left: 0;
    flex-direction: column;
  }
  .hero__title--four.active span:nth-child(1) p:nth-child(2), .hero__title-default--four.active span:nth-child(1) p:nth-child(2) {
    text-align: end;
  }
  .hero__title--four.active span:nth-child(2), .hero__title-default--four.active span:nth-child(2) {
    padding-right: unset;
    padding-left: 162px;
  }
  .hero__title--four.active span:nth-child(3), .hero__title-default--four.active span:nth-child(3) {
    padding-right: 80px;
    text-align: right;
    margin-left: auto;
    padding-left: unset;
  }
}
@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  50% {
    opacity: 0.5;
    transform: translateY(0px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@media (max-width: 1024px) {
  .hero .scroll-tip {
    bottom: 24px;
  }
}
section.hero {
  margin: 0;
}
.foundation {
  width: 100%;
  height: 100vh;
  position: relative;
}
.foundation__wrapper {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 819px) {
  .foundation__wrapper {
    padding-top: 120px;
    align-items: unset;
  }
}
.foundation__group {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
@media (min-width: 1440px) {
  .foundation__group {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
  }
}
.foundation__logo {
  width: 120px;
  height: 120px;
}
@media (max-width: 819px) {
  .foundation__logo {
    width: 120px;
    height: 120px;
  }
}
.foundation__content, .foundation__content-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.foundation__content-text {
  opacity: 0;
  height: 0;
  transform: translateY(25px);
  transition: all 0.5s ease;
  max-width: 824px;
}
.foundation__content-text--wide {
  max-width: 924px;
}
@media (max-width: 819px) {
  .foundation__content-text {
    padding: 0 16px;
  }
}
.foundation__content-text.visible {
  opacity: 1;
  transform: translateY(0);
}
.foundation__content-text.visible h2, .foundation__content-text.visible h3 {
  opacity: 0;
  transform: translateY(35px);
  animation: slide-up-found 0.7s forwards ease-out;
}
.foundation__content-text.visible h2 {
  animation-delay: 0.2s;
}
.foundation__content-text.visible h3 {
  animation-delay: 0.5s;
}
@keyframes slide-up-found {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  50% {
    opacity: 0.5;
    transform: translateY(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.foundation__svg-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.foundation__svg-steps path {
  transition: all 0.5s ease;
}
.foundation__svg-steps svg.active path {
  fill: #1D212B;
  stroke: unset;
}
.foundation h2 {
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  text-align: center;
  color: var(--text-01);
}
@media (max-width: 819px) {
  .foundation h2 {
    font-size: 16px;
    line-height: 150%;
  }
}
.foundation h3 {
  font-weight: 400;
  font-size: 88px;
  line-height: 109%;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--primary);
}
@media (max-width: 1100px) {
  .foundation h3 {
    font-size: 72px;
    line-height: 111%;
  }
}
@media (max-width: 819px) {
  .foundation h3 {
    font-size: 36px;
    line-height: 120%;
  }
}
.foundation .scroll-tip {
  color: var(--text-01);
  bottom: 24px;
  position: absolute;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
}
.foundation .scroll-tip path {
  fill: #898F9A;
}
.foundation__svg {
  position: absolute;
  bottom: 8px;
  transform: translateX(72%);
  z-index: 1;
}
@media (max-width: 819px) {
  .foundation__svg {
    height: 735px;
  }
}
@media (min-width: 2100px) {
  .foundation__svg {
    height: 1268px;
    width: auto;
  }
}
.popup {
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background: rgba(29, 33, 43, 0.48);
  z-index: 1000;
  transition: all 0.4s ease;
}
@media (max-width: 1440px) {
  .popup {
    padding: 0 24px;
  }
}
@media (max-width: 819px) {
  .popup {
    padding: 0;
  }
  .popup .form__line svg {
    width: 100%;
  }
}
.popup-active {
  opacity: 1;
  visibility: visible;
}
.popup-active .popup__content {
  transform: translateY(0);
}
.popup__content {
  width: 1392px;
  height: 852px;
  transition: all 0.4s ease;
  transform: translateY(-40px);
  position: relative;
  display: flex;
}
@media (max-width: 991px) {
  .popup__content {
    height: 100dvh;
  }
}
.popup__close {
  position: absolute;
  top: 32px;
  right: 32px;
}
@media (max-width: 991px) {
  .popup__close {
    top: 16px;
    right: 16px;
  }
}
.popup__img {
  width: 50%;
  height: 100%;
}
@media (max-width: 1100px) {
  .popup__img {
    width: 384px;
    min-width: 384px;
  }
}
@media (max-width: 991px) {
  .popup__img {
    display: none;
  }
}
.popup__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popup__group {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: var(--primary);
  align-items: center;
  justify-content: center;
}
@media (max-width: 1100px) {
  .popup__group {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .popup__group {
    padding: 0 16px;
    gap: 16px;
  }
}
.popup__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.popup__title {
  font-weight: 400;
  font-size: 32px;
  line-height: 137%;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--white);
}
@media (max-width: 991px) {
  .popup__title {
    font-size: 24px;
    line-height: 133%;
  }
}
.popup .button__blue {
  border: 1px solid var(--white---160);
}
.popup .input__custom {
  border: 1px solid var(--white---160);
  background: unset;
}
@media (max-width: 991px) {
  .popup .input__custom {
    max-height: 56px;
  }
}
.popup__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: rgba(255, 255, 255, 0.36);
}
@media (max-width: 819px) {
  .popup__subtitle {
    font-size: 14px;
    line-height: 143%;
    max-width: 200px;
  }
}
.popup .form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 480px;
}
.popup .form__block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.popup .form__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 14px;
  line-height: 129%;
  text-align: center;
  color: rgba(255, 255, 255, 0.36);
}
@media (max-width: 991px) {
  .popup .form {
    gap: 24px;
  }
}
.popup .input-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.popup .input-block label {
  font-size: 14px;
  line-height: 143%;
  color: var(--text-01);
}
.popup__text {
  font-size: 14px;
  line-height: 143%;
  text-align: start;
  color: rgba(255, 255, 255, 0.36);
  max-width: 480px;
}
.popup__text a {
  color: var(--secondary-dark-secondary);
}
@media (max-width: 991px) {
  .popup__text {
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
    font-size: 12px;
    line-height: 133%;
  }
}
.popup__content.unvisible {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
.popup .unvisible {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
.popup__success.unvisible {
  position: absolute;
}
.popup__content:not(.unvisible), .popup__success:not(.unvisible) {
  opacity: 1;
}
.popup div {
  box-sizing: border-box;
}
.popup__down {
  display: flex;
  gap: 16px;
  align-items: start;
  max-width: 480px;
}
.popup__down .checkbox {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: #343330 solid 2px;
  transition: all 0.4s ease;
  cursor: pointer;
}
.popup__down .checkbox svg {
  opacity: 0;
  transition: all 0.4s ease;
}
.popup__down .checkbox--active {
  border: white;
}
.popup__down .checkbox--active svg {
  opacity: 1;
}
.popup__down .checkbox--error {
  border: 2px solid var(--warning);
}
@media (max-width: 500px) {
  .popup__down {
    gap: 8px;
  }
}
.tooltip {
  position: fixed;
  top: 96px;
  right: 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-25px);
  transition: all 0.7s ease;
  background: white;
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  width: 343px;
  z-index: 10;
  box-shadow: 0 4px 4px -4px rgba(12, 12, 13, 0.05), 0 16px 32px -4px rgba(12, 12, 13, 0.1);
}
@media (max-width: 600px) {
  .tooltip {
    transform: translateY(25px);
    top: unset;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: calc(100% - 32px);
    left: 16px;
    justify-content: space-between;
  }
}
.tooltip--active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.tooltip__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tooltip__title {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #1d212b;
}
.tooltip__text {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0%;
  color: #898f9a;
}
.tooltip__close {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: #e0e0e1 solid 1px;
  width: 40px;
  min-width: 40px;
  height: 40px;
}
.news__header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.news__title {
  text-align: center;
}
.news__page-link {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-align: center;
  color: var(--primary---hover);
}
@media (max-width: 819px) {
  .news__page-link {
    display: none;
  }
}
.news__down {
  margin-top: 32px;
  display: none;
}
@media (max-width: 819px) {
  .news__down {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .news__down .news__page-link {
    display: flex;
    position: unset;
    transform: translateY(0);
    width: 100%;
    justify-content: space-between;
    line-height: 24px;
  }
}
.news__wrapper {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 1100px) {
  .news__wrapper {
    margin-top: 64px;
  }
}
@media (max-width: 819px) {
  .news__wrapper {
    margin-top: 32px;
    flex-direction: column;
    gap: 16px;
  }
}
.news-card {
  border: 1px solid var(--border);
  padding: 32px;
  background: var(--white);
  width: calc(33.3% - 16px);
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: all 0.4s ease;
  cursor: url("/local/templates/jsi/assets/images/cursor-object.png"), pointer;
}
@media (max-width: 1100px) {
  .news-card {
    width: calc(50% - 24px);
  }
}
@media (min-width: 1024px) {
  .news-card:hover {
    background: #f3f3f3;
    border: transparent solid 1px;
  }
}
@media (max-width: 819px) {
  .news-card {
    width: 100%;
    padding: 16px;
    gap: 24px;
  }
}
.news-card__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.news-card__header svg {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease;
}
@media (max-width: 819px) {
  .news-card__header {
    gap: 16px;
  }
}
.news-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.news-card__title {
  font-size: 24px;
  line-height: 133%;
  letter-spacing: -0.02em;
  color: var(--primary);
}
@media (max-width: 819px) {
  .news-card__title {
    font-size: 18px;
    line-height: 156%;
  }
}
.news-card__preview {
  font-size: 16px;
  line-height: 150%;
  color: var(--text-01);
}
@media (min-width: 1024px) {
  .news-card__preview {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 819px) {
  .news-card__preview {
    font-size: 14px;
    line-height: 143%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.news-card__date {
  font-size: 16px;
  line-height: 150%;
  color: var(--text-01);
}
@media (max-width: 819px) {
  .news-card__date {
    font-size: 14px;
    line-height: 143%;
  }
}
.news-card__img {
  max-height: 303px;
}
@media (max-width: 1100px) {
  .news-card__img {
    max-height: 232px;
  }
}
.news-card__img img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 819px) {
  .news-card__img img {
    max-height: 200px;
  }
}
@media (max-width: 819px) {
  .news-card__img {
    max-height: unset;
  }
}
@media (max-width: 819px) {
  .news {
    margin: 64px 0;
  }
}
.news-detail {
  padding-top: 72px;
}
.news-detail .swiper__gallery.swiper {
  position: relative;
  width: 100%;
  height: auto;
}
.news-detail .swiper__gallery.swiper .swiper__pagination.swiper-pagination-horizontal {
  position: absolute;
  bottom: 48px;
  transform: translateX(-50%);
  left: 50%;
  z-index: 4;
  width: fit-content;
}
@media (max-width: 1100px) {
  .news-detail .swiper__gallery.swiper .swiper__pagination.swiper-pagination-horizontal {
    bottom: 48px;
  }
}
@media (max-width: 819px) {
  .news-detail .swiper__gallery.swiper .swiper__pagination.swiper-pagination-horizontal {
    bottom: 16px;
    display: none;
  }
}
@media (max-width: 1440px) {
  .news-detail .swiper__gallery.swiper {
    height: auto;
  }
}
@media (max-width: 1100px) {
  .news-detail .swiper__gallery.swiper {
    height: 540px;
  }
}
@media (max-width: 819px) {
  .news-detail .swiper__gallery.swiper {
    height: auto;
  }
}
@media (min-width: 819px) {
  .news-detail .swiper__gallery.swiper .circle {
    display: none;
  }
}
.news-detail .swiper__gallery.swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-detail .swiper__gallery.swiper .slide-place {
  position: absolute;
  flex: 1;
  width: 50%;
  top: 0;
  height: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
}
@media (max-width: 819px) {
  .news-detail .swiper__gallery.swiper .slide-place {
    pointer-events: none;
  }
}
.news-detail .swiper__gallery.swiper .slide-place--prev {
  left: 0;
  cursor: url("/local/templates/jsi/assets/images/object/cursor-left.webp"), pointer;
}
.news-detail .swiper__gallery.swiper .slide-place--prev .circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
}
.news-detail .swiper__gallery.swiper .slide-place--prev .circle svg {
  transform: rotate(-180deg);
}
@media (max-width: 819px) {
  .news-detail .swiper__gallery.swiper .slide-place .circle {
    pointer-events: all;
  }
}
.news-detail .swiper__gallery.swiper .slide-place--next {
  right: 0;
  cursor: url("/local/templates/jsi/assets/images/object/cursor-right.webp"), pointer;
}
.news-detail .swiper__gallery.swiper .slide-place--next .circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
}
.news-detail .swiper__gallery.swiper .swiper-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
}
.news-detail .swiper__gallery.swiper .swiper-arrow--prev {
  left: calc((100vw - 1856px) / 2);
}
.news-detail .swiper__gallery.swiper .swiper-arrow--next {
  right: calc((100vw - 1856px) / 2);
}
.news-detail .prev-page {
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--primary);
  gap: 16px;
}
.news-detail__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  max-width: 1230px;
  margin: 120px auto;
}
@media (max-width: 1100px) {
  .news-detail__content {
    margin: 120px auto;
    gap: 64px;
  }
  .news-detail__content img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 819px) {
  .news-detail__content {
    margin: 64px auto;
    gap: 40px;
  }
}
.news-detail__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1100px) {
  .news-detail__header {
    gap: 24px;
  }
}
@media (max-width: 819px) {
  .news-detail__header {
    gap: 16px;
  }
}
.news-detail__header span {
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  text-align: center;
  color: var(--primary);
}
@media (max-width: 819px) {
  .news-detail__header span {
    font-size: 16px;
    line-height: 150%;
  }
}
.news-detail__header h1 {
  font-weight: 400;
  font-size: 72px;
  line-height: 111%;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--primary);
}
@media (max-width: 1100px) {
  .news-detail__header h1 {
    font-size: 52px;
    line-height: 115%;
  }
}
@media (max-width: 819px) {
  .news-detail__header h1 {
    font-size: 32px;
    line-height: 137%;
  }
}
.news-detail__text, .news-detail__text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: var(--primary);
  max-width: 602px;
}
@media (max-width: 819px) {
  .news-detail__text, .news-detail__text p {
    font-size: 20px;
    line-height: 160%;
  }
}
.news-detail__text {
  display: flex;
  flex-direction: column;
  gap: unset;
}
@media (max-width: 1100px) {
  .news-detail__text {
    gap: 64px;
  }
}
@media (max-width: 819px) {
  .news-detail__text {
    gap: 40px;
  }
}
.news-detail .sharing {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-right: auto;
  align-items: start;
  margin-top: 80px;
}
.news-detail .sharing__list {
  display: flex;
  gap: 16px;
}
.news-detail .sharing span {
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--text-01);
}
.news-detail .sharing .circle {
  border: 1px solid var(--border);
  border-radius: 80px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 819px) {
  .news-detail .sharing {
    margin-top: 0px;
  }
}
.news-detail .other-news h3 {
  text-align: center;
}
@media (max-width: 500px) {
  .title {
    font-size: 40px;
  }
}
.objects {
  margin-top: 120px;
}
.objects .title {
  text-align: center;
}
.objects__wrapper {
  width: 100%;
  display: grid;
  grid-template: repeat(1, 1fr) / repeat(12, 1fr);
  gap: 20px;
  margin: 80px 0;
}
@media (max-width: 1100px) {
  .objects__wrapper {
    grid-template: repeat(1, 1fr) / repeat(12, 1fr);
    margin: 64px 0;
  }
}
@media (max-width: 819px) {
  .objects__wrapper {
    margin: 32px 0 40px 0;
    gap: 40px;
    grid-template: unset;
  }
}
.objects__link {
  width: fit-content;
  gap: 64px;
  margin: 0 auto;
}
@media (max-width: 500px) {
  .objects__link {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .objects {
    margin-top: 96px;
  }
}
.objects-group .button {
  display: none;
}
.object-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.object-card__title {
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  width: fit-content;
}
@media (min-width: 1024px) {
  .object-card__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: width 0.3s ease;
  }
  .object-card__title:hover::after {
    width: 100%;
  }
}
@media (max-width: 1440px) {
  .object-card__title {
    font-size: 32px;
  }
}
@media (max-width: 819px) {
  .object-card__title {
    font-size: 24px;
  }
}
@media (min-width: 819px) {
  .object-card__title img {
    display: none;
  }
}
.object-card__preview {
  cursor: url("/local/templates/jsi/assets/images/cursor-object.png"), pointer;
}
.object-card__preview:hover .object-card__img {
  transform: scale(0.98);
}
@media (min-width: 1024px) {
  .object-card__preview:hover .object-card__img:hover .object-card__mask, .object-card__preview:hover .object-card__img:hover svg, .object-card__preview:hover .object-card__img:hover .object-card__logo {
    opacity: 1;
  }
}
.object-card__img {
  position: relative;
  transition: all 0.4s ease;
  display: flex;
}
.object-card__img .object-card__mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  transition: all 0.4s ease;
  background: rgba(0, 0, 0, 0.4);
}
.object-card__img svg, .object-card__img .object-card__logo {
  transition: all 0.4s ease;
  opacity: 0;
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}
@media (max-width: 819px) {
  .object-card__img svg, .object-card__img .object-card__logo {
    display: none;
  }
}
.object-card__img img.object-card__logo {
  width: unset;
  height: unset;
}
.object-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}
.object-card__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 819px) {
  .object-card__info {
    gap: 12px;
    position: relative;
  }
  .object-card__info::before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    right: -1px;
    width: 56px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  }
}
.object-card--1 {
  grid-column-start: 1;
  grid-column-end: 7;
  margin-bottom: 60px;
}
.object-card--1 .object-card__img, .object-card--2 .object-card__img {
  height: 515px;
}
@media (max-width: 1440px) {
  .object-card--1 .object-card__img, .object-card--2 .object-card__img {
    height: 380px;
  }
}
@media (max-width: 1100) {
  .object-card--1 .object-card__img, .object-card--2 .object-card__img {
    height: auto;
  }
}
@media (max-width: 800px) {
  .object-card--1 .object-card__img, .object-card--2 .object-card__img {
    height: auto;
  }
}
.object-card--2 {
  grid-column-start: 7;
  grid-column-end: 13;
}
.object-card--3 {
  grid-column-start: 1;
  grid-column-end: 6;
}
.object-card--3 .object-card__img {
  height: 889px;
}
@media (max-width: 1440px) {
  .object-card--3 .object-card__img {
    height: 559px;
  }
}
@media (max-width: 1100px) {
  .object-card--3 .object-card__img {
    height: auto;
  }
}
.object-card--4 {
  grid-column-start: 6;
  grid-column-end: 13;
  align-self: start;
}
.object-card--5 {
  grid-column-start: 1;
  grid-column-end: 8;
}
.object-card--6 {
  grid-column-start: 8;
  grid-column-end: 13;
}
@media (max-width: 819px) {
  .object-card--6 {
    margin-top: 0px;
  }
}
.object-card--6 .object-card__img {
  height: 890px;
}
@media (max-width: 1440px) {
  .object-card--6 .object-card__img {
    height: 764px;
  }
}
@media (max-width: 819px) {
  .object-card--6 .object-card__img {
    height: 400px;
  }
}
.object-card--5 {
  align-self: end;
}
@media (max-width: 1100px) {
  .object-card {
    margin-bottom: 64px;
  }
  .object-card--1 {
    grid-column-start: 1;
    grid-column-end: 13;
    margin-bottom: 64px;
  }
  .object-card--2 {
    grid-column-end: 9;
  }
  .object-card--3 {
    grid-column-start: 1;
    grid-column-end: 11;
    margin-bottom: 64px;
  }
  .object-card--4 {
    grid-column-start: 3;
    grid-column-end: 13;
    grid-row-start: unset;
    grid-row-end: unset;
  }
  .object-card--5 {
    grid-column-start: 1;
    grid-column-end: 9;
    grid-row-start: unset;
    grid-row-end: unset;
  }
}
@media (max-width: 819px) {
  .object-card {
    gap: 16px;
    margin-bottom: unset;
  }
}
@media (max-width: 600px) {
  .object-card {
    grid-column-start: 1;
    grid-column-end: unset;
  }
}
.statuses {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.statuses::-webkit-scrollbar {
  display: none;
}
.status {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: var(--primary);
  flex: none;
}
.status--soon {
  color: var(--warning);
  border: 1px solid var(--warning---100);
}
@media (max-width: 819px) {
  .status {
    font-size: 12px;
  }
}
.all-objects {
  margin-bottom: 0;
  padding: 80px 0;
  background: #f3f3f3;
  position: relative;
}
@media (max-width: 1100px) {
  .all-objects {
    padding: 64px 0;
  }
}
.all-objects__link {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: url("/local/templates/jsi/assets/images/cursor-object.png"), pointer;
}
.all-objects__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.all-objects__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 80px;
}
@media (max-width: 1100px) {
  .all-objects__wrapper {
    margin-top: 64px;
  }
}
@media (max-width: 819px) {
  .all-objects__wrapper {
    margin-top: 40px;
    gap: 0;
  }
}
.all-objects-slider {
  display: flex;
  overflow: hidden;
  position: relative;
}
.all-objects-slider.swiper {
  display: none;
}
@media (max-width: 891px) {
  .all-objects-slider {
    display: none;
  }
  .all-objects-slider.swiper {
    display: flex;
    width: 100%;
    padding-right: 32px;
    z-index: 4;
  }
  .all-objects-slider .slider-track {
    gap: unset !important;
    padding: 0 16px;
  }
  .all-objects-slider .slider-track .object-card-img.swiper-slide {
    min-width: unset;
  }
}
.all-objects__nav {
  display: none;
  justify-content: center;
  gap: 8px;
  margin: 12px auto;
  position: relative;
  z-index: 5;
}
.all-objects__nav .circle {
  border: unset;
  background: white;
}
.all-objects__nav .circle__el {
  background: var(--primary);
}
.all-objects__nav .circle__el svg path {
  fill: white;
}
@media (max-width: 600px) {
  .all-objects__nav {
    display: flex;
  }
}
.all-objects .slider-track {
  display: flex;
  gap: 24px;
}
.all-objects .object-card-img {
  width: 640px;
  min-width: 640px;
  height: 360px;
}
@media (max-width: 1100px) {
  .all-objects .object-card-img {
    width: 498px;
    min-width: 498px;
    height: 280px;
  }
}
@media (max-width: 819px) {
  .all-objects .object-card-img {
    width: 320px;
    min-width: 320px;
    height: 180px;
  }
}
.all-objects img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 819px) {
  .all-objects {
    padding: 40px 0;
  }
  .all-objects .all-objects__header svg {
    width: 26px;
  }
}
section.all-objects {
  margin-bottom: 0;
}
.developer {
  margin: 120px 0;
}
.developer__upper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.developer-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.developer-head__icon {
  position: absolute;
  top: 0;
  left: 65%;
}
@media (max-width: 1100px) {
  .developer-head__icon svg {
    width: 143px;
    height: 143px;
  }
  .developer-head__icon img {
    width: 143px;
    height: 143px;
    object-fit: cover;
  }
}
@media (max-width: 819px) {
  .developer-head__icon img {
    width: 56px;
    height: 56px;
    object-fit: cover;
  }
}
.developer-head__description {
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  color: var(--primary);
  width: unset;
  margin-left: 65%;
}
.developer__nav {
  display: none;
  justify-content: center;
  gap: 8px;
  margin: 12px auto;
}
.developer__nav .circle {
  border: #e0e0e1 solid 1px;
}
@media (max-width: 600px) {
  .developer__nav {
    display: flex;
  }
}
.developer .title {
  display: flex;
  flex-direction: column;
}
.developer .title span:nth-child(2) {
  text-align: right;
}
@media (max-width: 500px) {
  .developer .title span:nth-child(2) {
    text-align: left;
  }
}
.developer .title span:nth-child(3) {
  padding-left: 55px;
}
@media (max-width: 500px) {
  .developer .title span:nth-child(3) {
    padding-left: 0;
  }
}
@media (max-width: 500px) {
  .developer .title {
    line-height: 48px;
    font-size: 40px;
  }
}
.developer .merits {
  display: flex;
  overflow: hidden;
  position: relative;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .developer .merits {
    display: none;
  }
}
.developer .merits__swiper {
  display: none;
}
@media (max-width: 768px) {
  .developer .merits__swiper {
    display: flex;
  }
}
@media (max-width: 1100px) {
  .developer .merits {
    margin-top: 64px;
  }
}
.developer .merits-track {
  display: flex;
  align-items: center;
}
.developer .merits__card {
  display: flex;
  justify-content: center;
  padding: 60px 0;
  width: 500px;
  border: 1px solid var(--border);
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
@media (max-width: 1100px) {
  .developer .merits__card {
    width: 400px;
    padding: 24px 0;
  }
}
.developer .merits__card-img {
  width: 240px;
  height: 240px;
}
@media (max-width: 1100px) {
  .developer .merits__card-img {
    width: 200px;
    height: 200px;
  }
}
.developer .merits__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.developer .merits__card-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  color: var(--primary);
}
@media (max-width: 1100px) {
  .developer .merits__card-title {
    font-size: 16px;
  }
}
@media (max-width: 1440px) {
  .developer-head__icon, .developer-head__description {
    left: unset;
    margin-left: 55%;
    width: unset;
    max-width: unset;
  }
}
@media (max-width: 819px) {
  .developer {
    margin: 64px 0;
  }
  .developer-head__icon svg {
    width: 48px;
    height: 48px;
  }
  .developer-head__icon {
    right: 0;
    left: unset;
    margin-left: unset;
  }
  .developer__upper {
    gap: 24px;
  }
  .developer-head__description {
    margin-left: unset;
    font-size: 16px;
    line-height: 150%;
  }
  .developer .title {
    width: 100%;
  }
  .developer .merits {
    margin-top: 40px;
  }
  .developer .merits__card {
    width: 266px;
  }
  .developer .merits__card .merits__card-img {
    width: 160px;
    height: 160px;
  }
  .developer .merits__card-title {
    font-size: 14px;
  }
}
.about-us {
  margin-bottom: 0;
  margin-top: 0;
}
section.about-us-hero {
  margin-top: 0;
}
.about-us-hero__title {
  text-align: center;
}
@media (max-width: 1440px) {
  .about-us-hero__title {
    font-size: 88px;
    line-height: 109%;
  }
}
@media (max-width: 1100px) {
  .about-us-hero__title {
    font-size: 72px;
    line-height: 111%;
  }
}
@media (max-width: 600px) {
  .about-us-hero__title {
    font-size: 40px;
    line-height: 120%;
  }
}
.about-us-hero__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  background: #fcfaf9;
  margin-top: 80px;
}
@media (max-width: 1100px) {
  .about-us-hero__wrapper {
    margin-top: 64px;
  }
}
@media (max-width: 600px) {
  .about-us-hero__wrapper {
    flex-direction: column-reverse;
    gap: unset;
    margin-top: 40px;
  }
}
.about-us-hero__card {
  width: calc(50% - 12px);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.about-us-hero__card--special {
  padding: 64px;
}
@media (max-width: 1100px) {
  .about-us-hero__card--special {
    padding: 40px;
  }
}
@media (max-width: 600px) {
  .about-us-hero__card--special {
    padding: 0px 24px 24px;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .about-us-hero__card {
    width: 100%;
  }
}
.about-us-hero__subtitle {
  font-weight: 400;
  font-size: 24px;
  line-height: 133%;
  letter-spacing: -0.02em;
  color: var(--text-01);
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
}
@media (max-width: 819px) {
  .about-us-hero__subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
  }
}
.about-us-hero__description {
  font-weight: 400;
  font-size: 72px;
  line-height: 111%;
  letter-spacing: -0.02em;
  color: var(--primary);
}
@media (max-width: 1440px) {
  .about-us-hero__description {
    font-weight: 400;
    font-size: 52px;
    line-height: 115%;
  }
}
@media (max-width: 1100px) {
  .about-us-hero__description {
    font-weight: 400;
    font-size: 40px;
    line-height: 120%;
  }
}
@media (max-width: 819px) {
  .about-us-hero__description {
    font-weight: 400;
    font-size: 24px;
    line-height: 133%;
  }
}
.info-block {
  margin-top: 120px;
  margin-bottom: 0;
}
@media (max-width: 1100px) {
  .info-block {
    margin-top: 120px;
  }
}
@media (max-width: 819px) {
  .info-block {
    margin-top: 64px;
  }
}
.info-block .title {
  text-align: center;
}
@media (max-width: 1440px) {
  .info-block .title {
    font-size: 72px;
    line-height: 111%;
    letter-spacing: -0.02em;
  }
}
@media (max-width: 1100px) {
  .info-block .title {
    font-weight: 400;
    font-size: 72px;
    line-height: 111%;
  }
}
@media (max-width: 819px) {
  .info-block .title {
    font-weight: 400;
    font-size: 32px;
    line-height: 137%;
  }
}
.info-block__wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 80px;
}
@media (max-width: 1100px) {
  .info-block__wrapper {
    margin-top: 64px;
  }
}
@media (max-width: 819px) {
  .info-block__wrapper {
    margin-top: 40px;
  }
}
.info-block__row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
  position: relative;
}
@media (max-width: 600px) {
  .info-block__row {
    flex-wrap: wrap;
  }
}
.info-block__row--second {
  border-top: unset;
}
@media (max-width: 600px) {
  .info-block__row--second .info-block__el:first-child {
    display: none;
  }
  .info-block__row--second .info-block__el:last-child {
    display: flex;
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .info-block__row {
    padding: 24px 0;
  }
}
.info-block .line-border {
  height: 1px;
  background: var(--border);
  width: 100%;
  position: relative;
}
.info-block .line-border::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--border);
  border-radius: 100px;
  top: 0px;
  transform: translateY(-55%);
  right: 0px;
  z-index: 2;
}
.info-block .line-border::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--border);
  border-radius: 100px;
  top: 0px;
  transform: translateY(-55%);
  left: 0px;
  z-index: 2;
}
.info-block__el {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.info-block__el--small {
  width: calc(33.3% - 12px);
}
@media (max-width: 600px) {
  .info-block__el--small {
    width: calc(50% - 12px);
  }
}
@media (min-width: 600px) {
  .info-block__el--hide {
    display: none;
  }
}
@media (max-width: 600px) {
  .info-block__el--hide {
    display: flex;
  }
}
.info-block__el--big {
  width: calc(50% - 12px);
}
.info-block__el-title {
  font-weight: 400;
  font-size: 72px;
  line-height: 111%;
  letter-spacing: -0.02em;
  color: var(--primary);
}
@media (max-width: 1100px) {
  .info-block__el-title {
    font-size: 52px;
    line-height: 115%;
  }
}
@media (max-width: 819px) {
  .info-block__el-title {
    font-size: 32px;
    line-height: 137%;
  }
}
.info-block__el-description {
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  color: var(--primary);
}
@media (max-width: 1100px) {
  .info-block__el-description {
    font-size: 16px;
    line-height: 150%;
  }
}
@media (max-width: 819px) {
  .info-block__el-description {
    font-size: 14px;
    line-height: 143%;
    text-align: center;
  }
}
@media (max-width: 1100px) {
  .info-block__el {
    gap: 4px;
  }
}
.founder {
  margin: 0;
}
.founder__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 120px 0;
}
@media (max-width: 1100px) {
  .founder__wrapper {
    margin: 120px 0;
  }
}
@media (max-width: 819px) {
  .founder__wrapper {
    margin: 64px 0;
    flex-direction: column;
  }
  .founder__wrapper--second {
    flex-direction: column-reverse;
  }
  .founder__wrapper--second .founder-container .line-border:first-child {
    display: none;
  }
}
.founder-container {
  display: flex;
}
.founder__right {
  height: auto;
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 819px) {
  .founder__right {
    flex-direction: column;
    width: 100%;
  }
  .founder__right .line-border:first-child {
    display: none;
  }
}
.founder__sticky {
  display: flex;
  position: sticky;
  top: 92px;
  height: fit-content;
}
@media (max-width: 1440px) {
  .founder__sticky {
    padding: 0px 57px;
  }
}
@media (max-width: 1100px) {
  .founder__sticky {
    padding: unset;
  }
}
@media (max-width: 1100px) {
  .founder__sticky {
    position: unset;
  }
}
.founder__card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1100px) {
  .founder__card img {
    width: 345px;
    height: auto;
    object-fit: cover;
  }
}
@media (max-width: 819px) {
  .founder__card img {
    width: 100%;
  }
}
.founder__info {
  display: flex;
  flex-direction: column;
}
.founder__info span {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--text-01);
}
@media (max-width: 819px) {
  .founder__info span {
    font-size: 14px;
    line-height: 143%;
  }
}
.founder__name {
  font-weight: 400;
  font-size: 32px;
  line-height: 137%;
  letter-spacing: -0.02em;
  color: var(--primary);
}
@media (max-width: 819px) {
  .founder__name {
    font-weight: 400;
    font-size: 24px;
    line-height: 133%;
  }
}
.founder__left {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 0 64px 0px 64px;
  max-width: 1049px;
}
@media (max-width: 1440px) {
  .founder__left {
    padding: 0px 40px;
  }
}
@media (max-width: 1100px) {
  .founder__left {
    padding: 0px 32px;
  }
}
@media (max-width: 819px) {
  .founder__left {
    padding: 0;
    gap: 16px;
  }
}
.founder__header {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 819px) {
  .founder__header {
    gap: 16px;
  }
}
.founder__title {
  font-weight: 400;
  font-size: 52px;
  line-height: 115%;
  letter-spacing: -0.02em;
  color: var(--primary);
}
@media (max-width: 1100px) {
  .founder__title {
    font-size: 40px;
    line-height: 120%;
  }
}
@media (max-width: 819px) {
  .founder__title {
    font-size: 32px;
    line-height: 137%;
  }
}
.founder__description {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.founder__description span {
  font-weight: 400;
  font-size: 24px;
  line-height: 167%;
  letter-spacing: -0.02em;
  color: var(--primary);
}
@media (max-width: 1100px) {
  .founder__description span {
    font-size: 16px;
    line-height: 175%;
  }
}
@media (max-width: 819px) {
  .founder__description span {
    font-size: 14px;
    line-height: 171%;
  }
}
@media (max-width: 819px) {
  .founder__description {
    gap: 12px;
  }
}
@media (min-width: 819px) {
  .founder .line-border {
    height: auto;
    width: 1px;
  }
}
section.hero-object {
  margin-bottom: 80px;
}
section.hero-object .hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 3;
  width: 100%;
}
@media (max-width: 819px) {
  section.hero-object .hero__content {
    width: 100%;
    padding: 16px;
  }
}
section.hero-object .hero-object__icon {
  position: absolute;
  top: 102px;
  right: 32px;
  z-index: 5;
}
@media (max-width: 1100px) {
  section.hero-object .hero-object__icon {
    right: 24px;
  }
}
@media (max-width: 819px) {
  section.hero-object .hero-object__icon {
    right: 16px;
  }
}
section.hero-object .hero-object__icon img {
  width: 112px;
  height: 112px;
}
@media (max-width: 1100px) {
  section.hero-object .hero-object__icon img {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 819px) {
  section.hero-object .hero-object__icon img {
    width: 64px;
    height: 64px;
  }
}
section.hero-object .hero-object__title {
  font-weight: 400;
  font-size: 100px;
  line-height: 100%;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
  white-space: nowrap;
}
@media (max-width: 1100px) {
  section.hero-object .hero-object__title {
    font-size: 72px;
    line-height: 80px;
    white-space: unset;
  }
}
@media (max-width: 819px) {
  section.hero-object .hero-object__title {
    font-size: 40px;
    line-height: 120%;
    white-space: normal;
  }
}
section.hero-object .hero__subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  text-align: center;
  color: var(--white);
}
@media (max-width: 1100px) {
  section.hero-object .hero__subtitle {
    font-size: 20px;
    line-height: 160%;
  }
}
@media (max-width: 819px) {
  section.hero-object .hero__subtitle {
    font-size: 18px;
    line-height: 156%;
  }
}
.object-info {
  margin: 120px 0;
}
@media (max-width: 1100px) {
  .object-info {
    margin: 80px 0;
  }
}
@media (max-width: 819px) {
  .object-info {
    margin-bottom: 31px;
  }
}
.object-info__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 819px) {
  .object-info__wrapper {
    flex-direction: column;
    gap: 24px;
  }
}
.object-info__preview {
  background: var(--base-00);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f3f3f3;
  height: auto;
  max-width: 760px;
  width: 100%;
  flex: 1;
}
@media (max-width: 1100px) {
  .object-info__preview {
    max-height: 550px;
  }
}
@media (max-width: 1100px) {
  .object-info__preview img {
    width: 313px;
  }
}
@media (max-width: 819px) {
  .object-info__preview {
    max-width: unset;
    min-height: 168px;
    padding: 20px 108px;
  }
  .object-info__preview img {
    width: auto;
    max-height: 120px;
    max-width: 240px;
  }
}
.object-info-group {
  max-width: 916px;
  flex: 1;
}
.object-info-group__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 760px;
}
@media (max-width: 1100px) {
  .object-info-group__container {
    gap: 32px;
  }
}
.object-info__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 819px) {
  .object-info__content {
    gap: 16px;
  }
}
.object-info__title {
  font-weight: 400;
  font-size: 52px;
  line-height: 115%;
  letter-spacing: -0.02em;
  color: var(--primary);
}
@media (max-width: 1440px) {
  .object-info__title {
    font-size: 40px;
    line-height: 120%;
  }
}
@media (max-width: 1100px) {
  .object-info__title {
    font-size: 32px;
    line-height: 137%;
  }
}
@media (max-width: 819px) {
  .object-info__title {
    font-size: 24px;
    line-height: 133%;
  }
}
.object-info__description, .object-info__description p {
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  color: var(--primary);
}
@media (max-width: 1440px) {
  .object-info__description, .object-info__description p {
    font-size: 18px;
    line-height: 156%;
  }
}
@media (max-width: 1100px) {
  .object-info__description, .object-info__description p {
    font-size: 16px;
    line-height: 175%;
  }
}
@media (max-width: 819px) {
  .object-info__description, .object-info__description p {
    font-weight: 400;
    font-size: 14px;
    line-height: 171%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}
.object-info__link {
  display: flex;
  gap: 16px;
  align-items: center;
  font-weight: 500;
  font-size: 32px;
  line-height: 137%;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--primary);
}
@media (max-width: 1100px) {
  .object-info__link {
    font-weight: 400;
    font-size: 24px;
    line-height: 133%;
  }
  .object-info__link svg {
    width: 18px;
    height: 18px;
  }
}
.object-info__down {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.object-info__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.object-info__row * {
  width: calc(50%);
  text-align: left;
  display: flex;
}
.object-info__row span {
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  color: var(--primary);
}
@media (max-width: 819px) {
  .object-info__row span {
    font-size: 16px;
    line-height: 150%;
  }
}
.object-info__row-title {
  font-weight: 400;
  font-size: 32px;
  line-height: 137%;
  letter-spacing: -0.02em;
  color: #f69d1e;
}
.object-info__row-title img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}
@media (max-width: 1100px) {
  .object-info__row-title {
    font-weight: 400;
    font-size: 24px;
    line-height: 133%;
  }
}
@media (max-width: 819px) {
  .object-info__row-title {
    font-size: 20px;
    line-height: 160%;
  }
  .object-info__row-title img {
    width: 32px;
    height: 32px;
  }
}
.object-info__awards {
  display: flex;
  gap: 20px;
}
.object-info__awards .object-info__row-title {
  width: unset;
}
@media (max-width: 800px) {
  .object-info__awards {
    flex-wrap: wrap;
    gap: 8px;
  }
}
@media (max-width: 1100px) {
  .objects-gallery {
    margin-top: 40px;
    margin-bottom: 60px;
  }
}
@media (max-width: 819px) {
  .objects-gallery {
    margin: 64px 0;
  }
}
.objects__gallery.swiper {
  position: relative;
  width: 100%;
  height: calc(100vh - 72px);
}
.objects__gallery.swiper .swiper__pagination.swiper-pagination-horizontal {
  position: absolute;
  bottom: 64px;
  transform: translateX(-50%);
  left: 50%;
  z-index: 4;
  width: fit-content;
}
@media (max-width: 1100px) {
  .objects__gallery.swiper .swiper__pagination.swiper-pagination-horizontal {
    bottom: 48px;
  }
}
@media (max-width: 819px) {
  .objects__gallery.swiper .swiper__pagination.swiper-pagination-horizontal {
    bottom: 16px;
    display: none;
  }
}
@media (max-width: 1440px) {
  .objects__gallery.swiper {
    height: 680px;
  }
}
@media (max-width: 1100px) {
  .objects__gallery.swiper {
    height: 540px;
  }
}
@media (max-width: 819px) {
  .objects__gallery.swiper {
    height: auto;
  }
}
@media (min-width: 819px) {
  .objects__gallery.swiper .circle {
    display: none;
  }
}
.objects__gallery.swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.objects__gallery.swiper .slide-place {
  position: absolute;
  flex: 1;
  width: 50%;
  top: 0;
  height: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
}
@media (max-width: 819px) {
  .objects__gallery.swiper .slide-place {
    pointer-events: none;
  }
}
.objects__gallery.swiper .slide-place--prev {
  left: 0;
  cursor: url("/local/templates/jsi/assets/images/object/cursor-left.webp"), pointer;
}
.objects__gallery.swiper .slide-place--prev .circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
}
.objects__gallery.swiper .slide-place--prev .circle svg {
  transform: rotate(-180deg);
}
@media (max-width: 819px) {
  .objects__gallery.swiper .slide-place .circle {
    pointer-events: all;
  }
}
.objects__gallery.swiper .slide-place--next {
  right: 0;
  cursor: url("/local/templates/jsi/assets/images/object/cursor-right.webp"), pointer;
}
.objects__gallery.swiper .slide-place--next .circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
}
.objects__gallery.swiper .swiper-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
}
.objects__gallery.swiper .swiper-arrow--prev {
  left: calc((100vw - 1856px) / 2);
}
.objects__gallery.swiper .swiper-arrow--next {
  right: calc((100vw - 1856px) / 2);
}
.project-stats {
  padding-bottom: 160px;
  margin-bottom: 0;
}
.project-stats__left {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 30px;
}
@media (max-width: 500px) {
  .project-stats__left {
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }
}
.project-stats__left img {
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .project-stats__left img {
    width: 400px;
    height: 400px;
    object-fit: cover;
  }
}
@media (max-width: 1100px) {
  .project-stats__left img {
    width: 280px;
    height: 280px;
  }
}
@media (max-width: 500px) {
  .project-stats__left img {
    width: 112px;
    height: 112px;
    margin: unset;
  }
}
.project-stats__left svg {
  position: absolute;
  right: -100%;
  top: -100px;
}
@media (max-width: 1100px) {
  .project-stats__left svg {
    width: 540px;
    height: 540px;
    right: -39%;
    top: -59px;
  }
}
@media (max-width: 891px) {
  .project-stats__left svg {
    right: 0;
  }
}
@media (max-width: 414px) {
  .project-stats__left svg {
    width: 496px;
    height: 496px;
    top: 0;
  }
}
@media (max-width: 1100px) {
  .project-stats {
    margin-top: 60px;
    padding-bottom: 120px;
  }
}
@media (max-width: 891px) {
  .project-stats {
    margin-top: 32px;
    padding-bottom: 64px;
  }
}
.project-stats .title {
  white-space: nowrap;
  min-width: 393px;
}
@media (max-width: 891px) {
  .project-stats .title {
    font-size: 40px;
    line-height: 120%;
    min-width: unset;
  }
}
.project-stats__wrapper {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}
@media (max-width: 891px) {
  .project-stats__wrapper {
    flex-direction: column;
    gap: 40px;
  }
}
.project-stats-info {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 916px;
}
@media (max-width: 1440px) {
  .project-stats-info {
    width: unset;
    flex: 1;
  }
}
@media (max-width: 1100px) {
  .project-stats-info {
    gap: 32px;
  }
}
@media (max-width: 891px) {
  .project-stats-info {
    width: 100%;
    gap: 24px;
  }
}
.project-stats-info__row {
  display: flex;
  gap: 24px;
}
.project-stats__el {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 50%;
  align-items: start;
  justify-content: start;
}
@media (max-width: 891px) {
  .project-stats__el {
    gap: 4px;
  }
}
.project-stats__el span {
  font-size: 18px;
  line-height: 156%;
  color: var(--text-01);
}
@media (max-width: 1100px) {
  .project-stats__el span {
    font-size: 16px;
    line-height: 150%;
  }
}
@media (max-width: 891px) {
  .project-stats__el span {
    font-size: 14px;
    line-height: 171%;
  }
}
.project-stats__el p {
  font-size: 72px;
  line-height: 111%;
  letter-spacing: -0.02em;
  color: var(--primary);
  white-space: nowrap;
}
@media (max-width: 1100px) {
  .project-stats__el p {
    font-size: 52px;
    line-height: 115%;
  }
}
@media (max-width: 891px) {
  .project-stats__el p {
    font-size: 32px;
    line-height: 137%;
  }
}
.location {
  padding: 160px 0px 0px;
  background: #f0f0f0;
  margin-top: 0;
  display: flex;
  gap: 80px;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1100px) {
  .location {
    padding: 120px 0px 0px;
    gap: 64px;
  }
}
@media (max-width: 819px) {
  .location {
    padding: 64px 0 0;
    gap: 40px;
  }
  .location .marker-icon img {
    width: 72px !important;
    height: 72px !important;
  }
}
.location .title {
  text-align: center;
}
@media (max-width: 819px) {
  .location .title {
    font-weight: 400;
    font-size: 40px;
    line-height: 120%;
  }
}
.location__header {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  max-width: 640px;
}
@media (max-width: 1100px) {
  .location__header {
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .location__header {
    padding: 0 16px;
  }
}
.location__description {
  font-size: 16px;
  line-height: 175%;
  text-align: center;
  color: var(--primary);
}
@media (max-width: 1100px) {
  .location__description {
    font-size: 16px;
    line-height: 175%;
    text-align: center;
  }
}
@media (max-width: 819px) {
  .location__description {
    font-size: 14px;
    line-height: 171%;
  }
}
.location__wrapper {
  position: relative;
  width: 100%;
  height: 640px;
}
@media (max-width: 1100px) {
  .location__wrapper {
    height: 540px;
  }
}
.location__map {
  width: 100%;
  height: 100%;
  z-index: 1;
}
.location__button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  bottom: 32px;
  gap: 64px;
}
@media (max-width: 500px) {
  .location__button {
    bottom: 24px;
    width: calc(100% - 32px);
  }
}
.awards {
  margin-bottom: 160px;
}
@media (max-width: 1100px) {
  .awards {
    margin-bottom: 120px;
  }
}
@media (max-width: 819px) {
  .awards {
    margin-bottom: 0;
  }
}
.awards__wrapper {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 80px;
}
@media (max-width: 1100px) {
  .awards__wrapper {
    margin-top: 64px;
    margin-top: 120px;
  }
}
@media (max-width: 819px) {
  .awards__wrapper {
    margin-top: 40px;
  }
}
.awards .title {
  text-align: center;
}
@media (max-width: 819px) {
  .awards .title {
    font-size: 40px;
  }
}
.awards-card {
  border: 1px solid var(--border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc((100% - 4 * 24px) / 5);
}
@media (min-width: 1440px) {
  .awards-card {
    height: auto;
    min-height: 440px;
  }
}
@media (max-width: 1440px) {
  .awards-card {
    width: calc((100% - 3 * 24px) / 4);
  }
}
@media (max-width: 1100px) {
  .awards-card {
    width: calc((100% - 2 * 24px) / 3);
    height: 412px;
  }
}
@media (max-width: 819px) {
  .awards-card {
    width: calc((100% - 1 * 24px) / 2);
    height: auto;
  }
}
@media (max-width: 500px) {
  .awards-card {
    width: 100%;
    gap: 80px;
  }
}
.awards-card__group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.awards-card__group img {
  width: 128px;
  height: 128px;
}
.awards-card__title {
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: var(--primary);
}
@media (min-width: 1024px) {
  .awards-card__title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 84px;
    transition: max-height 0.7s ease;
  }
}
@media (min-width: 1024px) {
  .awards-card:hover .awards-card__title {
    -webkit-line-clamp: unset;
    -webkit-box-orient: vertical;
    overflow: visible;
    text-overflow: clip;
    max-height: 500px;
  }
}
.awards-card__date {
  font-size: 16px;
  line-height: 150%;
  color: var(--text-01);
}
@media (min-width: 1024px) {
  .awards-card__date {
    margin-top: 24px;
  }
}
.other-object {
  margin: 160px 0;
}
@media (max-width: 1100px) {
  .other-object {
    margin: 64px 0;
  }
}
@media (max-width: 819px) {
  .other-object {
    margin: 64px 0;
  }
}
.other-object__header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 1440px) {
  .other-object__header {
    justify-content: end;
    gap: 60px;
  }
}
@media (max-width: 600px) {
  .other-object__header {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
.other-object .title {
  text-align: center;
}
.other-object .navigations {
  display: flex;
  gap: 8px;
  position: absolute;
  right: 0;
  top: 12px;
}
@media (max-width: 1440px) {
  .other-object .navigations {
    position: unset;
  }
}
.other-object__swiper.swiper {
  width: 100%;
  margin: 96px 0 48px 0;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 1100px) {
  .other-object__swiper.swiper {
    margin: 64px 0 48px 0;
  }
}
@media (max-width: 819px) {
  .other-object__swiper.swiper {
    margin: 40px 0;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.other-object__button {
  margin: 0 auto;
  width: fit-content;
}
@media (max-width: 500px) {
  .other-object__button {
    width: calc(100% - 32px);
  }
}
.other-object .object-card.swiper-slide {
  display: flex;
}
.other-object .object-card.swiper-slide._idel_tauer {
  max-width: 600px;
}
.other-object .object-card__preview {
  height: 602px;
}
@media (max-width: 1440px) {
  .other-object .object-card__preview {
    height: 500px;
  }
}
@media (max-width: 1100px) {
  .other-object .object-card__preview {
    height: 480px;
  }
}
@media (max-width: 600px) {
  .other-object .object-card__preview {
    height: 193px;
  }
}
.other-object .object-card__img, .other-object .object-card__mask {
  height: 100%;
}
.next-page__preview {
  object-position: 1% 82%;
}
.breadcrumb--special {
  position: absolute;
  top: 72px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 100%;
}
.breadcrumb--special div, .breadcrumb--special a {
  color: var(--white);
}
.breadcrumb--special .breadcrumbs {
  margin: 0;
}
@media (max-width: 819px) {
  .breadcrumb--special {
    left: 16px;
    transform: unset;
    width: fit-content;
    top: 97px;
  }
  .breadcrumb--special .container {
    margin: unset;
    padding: unset;
  }
  .breadcrumb--special .breadcrumbs__wrapper {
    padding: unset;
  }
}
.contacts__header {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-direction: column;
}
.contacts__header span {
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0%;
  text-align: center;
  max-width: 670px;
}
@media (max-width: 500px) {
  .contacts__header span {
    font-size: 16px;
    line-height: 150%;
  }
}
.contacts__wrapper {
  margin-top: 80px;
  display: flex;
  gap: 24px;
}
@media (max-width: 1280px) {
  .contacts__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 64px;
    margin-top: 64px;
  }
}
@media (max-width: 500px) {
  .contacts__wrapper {
    margin-top: 40px;
    gap: 40px;
  }
}
.contacts__left {
  flex: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  align-items: center;
  width: calc(50% - 12px);
}
@media (max-width: 1280px) {
  .contacts__left {
    width: 100%;
    flex: unset;
    gap: 32px;
  }
}
@media (max-width: 500px) {
  .contacts__left {
    gap: 24px;
  }
}
.contacts__group {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 1100px) {
  .contacts__group {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .contacts__group {
    flex-direction: column;
  }
}
.contacts-card {
  flex: 1;
  background: #f3f3f3;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
  height: auto;
  overflow: hidden;
  align-items: start;
}
.contacts-card svg {
  position: absolute;
  bottom: 0px;
  right: 0;
  pointer-events: none;
}
@media (max-width: 819px) {
  .contacts-card svg {
    width: 50%;
    height: inherit;
  }
}
.contacts-card__city {
  color: var(--primary);
  font-weight: 400;
  font-size: 32px;
  line-height: 44px;
  text-align: left;
}
@media (max-width: 1100px) {
  .contacts-card__city {
    font-size: 24px;
    line-height: 133%;
  }
}
.contacts-card__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contacts-card__block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contacts-card__block p {
  color: #898f9a;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
}
@media (max-width: 500px) {
  .contacts-card__block p {
    font-size: 14px;
    line-height: 143%;
  }
}
.contacts-card__block a {
  color: var(--primary);
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  position: relative;
  width: fit-content;
}
.contacts-card__block a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}
.contacts-card__block a:hover::after {
  width: 100%;
}
@media (max-width: 1100px) {
  .contacts-card__block a {
    font-size: 18px;
    line-height: 156%;
  }
}
@media (max-width: 500px) {
  .contacts-card {
    gap: 40px;
    padding: 24px;
  }
}
.contacts__socials {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}
.contacts__socials span {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
}
.contacts__socials-list {
  display: flex;
  gap: 16px;
}
.contacts__socials-list a {
  border: 1px solid var(--border);
}
.contacts__socials-list a:hover {
  border: 1px solid var(--border) !important;
}
.contacts__right {
  flex: auto;
  position: relative;
  height: auto;
  width: calc(50% - 12px);
}
.contacts__right .button {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
@media (max-width: 500px) {
  .contacts__right .button {
    width: calc(100% - 32px);
  }
}
@media (max-width: 1280px) {
  .contacts__right {
    height: 512px;
    width: 100%;
  }
}
.contacts-map__filter {
  position: absolute;
  top: 32px;
  left: 32px;
  display: flex;
  gap: 10px;
  z-index: 3;
}
@media (max-width: 500px) {
  .contacts-map__filter {
    top: 16px;
    left: 16px;
  }
}
.contacts-map__filter-city {
  border: 1px solid var(--white---160);
  border-radius: 104px;
  padding: 8px 24px;
  min-width: 48px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--primary);
  white-space: nowrap;
  background: var(--white);
  transition: all 0.4s ease;
  cursor: pointer;
}
.contacts-map__filter-city.active {
  background: var(--primary);
  color: var(--white);
}
@media (max-width: 500px) {
  .contacts-map__filter-city {
    font-size: 14px;
    padding: 6px 16px;
  }
}
.contacts__map {
  z-index: 2;
  width: 100%;
  height: 100%;
  position: relative;
}
@media (max-width: 500px) {
  .contacts {
    margin: 64px 0;
  }
  .contacts .marker-icon img {
    width: 72px !important;
    height: 72px !important;
  }
}
.footer {
  padding: 160px 0 0px;
  background: var(--primary);
  overflow: hidden;
}
@media (max-width: 1100px) {
  .footer {
    padding: 80px 0 0;
  }
}
@media (max-width: 819px) {
  .footer {
    padding: 64px 0 0;
  }
}
@media (min-width: 891px) {
  .footer .line-border {
    width: 1px;
    height: -webkit-fill-available;
  }
  .footer .line-border::before {
    top: unset;
    bottom: -12px;
    transform: translate(-57%, -50%);
    left: 50%;
  }
  .footer .line-border::after {
    top: -4px;
    transform: translate(-57%, -50%);
    left: 100%;
  }
  .footer .line-border::after, .footer .line-border::before, .footer .line-border {
    background: rgba(255, 255, 255, 0.16);
  }
  .footer nav a {
    position: relative;
  }
  .footer nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--white);
    transition: width 0.3s ease;
  }
  .footer nav a:hover::after {
    width: 100%;
  }
}
.footer .line-border::after, .footer .line-border::before, .footer .line-border {
  background: rgba(255, 255, 255, 0.16);
}
.footer .line-border::after {
  right: 50%;
}
@media (max-width: 891px) {
  .footer .line-border::after {
    right: -8px;
  }
}
.footer .line-border::before {
  left: 100%;
}
@media (max-width: 891px) {
  .footer .line-border::before {
    left: -8px;
  }
}
@media (max-width: 891px) {
  .footer .line-border {
    width: 97%;
    margin: 0 auto;
  }
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1856px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 1100px) {
  .footer__wrapper {
    gap: 40px;
  }
}
@media (max-width: 819px) {
  .footer__wrapper {
    padding: 0 16px;
    gap: 32px;
  }
}
.footer-main {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  position: relative;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--white---160);
}
@media (max-width: 1100px) {
  .footer-main {
    padding-bottom: 40px;
  }
}
@media (max-width: 819px) {
  .footer-main {
    flex-direction: column;
    gap: 32px;
  }
}
.footer-main .circle {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 819px) {
  .footer-main .circle {
    display: none;
  }
}
.footer-main::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  z-index: 2;
  right: -8px;
  bottom: 4px;
  transform: translateY(100%);
}
.footer-main::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  z-index: 2;
  left: -8px;
  bottom: 4px;
  transform: translateY(100%);
}
.footer-office {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: calc(50% - 48px);
}
@media (max-width: 819px) {
  .footer-office {
    width: 100%;
    gap: 16px;
  }
}
.footer-office a {
  font-weight: 400;
  font-size: 72px;
  line-height: 111%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #f9c98e;
  position: relative;
}
@media (max-width: 1440px) {
  .footer-office a-office a {
    font-size: 52px;
    line-height: 115%;
  }
}
@media (max-width: 1100px) {
  .footer-office a {
    font-size: 40px;
    line-height: 120%;
  }
}
@media (max-width: 819px) {
  .footer-office a {
    font-size: 32px;
    line-height: 137%;
  }
}
@media (min-width: 819px) {
  .footer-office a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #f9c98e;
    transition: width 0.3s ease;
  }
  .footer-office a:hover::after {
    width: 100%;
  }
  .footer-office a:hover {
    color: #f9c98e;
  }
}
.footer-office__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-office__text p {
  font-size: 16px;
  line-height: 150%;
  color: var(--text-01);
}
@media (max-width: 819px) {
  .footer-office__text p {
    font-size: 14px;
    line-height: 171%;
  }
}
.footer-office__text a {
  font-size: 24px;
  line-height: 133%;
  letter-spacing: -0.02em;
  color: var(--white);
}
@media (max-width: 1440px) {
  .footer-office__text a {
    font-size: 20px;
    line-height: 160%;
    text-align: center;
  }
}
@media (max-width: 819px) {
  .footer-office__text a {
    font-size: 16px;
    line-height: 150%;
  }
}
.footer-line {
  height: -webkit-fill-available;
  width: 1px;
  background: var(--white---160);
  position: relative;
  display: flex;
  z-index: 1;
}
.footer-line::before, .footer-line::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--white---160);
  border-radius: 100px;
  top: -8px;
  left: 50%;
  transform: translateX(-55%);
  z-index: 2;
}
.footer-line::after {
  bottom: -8px;
  top: unset;
}
.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 819px) {
  .footer__content {
    flex-direction: column;
    gap: 24px;
  }
  .footer__content nav {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }
  .footer__content nav a {
    width: calc(50% - 16px);
  }
}
.footer-socials {
  display: flex;
  gap: 24px;
}
@media (max-width: 819px) {
  .footer-socials {
    order: -1;
  }
}
.footer__text {
  font-size: 14px;
  line-height: 171%;
  text-align: center;
  color: var(--text-01);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--white---160);
  position: relative;
}
@media (max-width: 1100px) {
  .footer__text {
    padding-bottom: 40px;
  }
}
@media (max-width: 819px) {
  .footer__text {
    font-size: 12px;
    line-height: 133%;
    padding-bottom: 32px;
  }
}
.footer__text::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  z-index: 2;
  right: -8px;
  bottom: 4px;
  transform: translateY(100%);
}
.footer__text::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  z-index: 2;
  left: -8px;
  bottom: 4px;
  transform: translateY(100%);
}
.footer__documentation {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex: 1;
}
.footer__documentation a {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: var(--white);
  position: relative;
}
@media (min-width: 1024px) {
  .footer__documentation a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--white);
    transition: width 0.3s ease;
  }
  .footer__documentation a:hover::after {
    width: 100%;
  }
}
@media (max-width: 819px) {
  .footer__documentation {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-top: -16px;
  }
}
.footer__down {
  margin-top: 64px;
  width: auto;
  display: none;
}
.footer__vector {
  width: 100%;
  margin-top: 64px;
  object-fit: cover;
}
@media (max-width: 819px) {
  .footer__vector {
    margin-top: 32px;
  }
}
.footer__up-button {
  display: none;
}
@media (max-width: 819px) {
  .footer__up-button {
    display: flex;
    margin-top: 16px;
  }
}
.footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  right: 0;
}
.footer .footer-logo span {
  color: #898f9a;
  font-weight: 400;
  font-size: 10px;
  line-height: 120%;
  letter-spacing: -2%;
  max-width: 144px;
}
@media (max-width: 1100px) {
  .footer .footer-logo span {
    font-size: 8px;
    max-width: 115px;
  }
}
@media (max-width: 1100px) {
  .footer .footer-logo__svg {
    width: 94px;
    height: 20px;
  }
}
@media (max-width: 767px) {
  .footer .footer-logo {
    position: unset;
  }
}
.footer .footer__section-down {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.footer .footer__section-down {
  flex-direction: column;
  gap: 16px;
}

/* End */
/* /local/templates/jsi/assets/css/style.css?177919539797345 */
