/* Common */
.black-banner,
.cta-section {
  background: #000;
  border-bottom: 4px solid #fff;
  height: 153px;
}

.hero-section {
  background: #000;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 4px;
  background: #000;
}

.video-item {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #1a1a1a;
  cursor: pointer;
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 4px solid #fff;
}

.cta-title {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
}

.cta-button {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 30px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 3px;
}

.cta-button:hover {
  background: #fff;
  color: #000;
}

.single-image-container {
  position: relative;
  width: 100%;
  height: 1260px;
  text-align: center;
  overflow: hidden;
}

.image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.image-1 {
  transform: scale(1.15);
  object-position: 6px -20px;
}

.image-4 {
  transform: scale(1.05);
  object-position: 0px 0px;
}


.image-mobile-2,
.image-mobile-4 {
  display: none;
}

.image-title {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  bottom: 6%;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 10;
}


.image-title-4 {
  color: #fff;
}

.image-buttons {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.image-buttons{
  bottom: 15px;
}


.image-button {
  background: #fff;
  color: #000;
  border: 1px solid #000;
  padding: 12px 30px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 3px;
}

.image-button:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 1280px) {
  .black-banner,
  .cta-section {
    height: 105px;
  }

  .single-image-container {
    height: 700px;
  }

  .image-title-2 {
    bottom: 22%;
  }
  .image-title-3 {
    bottom: 8%;
  }
  .image-title-4 {
    bottom: 18%;
  }

  .image-buttons-1 {
    bottom: 15px;
  }
  .image-buttons-2 {
    bottom: 22%;
  }
  .image-buttons-3 {
    bottom: 8%;
  }
  .image-buttons-4 {
    bottom: 18%;
  }
}

@media (max-width: 900px) {
  .cta-section {
    height: 120px;
  }
  .black-banner {
    height: 30px;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    padding: 2px;
  }

  .single-image-container {
    height: 100vh;
    position: relative;
  }
  .image-title {
    bottom: 10%;
  }

  .image-2,
  .image-4 {
    display: none;
  }
  .image-1 {
    transform: scale(1.4);
    object-position: 6px 30px;
  }
  .image-3 {
    transform: scale(1);
  }

  .image-mobile-2,
  .image-mobile-4 {
    display: block;
    width: 100%;
    object-fit: cover;
  }

  .image-mobile-2 {
    height: 730px;
    object-position: 40% 50%;
  }
  .image-mobile-4 {
    height: 730px;
    object-position: 62% 50%;
  }

  .image-buttons {
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    white-space: nowrap;
  }
  .image-buttons {
    bottom: 4%;
  }

  .discover-button,
  .cta-button-2 {
    display: none;
  }
}
