
		/* Main card Styling */
	.card-custom {
		background-color: #fff;
		border: none;
		border-radius: 0.5rem;
		box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
		padding: 2rem;
		display: flex;
		flex-direction: column;
		margin-bottom: 30px;
	}
	
	.card-custom h3 {
		font-weight: 700; /* bold */
		font-size: 36px;
		color: #1F4456;
		line-height: normal; /* or 1.2 if you want a bit more spacing */
		letter-spacing: 0;
	}

	.col-lg-5 .card-custom{
		padding: 0 2.5rem 2.5rem;
	}
	
	.mb{
		margin-bottom: 20px;
	}

	.btn-login {
		background-color: #2d455a;
		color: #fff;
		font-weight: 600 !important;
		border-radius: 6px !important;
		width: 100%;
		padding: 10px !important;
		border: 1px solid #2d455a !important;
		font-size: 14px !important;
	}
	
	.btn-login:focus,
	.btn-login:hover {
		background-color: #2d455a;
		border-color: #2d455a;
		color: #fff !important;
	}

	.info-card-item {
		display: flex;        /* allows card to fill height in desktop */
		flex: 1;              /* equal width / height on desktop */
	}

	.info-card {
		background-color: #fff;
		border: none;
		border-radius: 0.5rem;
		box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
		padding: 2rem;
		display: flex;
		flex-direction: column;
		height: 100%;
		margin-bottom: 30px;
	}

	.info-card h4 {
		font-weight: 700; /* bold */
		font-size: 20px;
		color: #1F4456;
		line-height: normal; /* or 1.2 if you want a bit more spacing */
		letter-spacing: 0;
	}

	.card-icon-circle {
		display: inline-flex;
		justify-content: center;
		align-items: center;
		width: 48px;
		height: 48px;
		border-radius: 50%;
		background-color: #1F4456;
		color: #fff;
		margin-bottom: 1rem;
		font-size: 36px;
	}

	.cardsIcon { 
		vertical-align: middle; 
		width:24px;
		height: auto;
	}

	.card-info {
		font-weight: 400;
		font-size: 16px;
		color: #333333;
		line-height: 1.31; /* or 1.31 for relative spacing */
		letter-spacing: 0;
	}


	/* Mobile view */
	@media (max-width: 991px) {
		.info-card-item {
			display:block;    /* let item take full width */
			width: 100%;
		}

		.info-card {
			height: auto;    /* natural height */
		}
	}

	@media (min-width: 1200px) {
	
		.info-card-item {
			flex: 1;
			margin-right: 10px;
		}
	
		.info-card-item:last-child {
			margin-right: 0;
		}
	}

	@media (min-width: 1280px) {
	
		.info-card-item {
			flex: 1;
			margin-right: 20px;
		}
	
		.info-card-item:last-child {
			margin-right: 0;
		}
	}
	
