/* classic-menu */
header .classic-menu{
    position: sticky;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    height: 100px;
    z-index: 2;
}

header .classic-menu article {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    height: 100%;
}

header .classic-menu article img {
    max-height: 45%;
}

header .classic-menu article p {
    font-family: 'glober-bold';
    text-transform: capitalize;
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
}

header .classic-menu nav ul {
    display: flex;
    gap: 1rem;
}

header .classic-menu nav ul li .default {
    font-family: 'glober-bold';
    text-transform: capitalize;
    text-decoration: none;
    font-size: 1.25rem;
    color: #fff;
    transition: 0.3s ease;
}

/* hover-effects */
header .classic-menu nav ul li .default:hover {
    text-decoration: underline;
    transition: 0.3s ease;
    padding: 0 0.75rem;
}

/* de contact knop speciaal maken */

header .classic-menu nav ul li .contact-nav {
    font-family: 'glober-bold';
    text-transform: capitalize;
    text-decoration: none;
    font-size: 1.25rem;
    color: #fff;
    border: 3px solid #2167d0;
    background-color: #2167d0;
    padding: 0.5rem 1.125rem;
    border-radius: 16px;
    transition: 0.3s ease;
}

header .classic-menu nav ul li .contact-nav:hover {
    border: 3px solid #fff;
    transition: 0.3s ease;
}

/* mobile-menu */
header .mobile-menu nav,
header .classic-menu .toggle {
    color: #fff;
    display: none;
}

header .mobile-menu {
    position: relative;
    display: flex;  
    justify-content: center;
    background: #6bb5d0;
    height: calc(100vh - 100px);
    transition: 0.7s ease;
    z-index: 1;
}

header .closed {
    margin-top: -200%;
    transition: 0.7s ease;
    display: none;
}

header .mobile-menu nav ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
}

header .mobile-menu nav ul li {
    padding: 2rem 0;
}

header .mobile-menu nav ul li a {
    font-family: 'glober-bold';
    text-decoration: none;
    font-size: 2rem;
    color: #fff;
}

/* hover-effects */
header .mobile-menu nav ul li a:hover {
    text-decoration: underline;
}

header .copyright {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    bottom: 0;
    width: 100%;
    padding-bottom: 48px;
}


header .copyright .logo {
    font-size: 2rem;
    font-weight: 800;
}

header .copyright .text {
    font-family: 'glober-bold';
    text-transform: capitalize;
    color: #1d1d1d;
}

.dropbtn {
    background: #6bb5d0;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    font-family: 'glober-bold';
}

.dropdown-content a {
    display: flex;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-content a:hover {
    background-color: #f1f1f1
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* navigatie responsive maken */

@media screen and (max-width:800px) {
    header .classic-menu nav {
        display: none;
    }

    header .classic-menu .toggle {
        display: block;
    }
}

@media screen and (min-width:800px) {
    header .classic-menu .toggle {  
        display: none;
    }
}


