@font-face {
    font-family: 'FuturaBold';
    font-weight: bold;
    src: url('../fonts/FuturaCom-BoldCondensed.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'FuturaBold';
}

.center-container {
    position: relative;
}

.vh-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hide {
    display: none;
}

.w-80 {
    width: 80%;
}

.page {
    text-align: center;
}

.header {
    height: 35vh;
    position: relative;
}

.header img {
    height: 90%;
}

.body {
    height: 50vh
}

.footer {
    height: 15vh
}

.footer p {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 2.5em;
}

.bg-red {
    background-color: #e21b4d;
}

.bg-grey {
    background-color: #e5e6e7;
}

.bg-dark-blue {
    background-color: #12244b;
}

.dark-blue {
    color: #12244b;
}

.white {
    color: white;
}

/* Form */

.form-horizontal {
    display: block;
    margin: auto;
}

.form-horizontal .form-group {
    margin-bottom: 15px;
}

.form-horizontal input, .form-horizontal label, .form-horizontal select {
    display: block;
    width: 100%;
    text-transform: uppercase;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    color: #12244b;
    padding: 10px;
    outline: none;
    font-family: 'FuturaBold';
}

.form-horizontal select {
    text-align-last: center;
}

.form-horizontal input, .form-horizontal select {
    padding: 20px;
    border: none;
    border-radius: 5px;
    color: #f9cb05;
}

.body p {
    text-transform: uppercase;
    font-size: 2.9em;
    margin-bottom: 30px;
}

.p-last {
    margin-bottom: 0;
}

@media (max-width: 576px) and (orientation: portrait) {
    .form-horizontal input, .form-horizontal label, .form-horizontal select {
        font-size: 1.4em;
    }
    .form-horizontal input, .form-horizontal select {
        padding: 6px;
    }
    .form-horizontal .form-group {
        margin-bottom: 10px;
    }
    .footer p {
        font-size: 1.8em;
    }
    .body p {
        font-size: 1.5em;
        margin-bottom: 20px;
    }
}

@media (max-width: 1023px) and (orientation: landscape) {
    .header {
        height: 25vh;
    }
    .body {
        height: 60vh;
    }
    .form-horizontal input, .form-horizontal label, .form-horizontal select {
        font-size: 1em;
    }
    .form-horizontal .form-group {
        margin-bottom: 5px;
    }
    .form-horizontal input, .form-horizontal label, .form-horizontal select {
        padding: 6px;
    }
    .footer p {
        font-size: 1.8em;
    }
    .body p {
        font-size: 1.5em;
        margin-bottom: 20px;
    }
}

/*loading*/
.loading {
    z-index: 9999; 
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,.5);
}
.loading-wheel {
    width: 20px;
    height: 20px;
    margin-top: -40px;
    margin-left: -40px;
    
    position: absolute;
    top: 50%;
    left: 50%;
    
    border-width: 30px;
    border-radius: 50%;
    -webkit-animation: spin 1s linear infinite;
}
.style-2 .loading-wheel {
    border-style: double;
    border-color: #ccc transparent;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(-360deg);
    }
}