/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;1,700;1,900&display=swap");

/* Primary Elements */
* {
  font-family: "Roboto", sans-serif;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
  transition: all 0.34s linear;
}

html {
  font-size: 54.5%;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

:root {
  --main-color: #fff;
  --light-color: #b2b3b4;
  --bg-color: #ff0;
}

p {
  font-weight: 500;
  font-size: 15px;
}

/* Navigation Section Start */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 20px 0;
  z-index: 100;
}

.logo {
  width: 100px;
}

.navmenu {
  display: flex;
}

.navmenu li {
  padding: 0 15px;
}

.navmenu li a {
  font-size: 15px;
  font-weight: 400;
  color: var(--main-color);
  text-transform: uppercase;
}

.navmenu li a:hover {
  color: var(--bg-color);
}
.search {
  display: flex;
  align-items: center;
  justify-content: center;
}

.search i {
  font-size: 2.4rem;
  color: var(--main-color);
  cursor: pointer;
  margin: 0 5px;
}

.search #world {
  color: var(--bg-color);
  vertical-align: middle;
}

.search span {
  color: var(--light-color);
  font-size: 3rem;
  font-weight: 300;
  margin-left: 15px;
}

.lang {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
}

select {
  background: none;
  border: none;
  outline: none;
  color: var(--main-color);
  cursor: pointer;
}

select option {
  color: #000;
}

.sign-in {
  padding: 15px 30px;
  border-radius: 25px;
  background: transparent;
  border: 2px solid var(--bg-color);
  color: var(--main-color);
  font-size: 1.9rem;
  font-weight: 500;
}

.sign-in:hover {
  background: var(--bg-color);
  color: #000;
  box-shadow: 0px 0px 20px var(--bg-color);
}
.hambuger {
  display: none;
  cursor: pointer;
}
.bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--main-color);
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
/* Navigation Section End */

/* Hero Section Start */
.hero-bg {
  width: 100%;
  height: auto;
  background-position: center;
  background-size: cover;
  background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(../images/the-adam-project.jpg);
}

.hero-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, auto));
  gap: 2rem;
  padding-top: 150px;
  width: 90%;
  margin: auto;
}

.hero-box {
  position: relative;
}

.hero-box__img {
  width: 300px;
  height: 400px;
  /* border: 1px solid #fff; */
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgb(112, 90, 90);
  position: relative;
}

.hero-box__img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.hero-box__img #play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-box__img #play i {
  font-size: 8rem;
  color: var(--main-color);
  border-radius: 50%;
}

.hero-box__img #play i:hover {
  box-shadow: 0px 0px 50px var(--main-color);
  transform: scale(1.1);
}

.hero-box-content {
  padding-top: 50px;
  margin-left: 0;
}

.movie-status {
  display: flex;
  align-items: center;
}

.hero-box-content h5 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--bg-color);
  text-transform: capitalize;
  margin-bottom: 1rem;
}

.hero-box-content h1 {
  font-weight: 600;
  font-size: 6rem;
  color: var(--main-color);
  text-transform: capitalize;
}

.hero-box-content h1 span {
  color: var(--bg-color);
}

.movie-status {
  margin-top: 2rem;
  margin-left: -5px;
}

.movie-status .pg {
  padding: 3px 15px;
  background: var(--main-color);
  font-size: 13px;
  font-weight: 600;
  color: #000;
}

.movie-status .hd {
  padding: 3px 12px;
  background: transparent;
  border: 1px solid var(--main-color);
  font-size: 13px;
  font-weight: 600;
  color: var(--main-color);
}

.movie-status-parag {
  display: flex;
  flex-wrap: wrap;
}

.movie-status p {
  margin-left: 10px;
  color: var(--light-color);
  font-size: 15px;
  text-transform: capitalize;
  text-align: left;
}

.hero-box__trail {
  margin-top: 3rem;
}

.hero-box__trail p {
  font-size: 15px;
  font-weight: 500;
  color: var(--light-color);
  width: 95%;
  line-height: 25px;
}

.hero-box-watch_now {
  margin-top: 3%;
  width: 400px;
  height: 100px;
  background: linear-gradient(rgba(7, 9, 17, 0.7), rgba(7, 9, 17, 0.7));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.share i {
    font-size: 4rem;
    color: var(--main-color);
}
.share {
    cursor: pointer;
}
.share h1 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--light-color);
}

.stream h2 {
    font-size: 2rem;
    color: var(--main-color);
    font-weight: 600;
    text-transform: capitalize;
}

.stream p {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--light-color);
}

.watch-now {
    padding: 15px 30px;
    background: transparent;
    border-radius: 25px;
    border: 2px solid var(--bg-color);
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--main-color);
    cursor: pointer;
}

.watch-now i {
    vertical-align: middle;
    font-size: 2.8rem;
}

