/* =============================
FONTS
============================= */

@font-face {
    font-family: 'futuramedium';
    src: url('../../font/futura-webfont.woff2') format('woff2'),
        url('../../font/futura-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'futurabold';
    src: url('../../font/futura-bold-webfont.woff2') format('woff2'),
        url('../../font/futura-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'futura_bookregular';
    src: url('../../font/futura-book-webfont.woff2') format('woff2'),
        url('../../font/futura-book-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'futura_bookoblique';
    src: url('../../font/futura-bookoblique-webfont.woff2') format('woff2'),
        url('../../font/futura-bookoblique-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'futura_heavyregular';
    src: url('../../font/futura-heavy-webfont.woff2') format('woff2'),
        url('../../font/futura-heavy-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'futura_lightregular';
    src: url('../../font/futura-light-webfont.woff2') format('woff2'),
        url('../../font/futura-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


/* =============================
TAILLES FONTS
============================= */

.fontE{
    font-size:0.8em;
}

.font16 {
    font-size:16px;
}

.font15 {
    font-size:15px;
}

.font25 {
    font-size:25px;
}

.font26 {
    /*Menu Mobile*/
    font-size:26px;
}

.font35 {
    font-size:35px;
}

.font40{
    font-size:38px;
}

.font46{
    font-size:46px;
}

.font50 {
    font-size:50px;
}

.font81 {
    font-size:81px;
}

.fontHeavy{
    font-family: 'futura_heavyregular', Helvetica, Arial, sans-serif;
}

.fontBold{
    font-family: "futurabold", Helvetica, Arial, sans-serif;
}

.fontBook{
    font-family: "futura_bookregular", Helvetica, Arial, sans-serif;
}

.fontMedium{
    font-family: "futuramedium", Helvetica, Arial, sans-serif;
}

.fontLight{
    font-family: "futura_lightregular", Helvetica, Arial, sans-serif;
}

/* Animation */
@-webkit-keyframes loading {
    to { -webkit-transform: rotate(360deg); }
}
@-moz-keyframes loading {
    to { -moz-transform: rotate(360deg); }
}
@-ms-keyframes loading {
    to { -ms-transform: rotate(360deg); }
}
@keyframes loading {
    to { transform: rotate(360deg); }
}

/* Loader (*/
#loading {

    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;

    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
    border-bottom: 4px solid #777;
    border-left: 4px solid #777;

    -webkit-animation: loading 1.2s infinite linear;
    -moz-animation: loading 1.2s infinite linear;
    -ms-animation: loading 1.2s infinite linear;
    animation: loading 1.2s infinite linear;

    position: absolute;
    top: 46%;
    left: 46%;
}

#contLoader{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #373737;
    z-index: 8000000;
    display: none;
}


/* =============================
HTML / BODY
============================= */

html,body{ 
    height: 100% !important;
    width: 100%;
    margin: 0; 
    box-sizing: border-box;
    background-color:#373737;
    position:relative;
}

/* =============================
HEADER
============================= */

/* ========
Desktop
=========*/

.header-container{
    position: fixed;
    height:auto;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #FFFFFF;
    z-index: 1000;
}

.header-container ul{
    font-size: 0;
    list-style:none;
    margin:0 0 0 182px;
    padding:25px 0px;
}


.header-container li, .header-container li a{
    text-decoration: none;
    font-family: "futura_lightregular", Helvetica, Arial, sans-serif;
    color: #FFFFFF; 
    display:inline-block;
    /*    opacity:0.7;*/
    font-weight: 400;
}

.header-container li a:hover{
    /*    font-family: "futuramedium", Helvetica, Arial, sans-serif;*/
    /*    opacity:1;*/
    font-weight: 600;
}

.nav-active{
    font-weight: 600!important;
}

.header-container li{
    padding: 0 20px;
    border-right: solid 1px #FFFFFF;
}

.header-container li:first-child{
    padding-left: 0;
}

.header-container li:last-child{
    border-right: solid 0px #FFFFFF;
}

#logoFord{
    position: absolute;
    right: 35px;
    top: 45px;
}

#logoFordMin{
    position: absolute;
    right: 35px;
    top: 48px;
    display: none;
}

#logoMenu{
    position: absolute;
    text-decoration: none;
    opacity:0;
    left: 30px;
    top: 15%;
    -webkit-transition: all ease-out 0.6s;
    -moz-transition: all ease-out 0.6s;
    transition: all ease-out 0.6s;
    display: block;
}


/* ========
Mobile
=========*/
#mobile-header-container{
    display:none;
    position: fixed;
    height:100%;
    width:50%;
    top: 0;
    right: -50%;
    background-color: #2d2d2e;
    color: #FFFFFF;
    z-index: 1000;
    /*    border-left: solid 1px #FFFFFF;*/
    -webkit-transition: all ease-out 0.6s;
    -moz-transition: all ease-out 0.6s;
    transition: all ease-out 0.6s;
}
#borderMenuMobile{
    position:absolute;
    height:100%;
    width:1px;
    background-color: #FFFFFF;
    left:0;
}

#mobile-header-container ul{
    font-size: 0;
    list-style:none;
    padding:25px 0px;
    margin-left:42px;
}


#mobile-header-container li, #mobile-header-container li a{
    text-decoration: none;
    font-family: "futura_lightregular", Helvetica, Arial, sans-serif;
    color: #FFFFFF; 
    display:block;
    padding-right: 10px;
}

#mobile-header-container li{
    padding: 20px 0;
    border-top: solid 1px #969697;
    border-bottom: solid 1px #000000;
}

#mobile-header-container li:first-child{
    padding-top: 0;
    border-top: solid 0px #969697;
}

#mobile-header-container li:last-child{
    border-bottom: solid 0px #000000;
}

#logoFordMobile{
    position: absolute;
    left: -190px;
    top: 16px;
}

