﻿:root {
    --main-color: #ccff00;
    --body-bg: #181616;
    --box-bg: #221f1f;
    --text-color: #ffffff;
    --nav-height: 60px;
    --space-top: 30px;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: "Cairo", sans-serif;
    background-color: var(--body-bg);
    color: var(--text-color);
    padding-top: var(--nav-height);
}

a {
    text-decoration: none;
    color: unset;
}

img {
    max-width: 100%;
}

.main-color {
    color: var(--main-color);
}

.container {
    max-width: 1920px;
    padding: 0 40px;
    margin: auto;
}

.overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: #000000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-color);
    height: var(--nav-height);
}


.logo {
    font-size: 2rem;
    font-weight: 900;
    color: white;
}
.logoC{
    color:var(--main-color);
}
.nav-menu {
    list-style-type: none;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

    .nav-menu li ~ li {
        margin-left: 30px;
    }

    .nav-menu a {
        text-transform: uppercase;
        font-weight: 700;
    }

        .nav-menu a:hover {
            color: var(--main-color);
        }

        .nav-menu a.btn:hover,
        a.logo:hover
    :hover {
            color: var(--main-color);
        }

.btn {
    color: #ffffff;
    padding: 0.25rem 1.5rem;
    text-transform: uppercase;
    font-size: 1.25rem;
    font-weight: 700;
    display: inline-flex;
    position: relative;
    align-items: center;
}

.btn-hover::before {
    z-index: 1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: var(--main-color);
    transition: 0.3s ease-in-out;
}

.btn-hover:hover::before {
    width: 100%;
}

.btn i,
.btn span {
    z-index: 1;
}

.btn i {
    margin-right: 1rem;
}

.hamburger-menu {
    --size: 30px;
    height: var(--size);
    width: var(--size);
    cursor: pointer;
    z-index: 101;
    position: relative;
    display: none;
    align-items: center;
}

.hamburger {
    position: relative;
}

    .hamburger,
    .hamburger::before,
    .hamburger::after {
        width: var(--size);
        height: 3px;
        border-radius: 0.5rem;
        background-color: var(--text-color);
        transition: 0.4s;
    }

        .hamburger::before,
        .hamburger::after {
            content: "";
            position: absolute;
            left: 0;
        }

        .hamburger::before {
            top: -10px;
        }

        .hamburger::after {
            bottom: -10px;
        }

.hamburger-menu.active .hamburger {
    background-color: transparent;
}

    .hamburger-menu.active .hamburger::before {
        transform-origin: top left;
        transform: rotate(45deg);
        left: 6px;
    }

    .hamburger-menu.active .hamburger::after {
        transform-origin: bottom left;
        transform: rotate(-45deg);
        left: 6px;
    }

.hero-slide-item {
    padding-top: 40%;
    position: relative;
    overflow: hidden;
}

    .hero-slide-item img {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

.hero-slide-item-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--text-color);
    display: flex;
}

.item-content-wraper {
    padding-left: 5rem;
    width: 40%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

    .item-content-wraper::before {
        content: "";
        position: absolute;
        top: 0;
        left: 100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    }

.item-content-title {
    font-size: 5rem;
    line-height: 5rem;
    font-weight: 900;
}

.movie-infos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: calc(var(--space-top) / 2);
    color: var(--main-color);
}

.movie-info {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
}

    .movie-info span {
        margin-left: 5px;
    }

    .movie-info i {
        color: var(--main-color);
    }

    .movie-info ~ .movie-info {
        margin-left: 5px;
    }

.item-content-description {
    font-size: 1.15rem;
    margin-top: var(--space-top);
    line-height: 1.5rem;
}

.item-action {
    margin-top: var(--space-top);
}

.carousel-nav-center {
    position: relative;
}

    .carousel-nav-center .owl-nav button i {
        font-size: 3rem;
    }

    .carousel-nav-center .owl-nav button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .carousel-nav-center .owl-nav .owl-prev {
        position: absolute;
        left: 5px;
    }

    .carousel-nav-center .owl-nav .owl-next {
        position: absolute;
        right: 5px;
    }

