.sidebar{
    width: 25%;
  }
  .sidebar .left-box{
    left: 4vw;
  }
.meb-title{
    text-align: center;
    color: white;
    font-size: 30px;
}
.meb-title#leader::before{
    content: "👩‍⚖️👩‍⚖️";
}
.meb-title#wet-lab::before{
    content: "👨‍🔬👩‍🔬";
}
.meb-title#dry-lab::before{
    content: "👨‍🏫👩‍🏫";
}
.meb-title#hp::before{
    content: "👨‍💼👩‍💼";
}
.meb-title#art-wiki::before{
    content: "👩‍💻👨‍💻👩‍🎨";
}
.meb-container{
    margin: 4%;
    position: relative;
    display: flex;
}
.meb-card{
    position: relative;
    width: 300px;
    height: 350px;
    background-color: black;
    box-shadow: 0 30px 30px rgba(0,0,0,.4);
    border-radius: 20px;
    overflow: hidden;
    margin: 30px 30px;
    cursor: default;
}
.meb-card .meb-img{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.meb-card .meb-img img{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}
.meb-card:hover img{
    opacity: 0;
}
.meb-card .content{
    position: absolute;
    height: 30px;
    bottom: 20px;
    left: 10%;
    width: 80%;
    height: 60px;
    background-color: aliceblue;
    border-radius: 10px;
    transition: .5s;
    overflow: hidden;
    padding: 15px;
    box-sizing: border-box;
}
.meb-card .content h3{
    font-family: 'Poppins';
    font-size: 2.8vh;
    margin: 0;
}
.meb-card .content h3 span{
    display: inline-block;
    margin-left: 10px;
    padding: 0 5px;
    font-size:12px;
    background-color:cornflowerblue;
    border-radius: 20px;
    width: fit-content;
    color: white;
}
.meb-card .content h3~span{
    padding: 2px 4px;
    font-size:12px;
    border: cornflowerblue 1.5px solid;
    /* background-color:#cfb1a3; */
    border-radius: 7px;
    width: fit-content;
    color: cornflowerblue;
    opacity: 0;
    transition: .4s;
}
.meb-card .content .in-content{
    display: flex;
    flex-direction: column;
    height: 95%;
    justify-content: flex-start;
    align-items: center;

}
.meb-card .content p{
    padding-top: 10px;
    opacity: 0;
    transition: .5s;
    line-height: 28px;
    font-family: 'Louis';
}
.meb-card .content a{
    width: 100%;
    position: absolute;
    top: 90%;
    opacity: 0;
    transition: .5s;
    text-align: center;
    margin: 5px 0;
    color: cornflowerblue;
    text-decoration-line: underline;
    text-decoration-style: double;
}
.meb-card .content a::after{
    content: "👈";
}
.meb-card:hover .content h3~span{
    opacity: 1;
}
.meb-card:hover .content{
    width: 100%;
    height: 100%;
    bottom:0;
    left: 0;
}
.meb-card:hover .content p,.meb-card:hover .content a{
    opacity: 1;
    transition-delay: .3s;
}

/* .meb_container{
    width: 1200px;
  margin: 20px auto;
  padding: 0 10px;
  column-count: 5;
  -moz-column-gap:40px; 
  -webkit-column-gap:40px; 
  column-gap:40px;
}
.meb_card{
    width: 100%;
    margin: 0 0 20px;
    padding: 10px;
    overflow: hidden;
    background-color: #ffffff;
    break-inside: avoid;
    border: 1px solid #ccc;
}
.meb_card img{
    width: 100%;
}
.meb_card h2{
    margin: 10px 0 0;
    padding: 0;
  } */