/*Typography*/
html {
  font: 16px "Lobster", serif;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.75em;
}

h3 {
  font-size: 1.5em;
}

p {
  font-size: 1.25em;
}

/*BASE*/
html,
body {
  width: 100%;
  height: 100%;
}

/*Layout*/
* {
  box-sizing: border-box;
}

/*Navigation*/
nav {
  position: relative;
  left: -12em;
  width: 6em;
  height: 100%;
  background: #DC143C;
  font-family: "Roboto Condensed", sans-serif;
  transition: left 0.85s linear;
}

.nav ul {
  float: left;
  width: 100%;
}

.nav a,
.fa-bars,
.soc-media a {
  display: block;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.35s;
}
.nav a:hover,
.fa-bars:hover,
.soc-media a:hover {
  background: #eb1f48;
}
.nav a:active,
.fa-bars:active,
.soc-media a:active {
  background: #ed365b;
}

.nav a {
  padding: 1em 0.5em;
  width: 100%;
}

.fa-bars {
  position: absolute;
  left: 0em;
  padding: 0.25em 0;
  z-index: 99;
  width: 2em;
  background: #DC143C;
  text-align: center;
  transition: left 0.75s ease-in-out;
}
.fa-bars:hover {
  cursor: pointer;
}

[type=checkbox] {
  display: none;
}
[type=checkbox]:checked + label {
  left: 3em;
}
[type=checkbox]:checked ~ nav {
  left: 0;
}

/*Social media*/
.soc-media {
  position: absolute;
  bottom: 5px;
}

.soc-media li {
  float: left;
}

.soc-media a {
  padding: 0.5em 0;
  width: 2em;
  font-weight: normal;
  text-align: center;
}

/*Page Wrapper*/
.wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(http://www.gratisography.com/pictures/119.jpg) no-repeat;
  background-size: cover;
}

.wrapper > h1 {
  position: absolute;
  top: 45%;
  width: 100%;
  color: #DC143C;
  font-size: 3em;
  text-align: center;
}

.overlay {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
}

/*Pages*/
section {
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  overflow: hidden;
  /*hide all on 0% width*/
  transition: all 0.75s;
}

:target {
  width: 100%;
}

section .content {
  margin: 1em auto;
  max-width: 900px;
  width: 60%;
  color: #DC143C;
}

section h1,
section h2,
section h3 {
  margin-bottom: 0.5em;
  text-align: center;
}

section p {
  margin: 0.5em 0;
  font-family: "lobster";
}

/*Home page*/
/*About page*/
.about {
  background: rgba(255, 255, 255, 0.75);
}

/*Clients page*/
.clients {
  background: rgba(255, 255, 255, 0.75);
}

.clients .row {
  float: left;
  margin-bottom: 1em;
  width: 100%;
}

.client-box {
  float: left;
  margin: 0 3em;
  width: 100px;
  height: 100px;
}

.client-box img {
  display: block;
  width: 100%;
}

/*Contact page*/
.contact {
  background: rgba(255, 255, 255, 0.75);
}

.map-container,
.map-container iframe {
  margin: 2em auto;
  width: 300px;
  height: 300px;
  background: url(https://en.frame.mapy.cz/s/bakokugeta) no-repeat center center;
  border: 0.5em solid #DC143C;
  border-radius: 50%;
  overflow: hidden;
}