/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

/**
 * Remove default margin.
 */
body {
    margin: 0;
    background-color: black;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
    display: none;
    height: 0;
}

//** FIRST PART **//

.navBarHeader {
    font-family: calibri;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 25px;
    height: 200px;
}

.navdiv {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid white;
}

.logo a {
    font-size: 35px;
    font-weight: 600;
    color: white;
}

/* Make the UL horizontal */
.nav-links {
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none;
}

.nav-links li a {
    color: white;
    font-size: 34px;
    font-weight: bold;
    margin-right: 25px;
    margin-top: 15px;
    text-decoration: none;
    align: center;
}

.link {
    background: none;
    border: none;
    text-decoration: none;
    color: #777;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    padding: 0;
}

.dropdown.active > .link,
.link:hover {
    color: solid white;
}

.link:hover {
    color: solid white; 
}

.dropdown {
    position: relative;
    font-size: 25px;
}

.dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + .25rem)
    background-color: white;
    padding: .75rem;
    border-radius: .25rem;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 150ms ease-in-out, transform 150ms ease-in-out;
}

.dropdown > .link:focus + .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.information-grid {
    display: grid;
    grid-template-columns: repeat(1);
    gap: 2rem;
}

.dropdown-links {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}
//** SECOND PART  **//


/* .content-wrapper {
    max-width: 1520px;
    flex-direction columns: ;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5rem;
    box-sizing: border-box;
} */

.banner {
    border: 0 solid #e5e7eb;
    position: static;
    width: 100%;
    padding-top: 6rem;
    padding-left: 8rem;
}



//** MEDIA QUERIES  **//
@media (min-width: 768px) {
.banner {
        width: 58.333333%;
    }
}

@media (min-width: 1280px) {
    .content-wrapper {
        width: 80%;
    }





