section.language_courses {
    padding: 90px 0;
    display: block;
    width: 100%;
    overflow: hidden;
    background: var(--dark-blue-100);
}

section.language_courses h2 {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    font-style: italic;
    text-transform: uppercase;
}

section.language_courses .language_courses__subtitle {
    margin-bottom: 60px;
    color:#fff;
}

section.language_courses .language_courses__item {
    max-width: 467px;
    width: 467px;
    border-radius: 12px;
    background: var(--dark-blue-100);
    padding:40px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    height: 100%;
}

section.language_courses .language_courses__item.espanhol { background: #E70022; }
section.language_courses .language_courses__item.ingles { background: #36408566; }
section.language_courses .language_courses__item.frances { background: #01A7EF; }
section.language_courses .language_courses__item.alemao { background: #FFBA00; }
section.language_courses .language_courses__item.chines { background: #E70022; }
section.language_courses .language_courses__item.japones { background: #E70022; }
section.language_courses .language_courses__item.italiano { background: #00931C; }
section.language_courses .language_courses__item.portugues { background: #FFBA00; }

section.language_courses .language_courses__item img {
    min-width: 75px;
    min-height: 75px;
    max-width: 75px;
    max-height: 75px;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
    display: block;
}

section.language_courses .splide__track {
    overflow: visible;
}

section.language_courses h3 {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}


@media all and (max-width: 768px ) {
    section.language_courses .container {
        max-width: 90%;
    }

    section.language_courses .language_courses__item {
        max-width: 80vw;
    }

    section.language_courses .language_courses__item img {
        min-width: 45px;
        min-height: 45px;
        max-width: 45px;
        max-height: 45px;
    }

    section.language_courses .language_courses__item p {
        font-size: 12px;
    }
}