
.layout-content {
    min-height: initial;
}

.presentation {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.presentation p:nth-child(2) {
    font-size: 13px;
    color: #777;
}

.prepare-slide-image {
    transform: translateY(150px);
    opacity: 0;
}

.slide-image {
    animation-name: slide-image;
    animation-delay: 0s;
    animation-duration: 0.8s;
    animation-fill-mode: ease;
    animation-fill-mode: forwards;
}

@keyframes slide-image {
    from {
        transform: translateY(150px);
        opacity: 0;
    }

    to {
        transform: translateY(0px);
        opacity: 1;
    }
}

@media screen and (max-width:800px) {

    .layout-presse {
         margin-top: 100px !important;
    }
    
}

.layout-presse {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    background-image: url(../../images/presse-fond.jpg);
    background-size: cover;
    background-attachment: fixed;
    padding-bottom: 30px;
    margin-top: 150px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
}

.layout-presse h2 {
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block;
    max-width: initial;
}


.layout-articles {
    display: block;
    width: 100%;
    max-width: 1099px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -100px;
}

.layout-article {
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    background-color: #fff;
    padding: 30px;
    margin: 10px;
    margin-bottom: 20px;
    width: calc((100% - 60px) / 3);
    box-shadow: 2px 2px 20px rgba(0,0,0,0.1);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding-top: 50px;
    padding-bottom: 50px;
    border-radius: 5px;
}


.layout-article:before {
    content: 'Lire l\'article';
    display: none;
    position: absolute;
    left: 50%;
    top: 60%;    
    z-index: 2;
    padding: 8px 18px;
    background-color: #000;
    font-family: 'helvetica';
    font-size: 14px;
    color: #fff;
    transform: translate(-50%,-50%);
    opacity: 0;
    
}

.layout-article:hover:before{
    display: inline-block;    
    animation-name: show_tooltip;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

@keyframes show_tooltip {
    from {
        top: 60%;
        opacity: 0;
    }
    to {
        top: 50%;
        opacity: 1;
    }
}

.layout-article.hide {
    display: none;
}

.layout-article .layout-lien {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.layout-article .layout-head {}


.layout-article .layout-head:before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    margin-bottom: 15px;
    background-color: var(--orange);
}

.layout-article .layout-head h2 {
    font-family: 'futura';
    font-size: 20px;
    text-transform: uppercase;
    font-weight: normal;
    letter-spacing: 0.02em;
    color: #333;
    line-height: 1.1;
}

.layout-article .layout-head p {
    font-family: 'roboto-regular';
    font-size: 12px;
    color: #555;
    margin-top: 5px;
}

.layout-article .layout-head p:first-child {
    margin-bottom: 15px;
}

.layout-article .layout-texte {
    font-family: 'roboto-regular';
    font-size: 14px;
    color: #444;
    margin-top: 10px;
}

.layout-article:first-child {
    background-color: #191210;
}

.layout-article:first-child .layout-head h2 {
    color: #fff;
}

.layout-article:first-child .layout-head p {
    color: #a6a6a6;
}

.layout-article:first-child .layout-texte {
    color: #9b9b9b;
}


@media screen and (max-width:900px) {

    .layout-article {
        width: calc((100% - 40px) / 2);
    }
    
}


@media screen and (max-width:700px) {
    
    .layout-content h1>br {
        display: none;
    }
    
    .layout-article {        
        width: calc(100% - 20px)
    }

}

