/* Fonts
----------------------------------------------------------------------- */

@font-face {
    font-family: 'ProximaNova';
    src: url('../fonts/ProximaNova-Thin-webfont.eot');
    src: url('../fonts/ProximaNova-Thin-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/ProximaNova-Thin-webfont.woff') format('woff'),
         url('../fonts/ProximaNova-Thin-webfont.ttf') format('truetype'),
         url('../fonts/ProximaNova-Thin-webfont.svg#proxima_nova_rgthin') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ProximaNova';
    src: url('../fonts/ProximaNova-Bold-webfont.eot');
    src: url('../fonts/ProximaNova-Bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/ProximaNova-Bold-webfont.woff') format('woff'),
         url('../fonts/ProximaNova-Bold-webfont.ttf') format('truetype'),
         url('../fonts/ProximaNova-Bold-webfont.svg#proxima_nova_rgbold') format('svg');
    font-weight: bold;
    font-style: normal;
}


/* Globals
----------------------------------------------------------------------- */

* {
	margin: 0;
	padding: 0;
	list-style: none;
}

body {
	margin: 0;
	background: #FFF;
	color: #333;
	font-size: 16px;
	font-family: "ProximaNova", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.wrapper {
	margin: 0 auto;
	max-width: 960px;
  padding: 0 5%;
}

.clearfix {
	clear:both;
}

/* Header
----------------------------------------------------------------------- */

header {
	background: #f16a19 url('../images/header-bg.jpg') no-repeat;
  background-size: cover;
	height: 20%;
  min-height: 200px;
  color: #FFF;
}

header img {
  margin: 50px 0 0 0;
  width: 150px;
}

header h1 {
  width: calc(100% - 150px);
  margin: 10px 0 0 0;
  font-size: 1.65em;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 100;
}

section {
  padding: 8% 0;
}

section h2 span {
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 5%;
  font-weight: 600;
  letter-spacing: .15em;
  font-size: .55em;
  text-align: center;
  border: 1px solid rgba(255,255,255,1);
  padding: 2% 5% 1.75% 5%;
}

section.product ul li {
  width: 49%;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .35em;
  font-size: .75em;
  color: #999;
}

section.product ul li:first-child {
  float: left;
}

section.product ul li:last-child {
  float: right;
}

section.product ul li span {
  display: block;
  box-sizing: border-box;
  height: 325px;
  margin-bottom: 6.5%;
}

section.product ul li:first-child span {
  background: #F4f4f4 url('../images/dofin-abierto.png') no-repeat center;
  background-size: 200px;
}

section.product ul li:last-child span {
  background: #F4f4f4 url('../images/dofin-cerrado.png') no-repeat center;
  background-size: 200px;
}

section.video {
  clear: both;
  background-color: #26526d;
  color: #FFF;
  text-align: center;
}

section.video.dark {
  background-color: #1d3f4f;
}

section.features {
  clear: both;
  text-align: center;
}

section.features li {
  font-size: 1.5em;
  margin-bottom: 5%;
}

section.features li:last-child {
  margin-bottom: 0;
}

section.features li strong {
  font-size: .85em;
  display: block;
  text-transform: uppercase;
  letter-spacing: .1em;
}

section.contact {
  background-color: #f4f4f4;
  color: #333;
  text-align: center;
}

section.contact h2 span {
  border-color: #333;
}

section.contact a {
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.1);
  font-size: 2.5em;
  font-weight: 600;
}

section.contact a:hover {
  border-bottom: 1px solid rgba(0,0,0,.95);
}

footer {
  padding: 3% 0;
  font-size: .85em;
  color: #ccc;
}

/* Media Queries
----------------------------------------------------------------------- */

@media (max-width: 959px) {
  body {
    font-size: 13px;
  }

  section {
    padding: 10% 0;
  }

  section h2 span {
    font-size: .65em;
    padding: 5% 8% 4.25% 8%;
    margin-bottom: 10%;
  }

  section.product ul li {
    clear: both;
    float: none;
    display: inline-block;
    width: 100%;
    margin-bottom: 5%;
  }

  section.features li {
    margin-bottom: 15%;
  }

  section.video iframe {
    width: 100%;
  }
}



