@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
:root{
	--easy: all .5s ease;
	--fast: all .3s ease;
	--hover-color: #CD0000;
	--bg-yellow: #fffde1;
	--red-gradient: linear-gradient(to bottom, RGBA(187,74,40,0) 0%,RGBA(105,1,1,0.94) 100%);
	--red-gradient-horizontal: linear-gradient(to right, RGBA(187,74,40,0) 0%,RGBA(105,1,1,0.94) 100%);
	--dark-gradient: linear-gradient( 0deg, rgba(0,0,0,0.8) 34%, rgba(0,0,0,0) 100%);
	--gradient-camaleon-horizontal: linear-gradient(90deg, rgba(91,29,198,0.55) 0%, rgba(31,62,198,0.70) 19%, rgba(71,170,212,0.55) 51%, rgba(121,217,180,0) 71%);
	--gradient-camaleon: linear-gradient(0deg,rgba(91,29,198,0.55) 0%,rgba(31,62,198,0.70) 19%,rgba(71,170,212,0.55) 51%,rgba(121,217,180,0) 91%);
	--line-camaleon: linear-gradient(90deg, rgba(91,29,198,1) 0%, rgba(31,62,198,1) 33%, rgba(71,170,212,1) 66%, rgba(121,217,180,1) 99%);
	--line-camaleon-reverse: linear-gradient(90deg, rgba(121,217,180,1) 0%, rgba(71,170,212,1) 34%, rgba(31,62,198,1) 69%, rgba(91,29,198,1) 100%);
}
html {
  scroll-behavior: smooth;
}
body{
	font-family: 'DM Sans', sans-serif;
}
a {
	text-decoration: none;
}
a:hover{
	color: var(--hover-color);
}
#goTopBtn{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #c93621;
    color: white;
    cursor: pointer;
    padding: 5px 12px;
    border-radius: 5px;
	transition: all .3s linear;
	opacity:0;
}
#goTopBtn a{
	text-decoration: none;
}
#goTopBtn.visible{
	opacity: 1;
}
.post, .page{
	margin: 0;
}
.site-branding{
	margin: 0 auto;
	max-width: 450px;
	width:80vw;
	position: relative;
}
.site-main{
	width: 90vw;
	max-width: 1120px;
	margin: 0  auto;
}
.nav-menu{
	background-color: #000;
	margin:2px auto;
	    align-items: center;
    justify-content: center;
	display: block;
}
.nav-menu a{
	color: #fff;
	text-transform: uppercase;
	padding: .6em 1em;
	background: #000;
	transition: background .3s;
}
.nav-menu a:hover{
	/*background-color: #C93621;*/
	color: #fff;
}

.page .entry-title {
	display: none;
}

.header-social{
	position: absolute;
	top: 76px;
	right: -19vw;
	width: 120px;
	display: flex;
	justify-content: space-between;
}
.header-social.animate__animated.animate__bounce{
	--animate-delay: 10s;
}
.header-social a{
	color: #333;
}
.header-social a:hover{
	color: var(--hover-color);
}

.main-navigation{
	background-color: #000000;
	color: #fff;
	position: relative;
}
.main-navigation button{
	background: transparent;
    color: #fff;
    border: 0;
    font-size: 1.1em;
	padding: 0.5em 1em 0.5em;
}
.main-navigation ul ul{
	flex-direction: column;
}

.main-navigation ul ul a{
	width: inherit;
	font-size: .75em;
	letter-spacing: .1em;
	white-space: nowrap;
}

.wp-block-post-template, .wp-block-query-loop{
	margin: 0;
}

.nav-sticky{
	position: fixed;
    top: 0;
    z-index: 9999999;
}

.menu-item-has-children>a::after{
	content: '';
    border: 4px solid transparent;
    border-top: 4px solid white;
    margin-left: 6px;
    margin-bottom: 5px;
    display: inline-block;
    vertical-align: bottom;
}

.nav-sticky + .site-main {
  padding-top: 154px;
}

/*** Search form icon without frames ***/
.probox{
	background-color: #000;
}

.site-footer{
	background-color: #111;
	color: #ccc;
	padding: 1em 0;
}

.footer-branding{
	margin: 0 auto;
	width: 200px;
}
.footer-branding img{
	width: 100%;
}
.footer-social{
	text-align: center;
	margin: 0 auto;
	font-size: 1.3em;
	letter-spacing: 5px;
}
.footer-social a{
	color: #fff;
}
.footer-copyright{
	text-align: center;
	font-size: .6em;
	line-height: 1.1;
	padding: .5em 0;
}
.copy-legend{
	display: block;
}

