
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
section{
    width: 100%;
    height: 150vh;
    background: #171717;
}
section nav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 5% 8px 5%;
    margin-bottom:  20px;
    background: #171717;
}
section nav .logo h1{
    font-size: 25px;
    color: #fff;
    cursor: pointer;
}
section nav .logo h1 span{
    color: rgb(154, 238, 154);
    margin-left: 8px;
}
section nav .right ul{
    list-style: none;
}
section nav .right ul li{
    display: inline-block;
    margin: 0 5px;
}
section nav .right ul li a{
    color: #fff;
    text-decoration: none;
    transition: 0.4s;
}
section nav .right ul li a:hover{
    color: rgb(154, 238, 154);
}
.swiper {
    width: 95%;
    height: 85%;
    border-radius: 20px;
    overflow: hidden;
  }
  .swiper ::selection{
    user-select: none;
  }
  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .swiper-slide .image .black{
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient( to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.9));
  }
  .swiper-slide .image .black h1{
    font-size: 30px;
    text-align: left;
    position: relative;
    top: 60%;
    left: 5%;
    color: #fff;
  }
  .swiper-slide .image .black .star{
    color:gold;
    text-align: left;
    font-size: 16px;
    margin: 10px 0;
    position: relative;
    top: 60%;
    left: 5%;
  }
  .swiper-slide .image .black p{
    width: 550px;
    text-align: justify;
    font-size: 16px;
    color: #cccccc;
    margin: 10px 0;
    position: relative;
    top: 60%;
    left: 5%;
    line-height: 23px;
    font-family: "Ink Free";
  }
  .swiper-slide .image .black .genre{
    text-align: left;
    font-size: 16px;
    margin: 13px 0;
    position: relative;
    top: 60%;
    left: 5%;
  }
  .swiper-slide .image .black .genre a.category{
    background: #282931;
    text-decoration: none;
    color: #cccccc;
    padding: 2px 7px;
  }
  .swiper-slide .image .black .genre a.category span{
    color: gold;
  }
  .swiper-slide .image .black .watch{
    width: 700px;
    text-align: left;
    display: flex;
    font-size: 16px;
    margin: 10px 0;
    position: relative;
    top: 60%;
    left: 5%;
  }
  .swiper-slide .image .black .watch i{
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    text-align: center;
    background-color: gold;
    border-radius: 50%;
    cursor: pointer;
}
.swiper-slide .image .black .watch p{
    position: relative;
    left: 15px;
    font-family: sans-serif;
}
  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .swiper {
    margin-left: auto;
    margin-right: auto;
  }
  /* --------- */
  .second{
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding-bottom: 25px;
    background: #171717;
  }
  .second  .latest{
    width: 95%;
    margin: 0 auto;
}
.second  .latest h1{
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
}
.second  .latest .box{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.second  .latest .box .card{
    width: 250px;
    height: 370px;
    margin: 10px;
    overflow: hidden;
    border-radius: 8px;
}
.second  .latest .box .card .details{
    width: 250px;
    height: 370px;
    overflow: hidden;
    position: absolute;
    border-radius: 8px;
    transition: 0.3s ;
    transition: 0.3s ;
    opacity: 0;
}
.second  .latest .box .card:hover .details{
    opacity: 1;
    background: linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.7));
}

.second  .latest .box .card .details .left{
    position: absolute;
    bottom: 0;
    color: #fff;
    transform: translateX(-100px);
    transition: 0.4s;
    opacity: 0;
}
.second  .latest .box .card:hover .details .left{
  opacity: 1;
  transform: translateX(0);
}

.second  .latest .box .card .details .left p.name{
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    margin-left: 10px;
    margin-bottom: 10px;
}
.second  .latest .box .card .details .left .data_quality{
    display: flex;
    align-items: center;
}
.second  .latest .box .card .details .left .data_quality p.quality{
    width: 30px;
    font-size: 13px;
    background: gold;
    color: #282931;
    margin-left: 10px;
    margin-bottom: 8px;
    text-align: center;
    font-weight: bold;
}
.second  .latest .box .card .details .left .data_quality p.date{
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    text-align: left;
    margin-left: 10px;
    margin-bottom: 8px;
}
.second  .latest .box .card .details .left p.category{
    margin-left: 10px;
    font-size: 13px;
    margin-bottom: 8px;
}
.second  .latest .box .card .details .left .info{
   display: flex;
   align-items: center;
   margin-bottom: 10px;
}
.second  .latest .box .card .details .left .info .rate{
    display: flex;
    align-items: center;
    margin-left: 10px;
    margin-right: 10px;
}
.second  .latest .box .card .details .left .info .rate i{
    font-size: 12px;
    color: gold;
    margin-right: 5px;
}
.second  .latest .box .card .details .left .info .rate p{
    font-size: 12px;
}
.second  .latest .box .card .details .left .info .time{
    display: flex;
    align-items: center;
}
.second  .latest .box .card .details .left .info .time i{
    font-size: 12px;
    color: gold;
    margin-left: 5px;
}
.second  .latest .box .card .details .left .info .time p{
    font-size: 12px;
    margin-left: 5px;
}
.second  .latest .box .card .details .right{
    position: absolute;
    right: 0;
    bottom: 0;
    color: #fff;
    transform: translateX(100px);
    transition: 0.4s;
    opacity: 0;
}
.second  .latest .box .card:hover .details .right{
  opacity: 1;
  transform: translateX(0);
}

.second  .latest .box .card .details .right i{
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    text-align: center;
    background-color: gold;
    border-radius: 50%;
    cursor: pointer;
    color: #282931;
    margin:  0 10px 8px 0;
}
.second  .latest .box .card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
  img{
    width: 150px;
  }
  .show{
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding-bottom: 25px;
    background-color: #171717;
  }
  .show .tv_shows{
    width: 95%;
    margin: 0 auto;
  }
  .show .tv_shows h1{
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
  }
  
  .bot{
    height: 30px;
    display: flex;
    cursor: pointer;
    padding: 10px 20px;
    background:black;
    border-radius: 30px;
    align-items: center;
    box-shadow: #171717;
  }
  .bot:hover input{
    width: 200px;
  }
  .bot input{
    width:0;
    outline: none;
    border: none;
    font-weight: 500;
    transition: 0.8s;
    background: transparent;
  }
  .bot a .fa{
    color: white;
    font-size: 18px;
  }