/********************
    RESET
********************/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}




/********************
    GENERAL
********************/
@font-face {
    font-family: "renault";
    src: url("../font/NouvelR-Regular.ttf")format("truetype")
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "renault-bold";
    src: url("../font/NouvelR-Bold.ttf")format("truetype");
    font-weight: bold;
    font-style: normal;
}
*{
    scroll-behavior: smooth;
    box-sizing: border-box;
    -moz-font-smoothing: none;
   -webkit-font-smoothing: antialiased;
}
body{
    margin:0;
    padding: 0;
    font-family: "renault";
    font-size: 1rem;
    color:black;
}
h1,h2,h3{font-family: "renault-bold" , sans-serif;}
ul{list-style: none;margin: 0;padding: 0;}
a{text-decoration: none; font-family: "renault";color:#EFDF00;}
.container{padding: 0 15px;}
h1,h2{text-align: center;font-size: 1.8rem;text-transform: uppercase;}
h2{margin:50px 0 100px 0;}
.marginTop{margin-top: 50px;}

.btn-upload{
    padding: 14px 15px;
    background-color: #000;
    color: #fff; 
    font-size: 1.3rem;
    width: 50%;
    text-align: center;
    transition: all 0.5s;
    display: block;
    margin: 15px 0;
}

.btn-upload:hover{
    background-color: #fff;/*#efdf00;*/
    color: #000; 
    border: 2px solid #000000;

}

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

/********************
    MODULE
********************/

header{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 15px;
    background-color: black;
    color: white;
}
.header-logo{width: 80px;}
.header-logo img{width: 100%;}
.header-lang{display: flex;align-items: center;justify-content: space-around;width: 150px;}
.header-lang li a{color:white;text-transform: uppercase;}
.header-lang li a.active{color: #BBBCBC;}

.presentation{
    margin-top: 50px;
    height: 400px;
    width: 100%;
    position: relative;
    background-image: url("../images/caravane.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    background-color: rgba(0, 0, 0, .3);
    background-blend-mode: multiply;
    color: white;
}
.presentation h1{
    position: absolute;
    top: 50%;
    left:50%;
    transform: translate(-50%,-50%);
    width: 80%;
}




.container-card{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    flex-wrap: wrap;
    margin-top: 80px;
}

.card{width: 500px;height: 300px;overflow: hidden;margin: 10px 0;display: block;}
.card-vehicule{
    position: relative;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 0.35s ease-in-out;  
}
.card-vehicule::before{
    height: 100%;
    width: 100%;
    position: absolute;
    top:0;
    left: 0;
    background-color: rgba(0, 0, 0, .4);
    color: white;
    font-family: "renault-bold";
    text-align: center;
    font-weight: bold;
    line-height: 300px;
    font-size: 1.5rem;
}
.card:hover .card-vehicule{transform: scale(1.3);}



.card:first-child .card-vehicule{
    background-image: url("../images/image-21.jpg");
}
.card:first-child .card-vehicule::before{
    content: "Renault ESTAFETTE";
}



.card:nth-child(2) .card-vehicule{
    background-image: url("../images/image-22.jpg");
}
.card:nth-child(2) .card-vehicule::before{
    content: "Renault HIPPIE CAVIAR HOTEL";
}



.card:nth-child(3) .card-vehicule{
    background-image: url("../images/image-23.jpg");
}
.card:nth-child(3) .card-vehicule::before{
    content: "Renault TRAFIC SpaceNomad ph2";
}


.card:nth-child(4) .card-vehicule{
    background-image: url("../images/space-class-escapade/1.jpg");
}
.card:nth-child(4) .card-vehicule::before{
    content: "Renault TRAFIC SpaceClass Escapade";
}



.card:nth-child(5) .card-vehicule{
    background-image: url("../images/master-ahorn/ahorn-Camp-T-690-2021-Seite.jpg");
}
.card:nth-child(5) .card-vehicule::before{
    content: "Renault MASTER Ahorn camping car";
}



.model-info{display: flex;justify-content: space-around;margin: 100px 0;}
.model-description{width: 40%;}
.model-description p{line-height: 25px;    margin-bottom: 5rem;}
.container-img-full{width: 40%;}
.container-img-full img{width: 100%;}

.container-slider{margin:0 auto; max-width: 1000px;}
.container-slider_content{width: 100%;}

.video{padding:40px;text-align:center;}
.video p{font-size:20px;text-align:center;}
video{margin-left:auto;margin-right:auto;}

footer{
	height: 82px;
    width: 100%;
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    font-size: 13px;
    font-weight: 400;
    line-height: 13px;
    margin-top:20px;
}
.footer-menu {
    display: flex;
    justify-content: space-between;
    width: 50%;
    font-weight: 600;
}

ul {
    list-style: none;
}

@media screen and (max-width: 900px) {
    .header-logo{width: 27px;height: 35px;}  
    .container-img-full{width: 100%;}
    .model-info,.container-slider{flex-wrap: wrap;}
    .model-description,.container-slider_content{width: 100%;margin:10px 0}
 


   
}

@media screen and (max-width: 400px) {
    .btn-upload{width:100%;}
 


   
}