.footer-menu ul{
	margin: 0;
	padding: 0;
}
.footer-menu li{
	list-style: none;
	padding: .2em 0;
}
.footer-menu a{
	color: #fff;
	text-decoration: none;
	font-size: 0.9em;
	border-bottom: 2px solid #c93621;
}
/*
.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 47px 0.5fr 0.5fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "footer-branding footer-menu"
    "footer-social footer-menu"
    "footer-copyright footer-menu";
  align-items: center;
}

.footer-menu { grid-area: footer-menu; }

.footer-branding { grid-area: footer-branding; }

.footer-social { grid-area: footer-social; }

.footer-copyright { grid-area: footer-copyright; }
*/
.bottom-menu a{
	color: #fff;
}
.bottom-menu ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
}
.bottom-menu ul li a{
	display: block;
	text-transform: uppercase;
}

/** GENERAL **/
.dark-gradient{
	background: var(--dark-gradient);
}
.red-gradient{
	background: var(--red-gradient);
}

/** SLIDER **/
span.slide-catName {
    text-transform: uppercase;
    border: 1px solid #fff;
    padding: 0 .5em;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: .4em;
}

span.slide-date{
	display: inline-block;
}

.mundo-text .slide-date{
	color: #ffffffaa;
	margin-top: .3em;
	font-size: 0.75em;
}

/* ARTICLES */
.entry-grid {
    display: grid;
    grid-template-columns: auto 300px;
    grid-gap: 50px;
}
.entry-body figure{
	width: 100% !important;
}
h1.entry-title {
    font-size: 3.3em;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.03em;
	margin: 0;
	text-align: center;
}
.size-full{
	width: 100%;
}
.entry-content>p:first-child>strong, .entry-content h5, .entry-content h6{
	font-size: 1.4em;
	line-height: 1.3;
}
.entry-content p span em{
    display: block;
    text-align: center;
    font-size: 15px!important;
}
.entry-meta{
	text-align: center;
}
.entry-content .size-large{
	width: 100%;
}
.wp-caption .wp-caption-text{
	font-size: .9em;
	font-style: italic;
}
.widget_recent_entries ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}
.widget_recent_entries li {
    clear: both;
    margin-bottom: 1em;
    line-height: 1.1;
}
.widget_recent_entries li a{
	color: #333;
	text-decoration: none;
}
.widget_recent_entries li a:hover{
	color: var(--hover-color);
}
span.byline{
	color: #ccc;
}
span.posted-on a,
span.author a{
    text-transform: uppercase;
    font-size: .75em;
    letter-spacing: .064em;
    color: #444;
}
span.posted-on a:hover,
span.author a:hover{
	color: var(--hover-color);
	font-weight: 600;
	letter-spacing: .05em;
}

.entry-header .cat-links{
	margin-top: 25px;
	margin-bottom: 10px;
	text-align: center;
}
.entry-header .cat-links a,
.category-menu .cat-links a{
    border: 1px solid #000;
    padding: .2em .7em;
    border-radius: 6px;
    background: #000;
    color: #ccc;
    text-transform: uppercase;
    font-size: .75em;
    font-weight: 600;
    display: inline-block;
	transition: var(--fast);
}
.entry-header .cat-links a:hover,
.category-menu .cat-links a:hover {
    background-color: #e5e5e5;
    color: var(--hover-color);
    border: 1px solid #b3b3b3;
}
.entry-content{
	font-size: 1.1em;
}

.wp-show-posts .wp-show-posts-entry-title {
    margin: 0;
    font-size: 1.3em;
    line-height: 1.2;
}

.tags-links{
	font-size: 11px;
	line-height: 1.9;
}
.lable-lables{
	display: inline-block;
	background: #000;
	color: #fff;
	padding: 0 1em;
}
.tags-links a {
    display: inline-block;
    padding: 0 1em;
    outline: 1px solid #ccc;
    background: #fff;
    color: #888;
    line-height: 1.7;
    margin-left: .5em;
}

.tags-links a:hover{
	color: #fff;
	background: var(--hover-color);
	outline: 1px solid var(--hover-color);
}

.entry-footer {
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5em;
}

