@import url('https://fonts.googleapis.com/css2?family=Bruno+Ace+SC&display=swap');

body {
    font-family: 'Monserrat', sans-serif;
}

h1, .futu-font {
    font-family: 'Bruno Ace SC', 'Monserrat', sans-serif !important;
}

h1 {
    letter-spacing:.1em
}

ul {
    padding-left: 15px;
}

.up-down {
    animation: UpDown 2s ease-in-out infinite;
}

@keyframes UpDown {
    0%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    50% {
        transform: translateY(-5px) translateX(-50%);
    }
}

.mw-1400 {
    max-width: 1400px;
    margin: auto;
}

.mw-700 {
    max-width: 700px;
    margin: auto;
}

.mw-1200 {
    max-width: 1200px;
    margin: auto;
}

.header ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.header {
    letter-spacing: 2px;
}

.tagline {
    height: 25px;
    line-height: 25px;
}

.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.form-field input {
    border: 1px solid #eee;
    padding: 8px;
    border-radius: 4px;
    outline: none;
    font-size: 16px;
    height: 34px;
}

.form-field input:focus {
    border-color: #ccc;
}

.form-field textarea {
    width: 100%;
    min-height: 300px;
    border: 1px solid #eee;
    padding: 8px;
    border-radius: 4px;
    outline: none;
    font-size: 16px;
}

.form-field textarea:focus {
    border-color: #ccc;
}

.form-field {
    margin-top: 15px;
}

.buttons button {
    text-transform: uppercase;
    font-weight: bold;
    border: 1px solid #eee;
    color: white;
    background-color: rgba(0,0,0,0.9);
    padding: 12px 20px;
    outline: none;
    font-size: 14px;
    cursor: pointer;
    opacity: 1;
    transition: opacity .15s ease-in;
    letter-spacing: .1em;
}

.buttons button:hover, .buttons button:active {
    opacity:.5;
}

.form-label {
    margin-bottom: 5px;
    font-weight: bold;
}

.langswitcher {
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -o-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    display: flex !important;
    margin: 0 !important;
}

.langswitcher .active {
    text-decoration: none !important;
    opacity: 100% !important;
}

#grav-login {
    background: none !important;
}