#iconMenu{
    position: absolute;
    top:0;
    left:-78px;
    cursor:pointer;
}

#containerIconMenu{
    padding:24px 17px 17px;
    background-color:#2d2d2e;
}

.barreMenu{
    height:4px;
    width:44px;
    background-color:#FFFFFF;
    margin-bottom:7px;
}

#barreMenu1, #barreMenu3{
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin:50% 50%;
    -moz-transform-origin:50% 50%;
    transform-origin:50% 50%;
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
}

#barreMenu2A,#barreMenu2B{
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin:50% 50%;
    -moz-transform-origin:50% 50%;
    transform-origin:50% 50%;
    -webkit-transition: all ease-out 0.6s;
    -moz-transition: all ease-out 0.6s;
    transition: all ease-out 0.6s;
}

#barreMenu2B{
    position: absolute;
    top:35px;
    left:17px;
}

.rotatePlus45{
    -webkit-transform: rotate(45deg)!important;
    -moz-transform: rotate(45deg)!important;
    transform: rotate(45deg)!important;
}

.rotateMoins45{
    -webkit-transform: rotate(-45deg)!important;
    -moz-transform: rotate(-45deg)!important;
    transform: rotate(-45deg)!important;
}

#logoMenuMobile{
    position: fixed;
    opacity: 0;
    display:block;
    text-decoration: none;
    left: 18px;
    top: 18px;
    z-index: 1000;
    display: none;
    -webkit-transition: all ease-out 0.6s;
    -moz-transition: all ease-out 0.6s;
    transition: all ease-out 0.6s;
}

/* =============================
CONTENT
============================= */


#main-container{
    -webkit-transition: all ease-out 0.6s;
    -moz-transition: all ease-out 0.6s;
    transition: all ease-out 0.6s; 
}

.fullscreen{
    margin:0;
    padding:0;
    /*    z-index: 100;*/
    position: relative;
}

#navSecondaire{
    position:fixed;
    bottom:0;
    right:0;
    height:225px;
    width:40px;
    z-index: 500;
    border-left: solid 1px #FFFFFF;
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s; 
}

#navSecondaire ul{
    font-size: 0;
    list-style:none;
    margin:0 ;
    padding:0px;
}

#navSecondaire ul li a{
    display: block;
    text-decoration: none;
    color: #FFFFFF;
    font-family: "futura_lightregular", Helvetica, Arial, sans-serif;
    font-size: 14px;
    padding: 0 10px 20px 10px;
}

#barreNavSecondaire{
    position:absolute;
    top:0;
    left:0;
    height:17px;
    width:2px;
    background:#FFFFFF;
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
}

#fordFiestaMobile{
    display:none;
}

.creditPhoto{
    position: absolute;
    right: -50px;
    bottom: 380px;
    font-size:12px;
    -ms-transform: rotate(-90deg); /* IE 9 */
    -webkit-transform: rotate(-90deg); /* Chrome, Safari, Opera */
    transform: rotate(-90deg);
    color:#000000;

}

#Synapson .creditPhoto{
    color:#363636;
}

/* ========
ECRAN 1
=========*/

#accueil{
    background:url("../../img/background_home.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#containerEcran1{
    position:relative;
    width:60%;
    height:73%;
    margin-top: 47vh; /* poussé de la moitié de hauteur de viewport */
    -webkit-transform: translateY(-50%); /* tiré de la moitié de sa propre hauteur */
    -moz-transform: translateY(-50%); /* tiré de la moitié de sa propre hauteur */
    transform: translateY(-50%); /* tiré de la moitié de sa propre hauteur */
    margin-left:4%;
}

#logoFiestaRecord{
    position:absolute;
    height:50%;
    top:0;
    left:-10px;
    -webkit-transition: all ease-out 0.6s;
    -moz-transition: all ease-out 0.6s;
    transition: all ease-out 0.6s;
}

#containerTextEcran1{
    position:absolute;
    bottom:0;
    left:0;
    height:50%;
    width: 100%;
    color:#FFFFFF;
    -webkit-transition: all ease-out 0.6s;
    -moz-transition: all ease-out 0.6s;
    transition: all ease-out 0.6s;
}

#containerLogoPart{
    overflow: hidden;
    position: absolute;
    top: 71px;
    right: 0;
    width: 206px;
    height: 261px;
}

#logoPartenaires{
    position:absolute;
    top:0;
    right:0;
    -webkit-transition: all ease-out 0.6s;
    -moz-transition: all ease-out 0.6s;
    transition: all ease-out 0.6s;
}

#scrollIconDesktop{
    position:absolute;
    bottom:15px;
    left:4%;
    display: block;
    text-decoration: none;
    height: 50px;
    overflow: hidden;
}

.cacheBarreIcon {
    position: relative;
    bottom: -20px;
}

.barreIconScroll{
    position:relative;
    height:23px;
    width:4px;
    margin-right: 4px;
    background-color:#FFFFFF;
    display: inline-block;
}

#scrollIconMobile {
    display:none;
    position: absolute;
    bottom: 10px;
    left: 4%;
    text-decoration: none;
    height: 50px;
    overflow: hidden;
}

#blocBlanc1{
    margin-top:20px;
    height:16px;
    width:129px;
    background-color:#FFFFFF;
}

#textEcran1{
    font-family: "futuramedium", Helvetica, Arial, sans-serif;
    padding: 30px 0;
}

#blocBlanc2{
    height:16px;
    width:498px;
    background-color:#FFFFFF;
}
#onAir{
    margin : 20px 0 -10px -10px;
}
#dateEcran1{
    font-family: "futurabold", Helvetica, Arial, sans-serif;
}

/*Mobile*/
#logoPartenairesMobile{
    display:none;
}

#logoPartenairesMobile{
    position:absolute;
    right: 10px;
    bottom: 10px;
}

