.data-list-company-logos .data-list-head{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.data-list-company-logos.sponsor-logos{
    margin-bottom: 150px;
}

/* 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{
    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;
}

/* Search */
.data-list-company-logos[data-search-visible=""] .search form{
    display:none;
}
.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 */
.data-list-company-logos .data-list-body{
    margin-top:50px;
}
.data-list-company-logos .data-item-wrapper{
    display: grid;
    grid-template-columns: repeat(4, 1fr);;
    gap:100px 150px;
    align-items: center;
}
.data-list-company-logos .data-item{
    color:#000;
    text-align: center;
}
.data-list-company-logos .data-item img{
    display: block;
    width: 100%;
    max-width:250px;
    height: auto;
    transition: all 0.3s;
}
.data-list-company-logos .data-item a img:hover{
    transform: scale(1.1);
}
.data-list-company-logos .data-item img.error {
    color: rgba(0,0,0,0);
    width: 100%;
    height: 100px;
}
.data-list-company-logos .data-item img.error::before {
    display: inline-block;
    width: inherit;
    height: inherit;
    background: url('https://dgq6zoj2w3e86.cloudfront.net/sponsors/1_Fallback_Image.png') no-repeat center;
    background-size:contain;
}
.data-list-company-logos .data-list-body h3{
    text-align:center;
    font-size:22px;
}


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

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