@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Pinyon+Script&display=swap');/***********************************
 * PALETA DE COLORES Y TIPOGRAFIAS *
 **********************************/
:root{
    --dm-sans: "DM Sans", sans-serif;
    --pinyon-script: "Pinyon Script", cursive;;
    --crema: #efe8d8;
    --verde: #c5dbaa;
    --amarillo: #f9d793;
    --rojo: #aa1f1b;
    --rosa: #f5c8c3;
    --texto: #000;
}

/*********************
 * ESTILOS GENERALES *
 ********************/
#buscador{
	display: none;
}
.fa-plus{
	margin-right: 1vw;
}
.eliminar{
	cursor: pointer;
}
.editar{
	cursor: pointer;
}
.tope{
    width: 100%;
    height: 100px;
}
*{
    box-sizing: border-box;
    position: relative;
    margin: 0px;
}
h1, h2, h3, h4, h5, p{
    width: 100%;
}
body{
    margin: 0 auto;
    font-weight: 400;
    background-color: #FFF;
    font-family: var(--dm-sans);
    -webkit-font-smoothing:antialiased;
    color: var(--texto);
}
section{
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    padding: 5vw;
    padding-left: 7%;
    padding-right: 7%;
    justify-content: center;
    align-items: center;
    /*overflow: hidden;*/
    background-image: url(images/KB_BACKUSER2.png);
    background-position: center center;
    background-size: cover;
}
/*section > *{
    padding-left: 2%;
    padding-right: 2%;
}*/
h1{
    font-size: 3.5vw;
    font-weight: 900;
    line-height: .9;
    text-align: center;
    font-family: var(--sans);
    padding-top: 2vw;
    padding-bottom: 2vw;
}
h2{
    font-size: 1.4vw;
    font-weight: 900;
    line-height: 1;
}
p{
    font-size: 1.1vw;
    font-weight: 400;
    line-height: 1.2;
    font-family: var(--anek);
    margin: 0px;
}
h3{
    font-size: .9vw;
    font-weight: 700;
}

/*********************
 *      HEADER       *
 ********************/
header{
    position: fixed;
    top: 0px;
    width: 100%;
    height: 50px;
    z-index: 10;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 2;
    justify-content: center;
    background-color: var(--azul-oscuro);
    display: none;
}
header > a{
    width: 220px;
    display: block;
}
header > a > img{
    width: 85%;
    margin-left: 15%;
    height: auto;
    top: 60px;
}


/*********************
 *    BOTON MENU     *
 ********************/
input[type="checkbox"], .logo-movil{
    display:none;
}
#boton-lineas{
    display: flex;
    flex-direction: column;
    width: 45px;
    cursor: pointer;
    right: 5%;
    /*position:fixed;*/
    z-index: 11;
    top: 0vw;
    right: 1%;
    box-sizing: content-box;
    padding: 10px;
    position: fixed;
    display: none
}
#boton-lineas span{
    background: #FFF;
    height:3px;
    margin: 4px 0;
    transition: .4s  cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
#boton-lineas span:nth-of-type(1){
    width:50%;
}
#boton-lineas span:nth-of-type(2){
    width:100%;
}
#boton-lineas span:nth-of-type(3){
    width:65%;
}    
input[type="checkbox"]:checked ~ span:nth-of-type(1){
    transform-origin:bottom;
    transform:rotatez(45deg) translate(1px,0px)
}
input[type="checkbox"]:checked ~ span:nth-of-type(2){
    transform-origin:top;
    transform:rotatez(-45deg)
}
input[type="checkbox"]:checked ~ span:nth-of-type(3){ 
    transform-origin:bottom;
    width:50%;
    transform: translate(30px,-11px) rotatez(45deg);
    transform: translate(15px, -4px) rotatez(45deg);
}
.abierto{
    background-color: var(--verde);
}

/*********************
 *        MENU       *
 *********************/
