*::before,
*::after,
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #000100;
}

.content {
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
}

.section1 {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.section1::before,
.section1::after {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  transition: opacity 0.5s ease;
}

.section1::before {
  background-image: url("../assets/bg.png");
  opacity: clamp(0, (100vw - 800px) / 200, 1);
}

.section1::after {
  background-image: url("../assets/bg.png");
  opacity: clamp(0, (1000px - 100vw) / 200, 1);
}

.section1 .content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--nav-height, 90px) clamp(20px, 5vw, 80px) 0;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: clamp(1rem, 2.5vw, 1.6rem) clamp(20px, 5vw, 80px);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
  background-color: #000;
}

.navbar nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.5rem, 3.5vw, 60px);
}

.navbar a {
  text-decoration: none;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.72rem, 1vw, 1rem);
  transition: 0.25s ease;
}

.navbar a:hover {
  color: #ff9a27;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .navbar {
    justify-content: flex-end;
    padding: 15px;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;

    flex-direction: column;
    align-items: flex-start;
    gap: 16px;

    padding: 20px;
    min-width: 220px;

    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
  }

  .navbar nav.active {
    display: flex;
  }

  .navbar a {
    font-size: 16px;
  }
}

.navbar__hamburger {
  display: none;
}

.logo-content {
  position: relative;
  z-index: 1;
  margin-top: clamp(1rem, 3vw, 2rem);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(1rem, 3vw, 60px);
}

.logo-text {
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(1.5rem, 4vw, 66px);
  line-height: 1;
  font-weight: 400;
  color: #ff9a27;
}

.logo1 {
  max-width: clamp(123px, 11vw, 164px);
  width: 100%;
  aspect-ratio: 164 / 76;
}

.logo2 {
  max-width: clamp(123px, 9vw, 140px);
  width: 100%;
  aspect-ratio: 140 / 84;
}

.title-wrap {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  margin-left: clamp(-3rem, -8vw, -12.5rem);
}

.title {
  max-width: clamp(280px, 68vw, 900px);
  width: 100%;
  height: auto;
}

.names-list {
  position: relative;
  z-index: 1;
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 3vw, 50px);
  flex-wrap: wrap;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(0.75rem, 1.5vw, 24px);
  line-height: 1.4;
  font-weight: 400;
  color: #ff9a27;
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.section2 {
  position: relative;
  padding: clamp(3rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.bg-gradient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

.section2 .content {
  position: relative;
  z-index: 1;
}

.section2 .content {
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 80px);
}

.section2 .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(2rem, 6vw, 140px);
}

.left-content {
  max-width: 700px;
  width: 100%;
  aspect-ratio: 700 / 467;
  border-radius: 50px;
  flex-shrink: 0;
}

.left-content .cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50px;
}

.right-content {
  max-width: 540px;
  width: 100%;
  color: #fff;
}

.sub-header {
  font-family: "Kapakana";
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 40px);
  color: #ff9a27;
}

.header {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.5vw, 40px);
  color: #fff;
  text-transform: uppercase;
  margin-bottom: clamp(0.75rem, 2vw, 20px);
}

.right-content .text {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(0.8rem, 1.2vw, 16px);
  line-height: 1.7;
}

.bottom .film-info {
  margin-top: clamp(2.5rem, 7vw, 110px);
  color: #fff;
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(2rem, 8vw, 150px);
  flex-wrap: wrap;
}

.film-info li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 20px);
}

.film-info .film-header {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(0.8rem, 1.4vw, 20px);
  text-transform: uppercase;
}

.film-info .line {
  width: 54px;
  height: 1px;
  background-color: #fff;
}

.film-info .text {
  text-align: center;
  width: clamp(140px, 18vw, 214px);
  color: #ff9a27;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(0.75rem, 1.1vw, 16px);
}

.section3 {
  padding: (3rem, 8vw, 7rem) 0;
}

.gallery-slider,
.opinions-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 20px;
}

.img-slide {
  width: 100%;
  display: block;
}

.gallery-slider .slide {
  flex: 0 0 33.333%;
}

.opinions-slider .slide {
  flex: 0 0 100%;
}

.section3 .slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.slider-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.prev,
.next,
.prev-mobile,
.next-mobile {
  outline: none;
  border: none;
  background: transparent;
  color: white;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
}

