@import url('https://fonts.googleapis.com/css?family=Special+Elite');

/*GENERAL*/
*{
    font-family: 'Special Elite', cursive;
    list-style: none;
}

/*HEADER*/
header{
    width: 100%;
    position: fixed;
    top: 0;
    margin: 0 auto;
    padding: 0px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #fff;
}
#header-img{
    height: 90px;
    margin: 0;
    padding: 0;
}
#slogan{
    height: 20px;
    padding-left: 20px;
    padding-bottom: 30px;
}
nav ul{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 10px 50px;
    text-transform: uppercase
}
@media (max-width: 650px){
    nav ul {
        flex-direction: column;
    }
}
.nav-link{
    text-decoration: none;
}
.nav-link:hover{
    font-weight: bold;
}

/*INSCRIPTION*/
#inscription{
    padding-top: 120px;
    padding-bottom: 50px;
    text-align: center;
    background: linear-gradient(90deg, #fff, #eee, #eee, #ddd, #ddd, #ddd, #eee, #eee, #fff);
}
#email{
    padding: 10px;
    width: 300px;
    border: 1px solid #000;
    border-radius: 5px;
    box-shadow: 1px 1px #000;
}
#submit{
    padding: 10px;
    border: 1px solid #000;
    border-radius: 5px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #FF8D09, #E55A00);
    box-shadow: 1px 1px #000;
}
#submit:hover{
    background: linear-gradient(45deg, #E55A00, #CC6107);
    font-weight: bold;
    cursor: pointer;
}
/*NOS GARANTIES*/
#nos-garanties{
    padding-top: 120px;
    background: linear-gradient(90deg, #fff, #eee, #eee, #ddd, #ddd, #ddd, #eee, #eee, #fff);
}
.grid{
    display: flex;
    padding-bottom: 50px;
}
.icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20vw;
}
.desc{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80vw;
}
p{
    color: #333;
}

/*DEMO*/
#demo{
    padding-top: 120px;
    text-align: center;
    background: linear-gradient(90deg, #fff, #eee, #eee, #ddd, #ddd, #ddd, #eee, #eee, #fff);
}
#video{
    border: 2px solid #000;
    border-radius: 5px;
    box-shadow: 1px 1px #000;
}

/*NOS BASSES*/
#les-basses{
    background: linear-gradient(90deg, #fff, #eee, #eee, #ddd, #ddd, #ddd, #eee, #eee, #fff);
    padding-bottom: 100px;
}
#bass-title{
    text-align: center;
    padding-top: 120px;
    padding-bottom: 20px;
}
#nos-basses{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.bassSpecimen{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: calc(100% / 5);
    margin: 0 20px;
    padding: 30px;
    border: 10px solid #000;
    border: 1px solid #000;
    border-radius: 5px;
    box-shadow: 1px 1px #000;
    background: #fff;
}
.specimenTitle{
    text-transform: uppercase;
    font-size: larger;
    font-weight: 800;
    padding-bottom: 20px;
}
.bassSpecimen li{
    padding-bottom: 20px;
    margin-left: -30px;
}
.btn{
    padding: 10px;
    border: 1px solid #000;
    border-radius: 5px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #FF8D09, #E55A00);
    box-shadow: 1px 1px #000;
}
.btn:hover{
    background: linear-gradient(45deg, #E55A00, #CC6107);
    font-weight: bold;
    cursor: pointer;
}
/*FOOTER*/
footer{
    padding-top: 80px;
    padding-bottom: 20px;
    background: #ddd;
    text-align: center;
    font-weight: bold;
}
footer a{
    text-decoration: none;
    font-size: larger;
}