:root {
    /* sizes */
    /* Extra small devices (phones, 600px and down) */
    --xs-width: 600px;
    /* Small devices (portrait tablets and large phones, 600px and up) */
    --sm-width: 601px;
    /* Medium devices (landscape tablets, 768px and up) */
    --md-width: 768px;
    /* Large devices (laptops/desktops, 992px and up) */
    --lg-width: 992px;
    /* Extra large devices (large laptops and desktops, 1200px and up) */
    --xl-width: 1200px;

    --background: #f4f3f3;
    --accent: #0867FC;
    --text-light: #f4f3f3;
    --text-dark: #131212;
}

.logoWrapper {
    display: flex;
    justify-content: start;
}

.logo {
    width: 240px;

}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 700px) {
    .logo {
        width: 200px;
    }
}

.nav {
    background-image: url('/assets/images/nav-splash.svg');
    background-size: cover;
    background-repeat: no-repeat;

    height: 200px;
    width: 100%;
}

.navWrapper {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 20px;
    display:flex;
    align-items: center;
    justify-content: space-between;
    height: 92px;
}

@media only screen and (min-width: 1200px) {
    .navWrapper {
        padding-left: 200px;
        padding-right: 200px;
    }
}



.desktopNavBar {
    /* overflow: hidden; */
    display: flex;
    margin-left: auto;
    align-items: center;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .desktopNavBar {
        display: none;
    }
}

.navLink {
    float: left;
    color: var(--text-light);
    text-align: center;
    padding: 14px 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 26px;
    font-family: DMSans, DMSans-fallback;
}

.navLink:hover {
    color: var(--text-dark);
}

.mobileNavLink {
    /* float: left; */
    color: var(--text-dark);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 24px;
    font-family: DMSans, DMSans-fallback;
}

.active {
    color: var(--text-dark);
    font-weight: 800;
}

.navToggleButton {
    display: none;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .navToggleButton {
        display: inline-block;
        cursor: pointer;
        margin-left: auto;
    }
}

.bar1,
.bar2,
.bar3 {
    width: 35px;
    height: 5px;
    background-color: var(--text-light);
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

.mobileNavDropdown {
    display: none;
    flex-direction: column;
}

.hidden {
    display: none !important;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .mobileNavDropdown {
        display: flex;
    }
}

/* Footer */

/* make sure the footer is always at the bottom of the page, but not sticky */
footer {
    margin-top: auto;
}

.footerWrapper {
    display: flex;
    justify-content: space-around;
    padding-bottom: 20px;
}

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

.footerText {
    font-size: 36px;
    color: var(--text-dark);
    font-family: jost, jost-fallback;
    font-weight: 300;
    margin-top: 0px;
    margin-bottom: 0px;
}

@media only screen and (max-width: 600px) {
    .footerText {
        font-size: 20px;
    }

    .mapPinIcon,
    .phoneIcon {
        padding-right: 10px;
    }
}

@media only screen and (min-width: 601px) {
    .footerText {
        font-size: 24px;
    }
}

@media only screen and (min-width: 768px) {
    .footerText {
        font-size: 24px;
    }
}


@media only screen and (min-width: 992px) {
    .footerText {
        font-size: 24px;
    }
}

@media only screen and (min-width: 1200px) {
    .footerText {
        font-size: 36px;
    }
}

.footerCredits {
    display: flex;
    justify-content: center;
}

.creditsText {
    font-family: DMSans, DMSans-fallback, serif;
    font-size: 32px;
    color: var(--text-dark);
}

@media only screen and (max-width: 600px) {
    .creditsText {
        font-size: 18px;
    }
}

.navCTALink {
    background: linear-gradient(to bottom right, #d6d5ff, #feffff);
    border: 0;
    border-radius: 12px;
    color: var(--text-dark);
    cursor: pointer;
    display: inline-block;
    font-family: DMsans, DMsans-fallback;
    padding: 6px 12px;
    margin-left: 6px;
    font-size: 22px;
    font-weight: 600;
    outline: transparent;
    text-align: center;
    text-decoration: none;
    transition: box-shadow .2s ease-in-out;
    user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
}

.navCTALink:hover {
    color: var(--text-dark);
}

.navCTALink:focus {
    box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.5), -.125rem -.125rem 1rem rgba(186, 212, 254, 0.5), .125rem .125rem 1rem rgba(41, 227, 248, 0.5);
}

.navCTALink:hover {
    box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.5), -.125rem -.125rem 1rem rgba(186, 212, 254, 0.5), .125rem .125rem 1rem rgba(41, 227, 248, 0.5);
    transition: "background 1s, color 1s",
}