header {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
    height: 6.3rem;

}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    position: relative;
    background-color: #fff;
    padding: 1rem;
    text-align: right;
    transition: all 125ms;
}

.header-content>a img {
    display: block;
    transition: all 125ms;
    width: 200px;
}

.sticky .header-content {
    padding: 0.25rem 0;
}

.sticky .header-content>a img {
    width: 144px;
}

.header-contact a {
    display: block;
    color: var(--color-main-2);
    text-decoration: none;
    padding: 0.25rem;
}

.header-contact img {
    height: 1.5rem;
    vertical-align: middle;
}

.menu-icon {
    display: none;
    height: 2rem;
    width: 2rem;
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
}

.menu-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-text-dark);
}

.menu-resp {
    background-color: var(--color-text-light);
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    transform: translateX(100%);
    background-color: #343434dd;
    z-index: 100;
    transition: all 250ms;
    max-width: none;
    display: none;
    text-align: left;
}

.menu-resp .close {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--color-text-light);
}

.menu-resp nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
}

.menu-resp nav li {
    display: block;
    width: 100%;
    padding: 0.5rem;
    font-size: 1.25rem;
    color: #fff;
}

.menu-resp nav a {
    display: block;
    color: #fff;
    text-decoration: none;
}

.menu-resp nav>li>ul {
    overflow: hidden;
    height: 0;
    transition: all 250ms;
}

.menu-resp nav>li>ul>li a {
    font-size: 1.125rem;
    font-weight: normal;
}

.has-submenu.show>ul {
    display: block;
    padding-top: 0.5rem;
}

.has-submenu {
    position: relative;
    display: block;
}

.submenu-plus {
    position: absolute;
    top: 0.625rem;
    right: -2rem;
    background: transparent;
    border: none;
    width: 1.25rem;
    height: 1.25rem;
    display: block;
}

.has-submenu .submenu-plus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #fff;
}

.has-submenu.show .submenu-plus::before {
    display: none;
}

.has-submenu .submenu-plus::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 2px;
    width: 100%;
    background-color: #fff;
}

.menu-lang-resp {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: var(--color-text-light);
}
.menu-lang-resp a {
    color: var(--color-text-light);
}

@media only screen and (max-width: 960px) {
    header {
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 4px #666;
    }

    .header-contact {
        margin: auto;
    }

    .menu-icon {
        display: flex;
    }

    .menu-resp.show {
        display: flex;
        transform: translateX(0);
    }
}

@media only screen and (max-width: 640px) { 
    .header-contact {
        display: none;
    }
}