/*********************** 
         FONTS 
************************/
@font-face {
    font-family: "Bodega";
    src: url(../fonts/BodegaSans_Black.ttf);
}
/*********************** 
         HTML 
************************/
html {
    box-sizing:border-box;
}
body{
    font-family:Bodega;
    background-image: url("../img/bg_body.svg");
    background-color: #434343;
    margin: 2rem;
    max-width: 1500px;
    margin: auto;
}
span {
    color: rgb(255,157,0);
}
p {
   color: rgb(227, 227, 227, 0.5);
}
/*********************** 
         TITLES 
************************/
h2{
   font-size:4rem; 
    }
h3{
   font-size:3rem; 
}
h4 {
    font-size:3rem; 
    border-bottom: 4px solid rgb(255,157,0);
    color: rgb(255,157,0);
}
h2,h3 {
    color: #fff;
}
/***********************
          SVG
***********************/
.logo:hover #path4488{
    fill:#FF0000;
    }

/*********************** 
      HEADER - NAV 
************************/
header {
    display:flex;
    flex-direction: column;
    background: -moz-linear-gradient(150deg, white 0%, white 50%, #333 50%, #333 100%);
    background: -webkit-linear-gradient(150deg, white 0%, white 50%, #333 50%, #333 100%);
    background: linear-gradient(150deg, white 0%, white 50%, #333 50%, #333 100%);
    padding-top: 1em;
}
.intro {
    display:flex;
    justify-content:center;
}
nav {
    font-size:2.5rem;
    display:flex;
    flex-direction:column;
    padding:5em 1em 1em 1em;
}
nav a {
    color:#fff;
    text-decoration:none;
    line-height:2.5;
    text-align:right;
}
/*********************** 
         MAIN
************************/
main {
    text-align:center;
}
.slides {
    border: 2rem solid #fff;
}
section {
    display:flex;
    flex-direction: column;
}
article {
    background-color: #fff;
    padding:1em 1em 2em 1em;
    margin-bottom: 1.5em;
}
article p {
    color: rgb(42,42,42,0.5);
    padding-bottom:1em;
}
.responsive {
    width: 100%;
    height: auto;
}
.btn {
    background-color: rgb(255,157,0);
    padding: 1em 5em 1em 5em;
}
article a {
    color: #fff;
    text-decoration:none;
}
.who article{
        background-color: transparent;
 }
.social {
    display:flex;
    flex-direction:column;
    padding-bottom: 1.5em;
    margin: auto;
}
.svg-inline--fa.fa-w-14 {
    font-size: 3em;
    color: #fff;
}
.video {
    width: 100%;
}
/*********************** 
         FOOTER
************************/
footer {
    margin-top:5em;
    background-color: rgba(165,165,165,0.1);
    padding: 1em 2.5em 0em 2.5em;
}
.footer-links {
    text-align:center;
    line-height:2;
}
.footer-links a {
    padding:0em 2em 0em 2em;
}
#licence {
    display: block;
    text-align: center;
    padding: 25px;
    line-height:2;
}
#licence img {
    width: 50px;
}
#licence a, footer a{
    color:#fff;
}
#licence{
     color: rgb(227, 227, 227, 0.5);
}

/*************************************************
               DISPLAY -> TABLETTE
*************************************************/
@media screen and (min-width: 768px) {
    
    /**********HEADER - NAV************/
    header {
        flex-direction:row;
        flex-wrap: wrap;
        background: rgb(255,255,255);
        background: linear-gradient(150deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 46%, rgba(51,51,51,1) 46%, rgba(51,51,51,1) 100%);
        justify-content: space-between;
    }
    nav {
        font-size:2.5rem;
    }
    nav a {
        color:#fff;
        text-decoration:none;
        line-height:2.5;
        justify-content:right;
    
    }
}   

/**************************************
           DISPLAY -> DESKTOP 
**************************************/
@media screen and (min-width: 1200px) {
    .motos{
        display:flex;
    }
    h4{
        text-align:center;
    }
    .motos article{
        display:flex;
        flex-direction:row;
        flex-wrap:wrap;
        width:25%;
        justify-content:center;
    }
    .who{
        display: flex;
        flex-direction:row;
        flex-wrap:wrap;
    }
    .who article{
        width: 46%;
    }
    .who p{
        color: rgb(227, 227, 227, 0.5);
        line-height: 2;
    }
    .social-links {
        width: 50%;
        display: flex;
        flex-direction:row;
        flex-wrap:wrap;
        margin: auto;
    }
    .video {
        width: 50%;
    }
}