/*RESET*/
*{
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/*HEADER*/
header{
    height: 100px;
    background: #1b6eb4;
    padding: 0 50px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.menu a{
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 10px;
    transition: 0.4s;
}
.mostrar-menu, 
.esconder-menu{
    font-size: 30px;
    cursor: pointer;
    display: none;
    transition: 0.4s;
}
.mostrar-menu{
    order: 1;
}
.menu a:hover,
.mostrar-menu:hover,
.esconder-menu:hover{
    color: #6cc091;
}
#check{
    display: none;
}

/*BANNER*/
#banner{
    padding: 0 50px;
    height: 45vh;
    background-size: cover;
    background-position: center;
}
#banner::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 45vh;
    left: 0;
}
.contenido-banner {
    position: relative;
    color: #000;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}
.contenido-banner h3{
    background-color: rgba(255, 255, 255, 0.5);
    font-size: 50px;
    font-weight: 400;
    padding: 10px 20px;
}
.contenido-banner h3 span{
    font-weight: 600;
}

/*INFORMACION*/

#informacion{
    
    background: #d9d9d9;
    padding: 10px 10px 10px 10px;
    display: flex;
    justify-content: center;
    text-align: center;
}
#informacion img{
    padding: 10px 20px;
}
#informacion div {
    display: block;
    unicode-bidi: isolate;
    background-color: #fff;
    margin: 15px 15px 15px 15px;
    width: 18%;
    border-radius: 15px 15px 15px 15px;
}
#informacion div p{
    font-family:select,  sans-serif;
    font-weight: bold;
    font-size: 20px;
}


/*MENSAJE*/
#mensaje{
    
    background: #fff;
    padding: 10px 10px 10px 10px;
    display: flex;
    justify-content: center;
    text-align: center;
}
#mensaje h4 span{
    font-size: 50px;
    font-weight: 400;
    font-family: 'Lucida Calligraphy';
    padding: 10px 0px;
}

/*DESCRIPCION*/
#descripcion{
    background: #d9d9d9 ;
    padding: 0px 50px 0px 50px;
    display: flex;
    justify-content: center;
    text-align: center;
}

#descripcion div{

    display: block;
    unicode-bidi: isolate;
    margin: 15px 15px 15px 0px;
}


#descripcion img{

    margin: 15px 15px 15px 0px;   
    width: 100%;
}

/*MODALIDAD*/
#modalidad{
    
    background: #fff;
    padding: 0px 50px 0px 50px;
    display: flex;
    justify-content: center;
    text-align: center;
}
#modalidad div{
    display: block;
    unicode-bidi: isolate;
    margin: 15px 15px 15px 0px;
}
#modalidad img{
    margin: 15px 15px 15px 0px;
    width: 100%;
}

/*VIDEO*/
#video {
    background: #d9d9d9;
    padding: 50px 25% 50px 25%;
    display: inline-block;
    justify-content: center;
    text-align: center;
    width: 50%;

}
#video div {
	position: relative;
	padding-bottom: 56.25%;
    height: 0;
 }  
#video iframe, .video object, .video embed {
	height: 100%;
	left: 0;
	position:absolute;
	top: 0;
	width: 100%;

	}
/*CONTACTO*/
#contacto{
    background: #fff ;
    padding: 10px 10px 10px 10px;
    display: flex;
    justify-content: center;
    text-align: center;
}
/*CONTACTO*/
#contacto2{
    background: #fff ;
    padding: 10px 10px 10px 10px;
    display: flex;
    justify-content: center;
    text-align: center;
}

#contacto2 img{

    margin: 15px 150px 15px 150px;   
    width: 50%;
}
/*CONTACTO*/
#contacto3{
    background: #fff ;
    padding: 10px 10px 10px 10px;
    display: flex;
    justify-content: center;
    text-align: center;
}


/*PAGO*/
 #pago{
    background: #d9d9d9 ;
    padding: 0px 50px 0px 50px;
    display: flex;
    justify-content: center;
    text-align: center;
     
 }

#pago div{

    display: block;
    unicode-bidi: isolate;
    margin: 15px 15px 15px 0px;
}


#pago img{

    margin: 15px 15px 15px 0px;   
    width: 100%;
}




#banner_matricula{
    padding: 0 50px;
    background-size: cover;
    background-position: center;
}
.contenido-banner_matricula {
    position: relative;
    color: #000;
    display: flex;
    justify-content: center;
    
}
.contenido-banner_matricula h3{
    background-color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-size: 50px;
    font-weight: 400;
    padding: 10px 20px;
}
.contenido-banner_matricula h3 span{
    text-align: center;
    font-weight: 600;
}

#formulario{
    background: #d9d9d9;
    padding: 10px 10px 10px 10px;
    display: flex;
    justify-content: center;
    text-align: left;
}

#formulario div {
    padding: 30px 30px 30px 30px;
    display: block;
    unicode-bidi: isolate;
    background-color: #fff;
    margin: 15px 15px 15px 15px;
    width: 50%;
    border-radius: 15px 15px 15px 15px;
    font-family:select,  sans-serif;
    font-weight: bold;
    font-size: 20px;
}































/*RESPONSIVE*/
@media(max-width: 768px){
    /*HEADER*/
    .mostrar-menu, 
    .esconder-menu{
        display: block;
    }   
    .menu{
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #1b6eb4;
        right: -100%;
        top: 0;
        text-align: center;
        padding: 100px 0px;
        z-index: 100;
        transition: 0.8s;
    }
    .menu a{
        display: block;
        padding: 20px;
    }
    .esconder-menu{
        position: absolute;
        top: 40px;
        right: 40px;
    }
    #check:checked ~ .menu{
        right: 0;
    }

    /*INFORMACION*/
    #informacion{
        flex-direction: column;
    }
    #informacion div{
        width: 90%;
    }
    #descripcion{
        flex-direction: column;
    }
    #modalidad{
        flex-direction: column;
    }
    #mensaje{
        flex-direction: column;
    }
    #video{
        flex-direction: column;
        padding: 50px 5% 50px 5%;
        width: 90%;
    }
    #contacto{
        flex-direction: column;
    }
    #contacto2{
       flex-direction: column;
        width: 50%;
    }
    #contacto3{
        flex-direction: column;
    }
    #pago{
       flex-direction: column;
    }
}
