*{
   margin:0;
   padding: 0;
   box-sizing: border-box;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   text-decoration: none;
}

html{
    /* font-size: 62.5%; */
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}


body{
    background-color:#e9ebee;
}
@media (max-width:500px){
    body{
        background-color: #fff;
    }
}
input{
    border:0;
    outline: 0;
}

a{
    text-decoration: none !important;
    color: #aaa;
}
i{
    color:#111;
}
/* 
 *--------------------------------------------------------------------------------------
 * Styling all icons in the page starts here
 *--------------------------------------------------------------------------------------
*/
i{
    cursor: pointer;
}


/* 
 *--------------------------------------------------------------------------------------
 * Styling all icons in the page ends here
 *--------------------------------------------------------------------------------------
*/


/* 
 *--------------------------------------------------------------------------------------
 * Styling the navigation bar starts here
 *--------------------------------------------------------------------------------------
*/
nav{
    position: sticky;
    z-index: 5000;
    width:100%;
    background-color: rgba(255,255,255,.8);
    top: 0;
    left: 0;
    display: flex;
    align-items:center;
    justify-content: space-between;
    padding: 0 10px;
    box-shadow:0 0 4px 0px rgba(1,1,1,.2);
    backdrop-filter: blur(10px);
}

/* nav .left-box, nav .middle-box,nav .right-box{
    
}
 */


nav .left-box{
    justify-self: flex-start;
    display: flex;
    align-items: center;
}



/* 
nav .left-box .logo-container{
    
} */

nav .logo-container .logo-anim-container{
   /* display: inline-block; */
   border-radius: 50%;
   position: relative;
   overflow: visible;
}

nav .logo-container .logo-anim-container .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    height: 100%;
    z-index: 5111;
    border-radius: 50%;
    cursor: pointer;
}
nav .logo-container .logo-anim-container .moving-box{
    width: 10px;
    background: linear-gradient(to bottom right,rgb(6, 218, 255),rgb(13, 93, 212),rgb(32, 8, 165));
    position: absolute;
    left:80%;
    top:50%;
    margin-top: -25px;
    height: 50px;
    z-index: 5011;
    border-top-right-radius: 21px;
    border-bottom-right-radius: 21px;
    display: none;
    /* transition: width 10s linear 5s; */
}

nav .logo-container .logo-anim-container:hover .overlay{
    background: linear-gradient(to bottom right,rgb(6, 218, 255),rgb(13, 93, 212),rgb(32, 8, 165));
    box-shadow: -3px 0 2px rgba(1,1,1,.5);
}
nav .logo-container .logo-anim-container:hover .moving-box{
    display: block;
    overflow: hidden;
    width:200px;
    box-shadow: 0 0 2px rgba(1,1,1,.6);
}


nav .logo-container .logo-anim-container:hover .moving-box .title{
    font-size: 16px;
    color: white;
    padding: 0;
    padding-left: 20px;
    padding-top: 5px;
    margin: 0;
}
nav .logo-container .logo-anim-container:hover .moving-box p{
    margin: 0;
    padding: 0;
    font-size: 15px;
    padding-left: 20px;
    color: white;
}

nav .logo-container img{
    min-width:70px;
    min-height: 70px;
    max-height: 70px;
    max-width: 70px;
    position: relative;
    z-index: 5770;
    cursor: pointer;
}





nav .left-box .nav-search-box{
  margin-left: 10px;
  background-color: #f7f7f7;
  display: flex;
  align-items: center;
  border-radius: 21px;
  padding: 0 15px;
  overflow: hidden;
}

nav .left-box .nav-search-box i{
    margin-right: 5px;
    font-size: 20px;
    color:#ccc;
}
nav .left-box .nav-search-box input{
    background: transparent;
    padding: 10px 10px;
    max-width:200px;
}
nav .left-box .nav-search-box input::placeholder{
    color:#111;
}
nav .left-box .nav-search-box:hover i{
    color:#111;
}




