/*==============Loader================*/

#box-loader{
    position: absolute;
    z-index: 20000;
    width: 100%;
    height: 100%;
    background-color: #1b1a25;
    background-color: #fff;
    margin: 0, auto;
}
.loader{
    position: absolute;
    top: 40%;
    left: 45%;
    width: 180px;

    border-radius: 100%;
}
#loader span{
    float: left;
    width: 20px;
    border: 1px solid #000;
    border-radius: 100%;
    height: 20px;
    margin: 35px 5px;
    opacity: 0;
}
#loader span:nth-child(1){
    background-color: #000;

    animation: opacitychange 1s ease-in-out infinite;
}
#loader span:nth-child(2){

    background-color: #FFF;
    animation: opacitychange 1s ease-in-out 0.66s infinite;
}
#loader span:nth-child(3){

    background-color: #000;
    animation: opacitychange 1s ease-in-out 1.33s infinite;
}
@keyframes opacitychange{
    0%, 100%{
        opacity: 0;
    }
    60%{
        opacity: 1;
    }
}
html, body{
    display: block;
    min-height: 500px;
    height: 100%;
    width: 100%;
    font-family: 'Lato', sans-serif;
}
header{
    height: 70px;
}
h1{
    font-size: 3em;
    color: #FFF;
}
p{
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.2;
    color:#555555;
}
a{
    text-decoration: none;
}
.uppercase{
    text-transform: uppercase;
}
.underline{
    text-decoration: underline;
}
.ilb{
    display: inline-block;
}
.left{
    text-align: left;
}
.right{
    text-align: right;
}
.center{
    text-align: center;
}
.height{
    height: 200px;
}
.hack{
    visibility: hidden;
}
.clear{
    clear: both;
}
.container{
    margin: 50px auto;
    height: auto;
    width: 1450px;
}
.btn { /*+ d'infos */
    position: relative;
    display: block;
    height: 30px;
    width: 150px;
    margin: 60px auto;
    padding-top: 18px;
    padding-left: 10px;
    padding-right: 10px;
    /*margin-bottom: 20px;*/
    font-size: 1.1em;
    font-weight: 300;
    line-height: 0.6;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 1.5px;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #000;
    border: 1px solid #000;
    border-radius: 50px;
    transition: all 0.3s;

    clear: both;
}
.btn:hover{
    background-color: #000;
    cursor: pointer;
    color: #FFF;
    cursor: pointer;
}
#mentions{
    margin-top: 25px;
    padding-bottom: 25px;
    text-align: center;
}
#mentions a{
    color: #fff;
    font-size: 0.9em;
    padding-right: 20px;
}
#mentions a:hover{
    color: #c2c2c2;
}