﻿@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(/fonts/Raleway-Light.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(/fonts/Raleway-Regular.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --pink: #d7b1ad;
    --gold: #bd8901;
    --grey: #666;
}

html {
    font-size: 62.5%;
    height: 100%;
}

body {
    font-family: Raleway, sans-serif;
    font-size: 1.8rem;
    line-height: 2.4rem;
    color: var(--grey);
    height: 100%;
    display: flex;
    flex-flow: column;
    -webkit-backface-visibility: visible !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 10rem;
    background-color: var(--pink);
    animation: bodyColor 1s linear forwards;
    animation-delay: 1s;
}

    body.menu-open {
        overflow: hidden;
    }

@keyframes bodyColor {
    from {
        background-color: var(--pink);
    }

    to {
        background-color: #fff;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    line-height: 110%;
}

h1 {
    font-size: 6rem;
    color: var(--pink);
    margin-bottom: 3rem;
}

h2 {
    font-size: 5rem;
    margin-bottom: 3rem;
}

@media(max-width: 991px) {
    h2 {
        font-size: 4rem;
        margin-bottom: 2rem;
    }
}

h3 {
    font-size: 3rem;
}

body.tekst h3 {
    margin-bottom: 2rem;
}

p {
    margin-bottom: 1.5rem;
}

.richtext p,
.richtext li {
    text-wrap: balance;
}

body.tekst p {
    margin-bottom: 2rem;
}

.introtext {
    font-size: 2.4rem;
    line-height: 3.2rem;
    font-weight: 300;
}

.gold {
    color: var(--gold);
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: all .3s linear;
}

    a:hover {
        color: #966d00;
        text-decoration: none;
    }

p a {
    border-bottom: .1rem solid transparent;
}

    p a:hover {
        border-bottom-color: #966d00;
    }

.navbar {
    height: 10rem;
    background-color: rgba(255,255,255,.9);
    -webkit-transition: background-color .5s cubic-bezier(.28,.11,.32,1);
    transition: background-color .5s cubic-bezier(.28,.11,.32,1);
    -webkit-transition-property: background-color,-webkit-backdrop-filter;
    transition-property: background-color,-webkit-backdrop-filter;
    transition-property: background-color,backdrop-filter;
    transition-property: background-color,backdrop-filter,-webkit-backdrop-filter;
    backdrop-filter: saturate(180%) blur(10px);
    background-color: rgba(255,255,255,.8);
    opacity: 0;
    animation: fadeIn .5s ease-in-out forwards;
    animation-delay: .5s;
}

.navbar-logo {
    background-color: var(--pink);
    border-radius: 50%;
    width: 7.5rem;
    height: 7.5rem;
    transform: scale(50);
    transform-origin: center center;
    animation: loadPage 1.5s ease-in-out forwards;
    animation-delay: 1.5s;
}

@keyframes loadPage {
    from {
        transform: scale(50);
    }

    to {
        transform: scale(1);
    }
}

.navbar-logo img {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
    animation-delay: 3s;
}

.navbar-brand {
    font-size: 2rem;
    color: var(--gold) !important;
    margin-left: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
    animation-delay: 3s;
}

.navbar h1 {
    font-size: 2rem;
    margin-bottom: 0;
}

@media(max-width: 991px) {
    .navbar-brand {
        font-size: 1.4rem;
        margin-left: 1.5rem;
        margin-right: auto;
    }

    .navbar h1 {
        font-size: 1.4rem;
        margin-right: auto;
    }
}

@media(max-width: 374px) {
    .navbar-brand {
        font-size: 1.2rem;
    }

    .navbar h1 {
        font-size: 1.2rem;
    }
}

.navbar-toggler {
    display: none !important;
}

.navbar-nav {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
    animation-delay: 3.5s;
}

    .navbar-nav .nav-link {
        color: var(--grey);
        opacity: .75;
        font-size: 1.8rem;
        padding: 0 1rem !important;
    }

    .navbar-nav .active .nav-link {
        color: #000;
        opacity: 1;
    }

    .navbar-nav .nav-item:last-of-type .nav-link {
        padding-right: 0 !important;
    }

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

section {
    opacity: 0;
    animation: fadeIn 1s linear forwards;
    animation-delay: 1s;
}

.section-padding {
    padding: 8rem 0;
}

@media(max-width: 991px) {
    .section-padding {
        padding: 6rem 0;
    }
}

.intro {
    min-width: 100%;
    height: 80vh;
    min-height: 65rem;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}

    .intro .gallery {
        display: flex;
        max-width: 100%;
        justify-content: center;
        align-items: center;
        align-content: center;
    }

        .intro .gallery img {
            width: calc(25% - 6px);
            margin-right: 8px;
            opacity: 0;
            animation: fadeIn .5s ease-in-out forwards;
            animation-delay: 3s;
        }

            .intro .gallery img:nth-child(2) {
                animation-delay: 3.25s;
            }

            .intro .gallery img:nth-child(3) {
                animation-delay: 3.5s;
            }

            .intro .gallery img:nth-child(4) {
                animation-delay: 3.75s;
                margin-right: 0;
            }

    .intro p {
        font-size: 2.4rem;
        margin-top: 5rem;
        margin-bottom: 0;
    }

        .intro p strong {
            display: inline-block;
            margin-top: 10px;
            font-size: 2rem;
            font-weight: 300;
            color: var(--gold);
        }

    .intro .down {
        width: 5rem;
        height: 5rem;
        min-height: 5rem;
        border-radius: 50%;
        background-color: #fff;
        border: .2rem solid var(--gold);
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        margin-top: 5rem;
        animation: bounce 1s ease-in-out infinite;
        transition: all .3s linear;
    }

        .intro .down:hover {
            background-color: var(--gold);
        }

        .intro .down svg {
            width: 3rem;
            height: auto;
            opacity: .75;
        }

            .intro .down svg path {
                fill: var(--gold);
                transition: all .3s linear;
            }

        .intro .down:hover svg path {
            fill: #fff;
        }

@media(max-width: 991px) {
    .intro {
        height: auto;
        min-height: unset;
        padding-top: 0;
    }

        .intro .gallery {
            flex-wrap: wrap;
        }

            .intro .gallery img {
                width: calc(50% - 3px);
                margin: 0 6px 6px 0;
            }

                .intro .gallery img:nth-child(2),
                .intro .gallery img:nth-child(4) {
                    margin-right: 0;
                }

                .intro .gallery img:nth-child(3),
                .intro .gallery img:nth-child(4) {
                    margin-bottom: 0;
                }

        .intro p {
            font-size: 2rem;
            margin-top: 3rem;
            margin-bottom: 0;
        }

        .intro .down {
            margin-top: 3rem;
        }
}

@keyframes bounce {
    0% {
        transform: translateY(-.3rem);
    }

    50% {
        transform: translateY(.3rem);
    }

    100% {
        transform: translateY(-.3rem);
    }
}

.why {
    background-color: var(--pink);
    color: #fff;
}

.why__items div:nth-child(odd) {
    padding-top: 10rem;
}

.why__items div:nth-child(even) {
    padding-top: 5rem;
}

.why__items h3 {
    position: relative;
}

.why__items .why__plus {
    border: .1rem solid var(--gold);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    position: absolute;
    left: -3.2rem;
    top: .5rem;
}

    .why__items .why__plus:before {
        content: "";
        width: .1rem;
        height: 1.7rem;
        position: absolute;
        top: .3rem;
        left: calc(50% - .1rem);
        background-color: var(--gold);
    }

    .why__items .why__plus:after {
        content: "";
        width: 1.7rem;
        height: .1rem;
        position: absolute;
        top: calc(50% - .1rem);
        left: .3rem;
        background-color: var(--gold);
    }

.why__items p {
    font-size: 1.6rem;
    line-height: 2.2rem;
}

.about-image {
    position: relative;
}

    .about-image:before {
        content: "";
        width: 100%;
        height: 100%;
        background-color: var(--pink);
        opacity: .3;
        position: absolute;
        z-index: -1;
        transform: translate(5rem, -5rem);
    }

@media(max-width: 991px) {
    .why {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .why__items {
        padding-left: 3rem;
    }

        .why__items div:nth-child(odd),
        .why__items div:nth-child(even) {
            padding-top: 3rem;
        }
}

.about h2 {
    color: var(--gold);
}

@media(min-width: 992px) {
    .about .row > div:first-of-type {
        padding-right: 8rem;
    }

    .about .row > div:last-of-type {
        padding-left: 8rem;
    }
}

@media(max-width: 991px) {
    .about {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-bottom: 0;
    }

    .about-image {
        width: calc(100% - 2rem) !important;
        max-width: calc(100% - 2rem) !important;
        margin-top: 6rem;
    }

        .about-image:before {
            transform: translate(2rem, -2rem);
        }
}


.services {
    background-color: rgba(189, 137, 1, .25);
}

.services__text {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--gold);
    max-width: 36rem;
}

    .services__text a {
        color: #966d00;
        border-bottom: .1rem solid #966d00;
    }

        .services__text a:hover {
            color: var(--gold);
            border-bottom: .1rem solid var(--gold);
        }

.honeycomb {
    display: flex;
    min-height: 50rem;
    margin-top: 13rem;
}

.honeycomb__item {
    min-width: 24rem;
    max-width: 24rem;
    min-height: 24rem;
    max-height: 24rem;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    font-size: 3rem;
    color: var(--gold);
    text-align: center;
    margin: 0 1rem 1rem 0;
    cursor: pointer;
}

    .honeycomb__item:nth-child(2) {
        transform: translate(-2rem, calc(-50% - 1rem));
    }

    .honeycomb__item:nth-child(3) {
        transform: translate(-4rem, 0);
    }

    .honeycomb__item:nth-child(4) {
        transform: translate(calc(-200% - 4rem), calc(50% + 1rem));
    }

    .honeycomb__item:nth-child(5) {
        transform: translate(calc(-200% - 6rem), calc(100% + 2rem));
    }

.honeycomb__circle {
    width: 100%;
    height: 100%;
    border: .2rem solid var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 2rem;
    animation: glow 5s ease-in-out infinite;
    animation-delay: .5s;
}

.honeycomb__item:nth-child(2) .honeycomb__circle {
    animation-delay: 2s;
    animation-duration: 6s;
}

.honeycomb__item:nth-child(3) .honeycomb__circle {
    animation-delay: 4s;
    animation-duration: 4s;
}

.honeycomb__item:nth-child(4) .honeycomb__circle {
    animation-delay: 7s;
    animation-duration: 8s;
}

.honeycomb__item:nth-child(5) .honeycomb__circle {
    animation-delay: 8s;
    animation-duration: 5s;
}

@media(max-width: 1199px) {
    .honeycomb__item {
        min-width: 20rem;
        max-width: 20rem;
        min-height: 20rem;
        max-height: 20rem;
        font-size: 1.8rem;
    }
}

@media(max-width: 991px) {
    .services {
        padding-top: 0;
    }

        .services .row > div {
            display: flex;
            flex-flow: column;
        }

    .services__text {
        position: relative;
        top: auto;
        right: auto;
        text-align: left;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        order: 1;
    }

        .services__text p:last-of-type {
            margin-bottom: 0;
        }

    .honeycomb {
        min-height: 30rem;
        order: 0;
    }

    .honeycomb__item {
        min-width: 12rem;
        max-width: 12rem;
        min-height: 12rem;
        max-height: 12rem;
        font-size: 1.4rem;
    }

    .honeycomb__circle {
        border-width: .1rem;
    }
}

@media(max-width: 374px) {
    .honeycomb__item {
        min-width: 10rem;
        max-width: 10rem;
        min-height: 10rem;
        max-height: 10rem;
        font-size: 1.2rem;
        line-height: 1.2rem;
    }
}

@keyframes glow {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    57% {
        transform: scale(.98);
    }

    60% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

.illustration {
    height: 56.25vw;
    max-height: 75vh;
    background-attachment: fixed;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.subscriptions {
    background-color: rgba(215, 177, 173, 0.25);
}

    .subscriptions h2 {
        color: var(--pink);
    }

.subscription {
    background-color: var(--pink);
    padding: 20rem 2rem 2rem;
    color: #fff;
    position: relative;
    margin-top: 7.5rem;
    height: calc(100% - 7.5rem);
}

    .subscription h3 {
        width: 25rem;
        height: 25rem;
        border: .2rem solid #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        text-align: center;
        position: absolute;
        top: -7.5rem;
        left: calc(50% - 12.5rem);
    }

    .subscription p:last-of-type {
        margin-bottom: 0;
    }

    .subscription em {
        display: inline-block;
        font-size: 1.4rem;
        line-height: 1.8rem;
    }

.subscriptions ul {
    list-style: circle;
    padding-left: 2rem;
}

@media(max-width: 991px) {
    .subscriptions {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .subscription__wrapper {
        padding-top: 3rem;
    }
}

.contact {
    padding-bottom: 12rem;
}

.contact-image {
    position: relative;
}

    .contact-image:before {
        content: "";
        width: 100%;
        height: 100%;
        background-color: var(--gold);
        opacity: .3;
        position: absolute;
        z-index: -1;
        transform: translate(-5rem, 5rem);
    }

.contact h2 {
    color: var(--gold);
}

@media(min-width: 992px) {
    .contact .row > div:first-of-type {
        padding-right: 8rem;
    }

    .contact .row > div:last-of-type {
        padding-left: 8rem;
        display: flex;
        flex-flow: column;
        justify-content: center;
    }
}

.contact p strong {
    display: inline-flex;
    min-width: 1.5rem;
}

@media(max-width: 991px) {
    .contact {
        padding-top: 0;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .contact-image {
        width: calc(100% - 2rem) !important;
        max-width: calc(100% - 2rem) !important;
        margin-top: 6rem;
        margin-bottom: 6rem;
    }

        .contact-image:before {
            transform: translate(2rem, -2rem);
        }

    .contact p:last-child {
        margin-bottom: 0;
    }
}


.logos {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    margin: auto;
    max-width: 100vw;
    background-color: rgba(189, 137, 1, .15);
    --size: clamp(10rem, 1rem + 40vmin, 30rem);
    --gap: calc(var(--size) / 14);
    --duration: 30s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap));
}

    .logos h2 {
        color: var(--gold);
    }

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    mask-image: linear-gradient( var(--mask-direction, to right), hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 20%, hsl(0 0% 0% / 1) 80%, hsl(0 0% 0% / 0) );
}

.marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll-x var(--duration) linear infinite;
}

.marquee--reverse .marquee__group {
    animation-direction: reverse;
    animation-delay: -3s;
}


@media (prefers-reduced-motion: reduce) {
    .marquee__group {
        animation-play-state: paused;
    }
}

@keyframes scroll-x {
    from {
        transform: translateX(var(--scroll-start));
    }

    to {
        transform: translateX(var(--scroll-end));
    }
}

.marquee .marquee__group > div {
    display: grid;
    place-items: center;
    width: var(--size);
    background: rgba(255, 255, 255, .5);
    aspect-ratio: 16/9;
    padding: calc(var(--size) / 10);
    border-radius: 1rem;
}

.marquee .marquee__group svg,
.marquee .marquee__group img {
    height: 100%;
    width: auto;
    max-height: calc((var(--size) * (9/16)) - (calc(var(--size) / 10 * 2)));
    max-width: calc(var(--size) - calc(var(--size) / 10 * 2));
}


.testimonials {
    background-color: rgba(102, 102, 102, .05);
    color: var(--gold);
}

    .testimonials h2 {
        color: var(--grey);
        margin-bottom: 6rem;
    }

.testimonials__items {
    display: flex;
    flex-flow: column;
}

.testimonials__item {
    max-width: 80rem;
}

    .testimonials__item:not(:last-of-type) {
        margin-bottom: 4.5rem;
    }

    .testimonials__item:nth-child(odd) {
        margin-right: auto;
    }

    .testimonials__item:nth-child(even) {
        margin-left: auto;
    }

.testimonials h3 {
    color: #000;
}

.testimonials__item hr {
    color: rgba(102,102,102,.5);
}

.testimonials p {
    color: var(--grey);
}

.testimonials__item strong {
    color: rgba(102,102,102,.5);
    font-weight: 300;
}

@media(max-width: 991px) {
    .testimonials__item {
        max-width: unset;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

.content {
    min-height: calc(100vh - 17.6rem);
}

footer {
    background-color: var(--pink);
    padding: 3rem 0;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
}

    footer span {
        display: inline-block;
        margin: 0 1rem;
    }

    footer a {
        color: rgba(255,255,255,.75);
    }

        footer a:hover {
            color: #fff;
        }

        footer a:hover {
            border: none;
        }

    footer .row > div {
        display: flex;
    }

.cookies-wrapper {
    display: none;
    position: relative;
    z-index: 3000;
}

.cookies {
    background-color: #eee1c0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 0;
}

    .cookies .container > .row > div {
        display: flex;
    }

.cookies__text {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

    .cookies__text p {
        margin-bottom: 0;
        font-size: 1.4rem;
    }

.cookies__buttons {
    display: flex;
    align-items: center;
    margin-left: 3rem;
}

.cookies .button {
    background-color: var(--gold);
    color: #fff;
    padding: .5rem 1rem;
    border-radius: .5rem;
}

@media(max-width: 991px) {
    .cookies .container > .row > div {
        flex-flow: column;
    }

    .cookies__text p {
        font-size: 1.3rem;
        line-height: 2rem;
    }

    .cookies__buttons {
        margin-top: 1.5rem;
        margin-left: 0;
    }
}