nav{
	position: fixed;
    width: 75px;
    top: 0px;
    left: 30px;
    z-index: 2;
    height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
    flex-direction: column;
}
nav > div{
	width: 100%;
	background-color: #FFF;
	border-radius: 75px;
	overflow: hidden;
}
nav > div > a, nav > div > p{
    width: 100%;
    font-size: 22px;
    display: block;
    text-align: center;
    height: 60px;
    color: var(--texto);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
nav > div:nth-child(1){
	margin-bottom: 20px;
}
nav > div > a:hover, nav > div > p:hover{
	background-color: #f2f2f2;
	color: var(--rojo);
}
/*nav > div > a:nth-child(1):hover{
	color: var(--rosa);
}
nav > div > a:nth-child(2):hover{
	color: var(--verde);
}
nav > div > a:nth-child(3):hover{
	color: var(--rojo);
}
nav > div > a:nth-child(4):hover{
	color: var(--amarillo);
}
nav > div > a:nth-child(5):hover{
	color: var(--rosa);
}
nav > div > a:nth-child(6):hover{
	color: var(--verde);
}*/
nav > div > a:first-child{
	padding-top: 20px;
	height: 80px;
}
nav > div > a:last-child{
	padding-bottom: 20px;
	height: 80px;
}
@keyframes open-link{
    from{letter-spacing: 0vw; font-weight: 300}
    to{letter-spacing: .2vw; font-weight: 500}
}
@keyframes close-link{
    from{letter-spacing: .2vw; font-weight: 500}
    to{letter-spacing: 0vw; font-weight: 300}
}

/*********************
 *    AJAX RESULT    *
 *********************/
#ajax-result{
	display: flex;
	flex-wrap: wrap;
}
#ajax-result > aside{
	display: none;
}
#ajax-result table{
	width: 100%;
}
/*#ajax-result th{
	display: none;
}*/
#ajax-result tr:first-child{
	border:0px;
}
#ajax-result tr{
	display: flex;
	justify-content: normal;
	align-items: center;
	border-bottom: solid 1px var(--texto);
	width: 100%;
	padding-bottom: .5vw;
    padding-top: .5vw;
}
#ajax-result td{
	text-align: left;
}
#ajax-result td.boton{
	width: 3vw;
	text-align: center;
}
#ajax-result > a{
	width: 100%;
	color: #000;
	line-height: 2;
	padding-left: 2%;
	padding-right: 2%;
	background-color: var(--verde);
	margin-top: .5vw;
	margin-bottom: .5vw;
	border-radius: 1.5vw;
	padding-top: 1vw;
	padding-bottom: 1vw;
	display: flex;
	flex-wrap: wrap;
}
#ajax-result > a > h2{
	width: 100%;
	line-height: 1;
}
#ajax-result > a > p{
	width: 33%;
	font-size: 1vw;
	line-height: 1;
}
#ajax-result > a.liga-tareas{
	line-height: 1.5;
}
/*#ajax-result > a:nth-child(1){
	background-color: var(--verde);
	margin-top: 2vw;
}
#ajax-result > a:nth-child(2){
	background-color: var(--rojo);
	color: #FFF;
}
#ajax-result > a:nth-child(3){
	background-color: var(--amarillo);
}
#ajax-result > a:nth-child(4){
	background-color: var(--rosa);
}*/
#ajax-result > article{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	color: #000;
	padding-top: .6vw;
	padding-bottom: .6vw;
	padding-left: 2%;
	padding-right: 2%;
	/*background-color: var(--verde);*/
	/*margin-top: .5vw;
	margin-bottom: .5vw;*/
	border-radius: 2vw;
}
#ajax-result > article:first-child{
	margin-top: 2vw;
}
#ajax-result > article > p{
	width: 100%;
}

#ajax-result > p{
	border-bottom: solid 1px #000;
	line-height: 2;
}
#ajax-result > p > span{
	font-weight: 800;
}
/*********************
 *   MAIN CONTAINER  *
 *********************/
#main-container{
	flex-direction: row;
	padding-left: calc(7% + 80px);
	align-items: flex-start;
}
#main-container > aside{
	width: 100%;
}
#main-container > article{
	width: 40%;
	margin-left: 5%;
	margin-top: 7.5vw;
}
#main-container > div{
	width: 50%;
}

