/* -------------------------- ALL -------------------------- */

body > *:not(#header):not(#welcome) {
    padding-inline: 35px;
}

.title {
    font-family: var(--ffSLi);
    font-size: 1.875rem;
    line-height: 2rem;
    color: var(--black);
}

span:has(> .title--line) {
    position: relative;
}

.title--line {
    display: block;
    background-color: var(--light);
    padding-inline: 12px;
    position: relative;
    width: fit-content;
    margin-inline: auto;
    z-index: 1;
}

span:has(> .title--line)::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--black);
    position: absolute;
    bottom: 20px;
    left: 0px;
    z-index: 0;
}

.title--logo::before {
    display: block;
    content: "";
    width: 100%;
    height: auto;
    background-image: url('../img/logosIcons/logoSimple.svg');
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 75/20;
    width: 75px;
    height: auto;
}

.title--logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.subtitle {
    font-family: var(--ffMRe);
    font-size: .9375rem;
    line-height: 1.125rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 2.75px;
    width: fit-content;
    padding-left: 38px;
    position: relative;
}

.subtitle::before {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background-color: var(--black);
    position: absolute;
    top: 47.5%;
    left: 0;
}

.link {
    color: var(--black);
    border-bottom: 2px solid var(--black);
    font-family: var(--ffMMe);
    font-size: 1.125rem;
    line-height: .9375rem;
    text-transform: uppercase;
    padding-bottom: 8px;
}

.corps,
.corps * {
    font-family: var(--ffMRe);
    color: var(--black);
    font-size: .9375rem;
    line-height: 1.375rem;
}

@media (width > 991px) {
    .title {
        font-size: 3.125rem;
        line-height: 3.375rem;
    }

    .title--logo::before {
        width: 76px;
    }

    span:has(> .title--line)::before {
        bottom: 32px;
    }
    
    .subtitle {
        font-size: 1.3125rem;
        line-height: 1.5625rem;
        padding-left: 52px;
    }

    .subtitle::before {
        width: 42px;
    }
}

@media (width > 1499px) {
    body > *:not(#welcome):not(#gallery):not(#restaurant):not(#environment):not(#contact):not(.footer):not(.message) {
        max-width: 1440px;
        margin-inline: auto;
    }
}

@media (width > 1559px) {
    body > *:not(#header):not(#welcome) {
        padding-inline: unset;
    }
}

/* -- -- -- -- BIENVENUE - DÉBUT -- -- -- -- -- */

#welcome {
    padding-top: 120px;
    position: relative;
    height: 110vh;
}
#welcome::after {
    content: "";
    display: block;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

#welcome .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

#welcome > .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-block: 80px;
    justify-content: center;
    height: calc(70% - 85px);
}

#welcome .content .icon {
    aspect-ratio: 50/55;
    width: 50px;
    height: auto;
    margin-bottom: 17px;
}

#welcome .content .subtitle {
    font-family: var(--ffMRe);
    font-size: .75rem;
    line-height: .875rem;
    color: var(--light);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 3.75px;
    padding-left: unset;
}

#welcome .content .subtitle::before {
    display: none;
}

#welcome .logoContainer {
    margin-bottom: 22px;
}

#welcome .logoContainer > .title {
    font-family: var(--ffSLi);
    font-size: 3.125rem;
    line-height: 3.375rem;
    color: var(--light);
    text-align: center;
    margin-bottom: 6px;
}

#welcome .logoContainer > .baseline {
    font-family: var(--ffMRe);
    font-size: .625rem;
    line-height: .6875rem;
    color: var(--light);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

#welcome .logoContainer > .baseline::after,
#welcome .logoContainer > .baseline::before {
    content: "";
    display: block;
    width: 22.5%;
    height: 1px;
    background-color: var(--light);
    position: absolute;
    bottom: 45%;
    left: 0;
    z-index: -1;
}

#welcome .logoContainer > .baseline::after {
    right: 0;
    left: unset;
}

#welcome .bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--black);
    padding-block: 15px 22px;
    width: 100%;
}

