h2, h3, p, li, a, button, label{
    font-family: Obvia;
    font-style: normal;
    font-weight: normal;
}
header{
display: flex;
justify-content: space-between;
align-items: center;
padding-left: 20px;
margin-top: 15px;
}
header img{
    max-height: 70.8px;
}

/* Hamburger */
.hamburger{
    position: relative;
    display: block;
    width: 35px;
    cursor: pointer;
    appearance: none;
    background: none;
    outline: none;
    border: none;

}

.hamburger .bar, .hamburger:after, .hamburger:before{
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color:black ;
    margin: 6px 0px;
    transition: 0.4s;
}

.hamburger.is-active:before{
    transform: rotate(-45deg) translate(-5px, 4px)
}

.hamburger.is-active:after{
    transform: rotate(45deg) translate(-7px, -6px)
}

.hamburger.is-active .bar{
    opacity: 0;
}

nav{
    position: fixed;
   display: block; 
   left: 500%;
   width: 100%;
   z-index: 98;
   transition: 0.4s;
   margin-top: 73px;
   background-color: black;
   font-family: Arial, Helvetica, sans-serif !important;
}

nav a{
    font-family: Arial, Helvetica, sans-serif !important; 
}

nav.is-active{
    left: 0;
}


.navItems{
    display: block;
    text-align: center;
    margin-bottom: 0 auto 16px;
    padding: 12px 16px;
    background-color: black;
    text-decoration: none;
    color: #fff;
   }

.navItems:hover{
    background-color: #d0d0cf;
}

.invisHeader{
    width: 48px;
}

@media screen and (min-width: 1004px) {
    nav.is-active{
    max-width: 120px;

    }
    nav{
        max-width: 120px;
        display: flex;
        flex-direction: row;
        margin-left: 27px;
        top: 0;
        opacity: 0;
        left: 0%;
    }
    nav.is-active{
        opacity: 1;
        background-color: #fff;
        transition: 0.55s;
    }
    .navItems{
        background-color: #fff;
        color: black;
    }

}

/* Footer */

footer{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #e6e6e8;
    text-align: center;
    width: 100%;
}

footer a{
    text-decoration: none;
    color: black;
}

footer h1{
    font-size: 34px;
    font-family: Obvia;
    font-style: normal;
    font-weight: bold;
    margin-bottom: 0px;
}

footer li{
    list-style-type: none;
}

.serviceLists{
    display: flex;
    flex-direction: row;
    gap: 43px;
    line-height: 43px;
}
.serviceList{
    display: flex;
}

.service a{
    font-family: Arial, Helvetica, sans-serif;
}

footer ul{
    padding-left: 0px;
}

@media screen and (max-width: 1004px) {
    header img{
        max-height: 50px;
    }
    .wrapper{
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
    }
    .wrapper img{
        width: 286px;
    }
    footer{
        display: flex;
        flex-direction: column;
    }
}