header.archive-header {
    text-align: center;
}

.archive-title small {
    display: block;
}
.category-menu .cat-links {
    text-align: center;
    margin-bottom: 20px;
}

.archive-title small a {
    color: #888;
    border: 1px solid #8b8b8b;
    border-radius: 4px;
    padding: .2em .7em;
    font-size: 12px;
	transition: var(--fast);
}
.archive-title small a:hover {
	color: #333;
	background-color: #ddd;
}

/***** GENERAL  ******/
.post-date {
    font-weight: normal;
    font-size: 12px;
    text-transform: uppercase;
}

.post-date:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    content: "\f017";
    padding-right: .5em;
    font-size: .8em;
    display: inline-block;
}

.edit-link{
	display: block;
}
.edit-link a {
    color: #bbb;
    background: #f9f9f9;
    text-transform: uppercase;
    font-size: 11px;
    padding: 0 2em;
    border: 1px solid #ccc;
    letter-spacing: .1em;
    font-weight: 600;
}
.edit-link a:hover{
	color: #fff;
	background: #000;
	border-color: #000;
}

.wp-block-image .aligncenter,
.wp-block-embed__wrapper {
	text-align: center;
}

/********   CATEGORY LISTS   ********/
.thepost {
  display: grid; 
  grid-template-columns: 350px 1fr; 
  grid-template-rows: 1fr 30px; 
  gap: 0px 25px; 
  grid-template-areas: 
    "post_image post_body"
    "post_image post_cta";
	margin-bottom: 30px;
}
.thepost .thepost_image { grid-area: post_image; }
.thepost .thepost_body { grid-area: post_body; }
.thepost .thepost_cta { grid-area: post_cta; }

.thepost a{
	color: #000;
}
.thepost a:hover{
	color: #C93621;
	color: var(--hover-color);
}

.thepost_image{
	overflow: hidden;
}
.thepost .thepost_image img{
	display: block;
	width: 100%;
	max-height: 200px;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	object-position: center;
}

h2.thepost_title {
    margin: 0;
    font-weight: normal;
    line-height: 1.1;
    font-size: 1.6em;
}

.thepost_date {
    text-transform: uppercase;
    font-size: .75em;
    margin-top: .3em;
}

.thepost_excerpt {
    margin-top: 1em;
}

.thepost_excerpt p{
	margin: 0;
}

a.redbutton_more {
    background: #C93621;
    color: #fff;
    text-transform: uppercase;
    font-size: .75em;
    font-weight: 500;
    padding: .3em .8em;
    display: inline-block;
	border-radius:3px;
}
a.redbutton_more:hover{
	background: #800;
	color: #fff;
}

/*** TAG/SEARCH LISTS ***/
h1.page-title {
    font-weight: 500;
    text-align: center;
    font-size: 1em;
    text-transform: uppercase;
    line-height: .8;
    margin-top: 1.5em;
    margin-bottom: 2em;
}
h1.page-title span {
    text-transform: none;
    font-size: 2.5em;
    display: block;
    font-weight: 500;
}
.search-results .entry-header .cat-links, 
.search-results .entry-title{
	margin: 0;
}
.search-results .entry-title {
    margin: .2em 0 0 0;
    line-height: 1.2;
    font-weight: 500;
}
.search-results .entry-title a{
	color: #000;
	line-height: 1.2;
}
.search-results .entry-title a:hover{
	color: var(--hover-color);
}
.search-results article{
	margin-bottom: 1em;
}

/*** CATEGORIES  ***/
.archive-title {
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: .08em;
}

.thepost_panel{
	position: relative;
}
.thepost_panel .thepost_excerpt, .thepost_panel .thepost_cta{
	display: none;
}
.thepost_panel .thepost_image{
	height: 300px;
}

.thepost_panel .thepost_image img{
	display: block;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
}
.category-opinion .thepost_panel .thepost_image img{
	object-position: left;
}

.thepost_panel .thepost_body {
    position: absolute;
    padding: 1em;
	padding-top: 3em;
    bottom: 0;
    color: #fff;
	background: linear-gradient( 0deg, rgba(0,0,0,0.8) 34%, rgba(0,0,0,0) 100%);
}

.thepost_panel .thepost_body a{
	color: #fff;
}

.thepost_panel h2.thepost_title{
	line-height: 1;
}

blockquote {
    margin: 0 2em;
    color: #ad3927;
    font-size: 1.5em;
    font-style: italic;
    line-height: 1.1;
}

