body {
    touch-action: manipulation;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

html {
    user-zoom: fixed;
    -moz-user-zoom: fixed;
    -ms-user-zoom: fixed;
    -webkit-user-zoom: fixed;
}

#video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    display: none;
}

@media only screen and (max-width: 992px) {
    .content-background {
        background-color: #FAFAFA80;
        box-shadow: 0 0 4px 0 #663b2d;
        border: 1px #663b2d solid;
    }

    nav {
        background-color: #fafafa;
    }
}

nav ul li .active {
    color: #663b2d;
    border-bottom: 2px solid #663b2d;
}

#background-video-vimeo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

#background-video-vimeo iframe {
    width: 100dvw;
    height: 56.25dvw;
    /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
    min-height: 100dvh;
    min-width: 177.77dvh;
    /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


#chargement {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 3;
    background-color: rgb(36, 35, 32);
    transition: opacity 0.5s ease-out, display 0.5s ease-out;
}

#overlay-video-vimeo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

#overlay-video-vimeo iframe {
    width: 100dvw;
    height: 56.25dvw;
    /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
    min-height: 100dvh;
    min-width: 177.77dvh;
    /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#myTabContent {
    position: relative;
    overflow-y: auto;
}


#content {
    position: relative;
    z-index: 1;
    display: none;
    padding: 0;
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        top: 300px;
    }

    100% {
        opacity: 1;
        top: 0px;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

#background-logo {
    width: 100dvw;
    height: 56.25dvw;
    /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
    min-height: 100dvh;
    min-width: 177.77dvh;
    /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: -2;
    opacity: 1;
    transform: translate(-50%, -50%);
    background-image: url('logo.png');
    /* Use your SVG icon as the background image */
    background-size: 20.6%;
    background-position: 48.57% 32.46%;
    /* Scale the image to cover the marker */
    background-repeat: no-repeat;
    transition: opacity 0.3s ease-out;
    -webkit-filter: drop-shadow(1px 1px 0.2px #22222220);
    filter: drop-shadow(1px 1px 0.2px #22222220);
}

#myTabContent li {
    list-style-type: none;
    /* Remove the default marker */
    position: relative;
    /* Create a positioning context */
    padding-left: 20px;
    /* Add some left padding to make space for the custom marker */

}

#myTabContent li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 100%;
    /* Required for pseudo-elements */
    background-image: url('checkmark.svg');
    /* Use your SVG icon as the background image */
    background-size: 10px 10px;

    background-position: center;
    /* Scale the image to cover the marker */
    background-repeat: no-repeat;
    /* Prevent repeating the image */
    display: flex;
    /* Enable flexbox on the pseudo-element */
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
}


.fade-in-up {
    animation-name: fade-in-up;
    animation-duration: 1s;
}

.fade-out {
    animation-name: fade-out;
    animation-duration: 1s;
}

.animation-duration-delay-1 {
    animation-duration: 1s;
}

.animation-duration-delay-2 {
    animation-duration: 2s;
}

.animation-duration-delay-3 {
    animation-duration: 3s;
}