/* home page  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background: #f4f6f9;
}

a {
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-decoration: none;
}

.top-bar {
    background: #000;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar span {
    margin-right: 15px;
}

/*  HEADER */
header {
    background: #003366;
    color: #fff;
    padding: 20px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 30px;
}

.logo p {
    font-size: 14px;
    color: #ffcc00;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    font-weight: bold;
}

.menu-btn {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
}


/* side bare manu  */
@media (max-width: 420px) {

    .header-flex {
        position: relative;
        z-index: 1000;
        
    }

    .menu-btn {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 90px;
        width: 80%;
        background: #003366;
        display: none;
    }

    nav ul {
        flex-direction: column;
        padding: 15px 0;
    }

    nav ul li {
        margin: 12px 0;
        text-align: center;
    }

    nav.show {
        display: block;
    }

    .logo h1 {
        font-size: 22px;
    }

    .navMenu {
        /* position: absolute; */
        z-index: 2000;
    }
}
