/***********************************************
HOME V2
************************************************/

.promobar {
	margin: 0 0 0 0;
	border: none;
	border-left: none;
	border-right: none;
	background: #3E68A1;
	padding: 0;
	color: #fff;
	}
.promobar .promobar-item .promobar-caption a {
	color: #fff;
	font-size: 16px;
	}
.promobar:hover {
	background-color: #33465c;
	}
.promobar .promobar-item .promobar-caption a:hover {
	color: #fff;
	}
@media screen and (min-width: 767px) {
	.promobar {
		padding: 5px 10px;
		border-top: none;
		border-left: none;
		border-right: none;
		border-bottom-left-radius: unset;
		border-bottom-right-radius: unset;
		}
	.promobar .promobar-inner {
		position: relative;
		margin: 0;
		}
	}

/* ======================================================
	Grid layouts
====================================================== */
.card-grid {
 	display: grid;
	gap: 24px;
	width: 100%;
	}

/* Three column grid */
.card-grid.grid-col-3 {
	grid-template-columns: repeat(3, 1fr);
	}
@media (max-width: 700px) {
	.card-grid.grid-col-3,
	.card-grid.grid-col-5 {
		grid-template-columns: 1fr;
		}	
	.card-grid {
		gap: 46px;
		}			
	.card-grid.icon-md-top {
		gap: 64px;
		}
	.card-grid.icon-md-top {
		margin-top: 64px;
		}
	}
@media (max-width: 400px) {
	.card-image:hover,
	.card-image:focus-visible {
		transform: scale(1.04) !important;
		}
	}
@media (min-width: 401px) and (max-width: 700px) {
	.card-image:hover,
	.card-image:focus-visible {
		transform: scale(1.02) !important;
		}
	}	

/* Five column grid */
.grid-col-5 {
	grid-template-columns: repeat(5, 1fr);
	}

@media (min-width: 701px) and (max-width: 1010px) {
	.grid-col-5 {
		grid-template-columns: repeat(3, 1fr);
		}
	}
	
/* ======================================================
   Card base
====================================================== */
.card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	padding: 48px 20px 24px;
	background-color: #fff;
	color: #222;
	text-decoration: none;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	overflow: visible;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	}
.card:hover,
.card:focus-visible {
	box-shadow: 0 8px 14px rgba(0, 0, 0, 0.2);
	}

/* ======================================================
   Card Icon
====================================================== */
.card-icon {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	}

.card-icon img {
	display: block;
	}

/* Icon sizing variants */
.card-grid.icon-lg-top .card-icon img {
	width: 66px;
	height: 66px;
	}

.card-grid.icon-md-top .card-icon img {
	width: 44px;
	height: 44px;
	}

/* ======================================================
   Card titles (link text)
====================================================== */
.card-title {
	margin: 0 0 16px;
	text-align: center;
	display: block;
	}
.card-title.title-lg {
	font-size: 26px;
	font-weight: 600;
	}
.card-title.title-md {
	font-size: 22px;
	font-weight: 600;
	}

.card-title.title-sm {
	font-size: 20px;
	font-weight: 400;
	}
	
/* ======================================================
   Image card variant
====================================================== */
.card-image {
	width: 100%;
	height: 100%;
	margin-top: auto;
	border-radius: 8px;
	transform: scale(1);
	transition: transform 0.25s ease;
	}
.card-image .card-body {
	align-items: stretch;
	}
.card-image:hover {
	transform: none;
	box-shadow: none;
	transition: none;
	}
.card-image .card-icon img {
	width: 48px;
	height: 48px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	object-fit: cover;
	transform: scale(1);
	transition: transform 0.25s ease;
	}
.card-image:hover .card-icon img,
.card-image:focus-visible .card-icon img {
	transform: scale(1.3);
	}
.card-image:hover,
.card-image:focus-visible,
.grid-col-5 .card:hover,
.grid-col-5 .card:focus-visible {
	transform: scale(1.06);
	}

/* ======================================================
   Five column card styling
====================================================== */
.grid-col-5 .card {
	position: relative;
	overflow: visible;
	padding: 20px;
	}
.grid-col-5 .card-body {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	}
.grid-col-5 .card-icon {
	top: -11px;
	}
.grid-col-5 .card-icon img {
	width: 22px;
	height: 22px;
	}
/* Decorative top circle */
.grid-col-5 .card::before {
	content: "";
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	width: 2.6rem;
	height: 2.6rem;
	background-color: #33465c;
	border: 6px solid #ffffff;
	border-radius: 50%;
	}

/* Overlay on card */
.grid-col-5 .card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: #edf5f8;
	clip-path: inset(100% 0 0 0);
	transition: clip-path 0.4s ease;
	border-radius: 8px;
	}
/*	
.grid-col-5 .card:hover::after,
.grid-col-5 .card:focus-visible::after {
	clip-path: inset(0 0 0 0);
	background: #b7d5e2;
	}
*/	
.grid-col-5 .card:hover::before,
.grid-col-5 .card:focus-visible::before {
	background-color: #f9dba9;
	}
.grid-col-5 .card > * {
	position: relative;
	z-index: 1;
	}	
.bkg-blue-lght {
	background-color: #d5e7ee !important;
	}
.bkg-red-lght {
	background-color: #F3C9D4 !important;
	}
.bkg-orange-lght {
	background-color: #f9dba9 !important;
	}
.bkg-blue-dark {
	background-color: #3E68A1 !important;
	}
.bkg-blue-dark-x {
	background-color: #33465c !important;
	}
.bkg-blue-dark-x h2 {
	color: #fff;
	}
	