@font-face {
    font-family: 'Avenir';
        src: url(../typos/AvenirLTStd-Book.otf);
        src: url(../typos/AvenirLTStd-BookOblique.otf);
        src: url(../typos/AvenirLTStd-Heavy.otf);
        src: url(../typos/AvenirLTStd-HeavyOblique.otf);
        src: url(../typos/AvenirLTStd-Light.otf);
        src: url(../typos/AvenirLTStd-LightOblique.otf);
        src: url(../typos/AvenirLTStd-Medium.otf);
        src: url(../typos/AvenirLTStd-MediumOblique.otf);
        src: url(../typos/AvenirLTStd-Oblique.otf);
        src: url(../typos/AvenirLTStd-Roman.otf);
        font-weight: normal;
        font-style: normal;
    }

@font-face {
    font-family: 'open_sansregular';
    src: url('../fonts/opensans-regular-webfont.woff2') format('woff2'),
         url('../fonts/opensans-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

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

@font-face {
    font-family: 'open_sanssemibold';
    src: url('../fonts/opensans-semibold-webfont.woff2') format('woff2'),
         url('../fonts/opensans-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Sallita';
    src: url(../fonts/Sallita.otf);
    font-weight: normal;
    font-style: normal;
}

/* GLOBAL */
* {
    box-sizing: border-box;
}

img, iframe, video {
    max-width: 100%;
    vertical-align: middle;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

a {
    text-decoration: none;
    color: #000;
}

ul a {
    text-decoration: none!important;
}

.links a {
    text-decoration : none;
}

ul a:hover {
    color : #000!important;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    font-family: 'Avenir';
    margin: 0;
}

p {
    margin: 0;
}

.uppercase {
    text-transform: uppercase;
}

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

.pt20 {
    padding-top: 20px;
}

.pb20 {
   padding-bottom: 20px; 
}

.pt40 {
    padding-top: 40px;
}

.pb40 {
    padding-bottom: 40px;
}

.pLR {
    padding-left : 10px;
    padding-right : 10px;
}

/* STRUCTURE */
body {
    font-family: 'Avenir', sans-serif;
    font-size: 16px;
}

p {
    line-height: 18px;
}

.container {
    width: 1000px;
    margin: 0 auto;
}

.black {
    background-color: #000;
}

.container2 {
    width: 500px;
    margin: 0 auto;
}

.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.space-around {
    justify-content: space-around;
}

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

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

.width600 {
    width : 600px;
}

.width300 {
    width : 300px;
}

/* MENU */
header {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: 'Avenir', sans-serif;
}

header .container, header .container2, header .container_contact {
    min-height: 80px;
}

header .logo {
    width: 135px;
    font-family: 'open_sanssemibold';
    font-size: 30px;
}

header .logo span, .background-img h1>span {
    display: block;
}

header .icon-logo {
    padding-left: 20px;
}

header .icon-bars {
    display: none;
}

header nav ul {
    width: 600px;
    font-size: 16px;
}

header nav a {
    position: relative;
    display: block;
    height: 25px;
}

header nav a::after {
    position: absolute;
    left: 0px;
    bottom: 0px;
    content: "";
    height: 4px;
    width: 0px;
    transition: all 0.2s ease-in-out;
    background-color: #ffcf00;
}

header nav a[href="index.html"]:hover:after, header nav a[href="index.html"].active:after{
    width: 65px;
}

header nav a[href="cartes.html"]:hover:after, header nav a[href="cartes.html"].active:after{
    width: 70px;
}

header nav a[href="extensions.html"]:hover:after, header nav a[href="extensions.html"].active:after{
    width: 107px;
}

header nav a[href="createur.html"]:hover:after, header nav a[href="createur.html"].active:after{
    width: 104px;
}


/* FOOTER */
.container_contact {
    width: 1000px;
    margin: 0 auto;
}

footer {
    background-color: #000;
    color: #fff;
}

footer a {
    color: #fff;
}

footer .social {
    padding: 20px 0;
    min-height : 115px;
}

footer .social h3 {
    padding-right: 15px;
    padding-left: 10px;
    font-size: 14px;
}

footer h2 {
    font-size: 18px;
}

footer .social a {
    margin-right: 10px;
    color: #fff;
}

footer .social a:hover {
   opacity : 0.5;
}

footer .line {
    border-top: 2px solid #fff;
}

footer .infos h3 {
    text-decoration: underline;
    padding-bottom: 8px;
}

.copyright{
    padding-top : 10px;
    padding-bottom : 20px;
    color:#FFF;
    text-align:center;
    opacity:0.8;
    }
    
    .copyright p, .copyright a{
        color:#FFF;
        font-size: 8px;
        }
    
    .copyright a:hover{
            opacity:0.5;
            text-decoration: none;
               }

/************** INDEX ***************/

/* BACKGROUND IMAGE */
.background-img {
    height: 450px;
    background-image: url('../img/FondRouge_MauvaisPerdant.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.background-img h1 {
    padding-top: 2.8%;
    text-align: center;
}

/* PRESENTATION */
.presentation {
    background-color: #000000;
    padding: 80px 0; 
}

.presentation img {
    padding-top : 30px;
}

.presentation h3 {
    padding-top : 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 25px;
    font-weight: 400;
}

.presentation p{
    padding : 10px 10px 0px 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    width : 600px;
    margin : 0 auto;
    line-height : 22px;
    text-align: justify;
}

/* CARTES */
.cartes_selection img {
width : 600px;
margin-left : 50px;
}

.cartes_selection .box2 {
    position: absolute;
    z-index: 2;
    top: -70px;
    left : 740px;
    width: 550px;
    padding: 0 20px;
}

.materiel {
    min-height: 450px;
    background-color : #fff;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.materiel .container, .container2, .container_contact {
    position: relative;
}

.materiel .box {
    position: absolute;
    z-index: 1;
    top: 50px;
    left : 400px;
    background-color: #daebed;
    color: #000;
    border: solid 1px #FFF;
    padding: 0px;
}

.materiel .box h2 {
    font-family: 'Avenir', sans-serif;
    font-size: 30px;
    line-height : 30px;
}

.materiel a, .box a{
    color: #FFF;
    display: block;
    padding: 10px 20px;
    border: 1px solid #FFF;
    background-color: #000;
    font-weight : medium;
}

.materiel a {
    width:140px;
    text-align: center;
}

.materiel .box a:hover {
    background-color: #FFF;
    color: #000;
}

.container .box3 img {
    display : none;
    }

    .materiel .box li {
        width : 150px;
        list-style: none;
    text-align: left;
    font-size : 14px;
    }

    .materielResponsive li {
        width : 500px!important;
        list-style: none;
    text-align: left;
    padding-left : 0px;
    font-size : 15px!important;
    }

    .materielResponsive {
     display : none;
    }

    .colG {
        padding-left : 30px;
    }

    .colD {
        padding-right : 40px;
    }


/* PREPARATION */
.preparation {
    padding: 60px 0;
    background-color: #000;
}

.preparation h2 {
    font-family: 'Avenir', sans-serif;
    font-size: 30px;
    color : #FFF;
}

.preparation h3 {
    font-family: 'Avenir', sans-serif;
    font-size: 25px;
    color : #FFF;
    padding : 0px 30px 10px 30px;
}

.preparation p {
    padding : 10px 30px 0px 30px;
    font-family: 'Avenir', sans-serif;
    font-size: 17px;
    line-height : 22px;
    color : #FFF;
    text-align: justify;
}

.preparation .description {
    width: 550px;
}

.description h2 {
    font-size : 30px;
}

.description h3 {
    font-size : 16px;
    font-weight : bold;
}

.preparation a {
    display: block;
    width: 300px;
    margin: 0 auto;
    padding: 10px 20px;
    border: 1px solid #FFF;
    color : #FFF;
}

.preparation a:hover {
   text-decoration: none;
}

.borderSans {
    border: 0px solid #FFF!important;
}

/************** STRUCTURE Cartes / Extensions ***************/
.bg-img {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    height: 400px;
}

.bg-img h1 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 100px;
    text-align: center;
}

/************** Formulaire de contact ***************/
.formulaire h2 {
	text-align: center;
    padding-top: 30px;
}

.formulaire p {
    font-weight: 400;
    padding-bottom : 20px;
}

label {
    margin:0 auto;
    padding-bottom : 5px;
}

form {
	width:60%;
    margin: 0 auto;
}

input {
	cursor: pointer;
    width: 100%;
}

.bouton_submit {
    width : 100px;
}

.preparation .sansBorder a{
    border : none;
 
}

.avatar {
    width : 100px;
    text-align: center;
}

/************** CREATEUR ***************/
.createur-bg-img {
    background-image: url(../img/contact_Jerome_Morel.jpg);
}

.createur-bg-img h1 {
    padding-top: 5%;
}

.intro-createur {
    background-color: #000;
    padding: 50px 0;
    color: #fff;
}

.createur img, .createur .description-createur {
    width: 50%;
}

.createur .description-createur p {
padding : 40px;
text-align: left;
line-height : 25px;
}

.createur .img2-mobile {
    display: none;
}

.site a {
    text-decoration: none;
    color : #145492;
    font-size : 18px;
   
}

.site2 a {
    text-decoration: none;
    color : #88121e;
    font-size : 18px;
}

.site3 a {
    text-decoration: none;
    color : #6c811a;
    font-size : 18px;
}

    .site a:hover, .site2 a:hover, .site3 a:hover {
        opacity : 0.5;
        font-weight : bold;
}

.right {
    text-align: right!important;
}

.left {
    text-align: left!important;
}

/************** STRUCTURE CARTES ET EXTENSIONS ***************/
.cards {
    padding-top: 30px;
    padding-bottom: 30px;
}

.card {
    width: 800px;
    border : none;
}

.card600 {
    width: 600px;
    border : none;
}

.sallita h2{
    font-family: 'Sallita';
    font-size : 50px;
}

/************** CARTES ***************/
#main-cartes {
    background-color: #FFF;
}

.cartes-bg-img {
    background-image: url(../img/CartesFondNet.jpg);
    background-attachment: fixed;
}

.cartes-bg-img h1 {
    text-align: center;
}

.justify {
    text-align: justify;
}

/************** EXTENSIONS ***************/
#main-cartes {
    background-color: #FFF;
}

#main-cartes p {
    line-height : 20px;
}

.extensions-bg-img {
    background-image: url(../img/CartesFondPuritain.jpg);
    background-attachment: fixed;
}

.extensions-bg-img h1 {
    text-align: center;
}

}



