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

.accueil {
    background-image: url(../img/References.png);
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
    height: 40vh;
    width: 100%;
    margin-top: 90px;
}

.accueil h1 {
    font-size: 2.5rem;
    text-align: center;
    font-weight: 600;
}

.p-acc-resp {
    display: none;
}

.accueil p {
    max-width: 600px;
    margin-top: 1rem;
}

.accueil a {
    padding: 14px 35px;
    background-color: var(--green);
    color: #fff !important;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
}

.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;
    background-color: none;
    color: #fff !important;
    border-radius: 30px;
    display: inline-block;
    margin-top: 1rem;
    border: 1px solid #fff;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 5rem;
}

.logo-grid span {
    width: 100%;
    height: 100px;
    border: 1px solid #eaeaf1;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.logo-grid span img {
    height: 80%;
    width: 50%;
    object-fit: contain;
}

.logo-grid span img {
    height: 80%;
    width: 50%;
    object-fit: contain;
    transition: .1s;
}

.logo-grid span img:hover {
    scale: 1.1;
}

@media (max-width: 1024px) {

    .logo-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        margin-top: 5rem;
    }
}

@media (max-width: 768px) {

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