#staff_member_carousel {
    position: relative;
    padding-bottom: 123px;
}

#staff_member_carousel .carousel-control-prev {
    background-color: var(--primary-white);
    width: 50px;
    height: 50px;
    border-radius: 999px;
    position: absolute;
    content: "";
    top: 84.5%;
    left: 38.5%;
    transform: translateX(-50%);
    border: 1px solid var(--primary-green);
}

#staff_member_carousel .carousel-control-next {
    background-color: var(--primary-white);
    width: 50px;
    height: 50px;
    border-radius: 999px;
    position: absolute;
    content: "";
    top: 84.5%;
    right: 24.8%;
    transform: translateX(-50%);
    border: 1px solid var(--primary-green);
}

#staff_member_carousel .carousel-control-next span,
#staff_member_carousel .carousel-control-prev span {
    filter: brightness(0);
    width: 19px;
    height: 19px;
}

#staff_member_carousel .carousel-indicators {
    position: absolute;
    content: "";
    bottom: -27px;
}

#staff_member_carousel .carousel-indicators [data-bs-target] {
    width: 7.66px;
    height: 7.66px;
    background-color: var(--secondary-yellow);
}

#staff_member_carousel .carousel-indicators button.active {
    border-radius: 100px !important;
    background-color: var(--primary-green);
}

@media(min-width: 768px) {
    .staff-card-wrapper .staff-img img {
        height: 320px;
        object-fit: cover;
        border-radius: 16px;
    }
}

@media(max-width: 767px) {

    #staff_member_carousel .carousel-control-next,
    #staff_member_carousel .carousel-control-prev {
        top: 89%;
    }

    #staff_member_carousel .carousel-control-next {
        right: unset;
        left: 29%;
    }

    #staff_member_carousel .carousel-control-prev {
        left: 10%;
    }

    #staff_member_carousel .carousel-indicators {
        justify-content: flex-start;
        margin-left: 20px;
    }

    .our_board_member_section+.common_background_section {
        display: none;
    }

    #our-staff-section {
        padding-top: 40px;
        padding-left: 20px;
        padding-right: 8px;
    }

    p.staff-description {
        max-width: 80%;
    }

    .staff-card .staff-img img {
        height: 426px;
        width: 100%;
        object-fit: cover;
        border-radius: 20px;
    }

    .staff-img.mb-4 {
        margin-bottom: 16px !important;
    }
}