.layout-animation {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    z-index: 5;
    animation-name: hide_animation;
    animation-delay: 4.5s;
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    overflow: hidden;
}

@keyframes hide_animation {
    0% {
        opacity: 1;
        width: 100%;
        height: 100%;
    }
    99% {
        width: 100%;
        height: 100%;
        opacity: 0;
    }
    100% {
        width: 0%;
        height: 0%;
        opacity: 0;
    }
}

.layout-animation>div {
    display: block;
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.layout-animation>div:nth-child(2) {
    z-index: 2;
    background-color: #b2a69f;
    transform: translateX(100%);
    animation-name: show_end;
    animation-delay: 3.7s;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

@keyframes show_end {
    from {
        transform: translateX(100%)
    }
    to {
        transform: translateX(0%)
    }
}

.layout-animation .layout-title {
    display: block;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0px;
    z-index: 4;
    text-align: center;
    transform: translateY(-50%);
}

.layout-animation .layout-title div {
    overflow: hidden;
}

.layout-animation .layout-title div:nth-child(1) {
    padding-top: 40px;
}

.layout-animation .layout-title div:nth-child(1) img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 33.15%;
    max-width: 470px;
    transform: translateY(40px);
    animation-name: show_titre1;
    animation-delay: 0.3s;
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

@keyframes show_titre1 {
    from {
        transform: translateY(40px)
    }
    to {
        transform: translateY(-40px)
    }
}

.layout-animation .layout-title div:nth-child(2) {
    padding-top: 40px;
    margin-top: -30px;
}

.layout-animation .layout-title div:nth-child(2) img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    width: 16.87%;
    max-width: 270px;
    min-width: 210px;
    transform: translateY(20px);
    animation-name: show_titre2;
    animation-delay: 0.5s;
    animation-duration: 0.4s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

@keyframes show_titre2 {
    from {
        transform: translateY(20px)
    }
    to {
        transform: translateY(-40px)
    }
}

.layout-animation .layout-items {
    display: block;
    position: absolute;
    top: 50%;
    left: 0px;
    width: 100%;
    z-index: 3;
    text-align: center;
    opacity: 0;
    animation-name: show_items;
    animation-delay: 1.3s;
    animation-duration: 2s;
    animation-timing-function: cubic-bezier(0, .59, .15, 1.01);
    animation-fill-mode: forwards;
}

@keyframes show_items {
    from {
        transform: translateY(70px);
        opacity: 0
    }
    to {
        transform: translateY(0px);
        opacity: 1
    }
}

.layout-animation .layout-items img {
    width: 100%;
    transform: translateY(-50%);
    max-width: 1100px;
}

.layout-animation .layout-blend-color {
    position: absolute;
    z-index: 2;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #1b2f4a;
    mix-blend-mode: multiply;
    opacity: 0;
    animation-name: show_blend;
    animation-delay: 0s;
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

@keyframes show_blend {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.layout-animation .layout-map {
    display: block;
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: url(./../images/accueil/introduction/background.jpg);
    background-size: cover;
    background-position: center center;
}

.layout-animation+.layout-root {
    animation-name: show_root;
    animation-delay: 5s;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes show_root {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media screen and (max-width:600px) {
    .layout-animation {
        display: none;
    }
}

@media screen and (max-height:400px) {
    .layout-animation {
        display: none;
    }
}