/* INT lettertype */
@font-face {
    font-family: "schoolboek";
    src: url("font/Schoolboek-Regular.eot");
    src: url("font/Schoolboek-Regular.eot?#iefix") format("embedded-opentype"),
        url("font/Schoolboek-Regular.woff") format("woff"),
        url("font/Schoolboek-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
}

:root {
    --primary-color: #359FF0;
    --text-color: #000;
    --background-color: #FFF;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-image: none;
    font-family: 'schoolboek', sans-serif;
    background-color: white;
    color: var(--text-color);
    line-height: 1.5;
}


h1 {
    font-family: 'schoolboek', Helvetica, sans-serif;
    font-weight: 500;
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.top-header {
    font-family: 'schoolboek', Helvetica, sans-serif;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #FFF;
    color: #000;
    height: 75px;
    padding: 0 1em;

}

.logos {
    display: flex;
    align-items: center;
}

.logo-links {
    width: auto;
    height: 60px;
    margin-right: 10px;

    img {
        width: auto;
        height: 100%;
        object-fit: cover;
        border-right: 1px dotted #000000;
    }
}

.logo-int {
    font-size: 0.8rem;
    display: block;
    font-weight: 500;
    margin: -10px;

    a {
        text-decoration: none;
        color: #000;

        img {
            height: 38px;
            width: auto;
            object-fit: cover
        }
    }
}

.logo-app h1 {
    margin: 0;
    font-size: 1.7rem;
}

.menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;

    >li {
        margin: 0 1rem;

        a:not(.btn) {
            text-decoration: none;
            /* font-size: 1.4rem; */
            color: var(--text-color);

            &:hover {
                text-decoration: underline;
            }
        }

        &.login span {
            padding: 10px;

            @media screen and (max-width: 768px) {
                display: none;
            }
        }
    }
}


a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;

    &:hover {
        text-decoration: underline;
    }
}

.btn {
    display: inline-block;
    padding: 0.5em 1em;
    background-color: #359FF0;
    color: #fff;
    text-decoration: none;
    border: none;

    &:hover {
        background-color: #2a8acb;
        cursor: pointer;
    }
}

.bottom-header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 0.5rem;
    box-shadow: 0px 4px 5px 1px #ccc;
    background: #359FF0;
}

#page {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 2rem;
    align-items: center;

    .container {
        width: 100%;
        max-width: 1200px;
    }

    footer {
        margin-top: auto;
        padding: 1em;
        color: #6b7280;
        text-align: center;
        border-top: #e5e7eb 1px solid;
    }

}

p {
    margin-bottom: 1rem;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    margin-top: 4rem;
    gap: 1rem;

    section {
        max-width: 300px;
    }

    .btn {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin: 0.5rem 0;
        font-size: 1.5rem;

        .icon-login-academic {
            background-color: #fff;
            mask: url('../images/welcome-learn-more.svg') no-repeat center;
            float: left;
            width: 6rem;
            height: 4rem;
            margin-right: 0.5rem;
        }

        &.secondary {
            background-color: #f3f4f6;
            color: #1f2937;

            &:hover {
                background-color: #e5e7eb;
            }
        }
    }
}

dialog {
    position: fixed;
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 700px;
    padding: .2rem;
    background-color: #fff;
    border: 1px solid #d3d3d3;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);

    &::backdrop {
        background-color: rgba(0, 0, 0, 0.2);
    }

    .dialog-header {
        padding: 0.5rem 1rem;
        font-size: 1.5rem;
        margin-bottom: 1rem;
        background-color: var(--primary-color);
        color: #fff;
    }

    .dialog-content {
        padding: 1rem;

        .logos {
            margin-bottom: 2rem;
        }
    }

    .dialog-footer {
        padding: 1rem;
        text-align: right;
        border-top: 1px solid #d3d3d3;
    }
}