body{
    background-color: #f7f7f7 !important;
    font-family: 'Roboto Condensed', sans-serif;
}

#equipo{
    position: relative;
    height: 100%;
    width: 90%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: auto;
    margin-top: 5%;
}

.rojo{
    color: #e01d44;
    font-size: 45px !important;
    font-weight:bolder !important;
}
.azulclaro{
    color: #20a4cc;
    font-size: 45px !important;
    font-weight:bolder !important;
}

#equipo .titulo-linea{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#equipo .linea{
    width: 45px;
    height: 3px;
    margin-right: 10px;
    background: #20a4cc;
}



#equipo h1{
    padding: 0 0;
    margin: 0 0;
    font-size: 40px;
    font-weight: 900;
}
#equipo p{
    color: #181818;
    font-size: 19px;
}
#equipo .contenedor-titulo{
    width: 100%;
    margin-left: 5%;
    margin-top: 5%;
}
#equipo .contenido{
    width: 50%;
}

#equipo .contenedor-integrantes{
    position: relative;
    width: 100%;    
    display: grid;
    margin: auto;
    margin-top: 4%;
    margin-bottom: 10%;
    grid-template-columns:repeat(2,450px);
    justify-items: center;
    justify-content: center;
    gap: 5%;
}

#equipo .persona{
    background-color: yellowgreen;    
    margin: auto;
    justify-items: center;
    width: 350px;
    height: 470px;
    /* height:440px height: 2300%; */
    background: rgba(255, 255, 255, 0.308);
    -webkit-box-shadow: 2px 2px 15px 2px rgba(0,0,0,0.4); 
box-shadow: 2px 2px 15px 2px rgba(0,0,0,0.4);
transform: scale(1);
    transition: 0.6s ease-in-out;
}
#equipo img,.capa,.persona{
    border-radius: 10px;
}

#equipo img{
    width: 100%;
    height: 100%;
    pointer-events: none;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 75%;
    object-fit: cover;
}
#equipo .persona:hover{
    transform: scale(1.05);
}


#equipo .capa{
    position: absolute;
    pointer-events: none;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, #ffffffb7 25%, rgba(255,255,255,0) 100%);
}
#equipo .informacion{
    position: absolute;
    bottom: 5%;
}
#equipo .contenido-persona{
    margin-top: 5%;
    margin-left: 5%;
}
#equipo .nombre{

    font-size: 30px;
}
#equipo .frase{
    font-size: 15px;
    width: 95%;
}
@media (max-width:1180px){
    #equipo{
        margin-top: 10%;
    }
}
@media (max-width:930px){
    #equipo .contenido{
        width: 90%;
    }
    #equipo .contenedor-integrantes{        
        grid-template-columns:repeat(2,240px);
        gap: 10%;
    }
    
    #equipo .persona{
        width: 290px;        
    }
}
@media (max-width:760px){
    #equipo{
        height: 100%;
        margin-top: 20%;
        margin-bottom: 50%;
    }
    #equipo .informacion{
        margin-top: 80%;
    }
    #equipo .contenedor-integrantes{
        grid-template-columns: 100%;
    }
    #equipo .persona{
        width: 300px;        
    }
}
@media (max-width:450px){
    #equipo{
        margin-top: 30%;
    }
}
@media (max-width:370px){
    #equipo{
        margin-top: 40%;
        margin-bottom: 68%;
    }
}
@media (max-width:330px){
    #equipo .persona{
        width: 260px;        
    }
}








/*****************************************SEPROVI*****************/
#historia{
    height: 100%;    
    width: 84%;
    margin: auto;    
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.microtitulo{
    position: relative;
    font-size: 20px;
    width: 70%;
    margin: auto;
}
.microtitulo::before{
    position: absolute;
    content: '';
    width: 40px;
    height: 2px;
    left: 15px;
    top: 9px;
    background: #20a4cc;
}
.microtitulo::after{
    position: absolute;
    content: '';
    width: 40px;
    height: 2px;
    right: 15px;
    top: 9px;
    background: #20a4cc;
}
@media (max-width:370px) {
    #historia .microtitulo{
        font-size: 18px;
    }
}
@media (max-width:330px) {
    #historia .microtitulo{
        font-size: 14px;
    }
    #historia .microtitulo::before{
        top: 5px;
    }
    #historia .microtitulo::after{
        top: 5px;
    }
}

