.navbar {
    width: 60%;
    top: -25px;
    left: 0;
    transform: translate(calc(50vw - 50%));
    max-width: 1500px;
    position: fixed;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    gap: 75px;
    margin: 5% auto;
    padding: 15px 50px;
    background: url("../images/noise.png"), rgba(23, 53, 159, 0.1);
    border: 1px solid rgba(23, 53, 159, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.navbar-links {
    flex-direction: row;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    gap: 100px;
    flex-wrap: wrap;
    list-style-type: none;
}

.navbar-link {
    color: var(--blue-color);
    font-family: Outfit;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    margin: 5px 5px;
    transition: cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.navbar-link {
    display: inline-block;
    position: relative;
}

.navbar-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--blue-color);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.navbar-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.logo {
    height: 60px;
    width: 60px;
    transition: cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.logo:hover {
    transform: scale(110%) rotate(5deg);
}

.logo2 {
    display: none;
    height: 60px;
    width: 60px;
    transition: cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.logo2:hover {
    transform: scale(110%) rotate(5deg);
}

@media screen and (max-width: 1350px) {
    .navbar {
        display: none;
    }
}