.nav-next .nav-title {
    padding-left: 5em;
}
.nav-previous .nav-title {
    padding-right: 5em;
}

.nav-subtitle {
    font-size: 1.5em;
}

.nav-links a{
	color: #000;
}
.nav-links a:hover{
	color: var(--hover-color);
}

/***** TRENDING NEWS  ******/
h2.widget-title, h2.widgettitle {
    text-transform: uppercase;
    font-size: 1.1em;
    border-bottom: 1px solid red;
}

.wp-show-posts-entry-title a{
	color: #000;
	font-size: .8em;
	line-height: 1;
}

.wp-show-posts-entry-title a:hover{
	color: var(--hover-color);
}
.wp-show-posts-entry-header{
	margin-bottom: 0;
}

a.wp-show-posts-read-more, a.wp-show-posts-read-more:visited{
    background: #C93621;
    color: #fff;
    text-transform: uppercase;
    font-size: .75em;
    font-weight: 500;
    padding: .3em .8em;
    display: inline-block;
	border-radius:3px;
	border: none;
}
a.wp-show-posts-read-more:hover{
	background: #800; 
	color: #fff;
	border: 0;
}

/***** REGEN POSTS LIST *****/
ul.regen-posts-list {
    list-style: outside none none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}
ul.regen-posts-list li { 
	overflow: hidden; 
	margin: 0 0 1.1em; 
}
ul.regen-posts-list li:last-child { 
	margin: 0; 
}
.regen-posts-list .screen-reader-text {
	border: 0; 
	clip: rect(1px, 1px, 1px, 1px); 
	-webkit-clip-path: inset(50%); 
	clip-path: inset(50%); 
	height: 1px; 
	margin: -1px; 
	overflow: hidden; 
	padding: 0; 
	position: absolute !important; 
	width: 1px; 
	word-wrap: normal !important; 
	word-break: normal; 
}
.regen-posts-list .screen-reader-text:focus {
	background-color: #f1f1f1; 
	border-radius: 3px; 
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); 
	clip: auto !important; 
	-webkit-clip-path: none; 
	clip-path: none; 
	color: #21759b; 
	display: block; 
	font-size: 0.875rem; 
	font-weight: 700; 
	height: auto; 
	right: 5px; 
	line-height: normal; 
	padding: 15px 23px 14px; 
	text-decoration: none; 
	top: 5px; 
	width: auto; 
	z-index: 100000; 
}
ul.regen-posts-list li .regen-post-img-frame { 
	display: inline; 
	float: left; 
	margin: .3em .75em .75em 0; 
	width: 80px; 
	height: 110px;
	overflow: hidden;
}
ul.regen-posts-list li img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;	
}
.regen-post-title {
    font-size: 1.05em;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
	
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 3; /* number of lines to show */
           line-clamp: 3; 
   -webkit-box-orient: vertical;
}
.regen-post-title:hover{
	color: var(--hoover-color);
}
.regen-post-date {
    font-size: .78em;
    color: #00000077;
}
a.regen-posts-read-more, a.regen-posts-read-more:visited {
    background: #C93621;
    color: #fff;
    text-transform: uppercase;
    font-size: .75em;
    font-weight: 500;
    padding: .3em .8em;
    display: inline-block;
    border-radius: 3px;
    border: none;
}
a.regen-posts-read-more:hover{
	background: #800;
	color: #fff;
}

/**** STICKY RECOMMENDATION ***/
.sticky-recommendation {
    position: fixed;
    right: -300px;
    bottom: 62px;
    width: 300px;
    padding: 1em;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
	transition: all .5s cubic-bezier(.265,.365,.26,.865);
}
.sticky-recommendation-visible{
	right: 0;
}
.sticky-recommendation ul{
	list-style: outside none none; 
	margin:0;
	padding: 0;
}

.sticky-recommendation .regen-post-img-frame {
    overflow: hidden;
    width: 268px;
    height: 122px;
}
.sticky-recommendation .regen-post-img-frame img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
#hide-recommendation-btn {
    position: absolute;
    right: 20px;
    font-size: 1.2em;
    cursor: pointer;
}

/****** FRONTPAGE ********/
#comments{
    display: none;
}

