.page--home {

    .highlight {
        font-weight: 400;
        text-transform: uppercase;

        border: 2px solid #ffffff;
        padding-inline: 2rem !important;
        /* todo remove import */
    }


    .highlight:hover {

        background-color: white;
        color: black;
        transition: all 400ms ease;
        border: 2px solid #ffffff;
        /*border-color: currentColor;*/
    }

    .hero {
        --background-image-hero: url(/assets/img/home1/beach-swing.jpg);


    }

    article {
        display: flex;
        flex-direction: column;
        color: white;
        align-items: center;

        img {
            width: fit-content;
        }
    }
}

.page--contact {
    iframe {
        border: 0;
        width: 100%;
        height: 250px;
        background-color: lightgrey;
        margin-bottom: 2rem;
    }


}



.page--products {

    .product-item {

        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 150px;
        gap: 0.5em;

        text-align: center;

        img {
            transition: scale 0.1s;
            max-width: 100px;
        }

        &:hover img {
            scale: 1.2;
            transition: scale 0.1s;
        }


        .product-item_title {
            font-weight: 600;
            text-decoration: none;
            text-transform: uppercase;
            color: black;
        }
    }
}

.page--testimonials {
    hr {
        height: 1px;
        background-color: rgb(102, 102, 102);
        width: 30%;
        margin-inline: auto;
        margin-block: 1em;
        border-style: solid;
        opacity: 0.5;
    }
}


.page--how-to-claim {

    .hero {
        --background-image-hero: url(/assets/img/home1/girl-laptop2.jpg);

    }
}

.page--products {

    .hero {
        --background-image-hero: url(/assets/img/home1/sillo-croped2.jpg);


    }
}

.hero {
    background-color: #dbdbcd;
    background-color: rgb(207, 200, 200);

    background-image: var(--background-image-hero);
    background-size: cover;
    background-blend-mode: multiply;
    padding-block: 5rem;

    .content {
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        color: white;
    }

    a {
        border: solid 2px white;
        padding: 0.3em;
        color: white;
    }

}