#welcome .bottom .left {
    max-width: 58%;
    color: var(--light);
    margin-inline: auto;
    margin-bottom: 22px;
}

#welcome .bottom .left span {
    font-family: var(--ffMRe);
    font-size: 1.25rem;
    line-height: 1.5625rem;
}

#welcome .bottom .left .icon {
    aspect-ratio: 27/25;
    width: 27px;
    height: auto;
    margin-left: 10px;
    vertical-align: middle;
    display: inline-block;
}

#welcome .bottom .link {
    color: var(--light);
    border-bottom: 2px solid var(--light);
    margin-inline: auto;
    display: block;
    width: fit-content;
}

@media (width > 991px) {
    #welcome {
        height: 95vh;
    }

    #welcome > .content {
        margin-block: 50px;
        width: fit-content;
        margin-inline: auto;
        height: calc(80% - 55px);
    }

    #welcome .content .icon {
        margin-bottom: 18px;
    }

    #welcome .content .subtitle {
        font-size: 1rem;
        line-height: 1.1875rem;
        letter-spacing: 5px;
    }

    #welcome .button--hero {
        width: 100%;
    }

    #welcome .logoContainer > .title {
        font-size: 5.625rem;
        line-height: 6.0625rem;
        margin-bottom: -5px;
    }

    #welcome .logoContainer > .baseline {
        font-size: .75rem;
        line-height: .875rem;
    }

    #welcome .logoContainer > .baseline::after,
    #welcome .logoContainer > .baseline::before {
        width: 31.5%;
    }

    #welcome .bottom {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }

    #welcome .bottom .left {
        max-width: unset;
        margin-inline: unset;
        margin-bottom: unset;
        display: flex;
        align-items: center;
        position: relative;
    }

    #welcome .bottom .left::before {
        content: "";
        display: block;
        width: 6.5%;
        height: 1px;
        background-color: var(--light);
        position: absolute;
        left: -40px;
        top: 50%;
    }

    #welcome .bottom .link {
        margin-top: 8px;
        margin-inline: unset;
        position: relative;
        border-bottom: none;
    }

    #welcome .bottom .link::after {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 2px;
        background-color: var(--light);
        left: 0;
        content: "";
        display: block;
        transition: width .25s ease, left .25s ease;
    }

    #welcome .bottom .left span {
        font-size: 1.25rem;
        line-height: .9375rem;
    }

    #welcome .bottom .left .icon {
        aspect-ratio: 30/26;
        width: 30px;
        height: auto;
        margin-left: 24px;
    }

    #welcome .bottom .arrow {
        width: 82px;
        height: 1px;
        background-color: var(--light);
        position: relative;
    }

    #welcome .bottom .arrow::after {
        content: "";
        display: block;
        border-top: 1px solid var(--light);
        border-right: 1px solid var(--light);
        rotate: 45deg;
        width: 8px;
        height: 8px;
        position: absolute;
        right: 0;
        top: -4.125px;
    }
}

@media (width > 1499px) {
    #welcome {
        margin-top: -105px;
        z-index: 0;
    }
}

@media (pointer: fine) {
    #welcome .bottom .link:hover::after {
        width: calc(100% + 40px);
        left: -20px;
        transition: width .25s ease, left .25s ease;
    }
}

/* -- -- -- -- BIENVENUE - FIN -- -- -- -- -- */


/* -- -- -- -- LE RESTAURANT - DÉBUT -- -- -- -- -- */

#restaurant {
    padding-block: 32px 45px;
    background-color: var(--lightsmoke);
    display: flex;
    flex-direction: column;
    gap: 50px;
}

#restaurant .establishment .carousselContainer {
    padding: 10px;
    border: 1px solid var(--black);
    position: relative;
    box-sizing: border-box;
}

#restaurant .establishment .carousselContainer::before,
#restaurant .establishment .carousselContainer::after {
    box-sizing: inherit;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    width: 0;
    height: 0;
}

#restaurant .establishment .carousselContainer::before {
    top: 0;
    left: 0;
}

