.target-section {
    text-align: left;
    color: #ffffff;
    margin: 15px 0px 0px 0px;
    padding-bottom: 20px;
    
}

/* Testimonials */
.testimonials-bg{
    padding-top:40px;
}

.testimonials {
	margin-top: 5px;
	margin-bottom: 5px;
	position: relative;
	display: block;
	width: 100%;
	min-height: 250px;
}

.testimonials ul {
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 3%;
}

.testimonials li {
	width: 31.333%;
	position: relative;
	transition: ease-in-out .3s;
	padding: 20px;
	margin: 1.5% 0;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	background: #ffffff;
	border-radius: 12px;
}
.testimonials li p{
    font-size: 1em;
}
.testimonials li .logo-icon {
	width: 120px;
	border-radius: 4px;
	background-color: #ffffff;
	transition: box-shadow 0.3s linear;
	padding: 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #e3e4e7;
	margin: 0 auto 20px;
}
.testimonials li .logo-icon a {
    max-width: 100%;
    display: flex;
    text-align: center;
    height: 40px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.testimonials li .logo-icon a img {
    max-width: 90%;
    max-height: 40px;
}
.testimonials li p {max-height: 170px;overflow: auto;flex: 1 0 auto;margin-bottom: 15px;color: #000;}

.testimonials li:hover {
    background-color: #fffaf6;
    color: #fff;
}

/* width */
.testimonials li p::-webkit-scrollbar {   
  width: 8px;
  cursor: pointer;    
}

/* Track */
.testimonials li p::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #efefef; 
}

/* Handle */
.testimonials li p::-webkit-scrollbar-thumb {
  background: #e94b1f; 
  border-radius: 10px;
  max-height: 10px;
}  



@media only screen and (max-width: 820px) {
    .testimonials ul {
        display: flex;
        flex-wrap: wrap;
        gap: 3%;
    }

    .testimonials li {
        width: 48.5%;
    }
}

@media only screen and (max-width: 576px) {
    .testimonials ul {
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 3%;
    }

    .testimonials li {
        width: 100%;
        position: relative;
        transition: ease-in-out .3s;
        padding: 40px 18px 18px;
        margin: 1.5% 0 30px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }
}






