.top-nav-container {
    background: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    height: 56px;
}

.top-nav {
    display: flex;
    align-items: center;
    height: 56px;
}

.top-nav-container a {
    color: white;
    transition: color 0.3s ease-in-out

}

.top-nav-container a:hover {
    color: var(--secondary-color);
}

.top-nav-right {
    display: flex;
    column-gap: 15px;
}

.top-nav-left {
    margin-right: auto;
    display: flex;
    column-gap: 15px;
    align-items: center;
}

.top-nav-left a {
    font-size: 18px;
}

.search-input {
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    display: inline-block;
    border-radius: 40px;
    padding: 16px;
    width: 180px;
    height: 30px;

}

#search:focus {
    outline: none;
}

button.search-submit {
    background: transparent;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    border: 4px rgba(255, 193, 14, 0.5) solid;
    transition-duration: 0.5s;
    text-align: center;
    color: white;
    align-items: center;
    display: flex;
    margin: auto 10px auto auto;
}

.search-form {
    display: flex;
    align-items: center;
}

@media (max-width: 992px) {
    .top-nav-container {
        display: none;
    }
}