.alert-bar {
    background: var(--primary);
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 1.2rem;
    display: none;
}
.alert-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0 2.5rem;
    position: relative;
    max-width: 100%;
}
.alert-bar p {
    color: #fff;
    font-size: 1rem;
}
.alert-bar a {
    color: #fff;
    font-size: 1rem;
    text-decoration: underline;
    font-weight: 500;
}
.alert-bar img {
    height: 23px;
}
.close-alert {
    position: absolute;
    right: 44px;
    top: 5px;
    cursor: pointer;
}
.close-alert img {
    height: 17px;
}

header {
    background: white;
    padding: 0;
}

header .container {
    position: relative;
}

header .logo {
    height: 100%;
    height: 4rem;
}

header ul#menu-main {
    display: flex;
    list-style: none;
    padding: 0;
    margin: -5px 0 0 0;
    gap: 2rem;
}
header ul#menu-main li {
    position: relative;
}
header ul#menu-main li a {
    color: #000;
    text-decoration: none;
    transition: 0.2s all;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: normal;
    padding: 0 0 1.6rem;
}
header ul#menu-main li a:hover, header ul#menu-main li a:hover:after {
    color: var(--secondary);
}
header ul#menu-main li.menu-item-has-children {
    position: relative;
}
header ul#menu-main li.menu-item-has-children > a:after {
    content: '\f078';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 400;
    font-size: 0.8rem;
    color: #000;
    display: inline-block;
    margin-left: 0.5rem;
}
header ul#menu-main li.menu-item-has-children:hover > ul.sub-menu {
    opacity: 1;
    z-index: 2;
    visibility: visible;
    max-height: 500px;
}
ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    padding: 1rem;
    z-index: 2;
    list-style: none;
    width: 250px;
    top: 50px;
    border-radius: 0 0 5px 5px;
    margin: 0;
    box-shadow: 0 10px 14px rgba(0, 0, 0, 0.1);
    z-index: -1;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: 0.2s all;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
header ul#menu-main li ul.sub-menu li a {
    padding: 0.35rem 0;
    display: block;
}
header .header-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--secondary);
    width: 11rem;
    height: 7rem;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    font-weight: 700;
    line-height: 125%;
    font-size: 1.1rem;
    text-align: center;
    color: white;
    text-transform: uppercase;
    border-radius: 0 0 5px 5px;
    transition: 0.2s all;
}
header .header-cta:hover {
    filter: brightness(110%);
}
header .header-cta span {
    display: block;
    font-size: 11px;
}

body.no-scroll {
    overflow: hidden;
    height: 100vh;
}