#restaurant .establishment .carousselContainer::after {
    top: 0;
    left: 0;
}

#restaurant .establishment .carousselContainer.animate::before,
#restaurant .establishment .carousselContainer.animate::after {
    width: 100%;
    height: 100%;
}

#restaurant .establishment .carousselContainer.animate::before {
    border-top-color: var(--black);
    border-right-color: var(--black);
    transition:
      width 0.5s ease-out,
      height 0.5s ease-out 0.5s;
}

#restaurant .establishment .carousselContainer.animate::after {
    border-bottom-color: var(--black);
    border-left-color: var(--black);
    transition:
      height 0.5s ease-out,
      width 0.5s ease-out 0.5s;
}

#restaurant .establishment .swiper-slide img {
    aspect-ratio: 301/192;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

#restaurant .establishment .content {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

@media (width > 991px) {
    #restaurant {
        padding-block: 110px;
        gap: 79px;
    }
    
    #restaurant .establishment {
        display: flex;
        gap: 60px;
        align-items: stretch;
    }

    #restaurant .establishment:nth-child(even) {
        flex-direction: row-reverse;
    }

    #restaurant .establishment .carousselContainer {
        width: 50%;
        height: auto;
    }

    #restaurant .establishment .swiper-slide img {
        aspect-ratio: unset;
        height: 100%;
    }

    #restaurant .swiper {
        height: 100%;
        opacity: 0;
        transition: opacity .5s ease .5s;
    }

    #restaurant .establishment .carousselContainer {
        border: none;
    }

    #restaurant .carousselContainer.animate .swiper {
        height: 100%;
        opacity: 1;
        transition: opacity .5s ease .5s;
    }

    #restaurant .establishment .carousselContainer + .content {
        margin-top: unset;
        position: relative;
        right: -100vw;
        transition: .5s ease right;
    }

    #restaurant .establishment .carousselContainer.animate + .content {
        right: 0;
        transition: .5s ease right;
    }


    #restaurant .establishment:nth-child(even) .carousselContainer + .content {
        margin-top: unset;
        position: relative;
        left: -100vw;
        transition: .5s ease left;
    }

    #restaurant .establishment:nth-child(even) .carousselContainer.animate + .content {
        left: 0;
        transition: .5s ease left;
    }
}

@media (width > 1199px) {
    #restaurant .establishment {
        gap: 105px;
        align-items: center;
    }

    #restaurant .establishment .swiper-slide img {
        aspect-ratio: 728/466;
    }

    #restaurant .swiper {
        height: auto;
    }
}

@media (width > 1499px) {
    #restaurant .establishment {
        max-width: 1440px;
        margin-inline: auto;
    }
}

/* -- -- -- -- LE RESTAURANT - FIN -- -- -- -- -- */


/* -- -- -- -- ENVIRONNEMENT - DÉBUT -- -- -- -- -- */

#environment {
    padding-block: 59px 75px;
}


#environment .title {
    font-size: 2.5rem;
    line-height: 2.75rem;
}

#environment .baseline {
    font-size: .625rem;
    line-height: .9375rem;
    text-transform: uppercase;
    font-family: var(--ffMRe);
    letter-spacing: 1.35px;
    text-align: center;
    width: 206px;
    margin-inline: auto;
}

#environment .headerin {
    margin-bottom: 74px;
}

#environment .subtitle {
    margin-bottom: 22px;
}

#environment .content__title {
    font-family: var(--ffSLi);
    font-size: 1.875rem;
    line-height: 2rem;
    color: var(--black);
    max-width: 60%;
    margin-bottom: 22px;
}

#environment .carousselContainer {
    margin-inline: -35px;
}

#environment .caroussel .illustration {
    aspect-ratio: 394/282;
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 18px;
}

#environment .caroussel .subtitle {
    font-family: var(--ffMMe);
    letter-spacing: normal;
    font-size: 1rem;
    line-height: 1.1875rem;
    margin-bottom: unset;
}