nav .middle-box{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content:flex-start;
}
nav .middle-box i{
    margin: 0 40px;
    font-size: 20px;
}




nav .right-box{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:10px
}

nav .right-box .icon-wrapper{
    background-color:#f7f7f7;
    padding: 2px 0;
     padding-right: 30px; 
     padding-left: 5px; 
    border-radius: 21px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    text-decoration: none;
}
nav .right-box .icon-wrapper span{
    background:#5995fd;
    min-height: 40px;
    min-width:40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 5px;
}

nav .right-box .icon-wrapper i{
    color: white;
}

nav .right-box .icon-wrapper:hover{
    background-color: #eee;
    color: #4481eb;
}
nav .right-box .icon-wrapper:hover span{
    background-color: #4481eb;
}


/* Styling the dropdown menu in the icon .icon-wrapper */
nav .icon-wrapper .dropdown-menu-wrapper{
    position: absolute;
    top:105%;
    left: 0;
    /* margin-top: 10px; */
    height: 350px;
    width:300px;
    /* background: rgba(255,255,255,.9); */
    background-color: #5995fd;
    border-radius: 5px;
    box-shadow:0 0 4px 0px rgba(1,1,1,.2);
    display: none;
    z-index: 5001;
    backdrop-filter: blur(10px);
    justify-content: space-between;
    /* overflow: hidden; */
}
nav .icon-wrapper-with-dropdown:hover .dropdown-menu-wrapper{
    display: flex;
}

/* //The arrow pointer */
nav .icon-wrapper-with-dropdown .dropdown-menu-wrapper:after{
content: '';
width: 0px;
height: 0px;
border-top: 10px solid transparent;
border-left: 10px solid transparent;
border-bottom:10px solid #5995fd;
border-right:10px solid transparent;
position: absolute;
left: 8%;
bottom: 100%;
margin-left: -10px;
z-index: 5010;
}