.section-name{
    font-size: 2.4em;
    line-height: 1.2;
    margin: 0 20px 20px 30px;
	text-transform: uppercase;
}
.with-red-underline:after{
    content: " ";
    background-color: #C93621;
    height: 6px;
    display: block;
    max-width: 100px;
    border-radius: 3px;
}
.with-black-underline:after{
    content: " ";
    background-color: #000;
    height: 6px;
    display: block;
    max-width: 100px;
    border-radius: 3px;
}

.ANUNCIO{
    background: #f8f8f8;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* TEMPORARY AJAX LOAD MORE SOLUTION */

.td-related-span4{
	display: block;
}

.td-related-span4 a {
    color: #000;
    font-weight: 300;
    font-size: .8em;
    line-height: 1.2;
    display: block;
	padding-left: 1em;
}
.td-related-span4 a:hover{
	color: var(--hover-color);
}
.td-related-span4 .entry-title a{
	overflow: hidden;
    height: 50px;
}
#ajax-load-more{
	margin-top: 3em;
}

.td-module-thumb {
    width: 100%;
    height: 110px;
    overflow: hidden;
}
img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
    object-fit: cover;
}
h3.entry-title.td-module-title {
    margin-top: .3em;
}
@media only screen and (min-width: 769px){
	#section-mexico .grid-container{
		--grid-gap: 5px 35px;align-content;
		grid-template-columns: 1fr 1fr 300px;
	}
	#section-mexico .news-style1 {
	  display: grid; 
	  grid-template-columns: 1fr 1fr; 
	  grid-template-rows: 1fr 1fr 1fr; 
	  gap: 10px 20px; 
	  grid-template-areas: 
		"newsitem-0 newsitem-1"
		"newsitem-0 newsitem-2"
		"newsitem-0 newsitem-3";
		height: 450px;
	}
	#section-mexico .newsitem-0 { grid-area: newsitem-0; }
	#section-mexico .newsitem-1 { grid-area: newsitem-1; }
	#section-mexico .newsitem-2 { grid-area: newsitem-2; }
	#section-mexico .newsitem-3 { grid-area: newsitem-3; }

	#section-mexico .fp_news_item:first-child{
		position: relative;
	}

	#section-mexico .fp-post-image{
		height: 450px;
		overflow: hidden;
		position: relative;
	}

	#section-mexico .fp-post-image img{
		height: 100%;
		max-width: revert;
		position: absolute;
		margin-left: -30%;
		transition: transform .2s;
		-webkit-transition: -webkit-transform 0.5s ease, opacity 0.3s;
	}

	#section-mexico .fp_news_item:hover img{
		transform: scale(1.2);
	}

	#section-mexico .fp-post-image:after{
		width:100%;
		height:100%;
		background-color: #ccc;
	}


	#section-mexico .fp_news_item:first-child .fp-post-info{
		position: absolute;
		bottom: 0;
		color: #fff;
		padding: 100px 30px 30px 30px;
		background: linear-gradient( 0deg, rgba(0,0,0,0.8) 14%, rgba(0,0,0,0) 100%);
	}
	#section-mexico .fp_news_item:first-child .fp-post-info .post-title{
		font-size: 1.5em;
		/*font-weight: 800;*/
		line-height: 0.8;
	}

	#section-mexico .fp_news_item:first-child .fp-post-info a{
		color: #fff;
		text-decoration: none;
	}

	#section-mexico .fp_news_item:not(:first-child){
		display: flex;
		background: #e0e0e0;
		border-radius: 20px;
		padding: .8em;
	}

	#section-mexico .fp_news_item:not(:first-child) .fp-post-image {
		width: 100px;
		height: 100px;
		overflow: hidden;
		flex: 0 0 100px;
		border-radius: 15px;
	}

	.newsitem-0 .post-title:after{
		content: " ";
		background-color: #C93621;
		height: 4px;
		display: block;
		max-width: 120px;
		border-radius: 3px;
		margin-top: 0.15em;
	}
	#section-camaleon .newsitem-0 .post-title:after{
		background: var(--line-camaleon-reverse);
	}

	#section-mexico .fp_news_item:not(:first-child) a.post-title{
		color: #000;
		text-decoration: none;
		font-weight: bold;
		line-height: 1.2;
		letter-spacing: -.02em;
		color: #444;
	}
	#section-mexico .fp_news_item:not(:first-child) a.post-title:hover{
		color: #000;
	}

	#section-mexico .fp_news_item:not(:first-child) img {
		height: 100%;
		margin-left: -30%;
		max-width: revert;
	}
	#section-mexico .fp_news_item:not(:first-child) .fp-post-info{
		padding: 0 0 0 10px;
		align-items: center;
		display: flex;
	}
	#section-mexico .fp_news_item:not(:first-child) .post-date{
		display: none;
	}
	.td-related-span4{
		/*temporary*/
		width: 20%;
		float: left;
	}
	
}

