.speakers-data-list .data-list-head{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Pagination */
.data-list-head .pagination{
    width:40%;
    text-align: right;
}
.data-list-head .pagination *::selection{
    background-color:rbga(0,0,0,0);
}
.data-list-head .pagination .pagination-item,
.data-list-head .pagination .btn-showall{
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 600;
    padding:3px 7px;
    color:#000;
    cursor: pointer;
    text-transform: capitalize;
    border-radius: 4px;
    line-height:1.6em;
}
.data-list-head .pagination .pagination-item:hover{
    color:var(--link-color);
}
.data-list-head .pagination .pagination-item.active{
    background-color:#000;
    color:var(--link-color);
    padding-left:1.2rem;
    padding-right:1.2rem;
}
.data-list-head .pagination .btn-prev.active,
.data-list-head .pagination .btn-next.active{
    background-color:#efefef;
    color:#c1c1c1;
}
.data-list-head .pagination .btn-showall{
    background-color:var(--link-color);
    border:1px solid var(--link-color);
    color:#000;
    padding-left:15px;
    padding-right:15px;
    text-transform: uppercase;;
}
.data-list-head .pagination .btn-showall::before{
    content: 'See All';
}
.data-list-head .pagination .btn-showall::after{
    content: 'See Less';
    display: none;
}
.data-list-head .pagination .btn-showall:hover{
    background-color:rgba(0,221,255,0.2);
    color:var(--link-color);
}
.infinite-scrolling .pagination .pagination-item,
.infinite-scrolling .pagination span{
    display: none!important;
}
.infinite-scrolling .pagination .btn-showall::before{
    display: none;
}
.infinite-scrolling .pagination .btn-showall::after{
    display: block;
}

/* Category Filters */
.data-list-head .category-filter{
    width:100%;
    text-align: center;
    margin-top:30px;
}
.speakers-data-list.search-active .data-list-head .category-filter{
    display:block;
}
.data-list-head .category-filter .cat-item{
    display: inline-block;
    color:#666;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    padding:10px 15px;
    cursor: pointer;
    border-bottom:2px solid rgba(0,0,0,0);
}
.data-list-head .category-filter .cat-item.active{
    color: var(--link-color);
    border-color: var(--link-color);
}

/* Search */
.data-list-head .search{
    width:40%;
    font-size:1.6rem;
    color:#666;
}
.data-list-head .search form{
    display: flex;
    gap:5px;
}
.data-list-head .search .field-wrapper{
    border:1px solid #666;
    background-color:#fff;
    width:100%;
    max-width:300px;
    display: flex;
    justify-content: space-between;
    border-radius:5px;
    padding:2px;
}
.data-list-head .search input{
    border:0;
    outline:0;
    padding:8px 10px;
}
.data-list-head .search button{
    background: unset;
    box-shadow: unset;
    border:unset;
    padding:7px 10px 5px 10px;
}
.data-list-head .search button:hover{
    color: var(--link-color);
}
.data-list-head .search .reset{
    display: none;
    border:1px solid var(--link-color);
    background-color:#fff;
    color:var(--link-color);
    padding:8px 10px 8px 10px;
    border-radius:5px;
    cursor: pointer;
}
.search-active .data-list-head .search .reset{
    display: block;
}
.data-list-head .search .reset:hover{
    background-color: rgba(0,221,255,0.2);
}

/* Data list */
.speakers-data-list .data-list-body{
    margin-top:50px;
}
.speakers-data-list .data-list-wrapper{
    display: grid;
    grid-template-columns: repeat(4, 1fr);;
    grid-gap:50px 30px;
}
.speakers-data-list .data-list-wrapper + h3{
    margin-top:50px;
}
.speakers-data-list .data-item{
    color:#525252;
    text-align: center;
    width:100%;
    height:100%;
    max-height:400px;
    font-size:14px;
    font-weight:400;
}
.speakers-data-list .data-item .img-wrapper{
    display: inline-block;
    width:245px;
    max-width:245px;
    height:245px;
    overflow:hidden;
    position:relative;
    margin-bottom:10px;
}
.speakers-data-list .data-item.specialty .img-wrapper{
    border-radius:50%;
    border:8px solid #fff;
    outline:8px solid #00dbff;
}
.speakers-data-list .data-item:not(.specialty) .img-wrapper{
    height:300px;
    border-radius: 0 0 122.5px 122.5px;
}
.speakers-data-list .data-item:not(.specialty) .img-wrapper::before{
    content: "";
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    width: 245px;
    height: 245px;
    background-color: #00dbff;
    border-radius: 50%;
}
.speakers-data-list .data-item img{
    display: block;
    color: rgba(0,0,0,0);
    width:245px;
    height:245px;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s;
}
.speakers-data-list .data-item:not(.specialty) img{
    width:280px;
    max-width:280px;
    height:300px;
    margin-top:20px;
    object-position: center 0;
    position: absolute;
    top:0;
    left:calc(50% - 140px);
    z-index: 1;
}
.speakers-data-list .data-item:hover img{
    transform: scale(1.05); 
}
.speakers-data-list .data-item .name{
    color:#262626;
    font-size:16px;
    font-weight:500;
    text-transform: uppercase;
    transition: all 0.3s;
}
.speakers-data-list .data-item:hover .name{
    color: var(--link-color);
}
.speakers-data-list .data-list-body h3{
    text-align:center;
    font-size:22px;
}

@media only screen and (max-width: 1200px) {
    .speakers-data-list .data-list-wrapper{
        grid-template-columns: repeat(3, 1fr);;
    }
}

@media only screen and (max-width: 900px) {
    .speakers-data-list .data-list-wrapper{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .speakers-data-list .data-list-head{
        gap:20px;
    }
    .data-list-head .search{
        width:100%;
    }
    .data-list-head .search form{
        justify-content:center;
    }
    .data-list-head .pagination{
        width: 100%;
        text-align:center;
    }
}
@media only screen and (max-width: 570px) {
    .speakers-data-list .data-list-wrapper{
        grid-template-columns: repeat(1, 1fr);
    }
}