#about_staff .Our {
    margin-left: 3rem;
    position: relative;
}
@media only screen and (max-width:992px){
    #about_staff .Our {
        margin-left: 0;
        position: relative;
    }
}
#about_staff .Our::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 70px;
    height: 3px;
    background-color: #ff0040;
    border-radius: 9px;
}
#about_staff .container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 70px 10px;
    padding: 30px 20px;
}
/* @media only screen and (max-width:768px) {
    #about_staff .container {
        display: grid;
        grid-template-columns: repeat(1,1fr);
    }
} */
@media only screen and (max-width:992px) {
    #about_staff .container {
        display: grid;
        grid-template-columns: repeat(1,1fr);
    }
}
#about_staff .container .card-imgBx {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 300px;
    height: 250px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45);
    transition: 0.5s;
}
@media only screen and (min-width:1400px) and (max-width:1600px) {
    #about_staff .container .card-imgBx {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        width: 420px;
        height: 270px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45);
        transition: 0.5s;
    }
    #about_staff .container .card-imgBx:hover {
        height: 300px;
    }
}

@media only screen and (min-width:1601px){
    #about_staff .container .card-imgBx {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        width: 530px;
        height: 270px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45);
        transition: 0.5s;
    }
    #about_staff .container .card-imgBx:hover {
        height: 300px;
    }
}


#about_staff .container .card-imgBx:hover {
    height: 270px;
}
#about_staff .container .card-imgBx .imgBx {
    position: absolute;
    top: 20px;
    width: 250px;
    height: 180px;
    background-color: #333;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.5s;
}
#about_staff .container .card-imgBx:hover .imgBx  {
    top: -20%;
    scale: 0.75;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
#about_staff .container .card-imgBx .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#about_staff .container .card-imgBx .imgBx-content {
    position: absolute;
    top: 205px;
    width: 100%;
    height: 35px;
    overflow: hidden;
    padding: 0 30px;
    text-align: center;
    transition: 0.5s;
}

#about_staff .container .card-imgBx:hover .imgBx-content {
    top: 110px;
    height: 270px;
}
#about_staff .container .card-imgBx .imgBx-content h4 {
    font-weight: 700;
    font-size: 18px;
    color: #ff0040;
}

