:root {
    --x-violet: rgb(75, 0, 255); /*The logo is at 56 0 255 but css colors are rendered differently so offseting them.*/
    --x-cherry: rgb(256,0,89); /* Same here, ai logo is at 251 0 71*/
  }
html, body{
    margin:0;
    font-size:10px;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    min-height:100vh;
    display: flex;
    flex-direction: column;
    
}
/* HEADER & FOOTER*/
header, footer {
    
    box-sizing:border-box;
    height: 65px;
    
    font-family: 'Roboto';
}
header{
    display:flex;
    padding:10px;
    justify-content: space-between;
    align-items: center;
    background-color:var(--x-violet);
    color:white;

}
header a.home-btn{
    background-color: white;
    border-radius: 5px;
}
header img{
    display:block;
    width:50px; 
    height:50px;
}

footer{
    margin-top: auto;
    padding:10px;
    
    font-size:calc(0.9rem + 0.2vw);
    font-weight:300;
    text-align: center;
    
    color: var(--x-cherry);
}
footer p{
    margin:0;
    line-height: 65px;
}

/* Dropdown Button */
.dropbtn {
    color: white;
    border: none;
    cursor: pointer;
    height:50px;
    width: 50px;
    padding:10px;
    /* Centering the hamburger menu*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center ;   
}
/* The actual hamburger menu */
.dropbtn div {
    width: 35px;
    height: 5px;
    background-color: white;
    margin: 3px 0;
}



/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    
    position: absolute;
    top:65px;
    right:0;
    padding-right: 25px;
    height:150px;
    width:100%;
    background-color: var(--x-violet);
    color: white;
    
    font-weight:600;
    font-size: calc(1.2rem + 0.4vw);
    letter-spacing:1px; 
 
  }
.dropdown-content a{
    display:block;
    box-sizing: border-box;
    padding-bottom: 0.5px;
}
.dropdown-content a, .dropdown-content a:link, .dropdown-content a:visited, .dropdown-content a:active { 
    color: white;
    text-decoration: none;
    border-bottom: 1.2px solid transparent; 
  }  
.dropdown-content a:hover { 
    color: white;
    border-bottom: 1.2px solid white; 
  }    
/* .dropdown-content a:focus { 
    outline: 1.2px dotted aqua; 
 }     */

.show {
    display:flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-end;
}


/********** SECTION WELCOME / INFO **********/

/* #welcome{
    height: calc(100vh - 65px);
    display:flex;
    flex-direction: column;
    justify-content: space-evenly;
} */
section#welcome{
    width:92%;
    margin:0 auto;
}
#welcome img{
    display: block;
    max-width:550px;
    width:100%;
    margin:0 auto;
}
#welcome p, #welcome ul{
    text-align:justify;
    margin: 10px;
    font-size: calc(1.1rem + 0.3vw);
    font-family: 'Roboto';
    font-weight:300;
}
#welcome div.encart{
    background-color: rgb(255, 255, 255);
    
    margin-bottom:20px;
    border: 1px solid var(--x-violet);
    border-radius: 5px;
    padding:5px 20px;
    
}

#welcome div.encart ul {
    list-style: none; /* Remove default bullets */
  }
  
#welcome div.encart  ul li::before {
    content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: var(--x-cherry); /* Change the color */
    font-weight: bolder; /* If you want it to be bold */
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 1em; /* Also needed for space (tweak if needed) */
    margin-left: -1em; /* Also needed for space (tweak if needed) */
  }


@counter-style space-counter {
    system: cyclic;
    symbols: "\1F680" "\1F6F8" "\1F6F0";
    suffix: " ";
  }
  

#welcome div.philosophie ul{
    list-style-type: space-counter; 

}

#welcome div.expertise p b{
    color: var(--x-cherry);
}
/* #welcome div.services h2{
    color: var(--x-cherry);
}
#welcome div.clients{
    background-color: rgb(255, 255, 255);
    width:77%;
    margin: 0 auto 20px;
    border: 1px solid var(--x-violet);
    border-radius: 5px;
    padding:5px 20px;
} */
#welcome h2{
    color: var(--x-violet);
}



/********** SECTION CONTACT **********/

section#contact{
    text-align:center;
    /* background-color:rgb(130, 147, 180); */
    background-color: var(--x-violet);
    padding: 20px 0;
    border-radius: 5px;
    width:92%;
    margin:0 auto;
}

section#contact div {
    font-size: calc(1.2rem + 0.3vw);
    font-family: 'Roboto';
    font-weight:300;
    margin-bottom:20px;
    
}
section#contact div a{
    text-decoration: none;
    color:white;
    
}
/* Icons styling with FontAwesome kit */
.svg-inline--fa{
    font-size:50px;
    color: rgb(255, 255, 255);
}
section#contact div p{
    margin:0;
    padding-top: 5px;

}



/********** MQ **********/
/* Change in the header if landscape: */ 
/* Make the centered content 66% instead of 80%*/ 
@media (orientation: landscape) {
    .dropbtn{
        display:none;
    }
    .dropdown-content{
        position: initial;
        display: flex;
        height: initial;
        width: initial;
        background-color: transparent;
        padding-right: 0px;
        font-weight:500;
    }
    .dropdown-content a{
        margin-right: 15px;
    }

    section#welcome{
        width:66%;
    }
    section#contact{
        width:66%;
        display: flex;
        justify-content: space-evenly;
        
    }
    section#contact div {
        margin-bottom: 0;
        width: 25%;
        padding-top: 15px;
        
    }

}
