html {
    font-family: "Catamaran"
}

.brand-logo {
    width: auto;
}

p,
ul,
li {
    font-size: 1.2rem;
    font-weight: 300;
    font-family: "Catamaran Light";
}

.area-header {
    background-color: var(--color-light);
    color: var(--color-text);

    a {
        color: var(--color-primary);

        &:hover {
            color: var(--color-secondary);
        }
    }

    font-size: 1.5rem;

    .nav {
        display: flex;
        gap: 1rem;
        font-size: 1.5rem;
        letter-spacing: .001rem;

        a {
            text-decoration: none;
        }
    }
}

.area-topbar {
    margin-top: -1rem;

    * {
        font-size: 1rem !important;
    }
}

.area-component {
    position: relative;

}

@media

.services .area-component {
    background-position-y: -1rem;
}

.hepta-background {
    display: none;
}

.onoffcanvas-drawer.is-open {
    background-color: rgba(255, 255, 255, 1);
}


h1,
h2,
h3,
.h1,
.h2,
.h3 {
    font-weight: 800;
    color: var(--color-text);
}

h1,
.h1 {
    font-size: 2.5rem;

}

h2,
.h2 {
    font-size: 2rem;
}

h3,
.h3 {
    font-size: 1.5rem;
    margin-bottom: 0rem;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 400;
}

h1,
.h1 {
    font-size: 3rem;
}

.hp-grid.grid__services {
    text-align: center;
}

.hp-page .page-header {
    text-align: center;
}

.section-title {
    justify-content: flex-start;
}

.hero-background {
    .h2 {
        color: white;
    }
}

.hero-background.hero-background__eggs {
    background-image: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)), url("/images/web/hero.png");
    background-size: 80vw;
    height: 80vh;
}

.button {
    border: 0;
    border-radius: var(--border-radius);
    padding: 1rem 2rem;
}

.button__cta {
    background-color: var(--color-cta-background);
    color: var(--color-cta-text);
    font-weight: 700;
}

.text-yolk {
    color: var(--color-accent);
}

.contact-icons {
    > * {
        margin-left: 0rem;
    }
    dt{
        display: flex;
        justify-items: center;
        align-items: center;
        gap: .5rem;
    }
    dt:before {
        display: inline-block;
        content: ' ';
        fill: currentColor;
        background-color: var(--color-text);
        mask-repeat: no-repeat;
        mask-size: cover;        
        width: 2rem;
        height: 2rem;
    }
    dt.phone:before{     
            mask-image: url('../images/phone.svg');
    }
    dt.email:before{       
            mask-image: url('../images/email.svg');
    }
    dd{
        margin-left: 2.5rem;
        margin-bottom: 1rem;
    }
}