body {
    font-size: 21px; color: #666666; font-family: 'Roboto', sans-serif;
}

.container {
    padding: 50px 20px; display: inline-block;
}

h1 {
    font-size: 70px; line-height: 70px; margin: 0 0 20px 0; padding: 0; font-weight: 400;
}

p {
    padding: 0; margin: 0 0 10px; clear: both;
}
p::after {
    content: ""; display: table; clear: both;
}

a, a:visited {
    text-decoration: none; color: #666666; position: relative; float: left;
}
a span {
    display: inline-block; position: relative; z-index: 2; 
}
a::after {
    content: ""; display: table; clear: both;
}
a::before {
    content: ""; position: absolute; left: -10px; top: -5px; padding: 5px 10px; background-color: #e5e5e5; width: 100%; height: 100%; 
    transform: scaleX(0); transition: all 300ms ease-out; transform-origin: left top;
}
a:hover::before {
    transform: scaleX(1);
}

.tel {
    font-size: 48px; line-height: 48px; font-weight: 300;
}

.vert {
    color: #3cb878;
}
.bleu {
    color: #5674b9;
}
.orange {
    color: #f7941d;
}

.show-mobile {
    display: none;
}

@media (max-width: 400px) {
    
    .container {
        padding-top: 30px;
    }
    .show-mobile {
        display: inline-block;
    }
    .tel {
        font-size: 42px; line-height: 42px;
    }
    
}