.carrusel {
    position: relative;
    width: 75.6%;
    max-width: 800px;
    overflow: hidden;
}

.carrusel .resenas {
    display: flex;
    transition: transform 0.5s ease;
}

.carrusel .resenas .resena {
    flex: 1 0 33.33%;
    max-width: 33.33%;
    padding: 15px 35px;
    box-sizing: border-box;
    margin: 5px;
    border-radius: 8px;
}

.carrusel .flecha {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    cursor: pointer;
	height:25px;
	width:15px;
	padding:0;
	box-shadow:none;
	z-index:1;
}

.carrusel #prev {
    left: 5px;
	background:url('/wp-content/uploads/2024/11/carrusel-prev.svg') no-repeat 0 0;
}

.carrusel #next {
    right: 5px;
	background:url('/wp-content/uploads/2024/11/carrusel-next.svg') no-repeat 0 0;
}

.carrusel .puntos {
    text-align: center;
    margin-top: 10px;
}

.carrusel .puntos span {
    display: inline-block;
    height: 9px;
    width: 9px;
    background-color: #BCC1C9;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.carrusel .puntos span.active {
    background-color: #FF6636;
}

.carrusel .nombre{
	color:#242424;
	font-size:22px;
	line-height:28px;
	font-weight:bold;
}
.carrusel .contenido{
	margin-top:10px;
	color:#4E4E4E;
	font-size:16px;
	line-height:26px;
	padding-right: 25px;
}

@media (max-width: 1023px) {
    .carrusel .resena {
        min-width: 100%;
    }
}
@media (max-width:767px){
	.faq-item .faq-question{
		font-size: 16px !important;
		line-height: 24px !important;
	}
	.faq-item .faq-question .faq-toggle{
		width:28px !important;
	}
}











