.header-leftside-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: column;
    width: 100%;
}

.header-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: fit-content;
}

.header-links .header-link:not(:last-of-type) {
    margin-right: 15px;
}

.header-links .header-link__whatsapp a {
    display: block;
    line-height: 0;
}

@media screen and (min-width: 768px) {
    .header-leftside-container {
        align-items: center;
        flex-direction: row;
        width: fit-content;
    }
}