/*
============================
[GLOBAL]
============================
*/
html, body {
  height: 100%;
}

body {
  min-height: 100%;
  font: 16px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #4b4b4b;
  color: #999;
  -webkit-font-smoothing: antialiased;
}

body.video [role=secondary] {
  left: 0;
  background: #000;
}

/*
============================
[Wrappers]
============================
*/
[role=main] {
  position: absolute;
  left: 0;
  top: 0;
  right: 40%;
  bottom: 0;
  background: #4b4b4b;
}

[role=main] .info {
  float: left;
  width: 50%;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

[role=main] h2 + .info {
  padding-left: 0;
}

[role=secondary] {
  position: absolute;
  left: 60%;
  top: 0;
  right: 0;
  bottom: 0;
  background: #333;
  -webkit-transition: 0.8s ease-in left;
  -webkit-transition-property: left, background;
  -webkit-transition-timing-function: cubic-bezier(0.85, 0.01, 0.98, 0.55);
  -moz-transition: 0.8s ease-in left;
  -moz-transition-property: left, background;
  -moz-transition-timing-function: cubic-bezier(0.85, 0.01, 0.98, 0.55);
  transition: 0.8s ease-in left;
  transition-property: left, background;
  transition-timing-function: cubic-bezier(0.85, 0.01, 0.98, 0.55);
}

[role=secondary]:before {
  content: "";
  display: block;
  position: absolute;
  left: -24px;
  top: 50%;
  margin-top: -24px;
  border: 12px solid transparent;
  border-right-color: #333;
}

/*[role="secondary"]:hover { left:0; }*/
.inner {
  position: absolute;
  left: 0;
  top: 50%;
  padding: 0 100px;
}

[role=contentinfo] {
  position: absolute;
  left: 0;
  top: 0;
  right: 40%;
  bottom: 20px;
  display: -webkit-box;
  -webkit-box-orient: end;
  -webkit-box-align: end;
}

[role=contentinfo] a {
  display: block;
  padding: 0 100px;
  font-size: 11px;
  color: black;
  color: rgba(0, 0, 0, 0.35);
  text-decoration: none;
  z-index: -1;
}

[role=contentinfo] a:hover {
  text-decoration: underline;
}

/*
============================
[Typography]
============================
*/
h1 {
  margin-bottom: 12px;
}

h1, h2 {
  line-height: 1;
  font-size: 24px;
}

h1, h3 {
  color: white;
}

h2 {
  margin-bottom: 64px;
}

h3 {
  margin-bottom: 12px;
  font-size: 16px;
}

[role=secondary] a {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  border: 3px solid #999;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  text-align: center;
  line-height: 200px;
  font-size: 24px;
  color: #999;
  text-decoration: none;
  -webkit-transition: 0.1s linear all;
  -moz-transition: 0.1s linear all;
  transition: 0.1s linear all;
}

[role=secondary] a:hover {
  background: #999;
  color: #333;
}

/*
============================
[Header/Branding]
============================
*/
/*
============================
[Video]
============================
*/
#video-player {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  right: 0;
  bottom: 0;
  width: 640px;
  height: 352px;
  margin-left: -320px;
  margin-top: -176px;
}

#video-player span {
  position: absolute;
  left: 50%;
  right: 0;
  margin-left: -25px;
  top: -100px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-weight: bold;
  text-transform: lowercase;
  color: #333;
  cursor: pointer;
  text-align: center;
  border: 3px solid #111;
  background: #111;
  color: black;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  text-align: center;
  color: #666;
  font-size: 11px;
  font-weight: normal;
  border: 0;
}

#video-player span:hover {
  background: #666;
  color: white;
}

/*
============================
[Footer]
============================
*/
/*
============================
[Home]
============================
*/
/*
============================
[Media Queries]
============================
*/
@media screen and (max-height: 770px) {
  body {
    background: #4b4b4b;
  }
  [role=main], [role=secondary] {
    overflow: hidden;
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    width: auto;
    margin-bottom: 40px;
  }
  .inner {
    position: relative;
    left: auto;
    top: auto;
    padding: 0;
    max-width: 720px;
    margin: 40px auto !important;
  }
  [role=secondary] {
    height: 600px;
  }
  [role=contentinfo] {
    position: relative;
    display: block;
    background: #4b4b4b;
    margin: 20px 0;
    padding-bottom: 20px;
  }
}