/* Style colors */
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Funnel+Display:wght@300..800&family=Funnel+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    --blue: #004FFF;
    --lightBlue: #E6EDFF;
    --black: #323232;
    --white: #FBFBFB;
    --gray: #CCCCCC;
    --darkGray: #464646;
}

/* Lettertype */


/* standard settings */
html {
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    background-image: url(../media/background.svg);
    background-color: var(--white);
    font-family: "Funnel Sans", sans-serif;
    overflow-x: hidden;
    color: var(--black);
}

.overflow {
    overflow-x: hidden !important;
    -webkit-overflow-x: hidden !important;
}

/* navbar */
header.mobile {
    display: none;
    padding: 10px 10px 10px 10px;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;

}

.navbar {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    top: 20px;
    z-index: 11 !important;

    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 36px 18px rgba(255, 255, 255, 1.8);
    padding: 10px 10px 10px 20px;
}

header.mobile p {
    font-size: 12px;
    text-align: center;
}


.navbar .logo img {
    max-width: 40px;
}

.navbar .item {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 400;
    font-family: "Funnel Display", sans-serif;
}

.navbar .item:hover {
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 36px 18px rgba(255, 255, 255, 1.8);
}

/* footer */
.MobileFooter {
    display: none;
}

footer {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    justify-items: center;
    margin-bottom: 20px;
    max-width: 90vw;
}

footer .content {
    display: flex;
    justify-content: space-between;
    background-color: var(--blue);
    border-radius: 50px;
    padding: 40px;

}

footer .block-container {
    display: flex;
    align-items: top;
    gap: 1%;
    max-width: 50%;
}

footer .content .block {
    width: 100%;
}

footer .content p {
    color: var(--white) !important;
    font-size: 24px;
    margin-bottom: 10px;
}

footer .content a {
    color: var(--white) !important;
    font-size: 16px;
    font-weight: 100;
    font-family: 'Halcom', sans-serif;
}

.tekstContainer {
    max-width: 80vw;
}

/* Reusable */
section {
    padding: 100px 0;
    display: grid;
    justify-content: center;
    align-items: center;
    z-index: 0 !important;
}

p,
a,
b {
    font-size: 20px;
    text-decoration: none;
    color: var(--black);
    font-family: "Funnel Sans", sans-serif;
    margin: 0;
}

h1 {
    font-size: 64px;
    font-weight: 400;
    margin: 0;
    font-family: "Funnel Display", sans-serif;
}

h2 {
    font-family: "Funnel Display", sans-serif;
    font-size: 48px;
    font-weight: 400;
    margin: 0;
}


/* sections */
.row {
    display: flex;
}

.single-row {
    display: grid;
    width: 90vw;
}

.double-row {
    display: grid;
    grid-template-columns: 48% 48%;
    gap: 4%;

    width: 90vw;
}

.triple-row {
    display: grid;
    grid-template-columns: 30.6% 30.6% 30.6%;
    gap: 4%;
    width: 90vw;
}

.four-row {
    display: grid;
    grid-template-columns: 22% 22% 22% 22%;
    gap: 4%;
    width: 90vw;
}

.seventy-twenty-row {
    display: grid;
    grid-template-columns: 73% 23%;
    gap: 4%;
    width: 90vw;
}

.twenty-seventy-row {
    display: grid;
    grid-template-columns: 23% 73%;
    gap: 4%;
    width: 90vw;
}

.two-one-one-row {
    display: grid;
    grid-template-columns: 48.6% 23.6% 23.6%;
    gap: 4%;
    width: 90vw;
}

.fourty-sixty-row {
    display: grid;
    grid-template-columns: 38% 58%;
    gap: 4%;
    width: 90vw;
}

.hero-row {
    display: grid;
    grid-template-columns: 38% 58%;
    gap: 4%;
    width: 95vw;
}

@media screen and (max-width: 1280px) {
    .DesktopFooter {
        display: none !important;
    }

    .MobileFooter {
        display: block;
        margin-bottom: 100px;
    }

    .MobileFooter .content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .MobileFooter .block-container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        max-width: 100%;
    }

    .hero-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    #overMij p {
        max-width: 100% !important;
    }

    #overMij img {
        max-width: 70% !important;
    }

    .double-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .triple-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .four-row {
        display: grid;
        grid-template-columns: 48% 48%;
        justify-content: center;
        gap: 4%;
    }

    .seventy-twenty-row {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
    }

    .twenty-seventy-row {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
    }

    .fourty-sixty-row {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
    }

    .two-one-one-row {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        justify-content: space-around;
    }

    .header {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .home h1 {
        font-size: 50px !important;
    }

    .navbar .item {
        width: 100%;
    }

    .project {
        margin-top: 0px !important;
    }

    #mijnTrots .project .content {
        padding: 5px 10px !important;
    }

    .project .arrow-btn {
        max-width: 40px;
        margin-top: 10px;
        margin-left: 10px;
    }

    .tekstContainer {
        max-width: 90vw;
    }

    .title {
        flex-direction: column;
        align-items: flex-start !important;
    }

    section {
        padding: 50px 0;
    }

    h2 {
        font-size: 20px !important;
    }

    .row {
        gap: 10px !important;
    }

    .home {
        top: 0 !important;
    }

    header.desktop {
        display: none;
    }

    header.mobile {
        display: flex;
    }

    header.mobile .item {
        padding: 5px 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }


    header.mobile .item img {
        max-width: 20px;
    }

    header.mobile .navbar {
        width: 90vw;
        position: fixed;
        bottom: 10px;
        top: auto;
        padding: 10px;
        gap: 10px;
    }

    #overMij img {
        max-width: 100% !important;
    }

    .trots {
        margin-top: 0px !important;
    }

    .four-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 40px;
    }
}

@media screen and (max-width: 980px) {
    .details {
        flex-direction: column;
        gap: 20px;
        padding: 20px 20px !important;
    }

    #contact .video video {
        max-width: 80% !important;
    }

    .project .content {
        padding: 5px !important;
    }

    #mijnTrots .project .content .arrow-btn {
        max-width: 50px !important;
    }

    #mijnTrots .row {
        align-items: center;
    }

    #mijnTrots .project .content .projectHeader img {
        max-width: 40px !important;
    }

    .home h1 {
        font-size: 64px;
    }

    h1 {
        font-size: 45px;
    }

    h2 {
        font-size: 32px;
    }

    .MobileFooter .block-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
        max-width: 90vw;
    }

    .gl-row-switch {
        display: flex;
    }

    .gl-row-switch div:first-child {
        order: 2;
        margin-bottom: 0px !important;
    }

    .gl-row-switch div:last-child {
        order: 1;
        /* margin-bottom: 30px !important; */
    }
}