﻿* {
    padding: 0;
    margin: 0;
    direction: ltr;
    text-transform:uppercase;
}

.bigbar {
    display: flex;
    justify-content: space-between;
    background: #434343;
    align-items: center;
    width: 100%;
    position: fixed;
    z-index: 999;
    height: 110px;
    top: 0;
}


.divlogo {
    display: flex;
}

.logo {
    width: 70px;
    margin-right: 20px;
    margin-top: 10px;
}

.divtitle {
    display: flex;
    margin: 0 15px;
}

.titlee {
    color: white;
    font-family: almarai;
}

.divmenu {
    color: green;
    margin-left: 20px;
}

.themenu {
    height: 100%;
    font-size:12px;
    font-weight:600;
}

    .themenu ul {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        transition: .3s linear;
    }

        .themenu ul li {
            list-style: none;
            transition: .3s linear;
            margin: 0 5px;
        }


            .themenu ul li a {
                display: flex;
                justify-content: center;
                align-items: center;
                text-decoration: none;
                margin: 0 8px;
                color: white;
                cursor: pointer;
                text-align: center;
          
            }

        .themenu ul :hover {
            transform: scale(1.3) rotateX(360deg );
        }


.lango {
    width: 20px;
    margin: 0 10px;
    align-self: center;
    display: flex;
    align-items: center;
}




.smallbar {
    color: white;
    display: flex;
    justify-content: space-between;
    background: #434343;
    align-items: center;
    width: 100%;
    position: fixed;
    z-index: 999;
    height: 120px;
    top: 0;
    padding: 0 0;
}

.logosmall {
    width: 40px;
    margin-right: 50px;
    margin-top: 10px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.smallmenu {
    width: 60px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.smalltitle {
    font-size: 20px;
    display: flex;
    justify-content: end;
    align-items: center;
}

.menustrip {
    height: auto;
    display: grid;
    background: #43434386;
    width: 230px;
    border-radius: 15px;
    position: sticky;
    top: 100px;
    position: absolute;
    z-index: 997;
    justify-content: center;
}

    .menustrip a {
        color: white;
        text-decoration: none;
        font-size: 14px;
        margin: 10px 13px;
        cursor: pointer;
        transition: .3s linear;
        text-align: center;
    }

        .menustrip a:hover {
            transform: scale(1.3) rotateX(360deg );
        }




@media(max-width:790px) {
    .smallbar {
        display: flex;
    }
}

@media(min-width:790px) {
    .smallbar {
        display: none;
    }
}

@media(max-width:790px) {
    .bigbar {
        display: none;
    }
}

@media(min-width:790px) {
    .bigbar {
        display: flex;
    }
}

@media(min-width:790px) {
    .menustrip {
        display: none;
    }
}
