html {
    box-sizing:border-box;
}
*,
*:before,
*:after {
    box-sizing:inherit;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
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;
}

/* Fonts */
@font-face {
    font-family: 'Firme';
    src: url('./fonts/Firme-Book.woff2') format('woff2'),
    url('./fonts/Firme-Book.woff') format('woff'),
    url('./fonts/Firme-Book.svg#Firme-Book') format('svg');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Firme';
    src: url('./fonts/Firme-Bold.woff') format('woff'),
    url('./fonts/Firme-Bold.svg#Firme-Bold') format('svg');
    font-weight: 700;
    font-style: normal;
}

/* Vars */
:root {
    --blue: #006699;
    --blue300: #7DA7BD;
    --formHeight: 38px;
    --baseValue1: 8px;
    --baseValue2: 16px;
    --baseValue3: 24px;
    --firme: 'Firme', 'Source Sans Pro', sans-serif;
    --logoWidth320: 229px;
    --logoWidth640: 295px;
    --logoWidth768: 410px;
    --logoWidth1024: 416px;
    --logoWidth1366: 408px;
    
    --gap: 64px;
    --containerMaxWidth: 1296px;
    --searchInputWidth1366: 336px;
}

/* Rules */
.expresso-emprego {
    background-color: var(--blue);
    color: #fff;
}

.expresso-emprego__container {
    padding: 0 var(--baseValue3) 32px;
}

.expresso-emprego__logo {
    display: block;
    width: var(--logoWidth320);
    margin: 0 auto var(--baseValue1);
}

.expresso-emprego__logo img {
    display: block;
    width: 100%;
}

.expresso-emprego__links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-transform: uppercase;
    margin-bottom: var(--baseValue2);
}

.expresso-emprego__links li:not(:last-child) {
    margin-right: var(--baseValue3);
}

.expresso-emprego__links a {
    color: #fff;
    transition: opacity .2s;
    text-decoration: none;
    font-family: var(--firme);
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
}

.expresso-emprego__links a:hover
.expresso-emprego__links a:active {
    opacity: .8;
}

.expresso-emprego__form {
    position: relative;
    height: var(--formHeight);
    padding-right: var(--formHeight);
    font-size: 16px;
    font-family: var(--firme);
    font-weight: 400;
}

.expresso-emprego__form .search-input {
    height: 100%;
    line-height: var(--formHeight);
    border: 1px solid #fff;
    padding: 0 10px;
    width: 100%;
    background-color: transparent;
    color: #fff;
}

.expresso-emprego__form .search-submit {
    position: absolute;
    right: 0;
    top: 0;
    width: var(--formHeight);
    height: var(--formHeight);
    background-color: #fff;
    background-image: url(search.svg);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.expresso-emprego__form .search-submit:hover {
    opacity: .8;
}

.expresso-emprego__form .search-submit span {
    font-size: 0;
    line-height: 0;
    color: transparent;
    display: inline-block;
}

.expresso-emprego__form .search-input::-webkit-input-placeholder {
    color: var(--blue300);
    font-family: var(--firme);
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
}

.expresso-emprego__form .search-input::-moz-placeholder { /* Firefox 19+ */
    color: var(--blue300);
    font-family: var(--firme);
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
}
.expresso-emprego__form .search-input:-ms-input-placeholder { /* IE 10+ */
    color: var(--blue300);
    font-family: var(--firme);
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
}
.expresso-emprego__form .search-input:-moz-placeholder { /* Firefox 18- */
    color: var(--blue300);
    font-family: var(--firme);
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
}

@media screen and (min-width:640px) {
    .expresso-emprego__logo {
        width: var(--logoWidth640);
    }
}

@media screen and (min-width:768px) {
    .expresso-emprego__logo {
        width: var(--logoWidth768);
    }
}

@media screen and (min-width:1024px) {
    .expresso-emprego__logo {
        margin: 0;
        width: 100%;
        grid-column: span 6;
    }
    .expresso-emprego__container {
        display: grid;
        grid-gap: var(--gap);
        grid-template-columns: repeat(12, 1fr);
        padding: 0 64px 18px;
    }
    .expresso-emprego__container > div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        grid-column: span 6;
    }
    .expresso-emprego__links {
        justify-content: flex-start;
    }
}

@media screen and (min-width:1024px) and (max-width:1365px) {
    .expresso-emprego__logo img {
        max-width: var(--logoWidth1024);
    }
}

@media screen and (min-width:1366px) {
    .expresso-emprego__container {
        display: flex;
        justify-content: space-between;
        grid-gap: 0;
        margin: 0 auto;
        padding: 0 16px;
        max-width: var(--containerMaxWidth) ;
        width: 100%;
    }
    .expresso-emprego__logo {
        width: var(--logoWidth1366);
    }
    .expresso-emprego__container > div {
        flex-direction: row;
        align-items: center;
    }
    .expresso-emprego__form .search-input {
        width: var(--searchInputWidth1366);
    }
    .expresso-emprego__links {
        margin-bottom: 0;
        margin-right: 32px;
    }
}