.section3 .prev-mobile,
.section3 .next-mobile {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

.section5 .prev-mobile,
.section5 .next-mobile {
  position: absolute;
  display: none;
  bottom: 0;
}

.prev-mobile {
  left: 0;
}

.next-mobile {
  right: 0;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #323232;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #ff9a27;
}

.bg-gradient {
  position: absolute;
  left: 50%;
  top: 150%;
  transform: translate(-50%, -30%);
  z-index: -1;
}

.bg-gradient2 {
  position: absolute;
  left: 50%;
  top: 300%;
  transform: translate(-50%, -30%);
  z-index: -1;
}

.section4 {
  padding: clamp(3rem, 8vw, 160px) 0;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: clamp(0.75rem, 2vw, 25px);
  color: #fff;
}

.item {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}

.actor {
  margin-top: clamp(0.5rem, 2vw, 35px);
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(0.8rem, 1.5vw, 24px);
  line-height: 1.3;
  font-weight: 400;
  color: #ff9a27;
}

.role {
  font-family: "Kapakana";
  font-size: clamp(0.9rem, 2vw, 40px);
  line-height: 1.1;
  font-weight: 400;
  color: #fff;
}

.subheader {
  font-family: "Kapakana";
  font-size: clamp(1.25rem, 2.5vw, 40px);
  line-height: 1.1;
  font-weight: 400;
  color: #fff;
}

.item-1 {
  text-align: left;
  grid-column: 1;
}

.section5 {
  padding: clamp(3rem, 8vw, 7rem) 0;
}

.section5 .stars-ctn .star {
  width: 38px;
  height: 38px;
  aspect-ratio: 1/1;
}

.section5 .text-ctn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 132px;
}

.opinions-slider .slide {
  flex: 0 0 100%;
  color: #fff;
}

.opinions-slider .prev,
.opinions-slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.opinions-slider .prev {
  left: 10px;
}

.opinions-slider .next {
  right: 10px;
}

.opinions-slider .slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.section5 .slider-controls {
  margin-top: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-ctn {
  max-width: 730px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 35px;
}

.stars-ctn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-direction: row;
}

.opinion {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}

.user {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
}

.section6 {
  padding: clamp(2.5rem, 6vw, 80px) 0;
}

.trailer-ctn {
  position: relative;
  width: 100%;
  height: clamp(200px, 40vw, 548px);
  background: url("../assets/trailer-cover.png") center/cover no-repeat;
  border-radius: clamp(16px, 3vw, 50px);
  padding: 40px 30px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  width: clamp(40px, 8vw, 80px);
  height: auto;
}

.trailer-name {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(0.875rem, 2.5vw, 40px);
  position: absolute;
  bottom: clamp(16px, 3vw, 30px);
  left: clamp(16px, 3vw, 30px);
  color: #fff;
  text-transform: uppercase;
}

.section7 {
  padding-bottom: clamp(3rem, 10vw, 178px);
}

.section7 .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 60px);
  /* padding: 0 clamp(1.25rem, 5vw, 80px); */
}

.header-ctn .sub-header {
  font-size: clamp(1.25rem, 2.5vw, 40px);
}

.header-ctn .header {
  font-size: clamp(1.5rem, 3.5vw, 40px);
}

.ranking {
  color: #fff;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.5rem, 1.5vw, 28px);
}

.ranking-header {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.7rem, 1.2vw, 20px);
  text-transform: uppercase;
}

.ranking-rating {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.5rem, 3vw, 40px);
  font-weight: 300;
  text-transform: uppercase;
}

.ranking-rating span {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.7rem, 1.2vw, 20px);
  font-weight: 300;
}

.stars-ctn {
  grid-column: span 2;
  display: flex;
  gap: clamp(6px, 1.5vw, 24px);
}

.section7 .star {
  width: clamp(28px, 5.5vw, 74px);
  height: auto;
  aspect-ratio: 1 / 1;
}

.footer {
  position: relative;
  width: 100%;
  min-height: clamp(400px, 50vw, 548px);
  background: url("../assets/footer-img.png") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 60px);
  padding: clamp(2rem, 5vw, 60px) clamp(20px, 5vw, 80px);
}

.footer .left-ctn {
  width: clamp(160px, 25vw, 380px);
}

.footer .left-ctn .title-footer {
  width: 100%;
  height: auto;
}

.footer .right-ctn {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 35px);
  width: 100%;
  max-width: 600px;
}