@media (width > 991px) {
    #environment {
        padding-block: 115px 117px;
    }

    #environment .title {
        font-size: 3.75rem;
        line-height: 4.0625rem;
    }

    #environment .headerin {
        margin-bottom: 97px;
        width: fit-content;
        margin-inline: auto;
    }

    #environment .baseline {
        font-size: 1.3125rem;
        line-height: 1.5625rem;
        width: fit-content;
        margin-top: 3px;
    }

    #environment .content__title {
        font-size: 3.75rem;
        line-height: 4.0625rem;
        margin-bottom: 48px;
        max-width: unset;
    }

    #environment .subtitle {
        margin-bottom: 14px;
    }

    #environment .caroussel .illustration {
        aspect-ratio: 624/446;
    }
}

@media (width > 1199px) {
    #environment .caroussel .illustration {
        margin-bottom: 35px;
    }
}

@media (width > 1499px) {
    #environment .headerin,
    #environment .subtitle,
    #environment .content__title {
        max-width: 1440px;
        width: 100%;
        margin-inline: auto;
    }

    #environment .headerin {
        width: fit-content;
    }
}

@media (width > 1559px) {
    #environment .carousselContainer {
        margin-inline: unset;
    }
}

/* -- -- -- -- ENVIRONNEMENT - FIN -- -- -- -- -- */


/* -- -- -- -- LA CUISINE - DÉBUT -- -- -- -- -- */

#kitchen {
    padding-bottom: 90px;
}

#kitchen .carousselContainer {
    padding: 10px;
    margin-bottom: 23px;
    border: 1px solid var(--black);
    position: relative;
}

#kitchen .swiper-slide img {
    aspect-ratio: 303/351;
    width: 100%;
    height: auto;
    object-fit: cover;
}

#kitchen > .content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

#kitchen > .content .link {
    display: none;
}

#kitchen .carousselContainer::before,
#kitchen .carousselContainer::after {
    box-sizing: inherit;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    width: 0;
    height: 0;
}

#kitchen .carousselContainer::before {
    top: 0;
    left: 0;
}

#kitchen .carousselContainer::after {
    top: 0;
    left: 0;
}

#kitchen .carousselContainer.animate::before,
#kitchen .carousselContainer.animate::after {
    width: 100%;
    height: 100%;
}

#kitchen .carousselContainer.animate::before {
    border-top-color: var(--black);
    border-right-color: var(--black);
    transition:
      width 0.5s ease-out,
      height 0.5s ease-out 0.5s;
}

#kitchen .carousselContainer.animate::after {
    border-bottom-color: var(--black);
    border-left-color: var(--black);
    transition:
      height 0.5s ease-out,
      width 0.5s ease-out 0.5s;
}

@media (width > 991px) {
    #kitchen {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        gap: 60px;
    }

    #kitchen .title {
        font-size: 3.75rem;
        line-height: 4.0625rem;
    }

    #kitchen .carousselContainer {
        height: auto;
        width: 50%;
        margin-bottom: unset;
        border: none;
    }

    #kitchen .swiper-horizontal {
        height: 100%;
    }

    #kitchen .headerin {
        margin-bottom: 97px;
        width: fit-content;
        margin-inline: auto;
    }

    #kitchen .baseline {
        font-size: 1.3125rem;
        line-height: 1.5625rem;
        width: fit-content;
        margin-top: 3px;
    }

    #kitchen .content__title {
        font-size: 3.75rem;
        line-height: 4.0625rem;
        margin-bottom: 48px;
        max-width: unset;
    }

    #kitchen .subtitle {
        margin-bottom: 14px;
    }

    #kitchen .caroussel .illustration {
        aspect-ratio: unset;
        height: 100%;
    }

    #kitchen > .content .link {
        display: block;
        position: relative;
        font-family: var(--ffMRe);
        border-bottom-width: 1px;
        transition: font-family .25s ease;
    }

    #kitchen > .content .link::after {
        display: block;
        position: absolute;
        content: "";
        background-image: url('../img/logosIcons/arrow.svg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: right;
        width: 23px;
        height: 14px;
        top: 0%;
        right: 0;
        transition: width .25s ease;
    }

    #kitchen .carousselContainer.animate .swiper {
        height: 100%;
        opacity: 1;
        transition: opacity .5s ease .5s;
    }

    #kitchen .carousselContainer + .content {
        margin-top: unset;
        position: relative;
        right: -100vw;
        transition: .5s ease right;
    }

    #kitchen .carousselContainer.animate + .content {
        right: 0;
        transition: .5s ease right;
    }
}

