.team_box,
.cheerleaders {
    background-color: #e9e9d2;
    padding: 100px 20px 20px;
    position: relative;
    text-align: center;
    border-radius: 25px;
    margin-bottom: 100px;
}

.faculity_wrapper__content .faculity_wrapper__grid {
    display: grid !important;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

.cheerleaders {
    background-color: #ffe398;
}

.faculity_wrapper .global_content {
    margin-top: 6rem;
}

.cheerleaders .team_box__image img {
    border: 3px solid #FFC830;
}

.team_box__image img {
    height: 140px;
    width: 140px;
    border-radius: 100px;
    object-fit: cover;
    border: 3px solid #BFC060;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -4rem;
}

.team_box__info h3 {
    text-transform: uppercase;
    color: #779EC2;
    font-size: 25px;
}

.team_box__info h6 {
    margin-top: 12px;
    text-transform: capitalize;
    font-size: 21px;
}

.team_box__info p {
    font-size: 18px;
    max-width: 250px;
    margin: 0 auto;
    margin-top: 12px;
}

@media(max-width:992px) {
    .faculity_wrapper__content .faculity_wrapper__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .team_box__info p {
        font-size: 15px;
        margin-top: 7px;
    }

    .team_box__info h6 {
        font-size: 18px;
        margin-top: 7px;
    }

    .team_box__info h3 {
        font-size: 20px;
    }

    .team_box__image img {
        height: 75px;
        width: 75px;
        top: -2.5rem;
    }

    .team_box,
    .cheerleaders {
        margin-bottom: 50px;
    }

    .team_box,
    .cheerleaders {
        padding: 50px 16px 16px;
    }
}

@media(max-width:576px) {
    .faculity_wrapper__content .faculity_wrapper__grid {
        grid-template-columns: repeat(1,1fr);
    }

}