
:root {
    --mountain-meadow-50: #eefbf5;
    --mountain-meadow-100: #d5f6e5;
    --mountain-meadow-200: #afebce;
    --mountain-meadow-300: #7bdab3;
    --mountain-meadow-400: #3cb98a;
    --mountain-meadow-500: #22a77a;
    --mountain-meadow-600: #148762;
    --mountain-meadow-700: #106c51;
    --mountain-meadow-800: #0f5641;
    --mountain-meadow-900: #0d4736;
    --mountain-meadow-950: #062820;

    --success: #3cb93c;
    --warning: #b9b93c;
    --error: #b93c3c;

    --teal-blue: #1f6f5b;
    --soft-coral-dark: #f47c6e;
    --pale-sand: #f7f2eb;
    --light-sage: #c8e8dc;
    --cool-gray: #6b7d76;

    --deep-teal-green: #14614c;
    --medium-green: #1f7a60;
    --lighter-mint: #6dc4ab;

    --light-beige: #eae0d5;
    --pale-blush: #ffe7e7;
    --soft-coral: #f8d6c1;

    --pale-aqua: #ebf6f3;
    --aqua-light-green: #c2eae3;
    --muted-sage: #b6dcd0;

    --soft-off-white: #f8f8f8;
    --charcoal: #2a2f2b;
    --gray-green: #888c84;
}

body {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    background-color: var(--mountain-meadow-50);
}

footer {
    width: 100%;
    background-color: var(--charcoal);
}

@media (768px < width) {
    .footer-layout {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        padding: 1em;
    }
}

@media (768px > width) {
    .footer-layout {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        padding: 1em;
    }
}

.center-align-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.center-align-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.dropdown-menu {
    position: absolute;
    right: 0;
    left: 0;
    background: white;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
}

.footer-header {
    color: var(--soft-off-white);
    padding: 1em;
}

ul.no-bullets {
    list-style-type: none;
}

.no-bullets > li > a {
    text-decoration: none;
    color: var(--soft-off-white);
}

li > a {
    cursor: pointer;
}

.page-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.article-statement {
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: var(--mountain-meadow-800);
}

.article-statement-secondary {
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
    background-color: var(--soft-coral);
}

.article-statement-secondary > h3 {
    color: white;
}

.article-header {
    text-align: center;
    padding-bottom: 3em;
}

.article-header > h3 {
    --pico-color: var(--mountain-meadow-950);
}

article > h3 {
    padding-top: 1em;
    padding-bottom: 1em;
    --pico-color: var(--mountain-meadow-100);
}

nav > ul > li > a {
    color: black;
    --pico-primary-hover-underline: var(--mountain-meadow-700);
    --pico-primary-underline: var(--mountain-meadow-700);
}

footer > div > a {
    text-decoration: none;
    color: var(--mountain-meadow-100);
    border-radius: 5%;
}

.menu {
    font-size: clamp(30px, 1.5vw, 50px);
    box-shadow: none;
    border-radius: 10%;
    margin-right: 2rem;
    margin-left: 2rem;
    padding: 0;
}

.menu:hover {
    box-shadow: none;
    border-radius: 10%;
    cursor: pointer;
}

.logo-image {
    display: block;
    width: 200px;
}

.hero-image {
    display: block;
    margin: 0 auto;
    width: 100vw;
}

.menu-overlay {
    display: none;
    position: absolute;
    width: 100%;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    z-index: 1;
}

.banner-text {
    text-align: center;
    padding-top: 1em
}

@media (768px <= width) {
    .mob-nav {
        display: none;
    }

    .pc-nav {
        display: block;
    }
}

@media (768px > width) {
    .pc-nav {
        display: none;
    }

    .mob-nav {
        display: block;
    }
}

/* CARD */

.card-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-items: stretch;
    justify-content: center;
    gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.card-link {
    width: clamp(10rem, 15rem, 20rem);
    text-decoration: none;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    border-radius: 1em;
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    justify-items: stretch;
    flex-direction: column;
    height: 100%;
}

.card-image {
    border-radius: 5%;
    padding: 1em;
}

.card-content {
    padding: 1rem;
}

.card-header {
    text-align: center;
    margin-top: 0;
    color: black;
}

.card-text {
    color: black;
}

.card-price {
    color: black;
    text-align: center;
    font-size: larger;
}

.card:hover {
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.container-wrapper-pale-sand {
    width: 100%;
    background-color: var(--pale-sand);
}

.container-wrapper-pale-aqua {
    width: 100%;
    background-color: var(--pale-aqua);
}

/* navigation */

.small-nav {
    display: grid;
    grid-template-areas:
                "small-nav-header"
                "small-nav-menu";
}

.small-nav-header {
    grid-area: small-nav-header;
    text-align: right;
}

.small-nav-menu {
    grid-area: small-nav-menu;
    text-align: center;
}

/* INFO-CARD */
@media (768px < width) {
    .info-card-holder {
        background-color: var(--pale-sand);
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        justify-items: center;
        justify-content: center;
    }
}

@media (768px > width) {
    .info-card-holder {
        background-color: var(--pale-sand);
        display: flex;
        align-items: center;
        flex-direction: column;
    }
}

.info-card {
    width: 100%;
    border-radius: 1em;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.info-card-image {
    width: clamp(5rem, 7vw, 10rem);
    padding: 1em;
}

.info-card-content {
    padding: 1rem;
}

.info-card-header {
    text-align: center;
    margin-top: 0;
}

.info-card-text {
    text-align: center;
    height: 100%;
}


/* BLOG */

.blog-layout {
    display: grid;
    grid-template-areas:
                "header header header"
                "image image image"
                ". title ."
                ". blog ."
                "footer footer footer";
    grid-template-columns: 2fr 3fr 2fr;
}

.blog-main-header {
    grid-area: header;
}

.blog-image {
    grid-area: image;
    width: 100%;
}

.blog-title {
    grid-area: title;
    text-align: center;
}

.blog-text {
    grid-area: blog;
    padding-top: 2em;
    padding-bottom: 2em;
    text-overflow: ellipsis;
}

.blog-footer {
    grid-area: footer;
}


/* Wizard */


.content {
    display: flex;
    justify-content: left;
}

.input-label {
    display: flex;
    align-items: center;
    padding-bottom: 1em;
}

.wizard-dropdown {
    position: absolute;
    display: block;
    width: 48vw;
    font-size: larger;
    box-shadow: 0 2px 4px black inset;
}

.wizard-progress {
    text-align: center;
}

.wizard-main {
    width: 100%;
    text-align: left;
}

.wizard-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.wizard {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    padding: 2px;
    border: 1px solid black;
    transition: width 1s;
}

.progress {
    font-size: x-large;
    transition: width 1s;
    text-align: center;
}

.questioner {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

image:hover {
    cursor: pointer;
}

.interaction-element {
    padding-top: 1rem;
}

.interaction-element-button {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: larger;
    border-radius: 1em;
    border-style: solid;
    cursor: pointer;
    padding: 0.5em;
}

.questioner button {
    padding: 0.5rem;
    font-size: large;
    border-radius: 25px;
    min-width: 10rem;
}

.button-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 1rem;
}

.vipps-button {
    background-color: #ff5b24;
    border-radius: 25px;
    font-weight: bold;
    color: white;
}