*, *:before, *:after {
box-sizing:inherit
}
html {
box-sizing:border-box
}
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, main, header, hgroup, menu, nav, section {
display:block
}
ol, ul {
list-style:none
}
table {
empty-cells:show;
border-collapse:collapse;
border-spacing:0
}

/*-------------
	General
-------------*/
body {
display: flex;
flex-direction: column;
min-height: 100vh;

font-family: 'Montserrat', sans-serif;
font-size:16px;
line-height:1.5em;
color:#555
}
p {
margin:1em 0
}
p:first-child {
margin-top:0
}
p:last-child {
margin-bottom:0
}
i {
font-style:italic
}
b {
font-weight:700
}
a {
color:#0000ee;
text-decoration:none;
cursor:pointer;
opacity:.9
}
a:hover{
text-decoration:underline;
color:#0000a2;
opacity:1
}
a.btn{
color:#fff;
border-radius:4px;
text-transform:uppercase;
background-color:#2196F3;
font-weight:800;
text-align:center;
padding:2em 4em
}
hr {
margin:2em 0;
width:10em;
height:.1em;
background:#2196f3;
border:0;
width:auto
}
.map {
border:1px #ccc solid;
padding:1em
}

.clear {
clear:both
}



/*-------------
	Header
-------------*/
header {
border-bottom:1px #a3a3a3 solid;
color:#616161;
background:#f2f2f2;
height:6em;
display:flex;
align-items:center;
justify-content:center
}
h1 {
font-size:2.5em;
color:inherit;
line-height:1em
}





main {
flex:1
}



/*---------------------
	Chevrons
---------------------*/
.chevron {
display:flex;
flex-flow:column wrap
}
.chevron li {
margin:.5em;
padding:0 1.5em;
position:relative
}
.chevron li:before {
content: "\f105";
font-family:FontAwesome;
position:absolute;
left:0;
top:0
}




/*-------------
	Footer
-------------*/
footer {
border-top:1px #a3a3a3 solid;
color:#616161;
text-align:center;
background:#f2f2f2;
height:6em
}

