

/* Document
------------------------------------------------------------ */

html, body {
    font-family: Montserrat, sans-serif;
    color: #424242;
    background-color: #FFF;

    min-width: 320px;
    overflow-x: hidden;
}

* {
    -moz-osx-font-smoothing: grayscale;   /* Firefox */
     -webkit-font-smoothing: antialiased; /* WebKit  */
}


/* Links / Buttons
------------------------------------------------------------ */

a {
    text-decoration: none !important;
    outline: none !important;
    transition: color .6s ease, background-color .6s ease, border-color .6s ease;
}
html.no-touch a:hover {
    text-decoration: none;
}

button {
    text-decoration: none;
    outline: none !important;
    background: none;
    border: none;
    cursor: pointer;
    transition: color .6s ease, background-color .6s ease, border-color .6s ease;
}

.btn {
    color: #FFF;
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
}
.btn-primary {
    background-color: #424242;
    padding: 10px 70px;
}
.btn-primary:hover {
    background-color: #000;
}


/* Alert
------------------------------------------------------------ */

.alert {
    padding: 25px;
    margin-bottom: 0;
    border-radius: 0;
}


/* Container
------------------------------------------------------------ */

@media (min-width: 1320px){
    .container {
        width: 1310px;
    }
}

.container.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.container.flex:before,
.container.flex:after {
    content: none;
}

