@charset "utf-8";
.image-container {
	position: relative;
	aspect-ratio: 4 / 3; /*比例*/
}
.image-container2 {
	position: relative;
	aspect-ratio: 1 / 1; /*比例*/
}
.image-container img, .image-container2 img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity 0.3s ease;
	object-fit: cover; /*填滿容器並裁剪圖片*/
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
}

.testimomnial-thumb {
	width: 30%;
}
.testimonial-body {
	width: 70%;
}

.footer-top a {
	color: var(--white);
}
.footer-top a:hover {
	color: var(--title) !important;
}