* {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: Vazir;
    direction: rtl;
    /* direction: rtl; */
}

a {
    color: white;
    text-decoration: none;
}

.header {
    position: fixed;
    width: 100%;
    height: 68px;
    background-color: rgba(0, 0, 0, 0.911);
    background-color: #293241;
    color: white;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    direction: rtl;
    z-index: 10;
}

nav {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.801);
    background-color: #293241d6;
    color: white;
    top: 68px;
    height: calc(100% - 68px);
    /* left: 0; */
    width: 230px;
    display: flex;
    flex-direction: column;
    padding-top: 5px;
}

.nav-show {
    left: 0;
    transition: 0.4s;
    z-index: 10;
}

.nav-hide {
    left: -230px;
    transition: 0.2s;
    z-index: 12;
}

nav a {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    color: #293241;
    font-weight: 600;
    margin: 3px 10px;
    height: 38px;
    display: flex;
    align-items: center;
    direction: rtl;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 0 10px;
    border-radius: 5px;
    font-size: 13px;
}

nav i {
    font-size: 17px;
}

.footer{
    display: flex;
    flex-direction: column;
    background-color: #e2e2e2;
}
.footer-card{
    display: flex;
    flex-direction: column;
    padding: 16px;
}
.footer-card-head{
    background-color: #808388;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    height: 100px;
}
.footer-card-content > div{
    display: flex;
    padding: 10px 0;
    align-items: center;
    margin: 10px 10px;
    border-bottom: 2px solid rgb(155, 155, 155);
}
.icon{
    width: 30px;
    margin-left: 10px;
}
.text{
    color: rgb(70, 70, 70);
    text-align: justify;
}


@media only screen and (min-width: 1100px) {
    .burger-div{
        display: none !important;
    }
    .title{
        padding: 0 30px;
    }
    .nav-hide {
        /* left: 0; */
    }
    nav {
        width: calc(100% - 200px);
        height: 68px;
        padding: 0;
        background-color: rgba(0, 0, 0, 0);
        color: white;
        top: 0;
        left: 30px !important;
        flex-direction: row;
        align-items: center;
        justify-content: end;
    }
    nav a{
        background-color: transparent;
        color: white;
        font-weight: 200;
        border-right: 1px solid rgba(255, 255, 255, 0.644);
        border-radius: 0;
        margin: 0;
        padding: 0 20px;
    }
    nav a > span{
        margin-left: 5px;
    }

    .footer{
        flex-direction: row;
    }
    .footer-card{
        width: calc(100% - 32px);
    }
}