*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}
body.fill{
    background: whitesmoke;
    color: gray;
}
body.fill h3{
    color: gray;
}
body.fill .vid h4,
.video{
    color: white;
}
nav.show{
    background: whitesmoke;
    color: gray;
    box-shadow: 0px 6px 15px rgba(12, 12, 12, 0.15);
}
.mode{
    cursor: pointer;
}
body{
    background: rgb(29, 28, 28);
    color: white;
}
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 70px;
    padding: 10px 40px 5px 40px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 3;
    background: rgba(59, 59, 59, 0.623);
}
nav .logo{
    width: 130px;
    height: 100%;
    overflow: hidden;
}
nav .logo img{
    width: 100%;
    height: 100%;
}
nav .join{
    /* background: red; */
    font-size: 20px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 178px;
}
nav .join a{
    text-decoration: none;
    color: whitesmoke;
}
nav .join #real{
    background: red;
    font-size: 15px;
    padding: 7px 10px;
    text-align: center;
    border-radius: 5px;
}
/* nav .join #real:hover{
    padding: 7px 10px;
    background: red;
    color: white;
    border-radius: 7px;
} */
nav .join button{
    padding:  7px 10px;
    outline: none;
    border: 2px solid white;
    background: transparent;
    border-radius: 5px;
}
nav .join button a{
    text-decoration: none;
    color: white;
}

