@font-face {
	font-family: "Lato Bold";
	src: url("/src/fonts/lato/Lato-Bold.woff2") format("woff2"),
		url("/src/fonts/lato/Lato-Bold.woff") format("woff");
}

@font-face {
	font-family: "Lato Regular";
	src: url("/src/fonts/lato/Lato-Regular.woff2") format("woff2"),
		url("/src/fonts/lato/Lato-Regular.woff") format("woff");
}

@font-face {
	font-family: "Lato Italic";
	src: url("/src/fonts/lato/Lato-Lato-Italic.woff2") format("woff2"),
		url("/src/fonts/lato/Lato-Lato-Italic.woff") format("woff");
}

@font-face {
	font-family: "Lato Medium";
	src: url("/src/fonts/lato/Lato-Medium.woff2") format("woff2"),
		url("/src/fonts/lato/Lato-Medium.woff") format("woff");
}

@font-face {
	font-family: "Varela";
	src: url("/src/fonts/varela/VarelaRound-Regular.woff2") format("woff2"),
		url("/src/fonts/varela/VarelaRound-Regular.woff") format("woff");
}
:root {
	--red: #b0000f;
	--white: #ffffff;
	--light-grey: #f4f4f4;
	--grey: #606060;
	--green: #1a9b08;
	--dark-blue: #010440;
	--azul-title: #010440;
}

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	font-family: "Lato Regular";
	border: 0px;
}


#btn-whatsapp {
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	bottom: 80px;
	right: 10px;
	z-index: 111111;
	padding: 8px;
	background-color: #32ba46;
	border-radius: 50%;
	transition: ease all 0.4s;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
		0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
#btn-whatsapp:hover {
	box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14),
		0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
	right: 20px;
	transform: scale(1.05, 1.05);
}

::-webkit-scrollbar {
	width: 6px;
	height: 5px;
}

::-webkit-scrollbar-thumb {
	background-color: var(--dark-blue);
}

a {
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: "Varela" !important;
}

section {
	width: 100%;
	display: flex;
}

.popup.showing {
	display: flex;
}

.popup {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	display: none;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}

.popup .popup-container {
	width: 90%;
	max-height: 80%;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.popup .popup-container .btn-close-popup {
	width: 32px;
	height: 32px;
	cursor: pointer;
	background-color: #ffffff;
	border: none;
	border-radius: 50%;
	position: absolute;
	right: 20px;
	top: -50px;
}

.popup-content {
	width: 100%;
	max-height: 80vh;
	color: #4d4d4d;
	border-radius: 20px;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12),
		0 2px 4px -1px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	z-index: 2;
	background-color: #fff;
	border-radius: 20px;
	padding: 30px;
	overflow: auto;
}

.popup-content h3 {
	font-size: 30px;
	color: #606060;
	margin-bottom: 20px;
}

.popup-content p {
	width: 100%;
	font-size: 18px;
	color: #606060;
	margin-bottom: 10px;
	text-align: start;
}

.popup-content ul {
	width: 100%;
	padding: 15px 0px 0px 30px ;
}

/* --------------------------------------- HEADER------------------------------------- */

#brand {
	width: 100%;
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px;
	background-color: var(--red);
	position: fixed;
	top: 0px;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	z-index: 111;
}

#brand .primer-div {
	width: 80%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
}

#brand .segundo-div {
	width: 20%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 5px;
}

#brand .segundo-div svg {
	width: 25px;
	height: 25px;
	fill: #fff;
}

.btn-cont-header {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
}

.btn-cont-header svg {
	height: 18px;
}

.btn-cont-header svg path {
	fill: #fff;
}

.btn-cont-header span {
	color: #ffffff;
	font-size: 8px;
}

header {
	width: 100%;
	height: 110px;
	background-color: #fff;
	position: fixed;
	box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%),
		0 1px 5px 0 rgb(0 0 0 / 20%);
	z-index: 111;
	top: 35px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 0px 4px;
}

/* --------------------------------------- MAIN ------------------------------------- */

/* main {
	margin-top: 70px;
} */

section.content-fluid {
	padding-left: 20px;
	padding-right: 20px;
}

/* --------------------------------------- FOOTER ------------------------------------- */

/* footer {
	margin-top: 70px;
} */

.principal-title {
	font-size: 30px;
	color: var(--grey);
	font-weight: bold;
	margin: 30px 0px;
	font-family: "Lato Bold";
	text-align: center;
}

#btn-home img {
	height: 70px;
}

#menu-btn {
	width: 70px;
	height: 40px;
	border-radius: 50%;
	background-color: #010440;
	display: flex;
	justify-content: center;
	align-items: center;
}

#menu-btn svg {
	height: 30px;
	width: 30px;
	fill: #fff;
}

#info-header {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#info-header h1 {
	margin-right: 25px;
	text-align: center;
	font-size: 14px;
}

#info-header h4 {
	font-size: 10px;
	color: #000000;
	text-align: center;
	font-weight: bold;
}

