

* {
  margin: 0;
  box-sizing: border-box;
}

body{
  font-family: Arial, Helvetica, sans-serif;
  background-color: #111;
}

.img-logo{
  height: 94px;
  margin-left: 45px;
}

.showcase-top{
  position: relative;
  z-index: 2;
  height: 90px;
}

.showcase-top img{
  width: 140px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(40% , -50%);
}

.row__poster {
  margin-right: 30px;
  position: relative;
}

.row__poster:hover .movie-list-item-title,
.row__poster:hover .movie-list-item-desc,
.row__poster:hover .movie-list-item-button {
  opacity: 1;
}
 
.movie-list-item-title {
  background: linear-gradient(100deg , #111 , transparent);
  padding: 0 10px;
  font-size: 25px;
  font-weight: bold;
  position: absolute;
  top: 10%;
  left: 50px;
  opacity: 0;
  transition: 1s all ease-in-out;
}

.movie-list-item-desc {
  background: linear-gradient(100deg , #111 , transparent);
  padding: 10px;
  font-size: 13px;
  position: absolute;
  top: 30%;
  left: 50px;
  width: 230px;
  opacity: 0;
  transition: 1s all ease-in-out;
}

.movie-list-item-button {
  padding: 8px;
  background-color: #fff;
  color: #111;
  border-radius: 2px;
  outline: none;
  border: none;
  cursor: pointer;
  position: absolute;
  bottom: 5px;
  left: 50px;
  opacity: 0;
  transition: 1s all ease-in-out;
}


.row__poster{
  width: 100%;
  object-fit: contain;
  max-height: 150px;
  margin-right: 10px;
  transition: transform 450ms;
}

.row__posters{
  display: flex;
  overflow-y: hidden;
  overflow-x: scroll;
  padding: 20px;
}

.row__poster:hover{
  transform: scale(1.08);
}

.row__posters::-webkit-scrollbar{
  display: none;
}

.row__posterLarge{
  max-height: 250px;
}

.row__posterLarge:hover{
  transform: scale(1.09);
}

.row{
  color: #fff;
  margin-left: 20px;
}

.banner{
  background-image: url(joker1.jpg);
  background-size: cover;
  background-position: center center;
  color: #fff;
  object-fit: contain;
  height: 650px;
}

.banner__contents{
  margin-left: 50px;
  padding-top: 140px;
  height: 190px;
  padding-bottom: 4rem;
}

.banner__title{
  font-size: 3rem;
  font-weight: 800;
  padding-bottom: 8rem;
}

.banner__description{
  width: 45rem;
  line-height: 1.3;
  padding-top: 1rem;
  font-size: 0.8rem;
  max-width: 380px;
  height: 180px;
  margin-left: 50px;
}

.banner__button{
  cursor: pointer;
  background-color: rgb(160, 158, 158);
  color: #fff;
  outline: none;
  border: none;
  font-weight: 700;
  border-radius: 0.4vw;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  opacity: 8;

}

.footer{
  max-width: 70%;
  margin: 1rem auto;
  overflow: auto;
}

.footer ,
.footer a{
  color: #999999;
  font-size: 0.9rem;
}

.footer p{
  margin-bottom: 1.5rem;
}

.footer .footer-cols{
  display: grid;
  grid-template-columns: repeat(4 , 1fr);
  grid-gap: 2rem;
}

.footer li{
  line-height: 2.4;
}