@font-face{
    font-family: 'iransans';
    src: url('../font/iransans.ttf') format('truetype');
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    direction: rtl;
    text-align: right;
    font-family: 'iransans';
}
a:hover{
    text-decoration: none;
}
.pointer{
    cursor: pointer;
}
header{
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
}
.navigation{
    position: absolute;
}
.navigation ul li{
    list-style: none;
    border-bottom: 1px solid rgb(85, 85, 85);
    transition: 0.3s all;
}
.navigation ul li:hover{
    background-color: rgb(75, 75, 75);
}
.navigation ul{
    padding: 0;
    position: absolute;
    width: 220px;
    height: 100vh;
    border-top: 1px solid rgb(85, 85, 85);
    top: 0;
    right: 0;
    right: -220px;
}
.navigation ul li a{
    color: #f1f1f1 !important;
    width: 100%;
    display: block;

}
.submenu .menu-title{
    text-align: center;
    padding-right: 0 !important;
}
.submenu .go-back{
    background-color: blue !important;
}
.box-shadow{
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.08);
}