@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,700&family=Montserrat:wght@400;500;700&family=Outfit:wght@300;400;600&family=Red+Hat+Display:ital,wght@1,300;1,600&display=swap');

* {
    box-sizing: border-box;
    font-size: 16px;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

body{
    background: linear-gradient(#fff, #e2e2e2);
}

.banner {
    background-image: url('./images/learning_stock.jpg');
    width: 100%;
    height: 75vh;
    background-size: cover;
    background-blend-mode: multiply;
    background-color: rgb(60, 60, 60);
}

.navbar{
    width: 85%;
    margin: auto;
    margin-top: -20px;
    padding: 35px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#logos {
    height: 100px;
    margin: 0;
    padding: 0%;
    transition: 0.5s;
}

#logos:hover{
    height: 103px;
}

.logo{
    font-size: x-large;
    cursor: pointer;
    color: white;
    font-weight: bolder;
    font-family:'Courier New', Courier, monospace
}

.logo:hover {
    font-size: 1.6rem;
    color: #009688;
    transition: 0.5s;
}

.navbar ul li {
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;

}
.navbar ul li a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
}
.navbar ul li::after {
    content: '';
    height: 3px;
    width: 0%;
    background: #009688;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.5s;
}
.navbar ul li:hover::after {
    width: 100%;
}


.hero {
    margin-top: -100px;
    
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff

    
}

.hero h1{
    font-size: 50px;
    margin-top: 80px;
}

.hero p{
    margin: 15px;

}

.informatie { 
    width: 90%;
    margin: 120px auto;

}

.informatie h2, .extra-info h2 {
    margin: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
}




.blocks {
    display: flex;
    justify-content: center;
}

.container {
    width: 300px;
    background: #fff;
    color: #333;
    border-radius: 10px;
    margin: 20px 35px;
    font-family: 'Red Hat Display', sans-serif;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition: 0.5s;
}

.container:hover {
    box-shadow: rgba(119, 125, 132, 0.2) 5px 10px 24px;
}

.container img {
    max-width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-bottom: 0px;
}

.content {
    padding: 15px;
    text-align: center;
}

.content h2 {
    font-size: 25px;
    color: #263961;
}

.content p {
    font-size: 16px;
    color: #5a5a5a;
}

.extra-info{
    line-height: 1.5;
    font-size: 16px;
    width: 60%;
    margin: 20px auto;
    margin-bottom: 0;
}

footer {
    display: flex;
    background-color: #333;
    color: #fff;
    font-weight: bolder;
    line-height: 1.5;
    justify-content: space-between;
    padding: 25px;

}

.footer-text {
    margin: 10px 45px;
}


.contact-vraag{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 25px auto;
    max-width: 650px;
    height: 400px;
    background: url('/images/leren_contact.jpg');
    background-position: center;
    background-blend-mode: multiply;
    background-color: rgb(50, 48, 48);
    background-size: cover;
    border-radius: 10px;

}

.contact-titel{
    color: #fff;
    font-size: 30px;
    margin-bottom: 25px; 
}

.contact-vraag button {
    width: 200px;
    padding: 15px 0;
    text-align: center;
    margin: 20px 10px;
    border-radius: 25px;
    font-weight: bold;
    border:#009688 solid 2px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    box-shadow: inset 0 0 0 0 #009688;
    transition: ease-out 0.5s;
    outline: none;
}

.contact-vraag button:hover{
    box-shadow: inset 200px 0 0 0 #009688;
}

.onder {
    background: #333;
}

#footer-logo {
    padding: 0;
    margin: 0px 0px 0px 15px;
    height: 100px;
}

.logo-socials {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

/* .social-icon {
    height: 60px;
    padding: 10px;
    border: #fff solid 2px;
    border-radius: 30%;
    margin: 20px;
    transition: 0.5s;
}  */

.wrapper {
    display: flex;
}

.wrapper .icon {
    margin: 20px;
}

.wrapper .icon span{
    height: 60px;
    width: 60px;
    display: block;
    background: #ffffff;
    text-align: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
}

.wrapper .icon span img{
    height: 25px;
    line-height: 60px;
    margin-top: 18px;
}

.wrapper .icon .facebook:hover{
    background: #4364ab;
}

.wrapper .icon .instagram:hover{
    background: #ed2d83;
}

.wrapper .icon .linked-in:hover{
    background: #0d78e3;
}

@media screen and (max-width:600px) {
    .hero {
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .hero h1 {
        font-size: 28px;
        margin-top: 0px;
        margin-left: 14px;

    }

    .hero p {
        font-size: 14px;
    }

    .informatie h2, .extra-info h2 {
        margin: 10px;
        font-size: 25px;
    }

    .blocks {
        flex-direction: column;
        margin-left: -25px;
    }

    .extra-info {
        width: 90%;
    }

    .extra-info h2 {
        margin-left: 0px;
    }

    .logo-socials {
        flex-direction: column;
    }
}

.hamburger {
    display: none;
    font-size: 30px;
}

.cross {
    display: none;
    font-size: 30px;
}

.mobile-menu {
    display: none;
}

/* CSS for the responsive navbar */
@media screen and (max-width: 600px) {
    .ul {
      display: none; /* Hide the desktop navigation links */
    }
  
    .hamburger {
      display: block; /* Display the hamburger icon */
      font-size: 30px;
      cursor: pointer;
      color: white;
    }
  
    .cross {
      display: block; /* Initially hide the "X" icon */
      font-size: 30px;
      cursor: pointer;
      color: white;
    }
  
    .mobile-menu {
      display: none; /* Initially hide the mobile menu */
      flex-direction: column;
      justify-content: baseline;
      inset: 0 0 0 30%;
      height: 100vh;
      position: fixed;
      /* top: 60px;
      right: 20px; */
      background-color: #292929;
      padding: 0px;
      border-radius: 5px;
      z-index: 10;
    }

    .mobile-m-top{
        height: 50px;
        background-color: #333;
        display: flex;
        justify-content: space-between;
        padding: 10px;
    }

    .mobile-m-top img{
        max-height: 30px;
    }

    .mobile-menu ul {
        margin: 10px;
    }
  
    .mobile-menu a {
      color: #5fc6bb;
      text-decoration: none;
      margin: 5px 0;
    }

    .mobile-menu li {
        list-style: none;
        font-size: 22px;
        padding-bottom: 5px;
        border-bottom: 2px solid rgb(195, 255, 252);
        width: 120px;
        margin-top: 25px;
    }
  
    .navbar.active .ul {
      display: block; /* Show the mobile menu when the navbar has the 'active' class */
    }
  
    .navbar.active .hamburger {
      display: none; /* Hide the hamburger icon when the navbar has the 'active' class */
    }
  
    .navbar.active .cross {
      display: block; /* Show the "X" icon when the navbar has the 'active' class */
    }
  }