@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700,900);
@import url(https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700);
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background-color: #F5F5F5;
  font-family: 'Roboto';
}
.home-container {
  min-height: 100%;
  width: 100%;
  background-color: #F5F5F5;
}
.home-container--body {
  min-height: calc(100vh - 64px);
  width: 100%;
}
.home-container--header {
  width: 100%;
  height: 64px;
  background-color: #3957FC;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 0 25px;
}
.home-container--header--logo {
  width: 25%
}
.home-container--header--logo img {
  width: auto;
  height: 26px;
}
.home-container--header--options {
  text-align: right;
  width: 25%
}
.home-container--header--options a {
  display: inline-block;
  text-align: center;
  color: white;
  text-decoration: none;
  font-weight: 300;
  padding: 5px;
  transition: all 0.25s;
  border-radius: 2px;
  margin-left: 25px;
}
.home-container--header--options a:hover {
  background: rgba(0, 0, 0, 0.25);
  color: white;
  text-decoration: none;
}

/*//register*/

.register-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 64px);
}

.landing-splash{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 550px;
  background-size: cover;
  background-position:center ;
  /*background-position: center -150px;*/
  background-image: url(../images/landing_splash_2.jpg);
}

.landing-splash--title{
  width: 900px;
  font-family: 'Roboto slab';
}

.landing-splash--title h1{
  width: 50%;
}

.landing-splash--title h2{
  width: 50%;
  font-family: 'Roboto';
  font-weight: 500;
  font-size: 1.1em;
}

.btn.landing-splash--title--btn{
  font-size: 2em;
  display: block;
  width: 50%;
  background-color: #3957FC;
  color: white;
  margin-top: 25px;
}

.btn.landing-splash--title--btn:hover{
  background-color: #2b42be;
  color: white;
}

footer{
  min-height: 100px;
  padding: 25px;
  text-align: center;
}
.voolks-mail{
  display: block;
  margin-top: 25px;
}
