@font-face {
    font-family: 'Chevy Sans';
    src: url('../fonts/ChevySans-Light.eot');
    src: url('../fonts/ChevySans-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ChevySans-Light.woff2') format('woff2'),
        url('../fonts/ChevySans-Light.woff') format('woff'),
        url('../fonts/ChevySans-Light.ttf') format('truetype'),
        url('../fonts/ChevySans-Light.svg#ChevySans-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

* {
  outline: none;
}
a,
button {
  text-decoration: none !important;
  cursor: pointer !important;
  transition: 1s;
}
p {
  line-height: 1.5;
}
ul {
  padding: 0;
}
li {
  list-style: none;
}
body {
    font-family: 'Chevy Sans';
  margin: 0;
  background: #1E1E1E;
}
.container {
  max-width: 1240px !important;
  width: 100%;
}

img.logo-vitrine {
    position: absolute;
    z-index: 99;
    max-width: 600px;
    margin-top: 30px;
}

.owl-dots {
    display: flex;
    justify-content: center;
    padding: 10px 0 30px;
}
.owl-dots .owl-dot span {
    display: inline-flex;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    border: 2px solid #fff!important;
    background: #1E1E1E;
    margin: 0 3px;
}
.owl-dots .owl-dot:hover span,
.owl-dots .owl-dot.active span{
    border: 2px solid #fff!important;
    background: #fff;
}

section.formulario {
    padding-bottom: 45px;
}

h1 {
    font-size: 38px;
    color: #fff;
    text-align: center;
}
p {
    font-size: 26px;
    line-height: 28px;
    color: #fff;
    text-align: center;
}
label {
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
}

form {
    margin-top: 30px;
}
input.form-control,
select.form-control {
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    height: 55px;
    border: 1px solid #fff;
    background: transparent;
    border-radius: 0;
    margin-bottom: 20px;
}
input.form-control:focus,
select.form-control:focus {
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    height: 55px;
    border: 1px solid #fff;
    background: transparent;
    border-radius: 0;
    margin-bottom: 20px;
}
option {
    font-size: 18px;
    text-transform: uppercase;
    color: #1E1E1E;
}
form button {
    font-size: 20px;
    line-height: 22px;
    text-transform: uppercase;
    color: #fff;
    background: #0079BF;
    padding: 15px 50px;
    border-radius: 50px;
    display: table;
    margin: 0 auto;
}
form button:hover {
    background: #1C1C1C;
}

footer {
    background: #1C1C1C;
    padding: 20px 0;
}
footer img {
    margin: 0 10px;
}

/* --- MOBILE --- */
@media (max-width: 767px) {
    .owl-dots {
        padding: 5px 0 10px;
    }
    h1 {
        font-size: 28px;
    }
    p {
        font-size: 20px;
        line-height: 24px;
    }
    form {
        margin-top: 20px;
    }
    label {
        font-size: 16px;
    }
    input.form-control, select.form-control {
        font-size: 16px;
        height: 45px;
        margin-bottom: 15px;
    }
    footer .d-flex {
        display: block !important;
        text-align: center;
    }
    footer .d-flex img {
        display: table;
        margin: 0 auto 20px;
    }
}