@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Ubuntu:300,400');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*font-family: sans-serif;
    font-family: 'Ubuntu', sans-serif;*/
    text-decoration: none;
}

main{
    width: 100%;
    text-align: center;
    padding: 20px;
    position: relative;
    margin: auto;
    background-color: aliceblue;
}

.h1{
    position: relative;
    color: white;
}

.parrafo1{
    width: 100%;
    max-width: 800px;
    margin: auto;
    margin-top: 20px;
    position: relative;
    color: #c6c6c6;
    font-weight: 100;
}

.container-testimonials{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
    position: relative;
}

.testimonial{
    width: 340px;
    margin: 20px;
    background: #fff;
    padding-top: 40px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    text-align: center;
    /*border-radius: 10px;*/
    box-shadow: 0px 0px 40px -30px black;
}

.photo-perfil{
    margin: auto;
    width: 250px;
    height: 168px;
    background-size: cover;
    /*border-radius: 50%;*/
    position: relative;
    top: -60px;
    /*box-shadow: 0px 0px 30px -10px black;*/
    background-position: center;
}

.testimonial h2{
    margin-top: -40px;
}

.testimonial h4{
    margin-top: 10px;
    color: #794343;
    font-weight: 400;
}

.testimonial p{
    margin-top: 10px;
    font-weight: 100;
    color: #333333;
    text-align: justify;
}