@import url('https://fonts.googleapis.com/css2?family=Kantumruy+Pro:ital,wght@0,100..700;1,100..700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Kantumruy Pro", sans-serif;
}
i{
    font-size: 20px;
} 

a{
    text-decoration: none;
}

img{
    width: 55px;
    border-radius: 3px;
    margin-right: 10px;
}
span{
    font-weight: 800;
    font-size: 25px;
    color:  #3c3c3c;
    cursor: pointer;
}
span:hover{
    color:  #8c6a03;
}

button{
    cursor: pointer;
}

.row .btn-menu{
    display: none;
}

.row .btn-menu button{
    background-color: #00000000;
    border: 0;
}
.row .btn-menu button:hover{
    color: #296fe0;
}
.row{
    position: sticky;
    top: 0px;
    padding: 0 10%;
    width: 100%;
    height: 12vh;   
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 0;
    background-color: #fff;
    z-index: 1;
    border-bottom: 2px solid #96a9e439;;
}

.row .logo{
    display: flex;
    align-items: center;
}

.row .menu{
    width: 50%;
    display: flex;
    justify-content: space-evenly;
}

.row .menu a{
    text-decoration: none;
    font-size: 16px;
    color:  #3c3c3c;
    font-weight: 500;
    border-bottom: 2px solid #ffffff00;
    padding-bottom: 0.3%;
    cursor: pointer;
}
.row .menu a:hover{
    color:  #296fe0;
    border-bottom: 2px solid #296fe0;
}

.row .menu .contact{
    color:  #bc910d;
}
.row .menu .contact:hover{
    color:  #8c6a03;
    border-bottom: 2px solid #8c6a03;
}

.btn-menu{
    width: 100%;
}
.cullom .btn-menu button{
    background-color: #00000000;
    border: 0;
}
.cullom .btn-menu button:hover{
    color: #296fe0;
    border-bottom: 2px solid #296fe0;
}

.boss{
    width: 100%;
    justify-content: end;
    display: none;
    position: fixed;
    top: 0;
    z-index: 1;
}
.cullom{
    width: 300px;
    height: 100vh;   
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 0;
    border-radius: 6px;
    box-shadow: 0px 0px 5px 1px gray;
    background-color: #f3f3f3;
    z-index: 1;
}

.cullom .logo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    border-bottom: 2px solid #296fe0;
}

.cullom .menu{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 100%;
}
.cullom .btn-menu button{
    padding: 20px 3%;
    width: 100%;
    border-bottom: 2px solid #ffffff00;
    text-align: start;
}
.cullom .menu a{
    text-decoration: none;
    color:  #3c3c3c;
    font-weight: 500;
    border-bottom: 2px solid #ffffff00;
    padding-bottom: 0.3%;
    cursor: pointer;
    padding: 20px 3%;
    width: 100%;
}
.cullom .menu a:hover, .cullom .btn-menu button:hover{
    color:  #296fe0;
    background-color: #dcdcdc;
    border-bottom: 2px solid #296fe0;
}

.cullom .menu .contact{
    color:  #bc910d;
}
.cullom .menu .contact:hover{
    color:  #8c6a03;
    border-bottom: 2px solid #8c6a03;
}

@media only screen and (max-width: 800px) {
    .row .menu{
        display: none;
    }
    .row .btn-menu{
        width: 0;
        display: flex;
        justify-content: space-between;
    }

    .row {
        position:static;
    }
}