body > * > * {
    padding-inline: 30px;
}

body > * > *.logoContainer {
    display: flex;
    justify-content: center;
    width: 100%;
}

@media (width > 991px) {
    body > * > * {
        padding-inline: unset;
    }
}

@media (width > 1499px) {
    body > .specificationsContainer {
        max-width: 1440px;
        margin-inline: auto;
        padding-inline: unset;
    }
}

/* -- -- -- -- -- TOP - SECTION - DÉBUT -- -- -- -- -- */

span:has(.topLogo) {
    position: absolute;
    width: 100%;
    z-index: 1;
    top: 39px;
    display: block;
}

body > * > * > .topLogo {
    width: 100%;
    max-width: 331px;
    height: auto;
    margin-inline: auto;
    aspect-ratio: 331/55;
    display: block;
    padding-inline: unset;
}

/* -- -- -- -- -- TOP - SECTION - FIN -- -- -- -- -- */


/* -- -- -- -- -- HERO - SECTION - DÉBUT -- -- -- -- -- */

.hero {
    height: 120vh;
    position: relative;
    background-image: url(../img/backgroundHero.jpg);
    background-position: 50% 0%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 20vh;
}

.hero::before {
    content: '';
    display: block;
    height: 140vh;
    width: 100%;
    position: absolute;
    background: rgba(29, 29, 27, 0.2);
    background: linear-gradient(180deg, rgba(29, 29, 27, 0.23) 0%, rgba(29, 29, 27, 1) 100%);
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero .catchphrase {
    background-color: transparent;
    margin-top: 20%;
    text-align: center;
    font-family: var(--ffSRo);
    font-size: 2.375rem;
    line-height: normal;
    color: var(--color-white);
}

.hero .writer {
    text-align: center;
    font-family: var(--ffMBo);
    font-size: 1rem;
    line-height: 1.375rem;
    color: var(--color-primary-light);
    margin-top: 11px;
}

.hero .grape {
    margin-top: 19px;
    padding-inline: 0!important;
}

@media (width > 767px) {
    .hero .catchphrase {
        margin-inline: auto;
        max-width: 875px;
    }
}

@media (width > 991px) {
    .hero {
        gap: 13px;
    }

    .hero .catchphrase {
        margin-top: 10vh;
        font-size: 3.75rem;
    }

    .hero .writer,
    .hero .grape {
        margin-top: unset;
    }
}

/* -- -- -- -- -- HERO - SECTION - FIN -- -- -- -- -- */


/* -- -- -- -- -- SPECIFICATIONS - SECTION - DÉBUT -- -- -- -- -- */

.specificationsContainer {
    display: flex;
    flex-direction: column;
    gap: 90px;
}

.vignette {
    display: flex;
    flex-direction: column-reverse;
    gap: 44px;
}

.vignette:nth-of-type(1) {
    margin-top: -15vh;
}

.vignette .illustration {
    aspect-ratio: 330/287;
    display: block;
}

.vignette .legend {
    display: flex;
    flex-direction: column;
    gap: 27px;
    height: fit-content;
}

.vignette .btn {
    margin-top: 5px;
}

.subtitle {
    font-family: var(--ffMRe);
    font-size: .875rem;
    line-height: normal;
    text-transform: uppercase;
    color: var(--color-primary-light);
    letter-spacing: 4px;
    position: relative;
    padding-left: 48px;
}

.subtitle::before {
    position: absolute;
    content: '';
    top: 47.5%;
    left: 0px;
    background-color: var(--color-primary-light);
    width: 33px;
    height: 2px;    
}

.title {
    font-family: var(--ffSSeBo);
    font-size: 2rem;
    line-height: normal;
    color: var(--color-white);
}

.content,
.content * {
    font-family: var(--ffMRe);
    font-size: .9375rem;
    line-height: normal;
    color: var(--color-white);
}

.content strong {
    font-family: var(--ffMBo);
}

.content > * + p {
    margin-top: .9375rem;
} 

.content li {
    margin-left: 15px;
}

.content img {
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: none;
}

.content > * + p:has(> img):not(:has(+ *)) {
    margin-block: 32px 0px;
} 

.btn {
    background-color: var(--color-white);
    color: var(--color-black);
}

.specifications .quotation * {
    font-family: var(--ffSRo);
    font-size: 2.375rem;
    line-height: 2.375rem;
    color: var(--color-white);
    text-align: center;
    /* padding: 0px 30px; */
    margin-top: -3px;
}

.specifications .quotation {
    padding-bottom: 87px;
}

@media (width > 767px) {
    .specifications {
        background-image: url(../img/isotype.svg);
        background-repeat: no-repeat;
        background-size: cover;
    }

    .specificationsContainer {
        gap: 81px;
    }

    .vignette {
        flex-direction: row;
        align-items: stretch;
    }

    .vignette:nth-child(2n) {
        flex-direction: row-reverse;
    }

    .illustrationContainer {
        position: relative;
        overflow: hidden;
    }

    .vignette .illustration {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        aspect-ratio: unset;
        object-fit: cover;
    }

    .specifications .quotation {
        margin-top: unset;
        padding-bottom: 116px;
    }

    .illustrationContainer,
    .vignette .legend {
        width: 50%;
    }
}

@media (width > 991px) {
    .specificationsContainer {
        padding-inline: 30px;
    }

    .title {
        font-size: 42px;
    }

    .content,
    .content * {
        font-size: 1rem;
        line-height: 1.375rem;
    }

    .specifications .quotation * {
        font-size: 3.25rem;
        line-height: normal;
        padding: unset;
    }

    .specifications .quotation {
        max-width: 937px;
        margin-inline: auto;
    }

    .vignette {
        gap: 77px;
    }

    .vignette .legend > * {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity .5s ease, transform .5s ease;
    }

    .vignette.is-visible .legend > * {
        opacity: 1;
        transform: translateY(0);
    }

    .vignette.is-visible .legend > *:nth-child(2) { transition-delay: .12s; }
    .vignette.is-visible .legend > *:nth-child(3) { transition-delay: .24s; }
    .vignette.is-visible .legend > *:nth-child(4) { transition-delay: .36s; }
}

@media (width > 1479px) {
    .specificationsContainer {
        margin-inline: auto;
        max-width: 1440px;
    }
}

/* -- -- -- -- -- SPECIFICATIONS - SECTION - FIN -- -- -- -- -- */


/* -- -- -- -- -- CONTACT - SECTION - DÉBUT -- -- -- -- -- */

#contact {
    padding-bottom: 87px;
}