.footer .right-ctn .btn-ctn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(10px, 1.5vw, 20px);
  padding: clamp(12px, 1.5vw, 18px) clamp(18px, 2.5vw, 33px);
  border-radius: 29px;
  background-color: #ff9a27;
  border: 1px solid #ff9a27;
  cursor: pointer;
  transition: 0.25s ease;
  white-space: nowrap;
}

.btn:hover {
  background-color: #fff;
}

.btn-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(0.8rem, 1.2vw, 17.23px);
}

.footer-nav {
  width: 100%;
}

.nav-ul {
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.5vw, 19px) clamp(1rem, 4vw, 77px);
}

.nav-li a {
  text-decoration: none;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(0.75rem, 1vw, 16px);
  transition: 0.25s ease;
}

.nav-li:last-child a {
  text-decoration: underline;
}

.nav-li a:hover {
  text-decoration: underline;
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: clamp(10px, 1vw, 12.55px);
  padding: clamp(1rem, 2vw, 1.5rem) 20px;
}

.section2,
.section3,
.section4,
.section5 {
  position: relative;
  background-color: transparent;
}

.section2 .content,
.section3 .content,
.section3 .gallery-slider,
.section4,
.section5 {
  position: relative;
  z-index: 1;
}

.section4 .header-ctn {
  text-align: center;
  padding-bottom: 50px;
}

.gradient-wrapper {
  position: relative;
  background-color: #000;
  overflow: hidden;
}

.gradient-wrapper::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(600px, 120vw, 1400px);
  height: clamp(600px, 120vw, 1400px);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(140, 70, 0, 0.8) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.gradient-wrapper--1::after {
  top: 50%;
}
.gradient-wrapper--2::after {
  top: 50%;
}

@media (max-width: 1024px) {
  .section2 .top {
    flex-direction: column;
    gap: 2rem;
  }

  .left-content {
    max-width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 50px;
  }

  .right-content {
    max-width: 100%;
  }

  .right-content .text {
    font-size: 0.9rem;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .title-wrap {
    margin-left: clamp(-1.5rem, -4vw, -3rem);
  }
}

@media (max-width: 900px) {
  .footer .content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section4 .header-ctn {
    padding-bottom: 0;
  }

  .footer .left-ctn {
    display: flex;
    justify-content: center;
  }

  .footer .right-ctn {
    align-items: center;
    max-width: 100%;
  }

  .footer .right-ctn .btn-ctn {
    justify-content: center;
  }

  .nav-ul {
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
  }

  .section7 .content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 0 clamp(1.25rem, 5vw, 80px);
  }

  .grid-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .item-1 {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: left;
  }

  .item-8 {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: center;
  }

  .item-2 {
    grid-row: 3;
    grid-column: 1;
  }
  .item-3 {
    grid-row: 3;
    grid-column: 2;
  }
  .item-4 {
    grid-row: 3;
    grid-column: 3;
  }
  .item-5 {
    grid-row: 4;
    grid-column: 1;
  }
  .item-6 {
    grid-row: 4;
    grid-column: 2;
  }
  .item-7 {
    grid-row: 4;
    grid-column: 3;
  }
  .section4 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .item-1 {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: center;
    align-items: center;
  }

  .item-8 {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: center;
    align-items: center;
  }

  .item-2 {
    grid-row: 3;
    grid-column: 1;
  }
  .item-3 {
    grid-row: 3;
    grid-column: 2;
  }
  .item-4 {
    grid-row: 3;
    grid-column: 3;
  }
  .item-5 {
    grid-row: 4;
    grid-column: 1;
  }
  .item-6 {
    grid-row: 4;
    grid-column: 2;
  }
  .item-7 {
    grid-row: 4;
    grid-column: 3;
  }
  .section4 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .item-1 {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: center;
    align-items: center;
  }

  .item-8 {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: center;
    align-items: center;
  }

  .item-2 {
    grid-row: 3;
    grid-column: 1;
  }
  .item-3 {
    grid-row: 3;
    grid-column: 2;
  }
  .item-4 {
    grid-row: 3;
    grid-column: 3;
  }
  .item-5 {
    grid-row: 4;
    grid-column: 1;
  }
  .item-6 {
    grid-row: 4;
    grid-column: 2;
  }
  .item-7 {
    grid-row: 4;
    grid-column: 3;
  }
}

