.pa-home-placements {
	margin: 34px 0 24px;
}

.pa-section {
	margin: 0 0 34px;
	animation: paFadeUp .45s ease both;
}

.pa-section + .pa-section {
	margin-top: 42px;
}

.pa-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin: 0 0 16px;
}

.pa-section-title {
	margin: 0;
	font-size: 24px;
	line-height: 1.25;
	font-weight: 700;
	letter-spacing: 0;
}

.pa-carousel-btn {
	position: absolute;
	top: 0;
	bottom: 14px;
	z-index: 3;
	width: 38px;
	border: 0;
	border-radius: 0;
	background: linear-gradient(to right, rgba(255, 255, 255, .78), rgba(255, 255, 255, 0));
	color: #888;
	font-size: 28px;
	line-height: 1;
	font-weight: 400;
	text-align: center;
	text-shadow: 0 1px 2px rgba(255, 255, 255, .9);
	box-shadow: none;
	transition: color .16s ease, opacity .16s ease;
	opacity: .92;
}

.pa-carousel-btn-prev {
	left: 44px;
}

.pa-carousel-btn-next {
	right: 44px;
	background: linear-gradient(to left, rgba(255, 255, 255, .78), rgba(255, 255, 255, 0));
}

.pa-carousel-btn:hover,
.pa-carousel-btn:focus {
	color: #666;
	opacity: 1;
	outline: none;
}

.pa-carousel-btn .glyphicon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.pa-carousel {
	position: relative;
	margin: 0 -44px;
	padding: 0 44px;
}

.pa-carousel-track {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 4px 4px 14px;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.pa-carousel-track::-webkit-scrollbar {
	display: none;
}

.pa-carousel-slide {
	flex: 0 0 calc((100% - 72px) / 4);
	min-width: 0;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.pa-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	height: 100%;
	border: 1px solid var(--pa-border-color, #f3b7ca);
	border-radius: 8px;
	background: #fff;
	color: var(--pa-title-color, #2f2330);
	text-decoration: none;
	overflow: hidden;
	box-shadow: 0 10px 26px rgba(15, 23, 42, .08);
	transition: box-shadow .18s ease, border-color .18s ease;
}

.pa-card:hover,
.pa-card:focus {
	color: var(--pa-title-color, #2f2330);
	text-decoration: none;
	box-shadow: 0 16px 34px rgba(15, 23, 42, .13);
	outline: none;
}

.pa-card-media {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	background-position: center;
	background-size: cover;
	overflow: hidden;
}

.pa-card-media:before {
	content: "";
	position: absolute;
	inset: 0;
	background: inherit;
	background-position: center;
	background-size: cover;
	transition: transform .2s ease, opacity .2s ease;
}

.pa-card:hover .pa-card-media:before,
.pa-card:focus .pa-card-media:before {
	transform: scale(1.04);
}

.pa-card-watermark .pa-card-media {
	background-image: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
}

.pa-card-watermark .pa-card-media:before {
	background-image: var(--pa-image, none);
	opacity: .28;
	filter: none;
	transform: none;
}

.pa-card-watermark:hover .pa-card-media:before,
.pa-card-watermark:focus .pa-card-media:before {
	transform: scale(1.04);
}

.pa-card-tinted .pa-card-tint {
	position: absolute;
	inset: 0;
	background: var(--pa-tint-color, #fbe8ef);
	opacity: var(--pa-tint-opacity, .42);
	pointer-events: none;
}

.pa-card-no-image .pa-card-media:before {
	background: linear-gradient(135deg, #f8fafc 0%, #fde7ef 48%, #e8f7f2 100%);
	opacity: 1;
}

.pa-card-title {
	display: flex;
	flex: 0 0 64px;
	align-items: center;
	justify-content: center;
	height: 64px;
	padding: 12px 14px;
	color: var(--pa-title-color, #2f2330);
	font-size: 15px;
	line-height: 1.3;
	font-weight: 700;
	text-align: center;
	overflow-wrap: anywhere;
	overflow: hidden;
}

.pa-footer-col {
	padding-top: 12px;
	margin-bottom: 18px;
}

.pa-footer-group + .pa-footer-group {
	margin-top: 12px;
}

.pa-footer-title {
	margin: 0 0 2px;
	color: #2f2330;
	font-size: 15px;
	line-height: 1.3;
	font-weight: 700;
}

#footer .pa-footer-list {
	margin: 0;
	padding: 0;
}

#footer .footer_col .pa-footer-list li {
	display: block;
	max-width: 100%;
	padding: 0 0 2px;
	border-left: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#footer .footer_col .pa-footer-list a {
	display: block;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.footer .footer_brand {
	display: none !important;
}

@keyframes paFadeUp {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 991px) {
	.pa-carousel-slide {
		flex-basis: calc((100% - 24px) / 2);
	}
}

@media (max-width: 767px) {
	.pa-home-placements {
		margin-top: 24px;
	}

	.pa-section-head {
		align-items: flex-start;
	}

	.pa-section-title {
		font-size: 21px;
	}

	.pa-carousel-btn {
		display: none;
	}

	.pa-carousel {
		margin-left: 0;
		margin-right: 0;
		padding: 0;
	}

	.pa-carousel-track {
		gap: 12px;
		padding: 4px 12% 14px;
		scroll-padding-left: 12%;
		scroll-padding-right: 12%;
	}

	.pa-carousel-slide {
		flex-basis: 76%;
		scroll-snap-align: center;
	}

	.pa-card-title {
		flex-basis: 68px;
		height: 68px;
		font-size: 14px;
	}
}