.heading{
    margin: 3% 0;
    text-align: center;
    padding: 10px;
    color: white;
    font-size: 35px;
}
.container{
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
}
.container .main-video{
    border-radius: 5px;
    padding: 10px;
    width: 700px;
    height: 700px;
    overflow: hidden;
    background:rgba(59, 59, 59, 0.623);
}
.container .main-video h4{
    margin: 20px 0;
}
.container .main-video video{
    width: 100%;
    border-radius: 5px;
}
.container .video-list{
    height: 705px;
    width: 500px;
    text-align: center;
    overflow-y: scroll;
}
.container .video-list::-webkit-scrollbar{
    width: 10px;

}
.container .video-list::-webkit-scrollbar-track{
    background: whitesmoke;
    border-radius: 5px;
}
.container .video-list::-webkit-scrollbar-thumb{
    background: rgba(59, 59, 59, 0.623);
    border-radius: 50px;
}
.container .video-list .vid{
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 15px;
    background:  rgba(59, 59, 59, 0.623) ;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
}
.container .video-list .vid:hover{
    background: black;
}
.container .video-list .vid.active{
    background: black;   
}
.container .video-list .vid.active .title{
    color: gray;   
}
.container .video-list .vid video{
    width: 200px;
    border-radius: 5px;
}
section{
    margin-top: 5%;
    text-align: center;
}
section h1{
    font-size: 30px;
}
.related{
    display: flex;
    margin-top: 2%;
    text-align: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;

    /* transform: translate(50%); */
    width: 100%;
    padding: 20px 40px;
  

}
.related .small-img{
    width: 300px;
    height: 210px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.related .small-img img{
    display: block;
    width: 100%;
    height: 100%;

}

/*---------------- lastpart area------------- */
.last-part{
    margin-top: 3%;
    width: 100%;
    padding: 0 40px;
}
.last-part h1{
    margin-bottom: 3%;
    position: relative;
    z-index: 2;
}
.last-part h1::before{
    content: "";
    position: absolute;
    top: 0;
    left: 2px;
    width: 35px;
    height: 35px;
    background: rgb(148, 145, 145);
    z-index: 1;
    border-bottom-right-radius: 30px;
    border-top-left-radius: 30px;
    opacity: 0.5;
}
.last-part .parent-div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    /* color: red; */
}
.last-part .parent-div h2{
    margin-bottom: 7px;
    font-weight: 300;
}
.last-part .parent-div p{
    color: rgb(148, 145, 145);
}
.last-part .parent-div .inner-div{
    width: 48%;
    /* background: green;  */
    height: 110px;
    margin-bottom: 20px;
}
/*----------------------------- footer area------------------------ */
footer{
    margin-top: 5%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding:  0 40px;
    width: 100%;
    color: gray;
    font-family: 'poppins', sans-serif;
    /* background: black; */
}
footer h4{
    margin-bottom: 20px;
}
footer h4 a{
    font-size: 17px;
    text-decoration: none;
    text-decoration: none;
    color: gray;
}
footer .links{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
footer .links ul{
    list-style: none;
    margin-bottom: 20px; 
}
footer .links ul li{
    margin-bottom: 15px;
}
footer .links ul li a{
    text-decoration: none;
    color: gray;
    font-size: 15px;
}
footer .links ul li a:hover,
footer h4 a:hover{
    text-decoration: underline;
}

@media (max-width: 480px){
    .mode{
        margin-right: 10px;
    }
    nav{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 70px;
        padding: 10px 30px 5px 30px;
        position: sticky;
        top: 0;
        left: 0;
        z-index: 3;
        background: rgba(59, 59, 59, 0.623);
    }
    nav .logo{
        width: 100px;
        height: 100%;
        overflow: hidden;
    }
    nav .logo img{
        width: 100%;
        height: 100%;
    }
    nav .join{
        /* background: red; */
        font-size: 15px;
        font-weight: 400;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 120px;
        /* border: 2px solid green; */
    }
    nav .join a{
        text-decoration: none;
        color: whitesmoke;
    }
    nav .join #real{
        background: red;
        font-size: 10px;
        padding: 5px;
        text-align: center;
        border-radius: 5px;
    }
    /* nav .join #real:hover{
        padding: 7px 10px;
        background: red;
        color: white;
        border-radius: 7px;
    } */
    nav .join button{
        padding:  5px ;
        outline: none;
        border: 2px solid white;
        background: transparent;
        border-radius: 5px;
        font-size: 10px;
    }
    nav .join button a{
        text-decoration: none;
        color: white;
    }
    
    .heading{
        margin: 3% 0;
        text-align: center;
        padding: 10px;
        color: white;
        font-size: 27px;
    }
    .container{
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        padding: 0 30px;
        width: 100%;
    }
    .container .main-video{
        border-radius: 5px;
        padding: 10px;
        width: 100%;
        height: 450px;
        overflow: hidden;
        background:rgba(59, 59, 59, 0.623);
    }
    .container .main-video p{
        font-size: 17px;
    }
    .container .main-video h4{
        margin: 5px 0;
    }
    .container .main-video video{
        width: 100%;
        border-radius: 5px;
    }
    .container .video-list{
        margin-top: 8%;
        height: 350px;
        width: 100%;
        text-align: center;
        overflow-y: scroll;
    }
    .container .video-list::-webkit-scrollbar{
        width: 10px;
    
    }
    .container .video-list::-webkit-scrollbar-track{
        background: whitesmoke;
        border-radius: 5px;
    }
    .container .video-list::-webkit-scrollbar-thumb{
        background: rgba(59, 59, 59, 0.623);
        border-radius: 50px;
    }
    .container .video-list .vid{
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 15px;
        background:  rgba(59, 59, 59, 0.623) ;
        padding: 15px;
        border-radius: 10px;
        cursor: pointer;
    }
    .container .video-list .vid:hover{
        background: black;
    }
    .container .video-list .vid.active{
        background: black;   
    }
    .container .video-list .vid.active .title{
        color: gray;   
    }
    .container .video-list .vid video{
        width: 120px;
        border-radius: 5px;
    }
    section{
        margin-top: 5%;
        text-align: center;
    }
    section h1{
        font-size: 30px;
    }
    .related{
        display: flex;
        margin-top: 2%;
        text-align: center;
        align-items: center;
        /* flex-direction: column; */
        flex-wrap: wrap;
        justify-content: center;
    
        /* transform: translate(50%); */
        width: 100%;
        padding: 10px 30px;
      
    
    }
    .related .small-img{
        text-align: center;
        width: 90%;
        height: 180px;
        margin-bottom: 20px;
        border-radius: 10px;
        overflow: hidden;
        cursor: pointer;
    }
    
    .related .small-img img{
        display: block;
        width: 100%;
        height: 100%;
    
    }

    /*------------ .last-part---------- */
    .last-part{
        margin-top: 2%;
        width: 100%;
        padding: 0 30px;
    }
    .last-part h1{
        margin-bottom: 4%;
        position: relative;
        z-index: 2;
        width: 100%;
        text-align: center;
    }
    .last-part h1::before{
        /* content: "";
        position: absolute;
        top: 0;
        left: 10%;
        width: 35px;
        height: 35px;
        background: rgb(148, 145, 145);
        z-index: 1;
        border-bottom-right-radius: 30px;
        border-top-left-radius: 30px;
        opacity: 0.5; */
        display: none;
    }
    .last-part .parent-div{
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* flex-direction: column; */
        flex-wrap: wrap;
        width: 100%;
        /* color: red; */
    }
    .last-part .parent-div h2{
        margin-bottom: 7px;
        font-weight: 300;
        font-size: 17px;
        text-align: left;
        width: 100%;
    }
    .last-part .parent-div p{
        color: rgb(148, 145, 145);
        font-size: 16px;
    }
    .last-part .parent-div .inner-div{
        width: 48%;
        height: 120px;
        margin-bottom: 20px;
        overflow: hidden;
    }
    footer{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 20px;
        width: 100%;
        color: gray;
        font-family: 'poppins', sans-serif;
        background: transparent;
        text-align: center;
    }
    footer h4{
        margin-bottom: 20px;
    }
    footer h4 a{
        font-size: 20px;
        text-decoration: none;
        text-decoration: none;
        color: gray;
    }
    footer .links{
        display: flex;
        /* justify-content: space-between; */
        align-items: flex-start; 
        flex-direction: column;
        text-align: left;
        width: 100%;
        padding: 10px;
    }
    footer .links ul{
        list-style: none;
        margin-bottom: 20px; 
    }
    footer .links ul li{
        margin-bottom: 15px;
    }
    footer .links ul li a{
        text-decoration: none;
        color: gray;
        font-size: 18px;
    }
    footer .links ul li a:hover,
    footer h4 a:hover{
        text-decoration: underline;
    }
    
    
   
    

}