html,
body {
  height: 100%;
  font-family: "Roboto", sans-serif;
}
a {
  -webkit-transition: color 0.1s linear;
  transition: color 0.1s linear;
}
h1 {
  font-family: "Roboto", sans-serif;
  color: #6d6e70;
  text-transform: lowercase;
  font-weight: 700;
  font-size: 48px;
}
p {
  color: #6d6e70;
  text-transform: lowercase;
  font-size: 16px;
}
p a {
  color: #6d6e70;
  text-decoration: underline;
}
p a:hover {
  color: #333;
  text-decoration: none;
}
.btn {
  background: none !important;
  border-radius: 0;
  font-family: "Roboto", sans-serif;
  text-transform: lowercase;
  font-size: 18px;
  position: relative;
  padding: 8px 20px 7px;
}
.btn span {
  position: relative;
  z-index: 1;
}
.btn.btn-default {
  border: 2px solid #ec1c24;
  color: #ec1c24;
}
.btn:after {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  bottom: 0;
  display: block;
  content: "";
  background: #ec1c24;
  z-index: 0;
  -webkit-transition: top 0.1s ease;
  transition: top 0.1s ease;
}
.btn:hover {
  color: #fff;
}
.btn:hover:after {
  top: 0;
}
.vertical-align-table {
  display: table;
  height: 100%;
  width: 100%;
}
.vertical-align-table .vertical-align-table-cell {
  display: table-cell;
  vertical-align: middle;
}
#left,
#right {
  float: left;
  height: 100%;
  padding: 30px 0;
}
#left {
  width: 45%;
  background: #e6e7e8;
  position: relative;
  text-align: center;
}
#left:after {
  border-bottom: 15px solid transparent;
  border-left: 15px solid #e6e7e8;
  border-top: 15px solid transparent;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  right: -15px;
  top: 50%;
  width: 0;
  margin-top: -15px;
}
#left #logo {
  height: 140px;
  width: auto;
}
#left h1 {
  margin: 30px 0 0;
}
#left p {
  margin: 0;
}
#left .btn {
  margin-top: 30px;
}
#left #samenwerkingspartner {
  color: #6d6e70;
  text-transform: lowercase;
  font-size: 16px;
  margin-top: 45px;
}
#left #samenwerkingspartner img {
  opacity: 0.5;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}
#left #samenwerkingspartner img:hover {
  opacity: 0.8;
}
#right {
  width: 55%;
  background: #fff;
  padding-left: 45px;
  padding-right: 45px;
}
#right .logo {
  display: block;
  margin-bottom: 30px;
  text-align: center;
}
#right .logo img {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  opacity: 0.5;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}
#right .logo:hover img {
  opacity: 0.8;
}
@media (max-width: 992px) {
  #left,
  #right {
    float: none;
    height: auto;
    width: auto;
  }
  #left:after {
    display: none;
  }
  #right {
    padding-left: 0;
    padding-right: 0;
  }
}