*{
         margin:0;
         padding:0;
         box-sizing:border-box;
         text-decoration: none;
         font-family:'Lucida Sans', 'Lucida Sans Regular',
         'Lucida Grande', 'Lucida Sans Unicode', 
         Geneva, Verdana, sans-serif;
    }

    .header{
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* border: 1px solid black; */
    }

    .cinema-image{
        width: 270px;
        height: 100px;
        margin: 10px auto;
    }

    .cinema-name{
         /*background-color: yellow;*/
         color: black;
         margin-right: 40px;
    }

    .social-media-logos{
        width: 50px;
        height: 50px;
        border-radius: 50px;
    }

    .logos{
        /*background-color: black;*/
        margin: 10px;
    }

    .navgation-bars{
        display: flex;
        background-color: black;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        height: 50px;
        color: white;
    }

    .nav-menu{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .hamburger{
        display: none;
        width: 44px;
        height: 44px;
        margin-left: auto;
        background-color: black;
        border: 1px solid white;
        cursor: pointer;
        padding: 9px;
    }

    .hamburger span{
        display: block;
        width: 100%;
        height: 3px;
        margin: 5px 0;
        background-color: white;
    }

    .nav-bars a{
        color: white;
        margin: 0 40px 0 40px;
    }

    .nav-bars a:hover{
        border: 2px solid white;
        padding: 12px 15px 12px 15px;;
        background-color: white;
        color: black;
        /* border-radius: 40px; */
        margin: 0 40px 0 40px;
    }


    .video-slide{
        display: grid;
        background-color: white;
        height: 450px;
        /* border: 1px solid black; */
        justify-content: center;
        align-content: center;
    }

    .video{
        padding-top: 30px;
        padding-left: 10px;
        height: 440px;
        width: 100%; 
    }

    .discount{
        background-color: black;
        display: flex;
        flex-direction: row;
        height: 50px;
        justify-content: end;
        align-items: center;
        margin-top: 30px;   
    }

    .discount-text{
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1;
        margin: 20px auto;
        background-color: black;
    }

    .top-rated{
        display: flex;
        color: white;
        background-color: transparent;
        position: absolute;
        margin-top: 20px;
        margin-left: 30px;
        z-index: 1;
        border:1px solid white;
    }

    .top-rated-movie{
        font-size: 10px;
        padding: 10px;
    }

    .movies-div{
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        background-color: black;
        flex-direction: row;
        width: 100%;
        color: white;
        margin-top: 10px;
        position: relative;
        
    }

    .flex-items{
        background-color: rgba(20, 19, 19, 0.81);
        width: 230px;
        border-radius: 1px;
        margin-top: 50px;
        margin-bottom: 30px;
        box-shadow:0 5px 15px rgba(20, 19, 19, 0.81);
    } 

    .flex-items:hover{
            transform:translateY(-8px);
    }

    .flex-item{
        background-color: rgba(20, 19, 19, 0.81);
        width: 230px;
        border-radius: 1px;
        margin-top: 50px;
        margin-bottom: 30px;
    } 

    .movies-picture{
        border-radius: 20px;
        width: 200px;
        height: 300px;
        /* border: 1px solid white; */
        margin-left: 15px;
        margin-top: 20px;
    } 

    .movie-text-color{
        color: white;
        text-align: center;
        font-size: 15px;
    }

    .price-tag{
        text-align: center;
        font-size: 18px;
        color: white;
    }

    .old-price{
        color: red;
        text-decoration: line-through;
        text-decoration-color: red;
    }

    .buy-ticket-btn{
        width: 290px;
        height: 50px;
        background-color: white;
        border: solid white;
        color: black;
        margin-left: 20px; 
        margin-bottom: 5px;
        font-size: 15px;
    }

    .buy-ticket-btn:hover{
        transform:scale(1.1);
    }

    .block-busters{
        background-color: white;
        color: black;
        display: flex;
        flex-direction: row;
        height: 50px;
        justify-content: center;
        align-items: center;
        
    }

    .block-busters-text{
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1;    
    }

    audio{
        width: 210px;
        height: 50px;   
        margin: 10px;
    }

    .partners-div{
        display: flex;
        flex-direction: row;
        background-color: rgb(8, 4, 4);
        height: 60px;
        width:80%;
        margin-top: 50px;
        justify-content: center;
        align-items: center;
    }

    .movie-header{
        background-color: white;
        display: flex;
        flex-direction: row;
        height: 60px;
        justify-content: end;
        align-items: center;
        /* border: 1px solid black; */
    }

    .movie-text{
        color: black;
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1;
    }

    /* .movies-menu-div{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: repeat(4, 25%);
        height: auto;
        color: white;
        background-color: black;
        padding: 20px;
        row-gap: 5px;
        column-gap: 5px;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    } */

    .movies-menu-div{
            display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        background-color: black;
        padding: 20px;
        margin-bottom: 20px;
    }

    .grid-items{
        background-color: rgba(20, 19, 19, 0.81);
        width: 100%;
        max-width: 280px;
        margin: 0 auto 30px;
        /* margin-left: 8pfx;
        margin-bottom: 30px; */
        box-shadow:0 5px 15px rgba(39, 37, 37, 0.81);
    }

    .grid-items:hover{
            transform:translateY(-8px);
    }

    .movies-menu-picture{
        border-radius: 20px;
        width: 250px;
        height: 350px;
        margin-left: 15px;
        margin-top: 20px;
    } 

    .buy-tickets-btn{
        width: 250px;
        height: 50px;
        background-color: white;
        border: solid white;
        color: black;
        margin-left: 15px;
        margin-bottom: 20px;
        font-size: 15px;
    }

    .buy-tickets-btn:hover{
            transform:scale(1.1);
        }

    .movie-text-color{
        color: white;
        text-align: center;
        font-size: 15px;
    }

    

    /*....... MOVIE INFORMATION SECTION....... */

    /* .movie-info-section{
    background-color: black;
    color: #fff;
    width: 100%;
    height: 550px;
    }

    .moviein-flex-item1{
        background-color: rgba(20, 19, 19, 0.81);
        margin: 100px 20px;
        width: 50%;
        padding: 20px 5px;
        text-align:center;
    }

    .moviein-flex-item2{
        margin: auto;
        padding: 30px;
        line-height: 30px;
    }

    .moviein-picture{
        margin: 20px 10px 20px 180px;
        width: 50%;
        border-radius: 10px;
    } */

    .movie-info-section{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    /* margin: 40px auto; */
    padding: 30px;
    background-color: black;
    color: white;
    }

    .moviein-flex-item1{
        flex:1;
    }

    .moviein-flex-item2{
        flex:1;
        color:white;
    }

    .videos{
        width:100%;
        height:auto;
        border-radius:8px;
        padding-top: 30px;
    }

    .ticket-row{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    }

    .movie-input{
        width: 80px;
        height: 50px;
    }

    .buy-ticket-bt{
        height: 50px;
        padding: 0 25px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .buy-ticket-btn{
        width: 200px;
        margin-bottom: 20px;
    }

    .times{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:20px;
    color: white;
    }

    .times span{
        background: rgba(20, 19, 19, 0.81);
        padding:10px 15px;
        border-radius:5px;
        border:3px solid white;
    }

    .movie-input{
        width:60px;
        height:50px;
        text-align:center;
    }

    /* CONTACT US PAGE CSS */

    .contact-table{
            background-color: black;
            color: white;
            /* margin: 20px; */
            width: 100%; 
            height: auto;
    }

    input{
        width: 200px;
        height: 30px;
    }

    .contact-info{
        display: flex;
        background-color: white;
        justify-items: space-evenly;
        align-items: center;
        margin: 20px;
        color: white;
        flex-direction: row;
        width: 100px;
    }

    .contact-flex-item{
        background-color: black;
        gap: 20px;
    }
    
    .form-info{
        margin-left: 120px;
        width:100%;
        line-height: 25px;
        height: 400px;
    }
     
    .map-section{
     padding: 10px; 
     width: 40%;
     }

    .form-section{
        width:40%;
        padding-right: 200px;
    }

     .social-table{
    width:100%;
    border-collapse:collapse;
    margin:30px 0;
    }

    .social-table tr{
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    .social-table td{
        display:block;
        width:100%;
        padding:25px 15px;
        text-align:center;
    }

    /* ABOUT US CSS */
    .bckg{
        height: 300px;
        background-size: cover;
    }

    .bckg-img{
        width: 100%;
        height: 500px;
    }

    .about-sect{
         display: flex;
         flex-direction: row;
         background-color: black;
         color: white;
         margin-top: 100px;
         justify-content: space-evenly;
         align-items: center;
         width: 100%;
         text-align: center;
    }

    .mission{
        width: 50%;
        background-color: black;
    }

    .vision{
        width: 20%;
        background-color: black;
    }

    .aim{
        width: 20%;
        background-color: black;
    }

    .values{
        width:100%;
        height: 250px;
        background-color: rgb(8, 4, 4);
        color: white;
        border: 1px solid white;
    }

    .morals-width{
        width: 60%;
    }

    .moral-width{
        width:40%;
    }

    .morals{
        height:250px;
        text-align: start;
    }

    .reviews{
     width: 100%; 
     height: 100px;
     background-color: black;
     color: white;
     margin-top: 2px;
     text-align: center;
    }

    .reviews-width{
        width: 25%;
    }

    .team-section{
      text-align:center;
    }

    .team-title{
      font-size:48px;
      color: white;
      /* margin-bottom:50px; */
      background-color: rgb(8, 4, 4);
    }

    .team-container{
      display:flex;
      justify-content:center;
      /* gap:10px; */
      background-color: black;
      margin-bottom: 20px;
    }

    

    .team-card{
      /* background:rgba(20, 19, 19, 0.81); */
      width:100%;
      margin: 40px 50px;
      /* border-radius:12px; */
      /* padding:25px 20px; */
      /* box-shadow:0 4px 10px rgba(0,0,0,0.1); */
      transition:0.3s ease;
    }

    /* .team-card:hover{
      transform:translateY(-10px);
    } */

    .team-image{
      width:200px;
      height:260px;
      margin:auto;
    }

    .team-image img{
      width:100%;
      height:100%;
      object-fit:cover;
    }

    .team-card h2{
      font-size:25px;
      margin-bottom:15px;
      color:white;
    }

    .role{
      /* font-weight:bold; */
      margin-bottom:20px;
      display:block;
      color:white;
    }

        /* PARTNERS */

        .partners-section{
            background:white;
            /* margin-top:10px; */
            padding:50px 20px;
            text-align:center;
        }

        .partners-section h2{
            font-size:40px;
            margin-bottom:20px;
        }

        .partner-logos{
            display:flex;
            justify-content:center;
            gap:40px;
            flex-wrap:wrap;
        }

        .partner-logos img{
            width:120px;
            height:auto;
            object-fit:contain;
            transition:0.3s;
        }

        .partner-logos img:hover{
            transform:scale(1.1);
        }

        /* NEWS LETTER  */
        
        .newsletter{
            /* display: flex; */
            /* flex-direction: column; */
            line-height: 30px;
            /* text-align:center; */
            /* padding:40px; */
            background:white;
            /* align-items: center; */
            text-align: center;
        }

        .newsletter input{
            width:300px;
        }

        .subscribe{
            width: 150px;
            height: 50px;
            margin-right: 50px;
            margin-bottom: 30px;
            background-color: black;
            color: white;
            border: 2px solid black;
        }

        .is-subscribed{
            background-color: gray;
            color: black;
        }

        .subscribe:hover{
            background-color: white;
            color: black;
        }

        .enter-email{
            width: 300px;
            height: 50px;
            margin-left: 50px;
            padding-left: 10px;
        }

        /* .enter-email::placeholder{
            padding-left: 5px;
        } */

        .footer-section{
            display: flex;
            flex: 1;
            flex-direction: row;
            text-align: center;
            background-color: black;
            color: white;
            height:60px;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
        }

        /* .footer-section{
            display:flex;
            justify-content:center;
            align-items:center;
            width:100%;
            min-height:70px;
            padding:20px;
            margin-top:30px;
            clear:both;
        } */

        

    /* RESPONSIVE */

        @media(max-width:1024px){
            .header{
                padding: 0 20px;
                gap: 20px;
            }

            .cinema-image{
                width: 220px;
                height: auto;
            }

            .cinema-name{
                margin-right: 0;
                text-align: center;
            }

            .navgation-bars{
                justify-content: center;
                height: auto;
            }

            .nav-menu{
                justify-content: center;
                gap: 12px;
                padding: 12px;
                flex-wrap: wrap;
            }

            .nav-bars a,
            .nav-bars a:hover{
                display: inline-block;
                margin: 0;
                padding: 10px 14px;
            }

            .video-slide{
                height: auto;
                padding: 24px 16px;
            }

            .video-slide > div{
                width: 100%;
            }

            .video{
                display: block;
                width: 100%;
                max-width: 900px;
                height: auto;
                margin: 0 auto;
            }

            .movies-div{
                flex-wrap: wrap;
                gap: 24px;
                padding: 30px 20px;
            }

            .flex-items,
            .flex-item{
                margin: 0;
            }

            .top-rated{
                position: static;
                width: fit-content;
                margin: 20px auto 0;
                background-color: black;
            }

            .partner-logos{
                gap: 28px;
            }

            .team-container{
                display:grid;
                grid-template-columns:repeat(2, 1fr);
                gap:30px;
                padding:30px 20px;
                justify-items:center;
            }

            .team-card{
                width:100%;
                max-width:320px;
            }

            .team-image img{
                width:100%;
                height:auto;
                display:block;
            }

}
        

            @media screen and (max-width:768px){

            .header{
                display:flex;
                justify-content:space-between;
                align-items:center;
                flex-direction:row;
                padding:10px 15px;
            }

            .header > div:first-child{
                flex:1;
                display:flex;
                justify-content:flex-start;
            }

            .header > div:last-child{
                flex:1;
                display:flex;
                justify-content:flex-end;
            }

            .cinema-image{
                width:130px;
                height:auto;
                margin:0;
            }

            .cinema-name{
                display:none;
            }

            .logos{
                display:flex;
                gap:8px;
                margin:0;
            }

            .social-media-logos{
                width:30px;
                height:30px;
            }

            .navgation-bars{
                flex-direction: column;
                align-items: stretch;
                padding: 0;
            }

            .hamburger{
                display: block;
                margin: 8px 12px 8px auto;
            }

            .nav-menu{
                display: none;
                flex-direction: column;
                align-items: stretch;
                width: 100%;
                padding: 0;
            }

            .nav-menu.active{
                display: flex;
            }

            .nav-bars{
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(255,255,255,0.2);
            }

            .nav-bars a,
            .nav-bars a:hover{
                width: 100%;
                padding: 14px 10px;
                border: 0;
            }

            .discount{
                height: auto;
                min-height: 50px;
                margin-top: 10px;
                padding: 8px 12px;
            }

            .discount-text{
                margin: 0;
            }

            .discount-text h1{
                font-size:20px;
            }

            .top-rated-movie h3,
            .block-busters-text,
            .partners-section h2{
                font-size:28px;
            }

            .movies-div{
                flex-direction: column;
                padding: 25px 16px;
            }

            .flex-items,
            .flex-item{
                width: min(100%, 320px);
                padding: 16px;
            }

            .movie-info-section{
                flex-direction: column;
            }

            .moviein-flex-item1,
            .moviein-flex-item2{
                width:100%;
            }

            .ticket-row{
                display: flex;
                align-items: center;
                justify-content: flex-start;
                gap: 10px;
            }

            .movie-input{
                width: 60px;
            }

            .buy-ticket-btn{
                width: 160px;
                margin: 0;
            }

            .movies-picture{
                display: block;
                width: 100%;
                max-width: 240px;
                height: auto;
                margin: 0 auto 15px;
            }

            .buy-ticket-btn,
            audio{
                display: block;
                width: 100%;
                max-width: 260px;
                margin: 15px auto 0;
            }

            .partners-section{
                padding: 35px 16px;
            }

            .partner-logos img{
                width: 95px;
            }

            .newsletter{
                padding: 0 16px 25px;
            }

            .newsletter h2{
                font-size: 24px;
            }

            .newsletter h3{
                font-size: 16px;
            }

            .enter-email,
            .newsletter input,
            .subscribe{
                display: block;
                width: 100%;
                max-width: 320px;
                margin: 12px auto;
            }

            .block-busters-text{
                font-size:28px;
                text-align:center;
                padding:15px;
            }

            .team-section{
                padding:20px 15px;
            }

            .team-container{
                display:grid;
                grid-template-columns:1fr;
                gap:25px;
                justify-items:center;
            }

            .team-card{
                width:100%;
                max-width:320px;
                text-align:center;
                padding:20px;
            }

            .team-image{
                width:100%;
            }

            .team-image img{
                width:100%;
                height:auto;
                border-radius:10px;
                display:block;
            }

            .team-card h2{
                font-size:24px;
                margin-top:15px;
            }

            .role{
                display:block;
                font-size:18px;
                margin-top:10px;
            }

            .footer-section{
                height: auto;
                min-height: 60px;
                padding: 16px;
                font-size: 15px;
            }
        }


            @media(max-width:480px){

            .cinema-image{
                width:110px;
            }

            .social-media-logos{
                width:26px;
                height:26px;
            }

            .cinema-name h1{
                font-size: 26px;
            }

            .discount-text h1{
                font-size: 16px;
            }

            .top-rated-movie h3,
            .block-busters-text,
            .partners-section h2{
                font-size: 22px;
            }

            .flex-items,
            .flex-item{
                width: 100%;
            }

            .movie-text-color,
            .price-tag{
                font-size: 15px;
            }
        }


       


