* {
    padding: 0px;
    margin: 0px;
}

body {

    font-family: 'iransans';
    min-height:100vh;
    background-image: url(../images/back\ g-SgA-unsplash.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    direction: rtl;
}



.col{font-size: 500;
    color: #e247af;
}
          .footer {
              position: fixed;
                
              left: 0;
              bottom:0;
              width: 100%;
           
              background-color: red;
              color: white;
              text-align: center;
          }
                  .footer1 {
                      margin-bottom: 50px;
        
                      left: 0;
                      bottom: 0;
                      width: 100%;
        
                      background-color: red;
                      color: white;
                      text-align: center;
                  }



nav {
    background-color: white;
    box-shadow: 3px 3px 5px .4px;
    

  
  
 


}



nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    
   


}

nav li {
    height:90px;
   
}

nav a{
    height: 100%;
    padding: 0px 30px;
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    font-weight: bold;
    color: blue;
    font-size:20px;
   
    
}


    





nav li:first-child {
    margin-left: auto;
}

nav a:hover {
    background-color: aliceblue;
    color: rgb(42, 165, 58);
  
    
}






.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 400px;
    z-index: 999;
    background-color: rgba(243, 243, 243, 0.842);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    display: none;
    backdrop-filter: blur(3px);

}
.sidebar ul {
position: absolute;
width: 120Px;
    height: 60px;
    background: #fff;
    top: 200px;
    margin-right: 245px;
    box-shadow: 0px 0px 0px #13d00d;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease-in-out;
    z-index: 999;
}

.sidebar li {
    width: 100%;
  
}


.menuButton {
    display: none;
}

@media(max-width:800px) {

    /*mobile view */
    .hideonmobile {
        display: none;
    }

    .menuButton {
        display: block;
    }
}


@media(max-width:500px) {
    .sidebar {
        width: 100%;
    }


}

@media(min-width:800px) {
    .sidebar {
        display: none !important;
    }
}



nav ul li ul {
    position: absolute;
        width: 150Px;
        height: 50px;
        background: #fff;
        top: 130px;
        margin-right: 200px;
        box-shadow: 0px 0px 0px #ffffff;
        opacity: 0;
        visibility:hidden;
        transition: all .9s ease-in-out;
        z-index: 999;
       

}
nav ul li ul li {
width: 100%;
height: 60px;

}





nav >ul >li:hover ul{
opacity: 1;
visibility:visible ;

}




span{
    display: block;
}

.fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.fa-angle-down{
color: #13d00d;
}


