.timetable__items{
    display: flex;
    overflow: scroll;

    margin-top: 10px;
    border-bottom: 2px solid #dfe2e9;
}
.timetable__title{
    margin-top: 50px;
}

.timetable__item{
    padding: 20px 25px;
    transition: .1s all;
}
.timetable__item:hover{
    border-bottom: 5px solid;
    padding-bottom: 15px;

    color: #2A2173;
}



.timetable__content{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-gap: 20px;

    margin-top: 20px;
}

@media screen and (max-width: 992px) {
    .timetable__content{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
}
@media screen and (max-width: 768px) {
    .timetable__content{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 575px) {
    .timetable__content{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 380px) {
    .timetable__content{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}

.timetable__content-item{

    text-align: center;

    padding: 10px;
    box-sizing: border-box;
    
    border: 2px solid #dfe2e9;
}

.timetable__content-item:hover{
    border-color: #2A2173;
}