#contact .wpcf7 > form {
    padding: 32px 24px;
    border-radius: 16px;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#contact .wpcf7 > form > p {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#contact .wpcf7 > form > p > br {
    display: none;
}

#contact .wpcf7 label {
    font-family: var(--ffMRe);
    font-size: .9375rem;
    line-height: normal;
    color: var(--color-black);
}

#contact .wpcf7-form-control-wrap {
    display: block;
    position: static;
}

#contact .wpcf7 input,
#contact .wpcf7 textarea {
    display: block;
    position: static;
    width: 100%;
    padding: 10px 12px 8px 12px;
    border-radius: 10px;
    border: 1px solid #DADADA;
    font-family: var(--ffMRe);
    font-size: 1rem;
    line-height: normal;
    color: var(--color-black);
}

#contact .wpcf7 input[type="submit"] {
    background-color: var(--color-primary-light);
    border: 1px solid var(--color-primary-light);
    border-radius: 4px;
    color: var(--color-black);
    padding: 12px 24px;
}

#contact .wpcf7 input::placeholder,
#contact .wpcf7 textarea::placeholder {
    font-family: var(--ffMRe);
    font-size: 1rem;
    line-height: normal;
    color: #DADADA;
}

.wpcf7-spinner {
    display: none;
}

@media (width > 767px) {
    #contact {
        position: relative;
        background-image: url(../img/backgroundContact.jpg);
        background-repeat: no-repeat;
        background-size: cover;
    }

    #contact::before {
        content: '';
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        background: rgba(29, 29, 27, 0.2);
        background: linear-gradient(180deg, rgba(29, 29, 27, 0.23) 0%, rgba(29, 29, 27, 1) 90%);
        z-index: 1;
    }

    #contact .wpcf7 {
        padding-block: 55px;
        position: relative;
    }
    
    #contact .wpcf7 > form {
        position: relative;
        width: 70%;
        right: -30%;
        z-index: 1;
    }
}