#historia .titulo{
    text-align: center;
    margin-bottom: 3%;
}
#historia h1{
    padding: 0;
    margin: 0;
}
#historia .rojo{
    font-size: 40px;
    font-weight: 900;
}

#historia .contenido{
    margin: auto;
    display:grid;
    grid-template-columns: 48% 48%;
    gap: 5%;
    background: #f7f7f7;
    border-radius: 1rem;
    box-shadow: inset 3.6px 3.6px 6px #D1D1D1, inset -3.6px -3.6px 6px #FFFFFF;
    padding: 0 25px;
}
#historia .contenido a{
    text-decoration: none;
    color: #181818;
    font-weight: bold;
}
#historia p{
    font-size: 18px;
    text-align: justify;
}
#historia .vertical{
    display: none;
}

@media (max-width:750px) {
    #historia .horizontal{
        display: none;
    }
    #historia{
        width: 90%;
    }
    #historia .vertical{
        margin: auto;
        
        width: 115%;
        display: block;
    }
    #historia .contenido{        
        grid-template-columns: 90%;        
    }
    #opiniones{
        margin-top: 7%;
    }
}








/**********--------------******Opiniones********************/
#opiniones{
    padding-bottom: 5%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    overflow: hidden;
}


#opiniones .contenido{
    margin-left: 20px;
}

.swiper-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.swiper-container h3{
    margin-top: 20px;
    margin-bottom: 20px;
}
  .swiper-slide {
    width: 304px !important;
    filter: blur(2px);    
    background: transparent;
  }

  .swiper-slide-active{
    filter: blur(0px);
    background: transparent;
}


#opiniones .comentario{
    margin: auto;
    position: relative;
    height: 370px;
    width: 340px;    
    border-radius: 15px;
    left: -7%;
    background: #f7f7f7;
    border: 2px solid #184056;
    backdrop-filter: blur(6px);
    transition: all 0.5s ease-in-out;        
}
.swiper-slide-shadow-left{
    background: transparent;
}
.swiper-slide-shadow-right{
    background:transparent;
}


#opiniones .comillas{
    position: absolute;    
    height:70px !important;
    top: 0;
    right: 0;
}

#opiniones .comentario p{
    color: #272727;    
    width: 70%;
    height: 240px;
    font-size: 19px;    
    display: flex;
    justify-content: center;
    align-items: center;
}
#opiniones .datos{
    display: flex;    
    flex-direction: column;    
    justify-content: center;
    width: 140%;
    height: 90px;
    margin-left: 0;
}

#opiniones h4{
    color: #e01d44;
    font-weight: bold;
    font-size: 19px; 
    margin-bottom: 0;
}
#opiniones h5{
    margin-top: 0;
    color: #181818;
    font-size: 13px;
}

#opiniones img{
    border-radius: 50%;
    height: 100px;
    margin-right: 2%;
}

#opiniones .persona{
    position: absolute;
    bottom: 10px;
    left: 15px;
    right: 15px;
    display: flex;
    align-items: center;
}
#opiniones h1{
    width: 40%;
    text-align: center;
    padding-bottom: 30px;
    margin-top: 5%;
}

.persona-contacto{
    text-decoration: none;
}



@media (max-width:385px) {
    #opiniones h1{
        font-size: 15px;    
    }
    #opiniones .comentario{
        height: 450px;
        width: 270px;
        left: 0%;
    }
    #opiniones .comentario p{                
        font-size: 18px;                
        height: 320px;           
    }    
}










/***************-----------*************CONTACTO***************************/
#correo{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#correo .contenedor{
    position: relative;
    width: 80%;
    height: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: 30% 70%;    
    z-index: 10;
}
#correo .informacion{
    height:100%;        
    /* 
    background: linear-gradient(45deg, #184056 0%, #e01d44 100%);    
    animation: cambiar-Gradiente 10s ease infinite;
    background: #184056;
    background-size:300% ;       
    */
    background: linear-gradient(145deg, #1a445c, #163a4d);
box-shadow:  5px 5px 10px #15374a,
             -2px -2px 10px #1b4962;   
    border-radius: 6px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    z-index: 2;         
}

