:root {
	--color-programa: #5cbee8;
}
* {
	min-width: 0;
	margin: 0;
	padding: 0;
	transition: 0.3s;

	&,
	&::after,
	&::before {
		box-sizing: border-box;
	}
}
img,
svg,
video {
	display: block;
	height: auto;
	width: 100%;
}
body {
	margin: 0;
	min-height: 100dvh;
	background-color: #f9f9f9;
	font-family: Arial, Helvetica, sans-serif;
}
p {
	color: #212844;
	text-wrap: pretty;
}
a {
	display: block;
	text-decoration: none;
}
section {
	margin: 0 auto;
	width: 1400px;
}
img {
	display: block;
	height: auto;
	width: 100%;
	object-fit: cover;
	object-position: center;
}
/* nav */
nav {
	background-color: #1a2945;
	padding: 10px 0;
}
nav img {
	width: 255px;
}
.nav_content {
	max-width: 1200px;
	width: 90%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: auto;
}
.nav_btn a {
	background-color: #00d5c4;
	color: #1a2945 !important;
	padding: 15px 25px;
	border-radius: 5px;
	transition: 0.3s;
}
.nav_btn a:hover {
	background-color: #fff;
	color: #1a2945;
}
/* info */
.info_form {
	/* background-color: blue; */
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 50px;
	margin-bottom: 80px;
}
.info {
	/* background-color: red; */
	width: 850px;
	padding: 20px;
}
.form {
	max-width: 500px;
	width: 90%;
	background-color: #fff;
	padding: 20px;
	border-radius: 20px;
}
.ic-class-form-container {
	background-color: #fff;
}
.ic-class-form-input,
.ic-class-form-select,
textarea {
	border: 1px solid #ccc;
}
.ic-class-form-input {
	/* background-color: rgba(22, 38, 68, 0.1) !important;
    color: #495057 !important; */
	width: 100%;
	height: 40px;
	padding: 0 10px;
}
.ic-class-form-label {
	display: none !important;
}
.ic-class-form-check-label {
	width: 250px;
}
.ic-default-0.ic-class-form-title-container {
	background-color: #ffffff !important;
	padding-right: 25px !important;
	padding-left: 25px !important;
	padding-top: 25px !important;
}
.ic-default-0.ic-class-form-button-submit {
	background-color: #004a93 !important;
	color: #fff !important;
	font-family: tahoma, sans-serif !important;
	font-size: 16px !important;
	background-repeat: initial !important;
	padding-top: 5px !important;
	padding-right: 12px !important;
	padding-bottom: 5px !important;
	padding-left: 12px !important;
	border-right: 0 solid #004a93 !important;
	border-bottom: 0 solid #004a93 !important;
	border-left: 0 solid #004a93 !important;
	border: 0 solid #004a93 !important;
	padding: 5px 12px 5px 12px !important;
}

