body{
    margin: 0;
    padding: 0;
}
.header-sec{
    width: 100%;
    background-color: rgb(206, 145, 154);
    height: 4rem;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
}
.header-inner{
    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

}
.header-logo-con{
    width: 2rem;
    height: 2rem;
    border-radius: 2rem;
    overflow: hidden;
}
.header-logo{
    width: 100%;
    height: 100%;
}
.header-options{
    display: flex;
    flex-direction: row;
    gap: 10%;
}
.header-option a{
    text-decoration: none;
    color: black;
    font-weight: bold;
}



.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: 35%;
    height: 100vh;
    transition: 0.3s ease-in-out;
    transform:  translateX(100%);
    top: 3;
    right: 0;
    background-color: rgb(206, 145, 154);
    padding-left: 1rem;
    
}
.nav-menu li{
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    padding-top: 1rem;
}
.nav-menu a{
    text-decoration: none;
    color: white;
    font-weight: bold;
}
.nav-menu.show{
    display: block;
    transform: translateX(0);
}


@media (max-width: 650px) {
    .options-container{
        display: none;
    }


    .socials-container{
        padding-right: 1rem;
    }
    .social-svg-burger{
        display: block;
        padding-right: 5px;
    }
    .header-option{
        display: none;
    }
}