:root {
    --red: #a11d34;
    --gold: #c8a852;
    --black: #1b1b1d;

    --font-open-sans: 'Open Sans', sans-serif;
    --font-poppins: 'Poppins', sans-serif;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    color: var(--black);
    font-family: var(--font-open-sans);
    font-size: 20px;
    letter-spacing: 1px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-poppins);
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 40px;
}

.text-red {
    color: var(--red);
}

.background-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-gold {
    background-color: var(--gold);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-poppins);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    padding: 12px 20px;
    border-width: 2px;
    border-style: solid;
    transition: all 0.3s ease-in-out;
}

.button svg {
    font-size: 13px;
    margin: 0 0 0 10px;
}

.button-red {
    color: #fff;
    background-color: var(--red);
    border-color: var(--red);
}

.button-red:hover {
    color: var(--red);
    background-color: transparent;
}

.button-gold {
    color: #fff;
    background-color: var(--gold);
    border-color: var(--gold);
}

.button-gold:hover {
    color: var(--gold);
    background-color: transparent;
}

.form-fields {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.form-fields.fields-col-2 > .form-field {
    width: calc(50% - 10px);
}

.form-field {
    font-size: 1.5rem;
    margin: 0 0 10px;
}

.form-field label {
    display: block;
    margin: 0 0 5px;
}

.form-field input[type='text'],
.form-field input[type='email'],
.form-field select {
    font-size: 15px;
    height: 50px;
    border: none;
    padding: 12px 20px;
    outline: none;
}

.form-field input[type='text'],
.form-field input[type='email'] {
    width: 100%;
}

.form-button {
    margin: 30px 0 0;
}

@media (max-width: 1199px) {
    h1 {
        font-size: 45px;
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 35px;
    }

    .form-fields.fields-col-2 > .form-field {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 25px;
    }
}