body {
	background: #000000 !important;
}

h3 {
	font-weight: bold;
}

.centered {
	margin-left: auto;
	margin-right: auto;
}

.cheeseItItsOnMobile { 
	display:block;
}
@media screen and (max-width:991.98px) {
	.cheeseItItsOnMobile { 
		display:none;
	}
}

.cheeseItItsNotOnMobile { 
	visibility:hidden;
	display:none;
}
@media screen and (max-width:991.98px) {
	.cheeseItItsNotOnMobile { 
		visibility:visible; 
		display:block;
	}
}

.container {
    border-radius: 5px;
    padding: 5px;
    margin-top: 20px;
}

.iSaidItsNotOnMobile { 
	all:unset;
}
@media screen and (max-width:991.98px) {
	.iSaidItsNotOnMobile { 
		all:unset;
		visibility:hidden; 
		display:none;
	}
}

.letMeSeeYourText {
	text-shadow: 1px 1px 5px black;
}

.mission-title {
	font-size: 1.8rem; /* Makes the heading smaller */
	font-weight: bold;
	padding-top: 40px;
	color: white; /* White text */
	text-shadow: 4px 4px 16px #42a5f5; /* Light blue shadow effect */
	margin-bottom: 10px;
}

.mission-subtitle {
	font-size: 1.2rem;
	font-weight: 600;
	color: #42a5f5; /* Light blue text */
	margin-top: 5px;
	padding-bottom: 20px;
}

@media screen and (min-width:992px) {
	.peaty-5 {
		padding-top: 3rem !important; 
	}
}

.services {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: white; /* Make text white */
	background: #0d47a1; /* Dark blue background */
	padding: 15px;
	border: 3px solid #0d47a1; /* Dark blue border */
	border-radius: 10px;
	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.6); /* 3D shadow effect */
	transition: all 0.3s ease-in-out;
}

.services .icon {
	font-size: 24px;
	color: white; /* Make icon white */
	margin-bottom: 8px;
}

.services .text h2 {
	font-size: 18px;
	margin: 0;
	color: white; /* Ensure text remains white */
}


/* Hover Effect */
.services:hover {
	background: #42a5f5; /* Light blue hover */
	border-color: #42a5f5; /* Match border with background */
	box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.8); /* Enhance 3D effect */
	transform: translateY(-3px); /* Slight lift effect */
}
.mission-container {
	background: none !important; /* Remove any background */
	box-shadow: none !important; /* Remove any possible shadow */
	border: none !important; /* Remove any border */
	padding: 0; /* Remove extra padding if needed */
	margin: 0 auto; /* Center it properly */
}