:root {
	--color-one: #1e6e72;
	--color-tow: #598c13;
	--color-three: #1e6e72;
	--color-white: white;
	--main-radius: 6px;
	--main-transition: 0.3s;
}
@font-face {
	font-family: 'PNU-Bold';
	src: url('./fonts/PNU-Bold.ttf');
}
@font-face {
	font-family: 'PNU-Regular';
	font-display: swap;
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/PNU-Regular.ttf');
}
@font-face {
	font-family: 'PNU-Medium';
	src: url('../fonts/PNU-Medium.ttf');
}
@font-face {
	font-family: 'PNU-Light';
	src: url('../fonts/PNU-Light.ttf');
}
body {
	font-family: "PNU-Regular", sans-serif !important;
	direction: rtl;
	overflow-x: hidden;
}
.my-spinner {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	inset: 0;
	background: #eee;
	z-index: 999999;
}
.spinner-container {
	width: 70px;
	text-align: center;
}
.spinner-container>div {
	width: 18px;
	height: 18px;
	background-color: #333;
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner-container .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}
.spinner-container .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
	}
	40% {
		-webkit-transform: scale(1);
	}
}
@keyframes sk-bouncedelay {
	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	40% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
a {
	text-decoration: none !important;
	color: inherit !important;
}
.title {
	color: var(--color-one);
	font-weight: 800;
	font-size: 46px;
	text-align: center;
}
.title-group h5 {
	color: var(--color-one);
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 23px;
}
.title-group h1 {
	font-size: 32px;
	font-weight: 800;
	color: #207074;
}
p {
	line-height: 1.8;
}
.custom-date {
	color: white;
	background: #598c13;
	font-size: 13px;
	font-weight: 700;
	right: 29px;
	bottom: 6px;
	padding: 6px 16px;
	border-radius: 34px;
}
.custom-btn {
	background-color: var(--color-one);
	padding: 18px 40px !important;
	font-weight: 700;
	color: white;
	border-radius: var(--main-radius);
	outline: none;
	border: none;
	transition: all var(--main-transition) ease-in-out;
	font-size: 16px;
}
.custom-btn:hover {
	opacity: 0.75;
}
.custom-input {
	margin-bottom: 33px;
	height: 47px;
	z-index: 20;
}
.message-input {
	height: max-content;
}
.custom-input input,
.message-input textarea {
	font-size: 17px;
	border: 1px solid #b2b2b2;
	border-radius: var(--main-radius);
	background-color: transparent;
	caret-color: var(--color-three);
	transition: all var(--main-transition) ease-in-out;
}
.custom-input:hover input,
.custom-input:hover textarea {
	border-color: var(--color-one);
}
.custom-input h5 {
	top: 50%;
	transform: translateY(-50%);
	right: 28px;
	font-size: 17px;
	color: #9f9f9f;
	font-weight: 700;
	transition: all var(--main-transition) ease-in-out;
	z-index: -1;
}
.message-input h5 {
	top: 20px;
	transform: unset;
}
.custom-input input:focus~h5,
.custom-input input:valid~h5,
.custom-input textarea:focus~h5,
.custom-input textarea:valid~h5 {
	color: var(--color-three);
	top: 0;
	background-color: white;
	font-size: 10px;
	z-index: 10;
}
.custom-input textarea:focus~h5,
.custom-input textarea:valid~h5 {
	top: -6px;
}
.page-info-bar {
	padding: 37px 0px;
	background-color: rgba(32, 112, 116, 0.04);
	height: fit-content;
}
.page-info-bar h1 {
	font-size: 24px;
	color: #207074;
	font-weight: 800;
}
.page-info-bar h4 {
	font-size: 17px;
	color: #207074;
	font-weight: 600;
}
.content-with-title {
	padding: 67px 0px;
}
.content-with-title .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.content-with-title p {
	color: #acacac;
	font-weight: 700;
	font-size: 18px;
	width: 80%;
	line-height: 2 !important;
}
.content-with-title .title-group h1 {
	font-size: 35px;
}
.content-with-title .title-group h5 {
	font-size: 18px;
}
.img-with-paragraph p {
	font-size: 16px;
	font-weight: 700;
	color: #acacac;
}
.details-section p {
	font-size: 15px;
	font-weight: 700;
	color: #a0a0a0;
}
.details-section .title h1 {
	color: var(--color-one);
	font-size: 21px;
	font-weight: 700;
}
.details-section .related-items .title-group h1 {
	font-size: 36px;
}
.details-section .related-items .item {
	transition: all var(--main-transition) ease-in-out;
}
.details-section .related-items .item:hover {
	transform: translateY(-10px);
}
.footer-imgs {
	text-align: end !important;
}
@media (max-width: 767px) {
	.vision-mission-goals .divier2 {
		position: absolute;
		width: 238.84px !important;
		bottom: 0;
		right: 10vw !important;
	}
	.vision-mission-goals .divier1 {
		position: absolute;
		width: 236px !important;
		height: unset !important;
	}
	.title-group h5 {
		font-size: 11px;
	}
	.title-group h1 {
		font-size: 28px;
	}
	.custom-btn {
		padding: 11px 29px !important;
	}
	.custom-input {
		margin-bottom: 18px;
	}
	.page-info-bar {
		padding: 23px 0px;
		background-color: var(--color-one);
		height: fit-content;
	}
	.page-info-bar h1 {
		font-size: 19px;
	}
	.page-info-bar h4 {
		font-size: 9px;
	}
	.text-wrapper-22 {
		text-align: center !important;
	}
	.footer-imgs {
		text-align: center !important;
	}
	.content-with-title p {
		font-size: 18px;
		width: 100%;
	}
	.content-with-title .title-group h1 {
		font-size: 27px;
	}
	.content-with-title .title-group h5 {
		font-size: 15px;
	}
}
@media (min-width: 768px) and (max-width: 1100px) {
	@media (orientation: portrait) {
		.details-section .related-items .title-group h1 {
			font-size: 29px;
		}
	}
	@media (orientation: landscape) {
		.details-section .image {
			margin: auto !important;
		}
		.title-group h1 {
			font-size: 36px;
		}
	}
}
/***********************
------------------------------------- Home Page ----------------------------------
***********************/
.navbar {
	background-color: transparent !important;
	top: 0;
	width: 100%;
	z-index: 100;
}
nav .dropdown button:hover,
nav .dropdown button:focus {
	background-color: transparent;
}
nav .navbar-nav .dropdown-toggle::after {
	content: "\f078";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	border: 0;
	font-size: 11px;
	position: relative;
	top: 1px;
}
nav .navbar-nav .dropdown-menu {
	border: 0;
	padding: 5px;
	border-radius: 0;
	border-bottom: 3px solid var(--color-one);
}
nav .navbar-nav .dropdown-menu .nav-link {
	font-size: 17px;
	border-radius: var(--main-radius);
	color: black !important;
}
nav .navbar-nav .dropdown-menu .nav-link:hover {
	background: transparent;
	color: var(--color-one) !important;
}
@media (min-width: 992px) {
	nav .navbar-nav .dropdown-menu {
		top: 120%;
		visibility: hidden;
		pointer-events: none;
		opacity: 0;
		display: block;
		margin: 0;
	}
	nav .navbar-nav .dropdown:not(.dropdown-submenu):hover>.dropdown-menu {
		top: 100%;
		pointer-events: all;
		visibility: visible;
		opacity: 1;
		transition: all 0.25s ease-in-out;
	}
}
.navbar-toggler,
.navbar-toggler:focus {
	box-shadow: none !important;
	outline: none !important;
	border: none !important;
	color: white !important;
	left: 10%;
}
.navbar .navbar-brand img {
	width: 150px !important;
	transition: all var(--main-transition) ease-in-out;
	margin-top: 4%;
}
.navbar .navbar-nav {
	width: max-content;
}
.navbar .nav-link {
	font-size: 17px;
	font-weight: 500;
	transition: all var(--main-transition) ease-in-out;
	color: white !important;
}
.navbar .nav-link:hover {
	color: var(--color-white) !important;
}
.navbar .active {
	color: white !important;
}
.navbar .active::after {
	color: white !important;
	padding: 0px 0px !important;
}
.navbar .dropdown-menu .nav-link.active {
	color: var(--color-one) !important;
	background-color: transparent !important;
	padding-left: var(--bs-navbar-nav-link-padding-x) !important;
	padding-right: var(--bs-navbar-nav-link-padding-x) !important;
}
.navbar .active:hover {
	color: white !important;
}
.navbar .lang {}
.navbar .lang a {
	/* border-radius: 100%;
	width: 40px;
	height: 40px;
	color: white !important;
	display: flex; */
	/* align-items: center;
	color: white;
	font-size: 17px; */
}
.navbar .lang a:hover {
	background-color: var(--color-one);
	color: white !important;
}
@media (max-width: 767px) {
	.navbar .navbar-brand img {
		width: 55%;
		margin-top: 0px !important;
	}
	.navbar .navbar-nav {
		width: 100%;
	}
	.navbar .nav-link {
		color: white !important;
		padding-bottom: 20px !important;
	}
	.navbar .active {
		background-color: transparent !important;
		padding-inline-start: 0 !important;
		border-radius: 0;
		color: var(--color-white) !important;
	}
	.navbar .active:hover {}
	.navbar .lang {
		margin-inline-start: 0;
	}
	.navbar .lang a {
		padding: 0 !important;
	}
	nav .navbar-nav .dropdown-toggle::after {
		transition: all var(--main-transition) ease-in-out;
		transform: rotate(90deg);
		top: 11.5px !important;
		left: 0;
		position: absolute;
	}
	.navbar .dropdown .dropdown-item {
		color: var(--color-one) !important;
		padding: 10px;
	}
	nav .navbar-nav .dropdown-toggle.show::after {
		transform: rotate(0) !important;
	}
	.offcanvas.show:not(.hiding),
	.offcanvas.showing {
			background-color:  var(--color-one) !important;
	}
	.offcanvas-title {
		color: black;
	}
	nav .navbar-nav .dropdown-menu {
		border: 0;
		padding: 5px 16px;
		box-shadow: none !important;
		background-color: transparent;
	}
}
@media (min-width: 768px) and (max-width: 1100px) {
	@media (orientation: portrait) {
		.navbar .navbar-brand img {
			width: 65%;
			margin-top: 0px !important;
		}
		.navbar .nav-link {
			color: white !important;
			padding-bottom: 20px !important;
		}
		.navbar .navbar-nav {
			width: max-content;
		}
		.navbar .active {
			background-color: transparent !important;
			padding-inline-start: 0 !important;
			border-radius: 0;
			color: var(--color-white) !important;
		}
		nav .navbar-nav .dropdown-toggle::after {
			transition: all var(--main-transition) ease-in-out;
			transform: rotate(90deg);
			top: 11.5px !important;
			left: 0;
			position: absolute;
		}
		.navbar .active:hover {}
		.navbar .dropdown-toggle {
			width: 100%;
			text-align: start;
		}
		.navbar .lang {
			margin-inline-start: 0;
		}
		.navbar .lang a {
			padding: 0 !important;
		}
		.navbar .dropdown .dropdown-item {
			color: var(--color-one) !important;
			padding: 10px;
		}
		nav .navbar-nav .dropdown-toggle::after {
			transition: all var(--main-transition) ease-in-out;
			transform: rotate(90deg);
		}
		nav .navbar-nav .dropdown-toggle.show::after {
			transform: rotate(0) !important;
		}
		.offcanvas.show:not(.hiding),
		.offcanvas.showing {
			background-color:  var(--color-one) !important;
		}
		.offcanvas-title {
			color: black;
		}
		nav .navbar-nav .dropdown-menu {
			border: 0;
			padding: 5px 16px;
			box-shadow: none !important;
			background-color: transparent;
		}
	}
	@media (orientation: landscape) {
		.navbar .nav-link {
			font-size: 15px !important;
		}
		.navbar .navbar-nav {
			width: max-content;
		}
		.navbar .dropdown .dropdown-item {
			color: var(--color-one) !important;
			padding: 10px;
		}
	}
}
.intro .intro-img {
	width: 530px;
}
.intro h1 {
	color: var(--color-white);
	font-size: 40px;
	font-weight: 800;
}
.intro p {
	font-weight: 500;
	color: white !important;
	font-size: 18px;
}
.intro .intro-decoration {
	display: inline-flex;
}
.intro .intro-decoration img {
	height: 120px;
	width: 50%;
}
@media (max-width: 767px) {
	.intro .intro-img {
		width: 100%;
	}
	.intro h1 {
		font-size: 32px;
		text-align: center;
	}
	.ceo-message h2 {
		text-align: center;
	}
	.ceo-message p {
		width: 100% !important;
	}
	.intro p {
		text-align: center;
	}
	.intro .intro-decoration img {
		width: 100%;
		height: unset;
	}
}
@media (min-width: 768px) and (max-width: 1023px) {
	.intro {
		height: fit-content;
	}
	.intro .intro-decoration {
		position: unset !important;
	}
	.intro .intro-decoration img {
		height: unset;
	}
}
.CEO-msg {
	background: url("../images/CEO's\ Message\ section\ background.png");
	background-blend-mode: luminosity;
	background-size: cover;
	background-repeat: no-repeat;
}
.CEO-msg .container {
	padding: 100px 0px;
}
.CEO-msg p {
	font-weight: 700;
}
.CEO-msg .CEO-name {
	text-align: left;
	color: var(--color-one);
	font-size: 20px;
	font-weight: 600;
}
.ourWork .project {
	border-radius: var(--main-radius);
	overflow: hidden;
	position: relative;
}
.ourWork .project .overlay {
	position: absolute;
	background: rgba(255, 255, 255);
	opacity: 0.5;
	border-radius: var(--main-radius);
	inset: 10%;
	padding: 10px 23px;
	display: flex;
	flex-direction: column;
	justify-content: end;
	transition: all var(--main-transition) ease-in-out;
}
.ourWork .project:hover .overlay {
	background: rgba(255, 255, 255);
	opacity: 0.75;
}
.project-info h6 {
	font-size: 11px;
	font-weight: 400;
	color: black;
}
.project-info h6 span {
	color: var(--color-tow);
	font-weight: 700;
	margin-inline-start: 5px;
}
.project-info h4 {
	font-size: 17px;
	font-weight: 700;
	color: black;
}
@media (max-width: 767px) {
	.ourWork .project {
		margin-bottom: 20px;
	}
}
@media (min-width: 768px) and (max-width: 1023px) {
	.project-info h6 {
		font-size: 10px;
	}
	.project-info h4 {
		font-size: 17px;
	}
}
.latestNews {
	height: unset;
}
.latestNews .item {
	transform: translateY(0);
	transition: all var(--main-transition) ease-in-out;
}
.latestNews .item:hover {
	transform: translateY(-10px);
}
.latestNews .item .item-info p {
	font-weight: 700;
	font-size: 15px;
}
.latestNews .item .item-info h4 {
	text-decoration: none;
	color: black;
	font-size: 17px;
	font-weight: 700;
}
@media (max-width: 767px) {
	.latestNews {
		height: fit-content;
	}
	.latestNews .item {
		margin-bottom: 20px;
	}
	.latestNews .custom-date {
		font-size: 8px;
		right: 8px;
	}
}
@media (min-width: 768px) and (max-width: 1100px) {
	@media (orientation: portrait) {
		.latestNews .custom-date {
			font-size: 8px;
			right: 8px;
		}
	}
	@media (orientation: landscape) {
		.latestNews .custom-date {
			font-size: 15px;
			right: 10px;
		}
	}
}
.contactUs .subtitle,
.contactUs .title {
	color: var(--color-three);
	font-weight: 700;
}
footer {
	height: unset;
	background: linear-gradient(90deg, #207074 0%, #0A9CA3 100%);
	width: 95%;
	margin: auto;
	margin-top: 20px;
	border-radius: 20px;
	margin-bottom: 20px;
}
footer h1 {
	font-size: 24px;
	font-weight: 700;
	color: white;
}
footer p {
	font-size: 18px;
	color: white;
}
footer h5 {
	font-size: 17px;
	font-weight: 400;
	color: white;
}
footer .custom-input input {
	color: white;
	caret-color: white;
}
footer .custom-input h5 {
	color: white;
	font-size: 15px;
}
footer .custom-btn {
	background-color: white;
	padding: 6px 24px !important;
	color: var(--color-three);
	font-size: 11px;
	min-width: unset;
}
footer .custom-input input:focus~h5,
footer .custom-input input:valid~h5 {
	font-size: 9px;
	background-color: var(--color-three);
	color: white;
}
footer .social {
	display: flex;
	padding: 0;
}
footer .social li {
	list-style: none;
	font-size: 18px;
	color: white;
	width: 41px;
	height: 41px;
	border: 1px solid #ececec;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-inline-end: 18px;
}
footer .social li:hover i {
	animation: headShake;
	animation-duration: 1s;
}
footer .rights-reserved {
	font-size: 15px;
	font-weight: 400;
}
@media (max-width: 767px) {
	footer .social {
		margin: 30px auto;
	}
}
@media (min-width: 768px) and (max-width: 1023px) {
	footer h1 {
		font-size: 20px;
	}
	footer p {
		font-size: 11px;
		text-align: center !important;
	}
	footer h5 {
		font-size: 8px;
	}
	footer .custom-input h5 {
		color: white;
		font-size: 10px;
		right: 18px;
	}
}
/***********************
------------------------------------- vision Mission Objectives Page ----------------------------------
***********************/
.visionMissionObjectives .container {
	padding: 150px 0px;
}
.visionMissionObjectives .header h1 {
	font-size: 35px;
	font-weight: 700;
	color: var(--color-three);
}
.visionMissionObjectives p {
	font-size: 16px;
	font-weight: 700;
	color: #6d6d6d;
}
.visionMissionObjectives .header img {
	width: 40px;
}
@media (max-width: 767px) {
	.visionMissionObjectives .container {
		padding: 100px 0px;
	}
	.visionMissionObjectives .header h1 {
		font-size: 25px;
	}
	.visionMissionObjectives p {
		font-size: 13px;
	}
}
@media (min-width: 768px) and (max-width: 1100px) {
	@media (orientation: portrait) {
		.visionMissionObjectives p {
			font-size: 17px;
		}
	}
	@media (orientation: landscape) {
		.visionMissionObjectives .header h1 {
			font-size: 25px;
		}
		.visionMissionObjectives p {
			font-size: 15px;
		}
	}
}
/***********************
------------------------------------- Subsidiary Companies page ----------------------------------
***********************/
.company-list .title-group h5 {
	font-size: 16px !important;
}
.company-list .title-group h1 {
	font-size: 24px !important;
}
@media (max-width: 767px) {
	.subCompanies .title-group {
		margin-top: 0px !important;
		margin-bottom: 37px !important;
	}
	.company-list .company-img {
		margin-bottom: 0 !important;
	}
	.company-list .title-group h1 {
		font-size: 18px !important;
	}
}
@media (min-width: 768px) and (max-width: 1100px) {
	@media (orientation: portrait) {
		.title-group h1 {
			font-size: 33px;
		}
		.title-group h5 {
			font-size: 15px;
			margin-bottom: 11px;
		}
		.company-list .title-group h1 {
			font-size: 18px !important;
		}
		.company-list .title-group h5 {
			font-size: 15px !important;
		}
		.company-list .company-img {
			margin-bottom: 0 !important;
			width: 69% !important;
		}
	}
	@media (orientation: landscape) {}
}
/***********************
------------------------------------ Noura for driving page ----------------------------------
***********************/
.nouraForDriving {
	padding: 150px 0px !important;
}
.nouraForDriving .company-logo img {
	width: 80%;
}
.nouraForDriving .company-detail h1 {
	color: #6d6d6d;
	font-weight: 700;
	font-size: 42px;
}
.nouraForDriving .company-detail p {
	font-size: 17px;
	font-weight: 700;
}
.nouraForDriving .company-detail .custom-btn {
	font-size: 18px;
	padding: 18px 24px !important;
	margin-top: 20px;
}
@media (max-width: 767px) {
	.nouraForDriving {
		padding: 75px 0px !important;
	}
	.nouraForDriving .company-logo img {
		width: 100%;
	}
	.nouraForDriving .company-detail h1 {
		font-size: 30px;
	}
	.nouraForDriving .company-detail p {
		font-size: 15px;
	}
	.nouraForDriving .company-detail .custom-btn {
		font-size: 15px;
		margin-top: 10px;
	}
}
@media (min-width: 768px) and (max-width: 1100px) {
	@media (orientation: portrait) {
		.nouraForDriving {
			padding: 75px 0px !important;
		}
		.nouraForDriving .company-logo img {
			width: 100%;
		}
		.nouraForDriving .company-detail h1 {
			font-size: 30px;
		}
		.nouraForDriving .company-detail p {
			font-size: 15px;
		}
		.nouraForDriving .company-detail .custom-btn {
			font-size: 15px;
			margin-top: 10px;
		}
	}
	@media (orientation: landscape) {
		.nouraForDriving {
			padding: 75px 0px !important;
		}
		.nouraForDriving .company-detail h1 {
			font-size: 35px;
		}
		.nouraForDriving .company-detail p {
			font-size: 15px;
		}
	}
}
/***********************
------------------------------------- General Secretariat of the University page ----------------------------------
***********************/
.secretariatUniversity .img-with-paragraph h1 {
	font-size: 28px;
	color: #6d6d6d;
}
@media (min-width: 768px) and (max-width: 1100px) {
	@media (orientation: portrait) {
		.secretariatUniversity .img-with-paragraph h1 {
			font-size: 17px;
		}
	}
	@media (orientation: landscape) {
		.secretariatUniversity .img-with-paragraph h1 {
			font-size: 24px;
		}
	}
}
/***********************
------------------------------------- Board of company page ----------------------------------
***********************/
.boardOfCompany .board img {
	border-radius: var(--main-radius);
}
.boardOfCompany .board p {
	font-size: 15px;
	font-weight: 400;
	width: 100%;
	line-height: 1.2;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
/***********************
------------------------------------- Annual Reports page ----------------------------------
***********************/
.reports .report {
	background: #ffffff;
	box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.09);
	border-radius: var(--main-radius);
	padding: 25px 30px;
	transition: all var(--main-transition) ease-in-out;
}
.reports .report:hover {
	transform: translateY(-10px);
}
.reports .report h4 {
	font-size: 18px;
	font-weight: 700;
}
.reports .report h5 {
	font-size: 17px;
	font-weight: 400px;
	color: #b1b1b1;
}
@media (max-width: 767px) {
	.reports .report {
		padding: 25px 0px;
	}
}
@media (min-width: 768px) and (max-width: 1100px) {
	@media (orientation: portrait) {}
	@media (orientation: landscape) {
		.reports .report h4 {
			font-size: 16px;
		}
		.reports .report h5 {
			font-size: 15px;
		}
	}
}
/***********************
------------------------------------- Contact page ----------------------------------
***********************/
.contact-section .phone,
.contact-section .email {
	direction: ltr;
	font-size: 16px;
	font-weight: 700;
	color: #6d6d6d;
	transition: all var(--main-transition) ease-in-out;
}
.contact-section .phone:hover,
.contact-section .email:hover {
	color: var(--color-tow);
}
.contact-section .custom-btn {
	padding: 10px 40px !important;
}
@media (max-width: 767px) {
	.contact-section form {
		width: 100% !important;
	}
}
@media (min-width: 768px) and (max-width: 1100px) {
	@media (orientation: portrait) {
		.contact-section form {
			width: 75% !important;
		}
	}
	@media (orientation: landscape) {}
}
/***********************
------------------------------------- Project page ----------------------------------
***********************/
.details-section .project-info h6 {
	font-size: 13px !important;
}
.details-section .project-info h4 {
	font-size: 21px !important;
}
.details-section .project-point {
	background: #f8f8f8;
	border-radius: var(--main-radius);
}
.details-section .project-point h5 {
	font-size: 16px;
}
@media (max-width: 767px) {
	.vision-mission-goals .divier2 {
		position: absolute;
		width: 324.84px;
		bottom: 0;
		right: 10vw;
	}
}
@media (min-width: 768px) and (max-width: 1100px) {
	@media (orientation: portrait) {
		.details-section .project-info h4 {
			font-size: 17px !important;
		}
		.details-section .project-info h6 {
			font-size: 15px !important;
		}
	}
	@media (orientation: landscape) {}
}
/***********************
------------------------------------- News Details page ----------------------------------
***********************/
.newsDetails p {
	font-size: 18px;
}
@media (max-width: 767px) {}
@media (min-width: 768px) and (max-width: 1100px) {
	@media (orientation: portrait) {
		.newsDetails .item-info h5 {
			font-size: 15px !important;
		}
	}
	@media (orientation: landscape) {}
}
.custom-btn-btn {
	color: #fff !important;
}
.landing-page_group {
	width: 100%;
	height: 911px;
	top: 0;
	background: url("./../images/Frame56.png");
	gap: var(--spacing-global-spacing-4xl);
	background-blend-mode: luminosity;
	background-size: cover;
	background-repeat: no-repeat;
}
.landing-page_image {
	position: absolute;
	width: 100%;
	height: 911px;
	top: 0;
	object-fit: cover;
}
.container.position-relative.h-100 {
	height: 197px;
	top: 458px !important;
}
.overlap-2 {
	position: relative;
	height: unset;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
	border-radius: 50px;
	box-shadow: 5.21px 4px 4px #00000040;
	background: linear-gradient(180deg, rgba(32, 112, 116, 1) 0%, rgba(10, 156, 163, 1) 100%);
	text-align: center;
	margin: auto;
}
.overlap-3 {
	position: absolute;
	width: 100%;
	height: 537px;
	top: 0;
	left: 0;
}
.rectangle-2 {
	position: absolute;
	width: 1349px;
	height: 537px;
	top: 0;
	left: 0;
	border-radius: 50px;
	box-shadow: 5.21px 4px 4px #00000040;
	background: linear-gradient(180deg,
			rgba(32, 112, 116, 1) 0%,
			rgba(10, 156, 163, 1) 100%);
}
.tempimagejetvyk {
	width: 221px;
	height: 222px;
	top: 368px;
	left: 7px;
	border-radius: 50%;
}
.ellipse-2 {
	position: absolute;
	width: 222px;
	height: 230px;
	top: 359px;
	left: 17px;
	background-color: #ffffff;
	border-radius: 118px;
	box-shadow: 5.21px 5.21px 31.27px 5.21px #00000014, 5.21px 5.21px 31.27px 5.21px #00000014, 5.21px 5.21px 31.27px 5.21px #00000014, 5.21px 5.21px 31.27px 5.21px #00000014;
}
.ellipse {
	position: absolute;
	width: 250px;
	height: 250px;
	top: 349px;
	left: 0;
	background-color: #0aa4b7;
	border-radius: 125px;
	box-shadow: 5.21px 5.21px 31.27px 5.21px #00000014, 5.21px 5.21px 31.27px 5.21px #00000014;
}
.image-3 {
	position: absolute;
	width: 248px;
	height: 394px;
	top: 0;
	left: 0;
}
.image-2 {
	position: absolute;
	width: 168px;
	height: 394px;
	bottom: 0;
	right: 0;
}
.text-wrapper-11 {
	top: 66px;
	right: 4%;
	font-weight: 800;
	color: #ffffff;
	font-size: 28px;
	line-height: normal;
	letter-spacing: 0;
	text-align: start;
}
.text-wrapper-10 {
	top: 120px;
	right: 4%;
	font-weight: 400;
	color: #ffffff;
	line-height: 50px;
	letter-spacing: 0;
	width: 84%;
	text-align: start;
}
.text-wrapper-9 {
	position: absolute;
	height: 37px;
	bottom: 18px;
	left: 0;
	right: 0;
	font-weight: 800;
	color: #ffffff;
	line-height: normal;
	letter-spacing: 0;
	direction: rtl;
}
div#offcanvasNavbar {
	padding-top: 10px !important;
}
.lang-icon {
	width: 32px;
	height: 32px;
	margin-left: 11px;
	margin-right: 11px;
}
.overlap-9 {
	position: absolute;
	width: 34px;
	height: 116px;
	left: 0;
}
.group-6 {
	position: absolute;
	width: 34px;
	height: 116px;
	z-index: 9999;
	left: 0;
}
.component {
	width: 34px;
	height: 27px;
	top: 89px;
	position: absolute;
	left: 0;
}
.component-2 {
	width: 33px;
	height: 32px;
	top: 0;
	position: absolute;
	left: 0;
}
.component-3 {
	position: absolute;
	width: 33px;
	height: 32px;
	top: 45px;
	left: 0;
}
.sub-footer {
	background: url("../images/divider.png");
}
.decoration {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	pointer-events: none;
	z-index: 1;
}
.overlap-8 {
	position: relative;
}
.untitled-design-2 {
	width: 151px;
}
.image-11 {
	width: 145px;
}
.registerd-on-DGA {
	left: 25px;
	bottom: 0px;
}
.text-wrapper-22 {
	bottom: 0;
	font-weight: 400;
	color: #ffffff;
	font-size: 18px;
	text-align: end;
	line-height: normal;
	letter-spacing: 0;
}
.footer-group {
	flex-direction: column;
	align-items: flex-end;
	gap: var(--spacing-spacing-md);
	top: 33px;
	left: 893px;
	color: white;
	line-height: 2rem;
}
.group-label {
	flex-direction: column;
	align-items: flex-end;
	padding: 0px 0px var(--spacing-spacing-md) 0px;
	position: relative;
	align-self: stretch;
	width: 100%;
	flex: 0 0 auto;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-color: var(--themes-border-border-oncolor-transparent-30);
}
.ceo-message {
	background: linear-gradient(90deg, rgba(32, 112, 116, 1) 0%, rgba(10, 156, 163, 1) 100%);
	color: #fff;
	border-radius: 20px;
	padding: 2rem;
	position: relative;
	max-width: 98%;
	margin: auto;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	animation: fadeInUp 1s ease forwards;
	opacity: 0;
}
.ceo-message h2 {
	font-size: 28px;
	margin-bottom: 1rem;
	animation: fadeIn 1.5s ease forwards;
	opacity: 0;
	animation-delay: 0.5s;
	margin-top: 37.42px;
	font-weight: 800;
}
.ceo-message p {
	font-size: 24px;
	line-height: 50px;
	margin-top: 50px;
	animation: fadeIn 1.5s ease forwards;
	opacity: 0;
	animation-delay: 0.8s;
	width: 90%;
}
.ceo-message .ceo-name {
	font-weight: bold;
	font-size: 1.2rem;
	animation: fadeIn 1.5s ease forwards;
	opacity: 0;
	animation-delay: 1.1s;
	text-align: center;
	margin-bottom: 48px;
}
.ceo-photo {
	position: absolute;
	bottom: -100px;
	left: -21px;
	border-radius: 50%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: zoomIn 1s ease forwards;
	opacity: 0;
	animation-delay: 1.4s;
}
.ceo-photo img {
	width: 250px;
	height: 250px;
	object-fit: cover;
}
@media (max-width: 600px) {
	.ceo-message {
		padding: 1.5rem;
	}
	.ceo-photo {
		bottom: -35px;
		left: -16px;
	}
	.ceo-photo img {
		width: 142px;
		height: 142px;
		object-fit: cover;
	}
}
@keyframes fadeInUp {
	from {
		transform: translateY(20px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes zoomIn {
	from {
		transform: scale(0.5);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}
.media-center {
	background: #ffffff;
	text-align: center;
	margin: auto;
}
.section-header h2 {
	font-size: 30px;
	color: #207074;
	margin-bottom: 8px;
	font-weight: bold;
	text-align: start;
	margin-right: 34px;
	line-height: 50px;
	margin-left: 34px;
}
.section-header p {
	color: #147575;
	margin-bottom: 32px;
	font-size: 24px;
	text-align: start;
	margin-right: 34px;
	line-height: 24px;
	font-weight: normal;
	margin-left: 34px;
}
.news-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	align-items: stretch;
}
.card {
	background: #207074;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease;
}
.card:hover {
	transform: translateY(-5px);
}
.card img {
	width: 100%;
	height: 220px;
	border-radius: 16px;
	object-fit: contain;
}
.card-content {
	padding: 20px 10px;
	background-size: cover;
	color: white;
	padding-left: 5px;
	background: #207074 url('/uploads/pages/news-divider.png') no-repeat left bottom;
	padding-bottom: 0;
}
.card-content h3 {
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: bold;
	text-align: start;
	margin-top: 20px;
}
.card-content p {
	font-size: 16px;
	line-height: 24px;
	text-align: start;
	margin-top: 22px;
	font-weight: 400;
	margin-bottom: 79px;
}
.vision-mission-goals {
	background: #207074;
	padding: 50px 30px;
	border-radius: 20px;
	margin: 120px auto;
	max-width: 80%;
	position: relative;
	margin-bottom: 40px;
}
.container-goals {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
}
.cardg-section {
	background: #ffffff;
	border-radius: 18px;
	padding: 30px 20px;
	text-align: center;
	flex: 1 1 300px;
	position: relative;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.main-card {
	transform: translateY(-82px);
	z-index: 2;
}
.icon-wrapper {
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: -46px;
	right: -83px;
	transform: translateX(-50%);
	padding: 10px;
}
.icon-wrapper img {
	width: 74px;
	height: 74px;
	object-fit: contain;
}
.cardg-section h3 {
	color: #207074;
	margin-top: 30px;
	margin-bottom: 20px;
	font-size: 22px;
	font-weight: 900;
}
.cardg-section {
	p,
	ul {
		color: #207074;
		font-size: 15px;
		line-height: 1.8;
		text-align: start;
		font-weight: 500;
	}
}
.cardg-section {
	ul {
		list-style: none;
		padding: 0;
		text-align: right;
	}
	ul li::before {
		content: "• ";
		color: #088e8e;
		font-weight: bold;
	}
}
@media (max-width: 768px) {
	.main-card {
		transform: none;
	}
	.icon-desktop {
		display: none !important;
	}
	.icon-mobile {
		display: inline !important;
	}
	.group-6 {
		margin-top: 30px;
	}
}
img.leading-icon-2 {
	width: 32px;
	margin: 8px 4px 0 0;
}
.sub-header {
	background-image: url('/uploads/pages/Hero-Section.png');
	background-size: cover;
	background-position: center;
	height: 200px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	direction: rtl;
	color: white;
}
.sub-overlay {
	background-color: rgba(217, 217, 217, 0.3);
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sub-header-content {
	text-align: center;
}
.sub-header-log {
	width: 327px;
	margin-bottom: 10px;
}
.visionClass {
	background-color: white;
	position: relative;
	overflow: hidden;
}
.visionClass .title {
	font-size: 24px;
	color: #0e4f4f;
	font-weight: bold;
}
.visionClass .subtitle {
	color: #888;
	margin-bottom: 50px;
}
.visionClass .timeline-line {
	height: 20px;
	background-color: #0e736f;
	width: 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 0;
}
.visionClass .cards {
	display: flex;
	justify-content: center;
	gap: 40px;
	position: relative;
	z-index: 1;
	flex-wrap: wrap;
}
.visionClass .card {
	background-color: white;
	box-shadow: 3px 2px 15px 3px rgba(0, 0, 0, 0.1);
	width: 300px;
	padding: 25px 20px;
	position: relative;
	overflow: inherit !important;
	border-color: transparent;
}
.visionClass .card .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: -19px;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
	align-items: center;
	overflow: inherit;
}
.visionClass .card .icon img {
	width: 74px;
	height: 74px;
}
.visionClass .card h3 {
	color: #207074;
	margin-bottom: 33px;
	text-align: center;
	padding-top: 48px;
	font-size: 24px;
	font-weight: 800;
}
.visionClass .card p,
.visionClass .card ul {
	font-size: 17px;
	line-height: 1.8;
	text-align: right;
	color: #207074;
	margin: 0;
	font-weight: 500;
}
.visionClass .card ul {
	padding-right: 20px;
	list-style: disc;
}
.visionClass .card ul li {
	margin-bottom: 10px;
}
.visionClass .objectives {
	transform: translateY(40px);
}
.visionClass .vision {
	transform: translateY(0);
}
.visionClass .mission {
	transform: translateY(40px);
}
.visionClass .header {
	background-image: url('images/header-bg.png');
	background-size: cover;
	background-position: center;
	height: 200px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	direction: rtl;
	color: white;
}
.visionClass .overlay {
	background-color: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.partners-container {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}
.partner-card {
	background-color: white;
	border: 1px solid #ccc;
	border-radius: 16px;
	padding: 20px;
	width: 200px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}
.partner-card:hover {
	transform: scale(1.05);
}
.partner-card img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.vision-mission-goals .divier1 {
	position: absolute;
	width: 248px;
	height: 97%;
	top: 0;
	left: 0;
}
.vision-mission-goals .divier2 {
	position: absolute;
	width: 390.84px;
	bottom: 0;
	right: 42%;
}
.animated-link {
	display: block;
}
.animated-link:hover {
	transform: translateY(-5px);
}
.icon-mobile {
	display: none;
}

.offcanvas-header {
    margin-top: 2rem;
}

.news-content * {
    font-family: 'PNU-Regular' !important; 
	color: #000000 ;
}