.owl-nav button {
    border: none;
    outline: none;
}

    .owl-nav button i {
        background-color: rgba(0, 0, 0, 0.6);
        border-radius: 50%;
    }

    .owl-nav button:hover i {
        color: var(--main-color);
    }

.top-down {
    transform: translateY(-50px);
    visibility: hidden;
    opacity: 0;
    transition: 0.5s ease-in-out;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-6 {
    transition-delay: 0.6s;
}

.delay-8 {
    transition-delay: 0.8s;
}

.owl-item.active .top-down {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.movie-item {
    display: block;
    position: relative;
    overflow: hidden;
    padding-top: 140%;
    cursor: pointer;
}

    .movie-item img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        transition: transform 0.3s linear;
    }

    .movie-item:hover img {
        transform: scale(1.2);
    }
.movie-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.8);
}

    .movie-item-content::before {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    }

.movie-item-title {
    color: var(--text-color);
    font-size: 1.5rem;
    position: relative;
    font-weight: 700;
}
.movie-item-content1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.8);
}

    .movie-item-content1::before {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 0;
        width: 200px;
        height: 100px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    }
.movie-item-title {
    color: var(--text-color);
    font-size: 1.5rem;
    position: relative;
    font-weight: 700;
}

.section {
    padding-top: 80px;
}

.section-header {
    margin-bottom: 30px;
    padding-left: 20px;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 700;
    border-left: 4px solid var(--main-color);
    display: flex;
    align-items: center;
}

.pricing-header {
    margin-bottom: 30px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-box {
    padding: 50px;
    margin: 15px 0;
    background-color: var(--box-bg);
    border-top: 5px solid transparent;
    transition: transform 0.3s ease-in-out;
}

    .pricing-box:hover {
        transform: translateY(-20px);
    }

    .pricing-box.hightlight {
        border-top: 5px solid var(--main-color);
    }

.pricing-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.5rem;
}

.pricing-price {
    font-weight: 700;
}

    .pricing-price span {
        font-size: 1rem;
    }

.pricing-box-content {
    text-align: center;
    margin-top: 60px;
    font-size: 1.25rem;
}

.pricing-box-action {
    text-align: center;
    margin-top: 60px;
}

footer.section {
    margin-top: 80px;
    padding-bottom: 80px;
    position: relative;
    background-color: var(--box-bg);
}

footer a:hover {
    color: var(--main-color);
}

footer a.logo {
    margin-top: -2.5rem;
    display: block;
}

    footer a.logo:hover {
        color: unset;
    }

.social-list {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.social-item {
    --size: 30px;
    height: var(--size);
    width: var(--size);
    display: grid;
    place-items: center;
    border-radius: 50%;
    background-color: var(--text-color);
    color: var(--main-color);
}

    .social-item:hover {
        background-color: var(--main-color);
        color: var(--text-color);
    }

    .social-item ~ .social-item {
        margin-left: 20px;
    }

footer .content {
    margin-top: 20px;
}

.footer-menu {
    list-style-type: none;
}

    .footer-menu a {
        display: inline-block;
        transition: transform 0.2s ease-in-out;
    }

        .footer-menu a:hover {
            transform: translateX(5px);
        }

.copyright {
    padding: 10px;
    border-top: 1px solid var(--body-bg);
    background-color: var(--box-bg);
    text-align: center;
}

/* RESPONSIVE */

@media only screen and (max-width: 640px) {
    html {
        font-size: 14px;
    }

    .hero-slide-item {
        padding-top: 50%;
    }

    .item-content-wraper {
        width: 50%;
    }
}

@media only screen and (max-width: 850px) {
    html {
        font-size: 12px;
    }

    .container {
        padding: 0 15px;
    }

    .hero-slide-item {
        height: max-content;
        padding-top: unset;
    }

    .item-content-wraper {
        width: 100%;
        height: 100%;
        padding-bottom: 20px;
        padding-right: 5rem;
        background-color: rgba(0, 0, 0, 0.2);
    }

    .hero-slide-item-content {
        position: relative;
    }

    .hero-slide-item img {
        height: 100%;
    }

    .item-content-title {
        font-size: 3rem;
    }

    .hamburger-menu {
        display: grid;
    }

    .nav-menu {
        /* display: none; */
        position: absolute;
        top: 100%;
        left: -100%;
        background-color: #000000;
        flex-direction: column;
        width: 80%;
        height: 100vh;
        padding: 20px;
        transition: 0.3s ease-in-out;
    }

        .nav-menu li {
            margin: 10px 30px;
        }

        .nav-menu.active {
            left: 0;
        }
}
#myInput {

}