@media (width > 1199px) {
    #kitchen .caroussel .illustration {
        aspect-ratio: 718/847;
        height: auto;
    }

    #kitchen .carousselContainer {
        height: auto;
        width: 50%;
    }

    #kitchen {
        align-items: center;
    }

    #kitchen .swiper-horizontal {
        height: auto;
    }   
}

@media (width > 1439px) {
    #kitchen {
        gap: 130px;
    }    
}

@media (pointer: fine) {
    #kitchen > .content .link:hover::after {
        width: 42px;
        transition: width .25s ease;
    }

    #kitchen > .content .link:hover {
        font-family: var(--ffMMe);
        transition: font-family .25s ease;
    }
}

/* -- -- -- -- LA CUISINE - FIN -- -- -- -- -- */


/* -- -- -- -- GALERIE - DÉBUT -- -- -- -- -- */

#gallery {
    padding-bottom: 90px;
}

#gallery .headerin .title {
    font-size: 2.3125rem;
    line-height: 2.5rem;
    padding-inline: 24px;
}

#gallery .headerin .subtitle {
    padding: unset;
    width: fit-content;
    margin-inline: auto;
    font-size: .875rem;
    line-height: 1rem;
    letter-spacing: 2px;
    margin-block: 16px 22px;
}

#gallery .headerin .subtitle::before {
    display: none;
}

#gallery .carousselContainer {
    margin-inline: -35px;
}

#gallery .carousselContainer .illustration{
    aspect-ratio: 342/239;
    width: 100%;
    height: auto;
    object-fit: cover;
}

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

    #gallery .carousselContainer {
        margin-inline: unset;
    }

    #gallery .carousselContainer .illustration {
        aspect-ratio: 952/665;
    }

    #gallery .headerin .title {
        font-size: 3.75rem;
        line-height: 4.0625rem;
        margin-inline: auto;
        padding-inline: 6px;
    }

    #gallery .headerin .subtitle {
        font-size: 1.3125rem;
        line-height: 1.5625rem;
        margin-block: 2px 48px;
    }


    #gallery .headerin {
        width: fit-content;
        margin-inline: auto;
    }
}

@media (width > 1199px) {
    #gallery {
        padding-inline: 70px!important;
    }

    #gallery .carousselContainer {
        position: relative;
    }

    #gallery .carousselContainer::before,
    #gallery .carousselContainer::after {
        position: absolute;
        content: "";
        width: 40px;
        height: 1px;
        background-color: var(--black);
        top: 50%;
    }

    #gallery .carousselContainer::before {
        left: -70px;
    }

    #gallery .carousselContainer::after {
        right: -70px;
    }
}

@media (width > 1639px) {
    #gallery {
        max-width: 100%;
        width: 100%;
    }

    #gallery .carousselContainer {
        max-width: 1640px;
        margin-inline: auto;
    }

    #gallery .carousselContainer::before,
    #gallery .carousselContainer::after {
        position: absolute;
        content: "";
        width: 98px;
        height: 1px;
        background-color: var(--black);
        top: 50%;
    }

    #gallery .carousselContainer::before {
        left: -9%;
    }

    #gallery .carousselContainer::after {
        right: -9%;
    }
}

@media (width > 1919px) {
    #gallery .carousselContainer::before {
        left: -109vw;
        width: 107vw;
    }
    
    #gallery .carousselContainer::after {
        right: -109vw;
        width: 107vw;
    }
}

/* -- -- -- -- GALERIE - FIN -- -- -- -- -- */


