/* Section Student */
#section-student {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#section-student > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 35vw;
}

#section-student img {
    max-width: 30vw;
}

#section-student p {
    margin-left: 4vw;
}

#section-student li {
    margin-top: 2vh;

    font-size: larger;
}

@media only screen and (max-width: 992px) {
    #section-student {
        flex-direction: column;
    }

    #section-student h2 {
        font-size: xx-large;
    }

    #section-student img {
        max-width: 60vw;
    }

    #section-student > div {
        width: 80vw;
    }
}

/* Section Needs */
#section-needs a {
    width: 40vw;

    margin: auto;
    margin-top: 4vh;
}

@media only screen and (max-width: 992px) {
    #section-needs a {
        width: 60vw;
    }
}

/* Section Topic */
#section-topic {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#section-topic a {
    margin-left: 2vw;
}

#section-topic li {
    margin-top: 2vh;

    font-size: larger;
}

#section-topic img {
    width: 20vw;
    max-width: 20vw;
}

@media only screen and (max-width: 992px) {
    #section-topic {
        flex-direction: column;
        align-items: center;
    }

    #section-topic img {
        width: 60vw;
        max-width: 60vw;
    }
}

.bg-custom {
    background-color: #262746 !important;
}

.bg-custom-white {
    background-color: #faf5ef !important;
}