
.mentor-section {
    position: relative;
}


.mentor-section  .mentor-swiper {
    background-color: #e5e5e5;
}

.mentor-section  .team-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.mentor-section  .team-member {
    background-color: #e5e5e5;
    border-radius: 0;
    padding: 40px 40px 0px 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.mentor-section  .member-info {
    background-color: #e5e5e5;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1 1 auto;
    min-height: 120px;
}

.mentor-section  .member-name {
    font-family: "Work Sans", Sans-serif !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    color: #000 !important;
    margin-bottom: 0 !important;
}

.mentor-section  .member-role {
       color: #000000;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.mentor-section  .member-image {
    position: relative;
    overflow: hidden;
}

.mentor-section  .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}


.mentor-section  .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(168deg, transparent 0%, transparent 65%, #ff6b35 65%, #ff6b35 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mentor-section  .swiper-button-next:after,.mentor-section  .swiper-button-prev:after
{
    display: none;
}

/* Swiper Styles */
.mentor-section .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.mentor-section .swiper-wrapper {
    align-items: stretch;
}

.mentor-section .swiper-button-next,
.mentor-section .swiper-button-prev {
    color: #FE5A22;
    background: rgb(234 234 234);
    width: 40px;
    height: 40px;
}
.mentor-section .swiper-button-next
{
    right: 0 !important;
}
.mentor-section .swiper-button-prev
{
    left: 0 !important;
}
.mentor-section .swiper-button-prev img
{
    transform: rotate(180deg);
}
.black-white-img img
{
	filter: grayscale(100%);
}

@media (max-width: 767px) {
    
    .mentor-section .member-image {
        height: auto;
    }
    
    .mentor-section  .image-overlay {
        height: 120px;
    }
    .mentor-section .mentor-swiper
    {
        margin: 0 15px;
    }
}