#section-youtube{
	background-color: #C93621;
	color: #fff;
	padding: 20px;
}
.yotu-playlist{
	padding: 0 !important;
}
.yotuwp>div{
	display: grid;
	grid-template-columns: 3fr 1fr;
	grid-gap: 10px;
}
.yotu-videos{
	padding: 0 !important;
	overflow: hidden;
	max-height: 470px;
	overflow: auto;
}
.yotu-video{
	display: -webkit-box !important;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.yotu-videos .yotu-video h3{
	color: #ffffff99 !important;
	transition: .3s ease-in-out;
}
.yotu-videos a:hover h3{
	text-decoration: none !important;
	color: #fff !important;
}
.yotu-videos .yotu-video h3{
	padding: 0 !important;
}

/* width */
.yotu-videos::-webkit-scrollbar {
	width: 5px;
	margin-left: 5px;
}

/* Track */
.yotu-videos::-webkit-scrollbar-track {
	background: #00000033;
}

/* Handle */
.yotu-videos::-webkit-scrollbar-thumb {
	background: #ffffff55;
}

/* Handle on hover */
.yotu-videos::-webkit-scrollbar-thumb:hover {
	background: #ffffff77;
}

@media only screen and (min-width: 769px){
    #section-camaleon .news-style3 {
      display: grid; 
      grid-template-columns: 1.4fr .6fr;
      grid-template-rows: 1fr 1fr 1fr; 
      gap: 0 40px; 
      grid-template-areas: 
        "newsitem-0 newsitem-1"
        "newsitem-0 newsitem-2"
        "newsitem-0 newsitem-3";
        /*height: 430px;*/
        border: 3px solid #464646;
    }
    #section-camaleon .newsitem-0 { grid-area: newsitem-0; }
    #section-camaleon .newsitem-1 { grid-area: newsitem-1; }
    #section-camaleon .newsitem-2 { grid-area: newsitem-2; }
    #section-camaleon .newsitem-3 { grid-area: newsitem-3; }
    #section-camaleon .fp_news_item:first-child{
        position: relative;
    }
    
    #section-camaleon .fp-post-image{
        height: 445px;
        overflow: hidden;
        position: relative;
    }

    #section-camaleon .fp_news_item:not(:first-child) {
        display: flex;
        padding: 1.3em;
        padding-left: 0;
    }
    #section-camaleon .fp_news_item:not(:first-child) .fp-post-image {
        width: 100px;
        height: 100px;
        overflow: hidden;
        flex: 0 0 100px;
    }
    #section-camaleon .fp_news_item:not(:first-child) .fp-post-image img{
        height: 110%;
        max-width: revert;
        position: absolute;
        margin-left: -30%;
    	-webkit-filter: grayscale(100%);
    	filter: grayscale(100%);
    	-webkit-transition: .3s ease-in-out;
    	transition: .3s ease-in-out;
    }
    #section-camaleon .fp_news_item:not(:first-child):hover .fp-post-image img{
    	-webkit-filter: grayscale(50%);
    	filter: grayscale(50%);
    }
    #section-camaleon .fp_news_item:not(:first-child) .fp-post-info {
        padding: 0 0 0 10px;
        align-items: center;
        display: flex;
    }
    #section-camaleon .fp_news_item:not(:first-child) .post-date{
        display: none;
    }
    #section-camaleon .fp_news_item:not(:first-child) .fp-post-info .post-title{
        text-decoration: none;
        font-weight: 500;
        line-height: 1;
        color: #333;
    }
    #section-camaleon .fp_news_item:not(:first-child) .fp-post-info .post-title:hover{
        color: #000;
    }
    #section-camaleon .newsitem-0 .fp-post-image{
        background: #000000;
    }
    #section-camaleon .newsitem-0 img{
        opacity: .6;
        transition: .3s ease-in-out;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    #section-camaleon .newsitem-0:hover img{
        opacity: .8;
    }
    #section-camaleon .fp_news_item:first-child .fp-post-info {
        position: absolute;
        bottom: 0;
        color: #fff;
        padding: 100px 30px 30px 30px;
        /*background: linear-gradient( 0deg, rgba(0,0,0,0.3) 14%, rgba(0,0,0,0) 100%);*/
    }
    #section-camaleon .fp_news_item:first-child .fp-post-info .post-title{
        text-decoration: none;
        color: #fff;
        font-size: 1.5em;
        line-height: 1;
    }
    #section-camaleon .newsitem-0{
        height: 425px;
    }
    #section-camaleon .newsitem-1, #section-camaleon .newsitem-2{
        border-bottom: 2px solid #464646;
    }
	
	#section-camaleon .fp_news_item:first-child .fp-post-image:after{
		content: " ";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #5b1dc6;
		background: var(--gradient-camaleon);
	}
	#section-camaleon .fp_news_item:first-child .fp-post-image img{
		filter: grayscale(100%);
		-webkit-filter: grayscale(100%);
	}
	
	.thepost .thepost_image {
		position: relative;
	}

	.category-camaleon .thepost_image:after {
		content: " ";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #5b1dc6;
		background: var(--gradient-camaleon);
	}
	.category-camaleon .thepost_image img {
		-webkit-filter: grayscale(100%);
		filter: grayscale(100%);
	}
	.with-camaleon-underline:after {
		content: " ";
		height: 6px;
		display: block;
		max-width: 100px;
		border-radius: 3px;
		background: rgb(91,29,198);
		background: var(--line-camaleon);
	}
}
/****** 404  *************/
.error-404{
    text-align: center;
}