#containerLogoPartMin{
    overflow: hidden;
    position: absolute;
    top: 68px;
    right: 0;
    width: 172px;
    height: 218px;
}

#logoPartenairesMin{
    display:none;
    position:absolute;
    top:0px;
    right:0;
    -webkit-transition: all ease-out 0.6s;
    -moz-transition: all ease-out 0.6s;
    transition: all ease-out 0.6s;
}


/* ========
ECRAN 2
=========*/

#fiestaSessions{
    background:url("../../img/background_fiesta.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#containerEcran2{
    position:relative;
    width:100%;
    height:30%;
    margin-top: 8%;
    margin-bottom: 100px;
    color:#373737;
}

#containerTextEcran2{
    position:absolute;
    top:0;
    left:0;
    padding:60px;
    background-color:#FFFFFF;
}

.containerArtistesSession{
    margin-left:3%;
    width:auto;
    height:130px;
    position:relative;
}

.containerArtisteBloc{
    display: inline-block;
}

.artisteSession{
    position:relative;
    height:122px;
    width:300px;
    margin-right:50px;
    margin-bottom: 80px;
    background-color:rgba(55, 55, 55, 0.7);
    border:1px solid #FFFFFF;
    display: inline-block;
    text-decoration: none;
    box-shadow: inset 0 0 0 0 #FFFFFF;
    -webkit-transition: all ease-out 0.6s;
    -moz-transition: all ease-out 0.6s;
    transition: all ease-out 0.6s;
}

.artisteSession:hover {
    box-shadow: inset 400px 0 0 0 #FFFFFF;
}

.containerArtisteSessionDate{
    position:absolute;
    top:-34px;
    right:-20px;
    font-family: "futura_bookregular", Helvetica, Arial, sans-serif;
}

.artisteSessionDate{
    padding: 7px 14px;
    background-color: #FFFFFF;
    color:#2d2d2e;
}

.artisteSessionDateEspace{
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    position:absolute;
    bottom:-3px;
    height:4px;
    width:100%;
    border:1px solid #FFFFFF;
}

.containerArtisteSessionNom{
    position:absolute;
    top:20px;
    right:20px;
}

.artisteSessionNom{
    color:#FFFFFF;
    font-family: "futurabold", Helvetica, Arial, sans-serif;
    text-align:right;
    line-height:42px;
    -webkit-transition: all ease-out 0.6s;
    -moz-transition: all ease-out 0.6s;
    transition: all ease-out 0.6s;
}

#titreEcran2{
    margin-bottom: -10px;
    font-family: "futurabold", Helvetica, Arial, sans-serif;
}

.blocNoir{
    height:9px;
    width:53px;
    margin:20px 0;
    background-color:#373737;
}

#textEcran2{
    font-family: "futuramedium", Helvetica, Arial, sans-serif;
}

#textBoldEcran2{
    font-family: "futura_heavyregular", Helvetica, Arial, sans-serif;
    margin-top:20px;
}

/*Container Nom Artistes Version Mobile*/

.mobileContainerArtistes{
    display:none;
}

.containerOuter {  
    /*
    overflow-x: scroll;
    overflow-y: hidden; 
    */
    width: auto; 
    height: 200px; 
}

/*
.containerInner { 
width: 950px; 
}
*/

.containerInner .artisteSession {
    margin-top: 46px;
}




/* ========
ECRAN 3
=========*/
#artistes{
    color:#FFFFFF;
    overflow: hidden;
}

.titreEcran3 {
    margin-bottom: -10px;
}

#JoeBel {
    background:url("../../img/background_joe_bel.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    left:0%;
}

#ChristopheMae{
    background:url("../../img/background_christophe_mae.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    left:100%;
}



#Synapson {
    background:url("../../img/background_synapson.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    left:100%;
}

#BenLOncleSoul {
    background:url("../../img/background_ben_loncle_soul.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    left:100%;
}


.blocArtiste{
    position:absolute;
    width: 100%;
    top:0;
    left:0;
}

.visible{
    z-index: 100;
}

.hideRight{
    z-index: 50;
}

.hideLeft{ 
    z-index: 100;
}

.showBloc{
    -webkit-transform: translateX(-0%);
    -moz-transform: translateX(-0%); 
    transform: translateX(-0%);
}

.hideBloc{
    left:100%;
}

.containerEcran3{
    position:relative;
    width:90%;
    height:58%;
    top:16%; 
    margin-left:4%;
}

.containerTextEcran3{
    position:relative;
    top:0;
    left:0;
    width: 60%;
}

.textEcran3Mobile{
    display:none;
}

.blocBlanc{
    height: 9px;
    width: 53px;
    margin: 20px 0;
    background-color: #FFFFFF;
}


.containerDate {
    display: inline-block;
    vertical-align: top;
    margin-top: 100px;
    position:relative;
}

.containerVideoGlobal{
    position:relative;
}

.containerVideo{
    position:relative;
    left:0;
}

.containerVideo1, .containerVideo1B{
    display:inline-block;
    margin-right: 50px;
    position:relative;
}

.containerVideo1B, .containerVideo2{
    display:none;
    position:relative;
}

.containerReseauxSociaux{
    display: inline-block;
    width: auto;
    float: right;
}

.containerReseauxSociaux .iconRS{
    display: inline-block;
    float: right;
    margin: 0;
    margin-left: 10px;
}

.containerReseauxSociauxMobile {
    display:none;
    position: absolute;
    top: 0;
    right: 0;
}

.facebook, .twitter{
    width:26px;
    height:26px;
    display: inline-block;
    margin-left: 10px;
}

.facebook{
    background: url("../../img/btn_facebook_blanc.png") no-repeat;
}

.twitter{
    background: url("../../img/btn_twitter_blanc.png") no-repeat;
}