#main-container > aside > h1{
	text-align: left;
}
#main-container > aside > h2{
	background-color: #FFF;
    border-radius: 3vw;
    font-size: 1.6vw;
    padding: 1.5vw;
    cursor: pointer;
    width: fit-content;
    padding-left: 2vw;
    padding-right: 2vw;
}
#main-container > aside > h2:hover{
	background-color: var(--verde);
	color: #FFF;
}
#main-container > aside > article {
	background-color: #FFF;
	border-radius: 3vw;
	padding: 2.5vw;
	margin-bottom: 2vw;
}
#main-container > aside > article > h2{
	font-size: 3vw;
	font-weight: 700;
	margin-bottom: 1.5vw;
}
#main-container > aside > article > video{
	width: 100%;
	height: 45vw;
}
#main-container > aside > article > h3{
	font-size: 1.2vw;
	font-weight: 600;
	margin-bottom: .5vw;
	margin-top: .5vw;
}
#main-container > aside > article > p{
	font-size: 1vw;
	font-weight: 600;
	margin-top: 1vw;
}
#main-container > aside > article > a{
	width: 100%;
	display: block;

	width: 100%;
    display: block;
    background-color: rgba(255, 255, 255, .5);
    margin-bottom: .5vw;
    border-radius: 1vw;
    padding-left: 3%;
    padding-right: 3%;
    font-size: 1.2vw;
    margin-top: .5vw;
}
#main-container > aside > article > a span{
	background-color: #000;
    color: #FFF;
    border-radius: 1vw;
    display: inline-block;
    width: 12px;
    text-align: center;
    height: 12px;
    line-height: 11px;
    font-weight: 400;
}
#main-container > aside > article > div:nth-child(1){
	display: flex;
	align-items: center;
}
#main-container > aside > article > div:nth-child(1) > p:nth-child(1){
	background-color: var(--crema);
	font-size: 1.8vw;
	width: 4vw;
	height: 4vw;
	text-align: center;
	line-height: 4vw;
	border-radius: 4vw;
}
#main-container > aside > article > div:nth-child(1) > p:nth-child(2){
	font-size: 1.6vw;
	font-weight: 800;
	margin-left: 1.5vw;
	width: 50%;
}
#main-container > div{
	border-radius: 3vw;
	padding: 2.5vw;
	margin-top: 5vw;
}
#main-container > div > video{
	width: 25vw;
	border-radius: 3vw;
}
#main-container > article{
	background-color: #FFF;
	border-radius: 3vw;
	padding: 2.5vw;
}
#main-container > article > div:nth-child(1){
	display: flex;
	align-items: center;
	margin-bottom: 2vw;
}
#main-container > article > div:nth-child(1) > p:nth-child(1){
	background-color: var(--crema);
	font-size: 1.8vw;
	width: 4vw;
	height: 4vw;
	text-align: center;
	line-height: 4vw;
	border-radius: 4vw;
}
#main-container > article > div:nth-child(1) > p:nth-child(2){
	font-size: 1.6vw;
	font-weight: 800;
	margin-left: 1.5vw;
	width: 50%;
}
#main-container > article > p{
	border-bottom: solid 1px var(--texto);
	padding-bottom: .5vw;
	padding-top: .5vw;
}

#main-container > aside > article > aside{
	background-color: #000;
	height: 2.5vw;
	border-radius: 3vw;
	overflow: hidden;
	display: flex;
	margin-top: 2vw;
	margin-bottom: 2vw;
}
#main-container > aside > article > aside > h2{
	background-color: #FFF;
	height: 100%;
	width: 35%;
	border-radius: 3vw;
	font-size: 1.2vw;
	font-weight: 800;
	letter-spacing: .5vw;
	line-height: 2.5vw;
	padding-left: 3%;
}
#main-container > aside > article > aside > article{
	width: 65%;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}
#main-container > aside > article > aside > article > p{
	background-color: #FFF;
	width:1.5vw;
	height: 1.5vw;
	border-radius: 1.5vw;
}

