/**************************************************/
/**         GENERAL RESET & BASE STYLES          **/
/**************************************************/

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Unbounded:wght@200..900&display=swap");

:root {
  --blue-light: #b2d2ef;
  --blue: rgba(0, 84, 162, 0.5);
  --white: #fff;
  --black: #242424;
  --gray: rgba(255, 255, 255, 0.2);
}

* {
  margin: 0;
  padding: 0;
  font-family: Manrope;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;

  color: #fff;
}

*:focus {
  outline: none;
}

html,
body {
  line-height: 1;
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  overflow: auto;
}

section {
  position: relative;
  z-index: 3;
}

main {
  flex: auto;
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

strong {
  font-weight: 700;
}

b {
  font-weight: 500;
}

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

input,
textarea,
select {
  vertical-align: middle;
  padding: 0;
  box-sizing: border-box;
  resize: none;

  border: 1px solid transparent;
  color: #000c49;
  background-color: #fff;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: #cacaca;
  font-size: 16px;
}

textarea:focus::-webkit-input-placeholder,
input:focus::-webkit-input-placeholder {
  color: #b9b9b9;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  font-size: 16px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px transparent;
}

.hover {
  transition: opacity 0.4s;
  cursor: pointer;
}

.hover:hover {
  opacity: 0.5;
}

.container {
  display: block;
  position: relative;
  width: 1760px;
  padding: 0;
  margin: 0 auto;
}

/**************************************************/
/**                 MAIN STYLES                  **/
/**************************************************/
::selection {
  color: var(--blue);
  background-color: var(--white);
}

body::-webkit-scrollbar {
  width: 7px;
}

body::-webkit-scrollbar-track {
  background: #040c12;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--blue-light);
  border-radius: 20px;
}

img::selection {
  background-color: transparent;
}

.s-mobail {
  display: none;
}

.mt-50 {
  margin-top: 50px;
}

.p-t {
  padding-top: 150px;
}

.custom-left-container {
  margin-left: calc(50vw - 900px);
  overflow: hidden;
}

.custom-container {
  padding: 0 calc(50vw - 900px);
}

.border {
  border-radius: 32px;
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
}

.blue-box {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  border-radius: 30px;
  background: var(--blue);
  min-width: max-content;
  width: max-content;

  /* Text */
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.blue-box.gray {
  background: rgba(64, 64, 64, 0.5);
}

.navigation {
  cursor: pointer;
  width: 54px;
  height: 54px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(178, 210, 239, 0.2);
  transition: 0.4s all;
}

.navigation.prev svg {
  transform: translateX(-2px);
}

.navigation.next svg {
  transform: translateX(2px);
}

.navigation:hover {
  opacity: 0.6;
}

.blue-button {
  flex-shrink: 0;
  width: max-content;
  padding: 18px 30px;
  color: #242424;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
  display: flex;
  gap: 16px;
  align-items: center;
  border-radius: 30px;
  background: var(--blue-light);
  cursor: pointer;
}

.blue-button span.d-mobail {
  display: contents;
  color: #242424;
  font-size: 18px;
  font-weight: 500;
}

.contact-btn__wrap {
  margin-top: 40px;
}

.contact-btn__wrap p {
  display: flex;
  align-items: center;
}

.contact-btn {
  background: transparent;
  text-transform: uppercase;
  color: #242424;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
}

.contact-btn__wrap::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../images/arrow.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.text-32-500 {
  font-family: Unbounded;
  font-size: 32px;
  font-weight: 500;
}

.text-20-400 {
  font-size: 20px;
  font-weight: 400;
}

.text-18-400 {
  font-size: 18px;
  font-weight: 400;
}

.text-16-400 {
  font-size: 16px;
  font-weight: 400;
}

.title-h2 {
  color: var(--white);
  font-family: Unbounded;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* .top-bg {
  position: relative;
  background-image: url(../images/top-bg.webp);
  background-repeat: repeat-y;
  background-size: cover;
  z-index: 1;
  min-height: 200vh;
} */
body {
  width: 100%;
  position: relative;
  background-color: #040c12;
  /* background-image: url(../images/top-bg2.webp); */
  background-repeat: repeat-y;
  background-size: cover;
  z-index: 1;
  min-height: 100vh;
}

.sepia-bg {
  z-index: 1;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: 0;
  width: 200%;
  position: absolute;
  z-index: 2;
  /* background: transparent url("../images/sepia-bg.png"); */
  background-repeat: repeat;
  background-size: contain;
  animation: snow 0.2s linear infinite;
}

.sepia-bg img {
  height: 100%;
}

@keyframes snow {
  0% {
    transform: translate(0, 0);
  }

  60% {
    transform: translate(15%, 0);
  }

  100% {
    transform: translate(5%, 0);
  }
}

#swup-preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  inset: 0;
  background: #010509;
  z-index: 9;
}

#swup-preloader::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  /* размер лоадера */
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.breadcrumps-mk {
  height: 0;
}

.breadcrumps-mk .container {
  position: relative;
  overflow: visible;
}

.breadcrumps-mk__inner {
  position: absolute;
  top: 130px;
  z-index: 4;
}

.breadcrumps-mk__inner span,
.breadcrumps-mk__inner a {
  cursor: pointer;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
}

.breadcrumps-mk__inner p {
  display: flex;
  gap: 10px;
  align-items: center;
}

.breadcrumps-mk__inner a:nth-child(1) {
  color: var(--gray);
}

.rank-math-breadcrumb span.separator:nth-child(2) {
  color: var(--gray);
}

body:has(.home-page) .breadcrumps-mk {
  display: none;
}

/* header */
.header {
  position: absolute;
  width: 100%;
  z-index: 10;
}

.menu-burger {
  display: none;
}

.header-l {
  display: flex;
  gap: 60px;
  align-items: center;
}

.header-r {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-r .translate {
  cursor: pointer;
  /* padding: 16px 20px;
  border-radius: 30px;
  background: rgba(0, 84, 162, 0.5); */
}

.heade-menu {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 15px;
}

.wrap__logo {
  width: 110.961px;
  height: 49.785px;
  flex-shrink: 0;
}

.heade-menu ul {
  display: flex;
  align-items: center;
}

.heade-menu ul li a {
  padding: 16px 35px;
  border-radius: 30px;
  border: 1px solid var(--gray);
  position: relative;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.heade-menu ul li a:hover {
  color: var(--black);
  background-color: var(--white);
}

.heade-menu ul li.current-menu-item a {
  color: var(--black);
  background-color: var(--white);
}

.heade-menu ul li:hover::before {
  width: 100%;
}

.heade-menu ul li a {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  transition: 0.4s all;
}

.header .text-btn {
  padding: 16px 24px;
  font-size: 14px;
}

.heade-menu .arow-btn {
  width: 49px;
  height: 49px;
}

.heade-menu .arow-btn img {
  width: 20px;
  height: 20px;
}

/* header */

/* hero */
.hero {
  padding-top: 140px;
  height: 100vh;
  position: relative;
  overflow: hidden;
  /* background-image: url(../images/hero.webp); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-video {
  position: absolute;
  height: 100%;
  width: 100%;
  inset: 0;
  z-index: -1;
}

.hero-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-btn {
  display: flex;
  align-items: center;
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: visible;
  z-index: 3;
}

.hero-video-btn>div {
  cursor: pointer;

  position: absolute;
  right: 0;
  top: 50%;
  display: none;
  z-index: 2;
}

.hero-video-btn>div.is-active {
  display: flex;
  z-index: 3;
}

.hero-descr {
  font-family: Unbounded;
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
  max-width: 450px;
  width: 100%;
  flex-shrink: 0;
}

.hero--title * {
  font-family: Unbounded;
  font-size: 120px;
  font-weight: 800;
  line-height: 100%;
  text-transform: uppercase;
  margin-top: -10px;
}

.hero-top {
  display: flex;
  align-items: center;
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-text {
  margin-top: 20px;
  max-width: 303px;
}

.marquee_marquee {
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 90px;
}

.marquee_content {
  flex-shrink: 0;
  display: flex;
  gap: 90px;
  max-width: max-content;
  animation: scroll 40s linear infinite;
  justify-content: space-between;
}

.marquee_item {
  color: var(--white);
  font-size: 24px;
  line-height: 100%;
  text-transform: uppercase;

  flex: 0 0 auto;
  width: max-content;
  display: flex;
  gap: 90px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  padding: 10px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 90px));
  }
}

/* hero */

/* events */
.events .title-h2 {
  text-align: center;
}

.events-wrap {
  display: flex;
  gap: 45px;
  align-items: center;
}

.swiper-slide.events-slide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  height: auto;
}

.events-slide>div {
  flex: 1;
}

.events-left {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  align-items: start;
}

.events-left .blue-box--wrap {
  display: flex;
}

.events-title {
  margin-bottom: 20px;
  margin-top: 30px;
  font-family: Unbounded;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

.events-left .text {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.events-right {
  border-radius: 32px;
  overflow: hidden;
}

.events-right img {
  display: block;
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}

/* events */

/* about */
.about-bottom {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.about__item {
  min-height: 355px;
  padding: 96px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: start;
  align-items: center;
}

.about__number {
  display: flex;
  gap: 5px;
}

.about__number p,
.about__number span {
  font-family: Unbounded;
  text-align: center;
  font-size: 50px;
  font-weight: 500;
  text-transform: uppercase;
}

.about__subtext {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
}

.about-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.about-top>div {
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* about */

/* reviews */
.quotes {
  display: block;
  color: rgba(255, 255, 255, 0.2);
  font-family: Unbounded;
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
}

.reviews .second {
  display: flex;
  align-items: center;
  gap: 20px;
}

.reviews-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.reviews-top>div:nth-child(1) {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reviews-item {
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.reviews-item-t {
  height: 230px;
  border-radius: 18px;
  overflow: hidden;
}

.reviews-item-t img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.reviews-item-b {
  display: flex;
  justify-content: space-between;
}

.reviews-item-b .left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.reviews-item-b .line {
  background: rgba(255, 255, 255, 0.5);
  height: 1px;
  width: 100%;
}

.reviews-item-b .right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

/* reviews */

/* partners */
.partners-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.partners-top>div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.partners-bottom {
  margin-top: 30px;
}

.partners_marquee {
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 36px;
  padding: 60px 0 0;
}

.partners_content {
  flex-shrink: 0;
  display: flex;
  gap: 36px;
  max-width: max-content;
  animation: scroll-l 60s linear infinite;
  justify-content: space-between;
}

.partners_content.reverse {
  flex-direction: row-reverse;
  animation-direction: reverse;
}

.partners_item {
  flex: 0 0 auto;
  width: 295px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.partners_item img {
  display: block;
  height: auto;
  width: 100%;
}

@keyframes scroll-l {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 36px));
  }
}

/* partners */

/* stories */
.stories-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.stories-top>div:nth-child(1) {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stories-top .second {
  display: flex;
  gap: 20px;
  align-items: center;
}

.stories .swiper-slide {
  height: auto;
  min-height: 795px;
  /* width: 350px; */
  width: 520px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: 0.6s all;
  border-radius: 32px;
}

.stories--front,
.stories--back {
  position: absolute;
  inset: 0;
  padding: 36px;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.stories-bottom {
  padding-left: 20px;
}

/* .stories .swiper-slide-active {
  width: 520px;
} */

.stories--front,
.stories--back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
}

.stories--front {
  gap: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.img-absolute {
  top: 0;
  left: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.img-absolute img {
  object-fit: cover;
  object-position: center;
  height: 100%;
}

.stories .year {
  font-family: Unbounded;
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
}

.title-rotate {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.stories--back {
  gap: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stories--back .top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stories--back .bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stories--back .bottom .blue {
  padding: 10px 20px;
  border-radius: 16px;
  background: rgba(9, 56, 101, 0.6);
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.stories--back .bottom .blue p {
  font-size: 20px;
  font-weight: 500;
}

/* stories */

/* people */
.container.visible {
  overflow: visible;
}

.people .text {
  margin-top: 20px;
}

.people-wrapp {
  display: flex;
  gap: 40px;
}

.people .name {
  font-family: Unbounded;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

.people .line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.people .top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.people .bottom {
  margin-top: 26px;
}

.people .swiper-slide {
  padding: 36px;
  border-radius: 32px;
  overflow: hidden;
  min-height: 675px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.people .img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
}

.people .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.people-left {
  flex-shrink: 0;
}

.people-right {
  max-width: 55%;
}

.people-right--b {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.swiper-people__inner {
  width: 125%;
}

.video-block {
  background-color: black;
  display: flex;
  position: relative;
  width: 100%;
  max-width: 755px;
  border-radius: 32px;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  max-height: 667px;
}

.video-block__poster {
  display: block;
  width: 100%;
  height: auto;
}

.video-block__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 132px;
  height: 147px;
  border: none;
  background: transparent;

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-block__player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-block__play::before {
  content: "";
  width: 132px;
  height: 147px;
  background-image: url(../images/play.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* people */

/* customslide */

.container.customslide-inner {
  position: relative;
}

.customslide-slides {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 660px;
}

.customslide--title {
  transform: translateY(-40px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.customslide--title p {
  width: 500px;
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 500;
  text-transform: uppercase;
}

.about-page .customslide--title p span:nth-child(1) {
  text-align: start;
}

.customslide--title p.customslide--title-small {
  font-size: 18px;
  font-weight: 500;
  text-align: end;
}

.customslide--title p span {
  display: block;
  font-family: Unbounded;
  font-size: 50px;
  font-weight: 800;
  line-height: 100%;
}

.customslide--title p span:nth-child(1) {
  text-align: end;
}

.customslide-slide {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  transition: 0.4s all;
}

.customslide--center {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.customslide-card {
  position: relative;
  z-index: 1;
  width: 437px;
  height: 470px;
  border-radius: 32px;
  overflow: hidden;
}

.customslide-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.customslide-card.customslide-card--left {
  transform: translate(80px, 10px) rotate(-20deg);
  z-index: 0;
}

.customslide-card.customslide-card--right {
  transform: translate(-80px, 10px) rotate(20deg);
  z-index: 0;
}

.customslide-card.customslide-card--center {
  z-index: 3;
  width: 560px;
  height: 661px;
}

.customslide-title .swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-transform: uppercase;
  transition: transform 0.4s;
}

.customslide-title .swiper-slide.swiper-slide-active {
  transform: scale(1.3);
  color: #fff;
}

.customslide-title .swiper-slide.swiper-slide-active::before,
.customslide-title .swiper-slide.swiper-slide-active::after,
.customslide-title .swiper-slide.swiper-slide-next::before,
.customslide-title .swiper-slide.swiper-slide-prev::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #b2d2ef;
  border-radius: 50%;
  position: absolute;
}

.customslide-title .swiper-slide.swiper-slide-active::before {
  left: 0;
}

.customslide-title .swiper-slide.swiper-slide-active::after {
  right: 0;
}

.customslide-title .swiper-slide.swiper-slide-next::before {
  right: 0;
}

.customslide-title .swiper-slide.swiper-slide-prev::before {
  left: 0;
}

.customslide-footer {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  height: 54px;
}

.customslide-counter {
  display: flex;
  align-items: center;
  gap: 40px;
  color: #fff;
}

.swiper-slide {
  background: transparent;
}

.customslide-card.customslide-card--center img {
  position: absolute;
  top: 0;
  left: 0;
}

.customslide-btn {
  cursor: pointer;
  transition: opacity 0.3s;
}

.customslide-btn:hover {
  opacity: 0.6;
}

/* customslide */

/* contact */
.contact--inner {
  display: flex;
  gap: 56px;
  justify-content: space-between;
}

.contact-l {
  max-width: 755px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: space-between;
}

.contact-l .top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-l .bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-l .bottom .title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-r {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-wrap>p {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.input {
  display: block;
  padding: 14px 22px;
  background: transparent;
  width: 100%;
  border-radius: 30px;
  border-bottom: 1px solid #9f9f9f;

  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

/* contact */

/* footer */
.footer {
  position: relative;
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.footer .sepia-bg {
  z-index: -1;
}

.footer__inner .top {
  margin: 80px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.footer .logo {
  width: 143px;
  height: 64px;
}

.footer .top-1 {
  display: flex;
  gap: 50px;
  align-items: center;
}

.footer .top-1 .social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer .top-1 .social a {
  display: block;
  width: 32px;
  height: 32px;
}

.footer .top-2 {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.footer .top-2 a {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.footer .bottom {
  padding-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 15px;
}

.footer .bottom .item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer .bottom .item a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer .bottom .item:last-child {
  align-items: end;
}

/* footer */

/* three.js */
.herotest {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.herotest .hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 160px;
}

.herotest .hero-inner .title-h2 {
  max-width: 1120px;
}

.herotest .hero-inner * {
  text-align: center;
}

#hero-panorama {
  height: 120%;
  position: absolute;
  inset: 0;
  z-index: 1;
}

#hero-panorama canvas {
  padding-top: 50px;
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* three.js */

/* afisha */
.afisha-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.afisha-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.afisha-content .blue-box--wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  width: 100%;
}

.afisha-l {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.afisha-l .bottom {
  flex: 1;
  display: flex;
  align-items: end;
}

.afisha-r {
  border-radius: 32px;
  overflow: hidden;
  max-height: 560px;
}

.afisha-r img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.more-load {
  padding: 16px 34px;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 18px;
  border: 1px solid var(--white);
  background-color: transparent;
  cursor: pointer;

  width: max-content;
}

.afisha-b {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

/* afisha */

/* subscribe */
.subscribe--inner {
  padding: 50px;
  display: flex;
  align-items: center;
  min-height: 325px;
  gap: 50px;
  justify-content: space-between;
}

.subscribe-r .img-wrap {
  display: flex;
  gap: 40px;
  align-items: center;
}

.subscribe-r .img-wrap a {
  display: block;
  width: 32px;
  height: 32px;
  aspect-ratio: 1/1;
}

.subscribe-last,
.subscribe-l {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.subscribe-last .description {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

/* subscribe */

/**************************************************/
/**                description                   **/
/**************************************************/
.description__inner {
  border-radius: 32px;
  background: rgba(3, 18, 33, 0.6);
  padding: 50px;
}

.description__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: scroll;
  max-height: 344px;
  padding-right: 32px;
  font-size: 18px;
}

.description__content::-webkit-scrollbar {
  width: 2px;
}

.description__content::-webkit-scrollbar-track {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.5);
}

.description__content::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background: #11426e;
}

.description--title {
  font-family: Unbounded;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

/* description */

/* project */
.project--inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.project-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  min-height: 800px;

  border-radius: 32px;
  padding: 36px;
  overflow: hidden;
}

.project-item>img {
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: -1;
  object-fit: cover;
  object-position: center;
}

.project-item:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  inset: 0;
  background: rgba(3, 18, 33, 0.6);
}

.project-t-wrap {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.project-year,
.project-title {
  margin-top: 10px;
  font-family: Unbounded;
  font-size: 32px;
  font-weight: 500;
}

.blue-box--wrap {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 0;
}

.project-b .blue {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  justify-content: space-between;
  gap: 10px;
  border-radius: 16px;
  background: rgba(9, 56, 101, 0.6);
  backdrop-filter: blur(17px);
  -webkit-backdrop-filter: blur(17px);
}

.project-b .blue--text {
  font-size: 20px;
  font-weight: 500;
}

.project-b .text {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.project-navigation .navigation-page {
  width: 100%;
  display: flex;
  justify-content: center;
}

.project-navigation .navigation-num {
  display: flex;
  gap: 20px;
  align-items: center;
}

.project-navigation .navigation-num li {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
}

/* project */

/* single__hero */
.project-single-page .single__hero {
  height: auto;
}

.single__hero {
  padding-top: 180px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.single__hero--inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap:30px;
}

.single__hero-text {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.single__hero-top .img img {
  display: block;
  height: 100%;
  align-items: center;
}

.single__hero-top .img {
  margin-bottom: 20px;
}

.single__right {
  position: relative;
  height: 100%;
  display: flex;
  align-items: end;
}

.single--absolute {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  transform: translateY(4px);
}

.single__right img {
  display: block;
  height: 100%;
  align-items: center;
  margin-bottom: -4px;
}

/* single__hero */

/* partner */
.partner-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.partner-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.partner-item .left {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.partner-item .box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 0;
  flex-shrink: 0;
}

.partner-item .r-t__wrap {
  display: flex;
  justify-content: space-between;
}

.partner-title {
  margin-top: 30px;
  font-family: Unbounded;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

.partner-item .r-b {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.partner-item .right {
  max-height: 560px;
  border-radius: 32px;
  overflow: hidden;
}

.partner-item .right img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* partner */

/* media */
.media-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.media-l {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.media-l_bottom {
  margin-top: 30px;
  flex: 1;
  display: flex;
  align-items: end;
}

.media-title {
  margin-top: 30px;
  margin-bottom: 20px;
  font-family: Unbounded;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

.media--wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.media-r {
  position: relative;
  display: flex;
  align-items: center;
  max-height: 560px;

  border-radius: 32px;
  overflow: hidden;
}

.media-r .swiper-slide {
  height: auto;
}

.media-r .navigation {
  position: absolute;
  z-index: 2;
}

.media-r .navigation.prev {
  left: 40px;
}

.media-r .navigation.next {
  right: 40px;
}

.media-page .hero--inner {
  max-width: 907px;
}

.media-page .hero {
  padding-top: 270px;
}

.media-page .hero--inner .hero-text {
  width: 100%;
  max-width: none;
  margin-top: 20px;
}

.media-page .hero--inner .blue-button {
  margin-top: 100px;
}

.mediaSwiper img {
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* media */
.trp-language-item {
  gap: 8px;
  padding: 7px 10px 7px 20px !important;
}

.trp-shortcode-switcher {
  padding: 6px 0 !important;
}

/* contact-page */
.contact-page .contact {
  min-height: 800px;
  display: flex;
  align-items: center;
}

/* MODAL */

#modal {
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 50px 40px;
  border-radius: 32px;
  background: rgba(3, 18, 33, 0.60);
  width: fit-content;
  height: fit-content;
  border: 0;
}

#modalOpen {
  border: 0;
}

.overlay {
  display: none;
}

.overlay.open {
  display: block;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.70);
  backdrop-filter: blur(23.899999618530273px);
  z-index: 5;
}

.modal-top p {
  color: #FFF;
font-family: Unbounded;
font-size: 30px;
font-style: normal;
font-weight: 700;
line-height: normal;
text-transform: uppercase;
}

.modal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#modalClose {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  border-radius: 100px;
background: rgba(0, 84, 162, 0.20);
flex-shrink: 0;
cursor: pointer;
}

.modal-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#modalClose svg {
  width: 24px;
  height: 24px;
}