/* Reset */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}html, body{line-height:1}ol,ul{list-style:none;}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}
html, body{font-size:12px;font-family: 'BebasNeue', sans-serif;width: 100%;font-weight: 400;}
p{line-height: 1.4;font-size: 14px;text-align: justify;margin-top: 5px;margin-bottom: 14px;}
/* Styles */
html, body {
    font-family: 'ProximaNova', sans-serif;
    font-weight: 400;
}
a {
    color: inherit;
    transition: ease all .2s;
    text-decoration: none;
}
header, section, nav {
    width: 90%;
    margin: auto;
    max-width: 1300px;
    display: block;
    min-height: 50px;
}

h1.name {
    color: #010101;
    font-size: 56px;
    font-weight: 300;
    text-transform: uppercase;
    padding: 50px 0;
}

h2.claim {
    color: #454546;
    font-weight: 300;
    font-size: 60px;
    padding: 0px 0;
}

nav ul {
    display: flex;
    justify-content: center;
    padding: 50px 0;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 300;
}

nav ul li {
    padding: 0 20px;
}

nav ul li:first-child {
    font-weight: 800;
}

.works ul {
    display: flex;
    flex-wrap: wrap;
}

.works ul li {
    background-color: #484848;
    min-width: calc(100% / 3);
    vertical-align: top;
    height: 33vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: ease all 0.2s;
}
.works ul li:hover {
    transform: scale(1.2);
    box-shadow: 0px 0px 20px #000;
}
.services ul {
    display: flex;
    padding: 50px 0;
    justify-content: space-between;
}

.services ul li {
    background: url(img/back/back-icon.svg) no-repeat center center;
    background-size: 100%;
    background-color: #bbbcbb;
    width: 24%;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 24px;
    position: relative;
    height: 75px;
    padding-top: 225px;
    transition: ease all 0.2s;
}

.services ul li img {
    max-width: 80%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 10%;
}

.services ul li:hover {
    transform: scale(1.1);
    background: #8e8e8e;
}

.clients ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 80%;
    margin: auto;
}

.clients ul li {
}

.clients h3 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 50px;
    color: #454546;
}

footer {
    min-height: 150px;
    text-align: center;
    background-color: #231f20;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(img/back/back-footer.svg) no-repeat center center #231f20;
    background-size: 100%;
    flex-wrap: wrap;
}
.copy {padding-bottom: 50px;}

footer nav {
    border-bottom: 1px solid #fff;
    margin-bottom: 25px;
    min-height: 25px;
}

footer nav ul {
    padding: 50px 0 25px 0;
    font-size: 16px;
    text-transform: initial;
}

footer nav ul li {
    border-right: 1px solid #fff;
}

footer nav ul li:last-child {
    border: none;
}
.under {
    position: fixed;
    top: 0;
    width: 30%;
    margin: auto;
    background: #FF5500;
    color:#fff;
    font-size: 12px;
    line-height: 30px;
    height: 30px;
    min-width: 100%;
    text-align: center;
    text-transform: uppercase;
    z-index: 9999;
}
@media only screen and (max-width: 420px) {
    h2.claim {
        font-size:40px;
        padding-bottom:50px;
    }
    nav {display:none;}
    .works ul li {
        min-width: calc(100% / 2);
    }
    .services ul {
        flex-wrap:wrap;
    }
    .services ul li {
        width: 46%;
        height:70px;
        padding-top:130px;
        margin-bottom:25px;
        font-size:20px;
    }
    footer {
        background-size:cover;
    }
}