#myUL {
    /* Remove default list styling */
    list-style-type: none;
}

    #myUL ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
        background-color: #EAF0F6;
   
    }

    #myUL li {
        list-style: none;
        display: inline-block;
        margin: 0 20px;
       
        margin-top: 25px;
    }

        #myUL li a {
            color: #33475B;
            text-align: center;
            font-weight: bold;
            text-decoration: none;
        }

.details {
    width: 35%;
    float: left;
    margin-left: 10px;
}



.container1 {
    justify-content: normal;
    margin-top: 50px;

}

    .container1 h2 {
        font-size: 30px;

    }

    .container1 ul {
        list-style-type: none;
        text-decoration: none;

    }

table {
    border-collapse: collapse;
    font-size: 0.9em;

}
table thead tr {
    color: var(--main-color);
    background-color: black;
    text-align: center;
}
table th,
table td {
    padding: 12px 15px;
}
table, th, td {
    border: 1px solid white;
}
@media only screen and (max-width: 640px) {
    .details {
        width: 150px;
        margin-left: 20px;
    }
}
.movie-item1 {

    position: relative;

    padding-top: 140%;
    cursor: pointer;
}
.movie-item1 img {
    max-height:280px;
    min-height:280px;
    width: 200px;
    margin-right: 20px;

}
.banner-meta {
    color:var(--main-color);
}
.contact-form {
    width: 100%;
    height: 100vh;
    display: flex;

    align-items: center;
    justify-content: center;
}

    .contact-form h1 {
        color: var(--text-color);
        font-weight: 600;
        margin-bottom: 20px;
    }

    .contact-form form {
        background-color: black;
        margin-top: 50px;
        display: flex;
        flex-direction: column;
        padding: 2vw 4vw;
        width: 90%;
        max-width: 600px;
        border-radius: 10px;
    }


.contact-form form input, .contact-form form input {
    border: 0;
    margin: 10px 0;
    padding: 20px;
    outline: none;

    font-size: 16px;
}