.error-404 a{
	color: #000;
}
.error-404 a:hover{
	color: var(--hover-color);
}
.error-404 .page-content{
	max-width: 600px;
	margin: 1.5em auto;
}

.error-404 .page-title{
	margin: 3em 0; 
	font-weight: normal;
}

ul.error-404-cat-list, ul.error-404-cat-list .children{
	list-style: none;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
}
ul.error-404-cat-list .children{
	font-size: .8em;
}
/**** WPP LIST ****
 * Wordpress Popular Posts must be styled from the file
 * style.css in the folder:
 * /wp-content/themes/regen1/wordpress-popular-posts/themes/cardview-compact/style.css
 * according to instructions in:
 * https://github.com/cabrerahector/wordpress-popular-posts/wiki/6.-Styling-the-list/
 * */

/***** MISC *****/

.twitter-tweet, .instagram-media, p>iframe, .wp-video{
	margin-left: auto !important;
	margin-right: auto !important;
}
.text-center{
	text-align: center;
}

.m\:0{margin: 0 !important}
.mt\:0,.my\:0{margin-top:    0 !important}
.mb\:0,.my\:0{margin-bottom: 0 !important}
.ml\:0,.mx\:0{margin-left:   0 !important}
.mr\:0,.mx\:0{margin-right:  0 !important}

.m\:auto	        {margin:          auto !important}
.mt\:auto, .my\:auto{margin-top:      auto !important}
.mb\:auto, .my\:auto{margin-bottom:   auto !important}
.ml\:auto, .mx\:auto{margin-left:     auto !important}
.mr\:auto, .mx\:auto{margin-right:    auto !important}

.m\:1{margin: var(--spacer1) !important}
.mt\:1,.my\:1{margin-top:    var(--spacer1) !important}
.mb\:1,.my\:1{margin-bottom: var(--spacer1) !important}
.ml\:1,.mx\:1{margin-left:   var(--spacer1) !important}
.mr\:1,.mx\:1{margin-right:  var(--spacer1) !important}

.m\:2{margin: var(--spacer2) !important}
.mt\:2,.my\:2{margin-top:    var(--spacer2) !important}
.mb\:2,.my\:2{margin-bottom: var(--spacer2) !important}
.ml\:2,.mx\:2{margin-left:   var(--spacer2) !important}
.mr\:2,.mx\:2{margin-right:  var(--spacer2) !important}

.m\:3{margin: var(--spacer3) !important}
.mt\:3,.my\:3{margin-top:    var(--spacer3) !important}
.mb\:3,.my\:3{margin-bottom: var(--spacer3) !important}
.ml\:3,.mx\:3{margin-left:   var(--spacer3) !important}
.mr\:3,.mx\:3{margin-right:  var(--spacer3) !important}

