@import url(https://db.onlinewebfonts.com/c/af2891efc1bf4df8873fba9c8aa9bf47?family=Knockout-HTF54-Sumo);
@font-face {
    font-family: "Knockout-HTF54-Sumo";
    src: url("https://db.onlinewebfonts.com/t/af2891efc1bf4df8873fba9c8aa9bf47.eot");
    src: url("https://db.onlinewebfonts.com/t/af2891efc1bf4df8873fba9c8aa9bf47.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/af2891efc1bf4df8873fba9c8aa9bf47.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/af2891efc1bf4df8873fba9c8aa9bf47.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/af2891efc1bf4df8873fba9c8aa9bf47.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/af2891efc1bf4df8873fba9c8aa9bf47.svg#Knockout-HTF54-Sumo")format("svg");
}



.header {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.89);
    color: white; /* Header text color */
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

.logo {
    margin-left: 20px; /* Adjust as needed */

}

.nav {
    margin-right: 20px; /* Adjust as needed */
}

.nav ul {
    list-style: none;
    padding: 0;
    display: flex;
}

.nav li {
    margin-right: 20px; /* Adjust as needed */
}

.nav ul li a {
    text-decoration: none;
    color: white;
    text-align: center;
    transition: all 0.5s;
    font-weight: bold;
    font-size: 18px;
    padding: 0 10px;
    font-family: "Knockout-HTF54-Sumo";
}

.nav ul li a:hover {
    border-bottom: 0.2px solid white;
    transition: all 0.5s;
}

/* CSS for mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: black; /* Mobile menu background color */
    position: fixed;
    top: 0;
    right: 0;
    width: 70%; /* Adjust menu width */
    height: 100%;
    padding: 20px;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.open {
    transform: translateX(0);
}

.menu-button {
    display: none; /* Hide the menu button on larger screens */
}

/* CSS for mobile menu links */
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 100px;
}

.mobile-menu a {
    color: white;
    font-size: 14px;
    margin: 10px 0;
    padding: 10px;
    text-align: center;
    text-decoration: none;
}

.mobile-menu li {
    margin-bottom: 30px;

}

/* Media query for mobile */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-button {
        display: flex; /* Show the menu button on smaller screens */
        background-color: black; /* Mobile menu background color */
        color: white; /* Mobile menu text color */
        border: none;
        margin: 10px 0;
        padding: 10px;
        font-size: 20px;
        cursor: pointer;
        position: absolute;
        top: 10px;
        right: 15px;
    }

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menuul ul li a {
        padding: 0 10px;
        height: 38px;
        line-height: 38px;
        border-bottom: 0.3px solid white;
    }
}