body {
	margin:0;
	font-family:Arial;
	padding: 10px;
	/*Color fondo*/
    background: #faf3fa ;
}

/*
	Barra de t�tulo
*/
		
.topnav {
  overflow: hidden;
  /*Color barra de menu*/
  background-color: #385995;
}

.topnav img{
	float: left;
	display: block;
	margin: 10px 20px 0px 20px; 
}

.topnav a {
	float: left;
	display: block;
	color: #f2f2f2;
	text-align: center;
	padding: 25px 16px;
	text-decoration: none;
	font-size: 18px;
}


#title {
	display: block;
	color: #f2f2f2;
	padding: 20px 0px;
	text-decoration: none;
	font-size: 25px;
	font-weight:bold;
	margin-right:60px;
}


.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 18px;    
  border: none;
  outline: none;
  color: white;
  padding: 25px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav  a:hover a:not(:first-child),  .dropdown:hover .dropbtn {
  background-color: #5777b2;
  color: white;
}

#moodle:hover{
	background-color: #5777b2;
	color: white;
  }

.dropdown-content a:hover {
  background-color: #e1ebf3;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 750px) {
  .topnav a:not(:first-child) , .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 750px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
	top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}


/*
	Areas del cuerpo de la web
*/	

/*
	seccion de color blanco 
*/

.card {
	background-color: white;
    padding: 20px;
    margin-top: 10px;
	padding-left:16px;
}

/* Clear floats after the columns */
.row1:after {
	content: "";
    display: table;
    clear: both;
}
		
 /* Footer */
.footer {
	padding: 2px;
    text-align: center;
    margin: 10px 0px;
}
		
.footer a{
	text-decoration: none;
}

	
/*
	Tarjetas responsive
*/	
	
* {
  box-sizing: border-box;
}


/* Center website */

.main {
	max-width: 1200px;
	margin: auto;
}


.row {
	margin: 50px 16px 10px 16px;
}

/* Add padding BETWEEN each column */

.row, .row > .column {
	padding: 10px;
}

/* Create four equal columns that floats next to each other */

.column {
	float: left;
	width: 25%; 
}

/* Clear floats after rows */ 

.row:after {
	content: "";
	display: table;
	clear: both;
}

/* Content */

.content {
	border-radius: 15px;
	background-color: #cdf4d7;
	padding: 15px;
	text-align: center;
}
/* Espacio despues del nombre del ciclo en la tarjeta */
.content h3 {
	margin-top: 25px;
	margin-bottom: 50px;
}

/* Responsive layout - makes a two column-layout instead of four columns */

@media screen and (max-width: 900px) {
	.column {
		width: 50%;
	}
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */

@media screen and (max-width: 580px) {
	.column {
		width: 100%;
	}
}
		
/*
	Hover sobre las im�genes
*/
		
.vertical-menu  a {
	color: #0c0e74;
    display: block;
    padding: 10px;
    border-bottom: #ccc4eb solid 1px;
    border-spacing: 0;
    text-decoration: none;
	font: 20px Calibri;
	background-color: #d8f7d4;
}
		
.vertical-menu a:first-child{
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}
		
.vertical-menu a:hover {
	background-color: #f0f8ff;
}
		
.container:hover .overlay {
	opacity: 1;
}

.overlay {
	border-radius: 15px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	transition: .3s ease;
	background-color: #c4eebf;
}


.container{
	position: relative;
}
		