/*estilos generales de la pagina de catalogo de cursos*/
body {
	font-family: Montserrat !important;
}

div.page-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto;
	gap: 18px;
}

.hero {
	margin-top: -80px;
	background-image: url('/assets/media/verificaviaja/background.png');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.tex-title {
	font-size: 35px;
	font-weight: 700;
}

img.cover-img {
	border-radius: 6px 6px 0 0;
}

/* Para la descripción multi línea  */
.card-text {
	display: inline-block;
	height: 76px;
	overflow: hidden;
	text-overflow: clip;
	word-break: break-word;
	text-align: justify;
}

div.card-footer {
	border-top: none !important;
}

.card-footer .card-link {
	color: #DC3545;
}

.hero .title {
	height: 400px;
	position: relative;
	z-index: 2;
}

.hero .title .h1 {
	font-size: 60px;
	color: white;
	margin-top: 200px;
}

.h2 a {
	color: white;
}

.hero .title .h2 {
	color: white;
	font-weight: 400;
	font-size: 40px;

	&:hover {
		cursor: pointer;
	}
}

.video-cover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.sub-title {
	font-size: 35px;
	font-weight: 700px;
	padding: 50px 30px;
}

/*cards*/
.img-card {
	height: 200px;
}

a .card-title {
	font-size: 20px;
	font-weight: 700;
	color: #383838;
}

/*video*/
.video {
	text-align: center;
}

.video iframe {
	height: 600px;
}

/*telefonos*/
@media only screen and (max-width: 600px) {
	.page-container{
		grid-template-columns: repeat(1, 1fr) !important;
	}
}

@media only screen and (min-width:600px) and (max-width: 999px){
	.page-container{
		grid-template-columns: repeat(2, 1fr) !important;
	}
}