@import url('https://fonts.googleapis.com/css2?family=Monda:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
    color: black;
}

html {
    scroll-behavior: smooth;
}

header {
    position: relative;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    padding: 0px 80px;
    background-color: white;
}

.logo-link {
    text-decoration: none;
    color: black;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
}

.logo-img-mobile {
    display: none;
    height: 60px;
}

.logo-text {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 18pt;
    font-weight: bold;
    font-style: italic;
    color: rgb(255, 255, 255);
    letter-spacing: 1px;
    text-shadow: -1px -1px 0 #002299, 1px -1px 0 #002299, -1px 2px 0 #002299, 2px 2px 0 #002299;
}

.hamburger-menu {
    display: none;
}

.menu-ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu-ul-item a {
    padding: 5px 10px;
    text-decoration: none;
    color: black;
    font-size: 13pt;
}

.header-mobile-menu {
    display: none;
}

.menu-ul-mobile {
    background-color: rgb(255, 255, 255);
    position: absolute;
    top: 20px;
    right: 65px;
    list-style: none;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #b1b1b1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.menu-ul-item-mobile {
    padding: 8px 0px;
    font-weight: 600;
    font-size: 14pt;
}

.menu-ul-item-mobile a{
    padding: 0 30px 0 10px;
}

footer {
    background-color: #2F2F2F;
    color: white;
    padding: 60px 70px 20px 70px;
}

footer h2 {
    margin-bottom: 15px;
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 5px;
}

footer span {
    display: block;
    margin-top: 80px;
    text-align: center;
}

@media (max-width: 900px) {
    header {
        padding: 0px 20px;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    }
    .header-nav {
        display: none;
    }
    .hamburger-menu {
        display: unset;
    }
    .logo-img {
        display: none;
    }
    .logo-img-mobile {
        display: block;
    }
    .logo-text {
        display: none;
    }
    footer {
        padding: 30px 35px;
    }
}