html,
body {
  padding: 0;
  margin: 0;
  background-color: #141414;
  font-family: "Prompt", sans-serif, Arial;
}

.container {
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
}
*::-webkit-scrollbar {
  display: none;
}

header {
  background-color: transparent;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  transition: all ease 600ms;
}

header.black-bg {
  background-color: #141414;
}

.brand {
  max-width: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.header-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.main-nav {
  list-style: none;
  display: inline-flex;
  /* display: none; */
}

.left-cont {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.nav-item {
  color: #fff;
  margin-right: 30px;
}

.icon {
  width: 30px;
  margin: 10px 6px;
}

/*movie sectoin */
.movies-section {
  margin: 35px;
}

.movies-sec-head {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  cursor: pointer;
  margin-bottom: 10px;
}

.explore {
  color: #54b9c5;
  font-size: 12px;
  display: none;
}

.movies-sec-head:hover .explore {
  display: inline-block;
}

.movies-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

.movie-item {
  width: 400px;
  object-fit: contain;
  margin-right: 20px;
  position: relative;
}

.movie-item-img {
  width: inherit;
  border-radius: 5px;
}

.nlogo {
  position: absolute;
  width: 15%;
}

.movie-info {
  color: rgb(255, 255, 255);
  position: absolute;
  font-style: oblique;
  bottom: 10px;
  left: 15px;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
    1px 1px 0 #000;
}

.movie-item .iframe-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: none;
  border: none;
  outline: none;
}

.movie-item:hover .iframe-wrap {
  display: block;
}

.movie-item:hover {
  transform: scale(1.1);
  transition: transform linear 300ms;
}

.banner-img {
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 80vh;
  padding-top: 80px;
  position: relative;
}

.banner-content {
  display: flex;
  flex-direction: column;
  padding-top: 70px;
}

.banner-title {
  color: white;
  font-size: 70px;
  line-height: 1.2;
  margin: 0;
  margin-bottom: 10px;
  max-width: 40%;
}

.banner-info {
  color: rgb(252, 252, 252);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
  display: block;
}

.banner-overview {
  color: white;
  font-size: 17px;
  line-height: 1.2;
  max-width: 60%;
}

.action-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.action-button {
  display: flex;
  flex-direction: row;
  background-color: white;
  border: none;
  padding: 8px 23px;
  margin: 11px;
  align-items: center;
  flex-direction: row;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 6px;
}

.action-button:last-child {
  background-color: rgba(109, 109, 110, 0.7);
  color: white;
}

.banner_fadeBottom {
  height: 120px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(37, 37, 37, 0.61),
    #141414
  );

  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: block;
}
footer {
  height: 30vh;
  background-color: #222222;
  padding: 20px;
  color: #ffffff;
  text-align: center;
}

.social-icons {
  margin-bottom: 40px;
  transition: font-size 2s;
}
.social-icons a:hover {
  font-size: 55px;
}

.social-icons a {
  display: inline-block;
  margin-right: 20px;
  color: #ffffff;
  font-size: 50px;
  text-decoration: none;
}

footer p {
  margin: 0;
  font-size: 20px;
}

@media (max-width: 948px) {
  .main-nav {
    display: none;
  }

  .banner-overview {
    max-width: 100%;
  }
  .banner-img {
    background-position: center;
  }
}
@media (max-width: 450px) {
  .main-nav {
    display: none;
  }
  .banner-title {
    font-size: 30px;
  }

  .banner-img {
    background-position: center;
    min-height: 20vh;
  }
  .banner_fadeBottom {
    display: none;
  }
  .banner-overview {
    display: none;
  }
  .movie-item {
    width: 200px;
  }
}
