

.topbar {
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    background-color: var(--bg-color);
    border-bottom: 2px var(--main-color) solid;
    z-index: 100;
}

.left-section {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    object-fit: contain;
    margin-left: 20px;
    filter: brightness(1100%);
    cursor: pointer;
}

.right-section {
    
         width: 100%;
        margin-right: 0;
        justify-content: flex-end; 
    
}
.right-section ul li {
    margin-right: 60px; 
}

.right-section ul li a {
    text-decoration: none;
    font-family: Kreon, Arial;
    font-size: 18px;
    color: var(--text-color);
    transition: opacity 0.15s;
}

.right-section a:hover {
    color: var(--main-color);
    opacity: 0.7;
}


@media (max-width: 576px) {
    .topbar {
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 10px;
    }

    .left-section {
        margin-bottom: 10px;
    }

    .right-section {
        width: 100%;
        margin-right: 0;
        justify-content: center;
    }
}

.navbar-toggler{

    color:var(--main-color);
    background-color: var(--bg-color)
}