/* ===== HOME PAGE ===== */
.home {
  width: 100%;
  background-color: #fff;
}

.home__sections {
  background-color: #fff;
}

.home__sections > *:nth-of-type(odd) {
  background: #fff;
}

.home__sections > *:nth-of-type(even) {
  background: #e6e6e6;
}

@media (min-width: 768px) {
  .home__sections > * {
    background-color: #fff;
  }
  .home__sections > *:nth-of-type(odd),
  .home__sections > *:nth-of-type(even) {
    background-color: #fff;
  }
}

/* ===== TOP / HERO VIDEO ===== */
.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
}

.hero-video__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video__poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: auto;
}

.hero-video__mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.3) 100%);
  z-index: 2;
}

.hero-video__content {
  position: relative;
  z-index: 4;
  height: 100%;
  width: 100%;
  padding: 0 24px;
}

.scroll-content {
  height: 100%;
  opacity: 1;
  position: relative;
  z-index: 4;
  background-color: transparent;
  color: #fff;
  display: flex;
  align-items: center;
}

.scroll-content h1 {
  display: block;
  margin: 0;
  font-weight: 100;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .hero-video__content {
    padding: 0 38px;
  }
  .scroll-content h1 {
    width: 642px;
  }
}

@media (min-width: 1200px) {
  .hero-video__content {
    padding: 0;
    padding-left: 128px;
  }
}

@media (min-width: 1350px) {
  .hero-video__content {
    padding-left: 158px;
  }
}

@media (min-width: 1600px) {
  .scroll-content h1 {
    width: 792px;
  }
  .hero-video__content {
    padding-left: 208px;
  }
}

@media (min-width: 1900px) {
  .hero-video__content {
    padding-left: 258px;
  }
}

/* ===== SCROLL ARROW ===== */
.scroll-arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
}

.scroll-arrow span {
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  animation: scrollArrow 2s infinite;
}

.scroll-arrow span:nth-child(2) {
  animation-delay: -0.2s;
}

.scroll-arrow span:nth-child(3) {
  animation-delay: -0.4s;
}

@keyframes scrollArrow {
  0%   { opacity: 0; transform: rotate(45deg) translate(-15px, -15px); }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: rotate(45deg) translate(10px, 10px); }
}

/* ===== SECTIONS ===== */
.section {
  color: #000;
  position: relative;
  overflow: hidden;
}

.section__background {
  display: none;
  background-color: rgba(230, 230, 230, .9);
  background-image: linear-gradient(to bottom right, rgba(230, 230, 230, 0.8), rgba(179, 179, 179, 1));
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
  z-index: 2;
  overflow: hidden;
  border-radius: 6px;
  position: absolute;
}

.section__content {
  z-index: 3;
}

.section__content h2 {
  font-size: 10.766vw;
  font-weight: 800;
  margin-bottom: .6em;
}

.section__details {
  max-width: none;
  z-index: 2;
}

.section__details h3 {
  line-height: 1.2;
  font-weight: 300;
  margin-bottom: 23px;
}

.section__description {
  max-width: none;
}

.section__description p {
  margin-bottom: 23px;
  line-height: 1.4;
}

.section__description p:last-of-type {
  margin-bottom: 0;
}

.section__end {
  text-align: center;
}

.section__more {
  border-radius: 32px;
  margin-top: 30px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
}

.section__more .btn-primary {
  min-width: unset;
  white-space: nowrap;
  padding: 11px 17px;
  width: 152px;
  background-color: #ca0091;
  color: #fff;
  border: none;
  border-radius: 32px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: inline-block;
}

.section__more .btn-primary:hover {
  background-color: #a80079;
}

.section__image {
  width: 100%;
  height: 75vh;
  position: absolute;
  bottom: 0;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
}

.section__image img {
  height: 100%;
  width: auto;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  pointer-events: auto;
}

.section__logos {
  margin-top: 27px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section__logos > *:not(:last-child) {
  margin-right: 30px;
}

.section__logo {
  opacity: 1;
  width: auto;
  height: 100%;
}

.section__logo img {
  height: 100%;
  width: auto;
  pointer-events: auto;
}

/* ===== SECTION RESPONSIVE ===== */
@media (min-width: 360px) {
  .section__details h3 {
    margin-bottom: 22px;
  }
  .section__more .btn-primary {
    padding: 12px 18px;
    width: 163px;
  }
  .section__logos {
    height: 32px;
    margin-top: 28px;
  }
}

@media (min-width: 768px) {
  .section {
    color: #fff;
    min-height: 100vh;
    max-height: 100vh;
  }

  .section__content {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    position: absolute;
  }

  .section__content h2 {
    position: absolute;
    top: calc(50% + 27.5px);
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    margin-bottom: 0;
  }

  .section__background {
    display: block;
  }

  .section__details {
    max-width: 40%;
  }

  .section__details h3 {
    margin-bottom: 30px;
  }

  .section__description {
    max-width: 36vw;
  }

  .section__description p {
    margin-bottom: 25px;
  }

  .section__more {
    margin-top: 39px;
    text-align: left;
  }

  .section__more .btn-primary {
    padding: 11px 16px;
    width: 143px;
  }

  .section__logos {
    margin-top: 39px;
    height: 38px;
    justify-content: flex-start;
  }

  .section__more,
  .section__logos {
    opacity: 0;
    visibility: hidden;
  }

  .section__end {
    text-align: left;
  }
}

@media (min-width: 1600px) {
  .section__more {
    margin-top: 39px;
  }
  .section__more .btn-primary {
    font-size: 18px;
    padding: 15px 20px;
    width: 180px;
  }
  .section__logos {
    margin-top: 39px;
    height: 45px;
  }
}

@media (max-width: 767px) {
  .section__image {
    display: none;
  }
}

/* ===== PAGINATOR (LINES - DESKTOP) ===== */
.paginator-lines {
  position: fixed;
  left: 38px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.paginator-lines.hidden {
  opacity: 0;
  visibility: hidden;
}

.paginator-lines__page {
  padding: 5px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.paginator-lines__line {
  width: 2px;
  height: 20px;
  background-color: rgba(128, 128, 128, 0.5);
  transition: all 0.3s ease;
}

.paginator-lines__page.active .paginator-lines__line {
  background-color: #000;
  height: 30px;
}

.paginator-lines__name {
  font-size: 11px;
  color: rgba(128, 128, 128, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.paginator-lines__page:hover .paginator-lines__name {
  opacity: 1;
}

.paginator-lines__page.active .paginator-lines__name {
  color: #000;
  opacity: 1;
}

/* ===== PAGINATOR (BAR - MOBILE) ===== */
.paginator-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  display: flex;
  background-color: #fff;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  transform-origin: top;
  transform: scaleY(0);
}

.paginator-bar.visible {
  transform: scaleY(1);
}

.paginator-bar__page {
  flex: 1;
  text-align: center;
  padding: 12px 5px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 400;
  color: #999;
  border: none;
  background: none;
  font-family: inherit;
  transition: all 0.3s ease;
}

.paginator-bar__page.active {
  color: #000;
  font-weight: 700;
  border-bottom: 2px solid #ca0091;
}

@media (min-width: 768px) {
  .paginator-bar {
    display: none;
  }
}

@media (max-width: 767px) {
  .paginator-lines {
    display: none;
  }
}
