.navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    box-sizing: border-box;
    height: 60px;
    position: fixed;
    z-index: 9999;
    box-shadow: 2px 4px 4px #e7e6e6
}

.navbar .logo {
    width: 60px;
}

.navbar .brand {
    font-size: 24px;
    margin: 0;
    font-weight: 600;
    color: #35C1DC;
    text-decoration: none;
    text-transform: uppercase;
}
.navbar .menu {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 0;
    margin: 0 ;
}
.navbar .menu li {
    list-style: none;
}

.navbar .menu li a {
    padding: 8px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    color: rgba(0, 0, 0, .5);
    border-bottom: 2px solid rgba(0, 0, 0, 0);
    transition: 1s; 
}
.navbar .menu li a.active {
    border-bottom: 2px solid #35C1DC; 
    color: #35C1DC;
}
.navbar .togle {
    display: none;
}

@media only screen and (max-width: 940px) {
    .navbar {
        width: 100%;
        position: fixed;
    }
    .navbar .brand {
        font-size: 18px;
    }
    .navbar .togle-btn {
        display: block;
    }
    .navbar .menu {
        position: absolute;
        top: 60px;
        display: block;
        background-color: white;
        left: 0;
        bottom: 0;
        height: 100vh;
        width: 80%;
        transform: translateX(-100%);
        transition: all .5s;
    }
    .navbar .menu.slide {
        transform: translateX(0);
    }
    .navbar .togle {
        position: relative;
        display: block;
    }
    .navbar .togle a {
        color: #35C1DC;
    }
    .navbar .togle input {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        opacity: 0;
    }
}