body{
    padding: 0;
    margin: 0; 
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}
/*Common Sidebar Design */

.sidebar-section{
    position: fixed;
    top: 0;
    left: 0;
    padding-left: 10px;
    padding-right: 10px;
    width: 200px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.search{
    display: none;
}
.mobile{
    display: none;
}

.logo{
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    margin-top: 20px;
    margin-left: 10px;
    
}
.logo img{
        width: 100px;
        height: 30px;
}
.logo .logo-img{
    margin-right: 1rem;
    font-size: 30px;
}

.menu-section{
    
        margin-top: 10px;
        margin-left: 10px;
    
}
.menu-section a{
    width: 100%;
    font-size: 1.1rem;
    color: black;
    display: flex;
    align-items: center;
    line-height: 55px;
    text-decoration: none;
}

.menu-section .option:hover{
    font-size: 1.2rem;
    font-weight: bold;
    transition: 0.3s;
}

.menu-section .icon {
    margin-right: 1rem;
    font-size: 25px;

}
.menu-section .profile_image{
    height: 30px;
    width: 30px;
    margin-right: 1rem;
    border-radius: 50%;
    padding-top: 10px
}

  /* profile css*/
.common-margin{
    margin-left: 90px;
    display: inline-flex;
    position: absolute;
    height: 300px;
    width: 900px;
    top: 100px;
  
}

/*Media Query*/

@media screen and (min-width:700px) and (max-width:1300px) {
    .sidebar-section{
        padding-left: 10px;
        padding-right: 10px;
        width: 70px;
        height: 100vh;
    
    }
    .logo .logo-png{
       display: none;
    }
    .logo .logo-img{
        margin-right: 1rem;
        font-size: 30px;
    }
    .menu-section .option{
        display: none;
    }

}





.explore{
    position: absolute;
    width: calc(100% - 200px);
    left: 200px;
    background-color: white;
    top: 0;
    min-height: 100vh; 
    overflow:hidden;
    border-left: 1px solid #dfdbdb;
    display: flex;
    justify-content: center;
    padding-top: 30px;
}
.explore .post-reels{
    display: flex;
    width: 72%;
}
.explore .post-reels .left-reel{
    width: 33.3%;
    display: flex;
    flex-direction: column;
}
.explore .post-reels .left-reel img{
    width: 100%;
    height: 300px;
}
.explore .post-reels .middle-reel{
    width: 33.3%;
    display: flex;
    flex-direction: column;
}
.explore .post-reels .middle-reel video{
    width: 100%;
    height:600px;
    
}
.explore .post-reels .right-reel{
    width: 33.3%;
    display: flex;
    flex-direction: column;
}
.explore .post-reels .right-reel img{
    width: 100%;
    height: 300px;
}


@media screen and (min-width:700px) and (max-width:1300px){
    .explore{
        position: absolute;
        width: calc(100% - 70px);
        left: 70px;
        background-color: white;
        top: 0;
        min-height: 100vh; 
        overflow:hidden;
        border-left: 1px solid #dfdbdb;
        display: flex;
        justify-content: center;
    }
    .explore .post-reels{
        display: flex;
        justify-content: center;
        width: 78%;
        }
       .explore .post-reels .left-reel img{
        width: 100%;
        height: 250px;
    }
    .explore .post-reels .middle-reel video{
        width: 100%;
        height:505px;
    }
    .explore .post-reels .right-reel img{
        width: 100%;
        height: 250px;
    }
}
@media screen and (min-width:1115px) and (max-width:1300px){
   
    .explore{
        position: absolute;
        width: calc(100% - 70px);
        left: 70px;
        background-color: white;
        top: 0;
        min-height: 100vh; 
        overflow:hidden;
        border-left: 1px solid #dfdbdb;
        display: flex;
        justify-content: center;
    }
    
}
@media screen and (max-width:700px){
    .sidebar-section{
        display: none;
    }
   .explore{
    position: absolute;
    width: 100%;
    left: 0;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center; 
   } 
   .explore .post-reels{
    display: flex;
    justify-content: center;
    width: 95%;
    }
   .explore .post-reels .left-reel img{
    width: 100%;
    height: 200px;
}
.explore .post-reels .middle-reel video{
    width: 100%;
    height:405px;
}
.explore .post-reels .right-reel img{
    width: 100%;
    height: 200px;
}
.search{
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    padding-bottom: 20px;
    
}
.search input{
    width: 90%;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    background-color: rgb(236, 234, 234);
}
   .mobile{
    position: fixed;
    bottom: 0;
    background-color: white;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding-top: 15px;
    padding-bottom: 5px;
    border-top: 1px solid #e2e1e1;
   }
   .mobile-view img{
    height: 35px;
width: 35px;
margin-right: 1rem;
border-radius: 50%;
}
.mobile-view{
    font-size: 30px;
    
}
.mobile-view a{
    color: black;
}
.mobile-view:hover{
    font-size: 33px;
    transition: 0.2s;
}
    
}

