@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
body {
	font-family: 'Roboto', sans-serif;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-family: 'Work Sans', sans-serif;
	font-weight: 400;
}
header {
	background: #950104;
	background: linear-gradient(90deg, rgb(255 255 255) 0%, rgb(239 239 239) 100%);
	width: 100%;
}

.img-header {
	width: 650px;
	max-width: 100%;
	height: 100px;
	background-color: #9f33d7;
	border-radius: 20px;
	overflow: hidden;
}

.navbar {
	background-color: #751717;
}
.nav-link {
	display: block;
	padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
	font-size: var(--bs-nav-link-font-size);
	font-weight: var(--bs-nav-link-font-weight);
	color: white;
	text-decoration: none;
	background: 0 0;
	border: 0;
	transition: color .15sease-in-out, background-color .15sease-in-out, border-color .15sease-in-out;
	padding-left: 25px !important;
	padding-right: 25px !important;
	height: 70px;
	display: flex;
	align-items: center;
	padding-top: 15px;

	user-select: none;
	cursor: pointer;

	background-color: transparent;
}
.nav-link.active {
	background-color: #ffffff2e;
}

.nav-item {
	position: relative;
	margin-right: 0rem;
}

.nav-item::before {
	content: "";
	display: block;
	height: 5px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.nav-underline-one::before { background-color: #ef2725; }
.nav-underline-two::before { background-color: #ef25d3; }
.nav-underline-three::before { background-color: #9f33d7; }
.nav-underline-four::before { background-color: #303ad8; }
.nav-underline-five::before { background-color: #0078d9; }
.nav-underline-six::before { background-color: #00c7db; }
.nav-underline-seven::before { background-color: #FC3; }

.banner {
	background-color: #a31d1c;
}

.banner img {
	object-fit: cover;
	max-height: 445px;
	max-width: 1256px;
}
.container-1 {
	background-color: #f2eaea;
}

.actions-container {
	width: 100%;
}
.separator {
	width: 1px;
	background-color: #ccc;
	margin: 0 8px;
}

.card {
	border: none !important;
}

.card-body {
	background: #95A2EB;
	border-radius: 10px;
	background: linear-gradient(45deg, rgba(149, 162, 235, 1) 0%, rgba(255, 150, 190, 1) 50%, rgba(255, 220, 166, 1) 100%);
}

.sidebar-content {
	height: 100%;
	margin: 0 auto;
}

.sidebar-content > * {
	width: 100%;
}

.social-box .text-center {
	width: 100%;
}

#hero-carousel img {
	max-height: 430px;
	object-fit: cover;
}

.carousel-inner {
	height: 430px;
}
.carousel-section {
	background-color: #a31d1c;
	width: 100%;
}
.carousel-inner .carousel-item {
	height: 100%;
}
.carousel-inner img {
	height: 100%;
	width: auto;
	object-fit: cover;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	width: 1rem;
	height: 1rem;
}


@media (min-width: 889px) {
	aside {
		padding-left: 2rem;
	}
}



/* PORTADA */

.slider-outer-container{
	--slider-side-width: 230px;
	--slider-gap: 20px;

	width: 1520px;
	margin: auto;
	max-width: 100%;

	display: flex;
	flex-flow: row nowrap;
	align-items: stretch;
	justify-content: space-between;
}
.slider-container{
	width: calc( 100% - var(--slider-side-width) - var(--slider-gap) );
}

.slider-side-column{
	width: var(--slider-side-width);
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	gap: 5px;
}
.slider-side-column .slider-thumbnail {
	width: auto;
	height: 80px;
	padding: 2px;
	transition: 0.08s ease;
	object-fit: cover;
	cursor: pointer;
}

.slider-side-column .slider-thumbnail:hover {
	filter: brightness(0.8);
}


.articulo-portada .img-fluid{
	height: 100%;
	object-fit: cover;
}

a.articulo-portada{
	position: relative;
	transition: 0.1s ease;
}
a.articulo-portada:hover .img-fluid{
	filter: brightness(0.8);
}

a.articulo-portada .hovered-contenido{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: calc(100% - 1rem);
	height: 100%;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: 0.1s ease;
	padding: 20px;
	text-align: center;

	background-color: #d52322b0;
	color: white;
	font-weight: 800;
	font-size: 14px;
	backdrop-filter: blur(1px);
}
a.articulo-portada:hover .hovered-contenido{
	opacity: 1;
}

.articulo-fecha-box{
	position: absolute;
	bottom: 0.5rem;
	left: 0.75rem;

	display: flex;
	flex-flow: row nowrap;
	align-items: stretch;
	min-height: 20px;
}
.articulo-fecha-box .fecha-icon{
	background-color: #c81f1e;
	color: white;
	padding: 3px 8px;
	font-size: 0.8rem;
}
.articulo-fecha-box .fecha-text{
	background-color: white;
	color: #5a5a78;
	padding: 3px 8px;
	font-size: 0.75rem;
}



.articulo-portada-lg{
	text-decoration: none;
	color: #3f4a50;
}
.articulo-portada-lg .img-fluid{
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: 0.1s ease;
}

a.articulo-portada-lg:hover .img-fluid{
	filter: brightness(0.8);
}



/* noticias.php  */

a.article-list-card{
	display: flex;
	flex-flow: row nowrap;
	gap: 20px;
	padding: 20px;
	border-radius: 20px;
	background-color: #f8f9fa;
	transition: 0.08s ease;
}

a.article-list-card:hover{
	background-color: #e8eaed;
}

a.article-list-card .img-fluid{
	width: 100%;
	height: 100%;
	object-fit: cover;
	box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
}

/* FOOTER */
#bottom-info{
	background-color: #f2eaea;
	color: #898383;
	text-align: center;
	padding: 25px 25px;
    font-size: 14px;
}

#footer{
    color: #fff;
    padding-top: 60px;
    background-color: #2f2f2f;
    font-size: 14px;
	font-family: "Titillium Web", sans-serif;
}

#footer .widget .widget_title {
    height: 15px;
    line-height: 15px;
    margin-bottom: 20px;
}
#footer .widget .widget_title h3 {
	font-size: 1.2rem;
	text-transform: uppercase;
}

#footer .tb_widget_categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#footer ul, #footer ol {
    font-size: 14px;
    line-height: 21px;
    margin-top: 0;
    padding-left: 20px;
    margin-bottom: 20px;
}

#footer .tb_widget_categories ul li {
    color: #adadad;
    padding-left: 10px;
    position: relative;
    margin-bottom: 5px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    padding-left: 20px;

    font-size: 96%;
}

#footer .tb_widget_categories ul li {
    border-bottom: 1px solid #444;
}

#footer .tb_widget_categories ul li:before {
    color: #ddd;
    left: 0;
    position: absolute;
    font-family: "FontAwesome";
    content: "\f105";
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

#footer .tb_widget_categories ul li:last-child, #footer .tb_widget_categories ul li:last-child {
    margin-bottom: 0px;
    border-bottom: none;
    padding-bottom: 0px;
}

#footer input[type="email"] {
    background-color: #c7c7c7;
    border: 1px solid #ddd;
    outline: none;
    padding: 8px 10px;
    margin: 0;
    width: 100%;

	color: inherit;
	font: inherit;
	margin: 0;

	line-height: normal;
}

#footer input[type="email"]::placeholder {
	color: inherit;
}

#footer input[type="submit"] {
	background-color: #24687f;
	color: white;
	border: 0;
	outline: none;
	transition: 0.1s ease;

	cursor: pointer;
	padding: 10px 20px;
}

#footer input[type="submit"]:hover, #footer input[type="submit"]:focus {
	filter: brightness(0.9) hue-rotate(15deg);
}
