html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    background-color: orange;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}


html {
    position: relative;
    min-height: 100%;
    height: 100%; /* for hte page to take full window height */
    box-sizing: border-box; /* to have hte footer display at the bottom of the page*/
}


.inner-header {
    background-image: url(/images/contact-header.jpg);
    min-height: 470px;
    width: 100%;
}

footer {
    background: orange;
    color: white;
}

.btn-orange, .btn-orange:hover, .btn-orange:active, .btn-orange:visited {
    background-color: orange;
    color: white;
    font-weight: bold;
    border-radius: 10px;
}

h2.title {
    text-transform: uppercase;
    font-size: clamp((60px / 1.9), 5vw, 60px) !important;
    line-height: 1.1 !important;
}

h3.title {
    font-size: 20px !important;
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 700;
}

div.subbar {
    background-color: #c0c0c0;
}

form.application-form .form-label:after {
    content: " :";
}

.form-label {
    font-weight: bold;
}



form.application-form .required:after {
    content: "* :";
}

.optional:after {
    content: " (optional)";
}

.input-validation-error {
    background-color: #f8d7da;
    border-color: #f5c2c7;
    color: #842029;
}

.validation-summary-errors {
    text-align: left;
}

    .validation-summary-errors ul {
        list-style-type: none;
    }

.bg-orange {
    background-color: orange !important;
}
