@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	border: none;
	outline: none;
} 

/* sección uno */

section:nth-child(2){
    background: rgb(255, 254, 254);
}

section:nth-child(4){
    background: rgb(255, 255, 255);
}

.banner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgb(255, 254, 255);
    width: 100%;
    height: auto;
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
}
.banner .text{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 50%;
    padding: 50px;
}

.banner .text h2{
    font-size: 39px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    color: #232748;
    margin: 15px;
}

.banner .text p{
    font-size: 31px;
    font-family: 'Roboto', sans-serif;
    color: #232748;
    margin: 15px;
}

.banner .img{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin: 30px 30px 0px 30px;
}

.img img{
    width: 650px;
}

/* Responsive */

@media (max-width: 414px){
    
    .banner{
        flex-direction: column;
    }
    .banner .text{
        text-align: center;
        width: 100%;
        padding: 0;
        padding-top: 50px;
    }
    .banner .text h2{
        font-size: 25px;
    }
    
    .banner .text p{
        font-size: 21px;
    }
    
    .banner .img{
        margin: 0;
        width: 100%;
    }
    
    .img img{
        width: 420px;
        box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
        
    }
    
    .cards p{
        height: 80px;
    }
}


/* seccion botones */

.botones{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90px;
    box-shadow: 0 10px 18px rgba(0,0,0,0.2);
    border-radius: 40px;
    position: relative;
    top: 10px;
}
.btn{
    display: flex;
    justify-content: center;
    width: 220px;
    height: 50px;
    background: #232748;
    margin: 25px;
    border-radius: 40px;
    transition: background-color .5s;
}

.btn a{
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin: 5px;
}

.btn img{
    width: 25px;
    height: auto;
    margin: 5px;
}

.btn:hover{
    background: rgb(102, 102, 113);
    transform: translateY(-15px);
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 414px){
    .btn{
        width: 180px;
        height: 50px;
        background: #232748;
        margin: 10px;
        border-radius: 40px;
        transition: background-color .5s;
    }
    .btn img{
        width: 40px;
        margin: 5px;
    }
}

/* sección dos */


.video1, .contenido, .video, .abstract{ 
    display: flex;
    justify-content: center;
    align-items: center;
}


.video1 {
    flex-direction: column;
    background-color: #F7F7F7;
    padding: 20px;
}

.video1 h3{
    font-family: 'Roboto', sans-serif;
    font-size: 35px;
    color: #232748;
    text-align: center;
    margin: 35px;
    width: 80%;
}

.video{
    margin: 15px;
    width: 50%;
}


.abstract{
    width: 50%;
    margin: 15px;
}

.abstract p{
    width: 75%;
    font-size: 18px;
    text-align: justify;
    font-family: 'Roboto', sans-serif;
}

@media (max-width: 414px){

    .contenido{
        flex-direction: column;
        width: 380px;
    }
    
    .video{
        margin: 15px;
        width: 50%;
    }
    
    
    .abstract{
        width: 75%;
        margin: 15px;
        flex-direction: column;
    }
    
    .abstract p{
        width: 100%;
    }
}

/* Section descargables */

.downloads, .cards, .container a{
    display: flex;
    justify-content: center;
    align-items: center;
}

.downloads{
    flex-direction: column;
    background: #F7F7F7;
}

.downloads h3{
    font-size: 45px;
    margin: 35px;
    font-family: 'Roboto', sans-serif;
    color: #232748;

}

.cards{
    flex-wrap: wrap;
    width: 920px;
    margin: 0px 25px 25px 25px;
}

.container a{
    flex-direction: column;
    width: 300px;
    border: .2px solid #232748;
    flex-wrap: wrap;
    transition: background-color .5s;
    background: #ffffff;
    height: auto;
}

.container a:hover{
    background: #EBF1FF;
    /* transform: translateY(-15px); */
    /* box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2); */
}


.cards img{
    width: 150px;
}

.cards h4{
    width: 250px;
    color: #232748;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    margin: 10px;
    text-align: center;
}

.cards p{
    width: 180px;
    height: 100px;
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    margin: 20px;
    color: #232748;
}


@media (max-width: 415px){
    .cards{
        width: 400px;
    }

    .downloads h3{
        text-align: center;
    }

    .cards img{
        width: 100px;
    }
}

/* seccion cuatro perfiles */

.profile{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px;
}

.profile h2{
    font-size: 55px;
    font-family: 'Roboto', sans-serif;
    color: #232748;
    margin: 25px;
    text-align: center;
}

.name {
    display: flex;
    justify-content: stretch;
    align-items: center;
    width: 100%;
}

.name img{
    width: 300px;
    margin: 15px 0px 0px 15px;
    
}
.name .tittle{
    font-size: 45px;
    font-family: 'Roboto', sans-serif;
    color: #232748;
    margin: 35px;
    
}

.tittle p{
    font-size: 30px;
    font-family: 'Roboto', sans-serif;
    
}

.parrafos{
    /* width: 100%; */
    display: flex;
    justify-content: center;
    margin: 25px;
}

.parrafos p{
    margin: 15px;
    text-align: justify;
    font-family: 'Roboto', sans-serif;
    width: 90%;
    color: #232748;
}

.card{
    margin: 15px;
    border-radius: 25px;
    /*width: 1250px;*/
    box-shadow: 0 10px 18px rgba(0,0,0,0.2);
}

/* responsive tableta 800px */

@media (max-width: 1024px){
    .banner .text{
        text-align: center;
        width: 100%;
        padding: 0;
    }
    .banner .text h2{
        font-size: 25px;
    }

    .banner .text p{
        font-size: 21px;
    }

    .banner .img{
        margin: 0;
        width: 100%;
    }
    
    .img img{
        width: 420px;
    }

    /* videos */

    .abstract p{
        width: 90%;
    }

    /* cards */

    .cards{
        width: 100%;
    }

    .card{
        width: 100%;
    }

    .parrafos{
        width: 100%;
        flex-direction: column;
    }

}


@media (max-width: 414px){
    .name{
        flex-direction: column;
    }

    .card{
        width: 380px;
    }

    .name .tittle{
        font-size: 30px;
        margin: 15px;
        width: 250px;
        text-align: center;
    }

    .tittle p{
        font-size: 25px;
    }
    .parrafos{
        width: 330px;
        flex-direction: column;
    }
    .parrafos p{
        width: 90%;
    }
}