#main-container > div > article{
	background-color: #FFF;
	border-radius: 3vw;
	padding: 2.5vw;
	margin-top: 2.5vw;
}
#main-container > div > article.ventas{
	background-color: #000;
	color: #FFF;
}
#main-container > div > article.ventas > article > p > span{
	font-size: 2vw;
	font-weight: 800;
}
#main-container > div > article.ventas > div:nth-child(1) > p:nth-child(1){
	color: #000;
}
#main-container > div > article > div:nth-child(1){
	display: flex;
	align-items: center;
	margin-bottom: 2vw;
}
#main-container > div > article > div:nth-child(1) > p:nth-child(1){
	background-color: var(--crema);
	font-size: 1.8vw;
	width: 4vw;
	height: 4vw;
	text-align: center;
	line-height: 4vw;
	border-radius: 4vw;
}
#main-container > div > article > div:nth-child(1) > p:nth-child(2){
	font-size: 1.6vw;
	font-weight: 800;
	margin-left: 1.5vw;
	width: 50%;
}
#main-container > div > article > p{
	border-bottom: solid 1px var(--texto);
	padding-bottom: 1vw;
}
#main-container > article#foto-perfil{
	border: solid 10px #fff;
    width: 15vw;
    height: 15vw;
    border-radius: 11vw;
    margin-left: 20%;
    margin-right: 5%;
    margin-top: 11vw;
    background-image: url(../images/Portrait_Placeholder.png);
    background-position: center center;
    background-size: cover;
    padding: 0px;
    overflow: hidden;
}
#main-container > article > div#foto-alumno:nth-child(1){
	position: absolute;
	bottom:0px;
	padding: 0px;
	height: 15%;
	margin: 0px;
	width: 100%;
	display: flex;
	padding: 1vw;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: rgba(0,0,0,.3);
	color: #FFF;
    
}
#main-container > article > div#foto-alumno:nth-child(1):hover{
	color: var(--verde);
    background-color: rgba(255,255,255,1);
}
.datos-perfil{
	flex-wrap: wrap;
	flex-direction: row;
	align-items: center;
}
.datos-perfil > aside{
	width: 50% !important;
}

/*********************
 *     CONTAINER	 *
 *********************/
#container > form{
	width: 350px;
	height: 350px;
	background-color: var(--crema);
	box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.3);
	-webkit-box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.3);
	border-radius: 40px;
	overflow: hidden;
	padding: 40px;
}
#container > form > h1{
	font-weight: 400;
	font-size: 2.5vw;
	text-align: left;
	margin-bottom: 15px;
	padding-bottom: 0px;
	padding-top: 40px;
}

/*********************
 *      LOG IN   	 *
 *********************/
#login > div{
	display: flex;
	background-color: #FFF;
	padding: 5px;
	padding-left: 10px;
	border-radius: 50px;
	margin-bottom: 15px;
	height: 50px;
	align-items: center;
}
#login > div > p{
	width: 35px;
	height: 35px;
	text-align: center;
	line-height: 35px;
	border-radius: 35px;
	background-color: var(--crema);
}
#login > div > input{
	width: 200px;
	border: 0px;
	font-size: 14px;
	padding-left: 5%;
}
#login > article{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
#login > article > p{
	width: 30px;
	border-radius: 10px;
	height: 20px;
	left: 10px;
	background-color: #000;
}
#login > article > #entrar{
	border: 0px;
	width: 40px;
	height: 40px;
	color: #FFF;
	font-size: 18px;
	font-weight: 700;
	border-radius: 40px;
	background-color: #000;
}




/*********************
 *     BOOTSTRAP	 *
 *********************/

#ajax-message-body{
  text-align: center;
}
.modal-content{
	background-color: var(--crema);
	border-radius: 50px;
    padding: 15px;
}
.modal-content input{
	border-radius: 0px; 
}
.modal-content textarea{
	border-radius: 0px; 
}
.modal-title{
	width: 65%;
	padding-left: 10px;
	font-weight: 900;
	color: #000;
	font-size: 24px;
	font-family: var(--dm-sans);
}
.ck.ck-editor{
	margin-bottom: 10px;
}
.modal-body{
  padding: 35px !important;
  /*background-color: #FFF !important;*/
}
.btn-primary{
  background-color: #000;
  margin-top: 0px;
  border-radius: 20px;
  font-family: var(--dm-sans);
  font-weight: 900;
}
.btn-primary:hover{
  background-color: var(--rojo);
}
.form-control{
  background-color: #fff !important;
  border-radius: 3vw;
  margin-bottom: 10px;
}
.form-outline .form-control:focus~.form-label{
  color: var(--rojo) !important;
}
.form-outline .form-control:focus~.form-notch .form-notch-leading {
    border-top: .125rem solid var(--rojo) !important;
    border-bottom: .125rem solid var(--rojo) !important;
    border-left: .125rem solid var(--rojo) !important;
    box-shadow:-1px 0px 0px 0px var(--rojo), 0px 1px 0px 0px var(--rojo), 0px -1px 0px 0px var(--rojo) !important;
}
 .form-outline .form-control:focus~.form-notch .form-notch-middle {
    border-bottom: .125rem solid !important;
    border-color: var(--rojo) !important;
    border-top:none !important;
    box-shadow: 0 1px 0 0 var(--rojo) !important;
}
.form-outline .form-control:focus~.form-notch .form-notch-trailing {
    border-color: currentcolor currentcolor currentcolor var(--rojo); !important;
    border-bottom: .125rem solid var(--rojo) !important;
    border-right: .125rem solid var(--rojo) !important;
    border-top: .125rem solid var(--rojo) !important;
    box-shadow: 1px 0 0 0 var(--rojo), 0 -1px 0 0 var(--rojo), 0 1px 0 0 var(--rojo) !important;
}
.form-outline .form-control:focus~.form-label {
    color: var(--rojo);
} 
.form-outline .form-control~.form-label{
  color: var(--texto);
}

