.fr-section {
	position: relative;
	margin-top: 12px;
}

.fr-viewport {
	overflow: hidden;
	width: 100%;
}

.fr-track {
	display: flex;
	gap: 18px;
	align-items: stretch;
	will-change: transform;
}

.fr-card {
	flex: 0 0 100%;
	min-width: 0;
	background: #f8fbfc;
	border: 1px solid #d8e4ea;
	border-radius: 6px;
	box-shadow: 0 2px 8px rgba(0, 51, 102, .1);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.fr-carousel .fr-card {
	flex-basis: calc(100% - 42px);
}

.fr-image-link {
	display: block;
	background: #edf3f6;
	text-align: center;
}

.fr-image {
	width: 100%;
	height: 260px;
	object-fit: cover;
	display: block;
}

.fr-image-placeholder {
	position: relative;
	background: #edf3f6;
}

.fr-image-placeholder::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 72px;
	height: 52px;
	border: 4px solid #7ba4c1;
	border-top: 0;
	transform: translate(-50%, -34%);
}

.fr-image-placeholder::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 58px;
	height: 58px;
	border-left: 4px solid #7ba4c1;
	border-top: 4px solid #7ba4c1;
	transform: translate(-50%, -76%) rotate(45deg);
}

.fr-card-body {
	padding: 12px 14px 15px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.fr-card-body h6 {
	margin: 0;
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	line-height: 1.3;
}

.fr-facts {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px 12px;
	font-size: 14px;
	line-height: 1.3;
}

.fr-details {
	align-self: center;
	margin-top: auto;
}

.fr-all-link {
	margin-top: 12px;
	text-align: center;
}

.fr-view-all {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 2px;
	color: #006c9a;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 2px solid #b9d7e6;
	line-height: 1.2;
}

.fr-view-all::after {
	content: ">";
	font-size: 13px;
	line-height: 1;
	transition: transform .12s ease;
}

.fr-view-all:hover,
.fr-view-all:focus {
	color: #003366;
	border-bottom-color: #003366;
	text-decoration: none;
}

.fr-view-all:hover::after,
.fr-view-all:focus::after {
	transform: translateX(3px);
}

.fr-empty {
	margin-top: 14px;
	padding: 22px;
	text-align: center;
	background: #f8fbfc;
	border: 1px solid #d8e4ea;
	border-radius: 6px;
}

.fr-nav {
	position: absolute;
	top: 105px;
	z-index: 2;
	width: 34px;
	height: 34px;
	border: 1px solid #b9cdd9;
	border-radius: 50%;
	background: rgba(255, 255, 255, .94);
	color: #003366;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 2px 7px rgba(0, 0, 0, .14);
	cursor: pointer;
}

.fr-prev {
	left: -8px;
}

.fr-next {
	right: -8px;
}

.fr-nav:focus {
	outline: 2px solid rgba(0, 51, 102, .35);
	outline-offset: 2px;
}

@media screen and (max-width: 640px) {
	.fr-carousel .fr-card {
		flex-basis: calc(100% - 34px);
	}

	.fr-image {
		height: 210px;
	}

	.fr-prev {
		left: 4px;
	}

	.fr-next {
		right: 4px;
	}
}
