.meet_our_experts_parent {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.experts_title_row_and_pagination {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}
.experts_title_row_and_pagination h2 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    width: fit-content;
}
.experts_title_row_and_pagination .swiper_elements {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: #fff;
    position: relative;
}
.experts_title_row_and_pagination .swiper_elements hr{
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 1px;
    border: 0;
    bottom: 0;
    padding: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #000;
    display: none;
}
.swiper-pagination.swiper-pagination-lock ~ hr {
    display: block;
}
.experts_title_row_and_pagination .swiper_elements .swiper-pagination.swiper-pagination-progressbar.swiper-pagination-horizontal {
    height: 1px;
    width: calc(100% - 79px);
}
.experts_title_row_and_pagination .swiper_elements .swiper_buttons_container {
    width: 65px;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    background-color: #fff;
}
.experts_title_row_and_pagination .swiper_elements .swiper-pagination-progressbar{
    position: relative;
}
.experts_title_row_and_pagination .swiper_elements .swiper_buttons_container .swiper-button-prev, .swiper_buttons_container .swiper-button-next {
    position: relative;
    height: auto;
    margin: 0;
    padding: 0;
    top: unset;
    right: unset;
    bottom: unset;
    left: unset;
}
.experts_title_row_and_pagination .swiper_elements .swiper-button-next svg, .experts_title_row_and_pagination .swiper_elements .swiper-button-prev svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
}
.swiper-button-next:after, .swiper-button-prev:after {
    content: none;
    display: none;
}
.experts_title_row_and_pagination .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #000;
}
.meet_our_experts_parent .swiper-slide {
    display: flex;
    flex-direction: column;
}
.profile_image_container {
    width: 100%;
    height: auto;
    max-height: 400px;
    overflow: hidden;
    border-radius: 70px 4px 4px 4px;
    margin: 0 0 14px 0;
}
.profile_image_container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}
.expert_name h2{
    margin: 0;
    padding: 0;
    font-weight: 700;
    font-size: 20px;
}
.expert_title p{
    margin: 0;
    padding: 0;
    font-size: 16px;
}
.expert_bio_links {
    display: flex;
    justify-content: start;
    gap: 14px;
    margin: 14px 0 28px 0;
}
.expert_bio_links a{
    display: block;
    height: 20px;
    width: auto;
    float: left;
    transition: all .3s ease;
}
.expert_bio_links a svg{
    height: 100%;
    width: auto;
    float: left;
    display: block;
}
.expert_testimonial_parent {
    background-color: #FAFAF9;
    padding: 24px;
    border-radius: 4px;
    --sb-track-color: #D9D9D9;
    --sb-thumb-color: #A4A3A3;
    --sb-size: 10px;
    scrollbar-gutter: stable;
    box-sizing: border-box;
    max-height: 100px;
    overflow-y: auto;
}
.expert_testimonial_parent::-webkit-scrollbar {
    width: var(--sb-size);
}
  
.expert_testimonial_parent::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 10px;
}
  
.expert_testimonial_parent::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 10px;
    border: 3px solid #D9D9D9;
}
  .expert_testimonial_parent p {
    font-size: 16px;
    margin: 0;
    padding: 0;
    color: #000;
}
  @supports not selector(::-webkit-scrollbar) {
    .expert_testimonial_parent {
        scrollbar-color: var(--sb-thumb-color)
                       var(--sb-track-color);
    }
  }
@media (hover: hover) and (pointer: fine) {
    .expert_bio_links a:hover{
        opacity: 0.5;
        transition: all .3s ease;
    }
    
}
@media screen and (max-width: 650px) {
  .expert_testimonial_parent {
    max-height:unset;
  }
}
@media screen and (max-width: 500px) {
    .profile_image_container {
        max-height: 330px;
    }
    .experts_title_row_and_pagination {
        flex-direction: column;
        align-items: start;
    }
}