@import url('https://fonts.googleapis.com/css?family=Muli:200,300,300i,400,600&subset=latin-ext');

* {
    box-sizing: border-box;
}
body {
    float: left;
    margin: 0;
    padding: 0;
    font: 300 16px Muli, sans-serif;
    color: #fff;
    letter-spacing: .05em;
    background: #283583;
    text-align: left;
}
a {
    color: #fff;
    text-decoration: none;
}
.button {
    float: left;
    padding: 15px 30px;
    border: 2px solid #fff;
    line-height: 30px;
    transition: background-color 0.2s ease-in-out;
}
.button .icon, .button .icon img {
    float: left;
    width: 30px;
    height: 30px;
}
.button .label {
    float: left;
    margin-left: 30px;
}
.button:hover {
    background: rgba(255,255,255,.1);
}
h2 {
    float: left;
    width: 100%;
    font: 200 30px Muli, sans-serif;
    text-align: left;
}
h3 {
    float: left;
    width: 100%;
    font: italic 300 20px Muli, sans-serif;
    text-align: left;
}
h4 {
    float: left;
    width: 100%;
    font: 300 14px Muli, sans-serif;
    text-align: left;
}
.separator {
    float: left;
    width: 100%;
    margin: 20px 0;
}
b {
    font-weight: 600;
}
table {
    border-left: 2px solid #fff;
    padding-left: 20px;
}
table.spacing tr td:first-child {
    padding-right: 40px;
}
.wrapper {
    float: left;
    width: 100%;
    background: #283583;
}
header.top {
    float: left;
    width: 100%;
    height: 60px;
    padding: 20px 30px;
    top: -60px;
    left: 0;
    right: 0;
    z-index: 999;
    position: fixed;
    transition: top 0.4s ease-in-out;
}
header.top.show {
    top: 0;
}
header.top img {
    float: left;
    height: 20px;
}
section {
    float: left;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    transition: transform 0.4s ease-in-out;
}
section:not(.first), section.hide {
    transform: translateY(-100%);
}
section.show {
    transform: translateY(0);
}
section .bg {
    float: left;
    top: 0;
    bottom: 0;
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
section .bg.full {
    width: 100%;
}
section .bg.left {
    width: 50%;
}
section .bg.right {
    right: 0;
    width: 50%;
}
section h1 {
    float: left;
    height: 300px;
    width: 70%;
    top: calc(50% - 100px);
    bottom: calc(50% - 100px);
    left: 15%;
    right: 15%;
    z-index: 1;
    position: absolute;
    text-align: center;
}
section h1 img {
    float: left;
    width: 100%;
    opacity: .4;
}
section .text {
    float: left;
    width: 70%;
    top: 300px;
    left: 15%;
    right: 15%;
    z-index: 1;
    position: absolute;
}
section .text.left {
    float: left;
}
section .text.bottom {
    top: auto;
    bottom: 20%;
}
@media screen and (max-height: 800px) {
    section .text {
        top: 100px;
    }
}