img.wp-smiley,
img.emoji {
	display: inline !important;
	border: none !important;
	box-shadow: none !important;
	height: 1em !important;
	width: 1em !important;
	margin: 0 .07em !important;
	vertical-align: -0.1em !important;
	background: none !important;
	padding: 0 !important;
}

.carousel {
	min-height: 100vh;
	display: grid;
	grid-template-rows: 1fr 3fr 1.5fr;
	grid-template-columns: 50px 1fr 1fr 1fr 1fr 50px;
	row-gap: 2vh;
	position: relative;
}

.progress-bar {
	position: absolute;
	top: 0;
	left: 0;
	height: 5px;
	width: 100%;
}

.progress-bar__fill {
	width: 0;
	height: inherit;
	background: #c20000;
	transition: all 0.16s;
}

.progress-bar--primary {
	z-index: 2;
}

.main-post-wrapper {
	grid-row: 1/4;
	grid-column: 1/7;
	position: relative;
}

.slides {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.main-post {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.main-post__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	bottom: 0;
}

.main-post__image img {
	width: 100%;
	height: 100%;
	display: block;
	-o-object-fit: cover;
	object-fit: cover;
}

.main-post__image::before {
	/*content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(14, 13, 14, 0.5); */
}

.main-post__content {
	position: absolute;
	top: 40%;
	left: 4%;
	transform: translateY(-40%);
	color: #fff;
	width: 90%;
}

.main-post__tag-wrapper {
	margin: 0;
	display: inline-flex;
	overflow: hidden;
}

.main-post__tag {
	font-size: 0.95em;
	background: #c20000;
	padding: 6px 18px;
}

.main-post__title {
	font-weight: 700;
	font-size: 1.95em;
	line-height: 1.25;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.main-post__link {
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	display: inline-flex;
	align-items: center;
}

.main-post__link-text {
	font-size: 0.9em;
}

.main-post__link-icon--arrow {
	margin-left: 12px;
}

.main-post__link-icon--play-btn {
	margin-right: 12px;
}

.main-post__link:hover .main-post__link-text,
.main-post__link:hover .main-post__link-icon--arrow path {
	color: #c20000;
	stroke: #c20000;
}

.main-post--active {
	top: 0;
	z-index: 1;
	transition: top 0.9s 0.4s ease-out;
}

.main-post--not-active {
	top: 100%;
	z-index: 0;
	transition: top 0.75s 2s;
}

.main-post.main-post--active .main-post__tag-wrapper {
	width: 25%;
	transition: all 300.98s 300.9s;
}

.main-post.main-post--not-active .main-post__tag-wrapper {
	width: 0;
	transition: width 300.3s 300.2s;
}

.main-post.main-post--active .main-post__title {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 300.8s 300.42s, transform 0.5s 1.4s;
}

.main-post.main-post--not-active .main-post__title {
	transform: translateY(40px);
	opacity: 0;
	transition: transform 300.2s 300.35s, opacity 0.5s 0.2s;
}

.main-post.main-post--active .main-post__link {
	opacity: 1;
	transition: opacity 300.9s 2300.2s;
}

.main-post.main-post--not-active .main-post__link {
	opacity: 0;
	transition: opacity 300.5s 300.2s;
}

.posts-wrapper {
	grid-row: 3/4;
	grid-column: 5/6;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	-moz-column-gap: 14px;
	column-gap: 14px;
	z-index: 1;
	display: none;
}

.post {
	background: rgba(14, 13, 14, 0.6);
	opacity: 0.3;
	color: #fff;
	position: relative;
	/*padding: 16px 20px;*/
	transition: opacity 0.2s linear;
	height: 0;
	padding: 0;
}

.post__header {
	/*display: flex;*/
	justify-content: space-between;
	align-items: center;
	font-size: 0.8em;
	display: none;
}

.post__tag {
	color: #80837e;
}

.post__title {
	font-weight: 400;
	font-size: 0.95em;
	line-height: 1.5;
	display: none;
}

.post--active {
	opacity: 1;
	background: rgba(14, 13, 14, 0.75);
	pointer-events: none;
}

.post--disabled {
	pointer-events: none;
}

.post:hover {
	cursor: pointer;
	opacity: 1;
}

.hide-on-mobile {
	display: none;
}

@media screen and (min-width: 768px) {
	.main-post__title {
		font-size: 2.9em;
	}
}

@media screen and (min-width: 1024px) {
	.hide-on-mobile {
		display: grid;
	}

	.posts-wrapper {
		grid-column: 2/6;
	}

	.hide-on-desktop {
		display: none;
	}
}

@media screen and (min-width: 1440px) {
	.main-post__content {
		width: 45%;
	}

	.posts-wrapper {
		grid-column: 5/6;
	}
}


html, body {
  margin: 0;
  padding: 0;
}

.pic-ctn {
  width: 100vw;
  height: 200px;
}

@keyframes display {
  0% {
    transform: translateX(200px);
    opacity: 0;
  }
  10% {
    transform: translateX(0);
    opacity: 1;
  }
  20% {
    transform: translateX(0);
    opacity: 1;
  }
  30% {
    transform: translateX(-200px);
    opacity: 0;
  }
  100% {
    transform: translateX(-200px);
    opacity: 0;
  }
}

.pic-ctn {
  position: relative;
  width: 100%;
  height: 300px;
  margin-top: 15vh;
}

.pic-ctn > div {
  position: absolute;
  top: 0;
  /*left: calc(50% - 100px);*/
  opacity: 0;
  animation: display 10s infinite;
  left: 0;
  right: 0;
}

div:nth-child(2) {
  animation-delay: 2s;
}
div:nth-child(3) {
  animation-delay: 4s;
}
div:nth-child(4) {
  animation-delay: 6s;
}
div:nth-child(5) {
  animation-delay: 8s;
}

/* Contenedor de Testimonios */
.testimonial {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 20px;
    padding: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Título del Testimonio */
.testimonial h3 {
    color: #2c3e50;
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Cuerpo del Testimonio */
.testimonial p {
    color: #555;
    line-height: 1.6;
    font-size: 1em;
}

/* Nombre del Cliente */
.testimonial p strong {
    display: block;
    margin-top: 15px;
    font-size: 0.9em;
    color: #2c3e50;
    text-align: right;
}

/* Estilos Responsivos */
@media (max-width: 768px) {
    .testimonial {
        padding: 15px;
        margin: 15px;
    }

    .testimonial h3 {
        font-size: 1.3em;
    }

    .testimonial p {
        font-size: 0.95em;
    }
}

