@import "variables.css";
*{
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
#content{
        width: 100%;
        height: auto;
        padding: 40px;
}

/*-- testimonios --*/
section{
    height: auto;
    width: 100%;
    margin: 0 auto;
    background-color: white;
    margin-bottom: 20px;
}
.bottom-section{
    padding: 20px;
    box-shadow: 5px 5px 5px rgba(0,0,0,.5);
}

.linea{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    padding-top: 20px;
    flex-wrap: wrap;
}
.persona{
    height: auto;
    width: 30%;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.foto{
    width: 120px;
    height: 120px;
    background-color: aqua;
    border-radius: 50%;
    overflow: hidden;
}
.texto{
    width: 100%;
    height: auto;
    text-align: center;

}

.border3 .name{
    font-weight: 700;
  

}
.border3 .job{
    font-style:italic;


}

.persona2{
    height: auto;
    width: 30%;
    position: relative;

    display: flex;
    align-items: center;
    flex-direction: column;
}
.border1 {
   position: relative;
    height: 100%;
    width: 100%;
    background-color: white;
    border: 4px solid rgb(199, 199, 199);
    box-sizing: border-box;
    
}
.border2 {
   position: absolute;
    top: -2%;
    left: 2%;
    height: 104%;
    width: 96%;
    background-color: white;
    padding: 20px 10px 10px 10px;
    box-sizing: border-box;

}
.border3 {
    position: relative;
    height: auto;
    width: 100%;
    background-color: white;
    padding: 20px 10px 10px 10px;
    box-sizing: border-box;
    border-left: 2px solid var(--main-color);
    border-right: 2px solid var(--main-color);
 
 }
/*-- logos clientes--*/
.logo-container{
    width: 90%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    
 
}
.logo-img{
    flex-basis: 200px;
    margin-bottom: 15px;
    margin-left: 15px;
    display: flex;
    align-items: center;
    padding: 20px;

}
.logo-img img{
    width: 100%;
    filter: grayscale(1);
    transition: .5s;
    
}
.logo-img img:hover{
    filter: grayscale(0);
    transform: scale(1.2);
}

/*-- slider --*/
.slider {
	width: 100%;
	margin: auto;
	overflow: hidden;
}

.slider ul {
	display: flex;
	padding: 0;
    
	width: 400%;
	
	animation: cambio 40s infinite alternate-reverse ease;
}

.slider li {
	width: 100%;
	list-style: none;
}
.slider picture img {
	width: 100%;
}

@keyframes cambio {
	0% {margin-left: 0;}
	20% {margin-left: 0;}
	
	25% {margin-left: -100%;}
	45% {margin-left: -100%;}
	
	50% {margin-left: -200%;}
	70% {margin-left: -200%;}
	
	75% {margin-left: -300%;}
	100% {margin-left: -300%;}
}

@media only screen and (max-width: 768px) {
	.persona{
        height: auto;
        width: 90%;

    }
    .logo-img img{
    
        filter: grayscale(0);
   
        
    }
    
}