/*
.facebook:hover{
background: url("../../img/btn_facebook_blanc.png") no-repeat;
}

.twitter:hover{
background: url("../../img/btn_twitter_blanc.png") no-repeat;
}
*/

/*
#ChristopheMae .containerReseauxSociaux, #ChristopheMae .containerReseauxSociauxMobile, #JoeBel .containerReseauxSociaux, #JoeBel .containerReseauxSociauxMobile, #Synapson .containerReseauxSociaux, #Synapson .containerReseauxSociauxMobile, #BenLOncleSoul .containerReseauxSociaux, #BenLOncleSoul .containerReseauxSociauxMobile{
display: none;
}
*/

.titreVideo{
    margin:-10px 0 10px 0;
    width: auto;
    display: inline-block;
}

.playerVideo{
    position: relative;
    border: 1px solid #FFFFFF;
    width:422px;
    height:260px;
}

.containerDate{
    display: inline-block;
    vertical-align: top;
    margin-top: 140px;
    margin-left: 60px;
}

#wrapperArtistes{
    position: absolute;
    bottom: 40px;
    height: 17%;
    width:90%;
    z-index: 200;
    font-size:0;
}

.middleBorder{
    width: 40%;
    height: 50%;
    border-top: 1px solid #FFFFFF;
    position: relative;
    bottom: 0;
    left: 0;
    display: inline-block;
}

.blocTexteBtn{
    position:relative;
}

#containerArtistes{
    position: absolute;
    left:0;
    height:100%;
    width:100%;
}

.artiste{
    height: 100%;
    width: 318px;
    margin-right: 10px;
    display: inline-block;
    overflow: hidden;
    border: 1px solid #FFFFFF;
    position: relative;
}

.nomBloc{
    padding:10px 0;
}

.nomBloc2{
    line-height: 40px;
    padding: 0;
}

.containerBlocTexte {
    position: absolute;
    top: 50%;
    left: 25px;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    transform: translate(0, -50%);
}


.blocBtnArtiste{
    position:absolute;
    height: 100%;
    width: 100%;
    top:0;
    left:0;
    display: block;
    text-decoration: none;
    color:#FFFFFF;

}

.containerBlocTexte {
    left: 14px;
}

#bloc1, #bloc2, #bloc3{
    -webkit-transition: all ease-out 0.6s;
    -moz-transition: all ease-out 0.6s;
    transition: all ease-out 0.6s;
    box-shadow: inset 0 0 0 0 #FFFFFF; 
    cursor:pointer;
}

#bloc1:hover, #bloc2:hover, #bloc3:hover{
    box-shadow: inset 400px 0 0 0 #FFFFFF;  
}

#bloc1 .blocJB, #bloc1 .blocS, #bloc1 .blocBOS{
    left:100%;
}

#bloc2 .blocCM, #bloc2 .blocJB, #bloc2 .blocBOS{
    left:100%;
}

#bloc3 .blocCM, #bloc3 .blocJB, #bloc3 .blocS{
    left:100%;
}



/* ========
ECRAN 4
=========*/

#coulisses{
    background-color:#2d2d2e;
}

#containerEcran4{
    position:relative;
    color:#FFFFFF;
    width:73%;
    height:73%;
    margin-top: 48vh; /* poussé de la moitié de hauteur de viewport */
    -webkit-transform: translateY(-50%); /* tiré de la moitié de sa propre hauteur */
    -moz-transform: translateY(-50%); /* tiré de la moitié de sa propre hauteur */
    transform: translateY(-50%); /* tiré de la moitié de sa propre hauteur */
    margin-left:4%;
}

.titreEcran4 {
    margin-bottom: -10px;
    text-transform: uppercase;

}

#containerTextEcran4{
    position:relative;
    width: 90%;
}

#containerVideoEcran4{
    position:relative;
    margin-top:20px;
    width:100%;
}

#videoEcran4, #videoEcran4B{
    position:relative;
    top:0;
    left:0;
    height:493px;
    width:878px;
    border:1px solid #FFFFFF;
}

.CoulisseVideoB, .textCoulisseB{
    display:none;
}

#containerEcran4 .containerReseauxSociaux {
    margin-left: 25px;
    float: none;
}

#logoBO{
    position:absolute;
    top:20%;
    right:0;
    -webkit-transition: all ease-out 0.6s;
    -moz-transition: all ease-out 0.6s;
    transition: all ease-out 0.6s;

}
#logoBOMobile{
    position:absolute;
    bottom:20%;
    right:0;
    -webkit-transition: all ease-out 0.6s;
    -moz-transition: all ease-out 0.6s;
    transition: all ease-out 0.6s;
    display:none;
}


/* ========
ECRAN 5
=========*/

#containerEcran5{
    position:relative;
    width:100%;
    height:100%;
    background-color:white;
}

#fiestaVignale{
    background:url("../../img/background_ford_vignale.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    height:100%;
    width:100%;
    z-index: 100;
}

#fiestaST{
    background:url("../../img/background_ford_st_line.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    height:100%;
    width:100%;
    z-index: 100;
}

#fiestaTitanium{
    background:url("../../img/background_ford_titanium.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    height:100%;
    width:100%;
    z-index: 100;
}

.containerTextsFords{
    position:absolute;
    bottom:0;
    width:100%;
    height:30%;
    background-color:#FFFFFF;
    -webkit-transition: all ease-out 0.6s;
    -moz-transition: all ease-out 0.6s;
    transition: all ease-out 0.6s;
    z-index: 500;
}

.mentionFord{
    color:#FFFFFF;
    position: absolute;
    top:-30px;
    left:50px;
}

.descFords{
    position:absolute;
    padding: 20px 50px;
    opacity:0;
    z-index: 50;
}

.invisibleLayer{
    z-index: 0;
}

