header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.7vw 3.5vw;
    width: 100%;
}

header .bar {
    min-width: 200px;
}

header .bar img {
    height: 18px;
}

header .logo img {
    height: 30px;
}

header .batn {
    min-width: 200px;
    justify-content: flex-end;
    display: flex;
}

.green-btn {
    color: black;
    background-color: #00DD4B;
    font-family: 'Subjectivity';
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 800;
    padding: 20px 25px;
    border-radius: 100px;
    width: fit-content;
    transition: .3s;
    border: 1px solid #00DD4B;

}

.green-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.gray-btn {
    font-family: 'Subjectivity';
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 800;
    padding: 1vw 1.2vw;
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    transition: .3s;

}

.gray-btn:hover {
    background-color: #00DD4B;
    color: black;
    border: 1px solid #00DD4B;

}
.offcanvas{
    background: linear-gradient( to top right,#00dd4b -390%,#101010 100%); 
    height: 100vh;
}
.offcanvas-body ul{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:50px;
    margin-top: 100px;
}
.offcanvas-body a{
    font-size: 20px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.5);
    transition: all .3s;
}
.offcanvas-body a:hover{
    color: white;
}




@media (max-width: 1400px) {
    header .bar img {
        height: 16px;
    }

    header .logo img {
        height: 25px;
    }

    .green-btn {
        font-size: 16px;
        font-weight: 700;
        padding: 17px 20px;
        height: fit-content;
    }

    .gray-btn {
        font-size: 16px;
        font-weight: 700;
        padding: 17px 20px;
        height: fit-content;
    }
}

@media (max-width: 1000px) {
    .green-btn {
        font-size: 14px;
        padding: 14px 20px;
    }

    .gray-btn {
        font-size: 16px;
        padding: 14px 20px;
    }

    header .logo img {
        height: 23px;
    }
}

@media (max-width: 650px) {
    .green-btn {
        font-size: 14px;
        padding: 16px 20px;
    }

    .gray-btn {
        font-size: 14px;
        padding: 16px 20px;
    }

    header .logo img {
        height: 20px;
    }

    header .batn {
        min-width: 140px;
    }

    header .bar {
        min-width: 140px;

    }
}

@media (max-width: 490px) {
    .green-btn {
        font-size: 14px;
        padding: 12px 18px;
    }

    .gray-btn {
        font-size: 10px;
        padding: 15px 18px;

    }

    header .logo img {
        height: 16px;
    }

    header .bar img {
        height: 14px;
    }

    header .batn {
        min-width: 100px;
    }

    header .bar {
        min-width: 100px;

    }
}