@import url(../colors.css);
@import url(../fonts.css);

/* seccion Testimonios */

#seccion-testimonios {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--azul-claro-1);
}

.testimony-title {
    padding-top: 50px;
    width: 100%;
    font-family: FiraSans-Bold;
    font-size: 50px;
    color: var(--azul-oscuro);
}

.testimony-text {
    font-family: FiraSans-Light;
    font-size: 17px;
    color: black;
    margin-top: 60px;
    padding-right: 30px;
}

.testimony-box {
    width: 100%;
    overflow: auto;
    padding: 40px;
    box-shadow: inset 0px 0px 15px #0000002e;
    border-radius: 20px;
}

/* Estilos de scrollbar*/
.testimony-box {
    overflow-y: auto;
}

.testimony-box::-webkit-scrollbar {
    -webkit-appearance: none;
}

.testimony-box::-webkit-scrollbar:vertical {
    width: 5px;
}

.testimony-box::-webkit-scrollbar-button:increment,
.testimony-box::-webkit-scrollbar-button {
    display: none;
}

.testimony-box::-webkit-scrollbar:horizontal {
    height: 10px;
}

.testimony-box::-webkit-scrollbar-thumb {
    background-color: var(--azul-oscuro);
    opacity: 0;
    border-radius: 5px;
}

.testimony-card {
    width: 350px !important;
    height: 480px !important;
    margin-right: 60px;
    background-color: white;
    box-shadow: 5px 5px 5px #0000002e;
    transition: 0.4s;
    position: relative;
    padding: 45px 30px;
    border-radius: 20px;
}

.testimony-card .barra {
    width: 50px;
    height: 3px;
    background-color: var(--azul-oscuro);
    margin: 0 auto;
}

.testimony-card p {
    text-align: center;
    color: var(--azul-oscuro);
    font-family: FiraSans-LightItalic;
    font-size: 18px;
    padding: 0px;
    margin: 20px 0px;
}

.testimony-perfil {
    margin-top: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 40px;
}

.testimony-perfil div {
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimony-perfil .testimony-universidad {
    width: 190px;
    border-radius: 0px;
    text-align: center;
    color: var(--azul-oscuro);
    font-family: FiraSans-SemiBoldItalic;
    font-size: 17px;
    padding: 0px;
    line-height: 24px;
    margin-left: 10px;
}

.testimony-perfil .testimony-universidad span {
    color: black;
    font-family: FiraSans-LightItalic;
    font-size: 16px;
}

@media (max-width: 991px) {
    #seccion-testimonios{
        padding-bottom: 600px;
    }
    .testimony-box {
        width: 100%;
        position: absolute;
        left: 0;
        right: 0;
    }
}

@media (max-width: 767px) {
    .testimony-title {
        text-align: center;
    }

    .testimony-text{
        text-align: center;
        padding: 20px;
    }

    .testimony-box {
        padding: 20px;
    }

    #testimony-btn{
        width: 100%;
        display: flex;
        justify-content: center;
    }
}
