.navbar .main-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 100px;
    height: 100px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.elements ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.elements ul a {
    color: var(--color-white);
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;

}

.elements ul a:hover {
    color: var(--color-Primary2);
}

.sco ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.sco ul li a {
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;

}