.watch-now:hover {
    background: var(--bg-color);
    color: #000;
    box-shadow: 0px 0px 30px var(--bg-color);
}

.hero-box-download {
    width: 100px;
    height: 200px;
    background: var(--bg-color);
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 10px;
    cursor: pointer;
}

.hero-box-download:hover {
    box-shadow: 0px 0px 50px var(--bg-color);
}

.hero-box-download .btn {
    font-size: 2.2rem;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    transform: rotate(90deg);
    margin-top: 80%;
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    margin-left: -20px;
}

.hero-box-download .btn i {
    margin-left: 2rem;
    transform: rotate(270deg);
}
/* Hero Section End */

/* Recomended Videos Start */
.recomended {
  padding-top: 100px;
  width: 100%;
  height: auto;
  background-position: center;
  background-size: cover;
  background-image: url(../images/top-rated-bg.jpg);
}

.recomended center {
  font-size: 2rem;
  font-weight: 400;
  color: var(--bg-color);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.recomended h1 {
  text-align: center;
  font-size: 4rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--main-color);
}
/* Recomended Videos End */

/* Slide Animation */
.animate {
  transition: 1s;
  opacity: 0;
}
.show-animate .animate {
  transition: 1s;
  opacity: 1;
}


/* Recomended Movies */
.upcoming-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, auto));
  gap: 4rem;
  padding-top: 80px;
  width: 90%;
  margin: auto;
}

.upcoming-box.animate {
  width: 300px;
  height: 540px;
  /* border: 1px solid #fff; */
  background: linear-gradient(rgba(21, 24, 34, 0.5), rgba(21, 24, 34, 0.5));
  box-shadow: 0px 0px 10px rgba(129, 139, 170, 0.5);
  border-radius: 5px;
  position: relative;
  transform: translateY(130%);
  transition-delay: calc(0.2s * var(--i));
}

.show-animate .upcoming-box.animate {
  transform: translateY(0);
}

.upcoming-box .img {
  width: 300px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
}

.upcoming-box .img img {
  width: 100%;
  border-radius: 5px;
}

.upcoming-box .img img:hover {
  transform: scale(1.1);
}

.upcoming-box-cont {
  margin-left: 0;
}

.upcoming-box-cont .title {
  position: absolute;
  font-size: 2rem;
  color: var(--main-color);
  text-transform: capitalize;
  font-weight: 500;
  margin-top: 10px;
  width: 80%;
}

.upcoming-box-cont .year {
  position: absolute;
  right: 0;
  font-size: 2rem;
  color: var(--bg-color);
  font-weight: 500;
  margin-top: 10px;
}

.upcoming-box-cont .hd {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 3px 10px;
  background: transparent;
  border: 1px solid var(--main-color);
  color: var(--bg-color);
  font-size: 15px;
}

.upcoming-box-cont .time {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 20%;
}

.upcoming-box-cont .time i {
  font-size: 2.2rem;
  color: var(--bg-color);
  margin-left: 5px;
}

.upcoming-box-cont .time span {
  color: var(--main-color);
  font-size: 1.8rem;
}

.upcoming-box-cont .star {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 0;
}

.upcoming-box-cont .star i {
  font-size: 2.2rem;
  color: var(--bg-color);
  margin: 0 5px;
}

.upcoming-box-cont .star span {
  color: var(--main-color);
  font-size: 1.8rem;
}
/* Upcoming Movie End */


/* Footer Section Start */
.footer-bg {
  width: 100%;
  height: auto;
  background-position: center;
  background-size: cover;
  background-image: url(../images/footer-bg.jpg);
}

.footer-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5%;
  border-bottom: 2px solid #666;
  padding-top: 100px;
}

.f-logo{
  width: 140px;
}

.social-handles {
  display: flex;
  align-items: center;
  justify-content: center;
}



.footer-ask {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5%;
}


.social-handles li i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: #5c5c5c;
  border-radius: 50%;
  font-size: 2rem;
  color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 13px;
  cursor: pointer;
}

.social-handles li i:hover {
  background: var(--bg-color);
  color: #000;
  transform: translateY(-2px);
  font-size: 2.2rem;
}

.copyright {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111;
  height: 70px;
}

.copyright-box {
  margin-left: 20px;
}

.copyright-box p {
  font-size: 2rem;
  font-weight: 500;
  color: var(--light-color);
}

.copyright-box p span {
  color: var(--bg-color);
}

.sponsor {
  margin-right: 20px;
}

.sponsor img {
  width: 300px;
}
/* Footer Section End */

/* Jump to top */
.go-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  color: #000;
  background: var(--bg-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 2rem;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
}

.go-top.active {
  opacity: 1;
  visibility: visible;
}

/* Scroll Bar */
::-webkit-scrollbar {
  width: 18px;
}
::-webkit-scrollbar-track {
  background: rgb(180, 180, 17);
}
::-webkit-scrollbar-thumb {
  background: #111;
}