.c-header {
    animation: fadeIn 1s;
    transition: box-shadow .2s linear;
}

.text-wrapper {
    color: var(--breto-cool-gray);
    text-align: center;
    padding:30px;
}

.c-mobile-screen {
    margin: 10px;
    width: 95%;
    /*height: 90vh;*/
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: center;*/
}

/** vignette **/
.c-vignette {
    background: rgba(255,255,255,.7);
    border-radius: 10px;
    padding: 30px 0;
}

.c-vignette-title {
    font-size: 1.2rem;
    text-align: center;
    font-weight: bold;
    /*padding: 30px 30px 30px;*/
    /*color: var(--breto-azure);*/
}

.c-vignette__text {
    padding: 5px 7px;
}

.c-vignette-item {
    display: flex;
    font-size: 1.5rem;
    padding: 30px;
}

.c-vignette-item__icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-vignette-item__icon figure {
    margin: 0;
}

.c-vignette-item__icon img {
    height: 50px;
    width: 50px;
}

.c-vignette-item__text {
    margin: 10px;
}

.c-vignette--collapsibles {
    margin: 0 auto;
    width: 600px;
    padding: 30px;
}

.c-vignette__collapsible_section {
    margin-bottom: 30px;
}

.c-cta-button {
    width: 200px;
    height: 50px;
    margin: 0 auto;
    background: var(--breto-azure);
    color: #fff;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-pathway-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
}

@media only screen and (min-width: 769px) {
    .c-mobile-screen {
        width: 100%;
        min-height: 70vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

@media only screen and (max-width: 768px) {
    .c-vignette-title {
        font-size: 1.1rem;
        text-align: center;
        font-weight: bold;
    }

    .c-vignette--collapsibles {
        width: 320px;
    }

    .c-mobile-screen {
        width: 320px;
        margin: 10px auto;

    }
}


@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
