.carousel__wrapper {
  width: 1290px;
  margin: auto;

  @media (max-width: 1152px) {
    width: 620px;
  }

  @media (max-width: 767px) {
    width: 100%;
  }
}

.carousel__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 30px;

  @media (max-width: 1152px) {
    margin-bottom: 20px;
  }

  @media (max-width: 767px) {
    margin-bottom: 20px;
    flex-flow: column;
    align-items: center;
  }
}

.carousel__header__title {
  font-weight: 600;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: -0.01em;
  text-transform: uppercase;

  @media (max-width: 1152px) {
    font-size: 52px;
    line-height: 103%;
  }

  @media (max-width: 767px) {
    margin-bottom: 12px;
    font-size: 36px;
  }
}

.carousel__header__links {
  display: flex;
  align-items: center;
  gap: 20px;

  @media (max-width: 1152px) {
    gap: 12px;
  }
}

.carousel__header__text {
  font-weight: 300;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0.03em;
  color: #fff;
  margin-left: auto;

  @media (max-width: 1152px) {
    font-size: 26px;
  }

  @media (max-width: 767px) {
    font-size: 20px;
  }
}

@media (hover: hover) {
  .carousel__header__text:hover {
    color: #ccc;
  }
}

.carousel__header__icon {
  padding: 5px;
  background: #363539;
  border-radius: 8px;

  @media (max-width: 1152px) {
    padding: 4px;
  }

  @media (max-width: 1152px) {
    border-radius: 6px;
    padding: 4px;
  }
}

.carousel_icon {
  width: 32px;
  aspect-ratio: 1;
  transition: all 0.3s;

  @media (max-width: 1152px) {
    width: 28px;
  }

  @media (max-width: 767px) {
    width: 26px;
  }
}

.insta_icon {
  background: url("../img/insta-icon.svg") center / cover;
}

@media (hover: hover) {
  .insta_icon:hover {
    background: url("../img/insta-icon-hover.svg") center / cover;
  }
}

.phone_icon {
  background: url("../img/phone.svg") center / cover;

  /* @media (hover: hover) {
	.insta_icon {
	background: url("../img/insta-icon-hover.svg") center / cover;
	}
	} */
}

.splide > ul {
  bottom: -30px;
}

.slide {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 30px;

  & > * {
    flex-grow: 1;
    max-width: calc(100% / 3 - 30px / 3 * 2);
    width: calc(100% / 3 - 30px / 3 * 2);
  }

  @media (max-width: 1152px) {
    gap: 20px;

    & > * {
      max-width: calc(50% - 20px / 2);
      width: calc(50% - 20px / 2);
    }
  }

  @media (max-width: 767px) {
    padding: 16px;

    & > * {
      max-width: 100%;
      width: 100%;
    }
  }
}

.gallery__item {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: end;
  background: 100% / cover;
  height: fit-content;
}

@media (hover: hover) {
  .gallery__item:hover .gallery__item__footer__title {
    color: #cc984a;
  }

  .gallery__item:hover .gallery__item__footer::after {
    background-image: url("../img/arrow-gold.svg");
  }
}

.gallery__item__footer {
  background: #040207b2;
  width: 100%;
  padding: 5px 15px;
  position: relative;

  @media (max-width: 767px) {
    padding: 5px 12px;
  }
}

.gallery__item__footer::after {
  content: "";
  display: block;
  background-image: url("../img/arrow.svg");
  width: 36px;
  aspect-ratio: 1 / 1;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%);

  @media (max-width: 767px) {
    width: 32px;
  }
}

.gallery__item__footer__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #fff;

  @media (max-width: 767px) {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
  }
}

.gallery__item__footer__date {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #89898a;

  @media (max-width: 767px) {
    font-size: 14px;
    line-height: 150%;
  }
}

.pre_party_gallery {
  background-image: url("../img/gallery/pre_party.png");
}

.amir_gallery {
  background-image: url("../img/gallery/amir.png");
}

.mark_gallery {
  background-image: url("../img/gallery/mark.png");
}

.affiche__item {
  display: flex;
  align-items: normal;
  flex-flow: column;
  gap: 20px;
  cursor: pointer;
  background: #040207;
  color: #fff;
}

@media (hover: hover) {
  .affiche__item:hover .affiche__item__date {
    color: #cc984a;
  }

  .affiche__item:hover .affiche__item__title {
    color: #cc984a;
  }
}

.affiche__item__image {
  width: 100%;
  aspect-ratio: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.affiche__item__footer {
  display: flex;
  gap: 16px;
  align-items: center;
  text-align: left;
}

.affiche__item__date {
  font-weight: 600;
  font-size: 60px;
  line-height: 103%;
  letter-spacing: -0.01em;
  text-transform: uppercase;

  @media (max-width: 1152px) {
    font-size: 42px;
  }

  @media (max-width: 767px) {
    font-size: 36px;
    line-height: 100%;
  }
}

.affiche__item__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  text-wrap: nowrap;

  @media (max-width: 1152px), (max-width: 767px) {
    font-size: 16px;
  }
}