/* -- -- -- -- MENUS - DÉBUT -- -- -- -- -- */

#menus {
    padding-bottom: 85px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

#menus .subtitle {
    margin-bottom: -38px;
}

#menus .menu .title {
    margin-bottom: 24px;
    font-size: 2.3125rem;
    line-height: 2.5rem;
}

#menus .navContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 46px;
}

#menus .navContainer .item {
    background-color: var(--light);
    border: 1px solid var(--black);
    padding: 18px 43px;
}

#menus .navContainer .item > .item__link,
#menus .navContainer .item > .item__link:hover,
#menus .navContainer .item > .item__link:active,
#menus .navContainer .item > .item__link:focus {
    color: var(--black);
    font-family: var(--ffMRe);
    font-size: 1.25rem;
    line-height: 1.375rem;
}

#menus .navContainer .item.active {
    background-color: var(--black);
    border: 1px solid var(--black);
}

#menus .navContainer .item.active > .item__link,
#menus .navContainer .item.active > .item__link:hover,
#menus .navContainer .item.active > .item__link:active,
#menus .navContainer .item.active > .item__link:focus {
    color: var(--light);
    font-family: var(--ffMRe);
}

#menus .menuItem {
    display: none;
    gap: 26px;
    align-items: flex-start;
}

#menus .menu--special .menuItem {
    display: flex;
}

#menus .menuItem.active,
#menus .menu--special .menuItem {
    display: flex;
    justify-content: space-between;
}

#menus .menuItem.active .corps,
#menus .menuItem.active .corps *,
#menus .menu--special .menuItem .corps,
#menus .menu--special .menuItem .corps * {
    font-size: 1.125rem;
    line-height: 1.375rem;
}

#menus .menuItem.active .corps {
    width: 70%;
}

#menus .menuItem.active .price,
#menus .menu--special .menuItem .price {
    font-family: var(--ffMSeBo);
    /* white-space: nowrap; */
    font-size: 1.375rem;
    line-height: 1.5625rem;
    max-width: 30%;
}

#menus .menu--carte .menuItem.active {
    padding-bottom: 24px;
}

#menus .menu--carte .menuItem.active:has(~ .menuItem.active) {
    border-bottom: 1px solid var(--black);
}

#menus .menu--carte > .content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#menus .menu--carte .menuItem.active .corps,
#menus .menu--carte .menuItem.active .corps * {
    line-height: 1.75rem;
}

#menus .menu--special .content:not(:last-child) {
    margin-bottom: 65px;
}

#menus .menu--special .menuItem .price {
    white-space: unset;
    text-align: end;
    max-width: 30%;
    min-width: 20%;
}

@media (width > 767px) {
    #menus .menu--special .menuItem .price {
        max-width: 40%;
    }
}

@media (width > 991px) {
    #menus {
        gap: 91px;
        padding-bottom: 119px;
    }
    
    #menus .menu .title {
        font-size: 3.75rem;
        line-height: 4.0625rem;
        margin-bottom: 12px;
    }

    #menus .subtitle {
        margin-bottom: -54px;
    }

    #menus .navContainer {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: scroll;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 17px;
        margin-bottom: 51px;
    }

    #menus .navContainer::-webkit-scrollbar {
        display: none;
    }

    #menus .navContainer .item > .item__link,
    #menus .navContainer .item > .item__link:hover,
    #menus .navContainer .item > .item__link:active,
    #menus .navContainer .item > .item__link:focus {
        white-space: nowrap;
    }

    #menus .menu--special .title {
        margin-bottom: 32px;
    }

    #menus .menu--special .content:not(:last-child) {
        margin-bottom: 95px;
    }
}

@media (width > 1199px) {
    #menus .menuItem {
        gap: 80px;
    }
}

/* -- -- -- -- MENUS - FIN -- -- -- -- -- */


/* -- -- -- -- ACTUALITÉS - DÉBUT -- -- -- -- -- */

#actus {
    padding-block: 24px 60px;
}

