.main-content {
    padding-top: var(--header-height);
}

.courses h1 {
    font-family: 'Tenor-Regular';
    text-align: center;
}

.courses-wrapper {
    row-gap: 20px;
}

.course {
    border-radius: 30px;
    padding: 20px;
    overflow: hidden;
    background-color: #faf2e6;
    column-gap: 20px;
}

.course img {
    object-fit: cover;
    object-position: center;
}

.course h2 {
    font-size: 30px;
    text-align: left;
}

.filter-container {
    column-gap: 10px;
    width: fit-content;
    margin-bottom: 20px;
}

.filter-button input {
    opacity: 0;
    width: 0;
    height: 0;
}

.filter-button label {
    background-color: transparent;
    color: #bca5de !important;
    font-family: 'Nunito-Light';
    border-radius: 30px;
    margin: 0;
    padding: 7px 20px;
    cursor: pointer;
}

.filter-button input:checked+label {
    background-color: #bca5de;
    color: white !important;
}

@media screen and (max-width: 767px) {
    .course {
        flex-direction: column;
    }

    .course .left-side img {
        width: 100%;
    }
}