
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    

}
body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.material-icons{
    color: rgb(96, 96,96);
    
}
.material-icons :hover{
    background-color: #e5e5e5;
}

.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 15px;
}

.header-left{
    display: flex;
    align-items: center;
}

.header-left img{
    
    width: 100px;
    margin-left: 10px;
}

.header i{
    padding: 0px 7px;
    cursor: pointer;
}

.header-search form {
    border: 1px solid #ddd;
    height: 35px;
    padding: 0;
    margin: 0;
    display: flex;
    border-radius: 30px;
}
.header-search input{
    width: 500px;
    padding: 10px;
    border: none;
    margin: 0;
    border-radius: 30px;
}

.header-search button{
    border: none;
    height: 100%;
    padding: 0;
    margin: 0;
    border-top-right-radius: 19px;
    border-bottom-right-radius: 19px;


}

.main-body{
    height: calc(100vh - 70px);
    display: flex;
    overflow: hidden;
}

.side-bar{
    height: 100%;
    width: 230px;
    background-color: #fff;

}

.side-bar-categories{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    margin-bottom: 15px;
}

.category{
    display: flex;
    align-items: center;
    padding: 12px 25px;
}

.category span{
    margin-left: 15px;
}

.category :hover{
    background-color: #e6e6e5;
    cursor: pointer;

}


.banner img{
    width:100%;
    margin-top: 5px;
   
    
}

.banner-contents img{
    width :30%;
    position: absolute;
    top: 40px;
    padding-left: 20px;
    padding-top: 60px;
    padding-left: 70px;


}

.videos{
    background-color: #fff;
    width: 100%;
    height:100%;
    padding: 15px 25px;
    border-top: 1px solid #fff;
    overflow-y: scroll;
}

.video-container{
    display: flex;
    flex: row;
    justify-content: space-around;
    flex-wrap: wrap;
    


}

.video{
    width: 310px;
    margin-right: 10px;
    margin-bottom: 30px;

}

.video-thumbnail{
    width: 100%;
    height: 170px;
    
}

.video-thumbnail img{
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 20px;
}

.author img{
    object-fit: cover;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    margin-right: 10px;
}

.video-details{
    display: flex;
    margin-top:10px;
}

.title{
    display: flex;
    flex-direction: column;

}

.title h3{
    color:rgb(3,3,3);
    line-height: 18px;
    font-size:14px;
    margin-bottom: 6px;
}