.events-list_block{
    margin-bottom: 140px;
}

.page-section .events-list_block{
    margin-bottom: 0;
}

.page-section .events-list_block .center1128{
    max-width: 1200px;
    padding-left: 12px;
    padding-right: 12px;
}

.sections-list{
    display: flex;
    align-items: center;
}

.sections-list__item{
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    cursor: pointer;
    transition: border-bottom-color 0.5s ease, color 0.5s ease;
}

.sections-list__item:hover,
.sections-list__item.sections-list__item--active{
    border-bottom-color: var(--orange-color);
    color: var(--orange-color);
}

.sections-list__item:not(:last-child){
    margin-right: 16px;
}

.subsections-list{
    display: flex;
    align-items: center;
    margin: 16px 0 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}
.subsections-list::-webkit-scrollbar {
    height: 5px;
}
.subsections-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}
.subsections-list::-webkit-scrollbar-thumb {
    background: #adaaaa;
    border-radius: 4px;
}

.subsections-list__item{
    font-size: 19px;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.5s ease;
    text-transform: capitalize;
}

.subsections-list__item:hover,
.subsections-list__item.subsections-list__item--active{
    color: var(--orange-color);
}

.subsections-list__item:not(:last-child){
    margin-right: 16px;
}

.calendar-slider__slide{
    padding: 32px 32px 16px;
    background-color: rgba(240, 241, 245, 0.8);
    box-sizing: border-box;
    overflow: hidden;
    min-height: 100%;
    height: unset !important;
}

.calendar-slider__title{
    font-size: 36px;
    font-weight: 500;
}

.calendar-slider__list{
    display: flex;
    flex-direction: column;
}

.calendar-event{
    display: block;
    flex: 1;
    height: 33%;
    padding: 24px 0;
    cursor: pointer;
}

.calendar-event:not(:first-child){
    border-top: 1px solid #85858533;
}

.calendar-event__date,
.calendar-event__place,
.calendar-event__type{
    font-size: 12px;
    color: var(--dark-grey-color);
}

.calendar-event__date-place{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.calendar-event__description,
.calendar-event__type{
    transition: color 0.5s ease;
}

.calendar-event:hover .calendar-event__description,
.calendar-event:hover .calendar-event__type{
    color: var(--orange-color);
}

.calendar-slider__more{
    border-bottom: 1px dashed var(--orange-color);
    color: var(--orange-color);
    font-size: 12px;
    line-height: 15px;
    margin-top: 24px;
    margin-left: auto;
    margin-right: -16px;
    display: block;
    transition: .3s;
    display: none;
}
.calendar-slider__more:hover{
    color: var(--orange-color);
}
.collapse-desktop~.calendar-slider__more, .collapsing~.calendar-slider__more{
    display: block;
}
.calendar-slider__list.collapse .calendar-event:nth-child(n+4){
    display: none;
}

.slider-head__nav {
    max-width: fit-content;
    margin: 0 10px 15px auto;

}

@media screen and (max-width: 640px) {
    .calendar-slider__wrapper{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 16px;
    }
    .calendar-slider__slide{
        padding: 32px 16px 14px;
    }
    .calendar-slider__title{
        font-size: 18px;
        margin-bottom: 0;
    }
    .calendar-event{
        padding: 16px 0;
    }
    .calendar-slider__more{
        margin-right: 0;
        margin-top: 8px;
    }
    .slider-head__nav{
        display: none !important;
    }
    .collapse~.calendar-slider__more{
        display: block;
    }
    .calendar-slider__list.collapse .calendar-event:nth-child(n+2){
        display: none;
    }

    .subsections-list{
        margin: 16px 0 20px;
        padding-bottom: 20px;
    }
}
@media screen and (max-width: 425px){
    .events-list_block{
        margin-bottom: 65px;
    }
}