.advantage {
    display: flex;
    width: 100%;
    max-width: 1512px;
    margin-bottom: 32px;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
    flex-flow: column;
}

.advantage-wrapper {
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    background: #ffffff;
    align-items: center;
}

.advantage-visual-mobile {
    max-width: 343px;
    width: 100%;
}

.advantage-headline {
    margin-top: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.advantage-cards {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.advantage-card {
    background: #F8F7F5;
    padding: 20px 16px 24px 16px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.advantage-card-heading {
    margin-top: 8px;
    margin-bottom: 8px;
}

.advantage-card-text {
    max-width: 500px;
}

.advantage-card:first-child {
    margin-bottom: 12px;
}

.advantage-wrapper svg {
    fill: #313134;
    width: 32px;
    height: 32px;
}


.advantage-wrapper path {
    fill: #313134;
}

.advantage-bg-layer {
    display: none;
}

@media only screen and (min-width: 992px) {
    .advantage {
        padding-right: 40px;
        padding-left: 40px;
    }

    .advantage-wrapper {
        display: flex;
        align-items: center;
        padding: 80px;
        height: 850px;
        box-sizing: border-box;
        border-radius: 32px;
        background-image: url(../../img/education/advantage-visual-desktop.png);
        background-repeat: repeat;
        background-position: center center;
        position: relative;
    }

    .advantage-headline {
        position: relative;
        z-index: 1;
    }

    .advantage-bg-layer {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 0.5;
        background: #000000;
        border-radius: 32px;
    }

    .advantage-cards {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .advantage-card {
        justify-content: flex-start;
        background: #313134CC;
        opacity: .8;
        max-width: 630px;
    }

    .advantage-wrapper svg {
        fill: #ffffff;
        width: 48px;
        height: 48px;
    }


    .advantage-wrapper path {
        fill: #ffffff;
    }

    .advantage-card:first-child {
        margin-bottom: 0;
        margin-right: 12px;
    }

    .advantage-visual-mobile {
        display: none;
    }

    .colored-text {
        color: #ffffff;
    }
}