.image{
	display: flex;
	justify-content: center;
}

/*
.resumen {
	font-size: 2.5rem;
	text-align: center;
	padding-left: 15px;
	padding-right: 15px;
}
.content .center-r{
	display: grid;
	text-align: justify;
}
/*
.contenido{
	position: relative;
	top: 50%;
	left:50%;
	transform: translate(-50%, 0%);
	font-family: 'Yantramanav', sans-serif;
}*/

.contenido-noticia{
	font-size: 16px;
}
/*
.fecha{
	width:300px;
	float: left;
	font-size: 12px;
}
.fecha .field--label{
	font-size: 12px;
}
.lugar{
	width: 300px;
	font-size: 12px;
}
.lugar .field--label{
	font-size: 12px;
}*/ 

@media screen and (max-width: 465px) {
    .prueba {
    	display: flex;
    	float: left;
    	width: 200px;
      font-size:10px;
      transform: translate(-100%, 0%);
    }
    .prueba2 {
    	display: flex;
    	width: 200px;
      font-size:10px;
    }
}
/*
.field--type-entity-reference{
	width: 60% !important;
}*/

.content .left .field--items .field--item{
	float: left;
	margin-right: 10px;
}


@media (max-width: 570px){
	.container-taxo {
		width: 100% !important;
		margin-left:2rem !important;
		padding-left: 15px !important;
		padding-right: 15px!important;
	}
}
@media (min-width: 571px){
	.container-taxo {
		width: 710px !important;
		padding-left: 15px !important;
		padding-right: 15px!important;
	}
}
@media (min-width: 1024px){
	.container-taxo {
		width: 930px !important;
		padding-left: 15px !important;
		padding-right: 15px!important;
	}
}
@media (min-width: 1280px){
	.container-taxo {
		width: 1140px !important;
		padding-left: 15px !important;
		padding-right: 15px!important;
	}
}

.field--label {
	font-size: 14px;
}
/* Subtitulo CSS*/
.contenido strong {
	font-size: 2rem;
	font-family: 'Monstserrat', sans-serif;
}

/* BLOCK CLASS RECOMENDADORS*/
.center{
	display: flex;
	justify-content: center;
}
.center-r {
	display: flex;
	justify-content: center;
	width: 100%;
}
.card{
  width: 25rem;
  height: auto;
  background: #fff;
  border-radius: 1.5rem;
  padding: 1rem;
  overflow: hidden;
  position: relative;
}
.card h3{
	margin-top: 5px;
	margin-bottom: 5px;
}
.card-img-holder{
  width: 100%;
  height: auto;
  position: relative;
}

.card-img-holder img{
  width: 100%;
  height: auto;
  max-height: 15rem;
  object-fit: cover;
  border-radius: 1.5rem;
}

.blog-title{
  color: #22215B;
  padding: 0.5rem 0;
  font-size: 1.2rem;
  font-weight: bold;
}

.description{
  padding: 1rem 0;
  color: #22215B80;
  font-size: 1rem;
}

.blog-time{
  font-size: 1rem;
  color: #22215B;
  margin-top: 5px;
}

.options{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
}

.options span{
  font-weight: 600;
  color: #22215B;
}

.btn{
  font-size: 1rem;
  padding: .5rem 1rem;
  border-radius: .5rem;
  font-weight: 400;
  background: #EEF7FE;
  color: #22215B;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
    html {
        font-size:15px
    }
}

@media screen and (max-width: 465px) {
    html {
        font-size:14px
    }
}


/*BUTTON CLASS TAXONOMIAS*/
.btn-t .field--items .field--item a {
	color: #fff !important;
}
.btn-t .field--items .field--item{
    color: #fff;
    background: linear-gradient(135deg, #006726, #006726);
    font-size: 12px;
    font-weight: 500;
    padding: 5px 5px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}
.btn-t .field--items .field--item:hover{
    color: #fff;
    border: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    animation: rotate 0.7s ease-in-out both;
}
.btn-t .field--items .field--item:before,
.btn-t .field--items .field--item:after{
    /*content: '';
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    opacity: 0;
    transform: translate(100%, -25%) translate3d(0, 0, 0);
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    transition: all 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);*/
}
.btn-t .field--items .field--item:hover:before,
.btn-t .field--items .field--item:hover:after{
    opacity: 0.15;
}
.btn-t .field--items .field--item:hover:before{ transform: translate3d(50%, 0, 0) scale(0.9); }
.btn-t .field--items .field--item:hover:after{ transform: translate(50%, 0) scale(1.1); }
@keyframes rotate{
    0%{ transform: rotate(0deg); }
    25%{ transform: rotate(3deg); }
    50%{ transform: rotate(-3deg); }
    75%{ transform: rotate(1deg); }
    100%{ transform: rotate(0deg); }
}
@media only screen and (max-width: 767px){
    .btn-t{ margin-bottom: 20px; }
}