.site-wrapper {
    /* overflow: hidden; */
    display: block;
}

html {
    scroll-behavior: smooth;

}

nav {
    top: 25px;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(8, 8, 8, 0.75);
    border: 1px solid rgb(40, 40, 40);
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    width: 100vw;
    position: fixed;
    z-index: 100;
}

.logo {
    width: 70px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 100%;
    height: 100%;
}

.burger {
    display: none;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 65%;
    padding: 0 50px;
}

.nav-links li {
    list-style: none;
    margin: 0 10px;
    opacity: 0.6;
    transition: all 0.4s ease-in-out;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-size: .9rem;
    font-weight: 500;
}

.nav-links li:hover {
    opacity: 1;
    transform: scale(1.05);

}


.nav-links li button {
    background-color: rgba(9, 9, 9, 0.8);
    backdrop-filter: saturate(180%) blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.125);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 5px;
}

.nav-slide-in {
    position: fixed;
    top: 0;
    right: 0;
    right: -100%;
    backdrop-filter: blur(25px) saturate(0%);

    background-color: rgba(0, 0, 0, 0.9);
    /* border-radius: 12px; */
    /* border: 1px solid rgba(255, 255, 255, 0.125); */
    transform: translateY(10px);
    height: 90vh;
    width: 100%;
    display: flex;
    transition: 0.5s ease-in-out;
    z-index: 1000;
    color: #fff
}

.nav-slide-in>.nav-slide-links {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    /* align-items: center; */
    width: 100%;
    height: 100%;
    margin-left: 50px;
    /* border: 1px solid rgba(255, 255, 255, 0.125); */
}



.nav-slide-active {
    right: 0;
}

.nav-close {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.nav-close img {
    width: 100%;
    height: auto;
}

.nav-slide-links {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.nav-slide-in ul li {
    list-style: none;
    margin: 0 10px;
    opacity: 0.6;
}

.nav-slide-in ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}



.nav-slide-in ul li button {
    background-color: rgba(9, 9, 9, 0.8);
    backdrop-filter: saturate(180%) blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.125);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 5px;
}

@media screen and (max-width: 768px) {
    .burger {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        cursor: pointer;
        margin-right: 100px;
    }

    .burger img {
        width: 100%;
        height: auto;
    }

    .nav-links {
        display: none;
    }

}