.sliderContainer {
    position: relative;
    height: 84vh;
}

.slick-initialized .slick-slide {
    height: 84vh;
    filter: brightness(0.5);
    object-fit: cover;
}

.sliderContainer .intro_home {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 90%;
    color: white;
    text-align: center;
}

.sliderContainer .intro_home .logo {
    max-width: unset;
    width: 150px;
}

.sliderContainer .intro_home h1 {
    font-weight: 700;
    font-size: 22px;
}

.sliderContainer .intro_home p {
    font-size: 16px;
}

/** SERVICES */

.services {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service {
    background-color: white;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service h3 {
    font-weight: 700;
    font-size: 22px;
}

/** CONFIANCE */

.confiance {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/** SEPARATEUR */

.separateur {
    background-image: url(../images/back_separateur-min.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: right;
    height: 400px;
}

/** CONTACT */

.rubrique.contact {
    padding: 0;
}

.rubrique.contact h3 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 8px;
}

.flex_contact {
    display: flex;
    flex-direction: column;
    color: white;
}

.contact_infos {
    background-color: #333;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact_infos p {
    font-size: 16px;
}

.contact_infos a {
    color: white;
}

.formulaire {
    padding: 32px;
    background-color: #1e6bae;
}

.contactForm {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contactForm .field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contactForm .field label {
    font-size: 15px;
}

.contactForm .field input {
    padding-left: 16px;
    height: 48px;
}

.contactForm .field textarea {
    height: 112px;
    padding: 8px;
}

.contactForm .boutons input.btn {
    border: 0;
    cursor: pointer;
}

.contactForm .boutons input.btn:hover {
    background-color: #000;
}

@media (min-width: 992px){
    .flex_contact {
        flex-direction: row;
    }

    .contact_infos {
        flex-basis: 40%;
        padding: 80px;
    }

    .formulaire {
        flex-basis: 60%;
        padding: 64px 96px;
    }

    .contactForm {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contactForm .field {
        flex-basis: calc(50% - 12px);
    }

    .contactForm .field100 {
        flex-basis: 100%;
    }
}

/** MEDIA QUERIES */

@media (min-width: 768px){
    .introContent h1 {
        font-size: 18px;
    }

    .introContent h2 {
        font-size: 16px;
    }
}

@media (min-width: 992px){
    .sliderContainer .intro_home {
        width: unset;
    }

    .sliderContainer .intro_home h1 {
        font-size: 32px;
    }

    .sliderContainer .intro_home p {
        font-size: 20px;
    }

    .services {
        flex-direction: row;
    }

    .service {
        flex: 1;
    }
}