@font-face {
    font-family: 'gotham-book';
    src: url('../fonts/gotham-book_0-webfont.woff2') format('woff2'),
        url('../fonts/gotham-book_0-webfont.woff') format('woff');
    font-weight: 350;
    font-display: swap;
}

@font-face {
    font-family: 'gotham-light';
    src: url('../fonts/gotham-light-webfont.woff2') format('woff2'),
        url('../fonts/gotham-light-webfont.woff') format('woff');
    font-weight: 200;
    font-display: swap;
}

.main-bg {
    background-color: #f1f1f1;
    background-image: url('../img/bg-uvas.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header {
    background-image: url('../img/bg-header.png');
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}

.line {
    background-color: #666666;
    height: 1px;
    margin: 2rem 0;
}

.line--white {
    background-color: #cccccc;
}

.ffGothamBook {
    font-family: 'gotham-book', Arial, Helvetica, sans-serif;
}

.ffGothamLight {
    font-family: 'gotham-light', Arial, Helvetica, sans-serif;
}

.underAgeSection--hide {
    display: none;
}

.form input,
.form select {
    color: #333333;
    font-family: 'gotham-book', Arial, Helvetica, sans-serif;
    font-size: 16px;
    border: 1px solid #666666;
    display: block;
    width: 300px;
    height: 50px;
    max-width: 100%;
    padding: 0 10px;
}

.form textarea {
    color: #333333;
    font-family: 'gotham-book', Arial, Helvetica, sans-serif;
    font-size: 16px;
    border: 1px solid #666666;
    display: block;
    width: 90%;
    height: 150px;
    max-width: 100%;
    padding: 5px 10px;
    resize: none;
}

.form label input {
    width: auto;
    height: auto;
    transform: scale(1.5);
}

.form input::placeholder,
.form textarea::placeholder,
.form input::-webkit-input-placeholder {
    color: #333333;
}

.form input[name="direction"] {
    width: 90%;
}

.formOneColumn,
.formFewColumns,
.formTwoColumns {
    margin: 16px auto;
}

.formOneColumn,
.formTwoColumns,
.formFewColumns {
    display: flex;
    align-items: center;
    gap: 16px;
}

.formOneColumn label,
.formTwoColumns label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.formTwoColumns label {
    font-family: 'gotham-book', Arial, Helvetica, sans-serif;
    font-size: 16px;
    max-width: 380px;
}

.buttomSubmit {
    max-width: 320px;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
}

.swal2-confirm,
.swal2-cancel{
    background-color: #333333!important;
    display: flex!important;
    align-items: center;
    gap: .5rem;
}


@media(max-width: 768px) {
    .header {
        background-size: cover;
    }

    .formFewColumns {
        flex-wrap: wrap;
    }

    .line {
        margin: 1.5rem 0;
    }

    .form input,
    .form select {
        width: 100%;
    }
    .form textarea{
        width: 100%;
    }

    .form input[name="direction"] {
        width: 100%;
    }

    .formTwoColumns {
        flex-direction: column;
        align-items: flex-start;
    }
}