nav .icon-wrapper-with-dropdown:hover .dropdown-menu-wrapper .box{

}
nav .icon-wrapper-with-dropdown .dropdown-menu-wrapper .box-1{
    width:65%;
    padding: 10px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

nav .icon-wrapper-with-dropdown .dropdown-menu-wrapper .box-1 .profile-picture-wrapper{
    width:60px;
    height: 60px;
    margin: auto;
    overflow: hidden;
    margin-top: 20px;
    border:solid 4px #fff;
}
nav .icon-wrapper-with-dropdown .dropdown-menu-wrapper .box-1 .profile-picture-wrapper .profile-picture{
    max-height: 100%;
    min-height: 100%;
    max-width:100%;
    min-width: 100%;
    object-fit: cover;
}
nav .icon-wrapper-with-dropdown .dropdown-menu-wrapper .box-1 .name{
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 5px 0;
}
nav .icon-wrapper-with-dropdown .dropdown-menu-wrapper .box-1 .heading{
    font-size: 18px;
    color: white;
}
nav .icon-wrapper-with-dropdown .dropdown-menu-wrapper .box-1 .list{
    color:white;
    font-size: 16px;
}
nav .icon-wrapper-with-dropdown .dropdown-menu-wrapper .box-1 .list:hover{
    color:magenta;
}
nav .icon-wrapper-with-dropdown .dropdown-menu-wrapper .box-1 .list .a1{
    width:30px;
    text-align: center;
    display: inline-block;
}

nav .icon-wrapper-with-dropdown .dropdown-menu-wrapper .box-1 .list .a1 i{
    font-size: 18px;
}




nav .icon-wrapper-with-dropdown .dropdown-menu-wrapper .box-2{
    width:35%;
    background: white;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    overflow: hidden;
    box-shadow: -5px 0 10px rgba(1,1,1,.2);
    position: relative;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
nav .icon-wrapper-with-dropdown .dropdown-menu-wrapper .box-2 .bottom-setting-icon{
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: inline-block;
    width:40px;
    text-align: center;
}
nav .icon-wrapper-with-dropdown .dropdown-menu-wrapper .box-2 .bottom-setting-icon i{
    font-size: 20px;
}
nav .icon-wrapper-with-dropdown:hover .dropdown-menu-wrapper .box-2 .bottom-setting-icon:hover i{
    text-shadow: 0 0 1px rgba(1,1,1,.2);
}

nav .icon-wrapper-with-dropdown:hover .dropdown-menu-wrapper .dropdown-item i{
    color:#808080;
}


















/* Round icons */
nav .right-box .round-btn-container{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}
nav .right-box .round-btn-container .round-btn{
    width:40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    cursor: pointer;
}
nav .right-box .round-btn-container .round-btn i{
    color: #808080;
}
nav .right-box .round-btn-container .round-btn:hover{
    background-color: #eee;
}
nav .right-box .round-btn-container .round-btn:hover i{
    color:#4481eb;
}
nav .menu-btn{
    display: none;
    margin: 0px 10px;
}
nav .menu-btn i{
    font-size: 30px;
}


/* Styling the drop down in rounded-btn-container */
nav .right-box .round-btn-container  .drop-down-wrapper{
    position: absolute;
    width:500px;
    top:105%;
    right: 10%;
    /* background-color:rgba(255,255,255,.9); */
    background-color: #eee;
    border-radius: 10px;
    box-shadow:0 10px 20px 0px rgba(5,5,5,.1);
    display: none;
    z-index: 5001;
    backdrop-filter: blur(10px);
    justify-content: center;
    padding: 20px 10px;
    flex-direction: column;
    gap: 5px;
}

/* //The arrow pointer */
nav .right-box .round-btn-container  .drop-down-wrapper:after{
    content: '';
    width: 0px;
    height: 0px;
    border-top: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom:10px solid #5995fd;
    border-right:10px solid transparent;
    position: absolute;
    left: 74%;
    bottom: 100%;
    margin-left: -10px;
    z-index: 5010;
    }
nav .right-box .round-btn-container   .rounded-btn-with-dropdown-1:hover .drop-down-wrapper{
    display: flex;
}



/* //Styling the drop down  */
nav .right-box .round-btn-container  .drop-down-wrapper .title{
   padding: 0;
   margin: 0;
   color:#aaa;
}
nav .right-box .round-btn-container  .drop-down-wrapper .dropdown-nav{
    height: 50px;
    width: 100%;
    box-shadow: 0 0 0 0 transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav .right-box .round-btn-container  .drop-down-wrapper .dropdown-nav .search-input-wrapper{
    width:300px;
    background-color: white;
    padding: 0 10px;
    border-radius: 21px;
    display: flex;
    align-items: center;
    box-shadow:0 0 1px 0 rgba(5,5,5,.2);
    overflow:hidden;
}
nav .right-box .round-btn-container  .drop-down-wrapper .dropdown-nav .search-input-wrapper i{
    width:30px;
}
nav .right-box .round-btn-container  .drop-down-wrapper .dropdown-nav .search-input-wrapper input{
    padding: 10px 0;
    padding-left:10px;
    width:100vh;
}
nav .right-box .round-btn-container  .drop-down-wrapper .dropdown-nav img{
    width:50px;
    height: 50px;
    border-radius: 50%;
}







nav .right-box .round-btn-container  .drop-down-wrapper .box-container {
    display: flex;
    gap: 10px;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}
nav .right-box .round-btn-container  .drop-down-wrapper .box-container .box{
   background-color: #fff;
   height: 400px;
   border-radius: 10px;
   box-shadow:0 0 1px 0 rgba(5,5,5,.2);
}

nav .right-box .round-btn-container  .drop-down-wrapper .box-container .box-1{
   width:60%;
   padding:15px 10px;
}
nav .right-box .round-btn-container  .drop-down-wrapper .box-container .box-2{
    width:35%;
    padding:15px 10px;
}

nav .right-box .round-btn-container  .drop-down-wrapper .box-container .box-1 .heading{
    font-size: 16px;
}
nav .right-box .round-btn-container  .drop-down-wrapper .box-container .box-1 .list:hover{
    color: #4481eb;
}
nav .right-box .round-btn-container  .drop-down-wrapper .box-container .box-1 .list .a1{
    width:30px;
    text-align: center;
    display: inline-block;
}
nav .right-box .round-btn-container  .drop-down-wrapper .box-container .box-1 .list .a1 i{
    font-size: 20px;
}

nav .right-box .round-btn-container  .drop-down-wrapper .box-container .box-2 .heading{
    font-size: 20px;
}
nav .right-box .round-btn-container  .drop-down-wrapper .box-container .box-2 .list:hover{
    color: #4481eb;
}
nav .right-box .round-btn-container  .drop-down-wrapper .box-container .box-2 .list .a1{
    width:30px;
    text-align: center;
    display: inline-block;
}
nav .right-box .round-btn-container  .drop-down-wrapper .box-container .box-2 .list .a1 i{
    font-size: 18px;
}























nav .right-box .round-btn-container   .rounded-btn-with-dropdown-2 .drop-down-wrapper{
    width:400px;
    height: 500px;
    /* background-color: #5995fd; */
    gap: 0;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    padding: 0;
}
/* //The arrow pointer */
nav .right-box .round-btn-container  .rounded-btn-with-dropdown-2 .drop-down-wrapper:after{
    content: '';
    width: 0px;
    height: 0px;
    border-top: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom:10px solid #5995fd;
    border-right:10px solid transparent;
    position: absolute;
    left: 82%;
    bottom: 100%;
    margin-left: -10px;
    z-index: 5010;
    }

nav .right-box .round-btn-container   .rounded-btn-with-dropdown-2 .drop-down-wrapper .box{
   height: 100%;
   padding: 10px;
}

nav .right-box .round-btn-container   .rounded-btn-with-dropdown-2 .drop-down-wrapper .box-1{
    width:65%;
    position: relative;
}

nav .right-box .round-btn-container   .rounded-btn-with-dropdown-2 .drop-down-wrapper .box-2{
    width:35%;
    background-color: white;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    overflow: hidden;
    box-shadow: -5px 0 10px rgba(1,1,1,.2);
    position: relative;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
nav .right-box .round-btn-container   .rounded-btn-with-dropdown-2 .drop-down-wrapper .box-2 .heading{
    font-size: 17px;
}
nav .right-box .round-btn-container   .rounded-btn-with-dropdown-2 .drop-down-wrapper .box-2 .list .a1{
    width:30px;
    text-align: center;
    display: inline-block;
}
nav .right-box .round-btn-container   .rounded-btn-with-dropdown-2 .drop-down-wrapper .box-2 .list .a1 i{
    font-size: 20px;
}

nav .right-box .round-btn-container   .rounded-btn-with-dropdown-2:hover .drop-down-wrapper{
   display: flex;
}

nav .right-box .round-btn-container   .rounded-btn-with-dropdown-2 .drop-down-wrapper .box-1 .dropdown-nav{
    height: 40px;
    width:100%;
}
nav .right-box .round-btn-container   .rounded-btn-with-dropdown-2 .drop-down-wrapper .box-1 .dropdown-nav .title{
    font-size: 20px;
    /* color: white; */
}
nav .right-box .round-btn-container   .rounded-btn-with-dropdown-2 .drop-down-wrapper .box-1 .message-container{
    width:100%;
    height: 420px;
    background: white;
    border-radius: 10px;
}

nav .right-box .round-btn-container   .rounded-btn-with-dropdown-2 .drop-down-wrapper .box-1 .message-container .box{
    max-width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
nav .right-box .round-btn-container   .rounded-btn-with-dropdown-2 .drop-down-wrapper .box-1 .message-container .box .message{
    width:78%;
    background: #5995fd;
    padding: 10px 20px;
    font-size: 15px;
    color: white;
    border-radius: 10px;
    position: relative;
}

/* //The arrow pointer */
nav .right-box .round-btn-container   .rounded-btn-with-dropdown-2 .drop-down-wrapper .box-1 .message-container .box .message:after{
    content: '';
    width: 0px;
    height: 0px;
    border-top: 10px solid transparent;
    border-left: 10px solid #5995fd;
    border-bottom:10px solid transparent;
    border-right:10px solid transparent;
    position: absolute;
    left: 100%;
    bottom: 50%;
    margin-bottom: -10px;
    z-index: 5010;
    }

nav .right-box .round-btn-container   .rounded-btn-with-dropdown-2 .drop-down-wrapper .box-1 .message-container .box img{
    width:40px;
    height: 40px;
    max-width: 40px;
    max-height: 40px;
    min-height: 40px;
    min-width: 40px;
    border-radius: 50%;
}






























nav .right-box .round-btn-container   .rounded-btn-with-dropdown-3 .drop-down-wrapper{
     height: 300px;
     width:200px;
     display:none;
     right: 0;
     top: 105%;
}

nav .right-box .round-btn-container   .rounded-btn-with-dropdown-3:hover .drop-down-wrapper{
    display: block;
}



nav .right-box .round-btn-container   .rounded-btn-with-dropdown-3 .drop-down-wrapper:after{
    content: '';
    width: 0px;
    height: 0px;
    border-top: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom:10px solid #5995fd;
    border-right:10px solid transparent;
    position: absolute;
    left: 85%;
    bottom: 100%;
    margin-left: -10px;
    z-index: 5010;
    }


    nav .right-box .round-btn-container   .rounded-btn-with-dropdown-3 .drop-down-wrapper .dropdown-nav{
        width:100%;
        height: 50px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    nav .right-box .round-btn-container   .rounded-btn-with-dropdown-3 .drop-down-wrapper .dropdown-nav .title{
        font-size: 20px;
    }
    nav .right-box .round-btn-container   .rounded-btn-with-dropdown-3 .drop-down-wrapper .dropdown-nav p{
        font-size: 15px;
        color:red;
    }

    nav .right-box .round-btn-container   .rounded-btn-with-dropdown-3 .drop-down-wrapper .box{
        width:100%;
        height: 220px;
        background-color: white;
        box-shadow:0 0 1px 0 rgba(5,5,5,.2);
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        gap:10px;
        align-items: center;
        justify-content: center;
    }
    nav .right-box .round-btn-container   .rounded-btn-with-dropdown-3 .drop-down-wrapper .box a{
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 20px;
        border-radius: 21px;
        color: white;
        box-shadow:0 0 2px 0 rgba(5,5,5,.2);
    }
    nav .right-box .round-btn-container   .rounded-btn-with-dropdown-3 .drop-down-wrapper .box a i{
        color:white;
    }
   
    nav .right-box .round-btn-container   .rounded-btn-with-dropdown-3 .drop-down-wrapper .box a.playstore{
        background: linear-gradient(to bottom right,#27e201,#23be04,#1b8d04);
    }
    nav .right-box .round-btn-container   .rounded-btn-with-dropdown-3 .drop-down-wrapper .box a.applestore{
        background: linear-gradient(to bottom right,#6c706b,#1e201d,#0f160e);
    }

    nav .right-box .round-btn-container   .rounded-btn-with-dropdown-3 .drop-down-wrapper .box a:hover{
        box-shadow:0 0 5px 0 rgba(5,5,5,.2);
    }
    


/* nav responsive design */
@media (max-width:1022px){
     nav .middle-box{
         display: none;
     }
     nav .menu-btn{
        display: block;
    }
}

@media (max-width:900px){
    nav{
        justify-content: space-between;
        overflow: hidden;
    }
    /* Change the size of search box  */
    nav .left-box .nav-search-box{
        overflow: hidden;
        max-width:auto;
        min-width: auto;
    }
    nav .left-box .nav-search-box input{
      max-width:80px;
    }



    nav .middle-box{
        display: none;
    }

     
    /* Hide icon wrapper */
    nav .right-box .icon-wrapper{
        display: none;
    }

    /* Hide rounded btn container */
    nav .right-box .round-btn-container{
        display: none;
    }
    nav .menu-btn{
        display: block;
    }

}





/* 
 *--------------------------------------------------------------------------------------
 * Styling the navigation bar ends here
 *--------------------------------------------------------------------------------------
*/

























/* 
 *-------------------------------------------------------------------------------------
 * Designing the body section starts here
 *--------------------------------------------------------------------------------------
*/
 .main{
     position: relative;
 }

 .main .sidebar{
     width:20%;
     height: 100%;
     position: fixed;
     margin-top: 0;
     /* background-color: white; */
     display: flex;
     justify-content: flex-start;
     overflow-x: hidden;
     overflow-y: auto;
     transition: all 750ms ease;
 }

 .main .sidebar::-webkit-scrollbar-thumb{
     display: none;
 }
 .main .sidebar:hover .sidebar::-webkit-scrollbar-thumb{
     display: block;
 }
 .main .sidebar .sidebar-icon-wrapper{
    width:40px;
    height: 100%;
    background-color: rgba(255,255,255,.8);
 }
 .main .sidebar .sidebar-icon-wrapper .icon{
     display: flex;
     align-items: center;
     justify-content: center;
     min-height: 40px;
     min-width: 40px;
     margin: 10px 0;
 }
 .main .sidebar .sidebar-icon-wrapper .icon i{
     font-size: 20px;
 }
 /* Give icons gradient color  */
 .a{
    background: -webkit-linear-gradient(rgb(0, 198, 248), rgb(103, 8, 226));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

.b{
    background: -webkit-linear-gradient(rgb(223, 10, 10), rgb(223, 10, 10));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }


  
.c{
    background: -webkit-linear-gradient(to bottom right, rgb(0, 198, 248), rgb(103, 8, 226));
    background: linear-gradient(to bottom right, rgb(240, 0, 248), rgb(103, 8, 226));;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }


  
.d{
    background: -webkit-linear-gradient(rgb(104, 236, 92), rgb(4, 0, 255));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }


  .e{
    background: -webkit-linear-gradient(rgb(0, 198, 248), rgb(103, 8, 226));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  
  .f{
    background: -webkit-linear-gradient(rgb(244, 248, 0), rgb(252, 186, 5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }


  
  .g{
    background: -webkit-linear-gradient(rgb(4, 192, 29), rgb(54, 252, 5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }


  .h{
    background: -webkit-linear-gradient(rgb(0, 211, 248), rgb(5, 252, 240));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }






 .main .sidebar .sidebar-content-wrapper{
     background-color: rgba(255,255,255,.3);
     width:40vh;
     height: 100%;
     transition: all 750ms ease;
     position: relative;
 }

 .main .sidebar .sidebar-content-wrapper a{
    display: flex;
    align-items:center;
    justify-content: flex-start;
    min-height: 40px;
    min-width: 40px;
    margin: 10px 0;
    height: 40px;
    padding: 0 10px;
    text-decoration: none;
    cursor: pointer;
 }
 .main .sidebar .sidebar-content-wrapper .quiz-categories{
     padding: 0;
     position: absolute;
     bottom: 0;
     padding-bottom: 20px;
     width:100%;
 }
 @media (max-height:665px){
    .main .sidebar .sidebar-content-wrapper .quiz-categories{
        position: static;
    }
 }
 .main .sidebar .sidebar-content-wrapper .quiz-categories .title{
     font-size: 15px;
     color: #aaa;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     display: flex;
     align-items: center;
     justify-content: flex-start;
     margin: 0;
     padding: 0;
 }
 .main .sidebar .sidebar-content-wrapper .quiz-categories .title a{
     margin: 0;
 }
 .main .sidebar .sidebar-content-wrapper .quiz-categories  .categorie-wrapper{
     height: 250px;
     overflow-x: hidden;
     overflow-y: auto;
     background-color: #4481eb;
     margin: 0;
     padding: 10px;
     border-top-left-radius: 20px;
     border-top-right-radius: 20px;
 }
 .main .sidebar .sidebar-content-wrapper .quiz-categories .categorie-wrapper .category{
     display: flex;
     align-items: center;
     justify-content: flex-start;
     padding: 0;
     margin: 5px 0;
     height: auto;
 }
 .main .sidebar .sidebar-content-wrapper .quiz-categories .categorie-wrapper .category img{
     width:30px;
     height: 30px;
     object-fit: cover;
     border-radius: 50%;
 }
 .main .sidebar .sidebar-content-wrapper .quiz-categories .categorie-wrapper .category a{
     padding: 5px 5px;
     margin: 0;
     color: white;
 }

.small-sidebar{
    max-width:40px;
    overflow:hidden;
    transition: all 750ms ease;
}






 .main .content{
     width:100%;
     /* padding-top:2rem; */
     padding-left:20%;
     transition: all 750ms ease;
     padding-right: 0;
 }

 .main .large-container{
    padding-left: 40px;
    transition: all 750ms ease;
}

.main .content  .pages-nav{
    width:100%;
    background-color:rgba(255,255,255,.3);
    padding: 15px 10px;
    display: flex;
    align-items: center;
    overflow-y: hidden;
    overflow-x: auto;
    border: 0;
}
.main .content  .pages-nav ul{
    list-style: none;
    padding: 0;
    margin: 0;
    border: 0;
}

.main .content  .pages-nav ul li{
    background-color: rgba(255,255,255,.8);
    padding: 5 10px;
    border-radius: 20px;
    color: #808080;
    box-shadow: 0 0 3px 0 rgba(1,1,1,.5);
    display: inline-block;
}
.main .content  .pages-nav ul li:hover{
    color: #4481eb;
    box-shadow: 0 0 3px 0 #4481eb;
}





 @media (max-width:1022px){
     .main .sidebar{
         display: none;
     }
     .main .content{
         width:100%;
         padding-left: 0;
     }
 }



/* 
 *-------------------------------------------------------------------------------------
 * Designing the body section ends here
 *--------------------------------------------------------------------------------------
*/









/* 
 *---------------------------------------------------------------------------------------
 * Design the home page and quize categories starts here
 *---------------------------------------------------------------------------------------
*/
.home-wrapper {
    padding: 0 20px;
    margin: auto;
    padding: 0;
}
.home-wrapper .quiz-categories-container{
    min-height: 400px;
    display: flex;
    flex-wrap:wrap;
    justify-content:space-between;
    margin: auto;
    padding-right: 10px;
}

.home-wrapper .quiz-categories-container .box{
    /* max-width:400px;*/
    max-width: 320px; 
    min-width: 320px;
    /* width:40%; */
     max-height: 200px; 
     min-height: 200px;
     height: 200px;
    /* background-color: rgba(255,255,255,.8); */
    border-top-left-radius: 40%;
    border-bottom-right-radius: 40%;
    border-bottom-left-radius: 50%;
    position: relative;
    margin: 10px;
    /* overflow:hidden;  */
    outline: 0;
    box-shadow:0 0 4px 0px rgba(1,1,1,.2);
}
/* .home-wrapper .quiz-categories-container .box img{
    max-width: 100%;
    max-height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    outline: 0;
    
} */
.home-wrapper .quiz-categories-container .box .box-overlay{
    position: absolute;
    top:0;
    left: 0;
    width:100%;
    height: 100%;
    background-color: rgba(255,255,255,.8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    backdrop-filter: blur(5px);
    cursor: pointer;
    border-top-left-radius: 40%;
    border-bottom-right-radius: 40%;
    border-bottom-left-radius: 50%;
}
.home-wrapper .quiz-categories-container .box .box-overlay .title{
    font-size: 16px;
    color: #aaa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.home-wrapper .quiz-categories-container .box .box-overlay:hover .title{
    color: #4481eb;
}

.home-wrapper .quiz-categories-container .box .box-overlay .picture-container{
    position: absolute;
    top:-10px;
    right:-10px;
    width:50px;
    height: 50px;
    background-color: white;
    z-index: 200;
    border-radius: 50%;
    box-shadow:2px -2px 2px 0px rgba(1,1,1,.2);
}
.home-wrapper .quiz-categories-container .box .box-overlay .picture-container img{
    border-radius: 50%;
    max-width: 100%;
    max-height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    outline: 0;
}


.home-wrapper .quiz-categories-container .box .box-overlay .icons-container a i{
   font-size: 15px;
   margin: 10px 15px;
}

.home-wrapper .quiz-categories-container .box::before{
    content: '';
    width: 50px;
    height: 50px;
    /* background-color: #eee; */
    position: absolute;
    bottom: 0;
    left: 0;
    border-top-right-radius: 70%;
    /* border-top:solid 4px orange; */
    z-index: 110;
}


.home-wrapper .quiz-categories-container .box::after{
    content: '';
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0px;
    right: 0px;
    border-bottom-left-radius: 70%;
    border-bottom:solid 4px #5995fd;
    z-index: 110;
}

.home-wrapper .quiz-categories-container .box:hover{
    box-shadow:0 0 4px 0px #4481eb;
}
.home-wrapper .quiz-categories-container .box:hover .picture-container{
    box-shadow:2px -2px 2px 0px #4481eb;
}





/* Responsive design for the homepage quiz categories  */
@media (max-width:500px){
    .home-wrapper .quiz-categories-container{
        width:90%;
        display: flex;
        flex-wrap:wrap;
        justify-content:space-between;
        padding: 0;
    }
    .home-wrapper .quiz-categories-container .box{
        /* max-width:400px;*/
        max-width: 100%; 
        min-width: 100%;
        /* background-color: rgba(255,255,255,.8); */
        border-radius: 10px;
        margin: 0;
        margin-top: 30px;
        /* overflow:hidden;  */
        outline: 0;
        box-shadow:0 0 4px 0px rgba(1,1,1,.2);
    }

    .home-wrapper .quiz-categories-container .box .box-overlay{
        position: absolute;
        top:0;
        left: 0;
        width:100%;
        height: 100%;
        background-color: rgba(255,255,255,.8);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        backdrop-filter: blur(5px);
        cursor: pointer;
        border-radius: 10px;
    }
    .home-wrapper .quiz-categories-container .box .box-overlay .title{
        margin-top: 10px;
    }
}



/* 
 *---------------------------------------------------------------------------------------
 * Design the home page and quize categories ends here
 *---------------------------------------------------------------------------------------
*/




/* 
 *----------------------------------------------------------------------------------------
 * Defining border colors starts here
 *
 *----------------------------------------------------------------------------------------
*/
.orange{
   border-color: orange;
}
.orangered{
    border-color: orangered;
}




/* The code below belongs to quiz instruction page  */
.start-quiz-btn{
    margin: auto !important;
    display: inline-block;
    padding: 10px 20px;
    background-color: #5995fd;
    border-radius: 25px;
    color: white !important;
}
.start-quiz-btn:hover{
    background-color: #4481eb;
}



/* RESPONSIVE DESIGN FOR THE WHOLE HOMEPAGE STARTS HERE */

