* {
    --people-cyan: #00b2ec;
    --people-yellow: #fff000;
    --alley-gap: 20px;
}

a {
    text-decoration: none;
    color: black;
}

/************************ NAVBAR ************************/
.navbar {
    width: 100%;
    background: white;
    position: fixed;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,0.15);
    z-index: 1000;
    height: 115px;
    
    transition: height 0.1s ease-in-out;
}

.navbar-content {
    width: 100%;
    max-width: calc(1250px + (var(--alley-gap) * 2));
    padding: 18px;
    
    margin: 0 calc(var(--alley-gap));
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
}

.navbar #topbar svg {
    width: 130px;
    fill: var(--people-cyan);
}

.navbar-content #main-nav {
    margin-top: 15px;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.navbar ul li {
    font-family: futura-pt, sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-right: 32px;
    line-height: 0.85;
    text-shadow: 1.75px 0 white, -1.75px 0 white;
    letter-spacing: 1.23px;
    
    padding: 0 1px;
    padding-bottom: 1px;
    background: linear-gradient(black, black);
    background-repeat: no-repeat;
    background-size: 100% 0;
    background-position: 0 100%;
}

.navbar ul li:hover {
    background-size: 100% 1px;
}


.mobile-navbar-content {
    visibility: hidden;
    width: calc(100% - 32px);
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    
    display: grid;
    grid-template-columns: [col1-start] 32px [gap-start] 16px [col2-start] auto;
}

.hamburger-clicker {
    width: 24px;
    height: 16px;
    position: relative;
    margin-top: 22px;
    grid-column: col1-start;
}

.hamburger-clicker input {
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    z-index: 1000;
}

.hamburger-icon {
    height: calc(16px / 5.5);
    width: 100%;
    background: rgba(0,0,0,0.65);;
    display: inline;
    position: absolute;
    z-index: -1;
}

.hamburger-icon#bar1 {
    top: 0;
    left: 0;
}

.hamburger-icon#bar2 {
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

.hamburger-icon#bar3 {
    bottom: 0;
    left: 0;
}

.hamburger-clicker input:checked ~ .hamburger-icon#bar1 {
    top: 50%;
    transform: translate(0, -50%) rotate(45deg);
}

.hamburger-clicker input:checked ~ .hamburger-icon#bar2 {
    top: 50%;
    transform: translate(0, -50%) rotate(-45deg);
}

.hamburger-clicker input:checked ~ .hamburger-icon#bar3 {
    display: none;
}

.mobile-navbar-content a {
    grid-column: col2-start;
    position: relative;
    margin: 0;
    padding: 0;
    margin-top: 17px;
}

.mobile-navbar-content svg {
    width: 90px;
    fill: var(--people-cyan);
}

@media screen and (max-width: 820px) {
    .navbar-content.desktop {
        display: none;
    }
    
    .mobile-navbar-content {
        visibility: visible;
    }
    
    .navbar {
        height: 60px;
    }
}


.mobile-nav-display {
    display: none;
    
    padding-top: 60px;
    width: 100%;
    height: calc(100vh - 60px);
    background: white;
    position: absolute;
    z-index: 100;
}

.mobile-nav-display-content {
    width: calc(100% - 32px);
    font-family: futura-pt, sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    
    text-align: center;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
}

.mobile-nav-display-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-display-content li {
    padding: 25px 0;
    border-top: 1px solid rgba(0,0,0,0.15);
}

.mobile-nav-display-content li:first-child {
    border-top: none;
}

/************************ FOOTER ************************/
.footer {
    width: 100%;
}

.footer svg {
    width: 150px;
    fill: var(--people-cyan);
}

.top-footer {
    background: rgba(160,84,160,0.05);
    font-family: futura-pt, sans-serif;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 48px 0 12px;
}

.bottom-footer {
    width: calc(100% - 32px);
    max-width: 660px;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    font-family: futura-pt, sans-serif;
    text-align: center;
    margin-top: 48px;
}

.spoke-action-button {
    display: inline-block;
    background: white;
    border: 3px solid var(--people-cyan);
    font-weight: 700;
    object-fit: cover;
}

.spoke-action-button:hover {
    border: 3px solid var(--people-yellow);
}

.spoke-action-button a {
    display: block;
    padding: 12px 32px;
}

.bottom-footer img {
    display: block;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    width: 104px;
}

.bottom-footer p {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 24px;
}