/* Normalize
========================================================================== */

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline-width: 0;
}

b,
strong {
  font-weight: bold;
}

img {
  border-style: none;
}

/* Box Model
========================================================================== */

::-moz-selection {
    background: #d91e18;
    text-shadow: none;
    color: #fff;
}

::selection {
    background: #d91e18;
    text-shadow: none;
    color: #fff;
}

/* Box Model
========================================================================== */

html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

/* Layout
========================================================================== */

.wrapper {
  width: 1080px;
  margin: 0 auto;
  padding: 10px 20px 40px;
}

.logo {
  text-align: center;
}

/* Images
========================================================================== */

img {
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}

/* Typography
========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.75;
    font-family: 'Roboto', sans-serif;
}

p {
	margin: 0 0 1.75em;
}

iframe {
  border: 0;
}

/* Grid
========================================================================== */

.grid {
  margin: 0 -5px -20px;
  padding: 0;
  list-style: none;
  font-size: 0;
}

.item {
  display: inline-block;
  width: 33.333%;
  padding: 0 5px;
  margin-bottom: 30px;
  font-size: 1rem;
  vertical-align: top;
}

.yt {
  background-color: #000;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.yt iframe {
  position: absolute;
  top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.yt::after {
  content: '';
  display: block;
  width: 55px;
  height: 40px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6) url('img/play.png') no-repeat center center;
  border-radius: 12px;
  z-index: 11;
}

.yt:hover::after {
  background-color: #cc181e;
}

.loaded::after {
  display: none;
}

.title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 2em 0 1em;
}

.yt-title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 4px 0 1px;
}

.yt-desc {
  font-size: 15px;
  line-height: 1.3;
  margin: 0;
}

/* Menu
========================================================================== */

.site-nav {
  text-align: center;
  border-bottom: 1px solid #a7a7a7;
  border-top: 1px solid #a7a7a7;
  padding: 10px 0;
  margin: 40px 0;
}

.site-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline-block;
}

.site-nav li {
  display: inline-block;
  padding: 0 40px;
}

.site-nav a {
  text-decoration: none;
  color: #222;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav .active a,
.site-nav a:hover {
  color: #d91e18;
}