.containerBarre {
    width: 17px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all ease-out 0.4s;
    -moz-transition: all ease-out 0.4s;
    transition: all ease-out 0.4s; 
}

.containerCTA{
    position:absolute;
    bottom: 9px;
    left: 50px;
}

.fordCtaBarre, .fordCtaBarreMobile{
    height:1px;
    width:17px;
    background-color: #373737;
    float: right;
    margin-top:4px;
}

.fordCtaBarre:first-child, .fordCtaBarreMobile:first-child {
    width:7px;
    margin-top: 10px;
}

.fordCtaBarre:last-child, .fordCtaBarreMobile:last-child {
    width:7px;
}


.lienFord{
    position: relative;
    padding:5px;
    padding-right:40px;
    text-transform: uppercase;
    color:#373737;
    text-decoration:none;
    border:1px solid #373737;
    display: inline-block;
    margin-right:50px;
    margin-top:30px;
    overflow: hidden;
}

.lienFord:hover > .containerBarre{
    right:-17px;
}

#navTertiaire{
    position:absolute;
    bottom:0;
    right:0;
    height:225px;
    width:40px;
    z-index: 550;
    border-left: solid 1px #373737;
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s; 
}

#navTertiaire ul{
    font-size: 0;
    list-style:none;
    margin:0 ;
    padding:0px;
}

#navTertiaire ul li a{
    display: block;
    text-decoration: none;
    color: #373737;
    font-family: "futura_lightregular", Helvetica, Arial, sans-serif;
    font-size: 14px;
    padding: 0 10px 20px 10px;
}

#barreNavTertiaire{
    position:absolute;
    top:0;
    left:0;
    height:17px;
    width:2px;
    background:#373737;
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
}

/*Mobile*/
#containerEcran5Mobile{
    position:relative;
    width:100%;
    height:auto;
    background-color:white;
    box-sizing: border-box;
}

.containerPhotoFord{
    position: relative;
    height:400px;
    width:100%;
}

#fiestaVignaleMobile{
    height: 100%;
    width: auto;  
    position: relative;
    display: inline-block;
    vertical-align: top;
}

/*
#fiestaVignaleMobile .containerPhotoFord{
background:url("../../img/background_ford_vignale_mobile.jpg") no-repeat center center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;    
}
*/

#fiestaSTMobile{
    height: auto;
    width: 100%; 
    position: relative;
    display: inline-block;
    vertical-align: top;
}

/*
#fiestaSTMobile .containerPhotoFord{
background:url("../../img/background_ford_st_line_mobile.jpg") no-repeat center center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
*/

.containerPhotoFord img{
    height: auto;
    width: 100%;
}

#fiestaTitaniumMobile{
    height: auto;
    width: 100%;  
    position: relative;
    display: inline-block;
    vertical-align: top;
}

/*
#fiestaTitaniumMobile .containerPhotoFord{
background:url("../../img/background_ford_titanium_mobile.jpg") no-repeat center center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
*/

#containerEcran5Mobile .containerTextsFords{
    position:relative;
    bottom:0;
    width:100%;
    height:auto;
    background-color:#FFFFFF;
    -webkit-transition: all ease-out 0.6s;
    -moz-transition: all ease-out 0.6s;
    transition: all ease-out 0.6s;
}

#containerEcran5Mobile .mentionFord{
    color:#FFFFFF;
    position: absolute;
    top:-30px;
    left:20px;
}

#containerEcran5Mobile .descFords{
    position:relative;
    padding: 20px 25px;
    opacity:1;
    z-index: 50;
}

#containerEcran5Mobile .lienFord{
    padding:5px;
    padding-right:40px;
    text-transform: uppercase;
    color:#373737;
    text-decoration:none;
    border:1px solid #373737;
    display: inline-block;
    margin-right:50px;
    margin-top:30px;
}


/* =============================
FOOTER
============================= */
.footerDesktop{
    background:url("../../img/background_ford_titanium.jpg") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    height:100%;
    width:100%;
}
.containerFooter{
    background:url("../../img/background_footer.png") no-repeat center bottom;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #FFFFFF;
    height:30%;
    width:100%;
    position: absolute;
    bottom:0;
    box-sizing: border-box;
    padding:30px;
    z-index: 600;
}

.containerFooter ul{
    list-style:none;
    padding:0;
    margin:0;
}

.containerFooter li, .containerFooter li a{
    text-decoration: none;
    color: #FFFFFF; 
    display:block;
}

.footerBloc{
    display: inline-block;
    margin-right:30px;
    margin-bottom: 20px;
    vertical-align:top;
}

.containerFooter .blocBlanc{
    height:1px;
    width:57px;
    margin: 10px 0;
}

.titreFooter{
    font-size:24px;
}

.iconRS{
    display: inline-block;
    margin:10px 10px 0 0;
}


/*Mobile*/
.mobileFooter{
    background:url("../../img/background_footer.png") no-repeat center bottom;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: #FFFFFF;
    height:500px;
    width:100%;
    position: relative;
    bottom:0;
    padding: 0px 30px 0px 30px;
    display:none;
}

.mobileFooter .liensFooterMenu{
    margin-top:90px;
}

.mobileFooter .liensFooterPartenaire{
    margin-bottom:30px;
}


/*ecran rotation*/
#rotation{
    background-color: #1e1e1e;
    display:none;
    position: absolute;
    left:0;
    top:0;
    height:100%;
    width:100%;
}
#pictoRotate{
    position: absolute;
    top:50%;
    left:50%;
    margin-top: -81px;
    margin-left: -75px;
    width: 150px;
    height: 181px;
}


/* ==========================================================================
Media Queries
========================================================================== */
@media screen and (min-width: 1600px) and (max-width: 1900px){
    .middleBorder {
        width: 30%;
    }
}

