.courses_gallery-block {
    grid-column: 1/-1;
    width: 100%;
}

.courses_gallery-block .gallery {
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    display: flex;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.courses_gallery-block .gallery::-webkit-scrollbar {
    display: none;
}

.courses_gallery-block .course-block {
    margin-right: 1rem;
}

.courses_gallery-block .nav {
    margin-top: .75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.courses_gallery-block .nav span {
    height: fit-content;
    font-family: Suisse-Intl-Light, Arial, Helvetica, sans-serif;
}

.courses_gallery-block .nav button {
    margin-left: .5rem;
}

.courses_gallery-block .nav img {
    width: 2rem;
    transition: transform 500ms;
}



/* TABLET */
@media only screen and (min-width: 720px) {
    .courses_gallery-block .nav {
        margin-top: 1rem;
    }
}


@media (hover: hover) {
    .courses_gallery-block .nav button:hover img {
        transform: rotate(-360deg);
    }
}