@keyframes cambiar-Gradiente{
    0%{
        background-position: 0% 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0% 50%;
    }
}


#correo .informacion h2{
    font-size: 24px;
    margin-left:25px;
    color: #fff;
}
#correo .informacion ul.info{
    position: relative;
    margin: 0px 10%;
    padding: 0;
}
#correo .informacion ul.info li{
    position: relative;
    list-style: none;
    display: flex;
    align-items: center;
    margin: 20px -15px;
    pointer-events:none;

}

#correo .informacion ul.info li span:nth-child(2){
    color: #fff;    
    font-weight: 500;
    font-size: 22px;
    margin-left: 12px;    
}
#correo img{
    height: 35px;
}
#correo .informacion ul.redes-sociales {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0;
    margin-bottom: 10px;
    padding: 0;
}

#correo .informacion ul.redes-sociales li{
    display: flex;
    justify-content: center;
    list-style: none;
    width: 18%;
    margin: 0;    
    padding: 0;    
}

#correo .informacion ul.redes-sociales img{
    height: 25px;
    transform: rotate(0deg);
    transition: 1s;    
}
#correo .informacion ul.redes-sociales img:hover{
    transform: rotate(360deg);
}

#correo .contenedor .formulario{
    background: #f7f7f7;
    box-shadow:  5px 5px 17px #929292,
    -5px -5px 17px #ffffff;
    margin-left: 2%;
    border-radius: 6px;
    padding: 5% 5% 10% 10%;
}

#correo .formulario input,textarea{
    width: 90%;
    margin-bottom: 20px;
    border: 0;
    outline: none;
    box-shadow: inset 3.6px 3.6px 6px #D1D1D1, inset -3.6px -3.6px 6px #FFFFFF;
    border-radius: 6px;
    padding: 8px 10px;
}
#correo .formulario input{
    font-size: 18px;
}

#correo .formulario p{
    margin-bottom: 1px;
    margin-top: 3px;
    font-size: 18px;
    color: #184056;
}
#correo .formulario textarea{
    height: 90px;
    resize: none;
    font-size: 16px;
    font-family: 900;
}
#correo button{
    background: linear-gradient(145deg, #26C1F0, #1A87A8);
    box-shadow: 1.8px 1.8px 7px #156A84, -1.8px -1.8px 7px #2BDEFF;
    border: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.7s ease-in-out;
}
#correo button:hover{
    transform: scale(1.1);

}
#correo form .boton{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width:1450px){
    #correo .informacion ul.info li span:nth-child(2){        
        font-size: 18px;
    }
}

@media (max-width:1210px){
    #correo .informacion ul.info li span:nth-child(2){        
        font-size: 16px;
    }
}

@media (max-width:1110px){
    #correo .informacion ul.info li span:nth-child(2){        
        font-size: 14px;
    }
}

@media (max-width:1000px){
    #correo .informacion ul.info li span:nth-child(2){        
        font-size: 20px;
    }
    #correo .informacion h2{        
        margin-left:35px;
    }
    #correo .contenedor{
        grid-template-columns: 100%;
    }
    #correo .contenedor .formulario{
        margin-left: 0;
        margin-top: 20px;
        margin-bottom: 14px;
        
    }
}
@media (max-width:400px){
    #correo .informacion ul.info li span:nth-child(2){        
        font-size: 15px;
    }
    #correo .informacion h2{        
        margin-left:20px;
    }
}
@media (max-width:310px){
    #correo .informacion ul.info li span:nth-child(2){        
        font-size: 13px;
    }
}

#mapa{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5%;
    margin-top: 2%;
}
#mapa iframe{
    height: 400px;
    width: 80%;
    border-radius: 6px;
    box-shadow:  5px 5px 17px #929292,
    -5px -5px 17px #ffffff;
}












/***********SERVICIOS****************/
#servicios{
    height: 100%;
    display: flex;
    background: #f7f7f7;
    justify-content: center;
    align-items: center;  
    margin-bottom: 18%;         
}

#servicios .contenedor{
    width: 90%;
    display: grid;
    grid-template-columns: repeat(3,31%);
    gap: 4%;    
}