#actus .headerin {
    text-align: center;
    margin-bottom: 40px;
}

#actus .actus__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#actus .actu {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#actus .actu__content .link {
    padding-left: 32px;
    border-bottom: unset;
    padding-bottom: unset;
    position: relative;
}

#actus .actu__content .link::before {
    content: "";
    display: block;
    width: 24px;
    height: 1px;
    background-color: var(--black);
    position: absolute;
    top: 47.5%;
    left: 0;
}

#actus .actu__thumbnail {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

#actus .actu__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

#actus .actu__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#actus .headerin .subtitle {
    margin-bottom: 24px;
}

#actus .actu__content .subtitle {
    padding-left: unset;
    font-size: 1rem;
}

#actus .actu__content .subtitle::before {
    display: none;
}

#actus .headerin .title {
    text-align: start;
}

#actus .actu__content .title {
    font-size: 1.375rem;
    line-height: 1.625rem;
}

#actus .actu__content .corps,
#actus .actu__content .corps * {
    font-size: .9375rem;
    line-height: 1.5rem;
    color: var(--black);
}

@media (width > 767px) {
    #actus .actus__list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (width > 991px) {
    #actus {
        padding-block: 100px;
    }

    #actus .actus__list {
        gap: 40px;
    }
}

@media (pointer: fine) {
    #actus .actu__thumbnail img:hover {
        transform: scale(1.05);
        transition: transform .5s ease;
    }
}

/* -- -- -- -- ACTUALITÉS - FIN -- -- -- -- -- */


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

#contact {
    background-color: var(--lightsmoke);
    background-image: url(../img/backgrounds/backgroundContact.svg);
    background-repeat: repeat;
    background-position: top;
    padding-block: 21px 48px;
}

#contact .subtitle {
    margin-bottom: 24px;
}

#contact .title {
    margin-bottom: 21px;
    font-size: 2.3125rem;
    line-height: 2.5rem;
}

#contact .corps,
#contact .corps * {
    font-size: 1.125rem;
    line-height: 1.5625rem;
}

#contact .corps {
    margin-bottom: 24px;
}

#contact .map {
    padding: 10px;
    border: 1px solid var(--black);
}

#contact .map iframe {
    aspect-ratio: 295/270;
    width: 100%;
    height: auto;
    object-fit: cover;
}

#contact .informations {
    margin-top: 34px;
}

#contact .information > .corps {
    margin-bottom: unset;
}

#contact .information > .corps p {
    line-height: 22px;
}

#contact .information > .corps h2 {
    font-family: var(--ffMSeBo);
    text-transform: uppercase;
    font-size: 1.125rem;
    line-height: 1.375rem;
}

#contact .information > .corps strong,
#contact .information > .corps strong * {
    font-family: var(--ffMSeBo);
}


#contact .informations {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 48px;
}

#contact .wpcf7 input:not([type=submit]):focus-visible,
#contact .wpcf7 textarea:focus-visible,
#contact .wpcf7 select:focus-visible,
#contact .wpcf7 input:not([type=submit]):hover,
#contact .wpcf7 textarea:hover,
#contact .wpcf7 select:hover {
    outline: 1px solid var(--black);
}

#contact .wpcf7 input[type="text"],
#contact .wpcf7 input[type="email"],
#contact .wpcf7 input[type="tel"],
#contact .wpcf7 textarea {
    width: 100%;
    height: 51px;
    padding: 17px 19px 15px 19px;
    border: 1px solid var(--black);
    font-family: var(--ffMRe);
    font-size: 1rem;
    line-height: 1.1875rem;
    color: var(--black);
    resize: vertical;
}

#contact .wpcf7 input[type="text"]::placeholder,
#contact .wpcf7 input[type="email"]::placeholder,
#contact .wpcf7 input[type="tel"]::placeholder,
#contact .wpcf7 textarea::placeholder {
    color: var(--black)
}

#contact .wpcf7 textarea {
    height: 136px;
}

#contact .wpcf7 form {
    gap: 34px;
    max-width: unset;
}

