@charset "utf-8";

.swiper-container {
	display: grid;
	height: 100%;
}
#latest_image_4 .swiper-slide {
	position: relative;
	height: 100%;
	background: transparent;
	flex-direction: column;
	font-size: var(--default-font-size);
	overflow: hidden;
	border-radius: 20px;
}
#latest_image_4 .swiper-slide .hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: all 0.5s ease-in-out;
	z-index: 2;
	color: #FFF;
	font-size: 1.8em;
	display: grid;
	place-items: center;
	font-weight: 600;
	cursor: pointer;
}
#latest_image_4 .swiper-slide .hover:after {
	content: "→";
	position: absolute;
	display: grid;
	place-items: center;
	bottom: -3px;
	right: -1px;
	width: 94px;
	height: 88px;
	background: #FFF;
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	color: #000;
	font-weight: 400;
	font-size: 18pt;
	padding: 23px 0 0 35px;
}
#latest_image_4 .swiper-slide:hover .hover {
	opacity: 1;
}
#latest_image_4 .swiper-slide .txt-wrap {
	position: relative;
	display: grid;
	gap: 40px;
	z-index: 1;
}
#latest_image_4 .swiper-slide .txt-wrap > *:last-child {
	align-items: flex-end;
}
#latest_image_4 .txt-1 {
	font-family: "Outfit", sans-serif;
	font-weight: 100;
	font-size: 1.34em;
	padding: 0 0 80px;
}
#latest_image_4 .txt-2 {
	font-family: "Outfit", sans-serif;
	font-size: 1.34em;
	font-weight: 600;
	padding: 0 0 12px;
}
#latest_image_4 .txt-3 {
	line-height: 170%;
}
#latest_image_4 .img-wrap img {
	width: 100%;
}


@media (max-width: 1100px) {
	#latest_image_4 .swiper-slide {
		font-size: var(--default-tablet-font-size);
	}
}
@media (max-width: 640px) {
	#latest_image_4 .swiper-slide {
		font-size: var(--default-mobile-font-size);
	}
}