#info-header span {
	font-size: 8px;
	color: #000000;
	font-weight: lighter;
}

#nav-container {
	display: none;
}

#nav-container.active {
	width: 100%;
	height: 100vh;
	position: fixed;
	z-index: 2;
	top: 0px;
	left: 0px;
	display: block;
}

#cortina-nav {
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.3);
	cursor: pointer;
}

nav {
	width: 100%;
	overflow: auto;
	background-color: #fff;
	height: 100vh;
	position: absolute;
	top: 0px;
	left: 0px;
	padding: 8px;
	border-radius: 0px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

#content-btn-cerrar {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 10px;
}

#btn-cerrar-menu svg {
	width: 30px;
	height: 30px;
	fill: #606060;
}

nav img {
	width: 40%;
	margin-bottom: 10px;
}

nav ul {
	width: 100%;
	padding: 10px 15px 5px;
	flex-direction: column;
	list-style-type: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

nav ul li {
	width: 100%;
	display: flex;
	margin-bottom: 20px;
	border-bottom: 1px solid #750003;
}

nav ul li a {
	width: 100%;
	padding: 8px 20px;
	border-radius: 10px;
	color: #000000;
	font-family: "Lato Bold";
	margin-bottom: 10px;
	font-size: 18px;
}

nav ul li a:hover {
	background-color: #3d8d3e;
	color: #ffffff;
}

#btn-trab-nos {
	border: none !important;
}

#btn-trab-nos a {
	width: 100%;
	margin-top: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;

	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12),
		0 2px 4px -1px rgba(0, 0, 0, 0.3);
}

#btn-trab-nos a:hover span {
	color: #fff !important;
}

#btn-trab-nos a:hover svg {
	fill: #fff;
}

#btn-trab-nos a svg {
	width: 30px;
	fill: #1a9b08;
}

#btn-trab-nos a span {
	font-size: 18px;
	font-family: "Lato Bold";
	color: #1a9b08;
	border: none !important;
}

#content-info-com {
	width: 55%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#content-info-com a svg {
	width: 50px;
	height: 50px;
	fill: #011C6D;
}
/* --------------------------------footer-------------------------------------------- */

footer {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	/* margin-top: 50px; */
	background-color: #606060;
}

#content-footer {
	width: 90%;
	display: flex;
	flex-direction: column-reverse;
	justify-content: center;
	align-items: flex-start;
	padding: 50px 0px;
}

#c-form {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#c-form form {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

#c-form form h3 {
	font-size: 35px;
	margin-bottom: 20px;
	color: #fff;
	font-weight: bold;
}

#c-form form > textarea,
#c-form form > input {
	width: 100%;
	padding: 5px 15px;
	font-size: 18px;
	margin-bottom: 20px;
}

#c-form form > textarea {
	height: 180px;
}

#ter-con {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
}

#ter-con label {
	font-size: 14px;
	color: #fff;
}

#ter-con label > a {
	color: #00adee;
}

#c-btn-send {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}

#c-btn-send input {
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #ffffff;
	font-weight: bold;
	font-size: 12px;
	background-color: var(--red);
	border-radius: 20px;
	padding: 6px 20px;
}

#info-cont {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	margin-top: 30px;
}

#info-footer {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 30px;
}

.ubi-footer {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
}

.ubi-footer svg {
	width: 25px;
	height: 25px;
	fill: var(--red);
}

.ubi-footer span {
	width: calc(100% - 14px);
	font-size: 16px;
	color: #ffffff;
}

#info-footer > h3 {
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	text-align: center;
}

#info-footer h5 {
	font-size: 20px;
	color: #fff;
	font-weight: bold;
}

#info-footer a,
#info-footer p {
	font-size: 16px;
	color: #fff;
	font-weight: normal;
	text-align: center;
}

/* --------------------------------------- docentes y correos---------------------- */

.docentes-correos {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #f4f4f4;
	margin: 40px 0px 0px;
	padding: 20px;
	gap: 50px;
}

.info-docentes {
	width: 100%;
}

.info-docentes h4 {
	font-size: 3rem !important;
	color: var(--azul-title) !important;
	font-weight: bold !important;
	margin: 0px 0px 30px !important;
	font-family: "Lato Bold" !important;
}

.info-docentes p {
	width: 100%;
	text-align: center;
	font-size: 18px;
	color: #606060;
}

.cards-doc-cor {
	width: 65%;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
}

.cards-doc-cor a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
	transition: ease all 0.6s;
	padding: 10px;
	border-radius: 20px;
}

.cards-doc-cor a:hover {
	transform: scale(1.1);
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12),
		0 2px 4px -1px rgba(0, 0, 0, 0.3);
	background-color: #d3d3d3;
}

.cards-doc-cor a > img {
	width: 150px;
	margin-bottom: 10px;
}

.cards-doc-cor a > span {
	color: #606060;
	font-size: 18px;
	font-weight: bold;
}

