.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: top 0.4s ease-in-out;
    height: max-content;
}

.navbar::after {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    backdrop-filter: blur(1000px);
    content: ' ';
    z-index: -1;
}

.navbar .inner {
    width: 100%;
    height: min-content;
    width: 80vw;
    max-width: 1200px;
    min-width: 300px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.logo {
    position: relative;
    width: 10rem;
    cursor: pointer;
}

.navbar .menuItems {
    display: inline-flex;
    width: max-content;
    gap: 3em;
}

.navbar ul li {
    list-style: none;
    display: inline-block;
    position: relative;
}

.navbar ul li a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0.8;
}

.navbar ul li a::after {
    content: '';
    height: 2px;
    width: 0;
    background: #5E537d;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.2s ease-out;
}

.navbar ul li a:hover {
    opacity: 1;
}

.navbar ul li a:hover::after {
    width: 100%;
    background: #fff;
}

.navbar ul li#menuBtn {
    display: none;
}

#currentLink {
    pointer-events: none;
}

#currentLink::after {
    width: 100%;
    background: #fff;
}

/*
.navDropdownSign {
    display: flex;
    position: absolute;
    justify-content: flex-start;
    flex-direction: column;
    width: 120px;
}

.navDropdownSign ul {
    display: flex;
    flex-direction: column;
}

.navDropdownSign ul li {
    margin: 0;
    margin: 10px 0;
    white-space: nowrap;
    z-index: 5;
}

.navDropdownSign ul {
    display: none;
    transform: translateX(150%);
}

.navDropdownSign ul li a:hover::after {
    width: 80% !important;
}

#currentLink::after,
.navDropdownSign ul li #currentLink::after {
    width: 100% !important;
    background: #fff;
    pointer-events: none;
}

#currentLink {
    pointer-events: none;
    opacity: 1;
    font-weight: 500;
}*/

.navDropdownSign {
    display: flex;
    flex-direction: column;
    gap: 20px;
    display: none;
    text-align: right;
}

.listNav2 {
    padding-top: 25px;
    width: max-content;
}



@media (max-width: 805px) {
    .navbar .inner {
        align-items: flex-start;
    }

    .content h1 {
        font-size: 70px;
    }

    .fas.fa-bars {
        display: flex;
        margin-top: 15px;
        cursor: pointer;
    }

    .fas.fa-bars::before {
        width: 15px !important;
        margin-left: auto;
    }

    .navbar ul li {
        display: none;
    }

    .navbar ul li#menuBtn {
        display: block;
        font-size: 20px;
        width: max-content;
        margin-left: auto;
    }

    .navDropdownSign {
        display: block !important;
        height: 200px;
        margin-left: -60px;
    }

     .listNav, .certified .listNav .listNav2 {
        display: block !important;
        margin-left: auto;
    }

    .navbar::after {
        height: 40%;
    }

    .navbar.isToggled::after {
        height: 80%;
    }

    .listNav2:first-child {
        padding-top: 13px;
    }
}

@media (max-width: 640px) {
    .content h1 {
        font-size: 60px;
    }

    .content h1 br {
        display: block;
    }
}

@media (max-width: 420px) {
    .content h1 {
        font-size: 3.2em;
    }
}