/* 

	color: #542a22; café
	color: #ca332f; rojo
	color: #f7d75c; amarillo
	

 */
body,
html {
	margin: 0;
	overflow-x: hidden;
}

body {
	font-family: 'Lato', sans-serif;
	font-size: 17px;
	color: #542a22;
	margin-top: 120px;
	display: flex;
	min-height: Calc(100vh - 120px);
	flex-direction: column;
}

textarea,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
	border-color: #ca332f;
	box-shadow: none !important;
	outline: 0 none !important;
}

main {
	flex: 1;
}

nav {
	background-color: white;
	box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3);
	height: 120px;
}

nav .navbar-brand {
	margin: 0px !important;
}

nav .head-logo {
	height: 80px;
	width: auto;
}

nav a {
	color: #542a22;
	position: relative;
	font-size: 1.2rem;
	font-weight: 700;
	margin-left: 0px;
	padding: 0px !important;
	background: none !important;
	background-color: transparent !important;
	outline: none !important;
}

nav a:hover {
	color: white;
}

nav .navbar-collapse {
	position: absolute;
	left: 0px;
	top: 120px;
	background: #ca332f;
	width: 100%;
	height: Calc(100vh - 120px);
	text-align: left !important;
	padding: 1rem;
}

nav .navbar-collapse .top-links {
	position: absolute;
	top: auto;
	right: 1rem;
	font-size: 1.5rem;
	bottom: 140px;
}

nav .navbar-collapse .top-links a {
	display: inline;
	margin-left: 0px;
	font-size: .7rem;
}

nav .navbar-collapse .top-links a.active_lan {
	color: grey;
	pointer-events: none;
	opacity: .4;
}

nav .navbar-collapse .top-links .sm a {
	font-size: 1.2rem;
	margin-left: .5rem;
}

nav .navbar-collapse .dropdown-menu {
	padding: 0;
	padding-left: 0rem;
	font-size: 1rem;
	background-color: #ca332f;
	text-align: left;
	margin-top: 14px;
	border-radius: 0px;
	box-shadow: none;
	border: none;
	margin-bottom: 14px;
}

nav .dropdown-menu a {
	color: #f7d75c;
	padding: 0px !important;
	margin: 0px;
	cursor: pointer;
	font-size: .9rem;
}

.navbar-toggler {
	outline: none !important;
	border: none;
	padding: 0;
	font-size: 1.5rem;
	align-self: flex-end;
}

.navbar-toggler i,
.navbar-toggler svg {
	outline: none !important;
}
}

.navbar-toggler .fa-times {
	display: block;
}

.navbar-toggler .fa-bars {
	display: none;
}

.navbar-toggler.collapsed .fa-times {
	display: none;
}

.navbar-toggler.collapsed .fa-bars {
	display: block;
}

nav .dropdown-menu a:hover {
	color: #FFFFFF !important;
}

nav .navbar-nav {
	position: relative;
	bottom: -30px;
}

nav span.ind {
	position: absolute;
	bottom: 0px;
	height: 5px;
	width: 0px;
	background-color: #ca332f;
	transition: all .5s;
	display: none;
}

.swiper-container {
	background-color: #ca332f;
	width: 100%;
	height: 100%;
	position: relative;
	padding-top: 50%;
}

.swiper-graphs {
	position: absolute;
	left: 0px;
	top: 0px;
	height: 100%;
	width: 100%;
}

.swiper-graphs img {
	position: absolute;
	right: -10%;
	top: 0px;
	height: 100%;
	width: auto;
	opacity: 0;
	transition: all 1s;
}

.swiper-graphs img.active {
	opacity: 1;
}

