div#ajax-content-wrap {
    background: #fff;
}
.designation {
    font-size: 25px;
    line-height: 35px;
    font-weight: 500;
    color: #011c25;
    margin-bottom: 20px;
}
.leader-filter {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #ccc;
}
.leaders-wrap {
    padding: 80px 0 !important;
}
button.leader-btn {
    font-size: 20px;
    padding: 18px 17px;
    cursor: pointer;
    margin-right: 10px;
    border-bottom: 2px solid transparent;
    position: relative;
    color: #011c25;
    z-index: 10;
    line-height: 32px;
    margin-bottom: -1px;
    overflow-y: hidden;
    border: none;
    border-radius: 0;
    background: transparent;
    font-family: 'Exo';
}
button.leader-btn.active {
    border-bottom: 4px solid #081160;
    border-radius: 0 !important;
}
/* ===== GRID ===== */

#leader-results{

	display:grid;
	grid-template-columns: 	repeat( 4, 1fr );
	gap:30px;
}


/* ===== CARD ===== */
.leader-card {
    text-decoration: none;
    color: #111;
    display: block;
    background: #f3f3f3;
    padding: 15px;
    border-radius: 30px;
    text-align: center;
    transition: background .3s ease;
    border: 1px solid #d1cece;
    position: relative;
    padding-bottom: 50px;
}
.circle-arrow {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 25%;
    bottom: 20px;
}
a.leader-card:hover .imgcircle img {
    transform: translate(-7px, -7px) rotate(-65deg) !important;
    transition: transform 0.5s ease !important;
}
.leader-img img {
    height: 180px !important;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: filter .3s ease;
}
.leader-img img{
	height: 180px;
    filter: grayscale(100%);
    transition: filter .3s ease;
    width: 100%;
    object-fit: cover;
    display: block;
}
.leader-content h3 {
    font-family: "Exo";
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    margin-top: 10px;
}
.leader-content p {
    margin: 0;
    font-size: 16px;
    line-height: 28px;
}
a.leader-card:hover {
    background: #001067;
}
a.leader-card:hover .leader-img img {
    filter: grayscale(0%);
}
a.leader-card:hover .leader-content h3,
a.leader-card:hover .leader-content p,
a.leader-card:hover span.link-text{
    color: #fff !important;
}
a.leader-card:hover span.imgcircle{
    background: #fff !important;
}
a.leader-card:hover .imgcircle img{
    filter: brightness(0) saturate(100%) invert(17%) sepia(96%) saturate(6491%) hue-rotate(203deg) brightness(92%) contrast(97%);
}
.leader-name h1 {
    font-family: Exo;
    font-size: 55px;
    line-height: 54px;
    font-weight: 700;
    padding: 20px 0 20px 0;
    color: #000;
    text-align: center;
}
.leader-hero {
    padding: 60px 0;
}
.leader-bio {
    display: flex;
    gap: 32px;
}
.leader-bio > div {
    flex-basis: 0;
    flex-grow: 1;
}
.leader-image img {
    width: auto;
}
.leader-image {
    padding-top: 30px;
}
span.leader-team {
    font-size: 25px;
    line-height: 35px;
    font-weight: 500;
}
.leader-name.desk-view-name {
	    display: block;
	}
.leader-name.mob-view-name {
    display: none;
}

#leader-results{
    position:relative;
    min-height:300px;
}

#leader-results.loading::after{
    content:'';
    position:absolute;
    top:50%;
    left:50%;
    width:35px;
    height:35px;
    margin:-18px 0 0 -18px;
    border:3px solid #ddd;
    border-top:3px solid #001a70;
    border-radius:50%;
    animation:spin .8s linear infinite;
}

@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}

/* ===== RESPONSIVE ===== */
@media (min-width: 992px) and (max-width: 1199px) {
	#leader-results {
	    grid-template-columns: repeat(auto-fill, minmax(25%, 1fr));
	    gap: 50px;
	}
}
@media(max-width:991px){
	.leader-image {
	    text-align: center;
	}
	.leader-name.desk-view-name {
	    display: none;
	}
	.leader-name.mob-view-name {
	    display: block;
	}
	.leader-filter {
	    flex-wrap: nowrap;
	}
	#leader-results{
		grid-template-columns: 	repeat( 2, 1fr);
	}
	.leader-bio {
	    flex-direction: column-reverse;
	}
	.leader-bio > div {
	    flex-basis: initial;
	    flex-grow: initial;
	}
}


@media(max-width:767px){
	.leader-image {
	    text-align: center;
	}
	.leader-name h1 {
	    font-size: 30px;
	    text-align: left;
	    margin-bottom: 0;
	    padding-bottom: 0;
	}
	.leader-bio {
	    gap: 20px;
	}
	.leaders-wrap {
	    padding: 55px 0 !important;
	}
	.leader-filter {
	    flex-wrap: wrap;
	}
	button.leader-btn {
	    padding: 12px 14px;
	}
	#leader-results{
		grid-template-columns: 1fr;
		margin-top: 50px;
	}

}