/*.btn{
  text-transform: unset !important;
}*/
/*.modal-header{
  padding-left: 35px !important;
  padding-left: 35px !important;
  background-image: url(bannerperfil.png);
  background-position: center center;
  background-size: auto 100%;
  background-color: var(--ajax-result-color-icono);
}*/
/*.btn-floating{
  margin: 0px !important;
  margin-right: 5px !important;
}*/
/*.form-outline .form-control.active~.form-notch .form-notch-middle, .form-outline .form-control:focus~.form-notch .form-notch-middle {
  border-top: 1px transparent !important;
}*/


/*********************
 *      CURSOS       *
 ********************/
.cursos{
    padding-left: 0px;
    padding-right: 0px;
    background-image: url(images/KV_CURSOS.png);
    background-position: center center;
    background-size: cover;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
	padding-left: 8%;
}
.cursos > h2{
    font-size: 3.5vw;
    font-weight: 900;
    line-height: .9;
    text-align: center;
    font-family: var(--sans);
    padding-top: 2vw;
    padding-bottom: 2vw;
    text-align: left;
    padding-left: 6%;
}
.cursos > h1{
    font-size: 3vw;
    line-height: .8;
    padding-bottom: 3vw;
    margin-bottom: 0px;
}
.cursos > h1 > span{
    font-size: 3vw;
    font-weight: 400;
}
.cursos > a{
    width: 28%;
    margin: .5vw;
    min-height: 40vw;
    background-color: #FFF;
    border-radius: 3vw;
    padding: 3vw;
    border:solid 1px var(--crema);
    box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.29);
    -webkit-box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.29);
    -moz-box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.29);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: flex-start;
}
.cursos > a > h5{
    font-size: 2.5vw;
    width: 30%;
    text-align: right;
}
.cursos > a:nth-child(2) > h5{
    color: var(--amarillo);
}
.cursos > a:nth-child(3) > h5{
    color: var(--verde);
}
.cursos > a:nth-child(4) > h5{
    color: var(--rosa);
}
.cursos > a > div{
    width: 70%;
}
.cursos > a > p{
	font-size: 1vw;
}
.cursos > a > ul{
	padding-left: 0px;
	list-style: none;
	font-size: 1vw;
	margin: 0px;
}
.cursos > a > ul > li{
	line-height: 1.1;
	margin-top: .5vw;
	margin-bottom: .5vw;
	font-weight: 600;
}
.cursos > a > ul > li::before{
	content: "+";
	font-weight: 800;
}
.cursos > a > div > h2{
    font-size: 3.2vw;
    padding-bottom: 1vw;
}
.cursos > a > p > span{
    font-style: italic;
}
.cursos > a > h4{
    position: absolute;
    bottom: 1vw;
    right: 3vw;
    text-align: right;
    font-weight: 500;
    font-size: 2.2vw;
}
.cursos > a > h4 > span{
    font-weight: 400;
    font-size: 1vw
}

a{
	text-decoration: none;
	color: inherit;
}
.edit{
	color: var(--rojo);
	font-size: 1vw;
	cursor: pointer;
}
.oculto{
	display: none;
}


