/* Testimonial Slider */

.ies-testimonial-slider .owl-stage-outer {
    padding-top: 76px;
}
.ies-testimonial-slider .ies-testimonial {
    transition: all 0.5s ease-in-out;
}
.ies-testimonial-slider .active.center .ies-testimonial {
    transform: translateY(-76px);
}
.ies-testimonial .ies-testimonial-content {
    font-size: 16px;
    color: #171717;
    line-height: 22px;
    padding: 77px 32px;
    background-color: #fff;
    transition: all .3s ease-in-out;
}
.uc-active-item .ies-testimonial .ies-testimonial-content {
    color: #FAFAFA;
    background-color: #C72D3D;
}
.ies-testimonial .ies-testimonial-bio {
    margin-top: -20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.ies-testimonial .ies-testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
	object-fit: cover;
}
.ies-testimonial .ies-testimonial-name{
    font-size: 24px;
    font-weight: 700;
    line-height: 31px;
    color: #0A0A0A;
    margin-bottom: 0;
    text-align: center;
}
.ies-testimonial .ies-testimonial-des{
    font-size: 24px;
    line-height: 31px;
    color: #404040;
    text-align: center;
}

.ies-image-marquee {
    overflow: hidden;
    width: 100%;
}
.ies-image-marquee.ies-multi-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ies-image-wrapper {
    display: flex;
    width: max-content;
    gap: 20px;
    align-items: center;
    will-change: transform;
}
.ies-image-marquee-holder {
    position: relative;
    flex: 0 0 auto;
    overflow: hidden;
}
.ies-image-marquee-holder img {
    display: block;
    height: 100%;
    object-fit: cover;
}
@keyframes marquee-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marquee-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.ies-row-1 { animation: marquee-left 60s linear infinite; }
.ies-row-2 { animation: marquee-right 60s linear infinite; }
.ies-image-marquee:hover .ies-image-wrapper { animation-play-state: paused; }

/* IES Post Hover */
.post-hover-section {
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: row;
}
.post-hover-big {
	position: relative;
	width: 72%;
}
.post-hover-list {
	width: 28%;
}
.post-list-item {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 24px 32px;
	min-height: 227px;
	background-color: #081424;
	transition: .3s all ease-in-out;
	cursor: pointer;
}
.post-list-item .post-term {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	color: #fff;
}
.post-list-item .post-title {
	font-size: 28px;
	font-weight: 700;
	line-height: 36px;
	color: #fff;
	margin: 0;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}
.post-list-item:hover {
	background-color: #c72d3d;
}
.post-big-item {
    position: absolute;
    overflow: hidden;
    width: 100%;
    inset: 0;
    height: auto;
    opacity: 0;
    transition: opacity 0.3s 
ease-in-out;
}
.post-big-item.active {
    opacity: 1;
    position: relative;
}
.post-big-item .post-image {
	position: relative;
	overflow: hidden;
	height: 681px;
}
.post-big-item .post-image img {
	display: block;
	width: 100%;
	object-fit: cover;
	height: 681px;
}
.post-big-item .post_image_overlay {
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	background-color: rgb(29 29 29 / 40%);
	transition: 0.3s;
}
.post-big-item .post-content {
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	padding: 64px;
	z-index: 1;
}
.post-big-item .post-content .post-title {
	font-size: 68px;
	font-weight: 700;
	line-height: 82px;
	margin: 0 0 20px;
}
.post-big-item .post-content .post-title a {
	display: block;
	color: #fff;
}
.post-big-item .post-content .btn-more {
	display: inline-block;
	background-color: #E02C36;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	padding: 12px 24px;
	color: #fff;
}
@media screen and (max-width: 767px) {
	.post-hover-section {
		flex-direction: column;
	}
	.post-hover-big, .post-hover-list {
		width: 100%;
	}
	.post-big-item .post-image {
		height: 400px;
	}
	.post-big-item .post-image img {
		height: 400px;
	}
	.post-big-item .post-content {
		padding: 20px;
	}
	.post-big-item .post-content .post-title {
		font-size: 32px;
		line-height: 40px;
	}
	.post-list-item {
		min-height: 162px;
		padding: 20px;
	}
	.post-list-item:hover {
		background-color: #081424;
	}
	.post-list-item .post-title {
		font-size: 20px;
		line-height: 30px;
	}
	.post-hover-list .owl-dots {
		display: flex;
		justify-content: center;
		margin-top: 12px;
	}
	.post-hover-list .owl-dot span {
		width: 8px;
		height: 8px;
		background: #ccc;
		display: block;
		border-radius: 50%;
		margin: 0 4px;
	}
	.post-hover-list .owl-dot.active span {
		background: #E02C36;
	}
}