*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* --- FUENTES --- */

  @font-face {
	font-family: 'Roboto-Bold';
	src: url("../fonts/Roboto-Bold.ttf");
	src: url("../fonts/Roboto-Bold.ttf") format("truetype");
  }

  @font-face {
	font-family: 'Roboto-Regular';
	src: url("../fonts/Roboto-Regular.ttf");
	src: url("../fonts/Roboto-Regular.ttf") format("truetype");
  }

  @font-face {
	font-family: 'Rogan-Medium';
	src: url("../fonts/Roboto-Medium.ttf");
	src: url("../fonts/Roboto-Medium.ttf") format("truetype");
  }

.container-fluid{
	width: 70% !important;
	margin-left: auto;
	margin-right: auto;
}


.escudo{
	background-color: #3b3b3b;
}

.escudo img{
	width: 300px;
}

.header{
	background-image: url('../img/pade.png');
	position: absolute;
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	height: 85vh;
    display: flex;
    align-items: center;
    color: white;
	font-family: Roboto-Bold;
	padding: 135px 0px 135px 0px;
	z-index: 2;
	width: 100%;
}

.header .container-fluid{
    margin: auto;
}

.header .col-12{
	margin: auto;
}

.header-titulo{
    font-size: 40px;
}

.header-subtitulo{
    font-size: 35px;
}

@media (max-width: 500px){
	.header-titulo{
		font-size: 30px;
	}
	.header-subtitulo{
		font-size: 20px;
	}
}

@media (max-width: 1440px){
	.container-fluid{
		width: 90% !important;
		margin-left: auto;
		margin-right: auto;
	}
}

form{
	padding: 30px;
	background: rgba(58,58,58,0.8);
	border-radius: 15px;
}

.flotante{
	position: absolute;
	left: 1100px !important;
	top: 0 !important;
	z-index: 20;
	padding-top: 20px;
	font-family: Roboto-Regular;
	font-size: 11px;
}

.flotante{
	position: -webkit-sticky;  /* required for Safari */
    position: sticky;

	max-width: 400px;
}

.form-check{
	color: white;
}


@media (max-width: 1580px){
	.flotante{
		position: absolute;
		left: 900px !important;
		top: 50px !important;
		z-index: 20;
	}

	.flotante{
		position: -webkit-sticky;  /* required for Safari */
		position: sticky;
	
		max-width: 400px;
	}
}

@media (min-width: 2194px){
	.flotante{
		position: absolute;
		left: 1400px !important;
		top: 50px !important;
		z-index: 20;
	}

	.flotante{
		position: -webkit-sticky;  /* required for Safari */
		position: sticky;
	
		max-width: 400px;
	}
}


@media (max-width: 1345px){
	.flotante{
		position: absolute;
		left: 800px !important;
		top: 50px !important;
		z-index: 20;
	}

	.flotante{
		position: -webkit-sticky;  /* required for Safari */
		position: sticky;
	
		max-width: 400px;
	}
}

@media (max-width: 1245px){
	.flotante{
		position: absolute;
		left: 750px !important;
		top: 50px !important;
		z-index: 20;
	}

	.flotante{
		position: -webkit-sticky;  /* required for Safari */
		position: sticky;
	
		max-width: 400px;
	}
}

@media (max-width: 991px){
	.header {
		height: auto;
	}
	.header .header-texto{
		margin-bottom: 20px;
	}

	.flotante{
		display: none;
	}

	.form-mobile{
		max-width: 500px;
	}
}

@media (min-width: 992px){
	.form-mobile{
		display: none;
	}
}

.contenedor{
	position: relative;
	z-index: 1;
	margin-top: 118px;
	width: 100%;
	font-family: Roboto-Regular;
}

.contenedor a{
	color: #222222;
}

.contenedor a:hover{
	color: #dd0332;
}

.maestrias{
	background-color: #f3f3f3;
	width: 100%;
	padding: 80px 0px 80px 0px;
}

.contenedor h2{
	font-size: 40px;
	font-size: Roboto-Medium;
}

