﻿* {
    margin: 0;
    padding: 0;
}

body {
    color: #574835;
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-align: center;
}

a, a:hover, a:visited, a:active {
    color: #574835;
}

.hidden {
    display: none !important;
}

.invisible {
    visibility: hidden !important;
}

.accent-text {
    color: #FFE500;
}

.background-accent {
    background-color: #FFE500;
}

.background-1 {
    background-color: #031F4A;
}

.background-2 {
    background-color: #052962;
}

.background-3 {
    background-color: #06337a;
}

.background-4 {
    background-color: #073d94;
}

p {
    margin: 2% 0;
    text-align: left;
}

a, a:visited, a:active {
    text-decoration: none;
}

h1, h2, h3 {
    text-align: center;
    margin: 0;
}

h1 {
    font-size: 2rem;
    padding: 3% 0;
    font-weight: bold;
    color: white;
}

h2 {
    font-size: 1.25rem;
    padding: 1.5% 0;
    border-top: 1px solid;
    border-bottom: 1px solid;
    margin-top: 1%;
    margin-bottom: 1%;
    background-color: #052962;
    color: white;
}

h3 {
    font-size: 1rem;
    margin: 2% 0;
}

header {
    position: sticky;
    top: 0;
    z-index: 10000;
}

hr {
    margin: .5rem 0;
}
/*Containers*/
.container-fluid {
    max-width: 2500px;
}

.header {
    display: flex;
    align-items: center;
}

    .header > div:first-child {
        flex-basis: 20%;
        margin-left: 4%;
    }

        .header > div:first-child + div {
            flex-basis: 60%;
            align-items: center;
        }

    .header > div:last-child {
        flex-basis: 20%;
        text-align: right;
        margin-right: 4%;
    }

#photo-container {
    margin-top: 2%;
}

.page-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.container.page-subtitle {
    background-color: #541E1B;
}

.logo-link {
    display: block;
    background-image: url('/img/header-logo-mono-yellow.png');
    width: calc(700px/14);
    height: calc(480px/14);
    background-repeat: no-repeat;
    background-size: contain;
    box-sizing: border-box;
    z-index: 100;
}

.text-left {
    text-align: left;
}

.text-color {
    color: #541E1B;
}

/*Footer*/
footer {
    font-size: 1rem;
    text-align: center;
    margin: 3% 0;
}

#footer-content {
    padding: 1%;
    color: white;
}

/*Menus*/
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#burger-icon {
    display: inline-block;
}

.burger-line {
    height: 2px;
    width: 30px;
    background-color: #FFE500;
    margin-bottom: 7px;
}

nav {
    text-align: right;
}

    nav ul {
        width: auto;
        border: none;
    }

        nav ul li {
            display: inline-block;
            padding: 1%;
            text-align: left;
        }

            nav ul li a, nav ul li a:hover {
                display: block;
                width: 100%;
                text-decoration: none;
                text-align: left;
            }

    nav a {
        font-size: 1rem;
    }

    nav#desktop a, nav#desktop a:hover {
        color: white;
    }

    nav#desktop .sub-menu ul a, nav#desktop .sub-menu ul a:hover {
        color: #574835;
    }

    nav#desktop a, nav#desktop a:hover {
        color: white;
    }

    nav#desktop {
        display: none;
    }

        nav#desktop ul li.sub-menu:hover > ul {
            display: block;
            position: absolute;
            background-color: white;
            z-index: 1000;
            border: 1px solid #574835;
            padding: .25%;
        }

        nav#desktop .sub-menu ul {
            display: none;
        }

    nav#mobile a, nav#mobile a:hover {
        color: #574835;
        font-weight: bold;
    }

    nav#mobile {
        display: none;
        margin-top: 8%;
        position: absolute;
        width: 100%;
        left: 0;
        border-top: 1px solid #574835;
        background-color: white;
    }

        nav#mobile ul li {
            display: block;
            padding: .5rem;
            text-align: left;
        }

        nav#mobile > ul li {
            border-bottom: 1px solid #574835;
        }

        nav#mobile li.sub-menu li {
            border-bottom: none;
        }

        nav#mobile .sub-menu ul li a {
            font-weight: normal;
        }

.sub-menu {
    cursor: pointer;
}

    .sub-menu li {
        display: block;
        padding: .5rem;
    }

        .sub-menu li:not(.first-child) a {
            color: #574835;
        }

        .sub-menu li:not(.first-child):hover {
            background-color: #FFE500;
        }

img, video {
    max-width: 100%;
}

.placeholder {
opacity: 1;
}

figcaption {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-weight: bold;
}