a {
    text-decoration: none;
    color: white;
}

.navigation-bar-dropDown {
    display: none;
}

.navigation-bar .container {
    padding: 10px 80px;
    /* background: #181925; */
    background: #3B4252;
}

.navigation-bar .navigations {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navigation-bar .nav-title h1 {
    color: white;
}

.navigation-bar .navigations .nav-navigations {
    display: flex;
    gap: 40px;
}

.navigation-bar .navigations .nav-navigations a {
    font-size: 15px;
    transition: 0.2s;
}

.navigation-bar .navigations .nav-navigations a:hover {
    color: #cababa;
    transform: scale(1.1);
}

.navigation-bar .navigations .ham-icon {
    display: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: 0.2s;
}

.navigation-bar .navigations .ham-icon:hover {
    transform: scale(1.2);
}


.navigation-bar-dropDown {
    /* z-index: -100; */
    overflow: hidden;
}

.navigation-bar-dropDown .container .navigations {
    display: flex;
    flex-direction: column;
    transition: 0.2s;
    overflow: hidden;
    animation: appear 0.3s forwards;
}

.navigation-bar-dropDown .container .navigations a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background: #252a34;
    border-bottom: 1px solid #ffffff15;
    transition: 0.2s;
}

.navigation-bar-dropDown .container .navigations a:hover {
    background: #383d49;
}




@keyframes appear {
    from {
        min-height: 0;
        opacity: 0
    }
    to {
        max-height: 300px;
        opacity: 1;
    }
}