.top-bar {
    background-color: var(--light-white-color);
    height: 12.5rem;
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 9999;
}

.top-bar .logo-full-wrapper {
    display: flex;
    padding: 2.1875rem 2.125rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--red-color);
    border-radius: 0 0 1rem 1rem;
}

.top-bar .menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.25rem;
}



.top-bar nav .main-menu {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2.25rem;
    height: 8.75rem;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: space-between;
}

.top-bar nav .main-menu li a {
    color: var(--navy-color);
    text-decoration: none;
    font-size: 1.0625rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.3s ease-in-out, border-bottom 0.3s ease-in-out;
    border-bottom: 2px solid transparent;
}

.top-bar nav .main-menu li a:hover {
    color: var(--red-color);
    transition: color 0.3s ease-in-out, border-bottom 0.3s ease-in-out;
    border-bottom: 2px solid var(--red-color);
}

.top-bar nav .main-menu li.current-menu-item a {
    color: var(--red-color);
}

.top-bar .additional-links-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar .additional-links-wrapper .search-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0.625rem 0.6875rem;
    border-radius: 50%;
    background-color: var(--red-color);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.top-bar .additional-links-wrapper .search-button svg * {
    fill: var(--white-color);
}

.top-bar .additional-links-wrapper .search-button:hover {
    background-color: var(--navy-color);
    transition: background-color 0.3s ease-in-out;
}

.top-bar .additional-links-wrapper .language-switcher a {
    color: var(--navy-color);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 2.25rem;
}

.top-bar #open-mobile-menu {
    all: unset;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border: none;
}

.top-bar #open-mobile-menu svg * {
    fill: var(--navy-color);
    transition: fill 0.3s ease-in-out;
}
.top-bar #open-mobile-menu:hover svg * {
    fill: var(--red-color);
    transition: fill 0.3s ease-in-out;
}

.mobile-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.mobile-menu-wrapper .close-mobile-menu {
    all: unset;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border: none;
    background-color: var(--red-color);
    color: var(--white-color);
    border-radius: 100%;
    padding: 0.625rem;
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
}

.mobile-menu-wrapper .close-mobile-menu svg {
    width: 1.25rem;
    height: 1.25rem;
}

.mobile-menu-wrapper .close-mobile-menu svg * {
    stroke: var(--white-color);
}

.mobile-menu-wrapper .close-mobile-menu:hover {
    background-color: var(--navy-color);
}

.mobile-menu-wrapper .mobile-menu-active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.mobile-menu-wrapper .mobile-menu-active .menu-item a {
    text-decoration: none;
    color: var(--navy-color);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5rem;
    text-align: center;
    width: 100%;
}

.mobile-menu-wrapper .mobile-menu-active .menu-item:hover a {
    color: var(--red-color);
}

@media (max-width: 1400px) {
    .top-bar nav {
        width: 100%;
    }
    .top-bar nav .main-menu {
        gap: 0;
    }
}

@media (max-width: 991px) {
    .top-bar .menu-wrapper {
        justify-content: end;
    }
}