* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.lefttopaboutPage h3 {
	font-weight: normal;
}

.lefttopaboutPage h1 {
	font-size: 38px;
	font-weight: normal;
	font-family: "Space Grotesk";
	margin: 40px 0px;
}

.lefttopaboutPage p {
	line-height: 30px;
	margin-top: 10px;
}

.aboutpages {
	padding: 6%;
	color: #7db1ff;
}

.topaboutpage {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
}

.imageaboutPage img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 6px;
}

.lefttopaboutPage {
	background: #0b143a;
	padding: 20px;
	border-radius: 6px;
}

.rightaboutbpagedetails {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.summarizedaboutPageCounter {
	background: #0b143a;
	display: grid;
	grid-template-columns: repeat(2, 2fr);
	height: 100%;
	padding: 20px;
	gap: 20px;
}

.divanout {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
}

.singleaboutcounter {
	background: #0d1642;
	flex: 1 1;
	border-radius: 6px;
	padding: 20px;
}

.teamImages {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

.singleTemaMember {
	background: #0b143a;
	width: 340px;
	border-radius: 6px;
	margin-top: 40px;
	position: relative;
}

.teamonAbout {
	margin-top: 80px;
}

.teamonAbout h1 {
	font-size: 38px;
	font-weight: normal;
	font-family: "Space Grotesk";
}

.teamonAbout h3 {
	font-weight: normal;
	margin-bottom: 10px;
	margin-top: 20px;
}
.descriptionofTeam {
	position: absolute;
	background: #121f5a;
	height: 130px;
	bottom: 10px;
	left: 20px;
	border-radius: 6px;
	width: 0;
	display: flex;
	animation: slideoutcontentabouttema 0.5s ease forwards;
	border: 1px solid #7db1ff;
}

@keyframes reveilcontentabouttema {
	from {
		width: 0;
		opacity: 0;
	}
	to {
		width: 300px;
		opacity: 1;
		flex-direction: column;
		padding: 10px;
	}
}
@keyframes slideoutcontentabouttema {
	from {
		width: 300px;
		opacity: 1;
		flex-direction: column;
		padding: 10px;
	}
	to {
		width: 0;
		opacity: 0;
	}
}
.singletemmembericon a {
	transform: translateX(-1000px);
}
.descriptionofTeam h1 {
	font-weight: normal;
	color: white;
	font-size: 16px;
	transform: translateX(-1000px);
}
.descriptionofTeam p {
	font-weight: normal;
	font-size: 14px;
	transform: translateX(-1000px);
}

.singleTemaMember:hover .descriptionofTeam {
	animation: reveilcontentabouttema 0.5s ease forwards;
}
.singleTemaMember:hover h1 {
	transform: translateX(0);
}
.singleTemaMember:hover a {
	transform: translateX(0);
}

.singleTemaMember:hover p {
	transform: translateX(0);
}

.singleTemaMember img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	/* filter: grayscale(1); */
}
.bluishimage {
	filter: hue-rotate(200deg) brightness(0.8) saturate(0.5);
}

.singletemmembericon {
	margin-top: 10px;
	display: flex;
	gap: 10px;
}
.singletemmembericon svg {
	width: 34px;
	height: 34px;
	color: #7db1ff;
	background: #1c3192;
	padding: 4px;
	border-radius: 4px;
}

.missionandVission {
	margin: 80px 0;
}

.conteinertmissionandvission {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 40px;
}

.mission {
	background: #121f5a;
	padding: 20px;
	border-radius: 6px;
}

@media screen and (max-width: 988px) {
	.topaboutpage {
		display: flex;
		flex-direction: column;
	}
}