.m\:4{margin: var(--spacer4) !important}
.mt\:4,.my\:4{margin-top:    var(--spacer4) !important}
.mb\:4,.my\:4{margin-bottom: var(--spacer4) !important}
.ml\:4,.mx\:4{margin-left:   var(--spacer4) !important}
.mr\:4,.mx\:4{margin-right:  var(--spacer4) !important}

.m\:5{margin: var(--spacer5) !important}
.mt\:5,.my\:5{margin-top:    var(--spacer5) !important}
.mb\:5,.my\:5{margin-bottom: var(--spacer5) !important}
.ml\:5,.mx\:5{margin-left:   var(--spacer5) !important}
.mr\:5,.mx\:5{margin-right:  var(--spacer5) !important}

.p\:0{padding: 0 !important}
.pt\:0,.py\:0{padding-top:    0 !important}
.pb\:0,.py\:0{padding-bottom: 0 !important}
.pl\:0,.px\:0{padding-left:   0 !important}
.pr\:0,.px\:0{padding-right:  0 !important}

.p\:1{padding: var(--spacer1) !important}
.pt\:1,.py\:1{padding-top:    var(--spacer1) !important}
.pb\:1,.py\:1{padding-bottom: var(--spacer1) !important}
.pl\:1,.px\:1{padding-left:   var(--spacer1) !important}
.pr\:1,.px\:1{padding-right:  var(--spacer1) !important}

.p\:2{padding: var(--spacer2) !important}
.pt\:2,.py\:2{padding-top:    var(--spacer2) !important}
.pb\:2,.py\:2{padding-bottom: var(--spacer2) !important}
.pl\:2,.px\:2{padding-left:   var(--spacer2) !important}
.pr\:2,.px\:2{padding-right:  var(--spacer2) !important}

.p\:3{padding: var(--spacer3) !important}
.pt\:3,.py\:3{padding-top:    var(--spacer3) !important}
.pb\:3,.py\:3{padding-bottom: var(--spacer3) !important}
.pl\:3,.px\:3{padding-left:   var(--spacer3) !important}
.pr\:3,.px\:3{padding-right:  var(--spacer3) !important}

.p\:4{padding: var(--spacer4) !important}
.pt\:4,.py\:4{padding-top:    var(--spacer4) !important}
.pb\:4,.py\:4{padding-bottom: var(--spacer4) !important}
.pl\:4,.px\:4{padding-left:   var(--spacer4) !important}
.pr\:4,.px\:4{padding-right:  var(--spacer4) !important}

.p\:5{padding: var(--spacer5) !important}
.pt\:5,.py\:5{padding-top:    var(--spacer5) !important}
.pb\:5,.py\:5{padding-bottom: var(--spacer5) !important}
.pl\:5,.px\:5{padding-left:   var(--spacer5) !important}
.pr\:5,.px\:5{padding-right:  var(--spacer5) !important}

@media only screen and (min-width: 790px) {
	.menu-principal-container{
		transition: all .5s ease;
	}
	.nav-sticky::after{
		content: url(https://regen.demosx.in/wp-content/themes/regen1/img/imago-menu43.png);
		position:absolute;
		left: 7vw;
		padding-top: 5px;
		top: 0;
	}
	.site-footer {
		display: block;
	}
	.footer-copyright{
		font-size: .9em;
	}
	.footer-social{
		font-size: 1.6em;
	}
	.bottom-menu {
		margin-top: 1.5em;
		margin-bottom: .8em;
	}
	.footer-menu ul,
	.bottom-menu ul{
		display: flex;
		align-items: center;
    	justify-content: center;
	}
	.footer-menu a{
		display: block;
		font-size: 1em;
		margin: .3em 2em;
	}
	.bottom-menu ul li a{
		font-size: .8em;
		border-bottom: 1px solid transparent;
		margin: 0 2em;
		color: #ffffffcc;
		letter-spacing: .08em;
	}
	.bottom-menu ul li a:hover{
		border-bottom: 1px solid #c93621;
		color: #ffffffff;
	}
	.hide-on-cel{
		display: block;
	}
	.hide-on-desktop{
		display: none;
	}

	.search-results-list{
		display: flex;
		flex-wrap: wrap;
	}
	.search-results-list article {
		margin-bottom: 1em;
		flex: 1 0 40%;
		margin: 15px;
	}
}

@media (min-width: 1150px){
	.grid-container {
		max-width: 1140px;
	}
}