.c-horarios {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#logo-home {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.line-separator {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 40px 0px;
}

.line-separator span {
	width: 80%;
	height: 2px;
	background-color: var(--red);
}

#s-est-info {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 30px;
	margin-top: 145px;
}

#title-cole-p {
	font-size: 3rem !important;
	color: var(--azul-title) !important;
	font-weight: bold !important;
	margin: 0px 0px 30px !important;
	font-family: "Lato Bold" !important;
}

#doc-pop {
	width: 100%;
	height: 600px;
}

#s-est-info img {
	width: 100%;
}

.sub-items {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 20px;
}

.sub-items > div {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	margin-top: 30px;
}

.sub-items svg {
	width: 20px;
	fill: #53a22b;
}

.sub-items p {
	width: calc(100% - 20px);
	color: #000;
	font-size: 16px;
}
.sub-items p > a {
	color: #000;
	font-weight: bold;
	font-size: 16px;
}

#content-cronograma {
	width: 100%;
}

.breadcrumb {
	list-style-type: none;
	margin: 0;
	padding: 0;
	background-color: #f5f5f5;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 8px;
	display: left !important;
}

.breadcrumb li {
	display: inline-block;
}

.breadcrumb li a {
	color: #333;
	text-decoration: none;
	padding: 0 5px;
}

.breadcrumb li a:hover {
	color: #000;
}

.breadcrumb li:not(:last-child):after {
	content: "/";
	padding: 0 5px;
	color: #999;
}

#content-flotante {
	width: 80px;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	position: absolute;
	top: 200px;
	right: 0px;
	background-color: #fff;
	border-radius: 10px 0px 0px 10px;
	z-index: 99;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12),
		0 2px 4px -1px rgba(0, 0, 0, 0.3);
	transition: ease all 0.6s;
	padding: 0px;
}

#content-flotante:hover {
	width: 100px;
	border-radius: 20px 0px 0px 20px;
}
#content-flotante a {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 5px;
}
#content-flotante a img {
	width: 100%;
}
#content-flotante a span {
	color: #606060;
	font-weight: bold;
	font-size: 10px;
}

#content-flotante a:hover {
	background-color: #d3d3d3;
	border-radius: 10px;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12),
		0 2px 4px -1px rgba(0, 0, 0, 0.3);
}

#dir-roja,
#email-roja {
	display: none;
}

.link-emails {
	font-weight: bold;
	color: var(--red);
}

.fc-event-time {
	display: none !important;
}

@media screen and (min-width: 992px) {
	#dir-roja,
	#email-roja {
		display: flex;
	}
	.sub-items p {
		width: calc(100% - 60px);
	}
	.line-separator {
		margin: 100px 0px;
	}

	#info-header h1 {
		font-size: 25px;
		margin-right: auto;
	}
	header {
		padding: 0px 20px;
	}

	#btn-home img {
		height: 110px;
	}

	#menu-btn svg {
		height: 60px;
		width: 50px;
	}

	#info-header span {
		font-size: 14px;
	}

	#info-header h4 {
		font-size: 22px;
	}

	#brand {
		padding: 8px 20px;
	}

	#brand .primer-div {
		gap: 30px;
	}

	.btn-cont-header span {
		font-size: 14px;
	}

	#brand .primer-div {
		justify-content: left;
	}

	.principal-title {
		font-size: 3rem;
		color: var(--azul-title);
		font-weight: bold;
		margin: 0px 0px 30px;
		font-family: "Lato Bold";
	}
	nav {
		width: 400px;
		padding: 30px;
		border-radius: 0px 30px 30px 0px;
	}

	nav img {
		width: 70%;
		margin-bottom: 30px;
	}

	#btn-trab-nos a {
		margin-top: 50px;
	}

	#content-footer {
		flex-direction: row;
	}

	#c-form {
		width: 50%;
	}

	#info-cont {
		width: 50%;
	}
	#info-footer {
		width: 85%;
	}
	.ubi-footer span {
		font-size: 16px;
	}

	#info-footer > h3 {
		font-size: 30px;
	}

	#info-footer a,
	#info-footer p {
		font-size: 16px;
		text-align: start;
	}

	.c-horarios {
		align-items: flex-start;
	}

	#info-footer h5 {
		font-size: 18px;
	}

	section.content-fluid {
		padding-left: 60px;
		padding-right: 60px;
	}

	.docentes-correos {
		flex-direction: row;
		padding: 40px 60px;
	}
	.info-docentes {
		width: 35%;
	}

	.info-docentes h4 {
		text-align: start;
	}
	.info-docentes p {
		width: 80%;
		text-align: start;
	}
	.cards-doc-cor {
		flex-direction: row;
	}

	.cards-doc-cor a {
		margin-bottom: 10px;
	}
	.popup-content {
		width: 90%;
	}
	.card-gobierno h4 {
		font-size: 22px;
	}

	#menu-btn {
		width: 60px;
		height: 60px;
	}
	#content-flotante {
		display: flex;
	}
}
