.instuctor-inner {
    padding: 50px 0;
}
.all-instructor-wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.instructor-wrap {
    background-color: var(--white-color);
    box-shadow: 0 6px 21px rgb(21 3 89 / 8%);
    border-radius: 5px;
    padding: 30px 10px;
    row-gap: 15px;
}
.instructor-image img {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    object-fit: cover;
}
.instructor-content {
    row-gap: 10px;
}
.instructor-content h4 {
    font-size: 1.2rem;
    font-weight: 500;
}

@media only screen and (max-width: 767px) {
    .all-instructor-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}