@media (max-width:1220px){
    #servicios{
        margin-bottom: 23%; 
    }
}

@media (max-width:1050px){
    #servicios{
        margin-bottom: 28%; 
    }
}

@media (max-width:920px){
    #servicios{
        margin-bottom: 35%; 
    }
}

@media (max-width:810px){
    #servicios .contenedor{
        grid-template-columns: repeat(2,48%);        
    }
    #servicios{
        margin-bottom: 69%; 
    }
}
@media (max-width:700px){
    #servicios{
        margin-bottom: 95%; 
    }
}
@media (max-width:550px){
    #servicios .contenedor{
        grid-template-columns: 100%;
        gap: 20px;
    }
    #servicios{
        margin-bottom: 5%; 
    }
}

#servicios .servicio{
    position: relative;
    background: #f7f7f7;
    box-shadow: inset -5px -5px 10px #d9d9d9,inset 5px 5px 10px #f2f2f2;
    border-radius: 10px;
    padding: 10px 20px;
}
#servicios .servicio .rojo{
    font-size: 35px !important;
}
#servicios .servicio p{
    margin-top: 0;
    margin-bottom: 50px;    
}

.botones{
    position: absolute;
    bottom: 15px;
    left: 20px;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(145deg, #26C1F0, #1A87A8);
    box-shadow: 1.8px 1.8px 7px #156A84, -1.8px -1.8px 7px #2BDEFF;
    border: 0;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    transition: 0.5s ease-in-out;
}

.botones:hover{
    transform: scale(1.1);
}









/***************Titulo*****************/
#titulo{
    height: 100%;    
    width: 84%;
    margin: auto;
    margin-top: 130px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: #f7f7f7;
}
.titulo-intermedio{
    margin-top: 80px !important;
}

#titulo .contenedor{
    text-align: center;
    margin-bottom: 3%;
}

.microtitulo{
    position: relative;
    font-size: 20px;    
    margin: auto;
    display: flex;
    justify-content: center;
}
#titulo .servicios{
    width: 25%;
}
#titulo .opiniones{
    width: 17%;
}
@media (max-width:870px){
    #titulo .opiniones{
        width: 25%;
    }   
}
@media (max-width:610px){
    #titulo .opiniones{
        width: 35%;
    }   
}
@media (max-width:390px){
    #titulo .opiniones{
        width: 45%;
    }   
}

.microtitulo::before{
    position: absolute;
    content: '';
    width: 35px;
    height: 3px;
    left: -40PX;
    top: 45%;
    background: #20a4cc;
}
.microtitulo::after{
    position: absolute;
    content: '';
    width: 35px;
    height: 3px;
    right: -40px;
    top: 45%;
    background: #20a4cc;
}

#titulo .rojo{
    padding: 10px 0;
    margin: 0;
    font-size: 40px;
    font-weight: 900;
}

#titulo .azulclaro{
    padding: 0;
    margin: 0;

}


@media (max-width:480px) {    
    #titulo .microtitulo{
        font-size: 18px;
    }
    #titulo .azulclaro{
        font-size: 30px !important;        
    }
}
@media (max-width:330px) {
    #titulo .microtitulo{
        font-size: 14px;
    }
}








/*********************TITULO IZQUIERDA**********************/
#titulo-izquierda{
    position: relative;
    height: 100%;
    width: 90%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: auto;    
}
#titulo-izquierda .titulo-linea{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#titulo-izquierda .linea{
    width: 45px;
    height: 3px;
    margin-right: 10px;
    background: #20a4cc;
}



#titulo-izquierda h1{
    padding: 0 0;
    margin: 0 0;
    font-size: 40px;
    font-weight: 900;
}
#titulo-izquierda p{
    color: #181818;
    font-size: 19px;
}
#titulo-izquierda .contenedor-titulo{
    width: 100%;
    margin-left: 5%;
    margin-top: 5%;
}
#titulo-izquierda .contenido{
    width: 50%;
}

@media (max-width:1180px){
    #equipo{
        margin-top: 10%;
    }
}
@media (max-width:930px){
    #titulo-izquierda .contenido{
        width: 90%;
    }
}

main{
    margin-top: 100px;
}




