@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap');
:root {
  --primary-color: #e7dfc7;
  --secondary-color: #32c4fb;
  --third-color: #ff87dc;
  --cone1-color: #c58c54;
  --cone2-color: #3b2208;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Poppins', sans-serif;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow-x: hidden;
  background-color: #c58c54;
  background: linear-gradient(black 60%, #3b2208);
  width: 100vw;
  height: fit-content;
}
header {
  position: fixed;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  top: 0;
  left: 0;
  height: 3.5rem;
  width: 100vw;
  padding: 0.2rem 0.6rem 0.2rem;
  background: rgb(231, 223, 199);
  background: linear-gradient(
    120deg,
    rgba(231, 223, 199, 1) 0%,
    rgba(211, 220, 205, 1) 20%,
    rgba(50, 196, 251, 1) 35%,
    rgba(50, 196, 251, 1) 65%,
    rgba(255, 135, 220, 1) 80%,
    rgba(255, 135, 220, 1) 100%
  );
  border-bottom: 0.2rem solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 1rem 2rem 0 rgba(0, 0, 0, 0.7);
  z-index: 10;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0.9;
  transition: opacity 0.4s ease-in, display 1s ease;
}
header::after {
  content: '';
  position: absolute;
  background: linear-gradient(
    -90deg,
    rgba(255, 255, 255, 0.69) 5%,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0) 24%,
    rgba(255, 255, 255, 0.69) 25%,
    rgba(255, 255, 255, 0) 65%,
    rgba(255, 255, 255, 0.69) 66%
  );
  opacity: 0.2;
  height: 100%;
  width: 20%;
  top: 0;
  left: -30%;
  z-index: 1;
  pointer-events: none;
  transform: skewX(-30deg);
  animation: scroll 0.8s ease-in-out forwards;
  animation-delay: 0.4s;
}
@keyframes scroll {
  0% {
    left: -100%;
    opacity: 0.5;
  }
  20% {
    left: 110%;
    opacity: 1;
  }
  100% {
    left: 20%;
    opacity: 0.5;
  }
}
header:hover {
  opacity: 1;
}
.start {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  margin: 0 0.2rem 0;
  height: 100%;
  min-width: 30vw;
}
.middle {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 0.2rem 0;
  height: 100%;
  max-width: 50vw;
}
.end {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 0.2rem 0;
  height: 100%;
  min-width: 20vw;
}
i {
  font-size: 2rem;
  color: white;
  cursor: pointer;
}
i:active {
  transform: scale(90%);
}
.logo {
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 0.4rem 0;
}
.browse {
  text-transform: capitalize;
  color: white;
  font-size: 0.8rem;
  margin-right: 0.2rem;
  cursor: pointer;
}
.browse:active {
  transform: scale(96%);
}
.fa-caret-down {
  font-size: 1rem;
}
.dropdown-menu.show {
  transform: translateX(0%);
  transition: transform 0.6s ease;
}
.dropdown-menu {
  position: absolute;
  top: 5vh;
  left: 15vw;
  transform: translateX(-500%);
  transform-origin: top;
  cursor: pointer;
  border-radius: 0.2rem;
  background: rgb(231, 223, 199);
  background: linear-gradient(
    120deg,
    rgba(231, 223, 199, 1) 0%,
    rgba(50, 196, 251, 1) 35%,
    rgba(50, 196, 251, 1) 65%
  );
  border-bottom: 0.2rem solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 2rem 0 rgba(0, 0, 0, 0.7);
  overflow: hidden;
  z-index: 10;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 1;
}
.dropdown-menu::after {
  content: '';
  position: fixed;
  background: linear-gradient(
    -90deg,
    rgba(255, 255, 255, 0.69) 5%,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0) 24%,
    rgba(255, 255, 255, 0.69) 25%,
    rgba(255, 255, 255, 0) 65%,
    rgba(255, 255, 255, 0.69) 66%
  );
  height: 100%;
  width: 100%;
  opacity: 0.2;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  transform: skewX(-30deg);
  animation: scroll 0.8s ease-in-out forwards;
  animation-delay: 0.4s;
}
.dropdown-menu ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  width: 10rem;
}
.dropdown-menu ul li {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  text-align: center;
}
.dropdown-menu ul li:active {
  transform: scale(96%);
}
.dropdown-menu ul li:hover {
  color: var(--cone2-color);
  border-radius: 0.2rem;
  background-color: white;
  width: 100%;
}
form {
  display: flex;
  position: relative;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  width: 100%;
}
#search {
  opacity: 0;
  width: 0;
  position: relative;
  border-style: none;
  border-radius: 0.2rem;
  color: white;
  height: 2rem;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  transform-origin: right;
  transition: all.6s ease-in-out;
}
#search.show {
  opacity: 1;
  width: 80%;
  padding-left: 1.6rem;
}
#search-btn.show {
  right: 79%;
}
#search:focus {
  outline-style: none;
}
input::placeholder {
  text-align: left;
  color: white;
}
#search-btn {
  position: relative;
  justify-content: center;
  align-items: center;
  right: 1rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all.6s ease-in-out;
  z-index: 10;
}
#search-btn:active {
  transform: translateX(15%);
}
.fa-bell {
  text-align: center;
  margin: 0 0.4rem 0;
}
.notify:hover ~ .notification {
  display: flex;
  opacity: 1;
}
.fa-bell.ring {
  animation: clicked 0.6s ease forwards;
}
.notify {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  top: 25%;
  left: -2.4rem;
  height: 1.4rem;
  width: 1.4rem;
  border-radius: 50%;
  background-color: var(--secondary-color);
  cursor: pointer;
  z-index: 40;
}
.notification {
  position: absolute;
  display: none;
  opacity: 0;
  flex-direction: row;
  justify-content: space-between;
  background: linear-gradient(rgba(0, 0, 0, 0), #c58c54);
  border-top: white 0.2rem solid;
  top: 8vh;
  padding: 0.2rem 1rem 0.2rem;
  right: 6vw;
  width: fit-content;
  transition: all 0.2s ease-in;
}
.notification img {
  height: 6rem;
  width: 6rem;
  margin-right: 0.4rem;
  border-radius: 10%;
  background-position: center;
  background-repeat: no-repeat;
}
.note-info {
  display: flex;
  flex-direction: column;
}
.note-info p {
  font-size: 1rem;
  margin: 0.6rem 0.6rem 0;
  color: white;
}
.note-info small {
  font-size: 0.8rem;
  margin: 0.6rem 0.6rem 0;
  color: white;
}
.profile {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3b2208;
  width: 50%;
  max-width: 4rem;
  height: 90%;
  border-radius: 0.4rem;
}
.fa-user {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.4rem;
  height: 2.4rem;
}

/* Hero Section  */
.hero.slide-in {
  top: 3.5rem;
  opacity: 1;
}
.hero {
  display: flex;
  position: relative;
  /* top: -400vh; */
  opacity: 0;
  height: 80vh;
  width: 100vw;
  background-image: url('https://media.giphy.com/media/Tag9pmnTfYDnEfCpnG/giphy.gif');
  background-position: 50% -5vh;
  background-repeat: no-repeat;
  background-size: 80%;
  z-index: 1;
  transition: height 0.1s linear;
  transition: opacity 1s ease-in;
}
.hero::before {
  content: '';
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  background: linear-gradient(rgba(0, 0, 0, 0), black 75%);
  z-index: 2;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  display: flex;
  bottom: -80vh;
  height: 100%;
  width: 100%;
  background: linear-gradient(black 8%, rgba(0, 0, 0, 0));
  z-index: 2;
  pointer-events: none;
}
/* .hero:hover .hero-info {
  transform: translateX(0);
  opacity: 1;
} */
.hero-info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 60vw;
  min-height: 50vh;
  margin-top: 0;
  left: 5%;
  z-index: 4;
  /* opacity: 0.4; */
  /* transform: translateX(-100vh); */
  border-radius: 2rem;
}
.hero-logo {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  max-height: 15rem;
  margin-bottom: 1rem;
  pointer-events: none;
}
.hero-logo img {
  max-height: 100%;
  max-width: 100%;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.6));
}
.hero-text {
  position: relative;
  text-align: start;
  width: 100%;
  height: fit-content;
  max-height: 4rem;
  font-size: clamp(1.2rem, 2.5vw, 2.2rem);
  font-weight: bold;
  margin-bottom: 1rem;
  pointer-events: none;
}
.hero-sub-text {
  position: relative;
  display: flex;
  text-align: start;
  min-height: 25%;
  width: 100%;
  font-size: 0.8rem;
  font-size: clamp(0.6rem, 2.5vw, 1.2rem);
  letter-spacing: 0.4px;
  line-height: 1rem;
  opacity: 0.6;
  margin-bottom: 1rem;
  pointer-events: none;
}
.hero-btns {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  min-height: 3rem;
  width: 100%;
}
.video-container {
  pointer-events: none;
}
iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  opacity: 1;
  z-index: 1;
  border: none;
  pointer-events: none;
}
.fa-volume-xmark {
  opacity: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  top: 60%;
  right: 16vw;
  height: 2rem;
  width: 2rem;
  color: white;
  z-index: 4;
  transition: opacity 1s ease;
}
.rating {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  top: 60%;
  right: 5vw;
  height: 2rem;
  width: 100%;
  z-index: 4;
}
.btns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-transform: capitalize;
  font-size: 1rem;
  padding: 0.2rem 0.2rem 0;
  margin: 0 0.6rem 0;
  height: 2.4rem;
  min-width: 6rem;
  cursor: pointer;
  border-radius: 0.4rem;
}
.btns:hover {
  opacity: 0.8;
}
.btns:active {
  transform: scale(90%);
}
.play .fa-play {
  color: #32c4fb;
  width: fit-content;
  font-size: 1.3rem;
  margin: 0.5rem 0.4rem 0;
  height: 100%;
}
.play {
  background-color: white;
  color: #32c4fb;
}
.info {
  color: #3b2208;
  background-color: #e7dfc7;
}
/* <!-- Movie-section --> */
.movies-section.slide-in {
  left: 0;
  opacity: 1;
}
.movies-section {
  position: relative;
  display: flex;
  justify-content: flex-start;
  flex-flow: column wrap;
  align-items: center;
  margin-top: 10vh;
  left: -500vw;
  opacity: 0;
  width: 100vw;
  z-index: 4;
  transition: opacity 1s ease, left 1s ease-in;
}
.movie-category {
  height: 100%;
  width: 100%;
}
#popList.hide::after {
  opacity: 0;
  z-index: -20;
  transition: all 1s ease-in-out;
  animation: shrink 1s linear forwards;
}
@keyframes shrink {
  0% {
    height: 100vh;
  }
  90% {
    height: 100vh;
  }
  100% {
    height: 0;
  }
}
#popList::after {
  content: '';
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(64, 64, 64, 0.5);
  backdrop-filter: blur(4px);
  z-index: -1;
  transition: all 1s ease-in-out;
}
#searchList.slide {
  transform: translateY(-90vh);
  transition: transform 1s ease-in-out;
}
.category-title {
  width: fit-content;
  max-height: 4rem;
  font-weight: bold;
  font-size: clamp(1rem, 2.5vw, 2.5rem);
  margin: 1rem;
  letter-spacing: 0.3px;
}
#main {
  transition: all 1s ease;
}
#searched {
  transition: all 1s ease;
}
.movies {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: fit-content;
  width: 100%;
  margin-top: 5vh;
}
.movie {
  position: relative;
  height: 15rem;
  max-height: 20rem;
  width: auto;
  min-width: 10rem;
  max-width: 15rem;
  margin: 1rem 0.8rem 1rem;
  border-radius: 0.8rem;
  filter: brightness(0.7);
  transition: all 0.4s ease;
}
.movie:hover {
  transform: scale(105%);
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.6);
  z-index: 2;
}
.movie-overview {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0.8rem;
  color: white;
  background: rgb(231, 223, 199);
  background: linear-gradient(
    120deg,
    rgba(231, 223, 199, 1) 0%,
    rgba(211, 220, 205, 1) 20%,
    rgba(50, 196, 251, 1) 35%,
    rgba(50, 196, 251, 1) 65%,
    rgba(255, 135, 220, 1) 80%,
    rgba(255, 135, 220, 1) 100%
  );
  backdrop-filter: blur(10px);
  opacity: 0;
  top: 0;
  left: -5%;
  width: 110%;
  height: 110%;
  z-index: 2;
  overflow: hidden;
  box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.8);
  transition: all 1s ease;
  transform: rotateX(90deg);
  /* transform: rotateY(0deg); */
  transform-origin: bottom;
}
.movie-overview::after {
  content: '';
  position: absolute;
  background: linear-gradient(
    -90deg,
    rgba(255, 255, 255, 0.3) 5%,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0) 24%,
    rgba(255, 255, 255, 0.3) 25%,
    rgba(255, 255, 255, 0) 65%,
    rgba(255, 255, 255, 0.3) 66%
  );
  height: 100%;
  width: 100%;
  opacity: 0;
  top: 47.5%;
  left: 0;
  z-index: 0;
  pointer-events: none;
  transform: skewX(-30deg);
  animation: scroll 0.8s ease-in-out forwards;
  animation-delay: 0.4s;
}
.movie-overview.slide-in {
  transform: rotateY(0deg);
  opacity: 0;
  top: -5vh;
  transition: all 0.4s ease;
}
iframe.overview {
  position: absolute;
  top: 18%;
  left: 50%;
  height: 110px;
  transform: translate(-50%, -50%);
  border: none;
  opacity: 1;
  z-index: 1;
}
.title {
  position: absolute;
  top: 35%;
  margin: 0.8rem 0 0.4rem;
  padding: 0.2rem;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.4px;
  height: auto;
  width: 100%;
  z-index: 1;
}
.vote {
  position: absolute;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  color: white;
  bottom: -5%;
  font-size: 0.8rem;
  padding: 0.4rem;
  height: 30%;
  width: 100%;
  z-index: 4;
}
.vote-btns {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: white;
  left: 0;
  height: 50%;
  width: 100%;
  margin-top: 1rem;
  z-index: 60;
}
.vote-btns i {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  z-index: 10;
  height: 2rem;
  width: 2rem;
  opacity: 0.5;
}
i.fa-thumbs-up {
  color: white;
}
i.fa-thumbs-up.liked {
  opacity: 1;
  animation: clicked 1s ease forwards;
}
i.fa-thumbs-up.liked::after {
  content: '';
  position: absolute;
  top: 0%;
  left: 0%;
  background-image: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 130%;
  width: 130%;
  height: 130%;
  z-index: -1;
  animation: confetti 3.5s linear forwards;
}
@keyframes confetti {
  0% {
    background-image: none;
    opacity: 0;
  }
  10% {
    background-image: url('https://media.giphy.com/media/3ov9k8fmDbIqzzbsLS/giphy.gif');
    opacity: 1;
  }
  100% {
    background-image: none;
    opacity: 0;
  }
}
i.fa-play.played {
  opacity: 1;
  animation: clicked-on 1s ease forwards;
}
i.fa-circle-chevron-up.clicked {
  opacity: 1;
  animation: clicked-toggle 1s ease forwards;
}
@keyframes clicked {
  0% {
    color: #32c4fb;
    transform: scale(100%);
  }
  25% {
    color: #5f5cfa;
    transform: scale(80%) rotate(35deg);
  }
  50% {
    color: #f000a8;
    transform: scale(120%) rotate(-15deg);
  }
  100% {
    color: white;
    transform: scale(100%);
  }
}
@keyframes clicked-on {
  0% {
    color: #32c4fb;
    transform: scale(100%);
  }
  25% {
    color: #5f5cfa;
    transform: scale(80%);
  }
  50% {
    color: #f000a8;
    transform: scale(120%);
  }
  100% {
    color: rgba(255, 255, 255, 0.5);
    transform: scale(100%);
  }
}
@keyframes clicked-toggle {
  0% {
    color: #32c4fb;
    transform: scale(100%);
  }
  25% {
    color: #5f5cfa;
    transform: scale(80%);
  }
  50% {
    color: #f000a8;
    transform: scale(120%);
  }
  100% {
    color: rgba(255, 255, 255);
    transform: scale(100%);
  }
}
.desc-overview {
  position: relative;
  margin: 10px 5px 5px;
  padding: 5px;
  font-size: 0.6rem;
  width: 100%;
  height: 48px;
  overflow: hidden;
  bottom: -16%;
  z-index: 4;
}
.desc-overview.more {
  position: absolute;
  text-align: center;
  background: black;
  backdrop-filter: blur(4px);
  overflow: hidden;
  padding-top: 20%;
  height: 450px;
  width: 100%;
  top: -5%;
  bottom: 0%;
  z-index: 2;
  transition: background 0.4s ease-in-out;
}
.movie-overview.fade {
  background: transparent;
  transition: all 0.6s ease-in-out;
}
.login-container {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.6);
}
#form-login:hover {
  box-shadow: 2px 2px 10px rgba(219, 101, 255, 0.5),
    0 0 60px rgba(249, 134, 255, 0.3);
}
#form-login {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  opacity: 1;
  margin: 0;
  top: 40vh;
  width: 50vw;
  min-width: 300px;
  height: 300px;
  border-radius: 5px;
  background: linear-gradient(
    120deg,
    rgba(231, 223, 199, 1) 0%,
    rgba(50, 196, 251, 1) 25%,
    rgba(50, 196, 251, 1) 75%,
    rgba(255, 135, 220, 1) 100%
  );
  z-index: 12;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: opacity 0.6s ease;
}
#form-login::after {
  content: '';
  position: absolute;
  background: linear-gradient(
    -90deg,
    rgba(255, 255, 255, 0.69) 5%,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0) 24%,
    rgba(255, 255, 255, 0.69) 25%,
    rgba(255, 255, 255, 0) 65%,
    rgba(255, 255, 255, 0.69) 66%
  );
  height: 100%;
  width: 100%;
  opacity: 0;
  top: 0;
  left: -100px;
  z-index: 0;
  transform: skewX(-30deg) translateX(-25%);
  animation: scroll 0.8s ease-in-out forwards;
  animation-delay: 0.8s;
  pointer-events: none;
}
#form-login h1 {
  position: absolute;
  font-size: 2rem;
  top: -20px;
  z-index: 1;
}
#form-login input {
  padding: 10px;
  color: #32c4fb;
  border: none;
  height: 100%;
  width: 100%;
  outline-style: none;
  z-index: 1;
}
#form-login input:valid {
  color: #ff87dc;
}
.input-container {
  color: #ff87dc;
  height: 100%;
  width: 75%;
}
.input-bar {
  position: relative;
  width: 0%;
  height: 5px;
  background: #ff87dc;
  transform-origin: left;
  z-index: 1;
}
#form-login input:focus ~ .input-bar {
  width: 100%;
  outline-style: none;
  background: #ff87dc;
  transition: width 0.6s ease-in-out;
}
#form-login input::placeholder {
  color: #32c4fb;
}
#form-login label {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 5px 5px 5px;
  height: 2rem;
  width: 85%;
}
#submit {
  position: relative;
  border-radius: 5px;
  border: none;
  top: 40px;
  height: 2rem;
  width: 80%;
  font-size: 1rem;
}
button {
  text-transform: uppercase;
  color: #32c4fb;
  background-color: white;
  z-index: 1;
  transition: all 0.6s ease;
}
button:hover {
  background-color: #ff87dc; /* Green */
  color: white;
}
#submit:active {
  transform: scale(98%);
}
footer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  bottom: 0;
  left: 0;
  min-height: 30vh;
  width: 100vw;
  border-top: 0.2rem solid rgb(114, 114, 114);
  background: rgb(231, 223, 199);
  background: linear-gradient(
    120deg,
    rgba(231, 223, 199, 1) 0%,
    rgba(211, 220, 205, 1) 20%,
    rgba(50, 196, 251, 1) 35%,
    rgba(50, 196, 251, 1) 65%,
    rgba(255, 135, 220, 1) 80%,
    rgba(255, 135, 220, 1) 100%
  );
  overflow: hidden;
  z-index: 10;
}
footer::after {
  content: '';
  position: absolute;
  background: linear-gradient(
    -90deg,
    rgba(255, 255, 255, 0.69) 5%,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0) 24%,
    rgba(255, 255, 255, 0.69) 25%,
    rgba(255, 255, 255, 0) 65%,
    rgba(255, 255, 255, 0.69) 66%
  );
  opacity: 0.2;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  margin-top: 2rem;
  z-index: 1;
  transform: skewX(-30deg);
  animation: scroll 0.8s ease-in-out forwards;
  animation-delay: 0.4s;
}
.social-links {
  display: flex;
  justify-content: space-around;
  align-items: center;
  align-self: center;
  min-height: 2rem;
  width: 50%;
  z-index: 2;
}
.social-links i {
  color: var(--cone2-color);
  margin-top: 2rem;
  font-size: 2rem;
}
.social-links i:active {
  color: var(--primary-color);
  transform: scale(90%);
}
.social-links i:hover {
  color: var(--primary-color);
  transform: scale(115%);
  filter: drop-shadow(1px 1px 6px #3b220857);
  transition: color 0.4s ease-in-out;
}
.site-info {
  position: relative;
  align-self: center;
  text-align: left;
  margin: 2rem 1rem 0;
  min-height: 75%;
  min-width: 80%;
  padding: 0 0.4rem 0;
  font-size: 1rem;
  color: var(--cone2-color);
  z-index: 2;
}
.site-info p a {
  /* text-decoration: none; */
  color: var(--cone1-color);
}
small {
  opacity: 0.6;
}
.rights {
  font-size: 0.8rem;
  margin-bottom: 1rem;
  z-index: 2;
}
/* EXTRA SMALL  */
@media screen and (max-width: 321px) {
  .hero-info {
    min-height: 60vh;
  }
  .movies-section {
    top: 22vh;
  }
  .movie {
    height: 12rem;
    max-height: 17rem;
    min-width: 7rem;
    max-width: 12rem;
  }
}
/* iPad  */
@media (min-height: 1030px) and (min-width: 800px) {
  header {
    height: 5.5rem;
    padding: 0.2rem 0.6rem 0.2rem;
  }
  .browse {
    margin-left: 1rem;
    font-size: 1.8rem;
  }
  .fa-caret-down {
    font-size: 2rem;
  }
  .dropdown-menu {
    top: 5.6vh;
    left: 15vw;
  }
  .dropdown-menu ul {
    width: 22rem;
  }
  .dropdown-menu ul li {
    font-size: 2.4rem;
  }
  .notify {
    font-size: 1.2rem;
    height: 1.8rem;
    width: 1.8rem;
    left: -3rem;
  }
  #search {
    height: 3rem;
    font-size: 2rem;
  }
  #search.show {
    width: 80%;
    padding-left: 3rem;
  }
  #search-btn {
    font-size: 2rem;
  }
  i {
    font-size: 3rem;
  }
  .hero-info {
    max-height: 40vh;
    max-width: 50vw;
    margin-top: 20vh;
    line-height: 1.8rem;
  }
  .hero-sub-text {
    line-height: 1.8rem;
  }
  .hero-btns {
    top: 2vh;
    min-height: 4rem;
  }
  .fa-volume-xmark {
    font-size: 2rem;
    right: 14vw;
  }
  .rating {
    font-size: 2rem;
  }
  .btns {
    font-size: 2.4rem;
    margin: 0 1rem 0;
    height: 3.6rem;
    min-width: 14rem;
  }
  .play .fa-play {
    font-size: 2.2rem;
    margin: 0.8rem 0.8rem 0;
  }
  .movies-section {
    margin: 5vh 0 10vh;
  }
  .movie {
    height: 30rem;
    max-height: 35rem;
    width: 20rem;
    max-width: 25rem;
  }
  .category-title {
    font-size: clamp(2rem, 2.5vw, 2.5rem);
  }
  iframe.overview {
    position: absolute;
    top: 24%;
    left: 50%;
    height: 17rem;
  }
  .title {
    top: 45%;
    margin: 0.8rem 0 0.4rem;
    padding: 0.6rem;
    font-size: 1.4rem;
  }
  .vote {
    bottom: -8%;
    font-weight: bold;
    font-size: 1.4rem;
    padding: 2rem 0.7rem 0;
  }
  .vote-btns i {
    font-size: 2rem;
    height: 2.8rem;
    width: 2.8rem;
  }
  .desc-overview {
    margin: 0.4rem 0.4rem 0.4rem;
    padding: 0.7rem;
    font-size: 1rem;
    height: 6.8rem;
    bottom: -22%;
  }
  .desc-overview.more {
    padding-top: 5%;
    height: 100%;
    top: 5%;
    font-size: 1.2rem;
  }
  .social-links {
    min-height: 4rem;
    width: 40%;
  }
  .social-links i {
    font-size: 3rem;
  }
  .site-info {
    margin: 2rem 1rem 2rem;
    font-size: 1.4rem;
    max-width: 80%;
    text-align: center;
  }
  .rights {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
}
/* LANDSCAPE SE */
@media (orientation: landscape) and (min-width: 360px) {
  .dropdown-menu {
    top: 13vh;
  }

  .hero-info {
    width: 80vw;
    min-height: 100vh;
    margin-top: 30vh;
    left: 5%;
  }
  .movies-section {
    margin: 90vh 0 10vh;
  }
}
/* LANDSCAPE ipad  */
@media (orientation: landscape) and (min-width: 759px) {
  header {
    height: 5.5rem;
    padding: 0.2rem 0.6rem 0.2rem;
  }
  .browse {
    margin-left: 1rem;
    font-size: 1.8rem;
  }
  .fa-caret-down {
    font-size: 2rem;
  }
  .dropdown-menu {
    top: 16vh;
    left: 15vw;
  }
  .dropdown-menu ul {
    width: 22rem;
  }
  .dropdown-menu ul li {
    font-size: 2.4rem;
  }
  #search {
    height: 3rem;
    font-size: 2rem;
  }
  #search.show {
    width: 80%;
    padding-left: 3rem;
  }
  #search-btn {
    font-size: 2rem;
  }
  i {
    font-size: 2.6rem;
  }
  .hero-info {
    min-width: 45vw;
    margin-top: 20vh;
    line-height: 2rem;
  }
  .hero-sub-text {
    line-height: 1.4rem;
  }
  .hero-btns {
    top: 5vh;
  }
  .movies-section {
    margin: 70vh 0 10vh;
  }
}
@media (orientation: landscape) and (min-width: 959px) {
  header {
    height: 5.5rem;
    padding: 0.2rem 0.6rem 0.2rem;
  }
  .browse {
    margin-left: 1rem;
    font-size: 1.8rem;
  }
  .fa-caret-down {
    font-size: 2rem;
  }
  .dropdown-menu {
    top: 7vh;
    left: 15vw;
  }
  .hero-info {
    min-width: 25vw;
    margin-top: 10vh;
  }
  .hero-sub-text {
    line-height: 1.6rem;
  }
  .hero-btns {
    top: -10vh;
  }
  .movies-section {
    margin: 35vh 0 10vh;
  }
  .movie {
    height: 30rem;
    max-height: 35rem;
    width: 20rem;
    max-width: 25rem;
  }
  iframe.overview {
    position: absolute;
    top: 24%;
    left: 50%;
    height: 17rem;
  }
  .title {
    top: 45%;
    margin: 0.8rem 0 0.4rem;
    padding: 0.6rem;
    font-size: 1.4rem;
  }
  .vote {
    bottom: -8%;
    font-weight: bold;
    font-size: 1.4rem;
    padding: 2rem 0.7rem 0;
  }
  .vote-btns i {
    font-size: 2rem;
    height: 2.8rem;
    width: 2.8rem;
  }
  .desc-overview {
    margin: 0.4rem 0.4rem 0.4rem;
    padding: 0.7rem;
    font-size: 1rem;
    height: 6.8rem;
    bottom: -22%;
  }
  .desc-overview.more {
    padding-top: 5%;
    height: 100%;
    top: 5%;
    font-size: 1.2rem;
  }
}
@media (min-height: 1030px) and (min-width: 1300px) {
  header {
    height: 5.5rem;
    padding: 0.2rem 0.6rem 0.2rem;
  }
  .browse {
    margin-left: 1rem;
    font-size: 1.8rem;
  }
  .fa-caret-down {
    font-size: 2rem;
  }
  .dropdown-menu {
    top: 5.6vh;
    left: 15vw;
  }
  .dropdown-menu ul {
    width: 22rem;
  }
  .dropdown-menu ul li {
    font-size: 2.4rem;
  }
  .notify {
    font-size: 1.2rem;
    height: 1.8rem;
    width: 1.8rem;
    left: -3rem;
  }
  #search {
    height: 3rem;
    font-size: 2rem;
  }
  #search.show {
    width: 80%;
    padding-left: 3rem;
  }
  #search-btn {
    font-size: 2rem;
  }
  i {
    font-size: 3rem;
  }
  .hero-info {
    line-height: 3rem;
    width: 60vw;
    min-height: 60vh;
    margin-top: 10vh;
    left: 5%;
  }
  .hero-logo {
    max-height: 15rem;
    margin-bottom: 1rem;
  }
  .hero-text {
    max-height: 4rem;
    font-size: clamp(1.8rem, 2.5vw, 2.8rem);
    margin-bottom: 1rem;
  }
  .hero-sub-text {
    min-height: 25%;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    line-height: 2.7rem;
  }
  .hero-btns {
    top: 2vh;
    min-height: 4rem;
  }
  .fa-volume-xmark {
    font-size: 2rem;
    right: 14vw;
  }
  .rating {
    font-size: 2rem;
  }
  .btns {
    font-size: 2.4rem;
    margin: 0 1rem 0;
    height: 3.6rem;
    min-width: 14rem;
  }
  .play .fa-play {
    font-size: 2.2rem;
    margin: 0.8rem 0.8rem 0;
  }
  .movies-section {
    margin: 5vh 0 10vh;
  }
  .movie {
    height: 30rem;
    max-height: 35rem;
    width: 20rem;
    max-width: 25rem;
  }
  .category-title {
    margin: 5rem;
    font-size: clamp(2rem, 2.5vw, 2.5rem);
  }
  iframe.overview {
    position: absolute;
    top: 24%;
    left: 50%;
    height: 17rem;
  }
  .title {
    top: 45%;
    margin: 0.8rem 0 0.4rem;
    padding: 0.6rem;
    font-size: 1.4rem;
  }
  .vote {
    bottom: -8%;
    font-weight: bold;
    font-size: 1.4rem;
    padding: 2rem 0.7rem 0;
  }
  .vote-btns i {
    font-size: 2rem;
    height: 2.8rem;
    width: 2.8rem;
  }
  .desc-overview {
    margin: 0.4rem 0.4rem 0.4rem;
    padding: 0.7rem;
    font-size: 1rem;
    height: 6.8rem;
    bottom: -22%;
  }
  .desc-overview.more {
    padding-top: 5%;
    height: 100%;
    top: 5%;
    font-size: 1.2rem;
  }
  .social-links {
    width: 30%;
  }
  .site-info {
    font-size: 2rem;
  }
  .rights {
    font-size: 1.4rem;
  }
}
