/* ===========================
   RESET
=========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    background: #08111f;
    color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===========================
   HEADER
=========================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #08111f;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    z-index: 9999;
}

/* ===========================
   NAVBAR
=========================== */

.navbar {
    width: 100%;
    padding: 15px 20px;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===========================
   LOGO
=========================== */

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 250px;
    height: 80px;
    display: block;
}

/* ===========================
   MENU
=========================== */

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

.nav-links li {
    list-style: none;
}

.nav-item {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: .3s;
}

.nav-item:hover {
    color: #19a7ff;
}

/* ===========================
   TOGGLE
=========================== */

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle .bar {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 5px;
}

/* ===========================
   TABLET
=========================== */

@media (max-width:992px) {

    .logo img {
        width: 220px;
    }

}

/* ===========================
   MOBILE
=========================== */

@media (max-width:768px) {

    .navbar {
        padding: 12px 15px;
    }

    .nav-container {
        display: block;
        position: relative;
    }

    .nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .logo img {
        width: 170px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: #08111f;
        padding: 15px 0;
        border-top: 1px solid rgba(255, 255, 255, .08);
        z-index: 99999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-item {
        display: block;
        width: 100%;
        padding: 15px;
    }

}