header {
    background: #fff;
}

header img {
    height: 30px;
    filter: invert(0);
}

.header-container a {
    color: #000;
}

.burger-wrapper span {
    background-color: #000 !important;
}

.contact {
    border: 1px solid #000;
}

.global-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 20px;
    align-items: center;
}

.accueil {
    background-image: url(../img/formations.png);
    background-size: cover;
    background-position: center;
    height: 350px;
    width: 100%;
    margin-top: 90px;
    text-align: center;
}



.banner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: var(--green);
    margin-top: 5rem;
    padding: 40px;
    border-radius: 20px;
}

.banner h3 {
    font-size: 2rem;
    margin-bottom: .5rem;
}

.banner p {
    max-width: 75%;
}

.banner a {
    padding: 14px 35px;
    color: #fff !important;
    border-radius: 30px;
    display: inline-block;
    margin-top: 1rem;
    width: max-content;
    border: 1px solid #fff;
}



.grid-formations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 5rem;
}

.grid-formations article {
    padding: 30px;
    background: var(--green);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.grid-formations article ul {
    list-style: none;
    margin-top: 1rem;
}

.grid-formations article ul li p {
    margin-top: .2rem;
}

.grid-formations article h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: .5rem;
}

.grid-formations article p {
    color: #e1e1e1;
    max-width: 90%;
}

.grid-formations article a {
    color: #ffffff;
    border-radius: 30px;
    display: inline-block;
    margin-top: 1rem;
    text-align: center;
    cursor: pointer;
    width: max-content;
    border: 1px solid #ffffff;
    padding: 10px 30px;

}

.m-top-artcl {
    margin-top: 1rem;
}

.m-top-artcl span {
    color: var(--green);
}

@media (max-width: 1024px) {
    .banner {
        padding: 40px 20px;
    }

    .accueil {
        margin-top: 70px;
    }

}

@media (max-width: 768px) {
    .grid-formations {
        grid-template-columns: repeat(1, 1fr);
    }

}