/* fallback */
@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 100 700;
    src: url(https://fonts.gstatic.com/s/materialsymbolsoutlined/v212/kJEhBvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oFsI.woff2) format('woff2');
  }
  
  .material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 89px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 5px 43px;
}

.logo img{
    height: 60px;
    width: 60px;
    margin-left: 10px;
    border-radius: 50%;
    margin-right: 10px;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 30px;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: white;
    padding: 10px 40px;
    text-decoration: none;
    display: block;
}

.nav-links a:hover {
    background-color: #555;
    border-radius: 10px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu li {
    width: 175px;
}

.dropdown-menu a {
    padding: 10px 15px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a:hover {
    background-color: #555;
}


body, html {
    /* margin: 0;
    padding: 0; */
    font-family: Arial, sans-serif;
    height: 100%;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 10px 0;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 55px;
    margin-right: 10px;
    border-radius: 50%;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav ul {
    list-style-type: none;
    display: flex;
    margin-left: 370px;
    padding: 0;
}
nav ul li {
    margin-left: 20px;
}
nav ul li a {
    text-decoration: none;
    color: #333;
}
.login-btn {
    background-color: #0056b3;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}
main {
    text-align: center;
    padding: 100px 0;
}
h1 {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
}
p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}
.cta-btn {
    background-color: #0056b3;
    color: white;
    padding: 15px 50px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
}
.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f1f1f1;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}



.containers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 50px auto;
}

.card {
    background-color: white;
    border-radius: 10px;
    width: 300px;
    padding: 20px;
    margin: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-10px);
}

.icon img {
    width: 50px;
    height: 50px;
    font-size: 89px;
}

h3 {
    font-size: 1.5em;
    margin: 20px 0 10px;
}

p {
    color: #555;
    font-size: 1em;
    line-height: 1.5;
}


/* .footer {
    background-color: white;
    padding: 40px 20px;
    margin: 0px 0px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
} */
.footer-column {
    flex: 1;
    min-width: 210px;
    margin-bottom: 20px;
    margin-left: 40px;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.logo img {
    vertical-align: middle;
    width: 55px;
    margin-right: 5px;
}
.tagline {
    color: #666;
    margin-bottom: 10px;
}
.blue-text {
    color: #0056b3;
    font-weight: bold;
}
h3 {
    margin-top: 0;
    color: #333;
}
.demo-text {
    color: #666;
    margin-bottom: 15px;
}
.btn {
    display: inline-block;
    background-color: #0056b3;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}
.footer-links {
    list-style-type: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #666;
    text-decoration: none;
}

.social-icons {
    text-align: right;
}
.social-icons a {
    margin-left: 10px;
    color: #999;
    text-decoration: none;
}
.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}
.cookie-notice button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    margin-left: 10px;
}

.text-footer{
    text-align: center;
    padding: 19px 0px;
    font-family: "Ubuntu", sans-serif;
    display: flex;
    justify-content: center;
    color: white;
}

.bg-footer{
    background: rgba(0, 0, 0, 0.7) url('edubg1.jpg');
    background-size: cover;
    background-blend-mode: darken;
    height: 57;
}

.footer-content{
    display: flex;
}