form button {
    padding: 15px;
    background: var(--main-color);
    font-size: 16px;
    outline: none;
    color: var(--text-color);
    border: 0;
    cursor: pointer;
    margin: 20px auto 0;
    width: 150px;
    border-radius: 30px;
}
.view{
    float: right;
    border: 1px solid var(--main-color);
    border-radius: 18px;
    background: var(--main-color);
    color: black;

}
.about{
    padding: 78px 0;

    background:;
}
.about img{
    height: auto;
    width: 420px;
}
.about-text{
    width: 550px;
}
.mainabout{
    width: 1130px;
    max-width: 95%;
    margin: 0 auto;
    display:flex;
    align-items:center;
    justify-content: space-between;
}
.about-text h1{
    color:white;
    font-size: 80px;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.about-text p{
    color: #fcfc;
    letter-spacing: 1px;
    line-height: 28px;
    font-size: 18px;
    margin-bottom: 45px;
}
@media only screen and (max-width: 640px){
    .about img {
        height: auto;
        width: 100%;
    }
    .mainabout {
        width: 640px;

        margin: 0 auto;
        display: block;
        align-items: center;
        justify-content: normal;
    }
    .about-text{
        width:100%;
    }

}
.contain{


    display: flex;
 
    justify-content:center;
    align-items: center;

   
}
.btn-send{
    border:0;
    background-color: var(--main-color);
    border-radius: 30px;
    cursor: pointer;
    outline:none;
    font-size: 12px;
    font-weight:500;
    color: black;
    padding:5px;



}
.btn-hide{
    border: 0;
    background-color: var(--main-color);
    border-radius: 30px;
    cursor: pointer;
    outline: none;
    font-size: 12px;
    font-weight: 500;
    color: black;
    padding: 5px;
    display:none;
}
.card {
    background: black;
    border-radius: 6px;
    box-shadow: 0 5px 5px rgb(0, 0, 0, 0.2);
    padding: 1em;
    position:absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    width: 400px;
    transform: translate(-50%.-50%);
    transform: scale(0.1);
    transition: all 0.5s;
    display:none;
}
.card-img{
    width: 100px;
    height: 100px;
   
}
.card td{
    color:var(--text-color);
    font-size: 10px;
    margin: 30px 0 10px;

}
.card button {
    width: 100%;
    margin-top: 50px;
    padding: 10px 0;
    background: var(--main-color);
    color: black;
    border: 0;
    outline: none;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 5px 5px rgb(0, 0, 0, 0.2);
}
.open-popup{
    display: block;
    top: 50%;

    transform: scale(1);
}
.red {
    background: red;
    width: 60px;
    height: 60px;
}
.yellow {
    background: yellow;
    width: 60px;
    height: 60px;
}
/*episodes and seasons filter*/
.episode{
    width:;
    margin-right: 25px;
}
.container2 {
    overflow: hidden;
    margin-bottom: 300px;
    min-height: 300px;
    background: rgba(0,0,0,0.3 );

}
.hide{
    display:none;
}
.bcolor{
    color:var(--body-bg);
}
.filterDiv {
    float: left;
    background-color: #2196F3;
    color: #ffffff;
    width: 100px;
    height:30px;
    text-align: center;
    margin-left:5px;
    margin-top:5px;
    display: none; /* Hidden by default */
    align-content:center;

}

/* The "show" class is added to the filtered elements */
.show {
    display: block;
}

/* Style the buttons */
.btn2 {
    border: none;
    outline: none;
    padding: 12px 16px;
    background-color: #f1f1f1;
    cursor: pointer;
    
}

    /* Add a light grey background on mouse-over */
    .btn2:hover {
        background-color: #ddd;
    }

    /* Add a dark background to the active button */
    .btn2.active {
        background-color: #666;
        color: white;
    }
@media only screen and (max-width: 640px){
    .container2{
        margin-bottom:50px;
    }
}
.selectdiv{
    margin-bottom: 35px;
}
.selectdiv select{
    color:var(--main-color);
    border: 1px solid black;
    background: black;
    height: 45px;
    margin-right: 10px;
    border: 1px var(--main-color) solid;
}
@media only screen and (max-width: 640px) {
    .selectdiv select {
        margin-left: 20px;
        margin-top:10px;
    }
    .card {
        margin: auto;
        position: absolute;
        top: 50px;
        left: 5%;
        right: 5%;
        width: 90%;
        height: 250px;
        bottom: 50px;
        right: 50px;
        z-index: 1;
    }
    .table{
        width:100%;
    }
}
.search-box {
    width: fit-content;
    height: fit-content;
    position: relative;
    margin-top: 30px;
}

.input-search {
    height: 50px;
    width: 50px;
    border-style: none;
    padding: 10px;
    font-size: 18px;
    letter-spacing: 2px;
    outline: none;
    border-radius: 25px;
    transition: all .5s ease-in-out;
    background-color: black;
    padding-right: 40px;
    color: #fff;
}

    .input-search::placeholder {
        color: var(--main-color);
        font-size: 18px;
        letter-spacing: 2px;
        font-weight: 100;
    }

.btn-search {
    width: 50px;
    height: 50px;
    border-style: none;
    font-size: 20px;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    padding-top:5px;
    right:0;
    color: var(--main-color);
    background-color: transparent;
    pointer-events: painted;
}

    .btn-search:focus ~ .input-search {
        width: 300px;
        border-radius: 0px;
        background-color: transparent;
        border-bottom: 1px solid rgba(255,255,255,.5);
        transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
    }

.input-search:focus {
    width: 300px;
    border-radius: 0px;
    background-color: transparent;
    border-bottom: 1px solid rgba(255,255,255,.5);
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}

