html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    padding-top: 70px;
}

header > nav {
    padding: 1em 0 !important;
    background-color: black;
}

.row {
    --bs-gutter-x: none;
}

.section-title {
    text-align: center;
    padding: 4em 1em;
    color: white;
    background:url("/images/contact_bg.jpg") center/cover no-repeat;
    background-position: top;
}

section.contact-form {
    padding: 4em 2.5em 2.5em 2.5em;
}

.form-entries {
    padding: 1em 0 1em 0;
    max-width: 1000px;
    margin: 0 auto;
}

.form-entries .row {
    margin: 1em 0;
    margin-bottom: 3.5em;
}

.form-entries .col {
    padding: 0 1em;
}

.form-entries .submit-button {
    display: flex;
    align-items: flex-end;
    max-width: 15em;
    margin: 0 auto;
}

.form-entries .form-label, .form-entries button {
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0;
}

.form-entries .textbox-label {
    margin-bottom: 0.5rem;
}

.form-entries button {
    width: 100%;
    background-color: #92766d;
    color: white;
    border-radius: 0;
}

.form-entries button:focus, .form-entries button:hover {
    background-color: color-mix(in srgb, #92766d 80%, white);
    color: white;
}

.form-entries .form-control {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #92766d;
}

.form-entries textarea.form-control {
    border-radius: 0;
    border: 1px solid #92766d;
    height: 8em;
}

.form-entries textarea.form-control:focus {
    outline: none;
    box-shadow: none;
    border: 2px solid #92766d;
}

textarea::placeholder {
    color: #9b9b9b;
}

.form-entries .form-control:focus {
    outline: none;
    box-shadow: none;
    border-bottom: 2px solid #92766d;
}

.contact-form .statement {
    padding: 0;
    margin: 0;
    text-align: justify;
    font-size: 0.9em;
    font-style: italic;
    display: flex;
    align-items: baseline;
}

.contact-form .statement input {
    margin-right: 1em;
    accent-color: #92766d;
}

form a.hyperlink {
    color: #121212;
    font-weight: bold;
}

@media (max-width: 1205px) {
    html, body {
        padding-top: 58px;
    }
}

@media (max-width: 767px) {
    .form-entries .row {
        margin-bottom: 0;
    }

    .form-entries .col {
        margin-bottom: 2em;
    }
}

@media (max-width: 480px) {
    header #navbar.scrolled {
        height: 97px;
        background-color: #121212;
    }

    header > nav .navbar-brand {
        height: 65px;
        margin-left: 3px;
    }

    header .container-fluid {
        --bs-gutter-x: none;
    }

    header > nav .navbar-brand img {
        position: absolute;
        height: 65px;
        top: 17px;
        left: 24px;
    }

    header .navbar-collapse.show {
        background-color: #1212128a;
    }

    header button.navbar-toggler {
        margin-right: 0.6em;
    }

    header .language {
        right: 1.5em;
        top: 1em;
    }

    header nav {
        padding: 2em 0 !important;
    }
}