@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.container {
    max-width: 1232px;
    width: 100%;
    padding: 0 16px;
    margin: auto;
}

/* HEADER */
.j6de-header {
    background: #E4F4FF;
    padding: 15px 0;
}

.j6de-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.j6de-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.j6de-nav {
    display: flex;
    gap: 20px;
}

.j6de-nav a {
    text-decoration: none;
    color: #3E3E4A;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    transition: .2s;
    padding: 2px;
}

.j6de-nav a:hover {
    color: #0068FF;
}

.j6de-nav a.active {
    color: #0068FF;
}

.j6de-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.j6de-burger span {
    width: 24px;
    height: 3px;
    border-radius: 20px;
    background: #3E3E4A;
}

/* MOBILE */

@media (max-width:768px) {
    .j6de-nav {
        position: absolute;
        z-index: 9;
        top: 66px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        display: none;
        box-shadow: 0px 4px 7px 0px rgb(0 104 255 / 40%);
    }

    .j6de-nav.active {
        display: flex;
    }

    .j6de-burger {
        display: flex;
    }
}