/* oferta */
.oferta {
	margin-bottom: 200px;
}
.oferta_title {
	text-align: center;
}
.oferta_title h2 {
	font-size: 40px;
	color: #004a93;
	font-weight: lighter;
}
.oferta_title h2 span {
	color: #5cbee8;
	font-weight: bold;
}
.oferta_programas {
	/* background-color: blue; */
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 30px;
	margin-top: 100px;
}
.oferta_rogramas_menu {
	width: 30%;
}
.oferta_rogramas_menu h3 {
	background-color: #004a93;
	color: #fff;
	padding: 10px;
	font-weight: lighter;
	border-radius: 5px;
	font-size: 16px;
}
.oferta_rogramas_menu ul {
	margin-top: 10px;
	margin-bottom: 10px;
	list-style: none;
}
.oferta_rogramas_menu ul li {
	width: 80%;
	margin-bottom: 1px;
	padding: 10px;
	cursor: pointer;
	transition: 0.3s;
	border-radius: 5px;
}
.oferta_rogramas_menu ul li:hover {
	background-color: #00d5c4;
}
.oferta_rogramas_menu ul li.selected {
	background-color: #00d5c4;
}
.oferta_list_programas {
	width: 70%;
}
.oferta_list_programas .content {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.oferta_list_programas .content-item {
	width: 300px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 3px 3px 5px #ccc;
	transition: 0.3s;
	display: flex;
	flex-direction: column;
}
.oferta_list_programas .content-item:hover {
	scale: 1.02;
}
.oferta_list_programas .content-item:active {
	scale: 0.8;
}
.oferta_list_programas .content-item img {
	border-radius: 10px 10px 0 0;
}
.oferta_list_programas .text {
	padding: 10px 20px;
}
.oferta_list_programas .tags {
	display: flex;
	justify-content: flex-start;
	gap: 10px;
	margin-bottom: 10px;
}
.oferta_list_programas .tags .tag {
	font-size: 11px;
	color: #004a93;
	background-color: #f1f0f0;
	padding: 5px;
	border-radius: 3px;
	width: 85px;
	text-align: center;
}
.oferta_list_programas .text h3 {
	color: #142545;
	font-size: 16px;
}
.oferta_list_programas .text button {
	color: #f1f0f0;
	text-align: center;
	width: 100%;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	height: 35px;
	line-height: 35px;
	display: block;
	border-radius: 5px;
	border: 0;
	cursor: pointer;
	background-color: #004a93;
	margin-top: 20px;
	margin-bottom: 20px;
}

/* // canalesAtencion */
.canalesAtencion__title {
	width: 1400px;
	margin: 0 auto 40px;
}
.canalesAtencion__title h2 {
	color: #004a93;
	font-size: 40px;
}
.canalesAtencion__canales {
	background-color: #004a93;
}
.canalesAtencion__canales > div {
	width: 1400px;
	margin: auto;
	padding: 100px 0;
	position: relative;
}
.canalesAtencion__texto p,
.canalesAtencion__texto a,
.canalesAtencion__texto ul li {
	color: #fff;
	font-size: 18px;
}
.canalesAtencion__texto a {
	font-weight: bold;
}
.canalesAtencion__texto a:hover {
	text-decoration: dashed;
}
.canalesAtencion__texto ul {
	list-style: none;
}
.canalesAtencion__imagen {
	position: absolute;
	top: -250px;
	right: 0;
}

.canalesAtencion_legales {
	background-color: #fff;
	padding: 20px;
	text-align: center;
}
.canalesAtencion_legales p {
	font-size: 11px;
	/* color: #fff; */
	margin-bottom: 5px;
}
.canalesAtencion_legales p:last-child {
	max-block-size: 0;
}
@media screen and (max-width: 1450px) {
	section,
	.canalesAtencion__title,
	.canalesAtencion__canales > div {
		width: 1200px;
	}
}
@media screen and (max-width: 1250px) {
	section,
	.canalesAtencion__title,
	.canalesAtencion__canales > div {
		width: 1000px;
	}
}
@media screen and (max-width: 1050px) {
	section,
	.canalesAtencion__title,
	.canalesAtencion__canales > div {
		width: 800px;
	}
	.info_form,
	.oferta_programas {
		flex-direction: column;
	}
	.oferta_programas {
		margin-top: 40px;
	}
	.oferta_rogramas_menu {
		display: flex;
		justify-content: center;
		align-items: flex-start;
		width: 100%;
		gap: 20px;
	}
	.oferta_rogramas_menu > div {
		flex: 1;
	}
	.oferta_list_programas {
		width: 100%;
	}
	.oferta_list_programas .content {
		justify-content: center;
		align-items: flex-start;
	}
	.canalesAtencion__imagen {
		top: -150px;
		width: 400px;
	}
}
@media screen and (max-width: 850px) {
	section,
	.canalesAtencion__title,
	.canalesAtencion__canales > div {
		width: 600px;
	}
	.info {
		max-width: 500px;
		width: 90%;
	}
	.oferta {
		margin-bottom: 70px;
	}
	.oferta_list_programas .content-item {
		width: 100%;
		display: flex;
		align-items: center;
		flex-direction: row;
	}
	.oferta_list_programas .content-item .image {
		width: 200px;
	}
	.oferta_list_programas .content-item .text {
		width: 340px;
	}
	.oferta_list_programas .content-item img {
		border-radius: 10px 0 0 10px;
	}
	.oferta_list_programas .content-item .text button {
		margin-bottom: 0;
		width: fit-content;
		padding: 0 20px;
	}
	.canalesAtencion__texto {
		text-align: center;
	}
	.canalesAtencion__imagen {
		display: none;
	}
	.canalesAtencion__canales > div {
		padding: 30px 0;
	}
	.canalesAtencion__title h2 {
		font-size: 30px;
		text-align: center;
	}
}
@media screen and (max-width: 650px) {
	section,
	.canalesAtencion__title,
	.canalesAtencion__canales > div {
		width: 400px;
	}
	.oferta_title h2 {
		font-size: 25px;
	}
	.oferta_rogramas_menu > div:last-child {
		display: none;
	}
	.oferta_rogramas_menu ul li {
		width: 100%;
	}
	.nav_content {
		justify-content: center;
	}
	.nav_btn {
		display: none;
	}
}
@media screen and (max-width: 450px) {
	section,
	.canalesAtencion__title,
	.canalesAtencion__canales > div {
		width: 340px;
	}
	.oferta_list_programas .text h3 {
		font-size: 16px;
	}
}
