/**/

:root {
	--blue-color: #007aff;
	--primary-color: #ff9d3d;
	--max-width-laptop: 1200px;
	--max-width-desktop: 1700px;
}

/*exercusion*/
.packages {
	display: flex;
	flex-direction: column;

	margin: 10dvh 0 10dvh 0;
	padding: 0 12px 0 12px;
	column-gap: 12px;
}

.packages .a {
	text-align: center;
	margin-bottom: 32px;
}

.packages h3 {
	text-align: center;
}

.packages .pa-holder {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	justify-content: center;
	column-gap: 32px;
	row-gap: 12px;
}

.pa-holder .pack {
	display: inline-flex;
	flex-direction: column;
	flex: 1;
	column-gap: 12px;
	background-color: rgba(179, 179, 179, 0.021);
	width: 100%;
	max-width: 410px;
	min-width: 250px;
	height: fit-content;
	max-height: 450px;

	overflow: hidden;
}

.pack ul {
	display: inline-flex;
	flex-direction: row;
	list-style: none;
	letter-spacing: 0.56px;
	justify-content: space-between;
	padding: 0 2% 12px 0;
}

.pack ul .material-symbols-outlined {
	font-size: 21px;
	color: #0000008c;
	position: relative;
	top: 4.5px;
}

.pack img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	object-position: center;
	margin-bottom: 6px;
}

.pack h4 {
	margin-bottom: 8px;
	letter-spacing: 0.49px;
	color: #000000c9;
}

.pack h4,
.pack p {
	margin-bottom: 2px;
	margin-left: 6px;
}

.pack p {
	font-size: 16px;
}

.pack a {
	text-decoration: none;
	font-weight: 500;
	margin: 18px 0;
	padding: 4px 6px 2px 6px;
	color: var(--primary-color);
	border-radius: 50%;
	border: 1px solid var(--primary-color);
	width: fit-content;

	&:hover {
		transform: translateX(3px);
		color: var(--blue-color);
		border: 1px solid var(--blue-color);
		transition: all 0.4s;
	}
}
