:root {
    --blanc: #ffffff;
    --bleu: #1784bf;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body,
html {
    position: relative;
    width: 100%;
    font-size: 16px;
    overflow-x: hidden !important;
}
html.disable-scroll {
    overflow-y: hidden;
}
body {
    font-family: "Montserrat", sans-serif;
    background-color: var(--bleu);
}
header {
    display: flex;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 500px;
    background-image: url("../images/header-groupe-synerco.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}
header .bg {
    position: absolute;
}
.politique{
    height: 200px;
}
header .logo {
    text-align: center;
}
header .logo img {
    width: 80%;
    max-width: 900px;
    height: auto;
}
h1{
    color: var(--blanc);
    margin-top: 20px;
}
h2{
    color: var(--blanc);
}
p{
    color: var(--blanc);
    margin: 20px 0;
}

a {
    color: var(--blanc);
    text-decoration: none;
    display: block;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
}

.logos_partner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-around;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    border-radius: 100px;
    width: 800px;
    max-width: 80%;
    margin: 0 auto;
    transform: translateY(-50%);
    box-shadow: 0px 5px 15px 17px rgba(0, 0, 0, 0.3);
}
.logos_partner a {
    text-align: center;
}

.logos_partner a:nth-child(3) {
    cursor: default;
}
.logos_partner img {
    max-width: 70%;
    height: auto;
    max-height: 60px;
    width: auto;
}
.contenu {
    text-align: center;
    max-width: 80%;
    margin: -30px auto 0 auto;
    line-height: 1.4em;
}
.contenu--politique{
    text-align: left;
    margin: 30px auto;
    padding-bottom: 50px;
}

.footer-link {
    max-width: 80%;
    margin: 40px auto;
    font-size: 14px;
    display: flex;
    gap: 10px;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

@media only screen and (min-width: 768px) {
    .footer-link {
        flex-direction: row;
        gap: 50px;
    }
}


@media only screen and (min-width: 1024px) {
    header {
        height: calc(100vh - 325px);
    }
    .logos_partner {
        grid-template-columns: repeat(4, 1fr);
    }
}
