.header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    color: white;
    background-color: rgb(129, 206, 230, 0.2);
    backdrop-filter: blur(10px);
}
.header-inner{
    width: 97%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
}
.header-logo-con{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.header-logo-icon{
    width: 2.3rem;
    height: 2rem;
}
.header-logo-link a{
    text-decoration: none;
    color: white;
}


.header-options-con{
    display: flex;
    flex-direction: row;
    gap: 15px;
}
.header-option a{
    text-decoration: none;
    color: white;
}

.header-socials-con{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    margin-right: 1rem;
}
.header-social-icon-con{
    width: 2rem;
    height: 2rem;
}
.header-social-icon{
    width: 100%;
    height: 100%;
}


.social-svg{
    width: 2rem;
}
.social-svg-burger{
    display: none;
    width: 2rem;
}
.social{
    width: 100%;
}

.burger-btn{
    display: block;
    width: 30px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    padding-top: 10px;
    
    
}
.burger-btn span{
    display: block;
    background-color: white;
    width: 30px;
    height: 4px;
    margin-bottom: 3px;
}
.nav-menu{
    display: none;
    position: absolute;
    width: 30%;
    height: 100lvh;
    transition: 3s ease-in-out;
    transform:  translateX(100%);
    top: 30px;
    right: 0;
    background-color: rgb(129, 206, 230, 0.7);
    padding-left: 1rem;
    
}
.nav-menu li{
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    padding-top: 1rem;
}
.nav-menu a{
    text-decoration: none;
    color: black;
    font-weight: bold;
}
.nav-menu.show{
    display: block;
    transform: translateX(0);
}


@media (max-width: 670px) {
    .header-social-icon-con{
        display: none;
    }
    .header-options-con{
        display: none;
    }
    .social-svg-burger{
        display: block;
    }
    .header-logo-link a{
        color: black;
        font-weight: bold;
    }
    .burger-btn span{
        background-color: black;
    }
}
@media (max-width: 520px) {
    .nav-menu li{
        justify-content: normal;
    }
    .nav-menu{
        width: 40%;
    }
}