.navBar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: white;
    padding: 0 100px 0 40px;
    z-index: 100;
    font-family: 'Cabin', sans-serif;
}
.logo {
    width: 70px;
    height: 70px;
}

#logo{
    margin-right: 200px;
}

.navBar ul {
    display: flex;
    gap: 40px;
    flex-direction: row;
    list-style: none;
    align-items: center;
    justify-content: space-between;

}
.navBar li {
}
.navBar a {
    color: black;
    text-decoration: none;
    font-size: 20px;
    text-transform: uppercase;
}

.navBar a:hover {
    color: #ff3131;
    border-bottom: 2px solid #ff3131;
}

.topnav .icon {
    display: none;
}

.burger {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Responsive */
@media screen and (max-width: 736px) {
    .navLiens {
        display: none;
        position: absolute;
        top: 80px;
        right: 0;
        background-color: #efeaea;
        width: 100%;
        padding: 20px 0;
        justify-content: center;
        border-top: 1px solid rgba(0, 0, 0, 0.3);
    }

    .navLiens ul {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .burger {
        display: block;
    }

    .navLiens.active {
        display: flex;
    }

    .navBar {
        flex-wrap: wrap;
        padding: 0 20px;
    }
}

@media screen and (max-width: 1023px) {
    .navBar{
        gap:20px;
        padding: 0 20px 0 20px;
    }

    .navBar ul{
        gap:25px;
    }

    .navBar a {
        font-size: 16px;
    }
}

@media screen and (max-width: 1439px) {
    .navBar{
        gap:20px;
        padding: 0 30px 0 30px;
    }

    .navBar ul{
        gap:25px;
    }
}