.packages .section-header {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.packages .section-header h2 {
	font-family: 'Work Sans', sans-serif;
	font-size: 2em;
	font-weight: bold;
	color: #2A8AEF;
}
.packages .section-header .line {
	width: 100%;
	height: 2px;
	background-color: #DDD;
}
.packages .section-header p {
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	text-align: center;
	color: #333;
}
.packages .card {
	box-shadow: 0 0.2rem 0.6rem rgb(0, 0, 0, .1);
}
.packages .card .card-img-top {
	width: 100%;
	height: auto;
	aspect-ratio: 5/3;
}
.packages .card h4 {
	font-family: 'Work Sans', sans-serif;
	font-size: 1.4em;
	font-weight: 500;
	color: #444;
}
.packages .card .price span {
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	font-size: 1.2em;
	color: #2A8AEF;
}
.packages .card .price div {
	font-family: 'Roboto', sans-serif;
	font-size: 0.8em;
	color: #666;
}
.packages .card .btn.btn-primary {
	border-radius: 4px;
	font-size: 0.9em;
	font-weight: 500;
	background-color: #2A8AEF;
	color: white;
	border-color: #2A8AEF;
	padding: 5px 15px;
}
.packages .card .btn.btn-primary:hover,
.packages .card .btn.btn-primary:focus {
	background-color: #0E63BE;
	border-color: #0E63BE;
}
.packages .card .days {
	position: absolute;
	top: 15px;
	right: 14px;
	background-color: #2A8AEF;
	color: white;
	padding: 6px 12px;
	border-radius: 5px;
	font-family: 'Roboto', sans-serif;
	font-size: 0.85em;
	font-weight: 500;
}
@media(min-width: 992px) {
	.packages .section-header h2 {
		font-size: 3em;
	}
	.packages .section-header p {
		width: 70%;
	}
}
@media(min-width: 1400px) {
	.packages .card .btn.btn-primary {
		padding: 8px 20px;
	}
}