/* Homepage works slider */
.main_works {
	padding: 56px 0 64px;
	background: #fff;
}
.main_works .df_title {
	align-items: center;
	justify-content: space-between;
	margin-bottom: 28px;
	gap: 16px;
}
.main_works .title_wr {
	margin: 0;
	font-family: "ProximaNova", "Open Sans", sans-serif;
	font-weight: 800;
}
.main_works .works_carousel_arrows {
	position: relative;
	flex-shrink: 0;
}
.main_works .works_slider {
	margin: 0 -10px;
}
.main_works .works_slider .slide {
	padding: 0 10px;
	box-sizing: border-box;
}
.main_works .works_card {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 4px 18px rgba(28, 36, 24, 0.1);
	background: #1a2218;
	aspect-ratio: 4 / 3;
	text-decoration: none;
}
.main_works .works_card img,
.main_works .works_card video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}
.main_works .works_card:hover img {
	transform: scale(1.04);
}
.main_works .works_card_video {
	cursor: default;
}
.main_works .works_video_badge {
	position: absolute;
	left: 12px;
	bottom: 12px;
	z-index: 2;
	padding: 4px 10px;
	border-radius: 4px;
	background: rgba(18, 24, 16, 0.72);
	color: #fff;
	font-size: 12px;
	font-family: "ProximaNova", "Open Sans", sans-serif;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	pointer-events: none;
}
.main_works .works_btn_wr {
	text-align: center;
	padding-top: 36px;
}
.main_works .works_btn_wr .btn {
	display: inline-block;
	text-decoration: none;
}

@media screen and (max-width: 720px) {
	.main_works {
		padding: 40px 0 48px;
	}
	.main_works .df_title {
		margin-bottom: 18px;
	}
	.main_works .works_btn_wr {
		padding-top: 28px;
	}
}
