
*{
    margin:0;
    padding: 0;
    box-sizing:border-box;
}

.lines-nav-menu{
    transform: scale(2);
    position: absolute;
    right: 31px;
    top: 23px;
    cursor: pointer;
}

.nav-links{
    display:flex;
    list-style: none;
    margin-right: 40px;
    line-height: 4.5;
}

.links a {
    /* color: var(--lightTwo); */
    color: black;
    margin-left: 4.5rem;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.5s;
    font-family: sans-serif;
    cursor:pointer;
}

.links a:hover{
    transform: scale(0.98);
    color:#E73636;
}


.link-active{
    color: #E73636 !important;;
}
.logo{
    width: 220px;
    cursor: pointer;
    margin: 10px;
    margin-left: 20px;
    margin-top: 16px;
}

.navbar{
    display: flex;
    -webkit-box-shadow: 0px 6px 12px 5px rgba(0,0,0,0.19); 
    box-shadow: 0px 6px 12px 5px rgba(0,0,0,0.19);
    height: 75px;
    z-index: 999;
    position:relative;
}

.headerimg-container{
    height: 85vh;
}

.img-header{
    height:100%;
    width:100%;
    object-fit: cover;
    z-index:1;
}

.hamburger-menu {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 1.8em;
    cursor: pointer;
    display: none;
    pointer-events: auto;
}

.active {
    transform: translateX(0);
    box-shadow: 0 0 50px 2px rgba(0, 0, 0, 0.4);
}

.active  {
    pointer-events: all;
    opacity: 1;
}



@media screen and (max-width: 1050px) {
    .links {
        position: fixed;
        top: 0;
        right: 0;
        max-width: 450px;
        width: 100%;
        height: 100%;
        z-index: 95;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        
    }
    .links ul {
        flex-direction: column;
    }
    
    .links a {
        color: #fff;
        margin-left: 0;
        padding: 2rem 0;
    }
    .hamburger-menu {
        display: flex;
        z-index: 97;
        position: fixed;
    }
}