:root {
    /* CSS HEX */
    --indigo-dye: #1e3f66;
    --alice-blue: #e4f0f5;
    --cadet-gray: #95a5a6;
    --verdigris: #429aa2;
    --powder-blue: #a7c7e7;
}

.content a:not(.input-group-addon),
.footer a {
    color: var(--verdigris);
}

.btn.btn-primary,
.btn.btn-primary:active {
    background-color: var(--verdigris);
    border-color: var(--verdigris);
}

.btn.btn-primary:hover {
    background: #317177;
    border-color: #317177;
}


.background {
    position: fixed;
    background: #E4F0F5FF;
    background: linear-gradient(0deg, rgba(228, 240, 245, 1) 0%, rgba(167, 199, 231, 1) 100%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.content {
    background: white;
    padding: 2rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
}

#sort-menu-children {
    background: var(--verdigris) !important;
}

a.btn.btn-info {
    color: white;
}

.header-title {
    font-weight: bold;
    /*text-transform: capitalize;*/
    font-family: "Arial", "Helvetica", sans-serif;
    color: var(--indigo-dye);
}

.content-title {
    font-weight: bold;
    color: var(--indigo-dye);
}

h1.content-title {
    font-size: 32px;
}

h2.content-title {
    font-size: 24px;
}

.header-banner-image, .footer-banner-image {
    max-width: 100%;
    min-height: 80px;
    object-fit: cover
}
.footer-banner-image {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.header-banner-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    z-index: 2;
    align-items: center;
}

.header-banner-title h1.header-title {
    font-size: 42px;
    margin: 0;
    user-select: none;
}

@media (max-width: 767px) {
    .header-banner-title h1.header-title  {
        font-size: 24px;
    }
}

.white-text-border {
    text-shadow: 2px 0 2px #fff, -2px 0 2px #fff, 0 2px 2px #fff, 0 -2px 2px #fff,
    1px 1px 2px #fff, -1px -1px 2px #fff, 1px -1px 2px #fff, -1px 1px 2px #fff;
}

.footer-card {
    background: var(--indigo-dye);
    padding: 1.5rem 2rem;
    color: white;
    width: fit-content;
    border-radius: 25px;
    margin: 1rem 0;
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
    font-size: 1.2rem;
}