@media (width > 991px) {
    #contact {
        padding-bottom: 81px;
    }

    #contact .wpcf7 {
        display: flex;
        justify-content: flex-end;
        max-width: 1440px;
        padding-inline: 30px;
        margin-inline: auto;
    }

    #contact .wpcf7 > form {
        padding: 32px;
        max-width: 548px;
        position: static;
        width: 100%;
    }
}

@media (pointer: fine) {
    #contact .wpcf7 input:not(input[type="submit"]):focus-visible,
    #contact .wpcf7 textarea:focus-visible,
    #contact .wpcf7 input:not(input[type="submit"]):focus,
    #contact .wpcf7 textarea:focus,
    #contact .wpcf7 input:not(input[type="submit"]):hover,
    #contact .wpcf7 textarea:hover {
        outline: 1px solid var(--color-primary-light);
        border: 1px solid var(--color-primary-light);
    }
}

/* -- -- -- -- -- CONTACT - SECTION - FIN -- -- -- -- -- */


/* -- -- -- -- -- FAQ - SECTION - DÉBUT -- -- -- -- -- */

.faq {
    padding-bottom: 57px;
    display: flex;
    flex-direction: column;
    gap: 23px;
    padding-inline: 30px;
}

.faq .question {
    border: 1px solid var(--color-white);
    border-radius: 8px;
    padding: 24px 32px;
    color: var(--color-white);
}

.faq details > summary {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-family: var(--ffMBo);
    font-size: 1.125rem;
}

.faq details > summary::after {
    content: "+";
    color: var(--color-white);
    font-family: var(--ffMRe);
    font-size: 32px;
    display: block;
    rotate: 0deg;
    transition: rotate .3s ease;
}

.faq details[open] > summary::after {
    rotate: 135deg;
    transition: rotate .3s ease;
}

.faq details > summary::marker {
    display: none;
}

.faq details[open] > summary:has(+ *) {
    margin-bottom: 16px;
}

.faq details[open] > summary + * {
    font-family: var(--ffMRe);
    font-size: 1rem;
    line-height: normal;
    text-align: start;
}

@media (width > 767px) {
    .faq {
        max-width: 754px;
        margin-inline: auto;
        padding-inline: unset;
    }

    .faq details > summary {
        justify-content: center;
    }

    .faq details[open] > summary + * {
        text-align: center;
    }
}

@media (width > 991px) {
    .faq {
        padding-bottom: 82px;
    }
}

/* -- -- -- -- -- FAQ - SECTION - FIN -- -- -- -- -- */


/* -- -- -- -- -- FOOTER - SECTION - DÉBUT -- -- -- -- -- */

.footer {
    padding-bottom: 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body > .footer > .logoFooter {
    aspect-ratio: 245/234;
    object-fit: contain;
    max-width: 245px;
    padding-inline: unset;
    margin-bottom: 57px;
}

.footer .footer__bottom * {
    color: var(--color-white);
    font-family: var(--ffMBo);
    font-size: 1rem;
    line-height: 1.375rem;
    text-align: center;
    margin-inline: auto;
}

@media (width > 991px) {
    body > .footer > .logoFooter {
        margin-bottom: 69px;
        max-width: 402px;
    }

    .footer {
        padding-bottom: 70px;
    }
}

/* -- -- -- -- -- FOOTER - SECTION - FIN -- -- -- -- -- */