#contact .wpcf7 form p:has(input[type="submit"]) {
    position: relative;
    width: fit-content;
    padding-left: 38px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--black);
}

#contact .wpcf7 form p:has(input[type="submit"])::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background-image: url('../img/logosIcons/plane.svg');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
}

#contact .wpcf7 form .wpcf7-submit,
#contact .wpcf7 form .wpcf7-submit:hover,
#contact .wpcf7 form .wpcf7-submit:active,
#contact .wpcf7 form .wpcf7-submit:focus {
    background-color: transparent;
    border: unset;
    color: var(--black);
    font-family: var(--ffMSeBo);
    text-transform: uppercase;
    font-size: 1.0625rem;
    line-height: 1.25rem;
    text-align: start;
    padding: unset;
    letter-spacing: 2px;
}

@media (width > 767px) {
    #contact .informations {
        flex-direction: row;
    }

    #contact .information > .corps h2 {
        font-size: 1.5rem;
        line-height: 1.625rem;
    }
}

@media (width > 991px) {
    #contact > .contactWrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto auto auto;
        column-gap: 30px;
        padding-block: 90px;
    }

    #contact .information > .corps h2 {
        font-size: 1.125rem;
        line-height: 1.25rem;
    }

    #contact .title {
        font-size: 3.75rem;
        line-height: 4.0625rem;
        grid-area: 2 / 1 / 3 / 3;
        margin-bottom: 19px;
    }

    #contact .corps,
    #contact .corps * {
        font-size: .9375rem;
        line-height: 1.375rem;
    }

    #contact .subtitle {
        grid-area: 1 / 1 / 2 / 3;
        margin-bottom: 19px;
    }

    #contact .corps {
        grid-area: 3 / 1 / 4 / 3;
        margin-bottom: 33px;
    }

    #contact .map {
        grid-area: 4 / 1 / 5 / 2;
        padding: 26px;
    }

    #contact .informations {
        grid-area: 5 / 1 / 6 / 2;
        margin-block: 25px 0px;
        gap: 25px;
    }

    #contact .form {
        grid-area: 4 / 2 / 5 / 3;
    }

    #contact .wpcf7 form {
        gap: 30px;
    }

    #contact .map iframe {
        aspect-ratio: unset;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #contact .wpcf7 form p:has(input[type="submit"]) {
        border-bottom: none;
    }

    #contact .wpcf7 form p:has(input[type="submit"]) {
        position: relative;
    }

    #contact .wpcf7 form p:has(input[type="submit"])::after {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 2px;
        background-color: var(--black);
        left: 0;
        content: "";
        display: block;
        transition: width .25s ease, left .25s ease;
    }
}

@media (width > 1199px) {
    #contact > .contactWrapper {
        column-gap: 80px;
    }
}

@media (width > 1399px) {
    #contact .information > .corps h2 {
        font-size: 1.5rem;
        line-height: 1.625rem;
    }

    #contact .corps, #contact .corps * {
        font-size: 1.125rem;
        line-height: 1.5625rem;
    }
}

@media (width > 1439px) {
    #contact > .contactWrapper {
        column-gap: 120px;
    }

    #contact .map iframe {
        aspect-ratio: 522/479;
        height: auto;
    }
}

@media (width > 1559px) {
    body > *:not(#header):not(#welcome)#contact > .contactWrapper {
        max-width: 1440px;
        margin-inline: auto;
        width: 100%;
    }
    body > *:not(#header):not(#welcome)#contact > .contactWrapper > *.map,
    body > *:not(#header):not(#welcome)#contact > .contactWrapper > *.informations,
    body > *:not(#header):not(#welcome)#contact > .contactWrapper > *.form {
        max-width: 660px;
        width: 100%;
        justify-self: end;
    }
}

@media (pointer: fine) {
    #contact .wpcf7 form p:has(input[type="submit"]):hover::after {
        width: calc(100% + 40px);
        left: -20px;
        transition: width .25s ease, left .25s ease;
    }
}

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

