.teammate-slider{
    position: relative;
}
.teammate-item{
    display: flex !important;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    padding: 0 90px;
}
.left-side, .right-side{
    width: calc( 50% - 20px );
}
.left-side{
    background-color: #fff;
    border-radius: 40px;
    background-size: 55%;
    background-position: top left;
    background-repeat: no-repeat;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 100px;
    overflow: hidden;
}
.left-side .teammate-image{
    width: calc( 55% - 10px );
    display: flex;
    align-items: self-end;
}
.left-side .teammate-detail{
    width: calc( 45% - 10px );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 34px 25px;
    gap: 20px;
}
.personal-info{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.teammate-socials{
    display: flex;
    gap: 20px;
    align-items: center;
}
.teammate-socials a:hover img{
    filter: brightness(0);
}
.slick-arrow{
    width: 80px;
    border: 0;
    position: absolute;
    top: calc( 50% - 40px );
    z-index: 2;
    background-color: transparent;
}
.slick-arrow:hover img{
    filter: sepia(1);
}
.slick-prev{
    left: 0;
}
.slick-next{
    right: 0;
}
@media screen and ( max-width: 1200px ){
    .left-side{
        flex-direction: column;
        padding-top: 50px;
    }
    .left-side .teammate-image, .left-side .teammate-detail{
        width: 100%;
    }
    .left-side .teammate-detail{
        flex-direction: column-reverse;
    }
}
@media screen and ( max-width: 991px ){
    .left-side, .right-side{
        width: 100%;
    }
    .slick-arrow{
        width: 60px;
        top: calc( 50% - 30px );
    }
    .teammate-item{
        padding: 0 70px;
    }
}
@media screen and ( max-width: 767px ){
    .slick-arrow{
        top: calc( 25% - 30px );
    }
    .teammate-item {
        padding: 0 30px;
    }
}