@media (max-width: 768px) {
  .navbar {
    display: flex;
    justify-content: flex-end;
    padding: 15px;
  }

  .gallery-slider .slide {
    flex: 0 0 50%;
  }

  .navbar__hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1002;
  }

  .navbar__hamburger span {
    width: 28px;
    height: 2px;
    background: white;
    transition: 0.3s;
  }

  .navbar nav {
    position: fixed;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;

    background: #000;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: 0.3s ease;
    z-index: 1001;
  }

  .navbar nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    gap: 0;
    padding: 0;
  }

  .navbar nav a {
    color: #fff;
    text-decoration: none;
    font-size: clamp(0.75rem, 1vw, 16px);
    font-weight: 300;
    border-top: 1px solid #fff;
    padding: 25px;
    width: 100%;
  }

  .navbar nav a:last-child {
    border-bottom: 1px solid #fff;
  }

  .navbar__hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .navbar__hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 600px) {
  .section6 {
    padding: 2rem 0;
  }

  .section4 .header-ctn {
    padding-bottom: 0;
  }

  .trailer-ctn {
    border-radius: 16px;
    height: 220px;
  }

  .section7 .content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 0 20px;
  }

  .ranking {
    width: 100%;
  }

  .section7 .star {
    width: clamp(24px, 10vw, 44px);
  }

  .section5 .slider-controls {
    margin-top: 0;
  }

  .section5 .text-ctn {
    margin-bottom: 0px;
  }

  .grid-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .item-1 {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .item-8 {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: center;
  }

  .item-2 {
    grid-row: 3;
    grid-column: 1;
  }
  .item-3 {
    grid-row: 3;
    grid-column: 2;
  }
  .item-4 {
    grid-row: 3;
    grid-column: 3;
  }
  .item-5 {
    grid-row: 4;
    grid-column: 1;
  }
  .item-6 {
    grid-row: 4;
    grid-column: 2;
  }
  .item-7 {
    grid-row: 4;
    grid-column: 3;
  }

  .section4 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .item-1 {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: center;
    align-items: center;
  }

  .item-8 {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: center;
    align-items: center;
  }

  .item-2 {
    grid-row: 3;
    grid-column: 1;
  }
  .item-3 {
    grid-row: 3;
    grid-column: 2;
  }
  .item-4 {
    grid-row: 3;
    grid-column: 3;
  }
  .item-5 {
    grid-row: 4;
    grid-column: 1;
  }
  .item-6 {
    grid-row: 4;
    grid-column: 2;
  }
  .item-7 {
    grid-row: 4;
    grid-column: 3;
  }

  .left-content {
    aspect-ratio: 4 / 3;
  }

  .bottom .film-info {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .film-info .text {
    width: auto;
  }

  .section2 .content {
    padding: 0 20px;
  }

  .gradient-wrapper--1::after {
    top: 80%;
  }

  .logo-text {
    text-transform: uppercase;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar {
    justify-content: flex-end;
  }

  .logo-content {
    margin-top: 1.25rem;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .title-wrap {
    margin-left: 0;
    flex: 0;
    margin-top: 1.5rem;
  }

  .title {
    max-width: 92vw;
  }

  .names-list {
    flex: 0;
    align-items: flex-end;
    gap: 0.75rem;
  }

  .footer {
    min-height: auto;
  }

  .slide {
    padding: 10px;
  }

  .footer .content {
    padding: 20px 0;
    gap: 1.5rem;
  }

  .footer .left-ctn .title {
    width: clamp(140px, 55vw, 220px);
  }

  .footer .right-ctn {
    flex-direction: column-reverse;
  }

  .nav-ul {
    text-align: left;
  }

  .footer .right-ctn .nav-ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }

  .footer .right-ctn .nav-ul li {
    border-top: 1px solid #fff;
    padding: 23px;
    align-items: flex-start;
  }

  .footer .right-ctn .nav-ul li:last-child {
    border-bottom: 1px solid #fff;
  }

  .nav-ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 1.5rem;
  }
}

@media (max-width: 480px) {
  .section5 .prev-mobile,
  .section5 .next-mobile,
  .section3 .prev-mobile,
  .section3 .next-mobile {
    display: block;
  }

  .prev,
  .next,
  .dots {
    display: none;
  }

  .gallery-slider .slide {
    flex: 0 0 100%;
  }
}
