header {
    background: transparent;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
}

header .container {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
}

header .logo {
    background: var(--primaryColor);
    padding: 2rem 1rem 1rem;
    width: 9rem;
    height: 9rem;
    border-radius: 0 0 1.25rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .logo img {
    position: relative;
    z-index: 3;
    transition: 0.3s all;
}

.logo.show-menu {
    opacity: 0;
}

.header-cta {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 3;
    height: 2.5rem;
    margin-top: 2rem;
}

.header-btn {
    background: var(--secondaryColor);
    color: var(--primaryColor);
    padding: 1rem 2rem 0.75rem;
    border-radius: 5px;
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s all;
    display: flex;
    align-items: center;
    height: 100%;
}
.header-btn:hover {
    filter:brightness(110%);
}

/* EXPENDED MENU */

#main-menu {
    display: flex;
}

ul.menu {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.expended-menu ul.menu li a {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    transition: 0.2s all;
    padding: 0;
    font-size: 2.5rem;
    line-height: 150%;
    position: relative;
    line-height: 118%;
    font-family: 'Gambetta';
    font-weight: 500;
    transition: 0.2s all;
    color: var(--lightColor);
}
.expended-menu ul.menu li a:hover, ul.menu li.current-menu-item > a {
    color: var(--secondaryColor);
}

.expended-menu ul.menu li a:hover:after, ul.menu li.current-menu-item > a:after {
    width: 100%;
}

body.no-scroll {
    overflow: hidden;
}

.expended-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--primaryColor);
    transform: translateY(-100%);
    transition: 0.3s all;
    z-index: -1;
    opacity: 0;
    padding: 7rem 4rem 4rem;
}

.expended-menu.show-menu {
    transform: translateY(0);
    z-index: 2;
    opacity: 1;
}