html {
    font-size: 100%;
    scroll-behavior: smooth;
}

html, body, div, img {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: none;
}

body {
    font-family: 'Open Sans', tahoma, sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Slab', georgia, serif;
    margin-top: 0;
}

p {
    line-height: 140%;
    font-size: 1rem;
}

h1 sup {
    font-size: 10px;
    position: relative;
    bottom: 3px;
}

p sup {
    font-size: 8px;
}

.wrp {
    max-width: 940px;
    padding: 0 10px;
    margin: 0 auto;
}

.hdr, .ftr {
    background: #1d1f44;
    padding: 15px 0;
    color: #fff;
}

.hdr img {
    display: block;
    max-height: 60px;
}

.hdr .logo {
    color: #fff;
    font-size: 1.75rem;
    letter-spacing: -1px;
    font-weight: bold;
    text-decoration: none;
}

.cnt {
    padding: 2rem 0;
    font-size: .9rem;
}

a:link, a:visited {
    color: #00e;
}

.ftr {
    font-size: 0.8rem;
}

.ftr p {
    font-size: .9rem;
}

.ftr a:link, .ftr a:hover, .ftr a:visited, .ftr a:active {
    color: #fff;
}

p.lgl {
    font-size: .8rem !important;
    line-height: 120%;
    text-align: justify;
}

.bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.underline {
    text-decoration: underline;
}

.line-break {
    color: #e7e7e7;
    margin: 24px 0;
    border-style: dashed;
}

table {
    border-collapse: collapse;
}

td {
    padding: 10px;
    border: 1px solid #333;
}

label {
    display: block;
    font-weight: bold;
}

p label {
    display: inline;
    font-weight: normal;
}

input[type="text"], input[type="tel"], input[type="email"], textarea {
    box-sizing: border-box;
    display: block;
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #5199e3;
    border-radius: 4px;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
}

input:hover {
    border-color: #8785e2;
}

input:focus {
    border-color: #000;
}

input[type="radio"], input[type="checkbox"] {
    display: inline;
}

button {
    color: #fff;
    display: block;
    padding: 15px 23px;
    border-radius: 4px;
    background-color: #23255e;
    -webkit-transition: background-color 200ms ease;
    transition: background-color 200ms ease;
    font-size: 1rem;
    font-weight: 700;
}

.my-4 {
    margin: 16px 0;
}

.icon-contact {
    width: 15px;
    margin-right: 10px;
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
}

.highcontrast .hdr, .highcontrast .cnt, .highcontrast .ftr {
    color: yellow;
    background: #000;
}

.highcontrast a:link, .highcontrast a:visited, .highcontrast a:hover, .highcontrast a:active {
    color: yellow !important;
}

.highcontrast td {
    border-color: yellow;
}

button[type="submit"] {
    cursor: pointer;
}

/* Contact-Us */
.contact-row {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
}

.contact-row .row {
    width: 100%;
    padding: 16px;
}


.contact-row .row2 {
    background: #e7e7e7;
}

.row2 textarea[name="message"] {
    min-height: 160px;
    margin-bottom: 16px;
    font-family: 'Open Sans', tahoma, sans-serif;
}

.row2 button {
    width: 100%;
}

@media only screen and (min-width: 640px) {
    .contact-row {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        align-items: flex-start;
    }

    .contact-row .row {
        width: 45%;
    }

    .contact-row .row1 {
        padding-left: 0;
    }
}