@media (max-width: 480px){

	#container > form > h1{
		font-size: 6vw;
	}
	#login > div > input{
		font-size: 4vw;
	}
	#login > div > p{
		font-size: 3vw;
	}
	h1{
		font-size: 6vw !important;
	}
	h2{
		font-size: 5vw !important;
	}
	h3{
		font-size: 4vw;
	}
	p{
		font-size: 4vw;
	}
	nav{
		left: -40vw;
	}
	#main-container > div > article.ventas > article > p > span{
		font-size: 4vw;
	}
	#main-container{
		flex-direction: row;
		justify-content: flex-start;
		padding: 8vw;
		flex-direction: column;
	}
	#main-container > article{
		width: 100%;
		margin-left: 0px;
		margin-top: 0vw;
	}
	#main-container > aside > article > div:nth-child(1) > p:nth-child(2){
		font-size: 4vw;
		width: calc(100% - 8vw);
	}
	#main-container > aside > article > div:nth-child(1) > p:nth-child(1) {
	    font-size: 3vw;
	    width: 8vw;
	    height: 8vw;
	    line-height: 8vw;
	    border-radius: 8vw;
	}
	#main-container > article > div:nth-child(1) > p:nth-child(2){
		font-size: 4vw;
	}
	#ajax-result > a > p{
		font-size: 3vw;
	}
	#main-container > div{
		width: 100%;
		padding: 0px;
	}
	#ajax-result > a{
		border-radius: 4vw;
		margin-top: 3vw;
	}
	#main-container > div > article > div:nth-child(1) > p:nth-child(1){
		font-size: 3vw;
	    width: 8vw;
	    height: 8vw;
	    line-height: 8vw;
	    border-radius: 8vw;
	}
	#main-container > div > article > div:nth-child(1) > p:nth-child(2){
		font-size: 4vw;
		width: calc(100% - 8vw);
	}
	#main-container > article > div:nth-child(1) > p:nth-child(1){
		font-size: 3vw;
	    width: 7vw;
	    height: 7vw;
	    text-align: center;
	    line-height: 7vw;
	    border-radius: 4vw;
	}
	#ajax-result{
		font-size: 3vw;
	}
	#main-container > aside > h2 {
	    border-radius: 3vw;
	    font-size: 4vw;
	    padding: 3vw;
	    padding-left: 5vw;
	    padding-right: 5vw;
	}
	#boton-lineas{
		display: flex;
        top: 4vw;
        right: 7vw;
	}
	#boton-lineas span{
		background-color: #000;
	}
	.modal-content {
	    background-color: var(--crema);
	    border-radius: 3vw;
	    padding: 0vw;
	    margin: 2vw;
	}

	.cursos > a{
        width: 80%;
        height: auto;
        padding: 6vw;
        padding-bottom: 12vw;
        margin-bottom: 3vw;
    }
    .cursos > h1 > span{
        font-size: 6v;
    }
    .cursos > a > div > h2{
        font-size: 9vw;
        padding-bottom: 4vw;
    }
    .cursos > a > h5{
        font-size: 7vw;
    }
    .cursos > a > h4 > span{
        font-size: 4vw;
    }
    .cursos > a > p{
        padding-bottom: 3vw;
        font-size: 3vw;
    }
    .cursos > a > h4{
        font-size: 6vw;
        bottom: 3vw;
    }
    .cursos > a > h6{
        font-size: 3.5vw;
        height: auto;
        line-height: 1;
        padding: 1.5vw;
        border-radius: 3vw;
        bottom: 4vw;
    }
    #main-container > aside > article > h3{
    	font-size: 3vw;
    }
    #main-container > aside > article > p{
    	font-size: 3vw;
    }
    #main-container > aside > article > aside > h2{
    	font-size: 3vw !important;
    	letter-spacing: .2vw;
    }
    #main-container > aside > article > aside{
    	height: 5vw;
    }
    #main-container > aside > article > aside > h2{
    	line-height: 5vw;
    }
    #main-container > aside > article > a span{
    	border-radius: 25px;
	    width: 25px;
	    height: 25px;
	    line-height: 24px;
    }
    #main-container > aside > article > a{
    	font-size: 3vw;
    	border-radius: 4vw;
    	margin-top: 2vw;
    }
    .datos-perfil > aside{
    	width: 100% !important;
    }
    .edit{
    	font-size: 3vw;
    }
    #main-container > article#foto-perfil{
    	width: 30vw;
	    height: 30vw;
	    border-radius: 15vw;
	    margin-left: 32%;
	    margin-top: 5vw;
    }
    .cursos{
    	padding-left: 0px;
    }

}
