@import url(https://fonts.googleapis.com/css?family=Lato:100,300,400,700);

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #424242;
    background-color: #f5f5f5;
}

h1, h2 {
    margin: 0;
    padding: 0;
    font-weight: 300;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 42px;
}

a {
    outline: 0;
    text-decoration: none;
}

a:hover, a:active, a:focus {
    outline: 0;
    text-decoration: none;
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.paper-shadow.z1 {
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
}

.paper-shadow.z2 {
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.paper-shadow.z3 {
    box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.bg-blue {
    color: #fff;
    background-color: rgb(0, 157, 224);
}

.bg-cyan {
    color: #fff;
    background-color: #00bcd4;
}

.bg-teal {
    color: #fff;
    background-color: #009688;
}

.fab {
    display: block;
    width: 56px;
    height: 56px;
    line-height: 56px;
    border-radius: 9999px;
    color: #fff;
    text-align: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -webkit-transition: box-shadow 0.3s ease-out;
    transition: box-shadow 0.3s ease-out;
}

.fab:hover {
    color: #fff;
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.form-control::-webkit-input-placeholder {
    color: #bdbdbd;
}

.form-control:-moz-placeholder {
    color: #bdbdbd;
}

.form-control::-moz-placeholder {
    color: #bdbdbd;
}

.form-control:-ms-input-placeholder {
    color: #bdbdbd;
}

.btn {
    position: relative;
    border-radius: 0;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    border: none;
    outline: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: box-shadow 0.3s ease-out, background-color 0.3s ease-out;
    transition: box-shadow 0.3s ease-out, background-color 0.3s ease-out;
}

.btn:hover, .btn:active, .btn:focus, .btn:visited {
    border: none;
    outline: 0;
}

.btn:hover, .btn:active, .btn:focus {
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.btn.btn-success, .btn.btn-success:visited {
    color: #fff;
    background-color: #4caf50;
}

.btn.btn-success:hover, .btn.btn-success:active {
    background-color: #43a047;
    outline: 0;
}

.btn.btn-primary, .btn.btn-primary:visited {
    color: #fff;
    background-color: rgb(0, 157, 224);
}

.btn.btn-primary:hover, .btn.btn-primary:active {
    background-color: #1ab7fa;
    outline: 0;
}

.btn.btn-default, .btn.btn-default:visited {
    color: #fff;
    background-color: #757575;
}

.btn.btn-default:hover, .btn.btn-default:active {
    background-color: #616161;
    outline: 0;
}

header {
    height: 192px;
}

header.small {
    height: 56px;
}

header.large {
    height: 360px;
}

header.xlarge {
    height: 540px;
}

header .logo {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 5;
}

header.large .masthead-container {
    height: 230px;
}

header.xlarge .masthead-container {
    height: 400px;
}

header .masthead-container h1, header .masthead-container h2 {
    position: absolute;
    bottom: 0;
}

.badge-danger {
    background-color: #B41515;
}

.badge-button {
    position: relative;
    left: -12px;
    top: -15px;
}

.page-section {
    padding-bottom: 32px;
}

.page-section.pull-up {
    margin-top: -100px;
}

.content-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

@media only screen and (max-width: 1200px) {

    header.large .masthead-container, header.xlarge .masthead-container {
        padding-left: 36px;
    }

}

@media only screen and (max-width: 767px) {

    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 30px;
    }

    header.large, header.xlarge {
        height: 324px;
    }

    header.large .masthead-container, header.xlarge .masthead-container {
        padding-left: 24px;
        height: 184px;
    }

    .page-section {
        padding-bottom: 0;
    }

}