    @import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&family=Oswald:wght@200;300;400;500;600;700&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800&display=swap');
     :root {
        --la-grey: #e5e4df;
        --la-grey-dark: #606060;
        --la-rich-black: #1c1000;
        --la-light-blue: #859fbb;
        --la-dark-blue: #436baa;
        --la-teal: #0e8b8e;
        --la-sunset: #db6c3b;
        --la-plum: #b26d9e;
    }
    
    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }
    
    body {
        background-color: var(--la-grey);
        text-wrap:balance;
    }
    
    html {
        scroll-behavior: smooth;
        font-family: 'Bodoni Moda', serif;
        font-weight: 300;
    }
    
    .hidden {
        display: none;
    }
    
    h1,
    h2,
    h3,
    h4,
    h5 {
        font-family: 'Oswald', sans-serif;
        font-weight: 300;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--la-rich-black);
    }
    
    p {
        line-height: 2em;
    }
    
    a {
        text-decoration: none;
        color: var(--la-rich-black);
        font-weight: 700;
        border-bottom: 2px solid rgba(255, 255, 255, 0);
        transition: .4s;
    }
    
    a:hover {
        border-bottom: 2px solid var(--la-dark-blue);
    }
    
    .active {
        border-bottom: 2px solid var(--la-dark-blue);
    }
    
    .infobar {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: .7em;
        font-family: 'Oswald', sans-serif;
        font-weight: 400;
        text-transform: uppercase;
        bottom: 0;
        width: 100%;
        z-index: 500;
        color: var(--la-grey);
        letter-spacing: 1px;
        background-color: var(--la-dark-blue);
        padding: 0em 2em;
    }
    
    .infobar a {
        text-decoration: none;
        color: var(--la-grey);
        font-weight: 400;
        transition: .4s;
        border: unset;
    }
    
    .infobar a:hover {
        font-weight: 700;
        color: #fff;
    }
    
    .container {
        background-color: var(--la-grey);
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 100%;
        grid-template-areas: "main feature"
    }
    
    .container-extend {
        background-color: var(--la-grey);
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 100%;
        grid-template-areas: "main main-extend"
    }
    
    header {
        background-color: var(--la-dark-blue);
        top: 0;
    }
    
    header h1,
    h5 {
        color: var(--la-grey);
    }
    
    header h1 {
        font-size: 4.5em;
        font-family: 'Bodoni Moda', serif;
        font-style: italic;
        text-transform: unset;
        letter-spacing: unset;
        font-weight: 700;
        margin-bottom: 24px;
    }
    
    header h5 {
        font-size: .95em;
        font-weight: 300;
        letter-spacing: 1px;
    }
    
    .title {
        text-align: center;
        padding: 1em;
        animation-duration: 1.35s;
        animation-name: slidein;
    }
    
    .title h1,
    h5 {
        margin: 0;
        padding: 0;
    }
    
    .title h5 {
        color: var(--la-rich-black);
    }
    
    @keyframes slidein {
        from {
            margin-top: -100px;
            opacity: 0;
        }
        to {
            margin-top: 0px;
            opacity: 1;
        }
    }
    
    .menuButton {
        display: flex;
        justify-content: center;
    }
    
    .menuButton button {
        cursor: pointer;
        border: unset;
        color: var(--la-grey);
        background: rgba(255, 255, 255, .25);
        margin: 1em 0;
        padding: 26px 16px;
        border-radius: 100%;
        font-family: 'Oswald', sans-serif;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 1px;
        transform: scale(.8);
        transition: .4s;
    }
    
    .menuButton button:hover {
        border: unset;
        color: var(--la-dark-blue);
        background: var(--la-grey);
        transform: scale(1.0);
    }
    
    nav {
        overflow: hidden;
        /* Hide the element content, while height = 0 */
        height: 0;
        opacity: 0;
        transition: .35s;
    }
    
    nav ul {
        display: flex;
        justify-content: space-around;
    }
    
    nav ul {
        list-style: none;
        margin-left: 0;
        padding-left: 0;
    }
    
    nav a {
        border-color: rgba(255, 255, 255, 0);
    }
    
    .navShow {
        background: #ECE9E6;
        /* fallback for old browsers */
        background: -webkit-linear-gradient(to bottom, #FFFFFF, #ECE9E6);
        /* Chrome 10-25, Safari 5.1-6 */
        background: linear-gradient(to bottom, #FFFFFF, #ECE9E6);
        /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
        padding: .5em;
        height: auto;
        opacity: 1;
    }
    
    main {
        grid-area: main;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
    }
    
    main h2 {
        font-size: 2.15em;
    }
    
    .main-extend {
        grid-area: main-extend;
        align-items: flex-start;
    }
    
    .column {
        font-size: 1.1em;
        padding: 2em;
    }
    
    .column p {
        max-width: 70ch;
        margin: 2em auto;
    }
    
    .column h2 {
        color: var(--la-grey-dark);
    }
    
    .column h3 {
        color: var(--la-dark-blue);
    }
    
    .column ul {
        list-style: none;
        margin-left: 0px;
        padding-left: 0px;
        line-height: 2em;
    }
    
    .column li {
        font-style: italic;
    }
    
    .closedup p {
        margin: 0px;
        padding: 0px;
        margin-bottom: 1.2em;
    }
    
    .closedup hr {
        border: 0px;
        border-top: solid 1px var(--la-dark-blue);
    }
    
    .closedup ul {
        list-style: disc;
        margin-left: 3ch;
        padding-left: inherit;
        line-height: inherit;
    }
    
    .closedup li {
        font-style: normal;
        margin-bottom: .7em;
    }
    
    .caret-list {
        text-align: left;
    }
    
    .caret-list ul {
        list-style-type: "\27A4";
        margin-left: 2ch;
    }
    
    .caret-list li {
        margin-left: 0ch;
        padding-left: 1ch;
    }
    
    .callout {
        border: 1px solid var(--la-grey-dark);
        padding: 1em 2em;
        text-align: center;
    }
    
    .circle-img {
        text-align: center;
    }
    
    .circle-img img {
        width: 100%;
        max-width: 36ch;
        border-radius: 100%;
        transition: .7s;
    }
    
    .home img {
        max-width: 24ch;
    }
    
    .two-up-images {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-bottom: 2em;
    }
    
    #nextnav {
        display: flex;
        margin: 0 auto;
        gap: 40px;
        justify-content: space-evenly;
        align-items: center;
        font-size: .8em;
        font-family: 'Oswald', sans-serif;
        text-transform: uppercase;
        letter-spacing: 1px;
        background-color: rgba(255, 255, 255, .2);
        padding: 1em;
        margin-top: 4em;
        border-radius: 24px;
        transition: .7s;
    }
    
    #nextnav:hover {
        background-color: rgba(255, 255, 255, .5);
    }
    
    #nextnav a {
        font-weight: 300;
        border-bottom: 0px;
    }
    
    #nextnav a:hover {
        border-bottom: 0px;
        color: var(--la-dark-blue);
    }
    
    .feature {
        grid-area: feature;
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url('../img/WEB-sq-huper-by-joshua-earle-a3xymeWNDso-unsplash\ copy.jpg');
        background-size: cover;
        background-position: center;
        ;
        background-repeat: no-repeat;
    }
    
    .feature-fixed {
        background-attachment: fixed;
    }
    
    .feature-about {
        background-image: url('../img/LA_portrait_24.jpg');
        background-position-y: 25%;
        background-size: 80%;
    }
    
    .lisa-head {
        display: none;
    }
    
    .feature-licenses {
        background-image: url('../img/WEB-sq-Pink_flower_macro_8984430014.jpg');
    }
    
    .feature-fees {
        background-image: url('../img/WEB-sq-Blauwe_lotus.jpg');
    }
    
    .feature-consulting {
        background-image: url('../img/WEB-sq-Sun_playing_in_palmtree.jpg');
    }
    
    .feature img {
        display: none;
        width: 100%;
    }
    
    .quote {
        z-index: 200;
        color: var(--la-grey);
        text-align: center;
        border-radius: 50%;
        width: 540px;
        height: 540px;
        padding: 3em 3em;
        margin: 2em;
        background-color: rgba(0, 0, 0, .2);
        display: flex;
        justify-items: center;
        align-items: center;
        transition: .4s;
    }
    
    .quote:hover {
        background-color: rgba(0, 0, 0, .6);
    }
    
    .quote-text {
        font-size: 2em;
        font-style: italic;
        font-weight: 500;
        text-shadow: 1px .5px rgba(0, 0, 0, .80);
    }
    
    .small-cap-heading {
        font-family: 'Oswald', sans-serif;
        font-weight: 300;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .quote-attr {
        color: #fff;
        font-size: .5em;
        font-style: normal;
        font-weight: 200;
    }
    
    footer {
        background: #ECE9E6;
        /* fallback for old browsers */
        background: -webkit-linear-gradient(to top, #FFFFFF, #ECE9E6);
        /* Chrome 10-25, Safari 5.1-6 */
        background: linear-gradient(to top, #FFFFFF, #ECE9E6);
        /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
        font-size: 1em;
        padding: 4em 0em;
    }
    
    footer a {
        border-color: rgba(255, 255, 255, 0);
    }
    
    footer h4 {
        color: var(--la-dark-blue);
    }
    
    .footer-info {
        display: flex;
        align-items: flex-start;
        justify-content: space-around;
    }
    
    .sitemap ul {
        list-style: none;
        margin-left: 0px;
        padding-left: 0px;
        line-height: 2em;
    }
    
    @media screen and (max-width:1024px) {
        header h1 {
            font-size: 3em;
        }
        .container {
            display: grid;
            grid-template-columns: 1fr;
            grid-template-areas: "header" "feature" "main";
            grid-template-rows: auto;
        }
        .container-extend {
            display: grid;
            grid-template-columns: 1fr;
            grid-template-areas: "header" "main" "main-extend";
            grid-template-rows: auto;
        }
        nav ul {
            flex-direction: column;
            justify-content: center;
            align-items: center;
            line-height: 2em;
        }
        .quote {
            z-index: 200;
            color: var(--la-grey);
            text-align: center;
            border-radius: 50%;
            width: 300px;
            height: 300px;
            padding: 0;
            margin: 2em;
            background-color: rgba(0, 0, 0, .5);
            display: flex;
            justify-items: center;
            align-items: center;
        }
        .quote-text {
            font-size: 1.3em;
            font-style: italic;
            font-weight: 500;
            text-shadow: 1px .5px rgba(0, 0, 0, .80);
            margin: 0 auto;
            width: 80%
        }
        .small-cap-heading {
            font-family: 'Oswald', sans-serif;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .quote-attr {
            color: #fff;
            font-size: .5em;
            font-style: normal;
            font-weight: 200;
        }
        .feature {
            background-size: cover 100%;
            background-position: center;
            background-repeat: no-repeat;
            flex-direction: column;
        }
        .feature-about {
            background-position-y: 25%;
            background-size: 80%;
        }
        .lisa-head {
            display: block;
        }
        .feature-fixed {
            background-attachment: scroll;
        }
        main {
            display: block;
            min-height: unset;
        }
        .column {
            font-size: .9em;
            /*text-align: center;*/
        }
        
        .closedup {
            text-align:center;
        }
        .closedup ul {
            list-style: none;
            margin-left: 0ch;
            padding-left: 0ch;
        }
        .caret-list {
            text-align: left;
        }
        .caret-list ul {
            list-style-type: "\27A4";
            margin-left: 1em;
            padding-left: 0ch;
        }
        .caret-list li {
            padding-left: 1em;
        }
        .column-extend {
            margin-top: 0px;
            margin-bottom: 4em;
        }
        .main-extend {
            margin-top: -10em;
            grid-area: main-extend;
            align-items: flex-start;
        }
        .footer-info {
            flex-direction: column;
            align-items: center;
            justify-content: space-around;
            text-align: center;
            font-size: .9em;
        }
        .item {
            padding: 1em 2em;
            width: 100%;
        }
    }