/*
div.head {
    width: 100%;
    height: 45vh;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
*/
div.header {
    background-image: url('../images/actualite.jpg');
    background-image: url('../images/rainbow1.jpg');
    background-image: url('../images/rainbow2.jpg');
    background-image: url('https://fastly.picsum.photos/id/583/2509/1673.jpg?hmac=X9Eq9t1mgiV81aQpccy4e5e0xwXtn105qHpFs3THDB4');
    background-image: url('../images/news.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    height: 40vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
div.header h1 {
    font-size: 5em;
    background: linear-gradient(
        0deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 1) 80%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    background-size: 500% auto;
    animation: degrade 1s forwards;
    font-weight: bolder;
    text-align: center;
}
@keyframes degrade {
    0% {
        opacity: 0;
        background-position: 0% 50%;
        transform: translateY(100px);
    }
    40% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        background-position: 100% 50%;
        transform: translateY(0);
    }
}

div.head div.image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}
div.head div.image img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
div.head div.blur {
    width: 100%;
    height: 100%;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-position: center center;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    filter: blur(1.5rem);
}

div.event {
    width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 99;
}
div.event div.calendrier {
    width: 120px;
    height: 120px;
    background: #fff;
    box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    float: left;
    position: relative;
    top: -30px;
}
div.event div.calendrier span.jour {
    display: block;
    background: #fb3c44;
    color: #fff;
    text-align: center;
    height: 30px;
    line-height: 30px;
}
div.event div.calendrier strong {
    display: block;
    text-align: center;
    height: 60px;
    line-height: 60px;
    font-size: 4em;
}
div.event div.calendrier span.mois {
    display: block;
    text-align: center;
    height: 30px;
    line-height: 30px;
}

h1 {
    width: calc(100% - 120px);
    margin: 0;
    padding: 0 10px;
    float: left;
    height: 60px;
    line-height: 60px;
    overflow: hidden;
    font-size: 3em;
}
p.date {
    width: calc(100% - 120px);
    margin: 0;
    padding: 0 10px;
    float: left;
    color:#fb3c44;
    height: 25px;
    line-height: 25px;
    overflow: hidden;
    font-size: 1.5em;
    font-style: italic;
}
p.date sup {
    font-size: 0.7em;
}

div.details {
    width: 100%;
    margin: 0 0 50px;
    text-align: justify;
    font-size: 1.2em;
}

div.details div.image {
    width: 100%;
    height: auto;
    display: block;
    margin: 15px auto;
}
div.details div.image img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

section.partenaires {
    border-top: dotted 2px rgba(0, 0, 0, 0.1);
}