.team_heading p {
    text-align: center;
    max-width: 940px;
    margin: 0 auto;
}

.team_header h3 {
    font-size: 36px;
    color: var(--black-color);
    font-weight: 600;
    text-align: center;
    margin-bottom: 70px !important;
}

.about_ul {
    padding-left: 2rem !important;
    margin-top: 12px;
}

.myimage img {
    height: auto;
    object-position: top;
    object-fit: contain;
}

.myimage {
    margin-top: 5rem;
}

.about_ul li {
    list-style: disc !important;
    font-size: 16px;
    margin-bottom: 10px;
}

.team_left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.team_left h3 {
    font-size: 24px;
    color: #231f20;
    font-weight: 600;
    letter-spacing: 1px;
}

.team_left h6 {
    margin-top: 10px;
    font-size: 18px;
}

.team_left p {
    margin-top: 1rem;
}

.team_right img {
    width: 310px;
    height: 310px;
    object-fit: contain;
    border-radius: 20px;
}

.team_flex {
    margin-bottom: 30px;
}

/* op_team */
.op_team {
    border-top: 1px solid #ccc;
    background-color: whitesmoke;
}

.team_box__img img {
    width: 100%;
    height: 329px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.team_box__content h6 {
    margin-top: 1rem;
    font-size: 20px;
    font-weight: 600;
}

.team_box__content span {
    color: #707070;
    display: block;
    margin-top: 3px;
}

.team_box__content p {
    margin-top: 2rem;
}

.our_team__img img {
    width: 100%;
    border-radius: 20px
}

.labTable {
    margin-bottom: 2rem !important;
    max-width: 950px;
    margin: 0 auto;
}

.labTable td a {
    color: var(--main-color);
    font-weight: 500;
}

/* gallery_ul */
.gallery_ul {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid transparent !important;
    gap: 10px;
}

.gallery_ul li button {
    font-size: 14px !important;
    text-transform: capitalize;
}

.gallery_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery_img {
    position: relative;
    overflow: hidden;
}

.gallery_img::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -100%;
    background-color: rgba(0, 0, 0, .6);
    width: 100%;
    height: 100%;
    transition: .3s ease all;
}

.gallery_grid__box:hover .gallery_img::after {
    bottom: 0;
    transition: .3s ease all;
}

.gallery_img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: .73s ease all;
}

.gallery_grid__box:hover img {
    transform: rotate(3deg) scale(1.1);
    transition: .73s ease all;
}

.gallery_grid__box {
    position: relative;
    overflow: hidden;
}

.gallery_content h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white-color);
    padding-bottom: 1rem;
    visibility: hidden;

}

.gallery_grid__box:hover h3 {
    padding-bottom: 0;
    transition: .5s ease all;
    visibility: visible;
}








@media(max-width:1200px) {
    .gallery_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



@media(max-width:992px) {
    .team_box__img img {
        height: 200px;
    }

    .team_box__content p {
        margin-top: 10px;
        font-size: 14px;
    }

    .myimage {
        margin-top: 0;
    }
}

@media(max-width:768px) {
    .lab_wrapper__content p {
        font-size: 14px;
        line-height: 24px;
    }

    .gallery_img img {
        height: 260px;
    }

    .team_box {
        margin-bottom: 30px;
    }

    .team_flex {
        flex-direction: column-reverse;
    }

    .team_left {
        margin-top: 1rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .team_heading p {
        font-size: 14px;
        line-height: 24px;
    }

    .team_header h3 {
        font-size: 24px;
        margin-bottom: 2rem !important;
    }

    .team_right img {
        width: 100%;
    }

    .team_box__img img {
        height: auto;
    }
}

@media(max-width:576px) {
    .gallery_img img {
        height: 200px;
    }

    .gallery_content h3 {
        font-size: 20px;
    }

    .gallery_grid {
        gap: 10px;
    }
}