.affiche__item__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #89898a;
  text-wrap: nowrap;
  text-transform: capitalize;

  @media (max-width: 1152px), (max-width: 767px) {
    font-size: 12px;
  }
}

.every_thursday {
  background-image: url("../img/affiche/every_thursday.jpg");
}

.every_saturday {
  background-image: url("../img/affiche/every_saturday.jpg");
}

.sergienko {
  background-image: url("../img/affiche/sergienko.jpg");
}

.quiz_43 {
  background-image: url("../img/affiche/quiz_43.jpg");
}

.movie_night_monkeys {
  background-image: url("../img/affiche/movie_night_monkeys.jpg");
}

.skull_2 {
  background-image: url("../img/affiche/skull_2.jpg");
}

.kids_party_native_america {
  background-image: url("../img/affiche/kids_party_native_america.jpg");
}

.live_music_12 {
  background-image: url("../img/affiche/live_music_12.jpg");
}

.travel_family {
  background-image: url("../img/affiche/travel_family.jpg");
}

.quiz_44 {
  background-image: url("../img/affiche/quiz_44.jpg");
}

.skull_3 {
  background-image: url("../img/affiche/skull_3.jpg");
}

.live_music_13 {
  background-image: url("../img/affiche/live_music_13.jpg");
}

.movie_night_prometheus {
  background-image: url("../img/affiche/movie_night_prometheus.jpg");
}

.kids_party_pirates {
  background-image: url("../img/affiche/kids_party_pirates.jpg");
}

.white_party {
  background-image: url("../img/affiche/white_party.jpg");
}

.amir {
  background-image: url("../img/affiche/amir.jpg");
}

.pre_party {
  background-image: url("../img/affiche/pre_party.jpg");
}

.live_music_14 {
  background-image: url("../img/affiche/live_music_14.jpg");
}

.quiz_45 {
  background-image: url("../img/affiche/quiz_45.jpg");
}

.kids_party_art {
  background-image: url("../img/affiche/kids_party_art.jpg");
}

.skull_4 {
  background-image: url("../img/affiche/skull_4.jpg");
}

.provinces_77 {
  background-image: url("../img/affiche/provinces_77.jpg");
}

.quiz_46 {
  background-image: url("../img/affiche/quiz_46.jpg");
}

.movie_night_mitty {
  background-image: url("../img/affiche/movie_night_mitty.jpg");
}

.divo {
  background-image: url("../img/affiche/divo.jpg");
}

.theatre {
  background-image: url("../img/affiche/theatre.jpg");
}

.quiz_47 {
  background-image: url("../img/affiche/quiz_47.jpg");
}

.pre_new_year {
  background-image: url("../img/affiche/pre_new_year.jpg");
}

.stand_up {
  background-image: url("../img/affiche/stand_up.jpg");
}

.movie_night_hollywood {
  background-image: url("../img/affiche/movie_night_hollywood.jpg");
}

.stand_up_2 {
  background-image: url("../img/affiche/stand_up_2.jpg");
}

.quiz_48 {
  background-image: url("../img/affiche/quiz_48.jpg");
}

.quiz_49 {
  background-image: url("../img/affiche/quiz_49.jpg");
}

.movie_night_alone {
  background-image: url("../img/affiche/movie_night_alone.jpg");
}

.kids_party_christmas {
  background-image: url("../img/affiche/kids_party_christmas.jpg");
}

.quiz_50 {
  background-image: url("../img/affiche/quiz_50.jpg");
}

.tusa {
  background-image: url("../img/affiche/tusa.jpg");
}

.quiz_51 {
  background-image: url("../img/affiche/quiz_51.jpg");
}

.movie_night_alone_2 {
  background-image: url("../img/affiche/movie_night_alone_2.jpg");
}

.kids_party_snowmaiden {
  background-image: url("../img/affiche/kids_party_snowmaiden.jpg");
}

.quiz_52 {
  background-image: url("../img/affiche/quiz_52.jpg");
}

.kids_party_olivier {
  background-image: url("../img/affiche/kids_party_olivier.jpg");
}

.theatre_2 {
  background-image: url("../img/affiche/theatre_2.jpg");
}

.titomir {
  background-image: url("../img/affiche/titomir.jpg");
}

.semenovich {
  background-image: url("../img/affiche/semenovich.jpg");
}

.live_music_15 {
  background-image: url("../img/affiche/live_music_15.jpg");
}
