/* 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;
}

html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}


/**
 * FCF Global Styles
 */

.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

html {
  overflow-y: scroll;
  font-size: 100%;  
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  line-height: 1.5;
  background-color: #fff;
}

nav {
  width: 100%;
  padding: 1rem;
  background-color: rgba(0,0,0,.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  display: none;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0;
  text-align: center;
}

nav li {
  margin: 0 1rem;
  display: inline-block;
  font-size: 1rem;
}

nav a {
  color: #fff;
  text-decoration: none;
}

nav a:hover {
  border: 1px solid rgba(255,255,255,.4);
}

section {
  padding: 80px;
  position: relative;  
}

.hero {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  background: url(img/hero-bg.jpg) center center no-repeat;
  background-size: cover;
  border: 2em solid #37558d;
  display: flex;
  align-content: center;
  justify-content: center;
}

.brand {
  width: 33.3333%;
  margin: auto;
  text-align: center;
}

.brand__logo {
  width: 120px;
}

.brand__sep {
  width: 100%;
  height: 1px;
  margin: 1rem 0;
  border: 0;
  background-color: rgba(255,255,255,.4);
}

.brand__tagline {
  margin: 0;
  font-size: 1.5em;
  color: #fff;
}

.about {
  min-height: 100vh;
  padding: 5em;
  background-color: #fff;
  background: url(img/about-bg.jpg) bottom center no-repeat;
  background-size: cover;
}

.services {
  padding: 5em;
  background-color: #f39c12;
}

.services h3 {  
  color: rgba(0,0,0,.4);  
}

.services-list {  
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.services-list__item {
  width: calc(25% - 1rem);
  margin: 1rem 0;
  padding: 2rem;  
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 2px 2px 2px rgba(0,0,0,.2);
}

.clients {
  padding: 5em;
  background-color: #95a5a6;
}

.clients h3 {  
  color: rgba(0,0,0,.4); 
}

.clients-list {  
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.clients-list__item {
  width: calc(25% - 1rem);
  margin: 1rem 0;
  padding: 2rem;  
  border-radius: 4px;
  border: 1px solid #ccc; 
  background-color: #fff;
  box-shadow: 2px 2px 2px rgba(0,0,0,.2);
}

.clients-list__item h4 {
  color: #9f9f9f;
}

.contact {
  width: 100%;
  min-height: 100vh;
  padding: 5em;
  background: url(img/contact-bg.jpg) center center no-repeat;
  background-size: cover;
}

.contact__wrapper {
}

.news {
  padding: 10em;
  background-color: #444;
  color: #fff;
}

.news li {
  margin-bottom: 1rem;
}

.news li small {
  color: rgba(255,255,255,.6);
}


h3 {
  margin: 0 0 3rem;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 3em;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

h4 {
  margin: 0 0 1rem;
  padding-bottom: .5rem;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  color: inherit;
  border-bottom: 1px solid rgba(0,0,0,.2);
}

h5 {
  margin: 0 0 .5rem;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: inherit;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  list-style: square;
  break-inside: avoid;
}

hr {
  width: 100%;
  height: 1px;
  margin: 1rem 0;
  border: 0;
  background-color: rgba(0,0,0,.4);
}

.cap {
  margin: 0 1rem 1rem 0;
  float: left;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 5em;
  font-weight: 700;
  line-height: 1;
}

.two-col {
  column-count: 2;
  column-gap: 3rem;
}

.grid {
  margin: 0 -.75rem 1rem;  
}

.grid-half {
  width: calc(50% - 1.5rem);
  margin: 0 .75rem;
  float: left;
}

.half-center {
  width: 50%;
  margin: 0 auto 1rem;
}

@media screen and (max-width: 480px) {
  .two-col {
    column-count: 1;
  }
  
  .grid {
    margin: 0;
  }
  
  section {
    padding: 1.5rem !important;
  }
  
  h3 {
    margin-bottom: 1rem;
  }
  
  .services-list,
  .clients-list {
    display: block;
  }
  
  .services-list__item,
  .clients-list__item {
    width: 100%;
    margin: 0 0 1rem
  }
  
  .grid-half {
    width: 100%;
    margin: 0 0 1rem;
    float: none;
  }
}