/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 08 2025 | 02:44:55 */
.basicBeliefGrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	max-width: 900px;
	margin: 0 auto;
}

.basicBeliefCard {
	background-color: #f5f7fa;
	padding: 1.5rem;
	border-radius: 20px;
	transition: background-color 0.3s ease, color 0.3s ease;
	color: #000;
	position: relative;
	cursor: pointer;
	min-height: 270px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-decoration: none; 
}

.basicBeliefCard:hover {
	background-color: #00a8e8;
	color: #fff;
}
.basicBeliefCard:hover h3.basicBeliefTitle {
	color: #fff!important;
}

.basicBeliefCard:hover .basicBeliefDesc {
	opacity: 1;
	height: auto;
	margin-top: 0.5rem;
}

.basicBeliefCard img {
	width: 58px;
	height: 58px;
	margin-bottom: 1rem;
	filter: brightness(0) saturate(100%) invert(39%) sepia(91%) saturate(426%) hue-rotate(162deg) brightness(93%) contrast(90%);
	transition: filter 0.3s ease;
}

.basicBeliefCard:hover img {
	filter: brightness(0) invert(1); /* Make icon white */
}

.basicBeliefTitle {
	font-size: 1.4rem;
	font-weight: 600;
	margin: 0;
}

.basicBeliefGrid > .basicBeliefCard > .basicBeliefArrow {
	display: inline-block;
	margin-top: 1rem;
	font-size: 1.5rem;
}

.basicBeliefDesc {
	font-size: 0.95rem;
	margin-top: 0;
	opacity: 0;
	height: 0;
	overflow: hidden;
	transition: opacity 0.3s ease, height 0.3s ease, margin-top 0.3s ease;
}

@media (max-width: 767px) {
	.basicBeliefGrid {
		grid-template-columns: 1fr;
	}
}