@charset "utf-8";
@import 'styles.css';

/* CSS Document */

@font-face {
    font-family: 'BudBold';
    src: url('../fonts/BudBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FranklinGothicBook';
    src: url('../fonts/FranklinGothicBook.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'FranklinGothicBook', sans-serif;
    webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
    background-color: #c8102e;
    color: #fff;
}

.btn-sac,
.btn-file {
    background-color: #fff;
    border: #000 solid 2px;
    border-radius: 0;
    color: #000;
    padding: 10px 15px;
    height: 45px;
    margin-top: 5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    /*
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
*/
}

.btn-sac:after,
.btn-sac:before,
.btn-file:after,
.btn-file:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.btn-sac:before,
.btn-file:before {
    background-color: #1d1d1f;
    -webkit-transform: translate(-100%, 0%);
    transform: translate(-100%, 0%);
    transition: -webkit-transform .35s ease;
    -webkit-transition: -webkit-transform .35s ease;
    transition: transform .35s ease;
    transition: transform .35s ease, -webkit-transform .35s ease;
    z-index: -1;
}

.btn-sac:after,
.btn-file:after {
    background: white;
    z-index: -2;
}

.btn-sac:hover,
.btn-file:hover {
    color: #fff;
    background-color: #000;
}

.btn-sac:hover:before,
.btn-sac:focus:before,
.btn-sac.hover:before,
.btn-file:hover:before,
.btn-file:focus:before,
.btn-file.hover:before {
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
}

header {
    background-image: url(../imgs/header-budweiser.jpg);
    min-height: 370px;
    background-size: cover;
    background-position: center;
    padding-top: 1em;
    text-align: center;
}

header .container {}

header div.logo {
    background-image: url(../imgs/logo-budweiser-white.svg);
    background-repeat: no-repeat;
    width: 170px;
    height: 56px;
    margin: 0 auto;
}

header h1 {
    font-family: 'BudBold';
    color: #fff;
    margin-top: 2em;
    font-size: 35px;
    margin-bottom: 0em;
}

header .header {
    font-size: 1.1em;
    color: #fff;
    padding-top: 20px;
}

header a,
header a:hover {
    color: #fff;
    font-size: 1.4em;
}

a,
a:hover,
h3 {
    font-family: 'BudBold';
    color: #fff;
    text-transform: uppercase;
}

.form-control {
    border: 2px solid #000;
    border-radius: 0;
    margin-top: 5px;
    height: 45px;
}

.help-block {
    color: #fff;
}

.has-error .form-control {
    border-color: #fff700;
}

.has-error .help-block,
.has-error .control-label {
    color: #ffff00;
}

textarea {
    border: 2px solid #000;
}

footer {
    background-color: #1d1d1f;
    color: #fff;
    border-top: 1px solid #f3f2f0;
}

footer a,
footer a:visited {
    font-family: 'FranklinGothicBook', sans-serif;
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    font-family: 'FranklinGothicBook', sans-serif;
    color: #686869;
    text-decoration: underline;
}

@media (max-width: 767px) {
    main {
        margin-bottom: 100px;
    }

    footer li {
        display: inline-block;
        margin: 10px;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {}

@media screen and (min-width:0\0) {
    .control-label {
        top: -1.5em !important;
    }

    input {
        color: #ffaab9 !important;
    }
}

@supports (-ms-ime-align:auto) {
    .control-label {
        top: -1.5em !important;
    }

    input {
        color: #ffaab9 !important;
    }
}
