.header{
    padding: .8rem 0;
    border-bottom: solid 1px #e1e1e1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f2f2f2;
    height: 77px;
    z-index: 99;
    box-shadow: 0 -12px 15px 5px #777;
}

.logo-wrapper{
    position: relative;
}

.logo{
    width: 7rem;
    height: 7rem;
    position: absolute;
    margin-top: -1rem;
    background-size: cover;
    background-position: center center;
}

.links-wrapper{
    gap: 2rem;
}

.header ul{
    display: flex;
    gap: 2rem;
    padding-left: 0;
}

.header ul li{
    list-style-type: none;
    display: inline-block;
}

.header ul .current-menu-item a{
    color: var(--primary-color);
}

.header ul .current-menu-item .sub-menu li a{
    color: var(--text-color);
}

.header ul .current-menu-item .sub-menu li a:hover{
    color: var(--primary-color);
}

.header ul .menu-item-has-children{
    position: relative;
    margin-right: 1rem;
}

.header ul .menu-item-has-children::before{
    content: '';
    position: absolute;
    width: .8rem;
    height: .8rem;
    background-image: url('../svg/arrow-down.svg');
    background-size: contain;
    background-repeat: no-repeat;
    right: -1.2rem;
    top: .5rem;
}

.header ul .menu-item-has-children:hover > .sub-menu{
    display: block;
}

.header ul li a{
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
}

.header ul li a:hover{
    color: var(--primary-color);
}

.header ul .sub-menu{
    position: absolute;
    width: 10rem;
    background-color: white;
    border: solid 1px #e1e1e1;
    display: none;
    padding: 1rem 1rem .5rem 1rem;
}

.header ul .sub-menu li{
    display: block;
    margin-bottom: .2rem;
}

.header ul .sub-menu li a{
    font-size: 1rem;
}

.banner{
    padding: 3rem 0 1rem 0;
    font-size: 1.2rem;
    color: white;
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center center;
    position: relative;
}

.banner--homepage{
    padding: 12rem 0 10rem 0;
}

.banner__inner{
    position: relative;
    z-index: 2;
}

.banner__overlay{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    opacity: 0.8;
    position: absolute;
    z-index: 1;
}

.banner h1{
    font-weight: 900;
    margin-top: .4rem;
    color: white;
}

.menu-toggle{
   width: 1.8rem;
   height: 1.8rem;  
}

.menu-toggle svg{
    transition: all 200ms ease;
}

.menu-toggle:hover svg{
    fill: var(--primary-color);
    cursor: pointer;
}

#mobile-header{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: white;
    padding: 3rem 0;
    z-index: 10;
    top: -100%;
    transition: all 600ms ease;
}

#mobile-header.active{
    top: 77px;
}

#mobile-header ul{
    padding-left: 0;
}

#mobile-header a{
    text-decoration: none;
    font-weight: 700;
}

#mobile-header a:hover{
    cursor: pointer;
    color: var(--primary-color);
}

#mobile-header li{
    list-style-type: none;
    margin-bottom: .5rem;
}

#mobile-header .sub-menu{
    padding-left: 3rem;
    margin-bottom: 1rem;
}

#mobile-header .sub-menu li{
    list-style-type: disc;
}

#mobile-header .sub-menu a{
    font-weight: 300;
}

.intro{
    position: relative;
    padding: 8rem 0;
    color: white;
    background-color: var(--primary-color);
    font-size: 1.2rem;
}

.intro__image{
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}

.intro h1{
    font-weight: 900;
    margin-top: .4rem;
    color: white;
    word-wrap: break-word;
}