@font-face {
    font-family: 'Montserrat';
    src: url('Montserrat-VariableFont_wght.ttf');
}

@font-face {
    font-family: 'Freight';
    src: url('FreightSansProBook-Regular.ttf'),
        url('FreightSansProBook-Italic.ttf');
}

@font-face {
    font-family: 'Freight2';
    src: url('FreightSansProMedium-Regular.ttf');
}

:root {
    --light-blue: #0079a5;
    --dark-blue: #002856;
    --light-blue-accent: #11aadd;
}

* {
    font-family: 'Freight', sans-serif;
}

div>a {
    color: var(--dark-blue) !important;
    text-decoration: none !important;
    font-weight: bold !important;
}

div>a:hover {
    text-decoration: underline !important;
    color: var(--light-blue) !important;
}

div>a:visited {
    color: var(--light-blue-accent) !important;
}

.btn {
    font-family: 'Freight2', sans-serif !important;
    padding: 17px 24px !important;
    height: 50px !important;
    margin: 10px 20px !important;
    border-radius: 44px !important;
    background-color: var(--light-blue) !important;
    line-height: 1 !important;
    color: white !important;
    text-transform: uppercase;
    font-kerning: none;
    letter-spacing: 2pt;
    font-weight: lighter !important;
}

.btn:hover {
    background-color: var(--light-blue-accent) !important;
    text-decoration: none !important;
}

.btn:visited {
    color: white !important;
}

.btn img {
    width: 16px;
    display: inline;
    color: white;
    filter: invert() brightness(200%);
    margin-left: 12px;
}

.navbar h2 {
    color: white;
    display: inline-block;
    vertical-align: middle;
}

#main {
    border: 2px solid black;
    background: #eee;
    padding: 20px;
    margin-top: 20px;
}

p {
    font-size: 14pt;
}

#preamble {
    font-size: 18pt;
}

#products {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}

.product {
    display: inline-block;
    width: 300px;
    margin: 50px 50px;
    text-align: left;
}

.product * {
    display: block;
    text-align: left;
}

.product .btn {
    display: block;
}

.product .btn:hover {
    opacity: 75%;
}

.product>img {
    margin-left: -23px;
    margin-right: -23px;
}

.image-block {
    max-height: 64px;
    margin: 23px 0;
}

.image-block img {
    display: inline-block;
    max-height: 64px;
}

.product a div {
    float: left;
}

#copy {
    color: #777;
}

.rarr {
    float: right;
    vertical-align: middle;
    line-height: 3;
    margin-left: 5px;
}

.dropdown-menu {
    background-color: var(--light-blue) !important;
    color: white !important;
}

.dropdown-menu a {
    color: white !important;
}

.dropdown-menu li:hover,
.dropdown-menu a:hover {
    background-color: var(--light-blue-accent) !important;
}

.support-link {
    text-align: center;
}

@media (max-width:780px) {
    .product {
        width: 300px !important;
    }

    .product>img {
        width: 300px;
    }
}