@keyframes fade-in{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}

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

.hamburger{
    display: none;
}

.fade-out{
    animation : fade-out 0.3s forwards;
}


body {
    animation: fade-in 1s forwards;
    height: 125px;
    min-height: 0;
    margin: 0;
}

.home {
    position: fixed;
    inset: 0;
    height: 100vh;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 540px) {
    .home .titres {
        height: calc(150px - 50px) !important;
        width: calc(400px - 50px) !important;
    }

    
}

.hover-effect{
    scale : 1.08;
}


.conteneur {
    position: fixed;
    height: 100%;
}

.site-header {
    display: none;
}

.home .titres {

    -webkit-tap-highlight-color: transparent;

    text-align: center;
    position: relative;
    z-index: 10;
    mix-blend-mode: difference;
    color: #e3e3e3;
    cursor: pointer;
    transition: all 0.3s ease-out; /* Animation fluide */
    margin-top: -5%;
    height: 300px;
    width: 800px;
    
}

.logo-accueil{
    object-fit: contain;
    height: 100%;
    width: 100%;

    -webkit-tap-highlight-color: transparent;
}


/*
.home .titres .titre {
    font-family: 'Cinematografica';
    margin: 0;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 350px;
    line-height: 1.1;
    letter-spacing: 5px;

}



.home .titres .sous-titre {
    display: flex;
    justify-content: space-between;
    font-family: 'Segoe Print';
    color:#1bae85;
    font-size: 30px;
    margin-top: -50px
    
}

.home .titres .sous-titre p {
    margin: 0 6px;
}

.home .titres .sous-titre .ligne-1, .home .titres .sous-titre .ligne-2 {
    position: relative;
    width: 24px;
    
}

.home .titres .sous-titre .ligne-1 i, .home .titres .sous-titre .ligne-2 i {
    display: block;
    height: 2px;
    margin-top: 30px;
    background-color: #fff;
}

.home .titres .sous-titre .ligne-1 {
    width: 60%
}

.home .titres .sous-titre .ligne-2 {
    width: 10%
}

*/