
.see-more-btn {
    display: inline-block;
    font-size: 1.7rem;
    padding: 1rem 3rem;
    background: var(--dribble);
    color: whitesmoke;
    cursor: pointer;
    border-radius: 20px;
}
.see-more-btn:hover{
    background: var(--info);
}
/*
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
*/

.staff {
    background: var(--ternary);
    margin: 0;
    padding: 0;
}
.staff h1 {
    color: var(--ligth-bg);
}
/*===== Card Css =====*/
.card-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 10px;
}
.card{
    position: relative;
    background: #fff;
    width: 350px;
    box-shadow: 0 5px 25px rgba(2, 2, 2, 0.25);
    border-radius: 10px;
    overflow: hidden;
}
.card .card-img{
    position: relative;
    width: 350px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--success);
    
}
.card .card-img img {
    width: 65%;
    height: 90%;
    border-radius: 100%;
}
.card-content {
    position: relative;
    text-align: center;
    margin: 15px;
}
.card-content .text{
    position: relative;
    font-size: 1.2em;
    text-align: center;
    height: 100px;
    overflow: hidden;
    transition: height 0.3s ease;
}
.card-content .fil{
    background: var(--info);
    border-start-start-radius:  20px;
    height: 8.5rem;
    margin-top: -1px;
}
 
.card-content .fil h3{
    font-size: 14px;
    font-weight: 600;
   }

.card-content .text::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #fff, transparent);
    display: none;
}

.card.gradient .card-content .text::before{
    display: block;
}
.card-content .see-more-btn{
    font-size: 1.2em;
    color: whitesmoke;
    user-select: none;
    cursor: pointer;
}
.card-content .see-more-btn:hover{
    color: #111; 
}
/*===== Media queries (max-width:450px) =====*/
@media screen and (max-width: 450px){
    .card-container{
        margin: 15px;
    }
    .card {
        width: 60%;
        
    }
    .card .card-img {
        width: 100%;
        max-width: 800px;
        height: 150px;
    }
    .card-content .fil{
        height: 14.5rem;
    }
}
/* Animation*/

img {
    transition: transform .3s ease;
}
img:hover {
    transform: scale(1.1);
}