@charset "UTF-8";
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	color: #000000;
	font-family: "Outfit", sans-serif;
	line-height: 120%;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
}

.wrapper {
	padding: 1rem 0;
}

section {
	margin-bottom: 3rem;
}

section:last-child {
	margin-bottom: 0;
}

.section_title {
	font-size: 24px;
	font-weight: bold;
}

.offer_card {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.off_card_top {
	position: relative;
}

.off_card_content {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 0.5rem 0.8rem;
	z-index: 10;
}

.off_card_title {
	font-size: 22px;
	font-weight: bold;
	color: #ffffff;
}

.duration {
	display: flex;
	align-items: center;
	justify-content: unset;
	gap: 0.2rem;
}
.duration,
.duration span {
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
}

.ratings_section {
	display: flex;
	align-items: center;
	justify-content: unset;
	gap: 0.5rem;
}

.rating {
	display: inline-flex;
	font-size: 16px; /* Adjust star size */
}

.star {
	position: relative;
	color: #ccc;
}

.star::before {
	content: "★";
	color: #ffc107;
	position: absolute;
	left: 0;
	width: 0%;
	overflow: hidden;
	white-space: nowrap;
}

.rating_count {
	color: #ffffff;
	font-size: 12px;
	font-weight: bold;
}

.off_card_bottom {
	border: solid #d9d9d9;
	border-width: 0 1px 1px;
	border-radius: 0 0 10px 10px;
	padding: 1rem;
}

.price_label {
	font-size: 11px;
}

.price {
	font-size: 20px;
	font-weight: bold;
}

.overlayed::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 29%, rgba(0, 0, 0, 0.8) 100%);
}

.overlayed:hover .off_card_img {
	transform: scale(1.2);
}

@media screen and (max-width: 992px) {
	.owl-carousel .owl-item img[alt="tripadvisor logo"] {
		max-width: 15px;
	}
	.off_card_title {
		font-size: 16px;
		font-weight: 600;
	}
	.duration,
	.duration span {
		font-size: 12px;
		font-weight: 600;
	}
	.rating {
		font-size: 14px;
	}
	.rating_count {
		font-size: 10px;
	}
	.off_card_content {
		padding: 0.5rem 0.4rem;
	}
	.price {
		font-size: 18px;
	}
	.off_card_bottom {
		padding: 0.6rem;
	}
	.owl-theme .owl-dots .owl-dot.active span,
	.owl-theme .owl-dots .owl-dot:hover span {
		background: #00c4b3;
	}
}
@media screen and (min-width: 992px) {
	.off_card_img {
		transition: transform 300ms ease;
	}

	.off_card_img:hover {
		transform: scale(1.2);
	}

	.off_card_top {
		overflow: hidden;
	}
}
