header, footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-inline: 4rem;
    background-color: white;
    color: rgb(var(--clr-blue));
}

header{
    position:fixed ;
    height: 5rem;
    box-shadow: 0 0 20px rgba(163, 163, 163, 0.39);
}

.header-logo > img{
    height: 4rem;
}
.header-navbar{
    width: 50%;
}
.header-burgermenu{
    position: fixed;
    z-index: 110;
    display: none;
    right: 2rem;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    }

footer{
    display: flex;
    height: 2rem;
}

@media screen and (max-width: 1200px) {
    header, footer{
        padding-inline: 3rem;
    }
    .header-phone{
        display: none;
    }
    .header-navbar{
        width: 65%;
    }
}

@media screen and (max-width: 840px){
    header, footer{
        padding-inline: 1rem;
    }
    .header-logo > img{
        height: 3rem;
    }
    footer{
        height: auto;
    }
    .header-navbar{
        display: none;
    }
    .header-burgermenu{
        display: flex;
    }
    #footerlinks{
        display: none;
        height: 2rem;
    }
}