@media screen and (min-width: 1100px) and (max-width: 1600px){
    .font16 {
        font-size: 14px;
    }

    .font15 {
        font-size: 14px;
    }

    .font25 {
        font-size: 18px;
    }

    .font35 {
        font-size: 25px;
    }

    .font40 {
        font-size: 30px;
    }

    .font46 {
        font-size: 29px;
    }

    .font50 {
        font-size: 40px;
    }

    .font81 {
        font-size: 50px;
    }
    /* ========
    Menu Secondaire / Tertiaire
    =========*/
    #navSecondaire{
        height: 195px;
        width: 32px;
    }

    #navTertiaire{
        height: 120px;
        width: 32px;
    }

    #navSecondaire ul li a, #navTertiaire ul li a {
        font-size: 12px;
        padding: 0 8px 12px 8px;
    }

    /* ========
    ECRAN 1
    =========*/
    #logoFord{
        display:none;
    }

    #logoFordMin{
        display: block;
    }

    #logoFiestaRecord {
        height: 40%;
    }

    #logoPartenaires{
        display: none;
    }

    #logoPartenairesMin{
        display: block;
    }

    #containerTextEcran1 {
        height: 50%;
    }

    #blocBlanc1 {
        margin-top: 0;
        height: 10px;
    }
    #blocBlanc2 {
        height: 10px;
    }

    #textEcran1 {
        padding: 20px 0;
    }

    /* ========
    ECRAN 2
    =========*/

    #containerEcran2 {
        margin-bottom: 60px;
    }

    #containerTextEcran2 {
        padding: 30px;
        margin-bottom: 30px;
    }

    .blocNoir {
        margin: 12px 0;
    }

    .artisteSession {
        height: 90px;
        width: 260px;
        margin-right: 50px;
        margin-bottom: 52px;
    }

    .containerArtistesSession {
        text-align: right;
        margin-right: 3%;
    }

    .artisteSessionDate {
        padding: 8px;
        padding-bottom: 7px;
    }

    .containerArtisteSessionDate {
        top: -33px;
    }

    .containerArtisteSessionNom {
        top: 13px;
        right: 12px;
    }

    .artisteSessionNom {
        line-height: 35px;
    }

    /* ========
    ECRAN 3
    =========*/


    .textEcran3 br {
        display:none;
    }

    .playerVideo {
        width: 372px;
        height: 208px;
    }

    .containerDate {
        top: 30px;
        margin-left: 50px;
        width: 200px;
        height: 51px;
    }

    .artiste {
        width: 200px;
    }

    .nomBloc2 {
        line-height: 29px;
    }

    .nomBloc2.font40 {
        font-size: 25px;
    }
    #wrapperArtistes {
        bottom: 20px;
    }

    /* ========
    ECRAN 4
    =========*/

    #videoEcran4, #videoEcran4B {
        height: 283px;
        width: 498px;
    }

    #logoBO {
        width: 120px;
        height: 156px;
    }

    /* ========
    ECRAN 5
    =========*/

    .containerTextsFords .font16 {
        font-size: 12px;
    }

    .containerTextsFords .font50 {
        font-size: 30px;
    }
    .lienFord {
        margin-top: 10px;
    }
    .descFords {
        padding: 10px 50px;
    }

    .fordCtaBarre:first-child, .fordCtaBarreMobile:first-child {
        margin-top: 8px;
    }
    .containerCTA {
        bottom: 51px;
    }


}

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

    /* ========
    ECRAN 3
    =========*/
    .playerVideo {
        width: 332px;
        height: 168px;
    }
    .containerTextEcran3 {
        width: 100%;
    }

    .textEcran3Desktop{
        display:none;
    }

    .textEcran3Mobile{
        display:block;
    }
    .containerCTA {
        bottom: 20px;
    }
}

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

    #contLoader{
        display: block;
    }

    .header-container, #navSecondaire{
        display:none;
    }
    #mobile-header-container, #logoMenuMobile{
        display:block;
    }

    .font15 {
        font-size: 14px;
    }

    .font25{
        font-size:20px;
    }

    .font35 {
        font-size: 25px;
    }

    .font50 {
        font-size: 38px;
    }

    .font81{
        font-size:50px;
    }




    /* ========
    ECRAN 1
    =========*/

    #containerEcran1{
        margin-top: 45vh;
    }

    #logoFiestaRecord {
        height: auto;
        width: 100%;
    }

    #logoPartenaires{
        display: none;
    }

    #logoPartenairesMin{
        display: none;
    }

    #logoPartenairesMobile{
        display: block;
    }

    #blocBlanc2{
        width:100%;
    }

    #scrollIconDesktop{
        display:none;
    }

    #scrollIconMobile {
        display:block;
    }

    .barreIconScroll{
        position:relative;
        height:15px;
        width:3px;
        margin-right: 1px;
        background-color:#FFFFFF;
        display: inline-block;
    }

    .cacheBarreIcon {
        bottom: -30px;
    }


    /* ========
    ECRAN 2
    =========*/

    #containerEcran2{
        margin-top:20%;
        margin-bottom: 25px;
    }

    #containerTextEcran2 {
        width: 90%;
        padding: 20px;
    }

    .artisteSession {
        height: 110px;
        width: 300px;
        margin-right: 50px;
        margin-bottom: 60px;
    }

    .containerArtistesSession {
        text-align: right;
    }

    .containerArtisteSessionNom {
        position: absolute;
        top: 16px;
        right: 20px;
    }

    .artisteSessionNom {
        line-height: 40px;
    }


    .containerArtisteSessionDate {
        top: -32px;
    }

    .artisteSession:hover {
        box-shadow: inset 0 0 0 0 #FFFFFF;
    }

    /* ========
    ECRAN 3
    =========*/

    .creditPhoto{
        position: absolute;
        right: -30px;
        bottom: 190px;
        font-size:7px;
        color:#FFFFFF;

    }

    #Synapson .creditPhoto{
        color:#FFFFFF;
    }

    #ChristopheMae{
        background:url("../../img/background_christophe_mae_mobile.jpg") no-repeat center center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

    #JoeBel {
        background:url("../../img/background_joe_bel_mobile.jpg") no-repeat center center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

    #Synapson {
        background:url("../../img/background_synapson_mobile.jpg") no-repeat center center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

    #BenLOncleSoul {
        background:url("../../img/background_ben_loncle_soul_mobile.jpg") no-repeat center center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

    .containerTextEcran3{
        width: 100%;
    }

    .titreVideo {
        margin-bottom: 5px;
    }

    .playerVideo {
        width: 280px;
        height: 170px;
    }

    .containerReseauxSociaux {
        display: none;
    }

    .containerDate {
        margin-top: 110px;
        margin-left: 0px;
    }

    #wrapperArtistes {
        height: 12%;
    }

    .middleBorder {
        width: 10%;
    }

    #bloc1:hover, #bloc2:hover, #bloc3:hover{
        box-shadow: inset 0 0 0 0 #FFFFFF;  
    }

    .nomBloc {
        padding: 8px 0;
    }

    .artiste {
        width: 170px;
    }

    #wrapperArtistes .font16 {
        font-size: 14px;
    }

    #wrapperArtistes .font40 {
        font-size: 21px;
    }

    #wrapperArtistes .font46 {
        font-size: 24px;
    }

    .nomBloc2 {
        line-height: 23px;
    }

    /* ========
    ECRAN 4
    =========*/
    #containerEcran4 {
        width: 90%;
    }

    #containerVideoEcran4 {
        margin-top: 40px;
        width: 85%;
    }

    #videoEcran4, #videoEcran4B {
        height: 194px;
        width: 340px;
    }

    #logoBO{
        width: 100px;
        height: 130px;
    }

    #containerEcran4 .containerReseauxSociaux {
        display:none;
    }

    #containerEcran4 .containerReseauxSociauxMobile {
        display:block;
        position: relative;
    }



    /* ========
    ECRAN 5
    =========*/

    #fordFiesta, .invisibleLayer, .footerDesktop{
        display:none;
    }

    #fordFiestaMobile, .mobileFooter{
        display:block;
    }

    .mentionFord.font16 {
        font-size: 10px;
    }

    .descFords .font16 {
        font-size: 20px;
    }

    .slick-dotted.slick-slider {
        margin-bottom: 0;
    }

    .slick-dots {
        bottom: 2px;
    }
    .slick-dots li button:before {
        font-size: 14px;
    }


    /* ========
    FOOTER
    =========*/
    .footerBloc {
        display:block; 
    }
    .mobileFooter .liensFooterMenu {
        margin-top: 0; 
        padding-top: 150px;
    }



}



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

    #iconMenu {
        left: -50px;
    }

    .barreMenu {
        height: 2px;
        width: 20px;
        margin-bottom: 5px;
    }

    #barreMenu2B {
        position: absolute;
        top: 25px;
        left: 15px;
    }

    #mobile-header-container ul {
        margin-left: 22px;
    }

    #containerIconMenu {
        padding: 18px 15px 11px;
        background-color: #2d2d2e;
    }

    #logoFordMobile {
        left: -117px;
        top: 9px;
        height: 34px;
        width: 59px;
    }

    #logoMenuMobile {
        left: 10px;
        top: 10px;
    }

    #logoMenuMobile img{
        height: 60px;
        width: 83px;
    }

    #logoPartenairesMobile {
        height: 25px;
        width: 110px;
    }


    .font16 {
        font-size: 12px;
    }

    .font15 {
        font-size: 10px;
    }

    .font25 {
        font-size: 16px;
    }

    .font35 {
        font-size: 20px;
    }

    .font26 {
        font-size: 16px;
    }

    .font40 {
        font-size: 25px;
    }

    .font50 {
        font-size: 25px;
    }

    .font81 {
        font-size: 35px;
    }


    /* ========
    ECRAN 1
    =========*/
    #accueil{
        background:url("../../img/background_home_mobile.jpg") no-repeat center center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

    #containerEcran1 {
        width: 90%;
        margin-top: 25px;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
        height: 70%;
    }

    #logoFiestaRecord {
        height: auto;
        width: 65%;
        left: -6px;
    }

    #containerTextEcran1 {
        height: 59%;
    }

    #blocBlanc1, #blocBlanc2 {
        height: 5px;
    }

    #textEcran1 {
        padding: 10px 0;
    }

    #onAir {
        margin: 20px 0 -10px -9px;
        height: 40px;
        width: 87px;
    }

    /* ========
    ECRAN 2
    =========*/

    #fiestaSessions{
        background:url("../../img/background_fiesta_mobile.jpg") no-repeat center center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

    .desktopContainerArtistes{
        display:none;
    }

    .mobileContainerArtistes{
        display:block;
    }

    #containerEcran2 {
        margin-top: 120px;
    }

    #containerTextEcran2 {
        width: 85%;
        padding: 5%;
    }

    #textBoldEcran2 {
        margin-top: 10px;
    }

    .blocNoir {
        height: 5px;
        width: 35px;
        margin: 10px 0;
        background-color: #373737;
    }

    .containerArtistesSession {
        text-align: left; 
    }

    .artisteSession {
        height: 73px;
        width: 191px;
        margin-right: 30px;
        margin-bottom: 40px;
    }

    .artisteSessionNom {
        line-height: 28px;
    }

    .containerArtisteSessionNom {
        position: absolute;
        top: 11px;
        right: 11px;
    }

    .containerArtisteSessionDate {
        top: -27px;
        right: -10px;
    }

    .artisteSessionDate {
        padding: 8px;
        padding-bottom: 6px;
        background-color: #FFFFFF;
        color: #2d2d2e;
    }

    /* ========
    ECRAN 3
    =========*/

    .titreEcran3 {
        margin-bottom: -5px;
    }

    .blocBlanc {
        height: 5px;
        margin: 10px 0;
    }

    .playerVideo {
        width: 180px;
        height: 100px;
    }
    .containerEcran3 .containerReseauxSociauxMobile {
        display: inline-block;
        position: relative;
        vertical-align: top;
    }

    .containerVideo1 {
        display: inline-block;
        margin-right: 0px;
    }

    .blocArtisteV2 .textEcran3Desktop, .blocArtisteV2 .textEcran3Mobile, .blocArtisteV2 .containerTextEcran3 .blocBlanc {
        display: none;
    }

    .containerEcran3 .containerReseauxSociauxMobile .iconRS{
        display: block;
        margin: 0 0 15px 10px;
    }

    .containerReseauxSociauxMobile .iconTwitter{
        height:20px;
        width:24px;
    }

    .containerReseauxSociauxMobile .iconFacebook{
        height:20px;
        width:20px;
    }

    #containerArtistes {
        padding-left: 4%;
    }

    .middleBorder {
        display: none;
    }

    .artiste {
        width: 95px;
    }

    #wrapperArtistes {
        bottom:30px
    }

    .containerBlocTexte {
        left: 6px;
    }

    #wrapperArtistes .font46 {
        font-size: 14px;
    }

    #wrapperArtistes .font16 {
        font-size: 10px;
    }

    .lienBloc{
        display:none;
    }

    #wrapperArtistes .font40 {
        font-size: 12px;
    }

    .nomBloc {
        padding-top:8px;
        padding-bottom:0;
    }

    .nomBloc2 {
        line-height: 14px;
    }

    #wrapperArtistes {
        height: 10%;
    }

    .containerDate {
        display: none;
    }

    /* ========
    ECRAN 4
    =========*/

    #containerTextEcran4{
        width:100%;
    }

    .titreEcran4 {
        margin-bottom: -5px;
    }

    #containerTextEcran4 br{
        display:none;
    }

    #videoEcran4, #videoEcran4B {
        height: 154px;
        width: 260px;
    }

    #containerVideoEcran4 {
        margin-top: 20px;
        width: 100%;
    }

    #logoBO{
        display:none;
    }

    #logoBOMobile {
        display:block;
        width: 40px;
        height: 52px;
        bottom:0;
    }

    /* ========
    ECRAN 5
    =========*/


    .containerPhotoFord {
        position: relative;
        height: 200px;
        width: 100%;
    }

    .descFords .font16 {
        font-size: 12px;
    }

    #fordFiestaMobile .descFords br{
        display:none;
    }

    #containerEcran5Mobile .lienFord {
        margin-top: 20px;
    }

    .lienFord:hover > .containerBarre{
        right:0px;
    }


    /* ========
    FOOTER
    =========*/

    .titreFooter {
        font-size: 16px;
    }
    .mobileFooter .liensFooterMenu {
        margin-top: 0; 
        padding-top: 110px;
    }
    .mobileFooter .iconRS img {
        height: 25px;
    }


}

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

    .font16 {
        font-size: 10px;
    }

    #textEcran2.font16, .textEcran4.font16, #textBoldEcran2.font16{
        font-size: 12px;
    }

    /*
    .font15 {
    font-size: 8px;
}
    */

    /*
    .font50 {
    font-size: 18px;
}
    */

    /* ========
    ECRAN 1
    =========*/

    #containerEcran1 {
        height: 66%;
    }


    /* ========
    ECRAN 2
    =========*/

    #containerEcran2 {
        margin-top: 85px;
        margin-bottom: 35px;
    }

    #containerTextEcran2 {
        width: 85%;
        padding: 5%;
    }

    .containerArtistesSession {
        margin-left: 0;
        padding-left: 5%;
    }

    .blocNoir {
        height: 5px;
        width: 35px;
        margin: 10px 0;
        background-color: #373737;
    }

    #textBoldEcran2 {
        margin-top: 14px;
    }

    /* ========
    ECRAN 4
    =========*/

    #videoEcran4, #videoEcran4B{
        height: 134px;
        width: 220px;
    }

    /* ========
    ECRAN 5
    =========*/

    #containerEcran5Mobile .lienFord {
        margin-top: 10px;
    }

    /* ========
    FOOTER
    =========*/

    .mobileFooter .iconRS img{
        height:20px;
    }
    .mobileFooter .liensFooterPartenaire{
        margin-bottom:0;
    }


}
@media screen and (max-width: 320px) {
    .mentionFord.font16 {
        font-size: 8px;
    }
    .font25 {
        font-size: 14px;
    }
    .font35 {
        font-size: 16px;
    }

    .containerTextsFords .font50 {
        font-size: 16px;
    }

    .font50 {
        font-size: 18px;
    }

    /* ========
    ECRAN 2
    =========*/

    .containerInner .artisteSession {
        margin-top: 56px;
    }

    /* ========
    ECRAN 3
    =========*/

    .artiste {
        width: 80px;
    }

    #wrapperArtistes .font16 {
        font-size: 9px;
    }

    #wrapperArtistes .font40 {
        font-size: 10px;
    }

    #wrapperArtistes .font46 {
        font-size: 11px;
    }

    .textEcran3 br {
        display:none;
    }
    .playerVideo {
        width: 150px;
        height: 90px;
    }

    /* ========
    ECRAN 4
    =========*/

    #videoEcran4, #videoEcran4B{
        height: 90px;
        width: 150px;
    }

    /* ========
    ECRAN 5
    =========*/
    .containerPhotoFord {
        height: 143px;
    }

    #containerEcran5Mobile .mentionFord {
        top: -27px;
    }

}