* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{

}
header{
    background-color: #fafaf6;
    height: 4.5rem;
}

.container{
    width: min(90%, 1120px);
    margin-inline: auto;
}

.disktop-menu{
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    
}
.menu-link{
    display: flex;
}
.menu-link li{
    list-style: none;
}
.menu-link li a{
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    color: #2b2b2b;
    padding: 5px;
}
.menu-link li a:hover{
    color: #5f6ad4;
}
.disktop-menu h1{
    font-size: 1.26rem;
    font-weight: 700;
}
/* i{
    color: green;
}
.fa-facebook{
    color: blue;

}
.fa-tiktok{
    color: red;
} */

.hambarger{
    display: none;
}
.mobile-menu{
    display: none;
}

.mobile-minu-action{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.btn-primery , .btn-secondary{
    display: inline-block;
    background-color: #5f6ad4;
    padding: 20px;
    margin: 7px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.25rem;
    text-align: center;
}
.btn-secondary{
    background-color: transparent;
    border: 1px solid white;
}

@media (max-width:768px) {
    .disktop-menu{
        display: none;
    }
    header
    {
        height: 0;
    }

    i {
        z-index: 11111;
    }
    .hambarger{
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        background-color: #5f6ad4;
        color: white;
        top: 5%;
        width: 50px;
        height: 50px;
        right: 5%;
        border-radius: 50%;
        font-size: 2rem;
     
    
    }
    .mobile-menu{
        
    }
    .mobile-menu[data-visible="false"]{
        transform: translateX(100%);
    }

    .hambarger i[data-visible="true"]{
        display: block;
    }
    .hambarger i[data-visible="false"]{
        display: none;
    }

    
    .mobile-menu .navigation {
        margin-top: 5rem;
        gap: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;

    }
    .mobile-menu .navigation .menu-link{
        gap: 1.2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .mobile-menu h1{
        font-size: 2.3125rem;
        font-weight: 700;
        border-bottom: 1px solid white;
        padding: 10px;
    }
    .mobile-menu a{
        color: white! important;
    }
}