.swiper-mask {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 60vw;
	height: 100%;
	background-image: url("../img/slide-fondo.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position-x: right;
}

.swiper-wrapper {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

.swiper-slide .container {
	display: grid;
	width: 100%;
	height: 100%;
	grid-template-columns: 50% 50%;
	grid-template-rows: auto;
	align-content: center;
}

.swiper-slide .container .txt {
	display: block;
	width: 100%;
}

.swiper-slide .container h1 {
	font-weight: 700;
	color: #f7d75c;
	font-size: 1.2rem;
	text-transform: uppercase;
}

.swiper-slide .container p {
	color: #ffffff;
	font-size: 1.2rem;
	line-height: 1.1;
	display: none;
}

.swiper-slide .container a {
	color: white !important;
	text-decoration: none;
	font-weight: bold;
	transition: all .3s;
}

.swiper-slide .container a:hover,
.swiper-slide .container a:active,
.swiper-slide .container a:visited {
	text-decoration: underline;
}

.swiper-control {
	position: absolute;
	bottom: 2rem;
	transform: scale(1);
	transition: all .5s;
	cursor: pointer !important;
	z-index: 100;
	display: none;
}

.swiper-control:hover {
	transform: scale(1.2);
}

.swiper-control-right {
	width: 0;
	height: 0;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-left: 20px solid #542a22;
	right: 2rem;
}

.swiper-control-left {
	width: 0;
	height: 0;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-right: 20px solid #f7d75c;
	left: 2rem;
}

.ticker {
	background-color: #f7d75c;
	width: 100%;
	height: 40px;
	color: #ca332f;
	font-weight: 700;
	display: flex;
	white-space: nowrap;
	line-height: 40px;
	overflow-x: hidden;
	font-size: 1.2rem;
}

.ticker div {
	position: relative;
	animation-name: ticker-move;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-duration: 25s;
}

.ticker.move div {
	transform: translateX(-100%);
}

hr {
	border: none;
	border-bottom: solid 1px #CCCCCC;
}

.gris {
	background-color: #ebebeb;
	border-top: solid 1px #CCCCCC;
	border-bottom: solid 1px #CCCCCC;
}

section.editorial {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

section.editorial h1 {
	color: #ca332f;
	font-weight: 700;
	font-size: 1.4rem;
}

section.editorial p,
section.editorial ul li {
	font-size: 1.1rem;
	line-height: 1.2;
	margin: 0;
	text-align: justify;
	hyphens: auto;
	color: #542a22;
}

section.editorial ul {
	padding-left: 20px;
}

section.editorial ul li {
	text-align: left;
	margin-bottom: .5rem;
}

section.editorial ul li a {
	color: #ca332f;
	text-decoration: none;
}

section.editorial ul li a:hover {
	text-decoration: underline;
}

.llamada section.editorial h1 {
	font-size: 2rem;
	line-height: 1.1;
	margin: 0px !important;
}

.llamada section.editorial p {
	font-size: 1.6rem;
	line-height: 1.1;
	margin: 0px;
	text-align: left;
}

.c2a {
	color: #ca332f;
	text-decoration: none;
	font-weight: 700;
	display: block;
	margin-top: 1rem;
	width: 100%;
	position: relative;
	font-size: 1.4rem;
	cursor: pointer !important;
}

.c2a:hover {
	text-decoration: underline;
	color: #ca332f;
}

section.editorial p:not(:first-child),
section.editorial .row:not(:first-child) {
	margin-top: 2rem;
}

section.editorial a {
	color: #ca332f;
	text-decoration: none;
}

section.editorial a:hover {
	color: #ca332f;
	text-decoration: underline;
}

section.editorial p.relevante {
	font-size: 1.2rem;
}

section.editorial p.nota {
	font-size: .8rem;
}

section.editorial h2 {
	color: #ca332f;
	font-weight: 700;
	display: block;
	font-size: 1.3rem;
}

section.editorial h3 {
	color: #542a22;
	font-weight: 700;
	display: block;
	margin-top: 1.4rem;
	font-size: 1.2rem;
}

section.editorial p.relevante:after {
	display: block;
	content: " ";
	background-color: #ca332f;
	height: 4px;
	margin-top: 1rem;
}

section.noticias {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

section.noticias .noticia {
	margin-bottom: 1rem;
}

section.noticias .noticia .nota-pic {
	width: 100%;
	padding-top: 80%;
	top: 0%;
	left: 0%;
	background-size: cover;
	background-position: center center;
}

section.noticias .noticia h1 {
	font-size: 1rem;
	font-weight: 700;
	width: 100%;
	min-height: 18%;
	background-color: #ca332f;
	text-align: left;
	padding: 1rem;
	border-bottom: solid 5px #542a22;
}

section.noticias .noticia h1 a {
	color: white;
	text-decoration: none;
	transition: all .5s;
}

section.noticias .noticia h1 a:hover {
	color: #f7d75c;
}

footer {
	background-color: #542a22;
	color: white;
	padding-top: 2rem;
	padding-bottom: 2rem;
	font-size: .7rem !important;
	line-height: 1.4;
	border-top: solid 1px #28120e;
}

footer .footer-logo {
	max-width: 100px;
	height: auto;
	margin-bottom: 1rem;
}

footer nav {
	background: none;
	box-shadow: none;
}

footer nav ul {
	list-style: none;
	padding: 0;
	text-align: left;
}

footer nav ul li a,
footer a {
	color: white;
	text-decoration: none;
	font-size: .7rem !important
}

footer nav ul li a:hover,
footer a:hover {
	color: #f7d75c;
}

footer .footer-links {
	text-align: right;
	color: white;
	font-size: .7rem;
	line-height: 1.4;
}

.section-header {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 70%;
	padding-top: 40%;
	width: 100%;
	overflow: hidden;
	position: relative;
	border-bottom: solid 1px #28120e;
}

.section-header .container {
	position: absolute;
	left: 50%;
	top: 0px;
	transform: translateX(-50%);
	height: 100%;
}

.section-header .container .row {
	height: 100%;
}

.section-header .section-header-tapa {
	position: absolute;
	left: 0px;
	top: 0px;
	height: 100%;
	width: 100%;
}

.section-header .section-header-tapa img {
	position: absolute;
	left: 0px;
	top: 0px;
	height: 100%;
	width: auto;
}

.section-header .container span.index {
	font-weight: 300;
	color: #FFFFFF;
	font-size: .8rem;
	margin: 0;
}

.section-header .container span.index a {
	color: #FFFFFF;
	text-decoration: underline;
}

.section-header .container span.index a:hover {
	color: #f7d75c;
}

.section-header .container h1 {
	font-weight: 700;
	color: #f7d75c;
	margin: 0;
	text-transform: uppercase;
	font-size: 1.2rem;
	width: 60%;
}

.section-header .container h2 {
	font-weight: 300;
	color: #f7d75c;
	font-size: 1.2rem;
	margin: 0;
}

body.talleresproductivos .section-header {
	background-image: url(../img/talleresproductivos_fondo.jpg);
}

body.talleresformativos .section-header {
	background-image: url(../img/talleresformativos_fondo.jpg);
}

body.rompetuslimites .section-header {
	background-image: url(../img/rompetuslimites.jpg);
}

body.contacto .section-header {
	background-image: url(../img/contacto_fondo.jpg);
}

body.notas .section-header {
	background-image: url(../img/notas_fondo.jpg);
}

.mapamx {
	height: 300px;
	width: auto;
	float: right;
}

.inner-pic {
	max-width: 100%;
	border: solid 1px #28120e;
	margin-top: 1rem;
}

.piedefoto {
	color: #ca332f;
	font-size: 1rem;
	line-height: 1.2;
	display: block;
	margin-top: 1rem;
	font-style: italic;
}

form.mailform {
	margin-top: 3rem;
}

.form-control {
	border-radius: 0px;
	border: none;
	border-bottom: solid 1px #542a22;
	color: #542a22 !important;
	padding: 0;
	box-shadow: none !important;
	position: relative;
}

.form-control.err {
	background-color: rgba(255, 208, 20, 0.25);
}

.form-control::placeholder {
	color: rgba(85, 42, 34, 0.41);
}

input.form-control {
	height: 2rem;
}

textarea.form-control {
	height: 11rem;
	box-shadow: none !important;
}

.btn-send {
	border-radius: 0px;
	background: #542a22;
	color: white;
	outline: none !important;
}

.btn-send:hover {
	background: #ca332f;
	color: white;
}

.video-container {
	position: relative;
	margin-top: 15px;
	left: 0px;
	top: 0px;
	width: 100%;
	padding-top: 100%;
	border: solid 1px #ca332f;
}

.video-container iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

@keyframes ticker-move {
	from {
		transform: translateX(100%);
	}

	to {
		transform: translateX(-100%);
	}
}

.alerta {
	position: fixed;
	display: block;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background: rgba(85, 42, 34, 0.6);
	z-index: 2000;
	opacity: 0;
	pointer-events: none;
	transform: all 1s;
}

.alerta.active {
	opacity: 1;
	pointer-events: all;
}

.alerta-caja {
	display: grid;
	grid-template-rows: auto auto;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 400px;
	max-width: 90%;
	height: auto;
	padding: 2rem;
	background-color: #ca332f;
	color: white;
	transform: translateX(-50%) translateY(-50%);
	box-shadow: 0px 5px 19px rgba(57, 27, 21, 0.6);
}

.alerta-caja i {
	color: #f7d75c;
	cursor: pointer;
	position: absolute;
	right: 15px;
	top: 15px;
	padding: 0px !important;
	margin: 0px !important;
	transition: all .5s;
}

.alerta-caja i:hover {
	transform: rotate(180deg);
}

.alerta-caja i:active {
	transform: rotate(360deg);
}

.alerta-caja h1 {
	color: #f7d75c;
	font-size: 1.2rem;
	margin-top: 1rem;
}

.alerta-caja p {
	color: white;
	font-size: 1rem;
}

.alerta-caja a {
	color: #f7d75c;
	font-size: 1rem;
}

.temario {
	border-right: solid 1px #28120e;
}

section.editorial .temario ul {
	padding: 0px !important;
}

section.editorial .temario h2 {
	font-size: 1rem;
}

section.editorial .temario p,
section.editorial .temario ul li {
	font-size: 1rem;
	max-width: 100%;
}

section.editorial .temario p,
section.editorial .temario ul li {
	cursor: pointer !important;
	transition: all .4s;
}

section.editorial .temario p,
section.editorial .temario ul li.opened {
	opacity: 1;
}

section.editorial .temario p,
section.editorial .temario ul li.locked {
	opacity: .5;
}

section.editorial .temario p,
section.editorial .temario ul li.locked:hover {
	opacity: 1;
}

.rtl_graph {
	width: 400px;
	max-width: 100%;
	height: auto;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.rtl_contenido {
	background-color: #f5f4ea;
	color: #28120e;
	padding: 2rem;
	font-family: 'Kalam', cursive;
	background-image: url("../img/cuaderno.png");
	background-repeat: repeat;
	background-position: top left;
}

.rtl_contenido * {
	line-height: 27.5px;
}

.rtl_contenido h1 {
	font-family: 'Permanent Marker', cursive;
	font-size: 2rem !important;
	color: #ca332f !important;
	line-height: 1;
	max-width: 80%;
}

.rtl_contenido h2 {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.rtl_contenido ul li,
.rtl_contenido ol li {
	max-width: 90% !important;
	margin-bottom: 1rem;
}

.rtl_contenido img {
	width: 800px;
	max-width: 90%;
	margin: 0 auto;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.rtl_contenido img.reflex {
	width: 300px;
	max-width: 90%;
}

.rtl_form ol {
	padding-left: 0px;
}

.rtl_form li label {
	display: block;
}

.rtl_form li .fi {
	display: block;
	width: 100%;
	text-align: left;
	margin-bottom: 2rem;
	color: #666666;
	padding: 10px;
}

.rtl_form li .fi.req.err {
	border: solid 2px #ca332f;
}

.rtl_form_button {
	float: right;
	margin-right: 10%;
	background-color: #ca332f !important;
	color: #FFFFFF !important;
	border: solid 1px #28120e;
	padding: 4px 16px 4px 16px;
}

.rtl_form_button:hover {
	background-color: #542a22;
}

.rtl_link {
	cursor: pointer !important;
	position: relative;
}

.rtl_link:hover{
	text-decoration: underline;
}

.rtl_link.disabled {
	/* pointer-events: none;
	opacity: .5; */
}

.rtl_link.disabled::after {
	content: "✓";
	color: #ca332f;
	position: absolute;
	right: -2%;
	margin-left: 1rem;
}

.rtl_editorial_head{
	position: relative;
	
}

.rtl-temario {
	position: fixed;
	top: -100%;
	left: 0;
	background-color: #fff1bb;
	height: 100%;
	width: 100%;
	z-index: 10000;
	padding-top: 60px;
	transition: all .5s;
}

.rtl-temario.opened {
	top: 0;
}

.rtl_opener,
.rtl_closer {
	position: absolute;
	right: 15px;
	top: 15px;
	font-size: 30px;
	color: #542a22;
}

.rtl_hint{
	font-size: 12px !important;
	line-height: 1;
	color: #666666 !important;
	margin-top: -1rem;
}

@media (min-width: 576px) {
	.rtl-temario {
		position: relative;
		top: 0;
		left: 0;
		background: none;
		height: auto;
		width: auto;
		z-index: auto;
	}
	
	.rtl_opener,
	.rtl_closer {
		display: none;
	}
}

@media (min-width: 768px) {
	section.editorial p.relevante {
		font-size: 1.4rem;
	}

	section.editorial ul {
		margin: 20px;
	}

	section.editorial p,
	section.editorial ul li {
		font-size: 1.2rem;
	}

	section.editorial ul li {
		max-width: 50%;
	}

	.swiper-container {
		padding-top: 25%;
	}

	.swiper-mask {
		width: 60vw;
	}

	.swiper-graphs img {
		right: 0px;
	}

	.swiper-slide .container h1 {
		font-size: 1.6rem;
	}

	.section-header {
		padding-top: 22%;
		background-position: right center;
	}

	.section-header .container h1 {
		font-size: 1.6rem;
		width: 100%;
	}

	nav .navbar-collapse {
		position: relative;
		background: transparent;
		text-align: right !important;
		padding: 0;
		height: auto !important;
		top: 0px;
	}

	nav a {
		font-size: .9rem;
		margin-left: 2rem;
	}

	nav a:hover {
		color: #ca332f;
	}

	nav .navbar-collapse .top-links {
		position: absolute;
		right: 0px;
		bottom: auto;
		font-size: .7rem;
	}

	nav .navbar-collapse .dropdown-menu {
		padding: 1rem;
		font-size: 1rem;
		background-color: #ca332f;
		text-align: center;
		margin-top: 14px;
		border-radius: 0px;
		box-shadow: none;
		border: none;
	}

	nav span.ind {
		display: block;
	}

	nav .dropdown-menu a {
		font-size: inherit !important;
	}

	nav .head-logo {
		height: 100px;
	}

	.video-container {
		margin-top: 0px;
		position: absolute;
	}

	.inner-pic {
		margin-top: 0px;
	}
}

@media (min-width: 1024px) {
	.swiper-slide .container p {
		display: block;
	}

	.swiper-control {
		display: block;
	}
}