@charset "UTF-8";
/* @import 'fonts'; */
.container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0px;
}
@media screen and (max-width: 1300px) {
  .container {
    padding: 0 15px;
  }
}

/* Указываем box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 130%;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  background: #000;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

.section1 {
  background: linear-gradient(119.82deg, #2E4024 31.78%, #050B01 97.55%);
  height: 100vh;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .section1 {
    height: auto;
    overflow: clip;
  }
}

.section1__back {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(18, 18, 18, 0.44)), color-stop(49.52%, rgba(18, 18, 18, 0.0704)), color-stop(66.95%, rgba(18, 18, 18, 0.44)));
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.44) 0%, rgba(18, 18, 18, 0.0704) 49.52%, rgba(18, 18, 18, 0.44) 66.95%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.section1__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100vh;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .section1__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
}

.section1__left {
  width: 50%;
  position: relative;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
@media screen and (max-width: 1024px) {
  .section1__left {
    position: sticky !important;
    top: 0;
  }
}
.section1__left .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section1__left:hover {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.section1__left:hover .hidden {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  height: auto;
}
.section1__left video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .section1__left video {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .section1__left {
    width: 100%;
    height: 100vh;
  }
}

.hidden {
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
  height: 0;
}
@media screen and (max-width: 1024px) {
  .hidden {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    height: auto;
  }
}

.section1__right {
  width: 50%;
  position: relative;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .section1__right {
    height: 100vh;
  }
}
.section1__right:hover {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
@media screen and (max-width: 1024px) {
  .section1__right:hover {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.section1__right:hover .hidden {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  height: auto;
}
.section1__right video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .section1__right video {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .section1__right {
    width: 100%;
    height: 100vh;
  }
}

.content {
  padding: 56px;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .content {
    height: 100vh;
    padding: 15px;
  }
}

@media screen and (max-width: 1024px) {
  .bottom {
    margin-bottom: 50px;
  }
}

.section1__title {
  font-size: 42px;
  line-height: 48px;
  margin-bottom: 30px;
  color: #fff;
  font-weight: 600;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
@media screen and (max-width: 1024px) {
  .section1__title {
    font-size: 32px;
    line-height: 120%;
    margin-bottom: 20px;
  }
}

.text1 {
  font-size: 24px;
  font-style: italic;
  margin-bottom: 20px;
  display: none;
}

.button1 {
  background: #FFFFFF;
  border-radius: 111px;
  padding: 15px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0C1109;
  font-weight: 600;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-decoration: none;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.button1:hover {
  opacity: 0.7;
}

/* зовнішній блок: відповідає тільки за translateY (анімація) */
.section1__left,
.section1__right {
  opacity: 0;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  will-change: transform, opacity;
  position: relative; /* щоб абсолютні діти (back, video) були відносні до контейнера */
}

.section1__left {
  -webkit-animation-name: slideDown;
          animation-name: slideDown;
}

.section1__right {
  -webkit-animation-name: slideUp;
          animation-name: slideUp;
}

@-webkit-keyframes slideDown {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes slideUp {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
/* внутрішній блок: тільки для scale на hover */
.section1__inner {
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s ease 0s;
  transition: -webkit-transform 0.6s ease 0s;
  transition: transform 0.6s ease 0s;
  transition: transform 0.6s ease 0s, -webkit-transform 0.6s ease 0s; /* <- тут потрібні параметри */
  -webkit-transform-origin: center center;
          transform-origin: center center;
  display: block;
}

/* при наведені масштабуємо внутрішній блок (translateY не торкаємось) */
.section1__left:hover .section1__inner,
.section1__right:hover .section1__inner {
  -webkit-transform: scale(0.9);
          transform: scale(0.9); /* або scale(0.9) / будь-яке інше значення */
}
@media screen and (max-width: 1024px) {
  .section1__left:hover .section1__inner,
  .section1__right:hover .section1__inner {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* доп. для відео/фонів, щоб усе красиво вкривало блок */
.section1__inner video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section1__back {
  position: absolute;
  inset: 0;
}

.section1__title {
  display: inline-block;
  overflow: hidden;
}

.section1__title span {
  display: inline-block;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  -webkit-animation: letterUp 0.6s ease forwards;
          animation: letterUp 0.6s ease forwards;
}

@-webkit-keyframes letterUp {
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes letterUp {
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (max-width: 1024px) {
  .desc {
    display: none;
  }
}

.mob {
  display: none;
}
@media screen and (max-width: 1024px) {
  .mob {
    display: block;
  }
}