* {
    padding: 0%;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}



body {
    height: 100vh;
    width: 100%;
    /* background-color: rgb(45,45,45); */
    background: #1a1919;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
}

header {
    position: relative;
    height: 90%;
    width: 80%;
    /* border: 1px solid #fff; */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 10px 25px -8px #000;
}

header::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(img/money\ heist1.jpg)no-repeat center center/cover;
    opacity: .7;
    z-index: -1;

}



header::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, #000);
    z-index: -1;
}


header video {
    height: 190%;
    width: 126%;
    position: absolute;
    top: -47%;
    z-index: -1;
}


header nav {
    width: 100%;
    height: 10%;
    /* border: 1px solid #fff; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 50px;
}

header nav .logo_ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

header nav .logo_ul img {
    width: 90px;
}

header nav .logo_ul ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}


header nav .logo_ul ul li {
    padding: 3px 15px;
}

header nav .logo_ul ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    transition: .3s linear;
}

header nav .logo_ul ul li a:hover {
    color: rgba(255, 255, 255, .7)
}



header nav .search_user {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


header nav .search_user input {
    padding: 3px 10px;
    border-radius: 15px;
    border: none;
    outline: none;
    background: rgb(255, 255, 255, .3);
    color: #fff;
    margin-right: 10px;
}


header nav .search_user input::placeholder {
    color: #fff;
}


header nav .search_user img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}


.search_user .search_result {
    width: 320px;
    height: 280px;
    position: absolute;
    top: 40px;
    right: 0;
    z-index: 9999;
    overflow-y: auto;
    /* border: 1px solid #fff; */
}

.search_user .search_result::-webkit-scrollbar {
    width: 5px;
    border-radius: 5px;
    background: rgb(255, 255, 255, .2);
    visibility: hidden;
}

.search_user .search_result::-webkit-scrollbar-thumb {
    width: 5px;
    border-radius: 5px;
    background: rgb(255, 255, 255, .3);
    visibility: hidden;
}

.search_user .search_result:hover::-webkit-scrollbar {
    visibility: visible;
}

.search_user .search_resulth:hover::-webkit-scrollbar-thumb {
    visibility: visible;
}


.search_user .search_result .crd {
    position: relative;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    padding: 3px 0;
    text-decoration: none;
    display: none;

}

.search_user .search_result .crd::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255, .1);
    backdrop-filter: blur(5px);
    border-radius: 5px;
    z-index: -1;
}

.search_user .search_result .crd img {
    height: 90%;
    width: 28px;
    border-radius: 3px;
    margin-left: 7px;

}

.search_user .search_result .crd .cont {
    margin-left: 10px;
    color: #fff;
}

.search_user .search_result .crd .cont h3 {
    font-size: 15px;
    line-height: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 250px;
    padding-top: 15px;
}

.search_user .search_result .crd .cont p {
    font-size: 10px;
    color: rgb(255, 255, 255, .8);
}

.search_user .search_result .crd .cont p span {
    background: yellow;
    color: #000;
    font-weight: 600;
    padding: 0 3px;
    margin: 0 5px 0 8px;
}





header .content{
    color:#fff;
    margin-top: 20px;
    padding-left: 50px;
}

header .content h1{
    font-size: 50px;

}
header .content p{
    font-size: 12px;
    width: 350px;
    word-break: break-all;
}

header .content .detail{
    display: flex;
    align-items: center;
    margin-top: 13px;
}

header .content .detail h6{
    color: rgb(255, 255, 255, .8);
    font-size: 10px;
    margin-right: 10px;
}
header .content .detail h5{
    color: rgb(142, 230, 48);
    font-size: 10px;
    margin-right: 10px;
}

header .content .detail h4{
    color: #fff;
    font-size: 10px;
    margin-right: 10px;
}


header .content .detail h3{
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 10px;
}

header .content .detail h3 span{
    font-size: 12px;
    background: yellow;
    color: #000;
    font-weight: 600;
    padding: 0 3px;
    margin: 0 5px 0 2px;
    font-weight: 600;

}

header .content .btns {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

header .content .btns a{
padding: 8px 12px;
font-weight: 600;
font-size: 15px;
background:linear-gradient(90deg,#00bdff,#0079ff);
border-radius: 5px;
color: #fff;
margin-left: 10px;
text-decoration: none;
animation: btn 1s linear infinite;


}


@keyframes btn {
    0%{ background:linear-gradient(0deg,#00bdff,#0079ff); }
    12%{ background:linear-gradient(50deg,#00bdff,#0079ff); }
    25%{ background:linear-gradient(95deg,#00bdff,#0079ff); }
    36%{ background:linear-gradient(150deg,#00bdff,#0079ff); }
    50%{ background:linear-gradient(195deg,#00bdff,#0079ff); }
    60%{ background:linear-gradient(250deg,#00bdff,#0079ff); }
    72%{ background:linear-gradient(295deg,#00bdff,#0079ff); }
    100%{ background:linear-gradient(360deg,#00bdff,#0079ff); }
}


header section{
    position: absolute;
    width: 100%;
    height: auto;
    padding: 0 50px;
    bottom: 20px;
    color: #fff;
}

header section .cards{
    position: relative;
    width: 100%;
    height: 160px;
    /* border: 1px solid #fff; */
    margin-top: 10px;
    display: flex;
    align-items: center;
    overflow-x: auto;
    scroll-behavior: smooth;
}
header section .cards::-webkit-scrollbar{
    display: none;
}
header section .cards .card{
    position: relative;
    /* border: 1px solid #fff; */
    height: 150px;
    min-width: 120px;
    border-radius: 8px;
    margin-right: 10px;
    background: #000;
    transition: .3  linear;
    overflow: hidden;
}



header section .cards .card .poster{
    height: 100%;
    width: 100%;
    position: relative;
    border-radius: 8px;
}
header section .cards .card:hover {
    min-width: 300px;
    overflow: hidden;

}

header section .cards .card .rest_card{
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 8px;
    left: 0;
    top: 0;
    z-index:9999;
    opacity: 0;
    transition: 1s linear;
}

header section .cards .card .rest_card img{
    height: 100%;
    width: 100%;
    position: relative;
    border-radius: 8px;
    z-index: -1;
}

header section .cards .card .rest_card::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, #000);
    left: 0;
    bottom: 0;
    z-index: -1;
}

header section .cards .card .rest_card .cont{
    position: absolute;
    width: 100%;
    bottom: 2px;
    color: #fff;
    padding: 0 10px;
}
header section .cards .card .rest_card .cont h4{
    font-size: 16px;
    margin-bottom: 0;
}

header section .cards .card .rest_card .cont .sub{
    display: flex;
    align-items: center;
    justify-content: space-between;
}


header section .cards .card .rest_card .cont .sub p{
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, .7);
}

header section .cards .card .rest_card .cont .sub h3{
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
}


header section .cards .card .rest_card .cont .sub span{
    font-size: 12px;
    background: yellow;
    color: #000;
    font-weight: 600;
    padding: 0 3px;
    margin: 0 5px 0 2px;
    font-weight: 600;
    border-radius: 3px;
}


header section .cards .card:hover .rest_card{
    opacity: 1;
}


header section  .bi-chevron-left,.bi-chevron-right{
    position: absolute;
    top: 50%;
    left: 3%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgb(255, 255, 255, .3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    transition: .3s linear;
    z-index: 9999;
    opacity: 0;
    font-weight: 700;
}

header section .bi-chevron-right{
    left: unset;
    right: 3%;
}

header section:hover .bi-chevron-left{
    opacity: 1;
}

header section:hover .bi-chevron-right{
    opacity: 1;
}