header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.logo-call {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-call a {
    display: inline-block;
    order: 1;
}

.call-us img {
    filter: invert();
}

.logo-call a:nth-of-type(2) {
    margin: 0 1rem 0 3rem;
}

.booking {
    padding: 1rem;
    background-color: var(--accent);
    border-radius: var(--borderRadius);
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    color: #fff;
}

nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

nav a {
    display: inline-block;
    padding: 0.5rem;
    margin: 0.5rem;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
    text-decoration: none;
}

nav a:hover {
    color: var(--l-accent);
}

a,
a:active,
a:visited {
    color: var(--color);
    text-decoration: none;
}