*{
   -webkit-box-sizing:border-box;
   -moz-box-sizing:border-box;
   box-sizing:border-box;
   outline:0
}
body, button, p{
    margin:0;
}
a{
    text-decoration:none;
    color:inherit;
}
ul{
    padding:0;
    margin: 0;
}
ul li{
    list-style:none;
}
img{
    border:0;
}
button{
    cursor:pointer;
}
h1, h2, h3, h4, h5, h6{
    font-weight:normal;
    margin:0;
    font-size:inherit;
}

body{
    font-family: 'Muli', sans-serif;
    font-size:16px;
    line-height:1.4;
    padding-bottom:40px;
    background:#f1f1f1;
    -webkit-font-smoothing:antialiased; 
    -moz-osx-font-smoothing:grayscale;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
.container{
    max-width:1200px;
    padding-left:30px;
    padding-right:30px;
    margin-left: auto;
    margin-right: auto;
}
.flexx{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
.jsb{
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
}
.aic{
    -webkit-align-items:center;
    -moz-align-items:center;
    -ms-align-items:center;
    align-items:center;
}
.header{
    font-family: 'Courgette', cursive;
    background: #fff;
    box-shadow: 0 2px 2px rgba(0,0,0,0.05);
    font-size:24px;
    color: #777;
    padding:10px 0;
}
.menu li{
    display: inline-block;
    margin-left:10px;
}
.menu li a{
    position: relative;
    display: block;
    padding:2px 5px;
}
.menu li a:before{
    content:"";
    position: absolute;
    top:0;
    bottom:0;
    left:0;
    margin: auto;
    width:100%;
    height:2px;
    background:#777;
    opacity:0;
}
.menu li.menu-active a{
    color:#a7a7a7;
    pointer-events:none;
}
.menu li.menu-active a:before{
    opacity:1;
}
.wrapper{
    padding-top:40px;
}
.grid{margin:-7px;}
.card-parent{
    padding:7px;
}
.card, .about{
    background: #fff;
    border-radius:4px;
    overflow: hidden;
    box-shadow:0 0 4px rgba(0,0,0,.15);
}
.about{
    font-family: 'Muli', sans-serif;
    max-width:600px;
    margin-left: auto;
    margin-right: auto;
    padding:20px;
}
.about a[href]{
    box-shadow: inset 0 -2px 0 rgba(0,118,228,0.5), 0 2px 0 rgba(0,118,228,0.5);
    transition: box-shadow 0.30s;
}
.about a[href]:hover{
    box-shadow: inset 0 -30px 0 rgba(0,118,228,0.5), 0 2px 0 rgba(0,118,228,0.5);
}
.about h3{
    font-size:22px;
    font-weight:600;
    margin-bottom:10px;
}
.card{
     -webkit-transition: box-shadow 300ms ease;
    transition: box-shadow 300ms ease;
}
.card:hover{
    box-shadow:0 0 8px rgba(0,0,0,.30);
}
.image-place{
    position: relative;
    background:#ccc;
    min-height:120px;
}
.image-place:before{
    content:'';
    position: absolute;
    bottom:0;
    left:-5%;
    width:110%;
    height:105%;
    box-shadow:inset 0px -4px 16px rgba(0,0,0,0.1), inset 0 -9px 70px rgba(0,0,0,0.15);
}
.image-place img{
    width:100%;
    display: block;
}
.port{
    padding:15px;
}
.port h2{
    font-size:18px;
    font-weight:600;
}
.port h4{
    font-size:13px;
    color: #696969;
    margin-top:7px;
}
.techs{
    position: relative;
    padding-top: 6px;
    margin-top: 10px;
    font-size: 13px;
    color: #777;
    font-weight: 300;
}
.techs:before{
    content:'';
    position: absolute;
    top:0;
    left:0;
    width:15px;
    height:1px;
    background:#ccc;
}
.details-link{
    border-top:1px solid #e2e2e2;
    font-size:14px;
    margin-top:15px;
    padding-top:15px;
}
.details-link a:first-child{display: none;}
.details-link a{
    display: inline-block;
    border: 1px solid #777;
    color: #777;
    padding:2px 5px 1px;
    width:55px;
    text-align: center;
    margin-right:5px;
    letter-spacing:1px;
    border-radius:3px;
    transition: all 300ms ease;
}
.details-link a:hover{
    color: #fff;
    background: #37489d;
    border-color: #37489d;
}
#waterfall>li{
    opacity:0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
}
#waterfall>li.show{
    opacity:1;
    -webit-transform: translateY(0);
    transform: translateY(0);
    transition: all 0.3s, top 1s;
}
.txtHighlight{
    display: inline-block;
    background: #e7e7e7;
    color: #646464;
    padding: 0 6px 2px;
    border-radius:2px;
    margin-top:7px;
}
.about p, .mb20{
    margin-bottom:20px;
}
.allProjets{
    padding-left:24px;
    margin:5px;
}
.project-lists{
    padding:20px;
    font-size:14.5px;
}
.project-lists a{
    text-decoration: underline;
}
/*
.allProjets a[href]{
    color:#1976d2;
}
*/
.list-disc{padding-left:20px;}
.list-disc li{
    list-style: disc;
    margin-bottom:5px;
}
.list-disc li ul{
    padding-left:20px;
}
.list-disc li li{
    list-style: circle
}
.about strong{
    font-weight:600;
}
.contact h1{
    font-size:20px;
    margin-bottom:20px;
    font-weight:700;
}
.contact p{margin-bottom:10px;}
.about-title{
    font-weight:700;
    font-size:30px;
    margin-bottom:10px;
}
/**==== Media ====**/
@media(min-width:1680px){
    .container{
        max-width:1660px;
    }
}
@media(max-width:700px){
    .container{
        padding-left:15px;
        padding-right:15px;
    }
}
@media(min-width:600px){
    .mobName{display: none;}
}
@media(max-width:599px){
    .deskName{display: none;}
    body{font-size:14px;}
    .about-title{font-size:24px;}
    .about h3{font-size:20px;}
    .container{
        padding-left:10px;
        padding-right:10px;
    }
    .image-place{
        min-height:85px;
    }
    .port h2{
        font-size:16px;
    }
    .details-link{
        font-size:13px;
    }
    .port h4, .techs{
        font-size:12px;
    }
    .port{
        padding:10px;
    }
    .port h4{
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        flex-direction: column;
    }
    .grid{
        margin:-5px;
    }
    .card-parent{
        padding:5px;
    }
    .wrapper{
        padding-top:20px;
    }
    .header{font-size:16px;}
}