.accordion {
    background-color: #1a1b22;
    cursor: pointer;
    padding: 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 1s;
}
.panel {
    width: 100%;
    background-color: #4e5166;
    max-height: 0px;
    transition: max-height 0.4s ease;
    overflow: auto;
    overflow-y: hidden;
}
.active, .accordion:hover {
  background-color: #424456; 
}
.accordion h2{
    font-size: 32px;
}
.panel-content {
    padding: 16px; /* padding goes here */
}
.video-content{
    display: flex;
    justify-content: left;
    min-width: 660px;
}
.video-content > div{
    margin-left: 20px;
}
.video-content ul{
    color: #c3c5d1;
    margin-left: 20px;
    font-family: Poppins;
}
.panel a{
    border: 1px solid #9cb8cd;
    border-radius: 5px;
    color: #9cb8cd;
    padding: 1px 10px;
    transition: 0.5s all
}
.panel a:hover{
    color: #799fbc;
    background-color: #1a1b22;
}
.block{
    display: block;
}
.tutorial-video{
    width: 400px !important;
}
@media (max-width: 500px){
    .panel video{
        width: 200px;
    }
    .tutorial-video{
        width: 300px !important;
    }
    .video-content{
        min-width: 600px;
    }
}