.flip-card {
	background-color: transparent;
	width: 300px;
	height: 200px;
	perspective: 1000px;
	margin: 10px 0px;
  }

  .flip-card img{
	  width: 300px;
	  height: 200px;
  }

  @media (min-width: 992px) and (max-width: 1340px){
	.flip-card {
		background-color: transparent;
		width: 230px;
		height: 153px;
		perspective: 1000px;
		margin: 10px 0px;
	  }
	
	  .flip-card img{
		  width: 230px;
		  height: 153px;
	  }

	  .flip-card h5{
		font-size: 15px;
	  }

  }

  @media (min-width: 1441px) and (max-width: 1720px){
	.flip-card {
		background-color: transparent;
		width: 290px;
		height: 168px;
		perspective: 1000px;
		margin: 10px 0px;
	  }
	
	  .flip-card img{
		  width: 290px;
		  height: 168px;
	  }

	  .flip-card h5{
		font-size: 15px;
	  }

  }
  
  .flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.6s;
	transform-style: preserve-3d;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  }
  
  .flip-card:hover .flip-card-inner {
	transform: rotateY(180deg);
  }
  
  .flip-card-front, .flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
  }
  
  .flip-card-front {
	background-color: #bbb;
	color: black;
  }
  
  .flip-card-back {
	background-color: #2980b9;
	color: white;
	transform: rotateY(180deg);
	padding: 30px 15px;
  }

.curso{
	background-color: white;
	padding: 30px 30px;
	margin: 30px 0px;
	border-radius: 0px 0px 15px 15px ;
}

.curso span{
	font-size: 20px;
	font-weight: bolder;
}

.curso-1{
	border-top: 10px solid #9e946a;
}

.curso-2{
	border-top: 10px solid #dd0332;
}

@media (max-width: 768px){
	.maestria-card{
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 1301px){
	.contenedor{
		position: relative;
		z-index: 1;
		padding: 0px 0px 0px 0px;
		margin-top: 200px;
		width: 100%;
	}
}


@media (max-width: 991px){
	.contenedor{
		position: relative;
		z-index: 1;
		padding: 0px 0px 0px 0px;
		margin-top: 1350px;
		width: 100%;
	}
}

@media (max-width: 650px){
	.contenedor{
		position: relative;
		z-index: 1;
		padding: 0px 0px 0px 0px;
		margin-top: 1400px;
		width: 100%;
	}
}

@media (max-width: 567px){
	.contenedor{
		position: relative;
		z-index: 1;
		padding: 0px 0px 0px 0px;
		margin-top: 1420px;
		width: 100%;
	}
}

@media (max-width: 500px){
	.contenedor{
		position: relative;
		z-index: 1;
		padding: 0px 0px 0px 0px;
		margin-top: 1380px;
		width: 100%;
	}
}

@media (max-width: 455px){
	.contenedor{
		position: relative;
		z-index: 1;
		padding: 0px 0px 0px 0px;
		margin-top: 1380px;
		width: 100%;
	}
}

@media (max-width: 395px){
	.contenedor{
		position: relative;
		z-index: 1;
		padding: 0px 0px 0px 0px;
		margin-top: 1430px;
		width: 100%;
	}
}

.ventajas{
	color: white;
	background-color: #222222;
	padding: 80px 0px;

}

.ventajas img{
	width: 150px;
}

@media (max-width: 1308px) and (min-width: 992px){
	.ventajas img{
		width: 180px;
	}
}

@media (max-width: 1690px) and (min-width: 1441px){
	.ventajas img{
		width: 180px;
	}
}

.rankings{
	color: #222222;
	/*background-color: #c1b170;*/
	background-color: #f3f3f3;
	padding: 80px 0px;
}

.rankings img{
	width: 200px;
}

@media (max-width: 991px){
	.maestrias, .ventajas, .rankings{
		text-align: center;
	}
}

.footer{
	color: white;
	background-color: #222222;
	font-size: 15px;
	padding: 20px 0px;
}

.btn-formulario:hover{
	background-color: #dd0332 !important;
	color: white !important;
}