header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5vw 3.5vw;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header .logo img {
    height: 30px;
}

header nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 50px;
}

nav .links {
    display: flex;
    align-items: center;
    gap: 50px;
}

nav .links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    transition: all .1s;
}

nav .links :hover {
    color: white;
}

nav .links .contact-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 6px 18px 8px;
}

nav .links .contact-btn:hover {
    border: 1px solid white;
}

nav .bar img {
    height: 18px;
}
.offcanvas{
    background-color: #101010;
}
.offcanvas ul{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}
.offcanvas ul a{
    color: rgba(255, 255, 255, 0.692);
    font-size: 20px;
    transition: all .3s;
}
.offcanvas ul a:hover{
    color: white;
}
@media(max-width:1000px) {
    header .logo img {
        height: 25px;
    }

    header {
        padding: 16px 3.5vw;
    }
}

@media(max-width:860px) {
    header .logo img {
        height: 20px;
    }

    header {
        padding: 16px 3.5vw;
    }

    nav .links {
        gap: 30px;
    }

    nav .bar img {
        height: 16px;
    }

    
}
@media(max-width:660px) {
        header nav .links {
            display: none;
        }

        header .logo img {
            height: 16px;
        }
    }