/*
    Author : Sébastien Ronjon
    Date : 16/11/2021
    Version : 1.0.0
*/

/*-----------------------------------------------------------------*/
/* GLOBAL */
/*-----------------------------------------------------------------*/
html {
    font-size: 100%;
    height: 100%;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}


body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    letter-spacing: 1.5px;
    font-size: 1.2em;
    /* 16px */
    line-height: 1.3;
    color: #0f0f0f;
    background-color: #ffffff;
    height: 100%;
}

body .home {
    background-color: #9a1616;
}

/* Typography */
/*--------------------*/

h1,
.h1-like,
h2,
.h2-like,
h3,
.h3-like,
h4,
.h4-like,
h5,
.h5-like,
h6,
.h6-like {
    font-family: 'Luckiest Guy', cursive;
    font-weight: 400;
    line-height: 1;
    color: #0f0f0f;
    margin: 0 0 0.625em 0;
}

h1,
.h1-like {
    font-size: 4em;
    color: #ffffff;
}

h2,
.h2-like {
    font-size: 3em;
    padding-top: 30px;
    padding-bottom: 20px;
}

h2::after {
    display: block;
    content: '';
    background-image: url(../img/bulle-titre-bg.png);
    width: 101px;
    height: 30px;
    margin: auto;
}

h3,
.h3-like {
    font-size: 2em;
    background-color: #ffffff;
    border: #0f0f0f solid 4px;
    padding: 20px;
}

h4,
.h4-like {
    font-size: 3em;
    background-color: #ffffff;
    border: #0f0f0f solid 4px;
    padding: 20px;
}

h5,
.h5-like {
    font-size: 2em;
    background-color: #ffffff;
    border: #0f0f0f solid 4px;
    padding: 20px;
}

h6,
.h6-like {
    font-size: 1.25em;
    
}
.txt-black {
    color: #333;
}
.txt-white {
    color: #ffffff;
}


/* links */
/*--------------------*/
a {
    color: #9a1616;
    transition: all 0.3s ease-in-out;
}

a:hover {
    text-decoration: none;
    color: #bdbdbd;
}

.sources a:hover {
    text-decoration: none;
    color: #0f0f0f;
}

/* buttons */
/*--------------------*/
.btn {
    display: inline-block;
    background-color: #9a1616;
    color: #fff;
    border: none;
    text-decoration: none;
    padding: 0 2.5em;
    line-height: 2.5;
    border-radius: 5.3em;
}

.btn:hover {
    background-color: #515253;
    color: #fff;
}

.btn--small {
    font-size: 0.75em;
}

.btn--large {
    font-size: 1.5em;
}

.btn--secondary {
    background-color: #d2d2d2;
    color: #666;
}

.btn--secondary:hover {
    background-color: #666;
    color: #d2d2d2;
}

.btn-more {
    display: block;
    width: 2em;
    line-height: 2em;
    font-size: 2.5em;
    text-align: center;
    text-decoration: none;
    background-color: #4e7dd4;
    border-radius: 50%;
    color: #fff;

}

.btn-more:hover {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}
.opacity-80:hover {
    opacity: 0.8;
}

/* grouping content */
/*--------------------*/

p {
    margin: 0 0 0.625em 0;
}

