/* general ################### */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {
  background: url(img/bg.jpg);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: auto;
  font-size: 14px;
  font-family: 'Source Sans Pro', sans-serif;
  padding-bottom: 100px;
}

/* container ################### */
.container {
  width: 100%;
  padding: 0 5px;
  max-width: 1170px;
  margin: 0 auto;
}

@media screen and (min-width: 500px) {
  .container {
    padding: 0 15px;
  }
}

/* typo ################### */
h1, h2 {
  color: #a2232d;
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 30px;
}

@media screen and (min-width: 1024px) {
  h1, h2 {
    font-size: 36px;
  }
}

h1 + h3, h2 + h3 {
  margin: -30px 0 30px
}

h3 {
  margin: 0 0 30px;
  color: #8e8e8e;
  font-weight: 400;
  font-size: 20px;
}

p {
  color: #8e8e8e;
  margin-bottom: 15px;
  line-height: 1.4;
}

@media screen and (min-width: 500px) {
  p {
    margin-bottom: 25px;
  }

  p.big {
    font-size: 25px;
    font-weight: 600;
  }
}

a {
  color: #a2232d;
  text-decoration: none;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}

a:hover {
  color: #801c24;
}


/* logo ################### */
.logo {
  width: 65%;
  max-height: 260px;
  max-width: 215px;
  display: block;
  margin: 25px auto;
}

@media screen and (min-width: 500px) {
  .logo {
    margin: 55px 0 45px;
    width: 260px;
  }
}


/* content ################### */
.content {
  background: rgba(255,255,255,0.8);
  padding: 25px 10px 10px;
  max-width: 560px;
  box-shadow: 0 0 60px -20px #000;
}

@media screen and (min-width: 500px) {
  .content {
    padding: 40px 25px 25px;
  }
}

.content.hidden {
  display: none;
}

.btn {
  height: 50px;
  width: 100%;
  border-radius: 5px;
  background: #a2232d;
  color: #ffffff;
  display: block;
  text-decoration: none;
  text-align: center;
  line-height: 50px;
  margin: 10px 0 10px;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: background .2s ease;
  -moz-transition: background .2s ease;
  -ms-transition: background .2s ease;
  -o-transition: background .2s ease;
  transition: background .2s ease;
}

@media screen and (min-width: 500px) {
  .btn {
    margin: 50px 0 10px;
  }
}

.btn:hover {
  background: #801c24;
  color: #ffffff;
}

/* footer ################### */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.8);
  color: #8e8e8e;
  font-size: 16px;
}

footer .copyright {
  float: left;
  line-height: 25px;
  margin-right: 15px;
}

@media screen and (min-width: 1024px) {
  footer .copyright {
    line-height: 50px;
  }
}

footer .copyright span {
  color: #a2232d;
}

footer nav {
  float: right;
}

footer nav ul {
  margin: 0;
  padding: 0;
}

footer nav ul li {
  display: inline-block;
  line-height: 25px;
}

@media screen and (min-width: 1024px) {
  footer nav ul li {
    line-height: 50px;
  }
}

footer nav ul li a {
  color: #8e8e8e;
  text-decoration: none;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}

footer nav ul li a:hover {
  color: #7c7c7c;
}

footer nav ul li:not(:last-child) a {
  margin-right: 10px;
  padding-right: 14px;
  border-right: 1px solid #8e8e8e;
}
