.fz_testimonial-grid {
    /*column-count: 2;*/
    column-gap: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.fz_testimonial-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 10px;
    filter: drop-shadow(0px 20px 50px rgba(218, 225, 232, 0.3));
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.9999999999999999) 0%, rgba(255, 255, 255, 0.3019607843137254) 100%);
    padding: 48px 44px 46px;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    width: 48%;
    break-inside: avoid;
    margin-bottom: 20px;
}
.fz_testimonial-item .teasti-title h4 {
    font-size: 28px;
    color: #041424;
    font-weight: 600;
    font-family: "Rajdhani";
    margin: 0 0 6px;
}
.fz_testimonial-item .testi-star i {
    display: inline-block;
    color: #FEB012;
}
.fz_testimonial-item p.quote {
    font-size: 18px;
    line-height: 28px;
    color: #686868;
    font-weight: 400;
    font-family: "Nunito";
    width: 99%;
    margin: 17px 0 28px;
}
.fz_testimonial-item .quote {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fz_testimonial-item .author img {
    display: inline-block;
    width: inherit;
    border-radius: 50%;
    height: 50px;
}
.fz_testimonial-item .author {
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid #68686854;
    padding-top: 28px;
}
.fz_testimonial-item .teasti-title {
    min-height: 75px;
}
.fz_testimonial-item h4.name {
    font-size: 24px;
    color: #041424;
    font-weight: 600;
    font-family: "Rajdhani";
    margin: 0 !important;;
}
.fz_testimonial-item h5.designation {
    font-size: 16px;
    color: #686868;
    font-weight: 400;
    font-family: "Nunito";
    margin: 7px 0 0 0 !important;
}

.fz_testimonial-item .single-img {
    position: absolute;
    right: 45px;
    bottom: 57px;
    height: 45px;
    width: 45px;
}

.fz_testimonial-item .single-img img{
    display: inline-block;
    width: inherit;
    border-radius: 50%;
    height: 50px;
}
.fz_testimonial-item .quote {
    margin: 50px 0;
}

.fz_testimonial-load-more-btn {
    background: #f49923;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 600;
}
.fz_testimonial-filters {
    margin-bottom: 40px;
}
.fz_testimonial-filters ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.fz_testimonial-filters li {
	position: relative;
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 12px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: transform ease 1s;
    padding: 0 15px;
    transition: transform 1s ease, width 1s ease;
    overflow: hidden;
    height: 50px;
    min-width: 100px;
    background: #fff;
    border-radius: 80px;
    border: 3px solid #ededed;
    box-shadow: 0px 2px 1px 0px #cccccc;
}
.fz_testimonial-filters li:first-child{
    padding: 0;
}
.fz_testimonial-filters li:hover {
    transform: translateY(-5px);
    transition: transform ease 1s;
}
.fz_testimonial-filters li:before {
    content: "";
    position: absolute;
    background: #fff;
    height: 100%;
    top: 0;
    left: 0;
    width: 0;
	transition: width 1s ease;
}
.fz_testimonial-filters li:hover::before {
	/*width: 100%;
	transition: width ease 1s;*/
}
.fz_testimonial-filters li.current {
    background: #159c45;
    color: #fff;
}
.fz_testimonial-filters li.current .filter-name {
    color: #fff;
}
.fz_testimonial-filters li .filter-image {
    width: 25px;
    /*background: #fff;*/
    border-radius: 100%;
    z-index: 2;
}
.fz_testimonial-filters li .filter-image img{
    width: 100%;
	display: block;
    /*padding: 6px;*/
}
.fz_testimonial-filters li.current .filter-image {
    filter: invert(1);
}
.fz_testimonial-filters li .filter-name {
    z-index: 2;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.15px;
}
.fz_testimonial-filters li:hover .filter-name{
	/*color: #fff;
	transition: color ease 0.5s;*/
}
.fz_testimonial-load-more-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
    padding-right: 45px;
}
.fz_testimonial-load-more-btn.loading::after {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    animation: emSpin 0.7s linear infinite;
}
.fz_testimonial-item .quote a.read-more {
    color: #f49923;
}
.fz_testimonial-item .quote a.read-more:hover {
    color: #159c45;
}
@keyframes emSpin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

@media screen and (max-width: 767px){
	
.fz_testimonial-grid {
    /*column-count: 1;*/
}	
.fz_testimonial-item {
	width: 100%;
}
	
	
}