@charset "utf-8";
/* CSS Document */

*
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

h1 {
	font-family: "arialbold";
	color: #e3097e;
	font-size: 6.5em;
	font-weight: 700;
	text-align: center;
	padding: 1.5em 0 2.5em 0;
	margin: 0.5em;
}

h2 {
	font-family: "arialbold";
	color: black;
	font-size: 4em;
	text-align: center;
	margin: 0.75em 0em;
}

h3{
	font-family: "arialbold";
	color: #e3097e;
	font-size: 1.2em;
}

.tipogris{
	color: #707070;
}

h4{
	font-family: "arial";
	color: black;
	font-size: 1.2em;
	margin-bottom: 1em;
}


h6{
	font-family: "arialbold";
	color: black;
	font-size: 1.2em;
	margin: 1em 0em;
	text-align: right;
	padding-right: 4em;
	padding-top: 0em;
}

.header {
	background-image:url("../img/fondopm2.png");
	background-size:cover;
	background-repeat: no-repeat;
	width: 100%;
}

footer{
	background-color: #e3097e;
	color: black;
	height: 20em;
	margin-top: 4em;

}

section{
	margin: 0 3em;
}

aside{
	background-color: #e3097e;
	color: black;
}

@font-face{
	font-family: "arial";
	src:url("../fonts/arial.ttf")
}

@font-face{
	font-family: "arialbold";
	src: url("../fonts/arialbd.ttf")
}

.contenedor {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
}

.contenedor2 {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
}

.hijo {

	width: 700px;
}

.hijo2 {
	width: 400px;
}

.textosflex1{
	padding-top: 6em;
	padding-left: 1em;
}

.textosflex2{
	padding-top: 6em;
	padding-right: 1em;
	
}

.textoderecha{
	text-align: right;
	margin: 0;
}

.logo{
	padding-left: 2em;
	padding-top: 2em;
}

.h7{
	font-family: "arialbold";
	color: black;
	font-size: 4em;
	text-align: center;
	margin: 0.75em 0em;
}

.h8{
	font-family: "arialbold";
	color: #e3097e;
	font-size: 2em;
	text-align: center;
}

span{
	color: #e3097e;
}


.headergeneric{
	background-color: black;
	height: 3em;
}

.programacionmargin{
	margin-top:5em;
	
}






* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "arialbold";
  line-height: 1.4;
}

.container {
  max-width: 960px;
  margin: auto;
  overflow: hidden;
  padding: 0 3rem;
}

.showcase {
  background: var(--primary-color);
  color: #fff;
  height: 100vh;
  position: relative;
}

.showcase:before {
  content: '';
  background: url('https://images.pexels.com/photos/533923/pexels-photo-533923.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260') no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.showcase .showcase-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.showcase h1 {
  font-size: 4rem;
}

.showcase p {
  font-size: 1.3rem;
}

.btn {
  display: inline-block;
  border: none;
  background: var(--primary-color);
  color: #fff;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  transition: opacity 1s ease-in-out;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.7;
}

/* MENU STYLES */
.menu-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.menu-wrap .toggler {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0;
}

.menu-wrap .hamburger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 60px;
  height: 60px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger Line */
.menu-wrap .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: #e3097e;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

/* Hamburger Lines - Top & Bottom */
.menu-wrap .hamburger > div::before,
.menu-wrap .hamburger > div::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -10px;
  width: 100%;
  height: 2px;
  background: inherit;
}

/* Moves Line Down */
.menu-wrap .hamburger > div::after {
  top: 10px;
}

/* Toggler Animation */
.menu-wrap .toggler:checked + .hamburger > div {
  transform: rotate(135deg);
}

/* Turns Lines Into X */
.menu-wrap .toggler:checked + .hamburger > div:before,
.menu-wrap .toggler:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}

/* Rotate On Hover When Checked */
.menu-wrap .toggler:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}

/* Show Menu */
.menu-wrap .toggler:checked ~ .menu {
  visibility: visible;
}

.menu-wrap .toggler:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: var(--menu-speed);
}

.menu-wrap .toggler:checked ~ .menu > div > div {
  opacity: 1;
  transition:  opacity 0.4s ease 0.4s;
}

.menu-wrap .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-wrap .menu > div {
  background: #e3097e;
	opacity: 70%;
  width: 200vw;
  height: 200vw;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.4s ease;
}

.menu-wrap .menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-wrap .menu > div > div > ul > li {
  list-style: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 1rem;
}

.menu-wrap .menu > div > div > ul > li > a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s ease;
	font-size: 3.5em;
}




@media screen and (orientation:portrait){
	h1{font-size: 6em;}
	h2{font-size: 3em; padding-top: 0.5em; padding-bottom: 0.5;}
	.h7{font-size: 3em; padding-top: 0.5em; padding-bottom: 0.5;}
	h6{font-size: 0.8em; padding-right: 1em;}
	nav{width: 300px}
	.contenedor{
		flex-direction: column;
		justify-content: flex-start;
		padding: 0;
	}
		.contenedor2{
		flex-direction: column-reverse;
		justify-content: flex-start;
		padding: 0;
	}
	
	
	.textoderecha{
		text-align: left;
		padding-left: 1em;
	}
	img{width: 100%;}
	footer{width: 100%;height: 350px; }
	
}

	.hijo{width:100%}
iframe{width: 100%}
.textosflex1{padding-top: 1em;}
.textosflex2{padding-top: 1em;}

.menu-wrap .menu > div > div > ul > li > a {font-size: 2em;}