img,
video {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

audio {
    max-width: 600px;
    /*personnaliser la taille du lecteur */
    width: 100%;
}

figure {
    margin: 0;
}

iframe {
    border: none;
}

blockquote {
    border-left: 10px solid #e04259;
    padding-left: 30px;
    margin: 20px 50px;
}

code {
    font-weight: 700;
    color: #e04259;
    background-color: #e0e0e0;
    padding: 3px 5px;
    border-radius: 5px;
}

dt {
    font-weight: 700;
}

dt:first-child {
    /* cible le premeir enfant d'une suite de dt*/
    color: #e04259;
}

dt+dt {
    /* sélecteur adjascent ==> deux dt qui se suivent dans le code HTML */
    font-style: italic;
}


/* Forms */
/* -----------------------------------------------------*/
form ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

ul {
    list-style-type: none; 
}

input,
label,
select {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
}

label {
    margin-bottom: .35938em;
    font-weight: 700;
    cursor: pointer;
}

label.required:after {
    content: " *";
}

textarea,
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"],
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="time"],
input[type="week"],
select[multiple="multiple"] {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: .71875em;
    padding: .625em;
    border: 1px solid #e8e8e9;
    border-radius: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    background-color: #fff;
    box-shadow: none;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

textarea:hover,
input[type="email"]:hover,
input[type="number"]:hover,
input[type="password"]:hover,
input[type="search"]:hover,
input[type="tel"]:hover,
input[type="text"]:hover,
input[type="url"]:hover,
input[type="color"]:hover,
input[type="date"]:hover,
input[type="datetime"]:hover,
input[type="datetime-local"]:hover,
input[type="month"]:hover,
input[type="time"]:hover,
input[type="week"]:hover,
select[multiple="multiple"]:hover {
    border-color: #ceced0;
}

textarea:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="url"]:focus,
input[type="color"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
select[multiple="multiple"]:focus {
    border-color: #5f88d3;
    outline: none;
    box-shadow: 0 0 5px rgba(95, 136, 211, 0.7);
}

textarea {
    resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
    display: inline;
    margin-right: .71875em;
}

input[type="file"] {
    width: 100%;
    margin-bottom: .71875em;
    padding-bottom: .23958em;
}

input[type="submit"] {
    cursor: pointer;
}

select {
    width: auto;
    margin-bottom: .71875em;
    max-width: 100%;
}

fieldset {
    margin: 0 0 .71875em 0;
    padding: 1.4375em;
    border: 1px solid #e8e8e9;
    border-radius: 0;
    background: #fafafa;
}

::-webkit-input-placeholder {
    color: #c8c9ca;
}

:-moz-placeholder {
    color: #c8c9ca;
}

::-moz-placeholder {
    color: #c8c9ca;
}

:-ms-input-placeholder {
    color: #c8c9ca;
}

/*input[id="nom"], input[id="prenom"] {
    display: inline-block;
    width: 75%;
}
 label[for="nom"], label[for="prenom"] {
    display: inline-block;
    width: 20%;
}*/

/* table */
/*---------------------------*/
table {
    width: 100%;
    margin: 0.625em 0;
    table-layout: fixed;
    border-collapse: collapse;
}

tr,
td,
th {
    vertical-align: middle;
}

thead th {
    padding: 0.625em 0;
    border-bottom: 2px solid #c1c1c4;
    text-align: left;
    font-weight: 700;
}

tbody td {
    padding: 0.625em;
    border-bottom: 1px solid #c1c1c4;
}

tbody tr:nth-child(even) {
    background: #E7E7E7;
}

/* Iframe responsive */
/*-------------------------*/
.box-iframe {
    position: relative;
    height: 0;
    padding-bottom: 56.2%;
    /*ratio 16:9*/
}

.box-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* CSS GRID */
/*-------------------------*/

/*
        Container flex --> .grid
        Flex items     --> les enfants directs de grid
        1- J'ai besoin d'un container pour les colonnes ==> .grid
        2- je pose les classes de taille col-m-xxx sur 
            les éléments enfants de grid (les colonnes)
        3- Je ne met JAMAIS JAMAIS JAMAIS un wrap et un grid sur
            le même élément HTML (àcause du margin auto sur le wrap
            et le margin negatif sur le grid == ils s'annulent)
        4- si j'ai besoin d'un fond de ccouleur sur un élément HTML 
            qui porte une classe col-m-xxx et que je souhaite conserver 
            les gouttières : je rajoute div à l'intérieur qui recevra 
            le fond de couleur (sinon nous perdons les gouttières)
        */

.grid {
    display: flex;
    flex-wrap: wrap;
    /* retour ligne automatique*/
    margin-right: -10px;
    margin-left: -10px;
}

.grid-no-padding {
    display: flex;
    flex-wrap: wrap;
}

[class*="col-"] {
    /* on met par defaut un 100% à tout élement qui 
                    porte une classe col-*/
    width: 100%;
}

.grid [class*="col-"] {
    /*création des goutières 
                                    selecteur d'attribut css3 
                                    ==> cible que le prefix col-m-*/
    padding-left: 10px;
    padding-right: 10px;
}

.col-m-1 {
    width: calc(1*(100%/12));
}

.col-m-2 {
    width: calc(2*(100%/12));
}

.col-m-3 {
    width: calc(3*(100%/12));
}

.col-m-4 {
    width: calc(4*(100%/12));
}

.col-m-5 {
    width: calc(5*(100%/12));
}

.col-m-6 {
    width: calc(6*(100%/12));
}

.col-m-7 {
    width: calc(7*(100%/12));
}

.col-m-8 {
    width: calc(8*(100%/12));
}

.col-m-9 {
    width: calc(9*(100%/12));
}

.col-m-10 {
    width: calc(10*(100%/12));
}

.col-m-11 {
    width: calc(11*(100%/12));
}

.col-m-12 {
    width: calc(12*(100%/12));
}

.offset-m-0 {
    margin-left: 0;
}

.offset-m-1 {
    margin-left: calc(1*(100%/12));
}

.offset-m-2 {
    margin-left: calc(2*(100%/12));
}

.offset-m-3 {
    margin-left: calc(3*(100%/12));
}

.offset-m-4 {
    margin-left: calc(4*(100%/12));
}

.offset-m-5 {
    margin-left: calc(5*(100%/12));
}

.offset-m-6 {
    margin-left: calc(6*(100%/12));
}

.offset-m-7 {
    margin-left: calc(7*(100%/12));
}

.offset-m-8 {
    margin-left: calc(8*(100%/12));
}

.offset-m-9 {
    margin-left: calc(9*(100%/12));
}

.offset-m-10 {
    margin-left: calc(10*(100%/12));
}

.offset-m-11 {
    margin-left: calc(11*(100%/12));
}

.offset-m-12 {
    margin-left: calc(12*(100%/12));
}


.order-m-1 {
    order: 1;
}

.order-m-2 {
    order: 2;
}

.order-m-3 {
    order: 3;
}

.order-m-4 {
    order: 4;
}

.order-m-5 {
    order: 5;
}

.order-m-6 {
    order: 6;
}

.order-m-7 {
    order: 7;
}

.order-m-8 {
    order: 8;
}

.order-m-9 {
    order: 9;
}

.order-m-10 {
    order: 10;
}

.order-m-11 {
    order: 11;
}

.order-m-12 {
    order: 12;
}

/* GRID tablet view */
@media (min-width:481px) {

    .col-t-1 {
        width: calc(1*(100%/12));
    }

    .col-t-2 {
        width: calc(2*(100%/12));
    }

    .col-t-3 {
        width: calc(3*(100%/12));
    }

    .col-t-4 {
        width: calc(4*(100%/12));
    }

    .col-t-5 {
        width: calc(5*(100%/12));
    }

    .col-t-6 {
        width: calc(6*(100%/12));
    }

    .col-t-7 {
        width: calc(7*(100%/12));
    }

    .col-t-8 {
        width: calc(8*(100%/12));
    }

    .col-t-9 {
        width: calc(9*(100%/12));
    }

    .col-t-10 {
        width: calc(10*(100%/12));
    }

    .col-t-11 {
        width: calc(11*(100%/12));
    }

    .col-t-12 {
        width: calc(12*(100%/12));
    }

    .offset-t-0 {
        margin-left: 0;
    }

    .offset-t-1 {
        margin-left: calc(1*(100%/12));
    }

    .offset-t-2 {
        margin-left: calc(2*(100%/12));
    }

    .offset-t-3 {
        margin-left: calc(3*(100%/12));
    }

    .offset-t-4 {
        margin-left: calc(4*(100%/12));
    }

    .offset-t-5 {
        margin-left: calc(5*(100%/12));
    }

    .offset-t-6 {
        margin-left: calc(6*(100%/12));
    }

    .offset-t-7 {
        margin-left: calc(7*(100%/12));
    }

    .offset-t-8 {
        margin-left: calc(8*(100%/12));
    }

    .offset-t-9 {
        margin-left: calc(9*(100%/12));
    }

    .offset-t-10 {
        margin-left: calc(10*(100%/12));
    }

    .offset-t-11 {
        margin-left: calc(11*(100%/12));
    }

    .offset-t-12 {
        margin-left: calc(12*(100%/12));
    }

    .order-t-1 {
        order: 1;
    }

    .order-t-2 {
        order: 2;
    }

    .order-t-3 {
        order: 3;
    }

    .order-t-4 {
        order: 4;
    }

    .order-t-5 {
        order: 5;
    }

    .order-t-6 {
        order: 6;
    }

    .order-t-7 {
        order: 7;
    }

    .order-t-8 {
        order: 8;
    }

    .order-t-9 {
        order: 9;
    }

    .order-t-10 {
        order: 10;
    }

    .order-t-11 {
        order: 11;
    }

    .order-t-12 {
        order: 12;
    }
}

/*en of tablet view*/

/* GRID desktop view */
@media (min-width:769px) {

    .col-d-1 {
        width: calc(1*(100%/12));
    }

    .col-d-2 {
        width: calc(2*(100%/12));
    }

    .col-d-3 {
        width: calc(3*(100%/12));
    }

    .col-d-4 {
        width: calc(4*(100%/12));
    }

    .col-d-5 {
        width: calc(5*(100%/12));
    }

    .col-d-6 {
        width: calc(6*(100%/12));
    }

    .col-d-7 {
        width: calc(7*(100%/12));
    }

    .col-d-8 {
        width: calc(8*(100%/12));
    }

    .col-d-9 {
        width: calc(9*(100%/12));
    }

    .col-d-10 {
        width: calc(10*(100%/12));
    }

    .col-d-11 {
        width: calc(11*(100%/12));
    }

    .col-d-12 {
        width: calc(12*(100%/12));
    }


    .offset-d-0 {
        margin-left: 0;
    }

    .offset-d-1 {
        margin-left: calc(1*(100%/12));
    }

    .offset-d-2 {
        margin-left: calc(2*(100%/12));
    }

    .offset-d-3 {
        margin-left: calc(3*(100%/12));
    }

    .offset-d-4 {
        margin-left: calc(4*(100%/12));
    }

    .offset-d-5 {
        margin-left: calc(5*(100%/12));
    }

    .offset-d-6 {
        margin-left: calc(6*(100%/12));
    }

    .offset-d-7 {
        margin-left: calc(7*(100%/12));
    }

    .offset-d-8 {
        margin-left: calc(8*(100%/12));
    }

    .offset-d-9 {
        margin-left: calc(9*(100%/12));
    }

    .offset-d-10 {
        margin-left: calc(10*(100%/12));
    }

    .offset-d-11 {
        margin-left: calc(11*(100%/12));
    }

    .offset-d-12 {
        margin-left: calc(12*(100%/12));
    }

    .order-d-1 {
        order: 1;
    }

    .order-d-2 {
        order: 2;
    }

    .order-d-3 {
        order: 3;
    }

    .order-d-4 {
        order: 4;
    }

    .order-d-5 {
        order: 5;
    }

    .order-d-6 {
        order: 6;
    }

    .order-d-7 {
        order: 7;
    }

    .order-d-8 {
        order: 8;
    }

    .order-d-9 {
        order: 9;
    }

    .order-d-10 {
        order: 10;
    }

    .order-d-11 {
        order: 11;
    }

    .order-d-12 {
        order: 12;
    }
}

/*en of desktop view*/


/* helpers */
/*--------------------*/

.flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.img-left {
    float: left;
    margin-right: 10px;
}

.img-right {
    float: right;
    margin-left: 10px;
}

.overflow {
    overflow: hidden;
}

.clear {
    clear: both;
}

.ul-clean {
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    list-style-type: none;
}

.v-top {
    vertical-align: top;
}

.v-middle {
    vertical-align: middle;
}

.v-bottom {
    vertical-align: bottom;
}

.bg-white {
    background-color: #ffffff;
    padding: 20px 20px 45px 20px;
}
.bg-white-banner {
    background-color: #ffffff;
    padding: 100px 20px 45px 20px;
}

.bg-light {
    background-color: #eee;
    padding: 20px 20px 45px 20px;
}

.bg-medium {
    background-color: #c6c6c6;
    padding: 20px 20px 45px 20px;
}
.bg-medium2 {
    background-color: #616161;
    padding: 20px 20px 10px 20px;
}

.bg-dark {
    background-color: #333;
    padding: 20px 20px 45px 20px;
}
.bg-red {
    background-color: #9a1616;
    padding: 20px 20px 10px 20px;
}

.card {
    display: block;
    background-color: #eeeeee;
    border: 1px solid #cccccc;
    padding: 10px;
    text-decoration: none;
}

.txt-white {
    color: #ffffff;
}

.txt-light {
    color: #eee;
}

.txt-medium {
    color: #c6c6c6;
}

.txt-dark {
    color: #0f0f0f;
}

.txt-left {
    text-align: left;
}

.txt-center {
    text-align: center;
}

.txt-right {
    text-align: right;
}

.txt-ital {
    font-style: italic;
}

.txt-shadow {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.m-auto {
    margin-left: auto;
    margin-right: auto;
}

/*
m = margin
a, t, b = all, top, bottom
n, s, m, l = none, small, medium, large
*/

.man {
    margin: 0;
}

.mas {
    margin: 20px;
}

.mam {
    margin: 40px;
}

.mal {
    margin: 60px;
}


.mtn {
    margin-top: 0;
}

.mts {
    margin-top: 20px;
}

.mtm {
    margin-top: 40px;
}

.mtl {
    margin-top: 60px;
}
.mtxl {
    margin-top: 90px;
}

.mbn {
    margin-bottom: 0;
}

.mbs {
    margin-bottom: 20px;
}

.mbm {
    margin-bottom: 40px;
}

.mbl {
    margin-bottom: 60px;
}

.mbxl {
    margin-bottom: 90px;
}
.mrs {
    margin-right: 20px;
}
.mrm {
    margin-right: 40px;
}

.carre {
    position: relative;
    text-align: center;
    color: rgb(255, 255, 255);
}
.carre img {
    width: 100%;
}
.carre-txt {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px ;
    bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.carre-txt-taille {
    font-weight: 500;
   
    font-size: 1.2em;
    color: rgb(255, 255, 255);
}
.contour-4px {
    border: #0f0f0f solid 4px;
}


/*-----------------------------------------------------------------*/
/* LAYOUT */
/*-----------------------------------------------------------------*/

/* Mobil first */
.wrap {
    max-width: 1280px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

/* header */
/*--------------------*/
.header-top {
    background-color: #ffffff;
}

.logo a {
    display: inline-block;
}


/* nav */
/*--------------------*/
.menu {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    padding-bottom: 0;
    padding-top: 0;
}

.menu-collapse {
    height: auto;
    opacity: 1;
}

.menu a {
    display: block;
    text-align: center;
    padding: 1em;
    text-decoration: none;
    color: #0f0f0f;
}

.menu a:hover {
    color: #9a1616; 
    font-weight: 900;
}

.menu .current {
    color: #9a1616; 
    font-weight: 900;
}
.petite-nav {
    font-weight: 300;
    opacity: 0.97;
    font-size: 0.7em;
    padding-top: 5px;
}



/* btn-menu */
/*--------------------*/
.btn-menu {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #0f0f0f;
}


/* main */
/*--------------------*/

.banner {
    background-image: url('../img/entete-news-fond2.jpg');
    background-repeat: no-repeat;
    /* -webkit-background-size: cover; */
    /* background-size: cover;*/
    /*background-position: 40% 50%;*/
    height: calc(100vh - 58px); /* pour que le banner soit pile poil à la taille de l'écran du mobile : 100% moins les 58px de hauteur de la nav */
    padding: 0;
}
.banner .overlay {
    display: flex;
    align-items: center;
    height: 100%;
}

.top-head-page {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}
.top-head-page img {
    object-fit: cover;
    height: 50vh;
    width: 100%;
}
.top-head-page-content {
   
    position: relative;
    background-color: #fff;

}
.top-head-page-content-img {
    margin-top: 5vh;
}

.simplefilter {
	display: flex;
	flex-wrap: wrap;
}

.fltr-controls {
	cursor: pointer;
	background-color: grey;
	padding: 1em;
	color: #fff;
	margin-right: 10px;
}
.fltr-controls.active {
	background-color: #9a1616;
}

/* footer */
/*--------------------*/
.footer {
    background-color: #0f0f0f;
    padding: 20px 0;
    text-align: center;
    color: #ffffff;
}

.totop {
    position: fixed;
    bottom: 10px;
    right: 10px;
    color: #9a1616;
    cursor: pointer;
}
.footer a {
    color: #ffffff;
    font-weight: 200;
    font-size: 0.7em;
    text-decoration: underline;
}
.footer .txt-ital {
    font-weight: 200;
    font-size: 0.7em;
    margin-right: 5em;
    margin-left: 5em;
}

.logo-footer a {
    display: inline-block;
}
.logo-footer {
    text-align: center;
}

.menu-footer a:hover {
    color: #bdbdbd; 
    font-weight: 300;
    
    
}


/* CSS TABLET */
/*----------------------------------------*/
@media (min-width: 481px) {

    /* header */
    /*--------------------*/
    .logo {
        text-align: center;
        margin: 8px 0 2px 0;
        
    }
    .header-top {
        box-shadow: 0 0 10px rgb(0, 0, 0, 0.2);
    }

    /* menu */
    /*--------------------*/
    .menu {
        display: flex;
        justify-content: center;
        
        height: auto;
        opacity: 1;
        padding-bottom: 1em;
        padding-top: 1.5em;
    }

    .menu a {
        padding: 0.5em 1em;
    }

    /* btn-menu */
    /*--------------------*/
    .btn-menu {
        display: none;
    }
    /* helpers */
    /*--------------------*/

    img.mobile-photo-center {
        position: relative;
        left: 0%;
    }
    /* .interviews {
        position: absolute;
        z-index: 2;
        top: 80%;
        left: 70%;
    } */

}

/* end of tablet view*/
/*----------------------------------------*/

/* CSS DESKTOP */
/*----------------------------------------*/
@media (min-width: 769px) {

    /* logo */
    /*--------------------*/
    .logo {
        text-align: left;
    }

    /* menu */
    /*--------------------*/
    .menu {
        align-items: center;
        justify-content: flex-end;
        margin-bottom: 0;
        padding-bottom: 0;
        padding-top: 0;
    }
    .header-top {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100000;
    }
    main {
        margin-top: 90px;
    }
    .banner {
            background-attachment: fixed; /* Pour bloquer les images de fond, façon presque parallax ! Attention BUG sur IOS ! => ne mettre en place que sur la vue desktop */
    }

    /* Main */
    /*--------------------*/

    .top-head-page-content-img {
        margin-top: 25vh;
    }

    /* Zoom image */
    /*--------------------*/

    .zoom-box {
        width: 300px;
        height: 300px;
        overflow: hidden;
    }

    .zoom-img {
        transition: all 0.2s ease-in;
    }

    .zoom-img:hover {
        transform: scale(1.05);
    }
   
    img.mobile-photo-center {
        position: relative;
        left: 0.5%;
    }
   

    /* helpers */
    /*--------------------*/

    .carre-txt-taille {
        font-weight: 400;
        letter-spacing: 1.5px;
        font-size: 1.5em;
        line-height: 1;
    }
    .contenu .typo-intro {
        padding-left: 6em;
        padding-right: 6em;
    }

    /* footer */
    /*--------------------*/
    .logo-footer {
        text-align: left;
    }

}

/* end of desktop view*/
/*----------------------------------------*/


    /* parallax */
    /*--------------------*/
 
    .parallax-conteneur {
        background-color: #0f0f0f;
        height: 1020px;
        width: 100%;
        position: relative;
    }
    
    .parallax .prlx-fond {
        background-image: url('../img/prlx07-fond.png');
        background-repeat: no-repeat;
        background-position: center;
        background-position: top;
        /* background-size: contain; */
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;  
    }
    .parallax .prlx-groupe {
        background-image: url('../img/prlx06-groupe.png');
        background-repeat: no-repeat;
        background-position: center;
        background-position: top;
        /* background-size: contain; */
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;  
    }
    .parallax .prlx-belzebub {
        background-image: url('../img/prlx05-belzebub.png');
        background-repeat: no-repeat;
        background-position: center;
        background-position: top;
        /* background-size: contain; */
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;  
    }
    .parallax .prlx-foule4 {
        background-image: url('../img/prlx04-foule.png');
        background-repeat: no-repeat;
        background-position: center;
        background-position: top;
        /* background-size: contain; */
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;   
    }
    .parallax .prlx-foule3 {
        background-image: url('../img/prlx03-foule.png');
        background-repeat: no-repeat;
        background-position: center;
        background-position: top;
        /* background-size: contain; */
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;  
    }
    .parallax .prlx-foule2 {
        background-image: url('../img/prlx02-foule.png');
        background-repeat: no-repeat;
        background-position: center;
        background-position: top;
        /* background-size: contain; */
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;  
    }
    .parallax .prlx-foule1 {
        background-image: url('../img/prlx01-foule.png');
        background-repeat: no-repeat;
        background-position: center;
        background-position: top;
        /* background-size: contain; */
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;  
    }
   /* .parallax .prlx-foule1,
    .contenu {
        background-attachment: fixed; ????? 
    }
    */

    .contenu {
        background-color: #0f0f0f;
        position: absolute;
        width: 100%;
        /* height: 100vh;  */
        color: rgb(255, 255, 255);
        top: 880px; /* ou 93vh mais souci de décalage d'images au scroll */
    }

    /* .contenu h2 {
        color: rgb(255, 255, 255);
        padding: 20px 0px;
    } /*


    /* FLEXSLIDER 2 */
    /*--------------------*/

    .flex-direction-nav a {
        height: 50px;
        color: rgba(0,0,0,.8);
        transition: all .2s ease-in-out;
    }
   
     /* EFFET ZOOM HOVER */
    /*--------------------*/
   
  

    

    /* PAGE ACCUEIL */
    /*--------------------*/

   .accueil-news {
        padding-top: 60px;
    }

    .typo-intro {
        font-weight: 300;
    }