/* ========================================================================== */
/* 800px and above */

@media only screen
and (min-width: 800px) {

    .header-top {
        justify-content: space-between
    }

    .mobile-header-nav {
        display: none;
    }

    .desktop-header-nav {
        display: block;
    }

    .desktop-header-nav ul {
        display: flex;
        gap: 1rem;
    }

    .lead-image {
        width: 75%;
    }

}

/* ========================================================================== */
/* 1200px and above */

@media only screen
and (min-width: 1200px) {

    .lead-image {
        width: 50%;
    }

}