/*
 Theme Name: Twenty Nineteen Child
 Theme URI: https://www.element8.ae
 Author: Element8
 Author URI: https://www.element8.ae
 Template: twentynineteen
 Description: Child theme for Twenty Seventeen.
 Version: 0.15
 License: GNU General Public License v2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Tags:
 Text Domain: twentynineteen-child
 */

:root {
	--color-primary: #B5BF35;
	--color-primary-hover: #184377;
	--color-secondary: #184377;
	--color-secondary-hover: #000;
	--font-primary: "Noto Kufi Arabic", sans-serif;
	--transition-time: .35s;
	--container-width: 1300px;
}

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	text-rendering: optimizeLegibility;
}

body {
	color: #094278;
	color: #000;
	font-size: 15px;
	background: #ffffff;
	font-family: var(--font-primary);
	padding: 0;
	margin: 0;
}

a {
	color: #094278;
	text-decoration: none;
	-moz-transition: all var(--transition-time) ease;
	-o-transition: all var(--transition-time) ease;
	-webkit-transition: all var(--transition-time) ease;
	-ms-transition: all var(--transition-time) ease;
	transition: all var(--transition-time) ease;
}

a:hover {
	color: var(--color-primary);
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: 10px;
	color: #094278;
}

p {
	font-size: 16px;
	line-height: 24px;
}

p:only-child,
p:last-child {
	margin: 0;
}

h1 {
	font-size: 40px;
}

h2 {
	font-size: 32px;
}

h3 {
	font-size: 28px;
}

h4 {
	font-size: 22px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

ul,
ol {
	padding: 0;
	margin: 0;
	list-style: none;
}

small,
.small {
	font-size: 14px;
}

img {
	height: auto;
	max-width: 100%;
}

img,
svg {
	vertical-align: middle;
}

input,
select,
button,
textarea {
	cursor: pointer;
	font-family: var(--font-primary);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type=number] {
	-moz-appearance: textfield;
	appearance: textfield;
}

button,
[role=button] {
	cursor: pointer
}

:disabled {
	cursor: default
}

input,
button,
select,
optgroup,
textarea {
	margin: 0;
	line-height: inherit;
}

span {
	display: inline-block;
}

select {
	background-image: url(assets/images/down-arrow.png);
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 18px;
	-ms-progress-appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

:focus {
	outline: none;
}

textarea {
	min-height: 150px;
	resize: none;
}

.form-field {
	display: block;
	width: 100%;
	height: 44px;
	padding: 5px 15px;
	background-color: #fff;
	border: 1px solid #ced4da;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

iframe {
	border: 0;
}

.w-25 {
	width: 100% !important;
}

.w-50 {
	width: 100% !important;
}

.w-75 {
	width: 100% !important;
}

.w-100 {
	width: 100% !important;
}

/* -------------------------------------------------------------- */

.p-0 {
	padding: 0 !important;
}

.pl-0 {
	padding-left: 0 !important;
}

.pr-0 {
	padding-right: 0 !important;
}

.pb-0 {
	padding-bottom: 0 !important;
}

.pt-0 {
	padding-top: 0 !important;
}

/* -------------------------------------------------------------- */

.m-0 {
	margin: 0 !important;
}

.ml-0 {
	margin-left: 0 !important;
}

.mr-0 {
	margin-right: 0 !important;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.mt-0 {
	margin-top: 0 !important;
}

/* -------------------------------------------------------------- */

.button {
	display: inline-block;
	cursor: pointer;
	background-color: #d4d5d6;
	border: 1px solid transparent;
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 0 30px;
	height: 44px;
	line-height: 44px;
	font-size: 1rem;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
	-webkit-transition: all var(--transition-time) ease-in-out;
	transition: all var(--transition-time) ease-in-out;
}

.button+.button {
	margin-left: 10px;
}

.button-primary {
	color: #ffffff;
	background: var(--color-primary);
}

.button-primary:hover {
	background: var(--color-primary-hover);
}

/* -------------------------------------------------------------- */

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

/* -------------------------------------------------------------- */

.m-auto {
	margin-left: auto;
	margin-right: auto;
}

.ml-auto {
	margin-left: auto;
}

.mr-auto {
	margin-right: auto;
}

.container {
	width: 100%;
	margin: 0 auto;
	max-width: var(--container-width);
}

/* -------------------------------------------------------------- */

.text-primary {
	color: var(--color-primary);
}

.text-secondary {
	color: var(--color-secondary);
}

.bg-primary {
	background-color: var(--color-primary);
}

.bg-secondary {
	background-color: var(--color-secondary);
}

/* -------------------------------------------------------------- */

.zoom-effect {
	overflow: hidden;
}

.zoom-effect>a {
	display: block;
}

.zoom-effect img {
	position: relative;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all var(--transition-time) ease-in-out;
	transition: all var(--transition-time) ease-in-out;
	will-change: transform;
}

.zoom-effect:hover img {
	-webkit-transform: scale(1.12);
	transform: scale(1.12);
}

/* -------------------------------------------------------------- */

.owl-nav button {
	--size: 50px;
	--side: 80px;
	position: absolute;
	top: 50%;
	margin-top: -25px;
	width: var(--size);
	height: var(--size);
	display: flex;
	align-items: center;
	justify-content: center;
	background: #d8d8d8 !important;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: all var(--transition-time) ease-in-out;
	transition: all var(--transition-time) ease-in-out;
	will-change: transform;
}

.owl-nav button span {
	font-size: 30px;
	color: #fff;
}

.owl-nav button.owl-prev {
	left: var(--side);
}

.owl-nav button.owl-next {
	right: var(--side);
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
	background: var(--color-primary-hover) !important;
}

.owl-nav button.owl-prev:hover span,
.owl-nav button.owl-next:hover span {
	color: #fff;
}

/* -------------------------------------------------------------- */

.pagination {
	margin-top: 40px;
	display: flex;
	column-gap: 5px;
}

.pagination .page-numbers {
	--size: 47px;
	width: var(--size);
	height: var(--size);
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, .2);
	display: flex;
	font-weight: 500;
	align-items: center;
	justify-content: center
}

.page-numbers.current,
.pagination .active,
.pagination a:hover {
	color: #fff;
	background: var(--color-primary);
	border-color: var(--color-primary);
}

.pagination li+li {
	margin-left: 14px
}

/* -------------------------------------------------------------- */

.search-pannel {
	--search-height: 40px;
	position: absolute;
	height: var(--search-height);
	top: -5px;
	width: 200px;
	display: none;
	border-radius: 30px;
	overflow: hidden;
	left: calc(100% + -9px);
	z-index: 99;
	display: none;
}

.search-expand {
	width: 100%;
	color: #000;
	font-weight: 400;
	z-index: 999;
	padding: 0 5% 0 20px;
	background: #fff;
	border: none;
	font-size: 14px;
	height: var(--search-height);
}

.search-btn {
	cursor: pointer;
	margin-right: 20px;
}

/* -------------------------------------------------------------- */

.contact-map {
	min-height: 600px;
}

.wpcf7-form-control-wrap {
	width: 100%;
}

.wpcf7-not-valid-tip {
	font-size: 12px;
	margin-top: 5px;
	text-align: left;
}

.wpcf7 form .wpcf7-response-output {
	color: #fff;
	font-size: 12px;
	text-align: center;
}

.wpcf7 form.invalid .wpcf7-response-output {
	background: #dc3232;
	border-color: #dc3232;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450;
	background-color: #46b450;
}

/* -------------------------------------------------------------- */

.default-page {
	padding: 100px 0;
}

.default-page ol:not(.pagination),
.default-page ul:not(.pagination) {
	padding-left: 28px;
}

.default-page ol:not(:last-child),
.default-page ul:not(:last-child) {
	margin: 0 0 20px 0;
}

/* -------------------------------------------------------------- */

.error404 header,
.search-results header,
.search-no-results header {
	background: #e1e0e0;
}

.error-404,
.search-page-inner,
.search-noresult-inner {
	text-align: left;
	padding: 120px 120px;
}

.error-404 h1,
.search-page h1,
.search-noresult h1 {
	font-size: 30px;
}

.error-404 h1 {
	margin-bottom: 15px;
}

.error-404 h3 {
	margin: 40px 0 25px 0;
}

.error-404 h4 {
	margin-bottom: 15px;
}

.error-404 ul li {
	font-size: 15px;
	margin-bottom: 0;
}

.error-404 ul li+li {
	margin-top: 10px;
}

.error-404 .button {
	margin-top: 30px;
}

/* -------------------------------------------------------------- */

.search-page ul {
	padding: 0;
	margin: 40px 0 0 0;
	list-style: none;
}

.search-page li {
	border: 1px solid #ddd;
}

.search-page li+li {
	margin-top: 20px;
}

.search-page li a {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.search-page .image {
	width: 30%;
}

.search-page .content {
	width: 70%;
	padding: 20px 30px;
}

/* -------------------------------------------------------------- */

.search-no-results .search-form {
	display: flex;
	margin-top: 20px;
	max-width: 380px;
	width: 100%;
}

.search-no-results .search-form label {
	width: 100%;
}

.search-no-results .search-field {
	width: 100%;
	padding-left: 15px;
	border: 1px solid #999;
}

.search-no-results .search-field,
.search-no-results .search-submit {
	height: 40px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

.search-no-results .search-submit {
	border: none;
	padding: 0 20px;
	color: #ffffff;
	font-weight: bold;
	margin-left: 5px;
	background: var(--color-primary);
}

.search-no-results .search-submit:hover {
	background: var(--color-primary-hover)
}

/* -------------------------------------------------------------- */

.sub-banner {
	padding: 0;
	background: #f1f1f1;
	background-size: cover;
	background-position: center center;
	display: flex;
	align-items: center;
}

.sub-banner h1 {
	font-size: 60px;
	line-height: 60px;
	max-width: 1000px;
	font-family: "Noto Kufi Ara bic", sans-serif; font-weight: 700;
	text-transform: uppercase;
	color: #fff;
}

/* -------------------------------------------------------------- */

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 0px 0 0 0;
	padding: 0;
	list-style: none;
}

.breadcrumbs li+li {
	margin-left: 30px;
}

.breadcrumbs a {
	color: #fff;
	font-size: 21px;
	position: relative;
	text-transform: capitalize;
}

.breadcrumbs a:hover,
.breadcrumbs a.active {
	color: var(--color-primary);
}

.breadcrumbs a::after {
	content: "";
	width: 8px;
	height: 11px;
	position: absolute;
	transform: translate(10px, 5px);
	background: url(assets/images/arrow-right.png) no-repeat;
}

/* --------------------------------reset end------------------------------------- */

.header {
	width: 100%;
	padding: 0px 0;
	height: 60px;
	position: fixed;
	top: 0;
	z-index: 999;
	background: #184377;
	display: flex;
	align-items: center;
}

.header .container {
	display: flex;
	max-width: 1500px;
	flex-wrap: wrap;
	align-items: center;
}

.ico-search {
	color: #fff;
}

.site-logo {
	position: absolute;
	top: 0px;
}



.launguge-switch {
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	margin-right: 25px;
	position: relative;
	top: -3px;
}

.header .ml-auto {
	margin-left: 0;
	margin-right: auto;
}

/* ------------------------------------------------------------ */

.menu-ul {
	display: flex;
	flex-wrap: wrap;
	position: relative;
}


.menu-ul a {
	text-transform: capitalize;
	font-weight: 400;
	color: #fff;
	line-height: 60px;
}

.menu-ul li+li {
	margin-right: 30px;
}

.menu-ul a:hover,
.current_page_item>a,
.current-menu-item>a {
	color: var(--color-primary);
}

.mob-menu-icn {
	width: 10px;
	height: 7px;
	background: url(assets/images/menu-arrow-down.png) no-repeat;
	background-size: cover;
	margin-left: 5px;
	transition: transform .35s ease-in-out;
}

/* ------------------------------------------------------------ */

.sub-menu {
	width: 170px;
	background: #fff;
	padding: 15px;
	border: 1px solid #ddd;
	transform: translateY(20px);
	transition: opacity .35s ease-out, visibility.35s ease-out, top .35s ease-out, transform .35s ease-in-out;
}

.sub-menu li+li {
	margin: 10px 0 0 0;
}

.header li:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(10px);
}

/* ------------------------------------------------------------ */

.menu-icon {
	width: 40px;
	height: 24px;
	z-index: 9;
	position: relative;
	cursor: pointer;
	display: none;
	margin-right: auto;
	-webkit-transform: rotate(0);
	transform: rotate(0);
	-webkit-transition: all var(--transition-time) ease-in-out;
	transition: all var(--transition-time) ease-in-out;
}

.menu-icon span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #fff;
	border-radius: 4px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0);
	transform: rotate(0);
	-webkit-transition: all var(--transition-time) ease-in-out;
	transition: all var(--transition-time) ease-in-out;
}

.menu-icon span:nth-child(1) {
	top: 0;
}

.menu-icon span:nth-child(2),
.menu-icon span:nth-child(3) {
	top: 10px;
}

.menu-icon span:nth-child(4) {
	top: 20px;
}

.menu-icon.open span:nth-child(1) {
	top: 10px;
	width: 0;
	left: 50%;
}

.menu-icon.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.menu-icon.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.menu-icon.open span:nth-child(4) {
	top: 10px;
	width: 0;
	left: 50%;
}

.menu-icon.open span {
	background: var(--color-primary);
}


@media (max-width: 1000px) {
	.menu-icon {
		display: block;
	}

	.nav-bar {
		position: fixed;
		width: 100%;
		z-index: 8;
		background: #fff;
		top: 0;
		height: 0;
		left: 0;
		right: 0;
		overflow: hidden;
		align-items: center;
		display: flex;
		flex-wrap: wrap;
		-webkit-transition: all var(--transition-time) ease-in-out;
		transition: all var(--transition-time) ease-in-out;
	}

	.header .slow {
		height: 100%;
	}

	.menu-ul {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		margin: 0;
		flex-direction: column;
	}

	.menu-ul li {
		--space: 4%;
		padding: 0;
		margin: 0 var(--space);
	}

	.menu-ul li+li {
		margin-top: 15px;
		margin-left: var(--space);
	}

	.menu-ul a {
		font-size: 20px;
		color: #000;
		font-weight: bold;
	}

	.sub-menu {
		width: 100%;
		padding: 0;
		display: none;
		border: none;
		margin-bottom: 15px;
	}

	.sub-menu li {
		margin: 0;
	}

	.sub-menu li a {
		font-size: 14px;
	}

	.sub-menu li+li {
		margin: 10px 0 0 0;
	}

	.mob-menu-icn {
		position: absolute;
		right: 0;
		top: 0;
	}

	.header li .mob-menu-icn.active {
		transform: scaleY(-1);
	}
}


/*footer*/

.footer {
	--hover: #B5BF35;
	padding: 115px 0 38px 0;
	background: #21457B;
	margin-top: -30px;
}

.footer .container {
	display: flex;
	flex-wrap: wrap;
}

.footer h4 {
	color: #f1f1f1;
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 40px 0;
}

.newsletter {
	width: 41.5%;
}

.newsletter_form {
	display: flex;
	flex-wrap: wrap;
	background: #ffffff;
}

.newsletter_form,
.newsletter_form .submit,
.newsletter_form input {
	border: none;
	-moz-border-radius: 100px;
	-webkit-border-radius: 100px;
	border-radius: 100px;
}

.newsletter_form input {
	padding: 0 35px;
	height: 50px;
	font-size: 14px;
	font-weight: 300;
	background: #ffffff;
	width: calc(100% - 158px);
}

.newsletter_form .submit {
	width: 158px;
	text-align: center;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	background: #000000;
	transition: background .25s ease-in-out;
	margin-left: auto;
	position: relative;
	left: -2px;
}

.newsletter_form .submit:hover {
	background: var(--hover);
}

.footer_right_side {
	display: flex;
	flex-wrap: wrap;
	width: 50%;
	row-gap: 30px;
	margin-right: auto;
	justify-content: space-between;
}

.ouicklinks {
	max-width: 380px;
}

.ouicklinks ul {
	display: flex;
	flex-wrap: wrap;
	row-gap: 18px;
}

.ouicklinks li {
	width: 50%;
}

.ouicklinks a {
	color: #ffffff;
	font-size: 16px;
}

.social_icons ul {
	display: flex;
	align-items: center;
	align-items: center;
}

.social_icons li+li {
	margin-right: 16px;
}

.social_icons a {
	color: #ffffff;
	font-size: 26px;
}

.ouicklinks a:hover,
.copy_right a:hover,
.social_icons a:hover {
	color: var(--hover);
}

.copy_right {
	width: 100%;
	margin-top: 65px;
}

.copy_right p {
	margin: 0;
	font-size: 14px;
}

.copy_right a,
.copy_right p {
	color: #ffffff;
}

@media (max-width: 1040px) {
	.footer {
		padding: 70px 0 38px 0;
	}

	.footer h4 {
		margin: 0 0 30px 0;
	}

	.copy_right {
		margin-top: 50px;
	}
}

@media (max-width: 860px) {
	.newsletter {
		width: 100%;
	}

	.about-proposition-section {
		padding: 50px 0;
	}

	.footer .container {
		row-gap: 30px;
	}

	.footer_right_side {
		width: 100%;
	}

	.footer_right_side {
		justify-content: flex-start;
	}

	.copy_right {
		margin-top: 15px;
	}
}

@media (max-width: 767px) {
	.footer {
		padding: 50px 0 38px 0;
	}
}

@media (max-width: 480px) {
	.social_icons {
		width: 100%;
	}

	.ouicklinks ul {
		row-gap: 15px;
	}

	.newsletter_form .submit {
		width: 118px;
	}

	.newsletter_form input {
		width: calc(100% - 118px);
		padding: 0 10px 0 20px;
		height: 46px;
	}

	.ouicklinks {
		max-width: 100%;
	}

	.footer h4 {
		margin: 0 0 20px 0;
	}
}

/* --------------------------------header style------------------------------------- */

.main {
	--px-120: 120px;
	overflow: hidden;
}

.wpml-ls-statics-footer,
.otgs-development-site-front-end {
	display: none !important;
}

.pb-120 {
	padding-bottom: var(--px-120);
}

.pt-120 {
	padding-top: var(--px-120);
}

.px-120 {
	padding-top: var(--px-120);
	padding-bottom: var(--px-120);
}


.banner-title {
	text-transform: uppercase !important;
	font-family: "Noto Kufi Arabic", sans-serif;
}

.main-banner {
	width: 100%;
	height: auto;
	position: relative;
}

.banner-top-content {
	position: absolute;
	bottom: 60px;
	width: 100%;
	z-index: 99;
}

input:focus {
	outline: none !important;
}


.banner-top-content .item {
	background-color: #EEEEEE;
	-webkit-border-top-left-radius: 15px;
	-moz-border-top-left-radius: 15px;
	border-top-left-radius: 15px;
	-webkit-border-bottom-left-radius: 15px;
	-moz-border-bottom-left-radius: 15px;
	border-bottom-left-radius: 15px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.banner-top-content .item:hover {
	background-color: #21457B;
}

.banner-top-content .item a {
	display: flex;
	width: 100%;
}

.banner-top-image {
	width: 130px;
	/* height: 110px; */
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;

}

.banner-top-text {
	padding: 15px;
	width: calc(100% - 130px);
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	align-items: center;

}


.programes-main-inner ul li:hover::after {
	background: rgb(0, 0, 0);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.06486344537815125) 39%, rgb(181 191 53) 100%);
}

.banner-top-text p {
	font-size: 15px;
	line-height: 20px;
	color: #094278;
	margin-bottom: 0px;
	margin-top: 10px;
	font-weight: 300;
	min-height:40px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.banner-top-content .item:hover .banner-top-text p {
	color: #fff;
}

.banner-top-text span {
	font-size: 11px;
	color: #fff;
	display: inline-block;
	background-color: #DD5136;
	padding: 4px 12px;
	border-radius: 10px;
}

.our-imapact-section {
	width: 100%;
	height: auto;
	padding: 100px 0px;
	background-image: url(assets/images/impact-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-repeat: no-repeat;
}

.our-imapact-section .main-title {
	color: #fff;
}

.hme-about-section-inner {
	position: relative;
}

.main-title {
	font-size: 40px;
	line-height: 50px;
	color: #094278;
	text-transform: capitalize;
	/* font-family: "Noto Kufi Arabic", sans-serif; */
	font-family: var(--font-primary);
}

.our-impact-inner {
	width: 100%;
	margin-top: 40px;
}

.our-impact-inner ul {
	display: flex;
	flex-wrap: wrap;
	row-gap: 12px;
	margin-left: -0.5%;
	margin-right: -0.5%;
}

.our-impact-inner ul li {
	width: 32.33%;
	min-height: 320px;
	background-repeat: no-repeat;
	background-size: cover;
	background-repeat: no-repeat;
	-webkit-border-radius: 17px;
	-moz-border-radius: 17px;
	border-radius: 17px;
	overflow: hidden;
	padding: 35px;
	display: flex;
	align-items: flex-end;
	margin-left: 0.5%;
	margin-right: 0.5%;
	position: relative;
}

.our-impact-inner ul li::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	bottom: 0;
	z-index: 1;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	transition: all 0.2s linear;
	background: rgb(0, 0, 0);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.06486344537815125) 39%, rgba(0, 0, 0, 0.6166841736694677) 100%);
}

.banner-btn {
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.banner-btn:hover {
	background-color: #B5BF35 !important;
}

.our-impact-inner ul li:nth-child(2):after,
.our-impact-inner ul li:nth-child(4):after,
.our-impact-inner ul li:nth-child(6):after {
	display: none;
}

.our-impact-inner ul li:last-child {
	align-items: center;
}

.impact-box h3 {
	font-size: 90px;
	line-height: 70px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 10px;
}

.impact-box p {
	font-size: 20px;
	line-height: 25px;
	color: #fff;
	font-family: "Noto Kufi Arabic", sans-serif;
	font-weight: 500;
}

.impact-box {
	position: relative;
	z-index: 3;
	 margin-top: auto;
}

.impact-box h4 {
	font-family: "Noto Kufi Arabic", sans-serif;
	font-size: 27px;
	line-height: 35px;
	color: #fff;
	font-weight: 500;
}

.impact-box .green-btn {
	margin-top: 10px;
}

.impact-box .green-btn:empty {
	display: none;
}

.green-btn {
	height: 50px;
	line-height: 51px;
	display: inline-block;
	text-transform: uppercase;
	padding: 0px 30px;
	font-size: 14px;
	font-weight: 500;
	background-color: #B5BF35;
	color: #fff;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;

}

.green-btn:hover {
	background-color: #000;
	color: #fff;
}

.home-programe-section {
	width: 100%;
	padding: 100px 0px 60px;
}

.programes-main-inner {
	width: 100%;
	margin-top: 30px;
}

.programes-main-inner ul {
	display: flex;
	flex-wrap: wrap;
	height: auto;
	row-gap: 20px;
	margin-left: -1%;
	margin-right: -1%;
}

.programes-main-inner ul li {
	width: 31.3%;
	min-height: auto;
	margin-left: 1%;
	margin-right: 1%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	position: relative;
	overflow: hidden;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.programes-main-inner ul li:hover {
	background-size: 115%;
}


.programes-main-inner ul li::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	bottom: 0;
	z-index: 1;
	background: rgb(0, 0, 0);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.06486344537815125) 39%, rgba(0, 0, 0, 0.6166841736694677) 100%);
}

.programes-main-inner ul li img {
	width: 100%;
	height: auto;
	display: block;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.programes-main-inner ul li:hover img {
	-webkit-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}

.programes-main-inner ul li a {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 30px 45px;
	position: relative;
	z-index: 4;
	display: block;
	display: flex;
	align-items: flex-end;
	position: absolute;
	top: 0px;
	left: 0px;
	box-sizing: border-box;
}

.programes-main-inner ul li p {
	font-size: 21px;
	line-height: 28px;
	color: #fff;
	font-weight: 400;
}

.home-partners-section {
	width: 100%;
	padding: 30px 0px 60px;
}

.partner-slider-main {
	width: 100%;
	margin-top: 35px;
}

.partner-slider .item {
	border: 1px solid #CDCDCD;
	background-color: #fff;
	overflow: hidden;
	min-height: 148px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.partner-slider .item:hover {
	border-color: transparent;
}

.partner-slider .item:hover:after {
	content: "";
	width: 100%;
	height: 100%;
	border: 3px solid #09a5df;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	border-radius: 14px;
}

.partner-slider .item img {
	width: auto !important;
	height: 100px;
	object-fit: cover;
}

.collabration-main-section ul li img {
	width: auto !important;
	height: 100px;
	object-fit: cover;
}

.partner-slider .owl-nav button.owl-next,
.partner-slider .owl-nav button.owl-prev {
	width: 45px;
	height: 45px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	font-size: 0px;
}

.partner-slider .owl-nav button.owl-next span,
.partner-slider .owl-nav button.owl-prev span {
	display: none;
}

.partner-slider .owl-nav button.owl-prev {
	left: -70px;
	background-image: url(assets/images/arrow-left.png) !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
}

.partner-slider .owl-nav button.owl-next {
	right: -70px;
	background-image: url(assets/images/arrow-right.png) !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
}

.home-video-section {
	width: 100%;
	padding: 60px 0 130px;
	overflow: hidden;
}

.home-video-main {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.home-video-main a {
	display: block;
	overflow-y: hidden;

}

.home-video-main a div {
	overflow: hidden;
}

.home-video-main a::after {
	content: "";
	width: 77px;
	height: 77px;
	background-image: url(assets/images/play.png);
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
    left: 45%;
    top: 45%;
}

.home-video-main:hover img {
	transform: scale(1.1, 1.1);
}

.home-video-main img {
	width: 100%;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	transition: all 0.3s linear;

}

.home-news-publication-section {
	width: 100%;
	padding: 200px 0px 130px;
	background-color: #F4FBFE;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	overflow: hidden;
	position: relative;
}

.main-publication-slider {
	width: 100%;
	min-height: 200px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border: 1px solid #D0D0D0;
	-webkit-border-top-right-radius: 20px;
	-moz-border-top-right-radius: 20px;
	border-top-right-radius: 20px;
	-webkit-border-bottom-right-radius: 20px;
	-moz-border-bottom-right-radius: 20px;
	border-bottom-right-radius: 20px;

}


.main-publication-first-image {
	width: 32%;
	overflow: hidden;
	position: relative;
	z-index: 50;
}

.publication-first-content {
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 50px;
	z-index: 5;
	left: 0px;
	top: 0px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}

.publication-first-content span {
	font-size: 11px;
	line-height: 20px;
	font-weight: bold;
	padding: 0px 15px;
	display: inline-block;
	background-color: #607D13;
	color: #fff;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	z-index: 5;
}

.main-publication-first-image img {
	width: 100%;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	transition: all 0.3s linear;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: block;
}

.main-publication-first-image:hover img {
	-webkit-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}

.main-publication-slider-box {
	width: 62%;
	margin-right: 5.3%;
	 padding-right: 0;
	 padding-left: 10px;
	position: relative;
}

.main-publication-slider-box::after {
	content: "";
	background-color: #F4FBFE;
	width: 2000px;
	height: 100%;
	position: absolute;
	right: -2000px;
	top: 0;
	z-index: 9;
}

.media-slider-style .item img {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.media-slider-style .owl-stage-outer {
	overflow:hidden;
}


.media-slider-style .owl-nav button.owl-next,
.media-slider-style .owl-nav button.owl-prev {
	width: 35px;
	height: 35px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	font-size: 0px;
}

.media-slider-style .owl-nav button.owl-next span,
.media-slider-style .owl-nav button.owl-prev span {
	display: none;
}

.media-slider-style .owl-nav button.owl-prev {
	left: 0;
	right: inherit;
	top: -30px;
	background-image: url(assets/images/arrow-left.png) !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
	background-size: 24px !important;
}

.media-slider-style .owl-nav button.owl-next {
	right: inherit;
	top: -30px;
	left: 45px;
	background-image: url(assets/images/arrow-right.png) !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
	background-size: 24px !important;
}

.second-title {
	font-size: 36px;
	line-height: 35px;
	color: #094278;
	font-family: "Noto Kufi Arabic", sans-serif;
}

.media-slider-style {
	margin-top: 20px;
}

.main-home-news {
	margin-top: 60px;
}

.main-media-image {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}

.main-media-image img {
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.main-media-image:hover img {
	-webkit-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}

.main-media-image span {
	position: absolute;
	font-size: 9px;
	line-height: 20px;
	font-weight: 500;
	padding: 0px 15px;
	display: inline-block;
	background-color: #EF3C3C;
	color: #fff;
	right: 20px;
	top: 20px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	z-index: 5;
}

.main-media-content {
	width: 100%;
	padding-top: 15px;
}

.main-media-content span {
	font-size: 11px;
	line-height: 20px;
	font-weight: bold;
	padding: 0px 10px;
	display: inline-block;
	background-color: #00A1B7;
	color: #fff;
	left: 20px;
	top: 20px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.main-media-content span.green {
	background-color: #C5C343;
}

.main-media-content p {
	margin-top: 15px;
	font-size: 18px;
	line-height: 25px;
	font-weight: 400;
	color: #094278;
}

.publication-first-content label {
	font-size: 11px;
	line-height: 18px;
	font-weight: 500;
	padding: 4px 15px 2px;
	display: inline-block;
	background-color: #F08700;
	color: #fff;
	top: 20px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 16px;
	position: absolute;
	text-transform: uppercase;
	right: 50px;
}

/* .publication-first-content {
	justify-content: left;
} */

.publication-first-content p {
	font-family: "Noto Kufi Ara bic", sans-serif; 
	font-weight: 500;
	font-size: 23px;
	line-height: 30px;
	color: #fff;
	width: auto;
	margin-bottom: 0px;
	margin-top: 20px;
}

.publication-first-content span.light-blue {
	background-color: #00A1B7;
}

.hme-about-section {
	width: 100%;
	padding: 100px 0px;
	min-height: 400px;
	position: relative;
}

.hme-about-section-inner {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}


.home-about-content {
	width: 100%;
}

.home-about-content .main-title {
	line-height: 40px;
	font-size: 30px;
	margin-bottom: 30px;
}

.home-about-content p {
	font-size: 18px;
	line-height: 26px;
	color: #094278;
}

.home-about-content .green-btn {
	margin-top: 30px;
	background-color: #21457B;
}

.home-about-content .green-btn:hover {
	background-color: #B5BF35;
}

.our-imapact-section .green-btn:hover .our-impact-inner ul li:last-child {
	background-color: #B5BF35;
}

.home-about-right {
	width: 100%;
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	row-gap: 15px;
	margin-top: 70px;
	position: relative;
}

.home-about-content-left {
	width: 100%;
}

.about-main-section-p {
	margin-top: 50px;
}

.about-proposition-section-p {
	margin-bottom: 50px;
}

.home-about-right ul {
	margin-left: -.5%;
	margin-right: -.5%;
	display: flex;
	flex-wrap: wrap;

}

.home-about-right ul li {
	width: 24%;
	margin-left: .5%;
	margin-right: .5%;
	-webkit-border-radius: 17px;
	-moz-border-radius: 17px;
	border-radius: 17px;
	overflow: hidden;
}

.about-right-main {
	background-color: #21457B;
	padding: 25px 30px;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	width: 100%;
	min-height: 295px;
	height: 100%;
}

.home-about-right ul li:hover .about-right-main {
	background-color: #173666;
}

.home-about-right ul li h3 {
	font-size: 22px;
	line-height: 24px;
	font-family: "Noto Kufi Arabic", sans-serif;
	font-weight: 500;
	color: #fff;
}

.about-icon {
	width: 72px;
	height: 72px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	background-color: #FFFFFF;
	-webkit-border-radius: 24px;
	-moz-border-radius: 24px;
	border-radius: 24px;
	margin-bottom: 15px;
}

.home-about-right ul li p {
	color: #fff;
}

.white-btn {
	height: 40px;
	line-height: 42px;
	display: inline-block;
	padding: 0px 30px;
	margin-top: 10px;
	font-size: 14px;
	background-color: #fff;
	color: #21457B;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

.home-about-right ul li:hover .white-btn {
	background-color: #b5bf35;
	color: #fff;
}

.white-btn:hover {
	background-color: #B5BF35;
	color: #fff;
}

.right-txt {
	width: 14px;
	height: 256px;
	position: absolute;
	left: 5%;
	bottom: 70px;
	z-index: 99;
	animation: expand 2s infinite;
	-webkit-animation: expand 5s infinite;
}

@keyframes expand {
  0% {
    bottom: 70px;
  }

  20% {
    bottom: 50px;
  }

  40% {
    bottom: 70px;
  }

  60% {
    bottom: 50px;
  }

  80% {
    bottom: 70px;
  }

  100% {
    bottom: 50px;
  }
}

@-webkit-keyframes expand {
	  0% {
    bottom: 70px;
  }

  20% {
    bottom: 50px;
  }

  40% {
    bottom: 70px;
  }

  60% {
    bottom: 50px;
  }

  80% {
    bottom: 70px;
  }

  100% {
    bottom: 50px;
  }
}


/**********about************/

.sub-banner {
	width: 100%;
	height: 440px;
	margin-top: 60px;
	background-repeat: no-repeat;
	background-image: cover;
}

.page-menu {
	width: 100%;
	min-height: 70px;
	background-color: #F4FBFE;
	-webkit-border-bottom-left-radius: 30px;
	-moz-border-bottom-left-radius: 30px;
	border-bottom-left-radius: 30px;
	-webkit-border-bottom-right-radius: 30px;
	-moz-border-bottom-right-radius: 30px;
	border-bottom-right-radius: 30px;
}

/* .page-menu .container {
  max-width: 1500px;
} */

.page-menu .page-menu-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.page-menu .page-menu-inner a {
	width: 100%;
	line-height: 70px;
	display: inline-block;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	color: #094278;
	text-transform: uppercase;
	font-family: var(--font-primary)
}

.page-menu .page-menu-inner a:hover {
	color: var(--color-primary);
}

.about-menu li a {
	padding: 0px 45px;
}

/* .about-menu li+li a {
  padding-left: 30px;
} */

.main-wrapper {
	width: 100%;
	height: auto;
	background-color: #fff;
	position: relative;
	z-index: 2;
	-webkit-border-bottom-left-radius: 30px;
	-moz-border-bottom-left-radius: 30px;
	border-bottom-left-radius: 30px;
	-webkit-border-bottom-right-radius: 30px;
	-moz-border-bottom-right-radius: 30px;
	border-bottom-right-radius: 30px;
}

.about-main-section {
	width: 100%;
	height: auto;
}

.about-main-section-wrap {
	padding-bottom: 100px;
}

.about-main-section-inner {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding-top: 90px;
}


.about-main-section-inner:nth-child(2n) {
	flex-direction: row-reverse;
}


.about-main-section-inner:nth-child(2n) .about-main-left-content {
	width: 50%;
	padding-left: 50px;
	padding-right: 0px;
	display: flex;
	justify-content: flex-end;
}

.about-main-section-inner:nth-child(2n) .about-main-right-content {
	width: 50%;
}


.about-main-section-inner:nth-child(2n) .mission_icon {
	position: absolute;
	left: 0;
	right: inherit;
	top: -72px;
	z-index: -1;
}

.about-main-left-content {
	width: 60%;
	padding-right: 50px;
}

.about-main-left-content h4 {
	font-size: 134px;
	width: fit-content;
	line-height: 140px;
	margin-top: 20px;
	font-family: "Noto Kufi Ara bic", sans-serif; 
	font-weight: bold;
	text-transform: uppercase;
	position: relative;
	color: #fff;
	-webkit-text-stroke: 1px #094278;
	letter-spacing: -2px;
}

.about-main-left-content p {
	font-size: 13px;
	max-width: 540px;
}

.about-main-section-inner .main-title {
	margin-bottom: 25px;
	text-transform: capitalize;
}

.about-main-right-content {
	width: 40%;
	padding-top: 10px;

}

.mission_icon {
	position: absolute;
	left: 0;
	right: inherit;
	top: -65px;
	z-index: -1;
}

.about-main-right-content p {
	margin-bottom: 0px;
}

.page-menu .page-menu-inner li {
	position: relative;
}

.page-menu .page-menu-inner li.current-menu-item a::after,
.page-menu .page-menu-inner li.active a::after {
	content: "";
	border-style: solid;
	border-width: 0px 6px 8px 6px;
	height: 0;
	width: 0;
	border-color: transparent;
	border-bottom-color: #094278;
	display: inline-block;
	height: 12px;
	position: absolute;
	margin: 0 auto;
	left: 0;
	right: 0;
	bottom: -2px;
	z-index: 4;
}

.about-values-box {
	width: 100%;
	margin-top: 40px;
}

.about-values-box ul {
	display: flex;
	flex-wrap: wrap;
	margin-left: -1.5%;
	margin-right: -1.5%;
}

.value-box {
	width: 100%;
	min-height: 510px;
	-webkit-border-radius: 17px;
	-moz-border-radius: 17px;
	border-radius: 17px;
	padding: 65px;
}


.owl-carousel.value-slider .owl-nav button.owl-next,
.owl-carousel.value-slider .owl-nav button.owl-prev {
	width: 45px;
	height: 45px;
	background-color: #CCCCCC !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
}

.owl-carousel.value-slider .owl-nav button.owl-next:hover,
.owl-carousel.value-slider .owl-nav button.owl-prev:hover {
	background-color: #B5BF35 !important;
}

.owl-carousel.value-slider .owl-nav button.owl-prev {
	left: -70px;
	background-image: url(assets/images/arrow-left.png) !important;
}

.owl-carousel.value-slider .owl-nav button.owl-next {
	right: -70px;
	background-image: url(assets/images/arrow-right.png) !important;
}

.owl-carousel.value-slider .owl-nav button.owl-next span,
.owl-carousel.value-slider .owl-nav button.owl-prev span {
	display: none;
}

.value-box-icon {
	min-height: 110px;
	display: flex;
	align-items: center;
}

.value-box-icon img {
	max-height: 95px;
	width: auto !important;
}

.value-box-content {
	padding-top: 20px;
}

.value-box-content h3 {
	font-size: 40px;
	line-height: 46px;
	color: #fff;
	font-family: "Noto Kufi Ara bic", sans-serif; font-weight: 700;
	margin-bottom: 80px;
}

.value-box-content p {
	color: #fff;
}

.evelution-first-section {
	width: 100%;
}

.evelution-first-section .main-title {
	margin-bottom: 25px;
}

.evelution-second-section {
	width: 100%;
}

.evelution-slider-main {
	width: 100%;
}

.about-evolution-section {
	padding: 70px 0px 150px;
}

.evolution-second-section {
	margin-top: 70px;
	overflow: hidden;
}

.evoltion-slider-content {
	width: 100%;
}

.evoltion-slider-date {
	min-height: 130px;
	line-height: 58px;
	display: flex;
	align-items: flex-end;
	font-size: 80px;
	font-weight: bold;
	color: #fff;
	background-color: #2A7CBB;
	padding-right: 5px;
	font-family: 'Squada One', cursive;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.evoltion-slider-content {
	width: 100%;
	padding: 17px 40px 0px 25px;
}

.evoltion-slider-content p {
	font-size: 13px;
	color: #094278;
	line-height: 18px;
	max-width: 90%;
}

.owl-carousel.evolution-slider .owl-stage-outer {
	overflow: visible;
}

.evolution-slider::after {
	content: "";
	width: 3000px;
	right: -3000px;
	height: 100%;
	position: absolute;
	top: 0;
	background-color: #fff;

}


.owl-carousel.evolution-slider .owl-nav button.owl-next,
.owl-carousel.evolution-slider .owl-nav button.owl-prev {
	width: 45px;
	height: 45px;
	top: 35px;
	background-color: #fff !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
}


.owl-carousel.evolution-slider .owl-nav button.owl-next:hover,
.owl-carousel.evolution-slider .owl-nav button.owl-prev:hover {
	background-color: #B5BF35 !important;
}

.owl-carousel.evolution-slider .owl-nav button.owl-prev {
	right: 40px;
	left: inherit;
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	background-image: url(assets/images/arrow-left-blue.png) !important;
}

.owl-carousel.evolution-slider .owl-nav button.owl-next {
	left: 40px;
	right: inherit;
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	background-image: url(assets/images/arrow-right-blue.png) !important;
}

.owl-carousel.evolution-slider .owl-nav button.owl-next span,
.owl-carousel.evolution-slider .owl-nav button.owl-prev span {
	display: none;
}

.evoltion-slider-date {
	position: relative;
}

.evoltion-slider-date::before {
	content: "";
	width: 36px;
	height: 138px;
	background-image: url(assets/images/after.png);
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: -6px;
	z-index: 8;
	background-position: right;
	transform: scaleX(-1);
}

.evoltion-slider-date::after {
	content: "";
	width: 36px;
	height: 100%;
	background-color: #2A7CBB;
	position: absolute;
	left: -8px;
	top: 0px;
}

.evolution-slider::before {
	content: "";
	border-style: solid;
	border-width: 0px 68px 16px 68px;
	height: 0;
	width: 0;
	border-color: transparent;
	border-bottom-color: #fff;
	display: inline-block;
	height: 12px;
	position: absolute;
	right: -60px;
	top: 58px;
	z-index: 4;
	-webkit-transform: rotate(270deg);
	-moz-transform: rotate(270deg);
	transform: rotate(270deg);

}


/*****team*****/

.team-first-section {
	width: 100%;
	padding: 110px 0 150px;
}

.team-first-section-inner {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.founder-image {
	width: 35%;
	position: relative;
}

.founder-image::after {
	content: "";
	width: 138px;
	height: 122px;
	position: absolute;
	background-image: url(assets/images/fonder-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	bottom: -40px;
	left: -65px;
	z-index: -1;
}

.founder-image img {
	width: 100%;
}

.founder-message {
	width: 65%;
	padding-right: 100px;
}

.founder-message h2 {
	font-family: "Noto Kufi Ara bic", sans-serif; font-weight: 700;
	font-size: 58px;
	line-height: 72px;
	margin-bottom: 35px;
}

.founder-message h3 {
	font-family: "Noto Kufi Ara bic", sans-serif; font-weight: 700;
	font-size: 28px;
	line-height: 36px;
	margin-bottom: 20px;
}

.founder-message h4 {
	font-family: "Noto Kufi Ara bic", sans-serif; font-weight: 700;
	font-size: 23px;
	line-height: 24px;
	margin-bottom: 25px;
}

.team-second-section {
	width: 100%;
	padding: 120px 0px;
	background-color: #21457B;
}

.team-second-section .main-title {
	color: #fff;
	margin-bottom: 40px;
}

.team-second-section.white-bg {
	background-color: #fff;
	padding-bottom: 90px;
}

.padding-30 {
	padding-bottom: 30px;
}

.team-second-title {
	width: 100%;
}

.team-second-section p {
	color: #fff;
}

.team-list-main {
	width: 100%;
	margin-top: 30px;
}

.team-list-main ul {
	display: flex;
	flex-wrap: wrap;
	margin-left: -1%;
	margin-right: -1%;
	row-gap: 20px;
}

.team-list-main ul li {
	width: 18%;
	margin-left: 1%;
	margin-right: 1%;

	overflow: hidden;
	position: relative;
}

.team-list-main ul li img {
	width: 100%;
	height: auto;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
}

.team-list-main ul li:hover {
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}

.team-list-main ul li:hover .team-list-hover {
	top: 0;
}

.team-list-hover {
	width: 100%;
	height: 100%;
	background-color: #89A386;
	position: absolute;
	top: 100%;
	left: 0;
	padding: 30px 15px 15px;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.team-list-hover h4 {
	font-size: 16px;
	line-height: 24px;
	font-family: "Noto Kufi Ara bic", sans-serif; font-weight: 700;
	color: #fff;
	margin-bottom: 5px;
}

.team-list-hover p {
	font-size: 12px;
	line-height: 16px;
	color: #fff;
}

.team-list-hover-img {
	width: 90px;
	height: 90px;
	display: inline-block;
	overflow: hidden;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	margin-bottom: 15px;
}

.team-second-section.white-bg .main-title {
	color: #094278;
}

.team-second-section.white-bg p {
	color: #094278;
}

.team-second-section.white-bg .team-list-hover p {
	color: #fff;
}

/****partner****/

.partner-full-section {
	width: 100%;
	height: auto;
	padding-top: 50px;
}

.partner-main-nav {
	width: 100%;
	margin-bottom: 55px;
}

.partner-main-nav ul {
	border-bottom: 1px solid #E8E8E8;
	display: flex;
}

.partner-main-nav ul li {
	margin-right: 55px;
}

.partner-main-nav ul li.active {
	border-bottom: 2px solid #21457B;
}

.partner-main-nav ul li a {
	display: block;
	line-height: 50px;
	font-size: 20px;
	font-weight: 500;
	color: #094278;
}

.partner-main-nav ul li a:hover {
	color: #B5BF35;
}

.partner-main-listing {
	width: 100%;
	padding: 120px 0px;
}

.partner-main-listing.padding-zero {
	padding: 0px;
}


.partner-title-main .main-title {
	margin-bottom: 25px;
}

.partner-listing-wrap {
	margin-top: 40px;
}

.partner-listing-wrap ul {
	display: flex;
	flex-wrap: wrap;
	margin-left: -1%;
	margin-right: -1%;
	row-gap: 25px;
}

.partner-listing-wrap ul li {
	width: 23%;
	margin-left: 1%;
	min-height: 148px;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1%;
	border: 1px solid #E3E3E3;
	-moz-border-radius: 16px;
	-webkit-border-radius: 16px;
	border-radius: 16px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.partner-listing-wrap ul li:hover {
	box-shadow: 6px 6px 14px 2px rgba(0, 0, 0, 0.10);
}

.partner-listing-wrap ul li img {
	max-height: 100px;
}


/***programmes***/

.programmes-main-wrapper {
	width: 100%;
	padding: 110px 0 140px;
}

.programmes-main-wrapper .main-title {
	margin-bottom: 25px;
}

.programmes-inner-main {
	display: flex;
	flex-wrap: wrap;
	margin-top: 70px;
	row-gap: 40px;
	margin-left: -1.5%;
	margin-right: -1.5%;
}

.programmes-box {
	width: 30.3%;
	margin-left: 1.5%;
	margin-right: 1.5%;
	border: 1px solid #E3E3E3;
	-webkit-border-radius: 17px;
	-moz-border-radius: 17px;
	border-radius: 17px;
	padding: 35px;
	padding-bottom: 150px;
	position: relative;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.programmes-box h3 {
	font-size: 28px;
	line-height: 38px;
	color: #094278;
	margin-bottom: 40px;
}

.programmes-box:hover {
	background-color: #2A7CBB;
}

.programmes-box:hover h3,
.programmes-box:hover p {
	color: #fff;
}

.white-btn.blue-btn {
	background-color: #2A7CBB;
	color: #fff;
	padding: 0px 25px;
	position: absolute;
	right: 40px;
	bottom: 60px;
	height: 50px;
	line-height: 52px;
}

.programmes-box:hover .white-btn.blue-btn {
	background-color: #B5BF35;
}

.programmes-box ul {
	margin-top: 40px;
	row-gap: 5px;
	display: flex;
	flex-wrap: wrap;
}

.programmes-box ul li {
	width: 100%;
	border: 1px solid #21457B;
	-webkit-border-radius: 29px;
	-moz-border-radius: 29px;
	border-radius: 29px;
	position: relative;
}

.programmes-box ul li a {
	display: block;
	line-height: 20px;
	padding: 15px 20px 15px 55px;
	width: 100%;
	font-size: 14px;
	font-weight: 500;
}

.programmes-box:hover ul li {
	border: 1px solid #fff;

}

.programmes-box ul li::after {
	content: "";
	width: 22px;
	height: 22px;
	background-image: url(assets/images/blue-arrow.png);
	position: absolute;
	left: 20px;
	top: 15px;
	transform: scaleX(-1);
}

.programmes-box:hover ul li::after {
	background-image: url(assets/images/white-arrow.png);
}

.programmes-box:hover ul li a {
	color: #fff;
}

.corporate-governance-wrapper {
	width: 100%;
	padding: 65px 0px 150px;
}

.corporate-governance-wrapper .main-title {
	margin-bottom: 20px;
}

.corporate-governance-wrapper ul {
	margin-top: 50px;
}

.corporate-governance-wrapper ul>li {
	width: 80%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
}

.corporate-governance-wrapper ul>li:nth-child(2n) {
	margin-right: 20%;
}

.corporate-governance-wrapper ul>li::after {
	content: "";
	width: 95%;
	height: 1px;
	background-color: #E1E1E1;
	position: absolute;
	bottom: 0;
	right: 0px;
	z-index: -1;
}

.corporate-governance-img {
	width: 34%;
	overflow: hidden;
}

.corporate-governance-img img {
	width: 100%;
}

.corporate-governance-content {
	width: 66%;
	padding: 20px 80px 20px 0;
}

.corporate-governance-content h3 {
	font-size: 27px;
	line-height: 38px;
	font-family: "Noto Kufi Ara bic", sans-serif; font-weight: 700;
	margin-bottom: 20px;
	color: #094278;
}

.corporate-governance-content a {
	display: block;
	width: 100%;
	max-width: 250px;
	line-height: 22px;
	font-size: 14px;
	font-weight: 500;
	margin-top: 40px;
	position: relative;
}

.corporate-governance-content a::after {
	content: "";
	width: 22px;
	height: 22px;
	background-image: url(assets/images/blue-arrow.png);
	position: absolute;
	left: 0px;
	top: 0px;
	transform: scaleX(-1);

}

.corporate-governance-content a:hover::after {
	background-image: url(assets/images/green-arrow.png);
}


.partner-bottom-contact {
	width: 100%;
	padding: 70px 0px;
	background-color: #F4FBFE;
	-webkit-border-bottom-left-radius: 30px;
	-moz-border-bottom-left-radius: 30px;
	border-bottom-left-radius: 30px;
	-webkit-border-bottom-right-radius: 30px;
	-moz-border-bottom-right-radius: 30px;
	border-bottom-right-radius: 30px;
}

.partner-bottom-contact-inner {
	width: 100%;
	padding-left: 250px;
	position: relative;
}

.partner-bottom-contact-inner h3 {
	font-family: "Noto Kufi Ara bic", sans-serif; font-weight: 700;
	font-size: 36px;
	line-height: 30px;
	margin-bottom: 15px;
}

.partner-bottom-contact-inner p {
	font-size: 18px;
	font-weight: 300;
	margin-bottom: 0px;
}

.partner-bottom-contact-inner .green-btn {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	top: 0;
	margin: auto;
	background-color: #094278;
}

.partner-bottom-contact-inner .green-btn:hover {
	background-color: #B5BF35;
}

.home-news-publication-section.governance-news {
	padding: 80px 0px 140px;
}

.corporate-governance-overview {
	width: 100%;
	overflow: auto;
	padding: 90px 0 45px;
}

.corporate-governance-overview-inner {
	width: 100%;
}

.corporate-governance-overview-inner .main-title {
	margin-bottom: 25px;
	font-size: 58px;
}

.news-detail-top-section ul,
.event-detail-content-text ul,
.corporate-governance-overview-inner ul {
	color: #094278;
	margin: 0 0 15px 0;
	padding-left: 22px;
	list-style: circle;
	display: inline-block;
}

.news-detail-top-section ul ul,
.event-detail-content-text ul ul,
.corporate-governance-overview-inner ul ul {
	margin: 10px 0;
	list-style: disc;
}


.news-detail-top-section li+li,
.corporate-governance-overview-inner li+li {
	margin-top: 10px;
}

.governance-overview-img {
	width: 100%;
	max-width: 415px;
	float: right;
	margin-left: 140px;
	margin-bottom: 45px;
	position: relative;
}

.governance-overview-img::after {
	content: "";
	width: 138px;
	height: 122px;
	position: absolute;
	background-image: url('assets/images/fonder-bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	bottom: -40px;
	left: -65px;
	z-index: -1;
}

.governance-overview-img img {
	width: 100%;
}

.corporate-governance-overview-inner p {
	margin-bottom: 30px;
}


.governance-bottom-contact {
	width: 100%;
	padding: 70px 0px;
	background-color: #89A386;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	margin-bottom: 80px;
	position: relative;
	z-index: 2;
}

.governance-bottom-contact-inner {
	width: 100%;
	padding-left: 250px;
	position: relative;
}

.governance-bottom-contact-inner h3 {
	font-family: "Noto Kufi Ara bic", sans-serif; font-weight: 700;
	font-size: 36px;
	line-height: 30px;
	margin-bottom: 0px;
	color: #fff;
	text-transform: capitalize;
}

.governance-bottom-contact-inner p {
	font-size: 18px;
	font-weight: 300;
	margin-bottom: 0px;
	color: #fff;
}

.governance-bottom-contact-inner .green-btn {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0px;
	top: 0;
	margin: auto;
	background-color: #fff;
	color: #000;
}

.governance-bottom-contact-inner .green-btn:hover {
	background-color: #094278;
	color: #fff;
}

.collabration-main-section {
	padding-bottom: 110px;
	width: 100%;
	display: inline-block;
}

.collabration-main-section.intergrated {
	padding-top: 50px;
}

.corporate-governance-overview .green-btn {
	background-color: #094278;
	color: #fff;
}

.corporate-governance-overview .green-btn:hover {
	background-color: var(--color-primary);
}

.collabration-main-section .main-title {
	text-align: right;
}

.collabration-main-section ul {
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.collabration-main-section ul li {
	width: 23%;
	margin-left: 1%;
	min-height: 148px;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1%;
	border: 1px solid #E3E3E3;
	-moz-border-radius: 16px;
	-webkit-border-radius: 16px;
	border-radius: 16px;
	position: relative;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.collabration-main-section ul li:hover {
	border-color: transparent;
}

.collabration-main-section ul li:hover:after {
	content: "";
	width: 100%;
	height: 100%;
	border: 3px solid #09a5df;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	border-radius: 14px;
}


.collabration-main-section ul li img {
	max-height: 100px;
}

.home-partners-section.detail-page .main-title {
	text-align: center;
}

/* .home-partners-section.detail-page .impact_para {
  max-width: 1000px;
} */

.anti-corruption-main-wrapper {
	padding: 100px 0px 90px;
}

.anti-corruption-main-wrapper .founder-message {
	padding-right: 120px;
}

.achivements-main-wrapper {
	width: 100%;
	height: auto;
	padding: 30px 0px 60px;
}

.achivements-title {
	width: 100%;
	text-align: center;
}

.achivements-title h4 {
	text-transform: uppercase;
	color: #2A7CBB;
	font-size: 58px;
	line-height: 50px;
	font-family: "Noto Kufi Ara bic", sans-serif; 
	font-weight: 100;
	letter-spacing: 18px;
	margin-bottom: 0px;
}

.achivements-title h2 {
	font-size: 134px;
	line-height: 120px;
	font-family: "Noto Kufi Ara bic", sans-serif; 
	font-weight: bold;
	color: #21457B;
	text-transform: uppercase;
}

.achivements-main-wrapper .center_para {
	max-width: 975px;
	margin: 0 auto;
}

.achivements-main-wrapper .center_para p {
	text-align: center;
	margin-top: 40px;
	color: #094278;
	text-align: center;
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: 15px;
}

.achivements-main-wrapper .center_para p+p {
	margin-top: 20px;
}

.achivements-main-list {
	width: 100%;
	position: relative;
	margin-top: 50px;
	z-index: 2;
}

.achivements-main-list ul {
	display: flex;
	flex-wrap: wrap;
	margin-left: -1.5%;
	margin-right: -1.5%;
	row-gap: 25px;

}

/* .achivements-main-list .three_col{
  margin: 0 auto;
  max-width: 1090px;
} */
.achivements-main-list .three_col ul {
	margin: 0 -1%;
	row-gap: 25px;

}

.achivements-main-list .three_col .imp_pic {
	text-align: center;
}

.achivements-main-list .three_col li {
	width: 31%;
	margin: 0 1%;
	padding: 40px 50px 30px;
	display: flex;
	align-items: center;
}

.achivements-main-list ul li {
	width: 22%;
	border: 1px solid #21457B;
	margin-left: 1.5%;
	margin-right: 1.5%;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
	padding: 40px 40px 30px;
	background-color: #fff;
	display: flex;
	align-items: center;
}

.achv_wrap {
	max-width: 1090px;
	margin: 0 auto;
}

.achivements-main-list-bottom {
	width: 100%;
	margin-top: 30px;
}

.achivements-main-list-bottom p {
	text-align: center;
	font-size: 13px;
	line-height: 22px;
}

.anti-corruption-first-section {
	width: 100%;
	padding: 60px 0px 50px;
}

.anti-corruption-first-section p {
	margin-bottom: 20px;
}

.anti-corruption-first-section p:last-child {
	margin-bottom: 0;
}

.anti-corruption-second-section {
	width: 100%;
	padding-bottom: 60px;
}

.anti-corruption-second-section-inner {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.anti-corruption-message {
	width: 66%;
	height: auto;
	padding: 60px 80px;
	background-color: #21457B;
	-webkit-border-radius: 17px 17px 70px 17px;
	-moz-border-radius: 17px 17px 70px 17px;
	border-radius: 17px 17px 70px 17px;
	color: #fff;
	margin-top: 70px;
	display: flex;
	flex-wrap: wrap;

}

.anti-corruption-message p {
	color: #fff;
	font-size: 23px;
	line-height: 30px;
	font-style: italic;
	font-weight: 300;
}

.anti-corruption-message-title {
	margin-left: auto;
	margin-top: 15px;
}

.news-filter-inner .nice-select ul.list .option {
	margin-left: 0;
	margin-right: 0;

}

.recent-events-filter-inner .nice-select ul.list .option {
	margin-left: 0;
	margin-right: 0;
}


.anti-corruption-message-title h4 {
	font-size: 33px;
	line-height: 30px;
	font-weight: 600;
	color: #fff;
}

.anti-corruption-message-title span {
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
}

.anti-corruption-image {
	width: 30%;
	margin-left: 4%;

}

.anti-corruption-image-inner {
	width: 100%;
	overflow: hidden;
	;
}

.anti-corruption-image-inner img {
	width: 100%;
	display: block;
	-webkit-border-radius: 17px 17px 17px 70px;
	-moz-border-radius: 17px 17px 17px 70px;
	border-radius: 17px 17px 17px 70px;
}

.anti-corruption-play {
	text-align: center;
	margin-top: 25px;
}

.anti-corruption-play img {
	display: inline-block;
}

.key-objects-section {
	width: 100%;
	display: block;
	flex-wrap: wrap;
	padding-top: 20px;
}

.key-objects-section ul {
	position: relative;
	margin-top: -25px;
}

.key-objects-section ul li {
	min-height: 100px;
	padding: 20px 60px 20px 90px;
	position: relative;
	border: 1px solid #DFDFDF;
	-webkit-border-radius: 17px;
	-moz-border-radius: 17px;
	border-radius: 17px;
	display: flex;
	align-items: center;
	width: 65%;
	background-color: #fff;
}

.key-objects-section ul li div {
	position: relative;
}

.key-objects-section ul li span {
	content: "";
	width: 22px;
	height: 22px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	background-color: #2A7CBB;
	position: absolute;
	left: -50px;
	top: 0px;
}

.key-objects-section ul li div span::after {
	content: "";
	width: 9px;
	height: 9px;
	background-color: #fff;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	position: absolute;
	left: 7px;
	top: 7px;
}

.key-objects-section ul li:nth-child(2),
.key-objects-section ul li:nth-child(3),
.key-objects-section ul li:nth-child(4) {
	margin-top: -1px;
}

.key-objects-section ul li:nth-child(2) {
	width: 78%;
}

.key-objects-section ul li:nth-child(3) {
	width: 90%;
}

.home-partners-section.detail-page {
	padding-bottom: 80px;
}

.key-objects-section h2 {
	font-size: 134px;
	line-height: 120px;
	margin-top: 0px;
	font-family: "Noto Kufi Ara bic", sans-serif; 
	font-weight: bold;
	text-transform: uppercase;
	color: #fff;
	-webkit-text-stroke: 1px #21457B;
	letter-spacing: -2px;
}

/* 
.leader-ship-section {
  width: 100%;
  padding: 100px 0px 70px;
}

.leader-ship-inner-box {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 420px;
  background-color: #21457B;
  background-image: url(assets/images/quote-new.png);
  background-repeat: no-repeat;
  background-position: left 55px bottom 100px;
  padding: 30px;
  -webkit-border-radius: 28px 85px 28px 28px;
  -moz-border-radius: 28px 85px 28px 28px;
  border-radius: 28px 85px 28px 28px;


}

.leader-ship-content {
  width: 65%;
  padding: 0px 40px 0px 30px;
  display: flex;
  flex-wrap: wrap;

}

.leader-ship-content p {
  color: #fff;
  font-size: 23px;
  line-height: 33px;
  font-weight: 300;
  font-style: italic;
}

.leader-ship-content p+p {
  margin-top: 40px;
}

.leader-ship-content h3 {
  color: #FFF;
  font-size: 33px;
  font-style: normal;
  font-weight: 500;
  line-height: 42px;
  margin-bottom: 40px;
}

.leader-ship-image {
  width: 35%;
  -webkit-border-radius: 17px 70px 17px 17px;
  -moz-border-radius: 17px 70px 17px 17px;
  border-radius: 17px 70px 17px 17px;
  overflow: hidden;
}

.leader-ship-image img {
  width: 100%;

}

.leadership-message-title {
  margin-left: auto;
  margin-top: 15px;
}

.leadership-message-title h4 {
  font-size: 26px;
  line-height: 30px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 5px;
}

.leadership-message-title span {
  color: #fff;
  font-size: 13px;
}

.leader-ship-inner-box-main {
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
}

.leader-ship-inner-box.green {
  background-image: none;
  margin-left: auto;
} */


.leader-ship-section {
	width: 100%;
	padding: 70px 0px 70px;
}

.leader-ship-inner-box {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	/* min-height: 420px;
  background-color: #21457B;
  background-image: url(assets/images/quote-new.png); */
	/* background-repeat: no-repeat;
  background-position: left 55px bottom 100px; */


}

.leader-ship-content {
	width: 78%;
	padding: 65px 80px;
	display: flex;
	flex-wrap: wrap;
	-webkit-border-radius: 17px 17px 70px 17px;
	;
	-moz-border-radius: 17px 17px 70px 17px;
	border-radius: 17px 17px 70px 17px;
	background-color: #21457B;
	min-height: 330px;
}

.leader-ship-content p {
	color: #fff;
	font-size: 23px;
	line-height: 33px;
	font-weight: 300;
	font-style: italic;
}

.leader-ship-content p+p {
	margin-top: 40px;
}

.leader-ship-content h3 {
	color: #FFF;
	font-size: 33px;
	font-style: normal;
	font-weight: 500;
	line-height: 42px;
	margin-bottom: 40px;
}

.leader-ship-image {
	width: 25%;
	max-width: 230px;
	overflow: hidden;
}

.leader-ship-image img {
	width: 100%;
	-webkit-border-radius: 17px 17px 17px 70px;
	-moz-border-radius: 17px 17px 17px 70px;
	border-radius: 17px 17px 17px 70px;
	background-position: center center;
	background-size: cover;
}

.leadership-message-title {
	margin-left: auto;
	margin-top: 15px;
}

.leadership-message-title h4 {
	font-size: 26px;
	line-height: 30px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 5px;
}

.leadership-message-title span {
	color: #fff;
	font-size: 13px;
}

.leader-ship-inner-box-main {
	display: flex;
	flex-wrap: wrap;
	row-gap: 65px;
}

.leader-ship-inner-box.green {
	background-image: none;
	margin-left: auto;
}

.leader-ship-inner-box.green .leader-ship-content {
	background-color: #89A386;
}

/* .leader-ship-inner-box.green .leader-ship-content {
  background-color: #89A386;
} */

.programe-activities-section {
	padding: 70px 0px 0px;
}

.programe-activities-section h2 {
	font-size: 58px;
	line-height: 60px;
	margin-bottom: 20px;
}

.programe-activities-section-inner {
	width: 100%;
	margin-top: 60px;
	display: flex;
	flex-wrap: wrap;
	row-gap: 25px;
}

.programe-activities-box ul {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #2A7CBB;
	border-bottom: 1px solid #2A7CBB;
}

.programe-activities-box ul li {
	height: 130px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	padding: 0px 50px;
	max-width: 390px;
	position: relative;
}

.programe-activities-box ul li p {
	padding-left: 40px;
	position: relative;
}

.programe-activities-box ul li p span {
	height: 17px;
	line-height: 18px;
	width: 17px;
	text-align: center;
	padding: 0;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	background-color: #21457B;
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	display: inline-block;
	align-items: center;
	position: absolute;
	left: 10px;
	top: 3px;
	justify-content: center;
}

.programe-activities-box ul li:nth-child(1) {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #2A7CBB;
}

.programe-activities-box ul li::after {
	content: "";
	width: 40px;
	height: 132px;
	background-image: url(assets/images/after-new3.svg);
	background-repeat: no-repeat;
	position: absolute;
	right: -39px;
	z-index: -1;
}


.programe-activities-box ul li:nth-child(1)::before {
	content: "";
	width: 40px;
	height: 132px;
	background-image: url(assets/images/after-new3.svg);
	background-repeat: no-repeat;
	position: absolute;
	left: 0px;
}

.programe-activities-box ul li:nth-child(1)::after {
	background-image: url(assets/images/after-new4.svg);
	background-repeat: no-repeat;
	right: -36px;
}

.programe-activities-box ul li h4 {
	font-size: 25px;
	line-height: 25px;
	color: #fff;
}

.how-programmes-main-wrapper {
	width: 100%;
	padding: 90px 0 160px;
}

.how-programmes-main-wrapper .main-title {
	text-align: center;
}

.howtowork-first-section {
	padding-top: 130px;
	width: 100%;
}

.how-to-get-video {
	width: 100%;
	margin-bottom: 90px;
	position: relative;
}

.how-to-get-video img {
	width: 100%;
}

.play-btn {
	width: 75px;
	height: fit-content;
	display: block;
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.corporate-governance-wrapper.gray-banner ul li:last-child:after {
	display: none;
}

.main-publication-slider-box .second-title {
	text-transform: capitalize;
}

.family-firm-bottom-section {
	padding: 20px 0px 90px;
}

.family-firm-bottom-section .main-title {
	margin-bottom: 60px;
}

.family-firm-bottom-section .main-title {
	text-align: center;
}

.family-firm-bottom-section ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-left: -1.5%;
	margin-right: -1.5%;
}

.family-firm-bottom-section ul li {
	width: 40%;
	margin-left: 1.5%;
	margin-right: 1.5%;
	text-align: center;
}

.family-firm-bottom-section ul li h3 {
	font-size: 28px;
	line-height: 35px;
	font-family: "Noto Kufi Ara bic", sans-serif; font-weight: 700;
	font-weight: 800;
	color: #094278;
	margin-bottom: 0px;
}

.firm-img {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 15px;
	min-height: 195px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
	border: 1px solid #E3E3E3;
	margin-bottom: 15px;
}

.margin-bottom-zero {
	margin-bottom: 0px !important;
}

.governance-overview-img.right {
	float: left;
	margin-left: 0px;
	margin-right: 110px;
}

.governance-overview-img.right::after {
	content: "";
	width: 138px;
	height: 122px;
	position: absolute;
	background-image: url(assets/images/fonder-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	bottom: -40px;
	left: inherit;
	right: -65px;
	z-index: -1;
}


.student-progress-section {
	width: 100%;
	padding: 130px 0px 160px;
	margin-bottom: -30px;
	background-color: #F4FBFE;
	-webkit-border-top-right-radius: 30px;
	-moz-border-top-right-radius: 30px;
	border-top-right-radius: 30px;
	-webkit-border-top-left-radius: 30px;
	-moz-border-top-left-radius: 30px;
	border-top-left-radius: 30px;
	position: relative;
	z-index: 0;

}

.student-progress-section ul {
	display: flex;
	flex-wrap: wrap;
	max-width: 1080px;
	margin: 0 auto
}

.student-progress-section ul li {
	width: 25%;
	position: relative;
}

.progress-box {
	width: calc(100% - 30px);
	margin: 0 auto;
	display: block;
	padding: 25px;
	margin-bottom: 15px;
	min-height: 215px;
	padding-top: 60px;
	background-color: #fff;
	display: flex;
	align-items: flex-end;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;

}

.student-progress-section ul li:nth-child(2n) .progress-box {
	margin-bottom: 0px;
	margin-top: 15px;
	align-items: flex-start;
	padding-top: 25px;
	padding-bottom: 60px;
}

.student-progress-section ul li:nth-child(2n) .progress-box-outer {
	border-radius: 0px;
	bottom: inherit;
	top: 0px;
	-webkit-border-top-left-radius: 30px;
	-moz-border-top-left-radius: 30px;
	border-top-left-radius: 30px;
	-webkit-border-top-right-radius: 30px;
	-moz-border-top-right-radius: 30px;
	border-top-right-radius: 30px;
	background-position: bottom center;
	box-shadow: -10px -9px 19px -9px rgba(0, 0, 0, 0.24);
	-webkit-box-shadow: -10px -9px 19px -9px rgba(0, 0, 0, 0.24);
	-moz-box-shadow: -10px -9px 19px -9px rgba(0, 0, 0, 0.24);
}

.student-progress-section ul li:nth-child(2n) .progress-number {
	top: inherit;
	bottom: -40px;
	box-shadow: -10px -9px 19px -9px rgba(0, 0, 0, 0.24);
	-webkit-box-shadow: -10px -9px 19px -9px rgba(0, 0, 0, 0.24);
	-moz-box-shadow: -10px -9px 19px -9px rgba(0, 0, 0, 0.24);
}

.progress-box-outer {
	width: 100%;
	height: 54%;
	left: 0;
	bottom: 0px;
	position: absolute;
	z-index: -1;
	background-size: 100%;
	background-repeat: no-repeat;
	-webkit-border-bottom-left-radius: 30px;
	-moz-border-bottom-left-radius: 30px;
	border-bottom-left-radius: 30px;
	-webkit-border-bottom-right-radius: 30px;
	-moz-border-bottom-right-radius: 30px;
	border-bottom-right-radius: 30px;
	box-shadow: 10px 10px 19px -9px rgba(0, 0, 0, 0.29);
	-webkit-box-shadow: 10px 10px 19px -9px rgba(0, 0, 0, 0.29);
	-moz-box-shadow: 10px 10px 19px -9px rgba(0, 0, 0, 0.29);
}

.progress-number {
	width: 85px;
	height: 85px;
	font-family: "Noto Kufi Ara bic", sans-serif; font-weight: 700;
	display: flex;
	align-items: center;
	font-size: 30px;
	justify-content: center;
	background-color: #fff;
	color: #595959;
	border: 10px solid #89A386;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	position: absolute;
	top: -40px;
	left: 0;
	right: 0;
	margin: 0 auto;
	box-shadow: 10px 10px 19px -9px rgba(0, 0, 0, 0.29);
	-webkit-box-shadow: 10px 10px 19px -9px rgba(0, 0, 0, 0.29);
	-moz-box-shadow: 10px 10px 19px -9px rgba(0, 0, 0, 0.29);
}

.green-btn.normal {
	text-transform: initial;
}

.corporate-governance-overview-inner .main-title {
	line-height: 72px;
}

.overview-full-width {
	padding: 60px 0px 10px;
}

.overview-full-width .main-title {
	margin-bottom: 20px;
}

.overview-full-width p {
	margin-bottom: 20px;
}

.project-aims-section {
	width: 100%;
	padding-top: 60px;
}

.project-aims-list {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	margin-left: -1%;
	margin-right: -1%;
}

.project-aims-list li {
	width: 31.3%;
	margin-left: 1%;
	margin-right: 1%;
	padding: 50px 40px 40px;
	-webkit-border-radius: 17px;
	-moz-border-radius: 17px;
	border-radius: 17px;
}

.project-aims-list li p {
	font-size: 23px;
	line-height: 35px;
	color: #fff;
	font-family: "Noto Kufi Ara bic", sans-serif; font-weight: 700;
}

.philanthropy-icon {
	max-height: 93px;
	margin-bottom: 30px;
}

.philanthropy-icon img {
	max-height: 90px;
}

.project-aims-section .green-btn {
	background-color: #21457B;
	margin-bottom: 40px;
}

.project-aims-section .green-btn:hover {
	background-color: #B5BF35;
}

.project-aims-section p {
	margin-bottom: 35px;
}

.corporate-partner-full-section {
	width: 100%;
	height: auto;
	padding: 100px 0px;
}

.main-events-slider {
	margin-bottom: 140px;
}

.main-media-content h3 {
	font-size: 23px;
	font-family: "Noto Kufi Ara bic", sans-serif; font-weight: 700;
	line-height: 30px;
	margin-top: 15px;
	min-height: 60px;
}

.event-slider-time {
	margin-top: 20px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	column-gap: 10px;
	row-gap: 10px;
}

.event-slider-date {
	font-size: 14px;
	line-height: 26px;
	font-weight: 600;
	padding: 0px 10px;
	display: inline-block;
	background-color: #B5BF35;
	color: #fff;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	padding-right: 30px;
	background-image: url(assets/images/calender.png);
	background-repeat: no-repeat;
	background-position: right 10px top 5px;
}

.event-slider-location {
	font-size: 14px;
	line-height: 26px;
	font-weight: 600;
	padding: 0px 10px;
	display: inline-block;
	background-color: #21457B;
	color: #fff;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	padding-right: 25px;
	background-image: url(assets/images/location.png);
	background-repeat: no-repeat;
	background-position: right 10px top 5px;
}

.main-media-content span.events {
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	font-size: 14px;
	line-height: 26px;
}

.sub-banner.sub-banner-small {
	height: 195px;
	min-height: auto;
	text-align: center;
}

.sub-banner.sub-banner-small h1 {
	max-width: inherit;
	margin-bottom: 0px;
}

.recent-events-section {
	width: 100%;
	padding: 90px 0px 140px;
}

.recent-events-section-inner {
	width: 100%;
	margin-top: 40px;
}

.recent-events-section-inner ul {
	display: flex;
	flex-wrap: wrap;
	margin-left: -1.5%;
	margin-right: -1.5%;
	row-gap: 60px;
}

.recent-events-section-inner ul li {
	width: 30.3%;
	margin-left: 1.5%;
	margin-right: 1.5%;
	position: relative;
}

.main-media-content span.events {
	position: absolute;
	right: inherit;
	top: 20px;
	display: inline-block;
	width: max-content;
	left: 20px;
}


.featured-event-first {
	width: 100%;
	min-height: 480px;
	display: flex;
	align-items: flex-end;
	margin-bottom: 65px;
	margin-top: 30px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 40px 50px;
}

.featured-event-first .main-media-content {
	max-width: 600px;
}

.featured-event-first .main-media-content h3 {
	font-size: 30px;
	line-height: 35px;
}

.featured-event-first .main-media-content h3 a {
	color: #fff;
}

.featured-event-first .event-slider-date,
.featured-event-first .event-slider-location {
	background-color: #00A1B7;
}

.recent-events-filter {
	padding-top: 55px;
	width: 100%;
	position: relative;
	z-index: 3;
}

.recent-events-filter-inner {
	width: 100%;
	padding-bottom: 55px;
	border-bottom: 1px solid #E3E3E3;
}

.recent-events-filter-inner ul {
	margin-left: -1%;
	margin-right: -1%;
	display: flex;
	flex-wrap: wrap;
}

.recent-events-filter-inner ul li {
	width: 34%;
	margin-left: 1%;
	margin-right: 1%;
	position: relative;
}

.recent-events-filter-inner ul li:last-child {
	width: 26%;
}

.select-filter {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.select-filter label {
	width: 80px;
	/* line-height: 50px; */
	font-size: 16px;
	line-height: 19px;
	font-weight: 400;
	color: #094278;
}

.main-select {
	width: calc(100% - 85px);

}

.nice-select {
	background-color: #F2F2F2;
	font-size: 16px;
	line-height: 50px;
	height: 50px;
	font-weight: 400;
	color: #094278;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
	border: none;
	padding: 0px 20px;
	padding-right: 20px;
	padding-left: 35px;
}

.nice-select .current{
	   overflow: hidden;
	       width: 100%;
}

.nice-select .list li {
	width: 100%;
   white-space: break-spaces;
       line-height: 25px;
    margin-bottom: 5px;
	padding: 8px 10px;

}

.new-filter2 {
	width: 100%;
	background-color: #F2F2F2;
	font-size: 16px;
	line-height: 50px;
	height: 50px;
	font-weight: 400;
	color: #094278;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
	border: none;
	padding: 0px 20px;
	cursor: auto;
}

.new-filter2::placeholder {
	color: #094278;
}

.new-filter2.calender {
	background-image: url(assets/images/calender-blue.png);
	background-repeat: no-repeat;
	background-position: left 20px center;
}

.filter-search {
	width: 100%;
}

.filter-search .new-filter2 {
	padding-left: 110px;
}

.search-btn-new:hover {
	background-color: #000;
}

.search-btn-new {
	width: 100px;
	border: none;
	height: 50px;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
	background-color: #184377;
	font-size: 0px;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(assets/images/search-icon.png);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.nice-select:after {
	width: 12px;
	height: 10px;
	background-image: url(assets/images/select-arrow.png) !important;
	border: none !important;
	background-position: center;
	background-repeat: no-repeat;
	content: '';
	display: block;
	margin-top: -4px;
	pointer-events: none;
	position: absolute;
	left: 14px;
	right: auto;
	top: 50%;
	-webkit-transform-origin: 66% 66%;
	-ms-transform-origin: 66% 66%;
	transform-origin: 66% 66%;
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}

.nice-select.open:after {
	margin-top: -4px;
}

.news-filter-inner {
	width: 100%;
	padding-bottom: 55px;
	border-bottom: 1px solid #E3E3E3;
}

.news-filter-inner ul {
	margin-left: -1%;
	margin-right: -1%;
	display: flex;
	flex-wrap: wrap;
}

.news-filter-inner ul li {
	width: 31.3%;
	margin-left: 1%;
	margin-right: 1%;
	position: relative;
}

.recent-events-section-inner.margin-top-zero {
	margin-top: 0px;
}

.main-media-content p {
	margin-top: 10px;
}

.main-media-content.news-content h3 {
	margin-top: 20px;
}

.main-media-content.news-content p {
	margin-top: 10px;
	font-size: 16px;
	line-height: 24px;
}

.sub-banner .main-title {
	color: #fff;
	max-width: 1000px;
	line-height: 60px;
}

.sub-banner.detail-page {
	align-items: flex-end;
	padding-bottom: 40px;
}

.event-name.publication {
	margin-bottom: 20px;
}

.sub-banner.detail-page .date {
	color: #fff;
	margin-bottom: 15px;
	width: 100%;
	font-size: 21px;
}

.news-detail-top-section {
	width: 100%;
	padding: 100px 0 90px;
}

.news-detail-top-section p {
	line-height: 26px;
	margin-bottom: 30px;
}

.news-detail-top-section img {
	margin-top: 30px;
	margin-bottom: 35px;
}

.related-news-section {
	width: 100%;
	padding: 90px 0 120px;
	background-color: #F4FBFE;
	position: relative;
	z-index: 1;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

.related-news-section .main-title {
	padding-left: 100px;
}

.related-news-slider {
	width: 100%;
	margin-top: 50px;
}

.sub-banner.detail-page p {
	font-size: 21px;
	color: #fff;
}

.event-name {
	font-size: 14px;
	line-height: 26px;
	font-weight: bold;
	padding: 0px 15px;
	display: inline-block;
	background-color: #00A1B7;
	color: #fff;
	margin-bottom: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	margin-bottom: 15px;
}

.events-detail-top-section {
	width: 100%;
	padding: 150px 0 45px;
}

.events-list-main ul {
	margin-left: -1%;
	margin-right: -1%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.events-list-main ul li {
	width: 20%;
	margin-left: 1%;
	margin-right: 1%;
	display: inline-block;
}

.event-list-icon {
	width: 80px;
	height: 80px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	background-color: #21457B;
	display: flex;
	margin: 0 auto;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.event-list-icon img {
	height: auto;
}

.event-list-content {
	margin-top: 20px;
	text-align: center;
}

.event-list-content h4 {
	font-family: "Noto Kufi Arabic", sans-serif;
	font-size: 28px;
	line-height: 30px;
	font-weight: 600;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.event-list-content p {
	color: #8E8E8E;
}

.detail-page .white-btn {
	height: 50px;
	line-height: 52px;
	margin-top: 15px;
	font-weight: 500;
}

.related-news-section.white-bg {
	background-color: #fff;
}

.corporate-governance-wrapper.gray-banner {
	background-color: #F4FBFE;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

.corporate-governance-wrapper.gray-banner {
	padding: 90px 0px 100px;
}

.corporate-governance-wrapper.gray-banner ul {
	margin-top: 40px;
}


.corporate-governance-wrapper.gray-banner h3 {
	margin-top: 20px;
}

.event-organizer {
	font-size: 14px;
	line-height: 25px;
	font-weight: 500;
	padding: 0px 10px;
	display: inline-block;
	background-color: #00A1B7;
	color: #fff;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	margin-top: 5px;
}

.events-detail-text-section {
	width: 100%;
	padding: 45px 0px 90px;
}

.event-detail-content-inner {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.event-detail-content-img {
	width: 36%;
	text-align: center;
}

.event-detail-content-img img {
	width: 80%;
	padding-left: 40px;
}

.event-detail-content-img .green-btn {
	background-color: #21457B;
	margin: 0 auto;
	margin-top: 30px;
	text-transform: none;
}

.event-detail-content-img .green-btn:hover {
	background-color: #B5BF35;
}

.event-detail-content-text {
	width: 64%;
	padding-left: 70px;
}

.event-detail-content-text p {
	margin-bottom: 20px;
}

.event-detail-content-text p span {
	width: 100%;
	display: block;
	font-weight: 600;
}

.event-detail-content-social {
	margin-top: 80px;
	display: flex;
	justify-content: center;
}

.event-social-inner {
	display: flex;
	align-items: center;
}

.event-social-inner label {
	font-size: 18px;
	line-height: 25px;
	font-weight: bold;
	width: 140px;
	color: #21457B;
}

.event-social-inner ul {
	display: flex;
	flex-wrap: wrap;
	column-gap: 25px;
}

.event-social-inner ul li {
	width: 85px;
	height: 85px;
	border: 1px solid #CCCCCC;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}

.event-social-inner ul li a {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 25px;
}

.evolution-second-section.impact {
	margin-top: 50px;

}

.about-evolution-section.impact {
	padding: 100px 0px 150px;
}

.our-impact-page-inner {
	width: 100%;
	margin-top: 40px;
}

.our-impact-page-inner ul {
	display: flex;
	flex-wrap: wrap;
	row-gap: 35px;
	margin-left: -1.5%;
	margin-right: -1.5%;
}

.our-impact-page-inner ul li::after {
	display: none;
}

.our-impact-page-inner ul li {
	width: 30.33%;
	min-height: 245px;
	background-repeat: no-repeat;
	background-size: cover;
	background-repeat: no-repeat;
	-webkit-border-radius: 17px;
	-moz-border-radius: 17px;
	border-radius: 17px;
	overflow: hidden;
	padding: 35px;
	display: flex;
	align-items: center;
	margin-left: 1.5%;
	margin-right: 1.5%;
	position: relative;
}

.our-imapact-top-section {
	width: 100%;
	padding: 110px 0px;
}

.our-imapact-top-section p {
	line-height: 26px;
}

/* .our-impact-list-main {
	margin-top: 45px;
} */

.our-impact-list-main h3 {
	font-size: 27px;
	line-height: 38px;
}

.our-impact-list-main ul {
	margin-left: -1%;
	margin-right: -1%;
	margin-top: 45px;
	display: flex;
	flex-wrap: wrap;
}

.our-impact-list-main ul li {
	width: 48%;
	display: flex;
	align-items: center;
	min-height: 85px;
	padding: 10px 30px;
	margin-left: 1%;
	margin-right: 1%;
	margin-bottom: 25px;
	border: 1px solid #21457B;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
}

.impact-list-inner {
	width: 100%;
	display: flex;
}

.impact-list-icon {
	width: 50px;
}

.impact-list-text {
	width: calc(100% - 50px);
	display: flex;
	align-items: center;
}

.impact-list-text p {
	margin-bottom: 0px;
}

.publication-filter-inner {
	width: 100%;
	padding-bottom: 55px;
	border-bottom: 1px solid #E3E3E3;
}

.publication-filter-inner ul {
	margin-left: -1%;
	margin-right: -1%;
	display: flex;
	flex-wrap: wrap;
	row-gap: 20px;
}

.publication-filter-inner ul li {
	margin-left: 1%;
	margin-right: 1%;
	width: 23%;
	position: relative;
}

.publication-filter-inner ul li:last-child {
	width: 100%;
}

.publication-list-section {
	width: 100%;
	padding: 40px 0px 140px;
}

.publication-list-section .main-media-content span {
	background-color: #B5BF35;
}

.publication-list-section .main-media-content p {
	font-size: 15px;
}

.publication-list-btn {
	width: 100%;
	display: flex;
	margin-top: 20px;
	column-gap: 15px;
}

.publication-list-btn .green-btn {
	text-transform: none;
}

.green-btn.blue-btn {
	background-color: #00A1B7;
}

.green-btn.grey-btn {
	background-color: #909090;
}

.green-btn.blue-btn:hover,
.green-btn.grey-btn:hover {
	background-color: #B5BF35;
}

.event-name.publication {
	background-color: #B5BF35;
}

.white-btn.event-btn {
	background-color: #00A1B7;
	color: #fff;
	text-transform: none !important;
}

.white-btn.event-btn:hover {
	background-color: #B5BF35;
}

.news-publication-top-section {
	width: 100%;
	padding: 110px 0 90px;
}

.news-publication-top-section-inner {
	display: flex;
	flex-wrap: wrap;
}

.news-publication-top-left {
	width: 70%;
}

.news-publication-top-right {
	width: 30%;
	padding-left: 60px;
}


.news-publication-top-left img {
	margin: 45px 0;
}

.news-publication-inner {
	width: 100%;
	border: 1px solid #808080;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	padding: 35px;
	text-align: center;
}

.news-publication-inner h3 {
	font-size: 30px;
	line-height: 30px;
	font-family: "Noto Kufi Ara bic", sans-serif; font-weight: 700;
	
	color: #094278;
}

.news-publication-inner img {
	margin-top: 5px;
	margin-bottom: 15px;
}

.corporate-governance-wrapper .corporate-governance-content ul {
	margin-top: 20px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	column-gap: 10px;
	row-gap: 10px;
}

.corporate-governance-wrapper .corporate-governance-content ul li {
	width: auto;
	display: inline-block;
	border: none;
	line-height: 50px;
	background-color: #21457B;
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	padding: 0px 15px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

.corporate-governance-wrapper .corporate-governance-content ul li::after {
	display: none;
}

.corporate-governance-wrapper .corporate-governance-content ul>li:nth-child(2n) {
	margin-right: 0;
}

.text-center {
	text-align: center;
	width: 100%;
}

.university-bottom-section {
	width: 100%;
	padding: 100px 0px 90px;
}

.university-collabration-slider {
	width: 100%;
	padding-bottom: 60px;
	border-bottom: 1px solid #D9D9D9;
	margin-bottom: 70px;
}

.main-media-image img {
	background-repeat: no-repeat;
	background-size: cover;
}

.university-slider1 .main-media-content h3 {
	margin-top: 5px;
}

.university-slider1 {
	margin-top: 35px;
}

.university-report-slider {
	margin-top: 35px;
}

.university-reports-main {
	width: 100%;
}

.owl-carousel.university-report-slider .owl-nav .owl-next span,
.owl-carousel.university-report-slider .owl-nav button.owl-prev span,
.owl-carousel.university-slider1 .owl-nav .owl-next span,
.owl-carousel.university-slider1 .owl-nav button.owl-prev span,
.owl-carousel.related-news .owl-nav .owl-next span,
.owl-carousel.related-news .owl-nav button.owl-prev span {
	display: none;
}

.owl-carousel.university-report-slider .owl-nav button.owl-next,
.owl-carousel.university-slider1 .owl-nav button.owl-next {
	position: absolute;
	top: -47px;
	font-size: 0px;
	right: 0;
	width: 35px;
	height: 35px;
	background-size: 24px !important;
	background-image: url(assets/images/arrow-right.png) !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
}

.owl-carousel.university-report-slider .owl-nav button.owl-prev,
.owl-carousel.university-slider1 .owl-nav button.owl-prev {
	position: absolute;
	top: -47px;
	font-size: 0px;
	right: 50px;
	left: inherit;
	width: 35px;
	height: 35px;
	background-size: 24px !important;
	background-image: url(assets/images/arrow-left.png) !important;
	background-repeat: no-repeat !important;
	background-position: center !important;

}

.pldge-first-title {
	width: 100%;
	text-align: center;
	margin-bottom: 50px;
}

.owl-carousel.related-news .owl-nav button.owl-prev {
	position: absolute;
	top: -58px;
	font-size: 0px;
	left: 50px;
	right: inherit;
	width: 35px;
	height: 35px;
	background-size: 24px !important;
	background-image: url(assets/images/arrow-left.png) !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
	transform: rotate(180deg);
}

.owl-carousel.related-news .owl-nav button.owl-next {
	position: absolute;
	top: -58px;
	font-size: 0px;
	left: 0;
	right: inherit;
	width: 35px;
	height: 35px;
	background-size: 24px !important;
	background-image: url(assets/images/arrow-right.png) !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
	transform: rotate(180deg);
}

.related-news-section.bussiness-related {
	padding-top: 150px;
}

.for-business-wrapper {
	width: 100%;
	padding: 100px 0px;
}

.for-business-wrapper ul {
	margin-left: -1.5%;
	margin-right: -1.5%;
	display: flex;
	flex-wrap: wrap;
}

.for-business-wrapper ul li {
	width: 47%;
	margin-left: 1.5%;
	margin-right: 1.5%;
	padding: 50px;
	margin-bottom: 40px;
	min-height: 395px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
	padding-bottom: 100px;
}

.for-business-wrapper ul li .main-title {
	color: #fff;
	margin-bottom: 15px;
	line-height: 60px;
}

.for-business-wrapper ul li p {
	color: #fff;
}

.for-business-wrapper ul li .green-btn {
	background-color: #21457B;
	margin-top: 15px;
	text-transform: capitalize;
	min-width: 175px;
	text-align: center;
	position: absolute;
	bottom: 40px;
}

.for-business-wrapper ul li .green-btn:hover {
	background-color: #fff;
	color: #21457B;
}

.compatition-overview {
	width: 100%;
	overflow: auto;
	padding: 130px 0px 120px;
}

.compatition-overview:nth-child(even) {
	background-color: #21457B
}


.compatition-overview-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.compatition-overview-img {
	width: 35%;
	position: relative;
}


.compatition-overview-img img {
	width: 100%;
}

.compatition-overview-img::after {
	content: "";
	width: 138px;
	height: 122px;
	position: absolute;
	background-image: url(assets/images/fonder-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	bottom: -40px;
	left: inherit;
	right: -65px;
	z-index: -1;
}

.compatition-overview-content {
	width: 65%;
	padding-right: 130px;
}

.compatition-overview-content p {
	margin-bottom: 20px;
}

.compatition-overview-content h2 {
	font-family: "Noto Kufi Ara bic", sans-serif; font-weight: 700;
	font-size: 58px;
	line-height: 70px;
	color: #094278;
	margin-bottom: 25px;
}

.compatition-overview:nth-child(even) .compatition-overview-inner {
	flex-direction: row-reverse;
}

.compatition-overview:nth-child(even) .compatition-overview-content {
	padding-right: 0px;
	padding-left: 130px;
}

.compatition-overview:nth-child(even) .compatition-overview-content h2,
.compatition-overview:nth-child(even) .compatition-overview-content p {
	color: #fff;
}

.compatition-overview:nth-child(even) .compatition-overview-img::after {
	background-image: url(assets/images/competition-bg.png);
	left: -65px;
	right: inherit;
}


.career-overview {
	width: 100%;
	overflow: auto;
	padding: 110px 0px;
}

.career-top-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.compatition-overview-img {
	width: 35%;
	position: relative;
}

.compatition-overview-img img {
	width: 100%;
}

.compatition-overview-img::after {
	content: "";
	width: 138px;
	height: 122px;
	position: absolute;
	background-image: url(assets/images/fonder-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	bottom: -40px;
	left: inherit;
	right: -65px;
	z-index: -1;
}

.career-top-content {
	width: 65%;
	padding-right: 130px;
}

.career-top-content p {
	margin-bottom: 20px;
}

.career-top-content h2 {
	font-family: "Noto Kufi Ara bic", sans-serif; font-weight: 700;
	font-size: 58px;
	line-height: 70px;
	color: #094278;
	margin-bottom: 25px;
}

.career-list-top-main {
	margin-top: 40px;
}

.career-list-top-main h3 {
	font-family: "Noto Kufi Ara bic", sans-serif; font-weight: 700;
	font-size: 23px;
	line-height: 25px;
	margin-bottom: 15px;
}


.career-list-top-main ul li {
	width: 100%;
	list-style: none;
	padding-right: 25px;
	margin-bottom: 5px;
	color: #094278;
	background-image: url(assets/images/tick-blue.png);
	background-repeat: no-repeat;
	background-position: right top 5px
}

.career-list-main {
	width: 100%;
	padding-bottom: 140px;
}


/*------------------------------*/

.faq-section {
	padding-top: 120px;
}

.faq-accordion-container {
	margin: auto
}

.faq-accordion-item>a.active {
	width: 10px;
	height: 2px;
	background-color: #3399cc;
}

.faq-accordion-content {
	display: none;
	padding-left: 0;
	padding: 40px 40px 50px;
	border-left: none;
	border-radius: 15px;
}

.faq-accordion-content p {
	font-size: 16px;
	color: #094278;
	font-weight: 400;
	margin: 0;
}

.faq-accordion-content h4 {
	font-size: 16px;
	line-height: 24px;
	color: #094278;
	font-weight: 500;
}

.faq-accordion-content p {
	margin-bottom: 20px;
}

.faq-accordion-content b {
	margin-top: 10px;
	display: block;
}

.faq-accordion-content ul {
	margin-top: 10px;
	margin-bottom: 30px;
}

.faq-accordion-content ul li {
	width: 100%;
	list-style: none;
	padding-right: 25px;
	margin-bottom: 5px;
	font-size: 16px;
	color: #094278;
	background-image: url(assets/images/tick-blue.png);
	background-repeat: no-repeat;
	background-position: right top 5px
}

.faq-accordion-title {
	font-size: 23px;
	position: relative;
	width: 100%;
	cursor: pointer;
	font-family: "Noto Kufi Ara bic", sans-serif; font-weight: 700;
	color: #094278;
	padding: 25px 40px;
	padding-left: 65px;
	border-radius: 15px;

}

.faq-accordion-item {
	padding: 0px 0;
	position: relative;
	border: 1px solid #DFDFDF;
	border-radius: 15px;
}

.faq-accordion-item.active {
	margin-bottom: 20px;
}


.faq-accordion-item .plus_minus {
	--side: -6px;
	--sizex: 15px;
	--sizey: 3px;
}

.faq-accordion-title i {
	position: absolute;
	left: inherit;
	left: 40px;
	top: 30px;
}

.faq-accordion-item .plus_minus::after,
.faq-accordion-item .plus_minus::before {
	display: none;
}

.faq-accordion-item .plus_minus::before {
	height: var(--sizex);
	width: var(--sizey);
	top: var(--side);
}

.faq-accordion-item .plus_minus::after {
	width: var(--sizex);
	height: var(--sizey);
	left: var(--side);
}


.faq-accordion-title.active .plus_minus::before {
	opacity: 0;
	visibility: hidden;
}

.faq-accordion-title.active {
	background-color: #89A386;
	color: #fff;
}

.faq-accordion-item .faq-accordion-title.active .plus_minus::after,
.faq-accordion-item .faq-accordion-title.active .plus_minus::before {
	background-color: #fff;
}

.career-btn-main {
	display: flex;
	margin-top: 20px;
	column-gap: 15px;
	flex-wrap: wrap;
}

.career-btn-main .green-btn.darkblue {
	margin-bottom: 10px;
}

.green-btn.darkblue {
	background-color: #094278;
	border: 1px solid #094278;
	color: #fff;
}

.green-btn.darkblue:hover {
	background-color: #B5BF35;
	border: 1px solid #B5BF35;
}

.career-btn-main .green-btn.border {
	background-color: #fff;
	border: 1px solid #094278;
	color: #094278;
}

.career-btn-main .green-btn.border:hover {
	background-color: #B5BF35;
	border: 1px solid #B5BF35;
	color: #fff;
}

.upload-cv-btn {
	text-align: center;
	margin-top: 50px;
}

.contact-main-wrapper {
	width: 100%;
	padding-bottom: 90px;
}

.contact-main-inner {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.contact-address {
	width: 40%;
	padding: 50px 0;
}

.address-box {
	margin-top: 20px;
	padding-right: 35px;
	position: relative;
}

.contact-address a {
	color: #21457B;
	font-size: 16px;
	line-height: 20px;
}

.contact-address a:hover {
	color: var(--color-primary);
}

.contact-address h3 {
	font-family: "Noto Kufi Ara bic", sans-serif; font-weight: 700;
	margin-top: 45px;
}

.contact-icon {
	position: absolute;
	right: 0;
	top: 0;
}

.contact-form-main {
	width: 50%;
	padding: 70px;
	margin-top: -50px;
	margin-right: auto;
	background-color: #89A386;
	-webkit-rder-radius: 17px;
	-moz-rder-radius: 17px;
	border-radius: 17px;
	color: #fff;
}

.contact-form-main .main-title {
	color: #fff;
	margin-bottom: 45px;
}

.contact-form-main p {
	color: #fff;
}

.contact-form-inner {
	width: 100%;
	margin-top: 50px;
}

.contact-form {
	width: 100%;
}

.contact-form li {
	width: 100%;
	margin-bottom: 20px;
}

.contact-form li input::placeholder {
	color: #fff;
}

.contact-form li textarea::placeholder {
	color: #fff;
}

.contact-form li input {
	width: 100%;
	background-color: transparent;
	color: #fff;
	height: 45px;
	line-height: 45px;
	font-size: 13px;
	border: none;
	text-align: right;
	border-bottom: 1px solid #fff;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}

.contact-form .nice-select {
	width: 100%;
	background-color: transparent;
	color: #fff;
	height: 45px;
	line-height: 45px;
	font-size: 13px;
	border: none;
	border-bottom: 1px solid #fff;
	border-radius: 0;
	padding-right: 0;
}

.contact-form .nice-select .option {
	color: #094278;
	margin-bottom: 5px;
}

.contact-form .nice-select::after {
	background-image: url(assets/images/select-arrow-white.png) !important;
}


.contact-form li textarea {
	width: 100%;
	background-color: transparent;
	color: #fff;
	height: 110px;
	min-height: auto;
	line-height: 20px;
	font-size: 13px;
	border: none;
	border-bottom: 1px solid #fff;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}

.contact-form .form-submit.green-btn {
	background-color: #fff;
	border: none;
	outline: none;
	color: #094278;
	padding: 0px 60px;
	margin-top: 20px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.contact-form .form-submit.green-btn:hover {
	background-color: #094278;
	color: #fff;
}

.partner_popup {
	width: 100%;
	max-width: 900px;
	padding: 60px;
	background-color: #89A386;
	-webkit-rder-radius: 17px;
	-moz-rder-radius: 17px;
	border-radius: 17px;
	color: #fff;
}

.partner_popup .main-title {
	color: #fff;
	margin-bottom: 40px;
	line-height: 60px;
}

.partner_popup .carousel__button.is-close {
	display: none;
}

.partner-listing-wrap.partner-page ul li a {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;

}

.partner-listing-wrap.partner-page ul li {
	padding: 0px;
}

.map-main {
	width: 100%;
	height: 440px;
}


.how-help-bottom-main-wrapper {
	width: 100%;
	padding-top: 50px;
	padding-bottom: 120px;
}

.how-help-bottom-main-wrapper ul {
	margin-left: -2%;
	margin-right: -2%;
	display: flex;
	flex-wrap: wrap;
}

.how-help-bottom-main-wrapper ul li {
	width: 46%;
	margin-left: 2%;
	margin-right: 2%;
	border: 1px solid #E3E3E3;
}

.help-bottom-img img {
	width: 100%;
}

.help-bottom-content {
	width: 100%;
	padding: 50px 40px 40px;
}

.help-bottom-content h3 {
	font-size: 28px;
	font-family: "Noto Kufi Ara bic", sans-serif; font-weight: 700;
	margin-bottom: 15px;
}

.help-bottom-content .green-btn.darkblue {
	margin-top: 15px;
}


.submenu-main-container {
	background-color: #91AD8D;
 padding: 20px 40px 20px;
	display: none;
	position: absolute;
	top: 60px;
	left: 0;
	width: 1000px;
	-webkit-border-radius: 0 0 30px 30px;
	-moz-border-radius: 0 0 30px 30px;
	border-radius: 0 0 30px 30px;
}

.submenu-main-container a{
	   font-weight: 400 !important;
}

.submenu-main-container-inner {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.submenu-content {
	width: 60%;
	padding-left: 80px;
}

.categorized_submenu .submenu-content{ width: 100%;}

.submenu-list {
	width: 40%;
}

.submenu-content .main-title {
	color: #fff;
	margin-bottom: 20px;
}


.submenu-list-wrap .submenu-list {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}


.submenu-list-wrap .submenu-list ul{ margin-right: auto; width:55%;}

.submenu-list-wrap .submenu-list span{
      color: #fff;
    font-size: 18px;
    line-height: 22px;
    text-transform: capitalize;
    /* font-family: "futura_stdheavy" !important; */
}


.submenu-list-wrap .submenu-list + .submenu-list {
	margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid #fff;
}


.submenu-list-wrap{ width: 100%;}


.submenu-content p {
	color: #fff;
}

.submenu-list ul li {
	padding: 4px 0px;
	border-bottom: 1px solid #99BC95;
}

.submenu-list ul li:last-child {
	border-bottom: none;
}

.submenu-list ul li a {
	font-size: 17px;
	line-height: 22px;
}

.submenu-list ul li+li {
	margin-right: 0px;
}

.menu-ul li.submenu {
	background-image: url(assets/images/menu-arrow.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 20px;
	background-size: 10px;
}

.menu-ul li.submenu:hover>.submenu-main-container {
	display: block;
}


.how-programmes-main-wrapper .main-title {
	font-size: 45px;
	line-height: 55px;
}

.project-aims-section .main-title {
	text-transform: inherit;
}

.corporate-governance-content .event-slider-location,
.corporate-governance-content .event-slider-date {
	padding: 4px 10px 2px;
	line-height: 23px;
	background-image: none;
}

.university-reports-main .green-btn.blue-border {
	margin-top: 20px;
}

.green-btn.blue-border {
	background-color: #fff;
	border: 1px solid #094278;
	color: #094278;
}

.green-btn.blue-border:hover {
	background-color: #094278;
	border: 1px solid #094278;
	color: #fff;
}

.faq-accordion-item .plus_minus {
	width: 23px;
	height: 23px;
	background-color: #094278;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	background-image: url(assets/images/arrow-down.png);
	background-repeat: no-repeat;
	background-position: center;
}

.faq-accordion-item .faq-accordion-title.active .plus_minus {
	background-color: #fff;
	background-image: url(assets/images/arrow-up.png);
}


.about-proposition-section {
	width: 100%;
	padding: 110px 0;
}

.proposition-section-ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-left: -1%;
	margin-right: -1%;
}

.proposition-section-ul li {
	width: 14%;
	margin-left: 1%;
	margin-right: 1%;
	position: relative;
}

.proposition-section-ul li img {
	width: 100%;
}

.proposition-section-ul li:nth-child(even) {
	margin-top: 50px;
}

.value-text-main {
	position: absolute;
	margin: 0 auto;
	left: 0;
	right: 0;
	top: 60px;
	width: 100%;
	max-width: 85px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.value-text-icon {
	margin-bottom: 10px;
}

.value-text-main h4 {
	font-size: 16px;
	line-height: 26px;
	font-weight: 600;
	color: #094278;
	width: 100%;
	text-align: center;
}

.value-text-main p {
	font-size: 16px;
	line-height: 17px;
	color: #094278;
	text-align: center;
}


.impact_para {
	max-width: 680px;
}

.impact_para p {
	color: #094278;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	margin: 30px 0 50px 0;
}

.impact_list {
	display: flex;
	flex-wrap: wrap;
	row-gap: 30px;
}

.impact_list li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 50%;
}

.impact_list li .impact_num {
	background-color: #21457B;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.impact_list li h5 {
	margin: 0;
	color: #FFF;
	font-size: 48px;
	font-style: normal;
	font-weight: 650;
	line-height: 50px;
	letter-spacing: -0.5px;
	text-transform: capitalize;
	font-family: "Noto Kufi Arabic", sans-serif;
}

.impact_list li p {
	/* width: calc(100% - 120px); */
	max-width: 430px;
	padding-left: 30px;
	color: #094278;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 25px;
}

.prg_imact_wraper {
	padding: 100px 0;
}

.impact_para {
	max-width: inherit !important;
}

.prg_collabe .impact_para {
	max-width: inherit;
}

.leader_pic img {
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.prg_key_pic {
	border-radius: 16px;
	border: 1px solid #DFDFDF;
	padding: 10px;
	display: inline-block;
	margin-top: 35px;
}

.prg_key_pic img {
	border-radius: 16px;
}

.prg_image_list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -1.5%;
	row-gap: 25px;
}

.prg_image_list li {
	width: 17%;
	margin: 0 1.5%;
}

.prg_image_list.more_list {
	margin: 0 .5%;
}

.prg_image_list.more_list li {
	width: 15%;
	margin: 0 .5%;
}

.prg_image_list.more_list li .list_pic {
	padding: 50px 30px;
}

.prg_image_list li .list_pic {
	-webkit-border-radius: 20px 20px 20px 65px;
	-moz-border-radius: 20px 20px 20px 65px;
	border-radius: 20px 20px 20px 65px;
	border: 1px solid #094278;
	background: #21457B;
	padding: 40px 25px;
}

.prg_image_list li.w_auto {
	width: auto !important;

}

.prg_image_list .list_pic_auto {
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
	border: 1px solid #DFDFDF;
	padding: 10px;
}

.prg_image_list li.w_auto img {
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
}

.list_pic img {
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.prg_image_list_sec {
	padding-top: 60px;
}

.ach_marg {
	padding-top: 130px;
}

.prg_ach_top_set {
	display: flex;
	justify-content: space-between;
}

.top_arch_para {
	width: 80%;
}

.top_arch_para p {
	margin-bottom: 20px;
}

.top_arch_para p:last-child {
	margin-bottom: 0;
}

.top_ach_img {
	width: 15%;
	border-radius: 20px 20px 20px 65px;
	border: 1px solid #094278;
	background: #02205D;
	padding: 50px 25px;
	display: flex;
	align-items: center;
}

.nice-select.open .list {
	row-gap: 0 !important;
	overflow: auto;
}

.about-proposition-section-p ul {
	padding-left: 20px;
	margin-top: 15px;
}

.about-proposition-section-p ul li {
	width: 100%;
	margin-bottom: 10px;
	color: #094278;
	list-style: circle;
}

.programme-objectictives-section {
	padding: 70px 0;
	background-color: #F4FBFE;
}

.programme-objectictives-first {
	text-align: center;
}

.programme-objectictives-first .main-title {
	margin-bottom: 20px;
}

.programme-objectictives-list {
	width: 100%;
	margin-top: 30px;
}

.programme-objectictives-list ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	row-gap: 15px;
}

.programme-objectictives-list ul li {
	width: 49%;
	background-color: #E7F2FF;
	border-radius: 95px;
	padding: 5px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.programme-icon {
	width: 92px;
	height: 92px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	background-color: #fff;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}

.programme-icon-content {
	width: calc(100% - 92px);
	padding: 0px 15px 0 30px;
}

.programme-objectictives-bottom {
	width: fit-content;
	margin: 0 auto;
	margin-top: 40px;
	background-color: #094278;
	padding: 20px 30px;
	-webkit-border-radius: 12px 32px 12px 32px;
	-moz-border-radius: 12px 32px 12px 32px;
	border-radius: 12px 32px 12px 32px;
}

.programme-objectictives-bottom p {
	color: #fff;
}

.programme-archivement-section {
	padding: 30px 0;
}

.programme-archivement-inner {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.programme-archivement-img {
	width: 38%;
}

.programme-archivement-img img {
	width: 100%;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
}

.programme-archivement-content {
	width: 62%;
	padding-right: 30px;
}

.programme-archivement-content .main-title {
	line-height: 55px;
	margin-bottom: 20px;
}

.programme-archivement-content ul li {
	position: relative;
	padding-right: 20px;
	margin-bottom: 10px;
	color: #094278;
}

.programme-archivement-content ul li::after {
	content: "";
	width: 6px;
	height: 6px;
	position: absolute;
	right: 0;
	top: 8px;
	background-color: #094278;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}

.programme-archivement-content p {
	margin-bottom: 20px;
}

.home-partners-section.detail-page .main-title.text-left {
	text-align: left;
	margin-bottom: 20px;
}

.home-partners-video {
	padding: 50px 0 60px;
}

.home-partners-video img {
	width: 100%;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	border-radius: 16px;
}

.practice-gallery-section {
	width: 100%;
	padding: 70px 0 140px;
}

.practice-gallery-section ul {
	width: 100%;
	max-width: 800px;
	display: flex;
	margin: 0 auto;
}

.practice-gallery-section ul li {
	width: 25%;
	min-height: 440px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.practice-gallery-section ul li:nth-child(1),
.practice-gallery-section ul li:nth-child(3) {
	top: 40px;
	position: relative;
}

.practice-gallery-section ul li:hover {
	width: 50%;
}

.programme-msg-section {
	width: 100%;
	padding: 70px 0 30px;
}

.programme-msg-section-inner {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	row-gap: 40px;

}

.programme-msg-box {
	width: 85%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background-color: #21457B;
	border-radius: 86px 28px 28px 28px;
	padding: 40px;
}

.programme-msg-content {
	width: 65%;
}

.programme-msg-img {
	padding-right: 5%;
	width: 35%;
}

.programme-msg-content p {
	color: #fff;
}

.programme-msg-img-main {
	width: 100%;
	max-width: 250px;
	overflow: hidden;
	-webkit-border-radius: 20px 20px 65px 20px;
	-moz-border-radius: 20px 20px 65px 20px;
	border-radius: 20px 20px 65px 20px;
}

.programme-msg-img-main img {
	width: 100%;
}

.programme-msg-img-title {
	margin-top: 10px;
}

.programme-msg-img-title h4 {
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	color: #FFFFFF;
	margin-bottom: 5px;
}

.programme-msg-img-title p {
	font-size: 13px;
	color: #FFFFFF;
}

.programme-msg-box:nth-child(2n) {
	margin-right: auto;
	background-color: #E7F2FF;
}

.programme-msg-box:nth-child(2n) .programme-msg-content p,
.programme-msg-box:nth-child(2n) .programme-msg-img-title h4,
.programme-msg-box:nth-child(2n) .programme-msg-img-title p {
	color: #00386E;
}

.share-box {
	margin-top: -44px;
	justify-content: flex-end;
}

.white-btn+.share-box {
	margin-top: -44px;
}

.share-box,
.share-box ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.share-box a {
	color: #FFFFFF;
}

.share-box img {
	filter: brightness(8);
}

.share-box ul {
	margin-left: 0;
	margin-right: 15px;
	column-gap: 10px;
}

.share-box ul a {
	display: block;
	width: 38px;
	height: 38px;
	line-height: 38px;
	text-align: center;
	color: #FFFFFF;
	background: #21457B;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	border-radius: 100%;
}

.share-box ul a:hover {
	background: var(--color-primary);
}
.owl-prev.disabled{ opacity: 0.5 !important;   }
/* .owl-prev.disabled::after{ display: block; content: ""; width: 100%; height: 100%; position: absolute; top: 0; left: 0; } */

.address-box a{ direction: ltr; display: inline-block;}

@media (max-width: 600px) {
	.share-box {
		margin-top: 25px;
		justify-content: flex-start;
	}

	.share-box,
	.white-btn+.share-box {
		margin-top: 25px;
	}
}





.hm-partner-listing-wrap{
	display:flex;
	flex-wrap:wrap;
	row-gap:15px;
	margin:50px -0.6% 0px;
}
.hm-partner-listing-wrap li{
	display:flex;
	align-items:center;
	justify-content:center;
	border:1px solid #E3E3E3;
	border-radius:16px;
	height:106px;
	width:15.46%;
	margin:0px 0.6%;
	padding:10px;
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.hm-partner-listing-wrap li:hover{
	box-shadow: 6px 6px 14px 2px rgba(0, 0, 0, 0.1);
}


.hm-partner-listing-wrap li img{ max-width: 100%; max-height: 100%; object-fit: contain;}










/* --------------------------------main style------------------------------------- */


.single-programmes .team-first-section-inner ul {
	line-height: 24px;
	margin-bottom: 10px;
	padding-right: 15px;
}

.single-programmes .team-first-section-inner ul li {
	display: block;
	line-height: 24px;
	color: #094278;
	position: relative;
}

.single-programmes .team-first-section-inner ul li::after {
	content: "";
	width: 8px;
	height: 8px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	background-color: #094278;
	position: absolute;
	right: -20px;
	top: 8px;
}

.single-programmes .programme-objectictives-bottom a {
	color: var(--color-primary);
}

.header-options {
	display: flex;
	align-items: center;
}

.wpml-ls-legacy-list-horizontal a {
	color: #fff;
	font-size: 15px;
}

.wpml-ls-legacy-list-horizontal,
.wpml-ls-legacy-list-horizontal a {
	padding: 0 !important;
}

.text-justify {
	text-align: justify;
}


.submenu-main-container .main-title a{ font-size: 25px !important;}

.newsletter-msg.nf-response-msg.newsletter-success{
      color: #fff;
    font-size: 13px;
    padding-top: 5px;
}

.nf-error-msg.nf-error-field-errors{
   color: #da3d3d;
    font-size: 13px;
    padding-top: 5px;
}

/* --------------------------------responsive style------------------------------------- */

@media (min-width: 768px) {
	.header li:hover .mob-menu-icn {
		transform: scaleY(-1);
	}

	.sub-menu {
		position: absolute;
		left: 0;
		top: 100%;
		opacity: 0;
		visibility: hidden;
	}
}

/* --------------------------------------------------- */

@media (max-width: 1800px) {
.evoltion-slider-date{
    font-size: 65px;
}
}

@media (max-width: 1600px) {
	.header .container {
		max-width: 1300px;
	}

	.impact-box h3 {
		font-size: 75px;
		line-height: 70px;
	}

	.impact-box h4 {
		font-size: 24px;
		line-height: 30px;
	}

	.impact-box p {
		font-size: 18px;
		line-height: 25px;
	}

	.hme-about-section {
		padding: 80px 0px;
	}

	.home-about-content .main-title {
		line-height: 50px;
		margin-bottom: 28px;
	}

	.main-title {
		font-size: 35px;
	}

	.home-about-content .green-btn {
		margin-top: 20px;
	}

	.our-imapact-section {
		padding: 80px 0px;
	}

	.our-impact-inner {
		margin-top: 30px;
	}

	.partner-slider-main {
		margin-top: 30px;
	}

	.home-video-section {
		padding: 50px 0 100px;
	}

	.home-programe-section {
		padding: 80px 0px 50px;
	}

	.home-news-publication-section {
		padding: 100px 0px 90px;
	}

	.main-home-news {
		margin-top: 90px;
	}

	.publication-first-content {
		padding: 35px;
	}

	.publication-first-content label {
		left: 35px;
	}

	.footer {
		padding: 100px 0 38px 0;
	}

	.footer h4 {
		margin: 0 0 25px 0;
	}

	.ouicklinks a {
		font-size: 15px;
	}

	.main-media-content p {
		margin-top: 10px;
		font-size: 17px;
		line-height: 24px;
	}

	.sub-banner h1 {
		font-size: 55px;
		line-height: 55px;
	}

	.breadcrumbs a {
		font-size: 18px;
	}

	.about-main-section-inner {
		padding: 60px 0 80px;
	}

	.about-main-left-content h4 {
		font-size: 115px;
		line-height: 100px;
	}

	.about-main-left-content {
		width: 56%;
		padding-right: 40px;
	}

	.main {
		overflow: hidden;
	}

	.value-box {
		min-height: 470px;
		padding: 40px;
	}

	.value-box-content h3 {
		font-size: 38px;
		line-height: 45px;
		margin-bottom: 55px;
	}

	.value-box-icon {
		min-height: 90px;
	}

	.value-box-icon img {
		max-height: 80px;
	}

	.evolution-second-section {
		margin-top: 55px;
	}

	.about-evolution-section {
		padding: 60px 0px 100px;
	}

	.evoltion-slider-date {
		min-height: 120px;
		line-height: 46px;
		font-size: 70px;
		padding-right: 30px;
		    padding-bottom: 20px;
	}

	.evoltion-slider-date::before {
		content: "";
		width: 35px;
		height: 126px;
	}

	.evoltion-slider-content {
		padding: 20px 30px 0px 20px;
	}

	.team-first-section {
		padding: 90px 0 130px;
	}

	.founder-message {
		width: 65%;
		padding-right: 140px;
	}

	.founder-message h2 {
		font-size: 50px;
		line-height: 60px;
		margin-bottom: 30px;
	}

	.founder-message h4 {
		font-size: 20px;
		line-height: 24px;
		margin-bottom: 15px;
	}

	.founder-image::after {
		content: "";
		width: 120px;
		height: 110px;
		bottom: -40px;
		left: -65px;
	}

	.team-second-section {
		padding: 90px 0px;
	}

	.team-second-section .main-title {
		margin-bottom: 10px;
	}

	.team-list-main ul {
		row-gap: 15px;
	}

	.partner-main-nav ul li a {
		line-height: 45px;
		font-size: 18px;
	}

	.partner-full-section {
		padding-top: 40px;
	}

	.partner-title-main .main-title {
		margin-bottom: 15px;
	}

	.partner-main-nav {
		margin-bottom: 40px;
	}

	.partner-listing-wrap ul {
		row-gap: 20px;
	}

	.partner-main-listing {
		padding: 90px 0px;
	}

	.page-menu {
		min-height: 60px;
		-webkit-border-bottom-left-radius: 20px;
		-moz-border-bottom-left-radius: 20px;
		border-bottom-left-radius: 20px;
		-webkit-border-bottom-right-radius: 20px;
		-moz-border-bottom-right-radius: 20px;
		border-bottom-right-radius: 20px;
	}

	.page-menu .page-menu-inner a {
		line-height: 60px;
	}

	.corporate-governance-wrapper {
		padding: 60px 0px 110px;
	}

	.corporate-governance-img {
		border-radius: 15px 15px 0px 15px;
	}

	.corporate-governance-content {
		padding: 15px 65px 15px 0;
	}

	.corporate-governance-wrapper ul {
		margin-top: 60px;
	}

	.key-objects-section h2 {
		font-size: 110px;
		line-height: 100px;
	}

	.anti-corruption-message {
		padding: 40px 55px;
		-webkit-border-radius: 17px 17px 50px 17px;
		-moz-border-radius: 17px 17px 50px 17px;
		border-radius: 10px 10px 50px 10px;
	}

	.anti-corruption-image-inner {
		-webkit-border-radius: 10px 50px 10px 10px;
		-moz-border-radius: 10px 50px 10px 10px;
		border-radius: 10px 50px 10px 10px;
	}

	.anti-corruption-message p {
		color: #fff;
		font-size: 20px;
		line-height: 28px;
	}

	.anti-corruption-message-title {
		margin-top: 10px;
	}

	.anti-corruption-message-title h4 {
		font-size: 28px;
		line-height: 28px;
	}

	.key-objects-section ul li {
		min-height: 120px;
		padding: 25px 50px 25px 70px;
	}

	.achivements-title h2 {
		font-size: 110px;
		line-height: 100px;
	}

	.leader-ship-inner-box-main {
		row-gap: 30px;
	}

	.achivements-title h4 {
		font-size: 45px;
		line-height: 40px;
	}


	.achivements-main-wrapper {
		padding: 100px 0px 35px;
	}

	.anti-corruption-main-wrapper .founder-message {
		padding-left: 90px;
	}


	.home-news-publication-section.governance-news {
		padding: 100px 0px;
	}

	.leader-ship-section {
		width: 100%;
		padding: 70px 0px 51px;
	}

	.programe-activities-section {
		padding: 50px 0px 0px;
	}

	.leader-ship-inner-box {
		-webkit-border-radius: 20px 50px 20px 20px;
		-moz-border-radius: 20px 50px 20px 20px;
		border-radius: 20px 50px 20px 20px;
		padding: 20px;
		min-height: auto;
	}

	.leader-ship-content p {
		font-size: 20px;
		line-height: 30px;
	}

	.leader-ship-image {
		-webkit-border-radius: 10px 40px 10px 10px;
		-moz-border-radius: 10px 40px 10px 10px;
		border-radius: 10px 40px 10px 10px;
	}

	.leadership-message-title h4 {
		font-size: 24px;
		line-height: 28px;
	}

	.programe-activities-section h2 {
		font-size: 52px;
		line-height: 50px;
		margin-bottom: 15px;
	}

	.programe-activities-section-inner {
		margin-top: 45px;
	}

	.programe-activities-box ul li h4 {
		font-size: 20px;
		line-height: 20px;
	}

	.corporate-governance-overview-inner p {
		margin-bottom: 30px;
	}

	.collabration-main-section.intergrated {
		padding-top: 30px;
	}

	.collabration-main-section {
		padding-bottom: 80px;
	}

	.collabration-main-section ul {
		margin-top: 30px;
	}

	.governance-overview-img {
		margin-left: 110px;
		margin-bottom: 80px;
	}

	.howtowork-first-section {
		padding-top: 100px;
	}

	.how-to-get-video {
		margin-bottom: 60px;
	}

	.anti-corruption-main-wrapper {
		padding: 80px 0px 80px;
	}

	.how-programmes-main-wrapper {
		padding: 60px 0 100px;
	}

	.programmes-inner-main {
		margin-top: 45px;
	}

	.programmes-box {
		padding: 25px;
		padding-bottom: 120px;
	}

	.white-btn.blue-btn {
		bottom: 40px;
		right: 25px;
	}

	.programmes-box h3 {
		margin-bottom: 25px;
	}

	.programmes-box ul {
		margin-top: 25px;
	}

	.programmes-box ul li a {
		line-height: 20px;
	}

	.family-firm-bottom-section ul li h3 {
		font-size: 25px;
		line-height: 30px;
	}

	.overview-full-width {
		padding: 50px 0px 10px;
	}

	.project-aims-section {
		padding-top: 40px;
	}

	.project-aims-list {
		margin-top: 30px;
	}

	.project-aims-list li {
		padding: 40px 30px 30px;
	}

	.project-aims-list li p {
		font-size: 20px;
		line-height: 32px;
	}

	.philanthropy-icon {
		max-height: 80px;
		margin-bottom: 35px;
	}

	.philanthropy-icon img {
		height: 80px;
	}

	.project-aims-section p {
		margin-bottom: 25px;
	}

	.project-aims-section .green-btn {
		margin-bottom: 30px;
	}

	.corporate-governance-overview {
		padding: 50px 0 65px;
	}

	.governance-bottom-contact {
		margin-bottom: 70px;
	}

	.family-firm-bottom-section .main-title {
		margin-bottom: 35px;
	}

	.family-firm-bottom-section {
		padding: 20px 0px 70px;
	}

	.student-progress-section {
		padding: 110px 0px 120px;
	}

	.progress-box {
		padding: 20px;
	}

	.main-events-slider {
		margin-bottom: 85px;
	}

	.recent-events-filter {
		padding-top: 45px;
	}

	.recent-events-filter-inner {
		padding-bottom: 45px;
	}

	.recent-events-section {
		padding: 65px 0px 115px;
	}

	.event-slider-date {
		font-size: 12px;
	}

	.event-slider-location {
		font-size: 11px;
	}

	.main-media-content h3 {
		font-size: 20px;
		line-height: 25px;
	}

	.main-media-content span.events {
		font-size: 12px;
	}

	.featured-event-first {
		padding: 35px 40px;
	}

	.featured-event-first .main-media-content h3 {
		font-size: 26px;
		line-height: 32px;
	}

	.event-slider-time {
		margin-top: 15px;
	}

	.recent-events-section-inner {
		margin-top: 25px;
	}

	.recent-events-section-inner ul {
		row-gap: 55px;
	}

	.sub-banner .main-title {
		line-height: 45px;
	}

	.sub-banner.detail-page p {
		font-size: 18px;
	}

	.sub-banner.detail-page .date {
		margin-bottom: 10px;
	}

	.sub-banner.detail-page .date {
		font-size: 14px;
	}

	.event-name {
		font-size: 12px;
		line-height: 25px;
		font-weight: bold;
		padding: 0px 10px;
	}

	.detail-page .white-btn {
		height: 42px;
		line-height: 44px;
		margin-top: 8px;
	}

	.events-detail-top-section {
		padding: 100px 0 30px;
	}

	.event-detail-content-text p {
		margin-bottom: 15px;
	}

	.event-detail-content-social {
		margin-top: 60px;
	}

	.events-detail-text-section {
		padding: 45px 0px 70px;
	}

	.event-social-inner ul li {
		width: 75px;
		height: 75px;
	}


	.corporate-governance-wrapper.gray-banner {
		padding: 65px 0px 80px;
	}

	.corporate-governance-wrapper.gray-banner ul {
		margin-top: 25px;
	}

	.related-news-section {
		padding: 70px 0 90px;
	}

	.related-news-slider {
		margin-top: 30px;
	}

	.owl-carousel.related-news .owl-nav button.owl-prev,
	.owl-carousel.related-news .owl-nav button.owl-next {
		top: -45px;
	}

	.event-list-content h4 {
		font-size: 22px;
		line-height: 25px;
	}

	.news-filter-inner {
		padding-bottom: 40px;
	}

	.news-detail-top-section {
		padding: 80px 0 65px;
	}

	.news-detail-top-section img {
		margin-top: 15px;
		margin-bottom: 50px;
	}

	.corporate-partner-full-section {
		padding: 80px 0;
	}

	.university-bottom-section {
		padding: 80px 0px 60px;
	}

	.our-imapact-top-section {
		padding: 90px 0px;
	}

	.our-impact-list-main h3 {
		font-size: 25px;
	}

	.our-impact-list-main {
		margin-top: 35px;
	}

	.our-impact-list-main ul {
		margin-top: 35px;
	}

	.our-impact-list-main ul li {
		margin-bottom: 20px;
	}

	.our-impact-list-main ul li {
		padding: 10px 20px;
	}

	.our-imapact-section {
		padding: 65px 0px;
	}

	.about-evolution-section.impact {
		padding: 80px 0px 100px;
	}

	.publication-list-section {
		padding: 30px 0px 100px;
	}

	.publication-filter-inner {
		padding-bottom: 40px;
	}

	.publication-list-btn {
		margin-top: 15px;
		column-gap: 10px;
	}

	.news-publication-top-section {
		padding: 90px 0 70px;
	}

	.news-publication-inner {
		padding: 25px;
	}

	.news-publication-top-left img {
		margin: 35px 0;
	}

	.for-business-wrapper {
		padding: 80px 0px;
	}

	.for-business-wrapper ul li {
		width: 47%;
		padding: 35px;
		padding-bottom: 100px;
		margin-bottom: 40px;
		min-height: 360px;
	}

	.for-business-wrapper ul li .main-title {
		line-height: 50px;
	}

	.compatition-overview {
		padding: 110px 0px 100px;
	}

	.compatition-overview-content {
		padding-right: 115px;
	}

	.compatition-overview:nth-child(2n+1) .compatition-overview-content {
		padding-right: 0px;
		padding-left: 115px;
	}

	.compatition-overview-content h2 {
		font-size: 50px;
		line-height: 55px;
		margin-bottom: 20px;
	}

	.compatition-overview-content p {
		margin-bottom: 15px;
	}

	.related-news-section.bussiness-related {
		padding-top: 120px;
	}

	.career-overview {
		padding: 80px 0px;
	}

	.career-top-content {
		padding-right: 100px;
	}

	.career-top-content h2 {
		font-size: 50px;
		line-height: 55px;
		margin-bottom: 15px;
	}

	.career-list-top-main {
		margin-top: 25px;
	}

	.career-list-top-main h3 {
		font-size: 20px;
		line-height: 22px;
		margin-bottom: 10px;
	}

	.faq-accordion-title {
		font-size: 22px;
	}

	.career-list-main {
		padding-bottom: 110px;
	}

	.partner_popup {
		padding: 45px;
	}

	.partner_popup .main-title {
		margin-bottom: 20px;
		line-height: 55px;
	}

	.contact-form-main {
		padding: 55px;
	}

	.contact-form-main .main-title {
		margin-bottom: 25px;
	}

	.contact-form-inner {
		margin-top: 30px;
	}

	.how-help-bottom-main-wrapper {
		width: 100%;
		padding-top: 50px;
		padding-bottom: 100px;
	}

	.submenu-main-container {
		padding: 40px;
		width: 900px;
	}

	.submenu-list ul li a {
		font-size: 18px;
		line-height: 20px;
	}

	.submenu-list ul li {
		padding:5px 0px;
	}

	.submenu-content .main-title {
		margin-bottom: 10px;
	}

	.home-partners-section.detail-page {
		padding-bottom: 90px;
	}

	.compatition-overview:nth-child(even) .compatition-overview-content {
	padding-right: 0px;
	padding-left: 80px;
}


.anti-corruption-main-wrapper .founder-message {
	padding-right: 90px;
}

.evoltion-slider-date{
	    font-size: 60px;
}


}

@media (max-width: 1400px) {
	.header .container {
		max-width: 90%;
	}

	.container {
		max-width: 84%;
	}

	.menu-ul li+li {
		margin-right: 30px;
	}

	.right-txt {
		left: 2%;
	}

	.banner-top-text p {
		font-size: 16px;
		line-height: 20px;
	}

	.banner-top-content {
		bottom: 45px;
	}

	.home-about-content p {
		font-size: 17px;
		line-height: 25px;
	}

	.about-right-main {
		padding: 20px 25px;
	}

	.home-about-right ul li h3 {
		font-size: 20px;
	}

	p {
		font-size: 15px;
		line-height: 24px;
	}

	.our-imapact-section {
		padding: 70px 0px;
	}

	.main-title {
		font-size: 35px;
	}

	.impact-box p {
		font-size: 17px;
		line-height: 24px;
	}

	.our-impact-inner ul li {
		padding: 25px;
	}

	.impact-box h3 {
		font-size: 55px;
		line-height: 60px;
	}

	.home-programe-section {
		padding: 70px 0px 40px;
	}

	.programes-main-inner ul li a {
		padding: 20px 25px;
	}

	.programes-main-inner ul li p {
		font-size: 18px;
		line-height: 26px;
	}

	.programes-main-inner {
		margin-top: 25px;
	}

	.partner-slider-main {
		margin-top: 25px;
	}

	.home-partners-section {
		padding: 30px 0px 40px;
	}

	.home-video-section {
		padding: 50px 0 80px;
	}

	.home-news-publication-section {
		padding: 90px 0px 80px;
	}

	.main-home-news {
		margin-top: 80px;
	}

	.publication-first-content p {
		font-size: 19px;
		line-height: 26px;
		margin-top: 15px;
	}

	.publication-first-content {
		padding: 30px;
	}


	.corporate-governance-overview-inner .main-title {
		line-height: 55px;
		font-size: 45px;
	}

	.how-programmes-main-wrapper .main-title {
		line-height: 55px;
		font-size: 45px;
	}

	.programe-activities-box>ul>li:nth-child(1) {
		min-width: 250px;
		padding: 0 0 0 30px;
		justify-content: center;
	}

	.programe-activities-box>ul>li {
		padding: 0 25px;
	}

	.impact_list li p {
		width: calc(100% - 120px);
	}

	.impact_list li h5 {
		font-size: 40px;
	}

	.impact_para p {
		font-size: 15px;
		line-height: 24px;
	}
}


@media (max-width: 1350px) {
	.proposition-section-ul li {
		width: 18%;
	}

	.proposition-section-ul ul {
		row-gap: 30px;
	}

	.proposition-section-ul ul li:nth-child(even) {
		margin-top: 0;
	}

	.programme-msg-box {
		width: 90%;
		padding: 30px;
	}

	.home-partners-section.detail-page {
		padding-bottom: 60px;
	}

	.practice-gallery-section {
		width: 100%;
		padding: 50px 0 120px;
	}

	.programme-archivement-content p {
		margin-bottom: 15px;
	}

	.anti-corruption-main-wrapper .founder-message {
	padding-right: 70px;
}
}

@media (max-width: 1250px) {
	.leader-ship-content {
		width: 75%;
	}

	.leader-ship-section {
		padding: 50px 0px 50px;
	}

	.proposition-section-ul {
		align-items: baseline;
	}

	.proposition-section-ul li {
		width: 20%;
	}

	.proposition-section-ul {
		row-gap: 30px;
	}

	.proposition-section-ul li:nth-child(even) {
		margin-top: 0;
	}
}

@media (max-width: 1200px) {
	.menu-ul a {
		font-size: 14px;
	}

	.menu-ul li+li {
		margin-right: 10px;
	}

	.hme-about-section {
		padding: 70px 0px;
	}

	.home-about-content .main-title {
		line-height: 45px;
		margin-bottom: 20px;
	}

	p {
		font-size: 14px;
	}

	.impact-box h3 {
		font-size: 60px;
		line-height: 60px;
	}

	.our-impact-inner ul li {
		padding: 20px;
	}

	.impact-box p {
		font-size: 16px;
		line-height: 23px;
	}

	.impact-box h4 {
		font-size: 20px;
		line-height: 26px;
	}

	.green-btn {
		height: 45px;
		line-height: 45px;
		font-size: 13px;
	}

	.home-programe-section {
		padding: 65px 0px 35px;
	}

	.partner-slider .owl-nav button.owl-next,
	.partner-slider .owl-nav button.owl-prev {
		width: 40px;
		height: 40px;
	}

	.partner-slider .owl-nav button.owl-prev {
		left: -50px;
	}

	.partner-slider .owl-nav button.owl-next {
		right: -50px;
	}

	.home-video-main a::after {
		content: "";
		width: 60px;
		height: 60px;
		background-size: 100%;
	}

	.media-slider-style .owl-nav button.owl-next {
		top: -22px;
	}

	.publication-first-content {
		padding: 22px;
	}

	.publication-first-content p {
		font-size: 17px;
		line-height: 25px;
		margin-top: 14px;
	}

	.publication-first-content label {
		left: 22px;
	}

	.second-title {
		font-size: 30px;
		line-height: 30px;
	}

	.media-slider-style {
		margin-top: 15px;
	}

	.media-slider-style .owl-nav button.owl-prev {
		top: -22px;
	}

	.media-slider-style .owl-nav button.owl-next,
	.media-slider-style .owl-nav button.owl-prev {
		width: 30px;
		height: 30px;
	}

	.newsletter_form button {
		width: 140px;
		font-size: 13px;
	}

	.ouicklinks ul {
		row-gap: 15px;
	}

	.ouicklinks a {
		font-size: 14px;
	}

	.footer {
		padding: 90px 0 20px 0;
	}

	.newsletter_form input {
		padding: 0 24px;
		width: calc(100% - 140px);
	}

	.main-media-content p {
		margin-top: 10px;
		font-size: 16px;
		line-height: 22px;
	}

	.about-icon {
		width: 66px;
		height: 66px;
		-webkit-border-radius: 15px;
		-moz-border-radius: 15px;
		border-radius: 15px;
	}

	.team-first-section {
		padding: 80px 0 100px;
	}

	/* .founder-message {
		padding-right: 90px;
	} */

	.founder-message h2 {
		font-size: 40px;
		line-height: 50px;
		margin-bottom: 20px;
	}

	.founder-message h4 {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 10px;
	}

	.founder-image::after {
		content: "";
		width: 100px;
		height: 90px;
		bottom: -40px;
		left: -40px;
	}

	.team-second-section {
		padding: 70px 0px;
	}

	.team-list-main ul li {
		width: 23%;
	}

	.corporate-governance-img {
		border-radius: 10px 10px 0px 10px;
	}

	.corporate-governance-content h3 {
		font-size: 25px;
		line-height: 30px;
		margin-bottom: 20px;
	}

	.corporate-governance-content a {
		max-width: 200px;
		margin-top: 30px;

	}

	.corporate-governance-wrapper ul {
		margin-top: 50px;
	}


	.anti-corruption-first-section {
		width: 100%;
		padding: 50px 0 30px;
	}

	.anti-corruption-message {
		padding: 35px 40px;
		margin-top: 40px;
	}

	.anti-corruption-message-title h4 {
		font-size: 22px;
		line-height: 20px;
	}

	.anti-corruption-message-title span {
		font-size: 15px;
		line-height: 22px;
	}

	.key-objects-section h2 {
		font-size: 85px;
		line-height: 80px;
	}

	.key-objects-section ul li span {
		content: "";
		width: 20px;
		height: 20px;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		background-color: #2A7CBB;
		position: absolute;
		left: -35px;
	}

	.key-objects-section ul li p span::after {
		content: "";
		width: 7px;
		height: 7px;
	}

	.anti-corruption-main-wrapper {
		padding: 70px 0px 70px;
	}

	.achivements-title h2 {
		font-size: 85px;
		line-height: 75px;
	}

	.achivements-title h4 {
		font-size: 33px;
		line-height: 35px;
	}

	.achivements-main-list ul {
		margin-left: -1%;
		margin-right: -1%;
	}

	.achivements-main-list ul li {
		width: 23%;
		margin-left: 1%;
		margin-right: 1%;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
		padding: 25px 15px 20px;
		background-color: #fff;
	}


	.anti-corruption-main-wrapper .founder-message {
		padding-left: 70px;
	}

	.home-news-publication-section.governance-news {
		padding: 80px 0px;
	}

	.leader-ship-content p {
		font-size: 18px;
		line-height: 28px;
	}

	.leader-ship-inner-box-main {
		row-gap: 30px;
	}

	.programe-activities-section {
		padding: 25px 0px 0px;
	}

	.programe-activities-section h2 {
		font-size: 40px;
		line-height: 40px;
		margin-bottom: 15px;
	}

	.compatition-overview-inner {
		align-items: flex-start;
	}

	.corporate-governance-overview-inner p {
		margin-bottom: 25px;
	}

	.corporate-governance-overview {
		padding: 50px 0 80px;
	}

	.collabration-main-section ul {
		margin-top: 25px;
	}

	.corporate-governance-overview-inner .main-title {
		margin-bottom: 15px;
	}

	.governance-bottom-contact {
		margin-bottom: 55px;
	}

	.sub-banner {
		min-height: 300px;
	}

	.sub-banner h1 {
		font-size: 40px;
		line-height: 45px;
	}

	.howtowork-first-section {
		padding-top: 70px;
	}

	.how-to-get-video {
		margin-bottom: 45px;
	}

	.how-programmes-main-wrapper {
		padding: 45px 0 80px;
	}

	.programmes-box h3 {
		font-size: 22px;
		line-height: 28px;
	}

	.programmes-box h3 {
		margin-bottom: 20px;
	}

	.programmes-inner-main {
		margin-top: 30px;
	}


	.programmes-box ul li a {
		padding: 10px 20px 10px 40px;
	}

	.programmes-box ul li::after {
		left: 12px;
		top: 9px;
	}

	.programmes-inner-main {
		margin-left: -1%;
		margin-right: -1%;
	}

	.programmes-box {
		width: 31.3%;
		margin-left: 1%;
		margin-right: 1%;
	}

	.programmes-box {
		padding: 15px;
		padding-bottom: 90px;
	}

	.white-btn.blue-btn {
		bottom: 22px;
		right: 15px;
		height: 45px;
		line-height: 45px;
	}

	.overview-full-width {
		padding: 50px 0px 0px;
	}

	.project-aims-section {
		padding-top: 30px;
	}

	.project-aims-list {
		margin-top: 25px;
	}

	.project-aims-list li {
		padding: 30px 20px 15px;
	}

	.project-aims-section .green-btn {
		margin-bottom: 25px;
	}

	.main-media-content h3 {
		font-size: 15px;
		line-height: 22px;
		margin-top: 10px;
	}

	.event-slider-time {
		row-gap: 5px;
	}

	.event-slider-time {
		margin-top: 15px;
	}

	.recent-events-filter {
		padding-top: 35px;
	}

	.recent-events-filter-inner {
		padding-bottom: 35px;
	}

	.recent-events-section {
		padding: 55px 0px 80px;
	}

	.featured-event-first {
		padding: 20px 25px;
	}

	.featured-event-first .main-media-content h3 {
		font-size: 25px;
		line-height: 30px;
	}

	.recent-events-section-inner {
		margin-top: 20px;
	}

	.featured-event-first {
		margin-bottom: 40px;
	}

	.recent-events-section-inner ul {
		row-gap: 40px;
	}

	.events-detail-top-section {
		padding: 70px 0 20px;
	}

	.event-list-icon {
		width: 100px;
		height: 100px;
		padding: 20px;
	}

	.event-list-content h4 {
		font-size: 18px;
		line-height: 23px;
		margin-bottom: 10px;
	}

	.events-detail-text-section {
		padding: 35px 0px 55px;
	}

	.event-detail-content-social {
		margin-top: 30px;
	}

	.event-social-inner ul li {
		width: 70px;
		height: 70px;
	}

	.event-social-inner ul li a {
		font-size: 22px;
	}

	.event-social-inner ul {
		column-gap: 15px;
	}

	.event-social-inner label {
		font-size: 16px;
		line-height: 25px;
		width: 115px;
	}

	.event-detail-content-text {
		padding-left: 50px;
	}

	.related-news-section {
		padding: 60px 0 70px;
	}

	.news-filter-inner {
		padding-bottom: 25px;
	}

	.sub-banner.detail-page {
		padding-bottom: 25px;
	}

	.sub-banner .main-title {
		line-height: 40px;
	}

	.university-bottom-section {
		padding: 60px 0px 50px;
	}

	.university-collabration-slider {
		padding-bottom: 40px;
		margin-bottom: 40px;
	}

	.university-report-slider {
		margin-top: 20px;
	}

	.university-slider1 {
		margin-top: 20px;
	}

	.owl-carousel.university-report-slider .owl-nav button.owl-prev,
	.owl-carousel.university-slider1 .owl-nav button.owl-prev,
	.owl-carousel.university-report-slider .owl-nav button.owl-next,
	.owl-carousel.university-slider1 .owl-nav button.owl-next {
		top: -30px;
	}

	.our-imapact-top-section {
		padding: 65px 0px;
	}

	.our-impact-list-main h3 {
		font-size: 22px;
		line-height: 30px;
	}

	.our-impact-list-main {
		margin-top: 25px;
	}

	.our-impact-list-main ul {
		margin-top: 25px;
	}

	.our-impact-list-main ul li {
		margin-bottom: 15px;
	}

	.our-imapact-section {
		padding: 60px 0px;
	}

	.our-impact-page-inner {
		margin-top: 25px;
	}

	.about-evolution-section.impact {
		padding: 65px 0px 70px;
	}

	.evolution-second-section.impact {
		margin-top: 35px;
	}

	.publication-filter-inner ul li {
		width: 48%;
	}

	.publication-list-section {
		padding: 30px 0px 70px;
	}

	.corporate-governance-wrapper .corporate-governance-content ul li {
		line-height: 35px;
		padding: 0px 20px;
		font-size: 12px;
	}

	.corporate-governance-wrapper .corporate-governance-content ul {
		margin-top: 15px;
	}

	.corporate-governance-content h3 {
		font-size: 20px;
		line-height: 25px;
		margin-bottom: 10px;
	}


	.for-business-wrapper {
		padding: 55px 0px;
	}

	.compatition-overview {
		padding: 70px 0px 60px;
	}

	.compatition-overview-content h2 {
		font-size: 40px;
		line-height: 45px;
		margin-bottom: 15px;
	}

	.compatition-overview-img::after {
		content: "";
		width: 100px;
		height: 100px;
		bottom: -35px;
		left: -45px;
	}

	.compatition-overview-content {
		padding-right: 90px;
	}

	.compatition-overview-content p {
		margin-bottom: 10px;
	}

	.compatition-overview:nth-child(2n+1) .compatition-overview-img::after {
		right: -45px;
	}

	.compatition-overview:nth-child(2n+1) .compatition-overview-content {
		padding-right: 90px;
		padding-left: 0;
	}

	.related-news-section.bussiness-related {
		padding-top: 110px;
	}

	.partner_popup .main-title {
		margin-bottom: 20px;
		line-height: 55px;
	}

	.partner_popup {
		padding: 40px;
		max-width: 90%;
	}

	.contact-form-main {
		padding: 50px;
	}

	.contact-form-main .main-title {
		margin-bottom: 20px;
	}

	.contact-form-inner {
		margin-top: 15px;
	}

	.contact-address h3 {
		font-family: "Noto Kufi Ara bic", sans-serif; font-weight: 700;
		margin-top: 30px;
		font-size: 25px;
	}

	.how-help-bottom-main-wrapper {
		padding-top: 40px;
		padding-bottom: 80px;
	}

	.help-bottom-content {
		padding: 40px 30px 40px;
	}

	.help-bottom-content h3 {
		margin-bottom: 10px;
	}

	.help-bottom-content .green-btn.darkblue {
		margin-top: 10px;
	}

	.submenu-main-container {
		padding: 30px;
		width: 660px;
	}

	.submenu-content {
		width: 60%;
		padding-left: 40px;
	}

	.submenu-list ul li a {
		font-size: 14px;
	}

	.submenu-list ul li {
		padding: 10px 0px;
	}

	.corporate-governance-overview-inner .main-title {
		line-height: 55px;
		font-size: 44px;
	}

	.how-programmes-main-wrapper .main-title {
		line-height: 55px;
		font-size: 40px;
	}

	.featured-event-first {
		margin-top: 20px;
	}

	.sub-banner.detail-page .date {
		font-size: 18px;
	}

	.header-options {
		margin-right: 10px;
	}

	.search-btn {
		cursor: pointer;
		margin-right: 5px;
	}

	.launguge-switch {
		margin-right: 15px;
	}

		.compatition-overview:nth-child(even) .compatition-overview-content {
	padding-right: 0px;
	padding-left: 60px;
}

}

@media (max-width: 1040px) {

	.error-404,
	.search-page-inner,
	.search-noresult-inner {
		padding: 60px 30px;
	}

	.error-404 h1,
	.search-page h1,
	.search-noresult h1 {
		font-size: 24px;
	}

	.error-404 h4 {
		font-size: 16px;
	}

	.error-404 ul {
		margin: 0 0 0 24px;
	}

	.error-404 ul li {
		font-size: 14px;
		line-height: 20px;
	}

	.error-404 ul li+li {
		margin-top: 6px;
	}

	.error-404 h3 {
		margin: 15px 0 15px 0;
		font-size: 18px;
	}

	.error-404 .button {
		margin-top: 20px;
		height: 38px;
		line-height: 38px;
		padding: 0 15px;
		font-size: 12px;
	}

	.impact-box h3 {
		font-size: 48px;
		line-height: 45px;
	}

	.impact-box p {
		font-size: 15px;
		line-height: 23px;
	}

	.our-impact-inner ul {
		margin-left: -1%;
		margin-right: -1%;
	}

	.our-impact-inner ul li {
		width: 48%;
		min-height: 320px;
		margin-left: 1%;
		margin-right: 1%;
	}

	.programes-main-inner ul li {
		width: 48%;
	}

	.main-media-content p {
		margin-top: 5px;
		font-size: 13px;
		line-height: 18px;
	}

	.main-media-content span {
		font-size: 10px;
		line-height: 18px;
		font-weight: 400;
	}

	.second-title {
		font-size: 19px;
		line-height: 22px;
	}

	.media-slider-style {
		margin-top: 10px;
	}

	.media-slider-style .owl-nav button.owl-next,
	.media-slider-style .owl-nav button.owl-prev {
		width: 25px;
		height: 25px;
		background-size: 20px !important;
	}

	.media-slider-style .owl-nav button.owl-prev {
		top: -10px;
	}

	.media-slider-style .owl-nav button.owl-next {
		right: inherit !important; 
		left: 35px;
		top: -10px;
	}

	.main-publication-slider-box {
		width: 64%;
		margin-left: 3.3%;
	}

	.main-media-image span {
		left: 10px;
		top: inherit;
		bottom: 10px;
		   width: auto;
    display: inline-table;
	}

	.publication-first-content label {
		font-size: 9px;
		line-height: 16px;
		font-weight: 500;
		padding: 3px 9px 2px;
		display: inline-block;
		background-color: #F08700;
		color: #fff;
		left: 10px;
		top: 15px;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
		position: absolute;
		text-transform: uppercase;
	}

	.publication-first-content {
		padding: 10px;
	}

	.publication-first-content p {
		font-size: 15px;
		line-height: 21px;
		margin-top: 10px;
	}

	.home-about-right ul li h3 {
		font-size: 19px;
	}

	.menu-ul li+li {
		margin-left: 15px;
	}

	.right-txt {
		width: 10px;
		height: 180px;
		bottom: 50px;
		left: 3%;
	}

	@keyframes expand {
  0% {
    bottom: 50px;
  }

  20% {
    bottom: 70px;
  }

  40% {
    bottom: 50px;
  }

  60% {
    bottom: 70px;
  }

  80% {
    bottom: 50px;
  }

  100% {
    bottom: 70px;
  }
}



	.about-main-left-content {
		width: 100%;
		padding-right: 0;
	}

	.about-main-left-content p {
		max-width: inherit;
	}

	.about-main-right-content {
		width: 100%;
		padding-top: 15px;
	}

	.about-main-section-inner .main-title {
		margin-bottom: 15px;
	}

	.about-main-left-content h4 {
		font-size: 80px;
		line-height: 75px;
	}

	.about-main-section-inner {
		padding: 50px 0 50px;
	}

	.page-menu .page-menu-inner a {
		line-height: 45px;
		font-size: 13px;
	}

	.about-menu li a {
		padding: 0px 20px;
	}

	.page-menu {
		min-height: auto;
	}

	.value-box-content h3 {
		font-size: 35px;
		line-height: 40px;
		margin-bottom: 45px;
	}

	.value-box {
		min-height: 400px;
		padding: 30px;
	}

	.owl-carousel.value-slider .owl-nav button.owl-next {
		right: -45px;
	}

	.owl-carousel.value-slider .owl-nav button.owl-prev {
		left: -45px;
	}

	.evolution-second-section {
		margin-top: 45px;
	}

	.owl-carousel.evolution-slider .owl-nav button.owl-next,
	.owl-carousel.evolution-slider .owl-nav button.owl-prev {
		width: 40px;
		height: 40px;
	}

	.about-evolution-section {
		padding: 50px 0px 70px;
	}


	.team-second-section.white-bg {
		padding-bottom: 60px;
	}

	.partner-title-main .main-title {
		margin-bottom: 10px;
	}

	.partner-main-listing {
		padding: 80px 0px;
	}

	.partner-listing-wrap {
		margin-top: 25px;
	}

	.partner-bottom-contact {
		padding: 50px 0px;
	}

	.partner-bottom-contact-inner h3 {
		font-size: 30px;
		line-height: 30px;
		margin-bottom: 10px;
	}

	.partner-main-nav ul li a {
		line-height: 40px;
		font-size: 16px;
	}

	.partner-listing-wrap ul li {
		-moz-border-radius: 10px;
		-webkit-border-radius: 10px;
		border-radius: 10px;
	}

	.partner-listing-wrap ul {
		row-gap: 15px;
	}

	.partner-main-listing {
		padding: 70px 0px;
	}

	.partner-bottom-contact-inner h3 {
		font-size: 25px;
		line-height: 25px;
		margin-bottom: 10px;
	}

	.partner-bottom-contact-inner p {
		font-size: 16px;
	}

	.partner-bottom-contact {
		padding: 40px 0px;
		-webkit-border-bottom-left-radius: 20px;
		-moz-border-bottom-left-radius: 20px;
		border-bottom-left-radius: 20px;
		-webkit-border-bottom-right-radius: 20px;
		-moz-border-bottom-right-radius: 20px;
		border-bottom-right-radius: 20px;
	}

	.partner-listing-wrap ul li {
		width: 31.3%;
	}

	.governance-overview-img {
		margin-left: 60px;
		margin-bottom: 30px;
		width: 100%;
		max-width: 268px;
	}

	.governance-overview-img::after {
		content: "";
		width: 75px;
		height: 75px;
		bottom: -30px;
		left: -32px;
		z-index: -1;
	}

	.corporate-governance-overview {
		padding: 50px 0 60px;
	}

	.governance-bottom-contact {
		margin-bottom: 50px;
	}

	.family-firm-bottom-section ul li h3 {
		font-size: 20px;
		line-height: 25px;
	}

	.recent-events-filter-inner ul li {
		width: 48%;
		margin-bottom: 15px;
	}

	.recent-events-filter-inner ul li:last-child {
		width: 48%;
	}

	.search-btn-new {
		width: 90px;
		border: none;
		height: 45px;
	}

	.new-filter2 {
		height: 45px;
		line-height: 45px;
	}

	.filter-search .new-filter2 {
		padding-left: 100px;
	}

	.team-second-section .main-title {
		margin-bottom: 20px;
	}

	.recent-events-filter-inner {
		padding-bottom: 15px;
	}

	.recent-events-filter {
		padding-top: 25px;
	}

	.recent-events-section {
		padding: 40px 0px 60px;
	}

	.recent-events-section-inner ul li {
		width: 48%;
		margin-left: 1%;
		margin-right: 1%;
	}

	.recent-events-section-inner ul {
		row-gap: 35px;
		margin-left: -1%;
		margin-right: -1%;
	}

	.recent-events-section-inner {
		margin-top: 15px;
	}

	.featured-event-first {
		margin-bottom: 35px;
	}

	.event-slider-date {
        background-position: right 10px top 11px;
	}

	.main-wrapper {
		-webkit-border-bottom-left-radius: 20px;
		-moz-border-bottom-left-radius: 20px;
		border-bottom-left-radius: 20px;
		-webkit-border-bottom-right-radius: 20px;
		-moz-border-bottom-right-radius: 20px;
		border-bottom-right-radius: 20px;
	}

	.nice-select {
		font-size: 14px;
		line-height: 45px;
		height: 45px;
	}

	.new-filter2 {
		font-size: 14px;
	}

	.select-filter label {
		width: 80px;
		line-height: 20px;
		/* line-height: 45px; */
		font-size: 14px;
	}

	.main-select {
		width: calc(100% - 80px);
	}

	.search-btn-new {
		width: 85px;
		border: none;
		height: 45px;
	}


	.main-media-content.news-content h3 {
		font-size: 16px;
	}

	.news-filter-inner ul li {
		width: 48%;
		margin-bottom: 15px;
	}

	.news-filter-inner ul li:last-child {
		width: 100%;
	}

	.news-detail-top-section {
		padding: 55px 0 30px;
	}

	.news-detail-top-section img {
		margin-top: 0px;
		margin-bottom: 30px;
	}

	.sub-banner.detail-page {
		padding-bottom: 15px;
	}

	.publication-filter-inner ul li {
		width: 48%;
	}

	.publication-filter-inner {
		padding-bottom: 40px;
	}

	.publication-list-section {
		width: 100%;
		padding: 30px 0px 65px;
	}

	.publication-list-btn {
		margin-top: 15px;
		column-gap: 10px;
	}

	.news-publication-top-section {
		padding: 65px 0 55px;
	}

	.news-publication-inner {
		padding: 25px 15px;
	}

	.news-publication-inner h3 {
		font-size: 25px;
		line-height: 28px;
	}

	.news-publication-top-left {
		width: 60%;
	}

	.news-publication-top-right {
		width: 40%;
		padding-left: 50px;
	}

	.career-overview {
		padding: 60px 0px;
	}

	.career-top-content {
		padding-right: 75px;
	}

	.career-top-content h2 {
		font-size: 35px;
		line-height: 40px;
		margin-bottom: 10px;
	}

	.faq-accordion-title {
		padding-left: 45px;
	}

	.faq-accordion-content {
		padding: 25px 30px 20px;
	}

	.career-top-content {
		padding-right: 0;
		width: 100%;
	}

	.help-bottom-content {
		padding: 25px 20px 25px;
	}

	.help-bottom-content h3 {
		font-size: 23px;
	}

	.team-first-section-inner {
		align-items: flex-start;
	}

	.team-list-main ul li {
		width: 31.3%;
	}

	/* .programe-activities-box>ul li:nth-child(1)::after {
    background-image: url(assets/images/after-new4.svg);
    background-repeat: no-repeat;
    right: -25px;
    top: 0px;
    background-position: right center;
    height: 90px;
  } */

	/* .programe-activities-box>ul>li {
    border-bottom: 1px solid #2a7cbb;
  }

  .programe-activities-box>ul {
    border-bottom: none;
    width: 100%;
  }
  .programe-activities-box>ul>li::after{
    display: none;
  }
  .programe-activities-box>ul>li {
    border-right:1px solid #2A7CBB ;
    width: 50%;
    min-width: auto;
    min-height: 100px;
  } */
	.programe-activities-box>ul>li:last-child {
		border-right: none;
	}

	.main-publication-slider {
		padding: 10px 0px;
	}

	.sub-banner.sub-banner-small h1 {
		text-align: center;
		width: 100%;
		display: inline-block;
	}

	.career-top-content {
		margin-top: 40px;
	}

	.programe-activities-box>ul>li:nth-child(1):after {
		right: -39px;
		top: 0;
		content: "";
		width: 40px;
		height: 100%;
		display: block;
		position: absolute;
		clip-path: polygon(50% 49%, 0 0, 0 100%);
		background-color: #2a7cbb;
		z-index: 99;
	}

	.programe-activities-box>ul>li:nth-child(1)::before {
		width: 125px;
		left: -2px;
	}

	.programe-activities-box>ul>li {
		width: 100%;
		max-width: 100%;
		min-height: 100px;
		border-top: 1px solid #2A7CBB;
	}

	/* .programe-activities-box>ul>li + li{
  border-left: 1px solid #2A7CBB;
} */
	.programe-activities-box>ul>li+li::before,
	.programe-activities-box>ul>li:nth-child(2):before {
		content: "";
		/* width: 50px; */
		width: 50px;
		height: 100%;
		background-image: url(assets/images/after-new1_3.svg);
		background-repeat: no-repeat;
		position: absolute;
		left: 0;
		z-index: -1;
		clip-path: none;
		background-color: transparent;
	}

	.programe-activities-box>ul {
		width: 100%;
	}

	.prg_image_list li .list_pic {
		padding: 30px 15px;
	}

	.leader-ship-content {
		width: 100%;
	}

	.leader-ship-content p+p {
		margin-top: 20px;
	}

	.leader-ship-content {
		padding: 55px 60px;
		order: 2;
	}

	.leader-ship-image {
		margin-bottom: 25px;
	}

	.achivements-main-list .three_col li {
		padding: 30px 40px 30px;
	}

	.prg_image_list li .list_pic {
		-webkit-border-radius: 10px 10px 10px 45px;
		-moz-border-radius: 10px 10px 10px 45px;
		border-radius: 10px 10px 10px 45px;

	}

	.programe-activities-box>ul>li>div {
		padding: 10px 0;
	}

	.prg_ach_top_set {
		flex-wrap: wrap;
	}

	.top_arch_para {
		width: 100%;
	}

	.top_ach_img {
		width: 20%;
		padding: 35px 20px;
		margin-top: 20px;
	}

	.programe-activities-box>ul>li:nth-child(1) {
		width: 100%;
		min-width: 100%;
	}

	.prg_imact_wraper {
		padding: 50px 0;
	}

	.impact_list li h5 {
		font-size: 35px;
	}

	.impact_list li p {
		width: calc(100% - 120px);
	}

	.proposition-section-ul {
		row-gap: 35px;
	}

	.proposition-section-ul li {
		width: 31.3%;
	}

	.proposition-section-ul li:nth-child(even) {
		margin-top: 0;
	}

	.programme-archivement-content .main-title {
		line-height: 50px;
		margin-bottom: 15px;
	}

	.programme-msg-section {
		width: 100%;
		padding: 50px 0 20px;
	}

	.programme-msg-box {
		width: 95%;
	}

	.programme-msg-section-inner {
		row-gap: 25px;
	}

	.programme-msg-box {
		border-radius: 20px 20px 20px 50px;
	}

	.home-partners-video {
		padding: 35px 0 40px;
	}

	.home-partners-section.detail-page {
		padding-bottom: 40px;
	}

	.practice-gallery-section {
		width: 100%;
		padding: 40px 0 90px;
	}

	.practice-gallery-section ul li {
		min-height: 350px;
	}

	.about-main-section-inner:nth-child(2n) .about-main-left-content {
    width: 100%;
	    padding-left: 0;

	}

	.about-main-section-inner:nth-child(2n) .about-main-right-content {
    width: 100%;
}

.about-main-section-inner:nth-child(2n) .mission_icon {
    left: 0px;
    top: -35px;
    z-index: -1;
}

.about-proposition-section {
    padding: 80px 0;
}

    .home-about-right ul {
        row-gap: 15px;
    }

	    .home-about-right ul li {
        width: 49%;
    }

	.main-publication-first-image {
    width: 100%;
    margin-bottom: 25px;
	}

	    .main-publication-slider-box {
        width: 92%;
        margin-left: 0;
		margin-bottom: 20px;
    }

	.mission_icon{
		 width: 100px;
	}

	    .media-slider-style .owl-nav button.owl-next {
        right: unset;
		left: 50px;
    }

	.event-slider-location{
		    padding: 8px 25px 8px 10px;
	}

		.event-slider-location {
			background-position: right 9px top 12px;
		}

		.event-slider-date{
			    padding: 8px 10px;
				padding-right: 30px;
		}
.event-slider-location {
		    background-position: right 10px top 13px;
}

    .sub-banner .main-title {
        line-height: 45px;
		        margin-bottom: 25px;
    }

}

@media (max-width: 1000px) {

	.menu-ul a {
		font-size: 18px;
		line-height: 24px;
	}

	.menu-ul li {
		text-align: center;
	}

	.menu-ul li+li {
		margin-right: 4%;
	}

	.site-logo {
		position: absolute;
		top: 15px;
		z-index: 99;
	}

	.header-options {
		margin-right: 0;
		position: absolute !important;
		left: 110px;
		display: flex;
		flex-direction: row-reverse;
	}

	.search-btn {
		margin-top: 4px;
	}

	.search-pannel {
		left: calc(100% + -58px);
	}

	.anti-corruption-second-section {
		padding-bottom: 50px;
	}

	.anti-corruption-main-wrapper {
		padding: 70px 0px 70px;
	}

	.achivements-title h2 {
		font-size: 85px;
		line-height: 75px;
	}

	.achivements-title h4 {
		font-size: 33px;
		line-height: 35px;
	}

	.achivements-title h2 {
		font-size: 70px;
		line-height: 70px;
	}

	.achivements-title h4 {
		font-size: 25px;
		line-height: 28px;
		letter-spacing: 10px;
	}

	.governance-bottom-contact-inner h3 {
		font-family: "Noto Kufi Ara bic", sans-serif; font-weight: 700;
		font-size: 29px;
		line-height: 35px;
	}

	.governance-bottom-contact {
		width: 100%;
		padding: 30px 0px;
		background-color: #89A386;
		-webkit-border-radius: 20px;
		-moz-border-radius: 20px;
		border-radius: 20px;
	}

	.governance-bottom-contact-inner {
		padding-left: 190px;
	}


	.programmes-box {
		width: 100%;
	}

	.programmes-inner-main {
		row-gap: 25px;
	}

	.how-programmes-main-wrapper {
		padding: 25px 0 60px;
	}

	.student-progress-section ul li {
		width: 50%;
		margin-bottom: 65px;
	}

	.student-progress-section ul li:nth-child(2n) .progress-number {
		top: -40px;
		bottom: inherit;
	}

	.student-progress-section {
		padding: 90px 0px 50px;
	}

	.student-progress-section ul li:nth-child(2n) .progress-box {
		margin-bottom: 0px;
		margin-top: 15px;
		align-items: flex-end;
		padding-top: 25px;
		padding-bottom: 30px;
	}

	.main-media-content h3 {
		font-size: 14px;
		font-family: "Noto Kufi Ara bic", sans-serif; font-weight: 700;
		line-height: 20px;
		margin-top: 10px;
	}

	.event-slider-date {
		font-size: 12px;
		line-height: 28px;
		padding: 5px 10px;
		padding-right: 30px;
	}

	.event-slider-location {
		font-size: 12px;
		line-height: 22px;
	        background-position: right 9px top 11px;
	}

	.main-media-content span.events {
		font-size: 10px;
		line-height: 20px;
	}

	.event-slider-time {
		margin-top: 10px;
		width: 100%;
		column-gap: 10px;
		row-gap: 5px;
	}

	.main-events-slider {
		margin-bottom: 80px;
	}

	.related-news-section.bussiness-related {
		padding-top: 100px;
	}

	.related-news-section.bussiness-related {
		padding-top: 60px;
	}

	.menu-ul li.submenu:hover>.submenu-main-container {
		display: none;
	}

	.menu-ul li.submenu {
		padding-left: 0;
		background-image: none;
	}

	.corporate-governance-overview-inner .main-title {
		line-height: 40px;
		font-size: 35px;
	}

	.how-programmes-main-wrapper .main-title {
		line-height: 40px;
		font-size: 35px;
	}

	.sub-banner.detail-page .date {
		font-size: 16px;
	}


	.launguge-switch {
		margin-right: 10px;
		margin-left: 15px;
	}

		.anti-corruption-main-wrapper .founder-message {
	padding-right: 60px;
}

.newsletter_form .submit {
   width: 136px;
        margin-right: auto;
}

.event-detail-content-text{
    padding: 0;
    padding-right: 50px;
}

.events-detail-text-section {
        padding: 35px 0px 0px;
    }

	    .related-news-section {
        padding: 35px 0 40px;
    }

	    .related-news-slider {
        margin-top: 20px;
    }

	    .footer {
			        padding: 50px 0px 20px;
					margin-top: 0;
		}

}


@media (max-width: 820px) {

.hm-partner-listing-wrap li {
	width: 31.33%;
	margin: 0px 1%;
  }

  .evoltion-slider-date{
	   padding-right: 0;
        justify-content: center;
		font-size: 60px;
  }


}



@media (max-width: 767px) {

	.error-404,
	.search-page-inner,
	.search-noresult-inner {
		padding: 60px 15px;
	}

	.green-btn {
		height: 40px;
		line-height: 40px;
		font-size: 12px;
	}

	.main-events-slider {
		margin-bottom: 50px;
	}

	.white-btn {
		height: 40px;
		line-height: 40px;
		font-size: 12px;
	}

	.about-right-main {
		padding: 20px 20px;
	}

	.banner-top-text {
		padding: 10px 10px;
		width: calc(100% - 90px);
	}

	.banner-top-image {
		width: 100px;
		height: 100px;
	}

	.banner-top-text p {
		font-size: 14px;
		line-height: 18px;
	}

	.banner-top-text span {
		font-size: 10px;
		padding: 2px 10px;
	}

	.main-title {
		font-size: 35px;
		line-height: 40px;
	}

	.home-about-content .main-title {
		line-height: 36px;
		margin-bottom: 15px;
	}

	.hme-about-section {
		padding: 55px 0px;
	}

	.about-icon {
		width: 60px;
		height: 60px;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
	}

	.our-imapact-section {
		padding: 55px 0px;
	}

	.our-impact-inner {
		margin-top: 15px;
	}

	.our-impact-inner ul li {
		min-height: 270px;
		-webkit-border-radius: 6px;
		-moz-border-radius: 6px;
		border-radius: 6px;
	}

	.impact-box h3 {
		font-size: 45px;
		line-height: 44px;
	}

	.impact-box h4 {
		font-size: 18px;
		line-height: 25px;
	}

	.home-programe-section {
		padding: 55px 0px 25px;
	}

	.programes-main-inner ul li {
		-webkit-border-radius: 8px;
		-moz-border-radius: 8px;
		border-radius: 8px;
	}

	.programes-main-inner {
		margin-top: 15px;
	}

	.programes-main-inner ul {
		row-gap: 12px;
	}

	.programes-main-inner ul li a {
		padding: 15px 20px;
	}

	.partner-slider-main {
		margin-top: 15px;
	}

	.partner-slider .owl-nav button.owl-next,
	.partner-slider .owl-nav button.owl-prev {
		width: 35px;
		height: 35px;
		background-size: 25px !important;
	}

	.partner-slider .owl-nav button.owl-next {
		right: -25px;
		top: 55%;
	}

	.partner-slider .owl-nav button.owl-prev {
		left: -25px;
		top: 55%;
	}

	.home-video-section {
		padding: 20px 0 60px;
	}

	.home-news-publication-section {
		padding: 55px 0px 55px;
	}

	.home-news-publication-section {
		-webkit-border-radius: 20px;
		-moz-border-radius: 20px;
		border-radius: 20px;
	}

	.main-publication-slider {
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
	}


	.main-media-image span {
		padding: 0px 10px;
	}

	.main-media-content {
		padding-top: 10px;
	}

	.main-media-content span {
		font-size: 9px;
	}

	.publication-first-content span {
		font-size: 10px;
		font-weight: 400;
	}

	.programes-main-inner ul li p {
		font-size: 16px;
		line-height: 25px;
	}

	.hme-about-section-inner {
		flex-wrap: wrap;
	}

	.home-about-content {
		width: 100%;
		position: static;
	}

	.home-about-right {
		width: 100%;
		row-gap: 10px;
		margin-top: 35px;
	}


	.home-about-right ul li {
		width: 100%;
	}

	.home-about-right ul {
		width: 100%;
	}

	.site-logo {
		max-width: 80px;
	}

	.home-about-content-left {
		width: 100%;
	}

	.home-about-content .green-btn {
		position: static;
	}

	.home-about-right ul {
		flex-wrap: wrap;
		row-gap: 20px;
	}

	.about-right-main {
		min-height: auto;
	}

	.about-main-right-content p {
		margin-bottom: 10px;
	}

	.sub-banner h1 {
		font-size: 35px;
		line-height: 40px;
	}

	.breadcrumbs a {
		font-size: 16px;
	}

	.sub-banner {
		height: 310px;
	}

	.value-box-content h3 {
		font-size: 33px;
		line-height: 35px;
		margin-bottom: 40px;
	}

	.owl-carousel.value-slider .owl-nav button.owl-next {
		right: -30px;
	}

	.owl-carousel.value-slider .owl-nav button.owl-prev {
		left: -30px;
	}

	.value-box-icon img {
		max-height: 65px;
	}

	.value-box {
		min-height: 370px;
		padding: 20px;
	}

	.evoltion-slider-date {
		min-height: 115px;
		line-height: 35px;
		font-size: 55px;
		padding-right: 20px;
	}

	.evoltion-slider-content {
		padding: 20px 20px 0px 15px;
	}

	.evoltion-slider-date::before {
		content: "";
		width: 35px;
		height: 121px;
	}

	.evolution-slider::before {
		top: 45px;
	}

	.evoltion-slider-date {
		font-size: 60px;
		line-height: 40px;
		padding-top: 30px;
		justify-content: center;
	}

	.founder-message h2 {
		font-size: 30px;
		line-height: 40px;
		margin-bottom: 15px;
	}

	/* .founder-message {
		padding-right: 60px;
	} */

	.founder-message h4 {
		font-size: 17px;
		line-height: 22px;
		margin-bottom: 10px;
	}

	.team-first-section {
		padding: 60px 0 80px;
	}

	.team-second-section {
		padding: 50px 0px;
	}

	.team-list-main ul li {
		width: 31.3%;
	}

	.team-list-hover {
		padding: 10px 10px 10px;
	}

	.team-list-hover-img {
		width: 70px;
		height: 70px;
		margin-bottom: 5px;
	}

	.team-list-hover h4 {
		font-size: 14px;
		line-height: 22px;
	}

	.partner-main-listing {
		padding: 60px 0px;
	}

	.partner-listing-wrap ul {
		row-gap: 12px;
	}

	.partner-bottom-contact-inner {
		width: 100%;
		padding-left: 0;
	}

	.partner-bottom-contact-inner .green-btn {
		position: static;
		margin-top: 20px;
	}

	.partner-bottom-contact-inner h3 {
		font-size: 21px;
		line-height: 28px;
	}

	.partner-bottom-contact-inner p {
		font-size: 15px;
	}

	.partner-main-listing {
		padding: 50px 0px;
	}

	.corporate-governance-wrapper {
		padding: 50px 0px 80px;
	}

	.corporate-governance-content {
		padding: 15px 40px 15px 0;
	}

	.corporate-governance-wrapper ul li {
		width: 95%;
	}

	.corporate-governance-wrapper ul li:nth-child(2n) {
		margin-right: 5%;
	}

	.corporate-governance-wrapper ul {
		margin-top: 35px;
	}

	.corporate-governance-content h3 {
		font-size: 20px;
		line-height: 27px;
		margin-bottom: 10px;
	}

	.corporate-governance-content a {
		max-width: 160px;
		margin-top: 20px;
	}

	.corporate-governance-wrapper {
		padding: 45px 0px 30px;
	}

	.corporate-governance-wrapper ul li:nth-child(2n) {
		margin-right: 0;
	}

	.corporate-governance-wrapper ul li {
		margin-bottom: 25px;
	}

	.main-wrapper {
		-webkit-border-bottom-left-radius: 20px;
		-moz-border-bottom-left-radius: 20px;
		border-bottom-left-radius: 20px;
		-webkit-border-bottom-right-radius: 20px;
		-moz-border-bottom-right-radius: 20px;
		border-bottom-right-radius: 20px;
	}

	.corporate-governance-wrapper .main-title {
		margin-bottom: 10px;
	}

	.corporate-governance-content {
		padding: 10px 30px 10px 0;
	}

	.corporate-governance-img {
		width: 65%;
		margin: 0 auto;
		margin-bottom: 10px;
	}

	.corporate-governance-content {
		padding: 20px 0px 20px 0px;
		width: 100%;
		text-align: center;
	}

	.corporate-governance-wrapper ul li::after {
		width: 100%;
	}

	.corporate-governance-img {
		border-radius: 8px;
	}

	.corporate-governance-content a {
		display: inline-block;
	}

	.anti-corruption-second-section {
		padding-bottom: 35px;
	}

	.key-objects-section h2 {
		font-size: 70px;
		line-height: 65px;
	}

	.key-objects-section ul li {
		min-height: 100px;
		padding: 15px 30px 15px 55px;
	}

	.anti-corruption-main-wrapper {
		padding: 60px 0px 60px;
	}

	.achivements-main-list ul li {
		width: 48%;
		margin-bottom: 10px;
		padding: 20px 10px 20px;
	}

	.achivements-main-list-bottom {
		margin-top: 20px;
	}

	.achivements-main-wrapper {
		padding: 30px 0px 15px;
	}

	.anti-corruption-main-wrapper .founder-message {
		padding-left: 0;
	}

	.key-objects-section ul li {
		width: 95%;
	}

	.key-objects-section ul li:nth-child(2) {
		width: 90%;
	}

	.key-objects-section ul li:nth-child(3) {
		width: 85%;
	}

	.key-objects-section h2 {
		font-size: 60px;
		line-height: 60px;
	}

	.anti-corruption-main-wrapper {
		padding: 50px 0px 30px;
	}

	.achivements-title h2 {
		font-size: 50px;
		line-height: 55px;
	}

	.achivements-title h4 {
		font-size: 20px;
		line-height: 20px;
		letter-spacing: 8px;
	}

	.anti-corruption-message p {
		color: #fff;
		font-size: 16px;
		line-height: 25px;
	}

	.anti-corruption-message {
		padding: 25px 25px;
		margin-top: 10px;
	}

	.anti-corruption-message {
		-webkit-border-radius: 10px 10px 25px 10px;
		-moz-border-radius: 10px 10px 25px 10px;
		border-radius: 10px 10px 25px 10px;
	}

	.anti-corruption-image-inner {
		-webkit-border-radius: 10px 20px 10px 10px;
		-moz-border-radius: 10px 20px 10px 10px;
		border-radius: 10px 20px 10px 10px;
	}

	.anti-corruption-play a {
		width: 55px;
		height: 55px;
		display: block;
		margin: 0 auto;
	}

	.anti-corruption-first-section {
		width: 100%;
		padding: 40px 0 20px;
	}

	.key-objects-section {
		padding-top: 10px;
	}

	.programe-activities-box ul li h4 {
		font-size: 16px;
		line-height: 18px;
	}

	/* .programe-activities-box>ul>li:nth-child(1)::after {
    right: -25px;
    width: 26px;
    background-size: 100%;
  }

  .programe-activities-box>ul>li {
    min-height: 85px;
    border-top: 1px solid #2A7CBB;
    border-bottom: 1px solid #2A7CBB;
    margin: 4px 0px;
  }

  .programe-activities-box>ul>li:nth-child(1) {
    min-width: 100%;
}
.programe-activities-box>ul{
      border-radius: 0;
      width: 100%;
}
  .programe-activities-box>ul>li::after {
    content: "";
    width: 100%;
    height: 89px;
    background-image: none;
    display: none;
  }

  .programe-activities-box>ul>li {
    padding:10px;
  } */
	.programe-activities-box>ul>li:nth-child(1) {
		min-height: auto;
		padding: 20px 0;
		width: 95%;
		min-width: 95%;
	}

	.programe-activities-box>ul>li>div {
		padding: 0;
		width: 100%;
	}

	.achivements-main-list .three_col li {
		width: 100%;
		padding: 30px;
	}

	.leader-ship-section {
		width: 100%;
		padding: 50px 0px 30px;
	}

	.leader-ship-inner-box {
		width: 100%;
	}

	.leader-ship-inner-box {
		-webkit-border-radius: 15px 20px 15px 15px;
		-moz-border-radius: 15px 20px 15px 15px;
		border-radius: 15px 20px 15px 15px;
		padding: 15px;
	}

	.leader-ship-content {
		width: 100%;
		padding: 30px;
	}

	.leader-ship-content p {
		font-size: 16px;
		line-height: 25px;
	}

	.leadership-message-title h4 {
		font-size: 20px;
		line-height: 25px;
	}

	.programe-activities-section h2 {
		font-size: 35px;
		line-height: 35px;
		margin-bottom: 10px;
	}

	.programe-activities-section-inner {
		margin-top: 30px;
	}

	.leader-ship-image {
		-webkit-border-radius: 10px 10px 10px 10px;
		-moz-border-radius: 10px 10px 10px 10px;
		border-radius: 10px 10px 10px 10px;
	}

	.leader-ship-inner-box {
		width: 100%;
	}

	.leader-ship-image {
		margin-bottom: 15px;
	}

	.leader-ship-section {
		width: 100%;
		padding: 0px 0px 20px;
	}

	.programe-activities-section h2 {
		font-size: 28px;
		line-height: 35px;
		margin-bottom: 10px;
	}

	.programe-activities-box>ul>li {
		max-width: 100%;
		width: 95%;
		min-height: auto;
		border-top: 1px solid #2A7CBB;
		padding: 20px 30px;
	}

	.programe-activities-box>ul>li:last-child {
		border-bottom: 1px solid #2A7CBB;
	}

	.programe-activities-box>ul {
		border-radius: 0;
		border: none;
	}

	.programe-activities-box>ul>li:nth-child(1) {
		width: 95%;
		min-width: 95%;
		text-align: center;
	}

	.leader-ship-inner-box {
		text-align: center;
	}

	.governance-overview-img {
		margin: 0 auto;
		margin-bottom: 45px;
		float: none;
	}

	.corporate-governance-overview-inner {
		text-align: center;
	}

	.corporate-governance-overview-inner p {
		margin-bottom: 10px;
	}

	.corporate-governance-overview {
		padding: 50px 0 30px;
	}

	.collabration-main-section ul {
		margin-top: 20px;
	}

	.collabration-main-section {
		padding-bottom: 50px;
	}

	.collabration-main-section ul li {
		width: 48%;
		margin-bottom: 15px;
	}

	.governance-overview-img::after {
		content: "";
		width: 70px;
		height: 70px;
		position: absolute;
		background-image: url(assets/images/fonder-bg.jpg);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		bottom: -25px;
		left: inherit;
		right: -33px;
		z-index: -1;
	}

	.governance-overview-img img {
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
	}

	.corporate-governance-overview-inner .main-title {
		margin-bottom: 10px;
	}

	.governance-bottom-contact-inner {
		padding-left: 0;
		text-align: center;
	}

	.governance-bottom-contact-inner .green-btn {
		position: static;
		display: inline-block;
		margin-top: 20px;
	}

	.governance-bottom-contact-inner h3 {
		font-family: "Noto Kufi Ara bic", sans-serif; font-weight: 700;
		font-size: 24px;
		line-height: 30px;
	}

	.governance-bottom-contact {
		margin-bottom: 45px;
	}

	.governance-bottom-contact {
		padding: 20px 0px;
	}

	.howtowork-first-section {
		padding-top: 55px;
	}

	.play-btn {
		width: 55px;
	}

	.how-to-get-video {
		margin-bottom: 30px;
	}

	.programmes-inner-main {
		margin-top: 20px;
		row-gap: 20px;
	}

	.programmes-box h3 br {
		display: none;
	}

	.programmes-box ul {
		margin-top: 15px;
	}

	.family-firm-bottom-section {
		padding: 10px 0px 50px;
	}

	.family-firm-bottom-section ul li h3 {
		font-size: 16px;
		line-height: 22px;
	}

	.firm-img {
		padding: 10px 10px;
		min-height: 180px;
	}

	.governance-bottom-contact {
		margin-bottom: 40px;
	}

	.family-firm-bottom-section .main-title {
		margin-bottom: 20px;
	}

	.governance-overview-img.right {
		float: none;
		margin: 0 auto;
		margin-bottom: 50px;
	}

	.overview-full-width .main-title {
		margin-bottom: 15px;
	}

	.overview-full-width {
		padding: 45px 0px 0px;
		text-align: center;
	}

	.overview-full-width p {
		margin-bottom: 10px;
	}

	.project-aims-list li {
		padding: 20px 18px 15px;
		width: 100%;
		margin-bottom: 15px;
	}

	.project-aims-list li p {
		font-size: 18px;
		line-height: 28px;
	}

	.philanthropy-icon {
		max-height: 70px;
		margin-bottom: 20px;
		text-align: center;
	}

	.philanthropy-icon img {
		height: 70px;
	}

	.project-aims-section {
		text-align: center;
	}

	.project-aims-section {
		padding-top: 15px;
	}

	.project-aims-section p {
		margin-bottom: 10px;
	}

	.corporate-governance-overview-inner .main-title {
		line-height: 40px;
		font-size: 35px;

	}

	.governance-overview-img.right::after {
		width: 80px;
		height: 80px;
		bottom: -30px;
		right: -34px;
	}

	.margin-bottom-zero {
		margin-bottom: 0px !important;
	}

	.student-progress-section {
		padding: 70px 0px 40px;
	}

	.progress-number {
		width: 70px;
		height: 70px;
		font-size: 20px;
		border: 4px solid #89A386;
	}

	.student-progress-section {
		padding-top: 60px;
		-webkit-border-radius: 20px;
		-moz-border-radius: 20px;
		border-radius: 20px;
	}

	.event-slider-date {
            padding: 5px 10px;
			            line-height: 24px;
		padding-right: 30px;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
		background-position: right 10px top 6px;
	}

	.event-slider-location {
		padding: 6px 10px;
		padding-left: 22px;
		background-position: right 8px top 9px;
	}

	.recent-events-filter-inner ul li {
		width: 100%;
		margin-bottom: 10px;
	}

	.recent-events-filter-inner ul li:last-child {
		width: 100%;
	}

	.featured-event-first {
		padding: 15px 20px;
	}

	.featured-event-first {
		min-height: 280px;
	}

	.featured-event-first .main-media-content h3 {
		font-size: 20px;
		line-height: 26px;
	}

	.events-detail-top-section {
		padding: 55px 0 20px;
	}

	.events-list-main ul li {
		width: 31%;
	}

	.event-list-content {
		margin-top: 10px;
	}

	.event-list-content h4 {
		font-size: 16px;
		line-height: 20px;
		margin-bottom: 5px;
	}

	.events-list-main ul {
		row-gap: 15px;
		justify-content: center;
	}

	.event-list-icon {
		width: 85px;
		height: 85px;
	}

	.events-detail-text-section {
		padding: 30px 0px 45px;
	}

	.event-detail-content-social {
		margin-top: 20px;
	}

	.event-social-inner ul {
		column-gap: 10px;
	}

	.event-social-inner ul li {
		width: 60px;
		height: 60px;
	}

	.event-social-inner label {
		font-size: 15px;
		line-height: 24px;
		width: 105px;
	}

	.corporate-governance-wrapper.gray-banner {
		padding: 50px 0px 40px;
	}

	.event-slider-location {
		 padding-right: 25px;
		 -webkit-border-radius: 10px;
		 -moz-border-radius: 10px;
		 border-radius: 10px;
	}

	.event-slider-date{
		        background-position: right 10px top 9px;
	}

	.corporate-governance-wrapper .event-slider-location {
		padding: 6px 10px;
		padding-left: 23px;
		background-position: right 8px top 10px;
	}

	.corporate-governance-wrapper .event-slider-date {
		background-position: right 10px top 8px;
	}

	.corporate-governance-wrapper .event-slider-time {
		justify-content: center;
	}

	.corporate-governance-wrapper .corporate-governance-content {
		padding: 10px 0px 25px 0px;
	}

	.event-organizer {
		font-size: 12px;
		line-height: 23px;
	}

	.corporate-governance-wrapper.gray-banner h3 {
		margin-top: 15px;
	}

	.corporate-governance-wrapper .event-slider-location {
		font-size: 12px;
		line-height: 20px;
	}

	.related-news-section {
		padding: 40px 0 55px;
	}

	.event-detail-content-img {
		width: 100%;
		margin-bottom: 40px;
	}

	.event-detail-content-text {
		padding-left: 0;
		width: 100%;
	}

	.corporate-governance-wrapper.gray-banner {
		-webkit-border-radius: 20px;
		-moz-border-radius: 20px;
		border-radius: 20px;
	}

	.corporate-governance-wrapper.gray-banner .main-title {
		text-align: center;
	}

	.news-filter-inner ul li {
		width: 100%;
		margin-bottom: 15px;
	}

	.news-filter-inner {
		padding-bottom: 20px;
	}

	.main-media-content.news-content p {
		margin-top: 10px;
		font-size: 13px;
		line-height: 20px;
	}

	.main-media-content.news-content h3 {
		margin-top: 10px;
		margin-bottom: 5px;
	}

	.main-media-content.news-content h3 {
		font-size: 15px;
	}

	.corporate-partner-full-section {
		padding: 55px 0;
	}

	.university-bottom-section {
		padding: 45px 0px 65px;
	}

	.owl-carousel.university-report-slider .owl-nav button.owl-prev,
	.owl-carousel.university-slider1 .owl-nav button.owl-prev,
	.owl-carousel.university-report-slider .owl-nav button.owl-next,
	.owl-carousel.university-slider1 .owl-nav button.owl-next {
		top: inherit;
		bottom: -45px;
	}

	.university-collabration-slider {
		padding-bottom: 60px;
	}

	.our-impact-page-inner ul li {
		width: 47%;
		min-height: 190px;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
		padding: 15px;
	}

	.our-impact-page-inner ul {
		row-gap: 13px;
	}

	.our-imapact-top-section {
		padding: 45px 0px;
	}

	.our-impact-list-main {
		margin-top: 20px;
	}

	.our-impact-list-main ul {
		margin-top: 20px;
	}

	.our-impact-list-main ul li {
		padding: 10px 10px;
	}

	.our-impact-list-main ul li {
		margin-bottom: 10px;

	}

	.our-impact-page-inner ul li {
		padding: 20px;
	}

	.about-evolution-section.impact {
		padding: 55px 0px 55px;
	}

	.evolution-second-section.impact {
		margin-top: 25px;
	}

	.publication-filter-inner ul li {
		width: 100%;
	}

	.publication-filter-inner {
		padding-bottom: 35px;
	}

	.publication-filter-inner ul {
		row-gap: 12px;
	}

	.publication-list-section {
		width: 100%;
		padding: 40px 0px 50px;
	}

	.publication-list-btn {
		margin-top: 8px;
		column-gap: 8px;
	}

	.publication-list-section .main-media-content p {
		font-size: 13px;
	}

	.news-publication-top-left {
		width: 100%;
	}

	.news-publication-top-right {
		width: 100%;
		padding-left: 0;
		margin-top: 25px;
	}

	.news-publication-top-section {
		padding: 55px 0 50px;
	}

	.news-publication-top-left img {
		margin: 25px 0;
	}

	.corporate-governance-wrapper .corporate-governance-content ul {
		justify-content: center;
	}

	.corporate-governance-wrapper ul li {
		margin-bottom: 0px;
	}

	.corporate-governance-wrapper .corporate-governance-content ul li {
		line-height: 22px;
		padding: 5px 20px;
	}

	.corporate-governance-img {
		margin-top: 20px;
	}

	.corporate-governance-wrapper ul {
		margin-top: 20px;
	}

	.for-business-wrapper {
		padding: 60px 0px;
	}

	.for-business-wrapper ul li .main-title {
		line-height: 45px;
	}

	.for-business-wrapper ul li .main-title {
		line-height: 45px;
	}

	.for-business-wrapper ul li {
		min-height: auto;
		margin-bottom: 25px;
	}


	.compatition-overview {
		padding: 50px 0px 50px;
	}

	.compatition-overview-content {
		padding-left: 0;
		width: 100%;
	}

	.compatition-overview-inner {
		justify-content: center;
		text-align: center;
	}

	.compatition-overview-img {
		width: 45%;
		margin-bottom: 30px;
	}

	.compatition-overview-img::after {
		content: "";
		width: 75px;
		height: 75px;
		bottom: -25px;
		left: -25px;
	}

	.compatition-overview:nth-child(2n+1) .compatition-overview-content {
		padding-left: 0;
		padding-right: 0;
	}

	.compatition-overview:nth-child(2n+1) .compatition-overview-img::after {
		right: -25px;
	}

	.owl-carousel.related-news .owl-nav button.owl-prev,
	.owl-carousel.related-news .owl-nav button.owl-next {
		top: -35px;
	}

	.career-overview {
		padding: 50px 0px;
	}

	.faq-accordion-title {
		font-size: 22px;
		padding: 20px 25px;
		padding-left: 50px;
	}

	.upload-cv-btn {
		margin-top: 30px;
	}

	.career-list-main {
		padding-bottom: 75px;
	}

	.faq-accordion-title i {
		position: absolute;
		left: inherit;
		left: 20px;
		top: 22px;
	}

	.faq-accordion-title {
		font-size: 18px;
	}

	.career-list-main {
		padding-bottom: 55px;
	}

	.career-overview {
		padding: 45px 0px;
	}

	.career-list-top-main h3 {
		font-size: 18px;
		line-height: 20px;
		margin-bottom: 10px;
	}

	.upload-cv-btn {
		margin-top: 25px;
	}

	.faq-accordion-content {
		padding: 25px 20px 20px;
	}

	.faq-accordion-content p {
		margin-bottom: 15px;
	}

	.faq-accordion-content ul {
		margin-top: 10px;
		margin-bottom: 20px;
	}

	.faq-accordion-content h4 {
		font-size: 16px;
		line-height: 20px;
	}

	.partner_popup .main-title {
		color: #fff;
		margin-bottom: 15px;
		line-height: 35px;
	}

	.partner_popup {
		padding: 20px;
		max-width: 96%;
	}

	.contact-form li {
		margin-bottom: 10px;
	}

	.contact-form .form-submit.green-btn {
		margin-top: 5px;
	}

	.contact-form-main {
		padding: 35px;
	}

	.contact-form-main .main-title {
		margin-bottom: 10px;
	}

	.contact-address h3 {
		font-family: "Noto Kufi Ara bic", sans-serif; font-weight: 700;
		margin-top: 26px;
		font-size: 20px;
	}

	.contact-address {
		width: 100%;
		padding: 45px 0;
	}

	.contact-form-main {
		padding: 20px;
		width: 100%;
		margin-top: 0px;
	}

	.contact-main-wrapper {
		padding-bottom: 55px;
	}

	.contact-address h3 {
		font-family: "Noto Kufi Ara bic", sans-serif; font-weight: 700;
		margin-top: 26px;
		font-size: 17px;
	}

	.address-box {
		margin-top: 15px;
	}

	.help-bottom-content {
		padding: 20px 20px 20px;
	}

	.how-help-bottom-main-wrapper ul li {
		width: 47%;
		margin-left: 1.5%;
		margin-right: 1.5%;
	}

	.how-help-bottom-main-wrapper {
		padding-top: 25px;
		padding-bottom: 40px;
	}

	.how-help-bottom-main-wrapper ul li {
		width: 100%;
		margin-bottom: 20px;
	}

	.home-partners-section.detail-page {
		padding-bottom: 70px;
	}

	.home-partners-section.detail-page {
		padding-bottom: 40px;
	}


	.featured-event-first {
		margin-top: 0px;
	}

	.team-second-section .main-title {
		margin-bottom: 15px;
	}

	.founder-image {
		width: 60%;
		margin: 0 auto;
		margin-bottom: 40px;
	}

	.founder-message {
		padding-right: 0;
		width: 100%;
		text-align: center;
	}

	.career-top-content {
		margin-top: 0;
	}

	.prg_image_list li {
		width: 22%;
	}

	.leader-ship-content h3 {
		font-size: 25px;
		line-height: 30px;
		margin-bottom: 15px;
	}

	.prg_image_list {
		row-gap: 15px;
	}

	.achivements-main-wrapper .center_para p {
		margin-top: 20px;
	}

	.prg_image_list_sec {
		padding-top: 40px;
	}

	.prg_image_list.more_list li {
		width: 22%;
	}

	.prg_image_list.more_list li .list_pic {
		padding: 30px 15px;
	}

	.achivements-main-list .three_col ul {
		row-gap: 15px;
	}

	.impact_list li h5 {
		font-size: 30px;
	}

	.impact_list li .impact_num {
		width: 100px;
		height: 100px;
	}

	.impact_list li p {
		max-width: 100%;
		width: calc(100% - 100px);
		padding-left: 25px;
		font-size: 15px;
	}

	.impact_list li {
		width: 100%;
	}

	.prg_imact_wraper {
		padding: 0 0 30px 0;
	}

	.impact_para p {
		font-size: 15px;
		line-height: 20px;
		margin: 20px 0 40px 0;
	}

	.top_ach_img {
		width: 30%;
	}

	.programe-activities-box>ul>li>div ul li {
		font-size: 14px;
		line-height: 20px;
		margin-bottom: 5px;
	}

	.programe-activities-box>ul>li p span {
		position: absolute;
		left: 0;
	}

	.programe-activities-box>ul>li p {
		padding-left: 30px;
	}

	.programe-activities-box .multi_row {
		flex-wrap: wrap;
		margin-bottom: 0px;
	}

	.programe-activities-box .multi_row p {
		margin-bottom: 10px;
	}

	.programe-activities-box .multi_row p {
		width: 100%;
	}

	.programe-activities-box .multi_row p+p {
		margin-left: 0;
	}

	.programe-activities-box>ul>li::after,
	.programe-activities-box>ul>li+li::before,
	.programe-activities-box>ul>li:nth-child(2):before {
		display: none;
	}

	.programe-activities-box>ul>li>div ul li::before {
		top: 7px
	}

	.leader-ship-image img {
		width: 100%;
		-webkit-border-radius: 15px 15px 15px 40px;
		-moz-border-radius: 15px 15px 15px 40px;
		border-radius: 15px 15px 15px 40px;
	}

	.programme-objectictives-list ul li {
		width: 100%;
	}

	.programme-objectictives-list ul {
		row-gap: 10px;
	}

	.programme-objectictives-bottom {
		width: fit-content;
		margin: 0 auto;
		margin-top: 20px;
		background-color: #094278;
		padding: 15px 20px;
		-webkit-border-radius: 12px 20px 12px 20px;
		-moz-border-radius: 12px 20px 12px 20px;
		border-radius: 12px 20px 12px 20px;
	}

	.programme-archivement-img {
		width: 100%;
	}

	.programme-archivement-inner {
		padding-left: 5% !important;
		padding-right: 5% !important;
	}

	.programme-archivement-content {
		width: 100%;
		padding-left: 0;
		padding-top: 25px;
	}

	.programme-archivement-content .main-title {
		line-height: 40px;
		margin-bottom: 15px;
	}

	.programme-archivement-content p {
		margin-bottom: 10px;
	}

	.programme-msg-section {
		width: 100%;
		padding: 10px 0 10px;
	}

	.programme-msg-box {
		border-radius: 15px 15px 15px 25px;
		width: 100%;
		flex-direction: column-reverse;
	}

	.programme-msg-content {
		width: 100%;
		margin-top: 15px;
	}

	.programme-msg-img {
		padding-right: 0;
		width: 100%;
		text-align: center;
	}

	.programme-msg-img-main {
		width: 100%;
		max-width: 200px;
		overflow: hidden;
		margin: 0 auto;
		-webkit-border-radius: 15px 15px 30px 15px;
		-moz-border-radius: 15px 15px 30px 15px;
		border-radius: 15px 15px 30px 15px;
	}

	.programme-msg-box {
		padding: 15px;
	}

	.home-partners-section.detail-page {
		padding-bottom: 20px;
	}

	.home-partners-section.detail-page .main-title.text-left {
		margin-bottom: 10px;
	}

	.home-partners-video {
		padding: 25px 0 25px;
	}

	.practice-gallery-section ul li {
		min-height: 300px;
	}

	.practice-gallery-section {
		width: 100%;
		padding: 30px 0 75px;
	}

	.programme-objectictives-list ul li {
		border-radius: 15px;
	}

	.programme-icon {
		width: 75px;
		height: 75px;
	}

	.programme-icon img {
		width: 100%;
	}

	.programme-objectictives-list ul li {
		align-items: flex-start;
	}

	.programme-icon-content {
		width: calc(100% - 75px);
		padding: 0px 15px 0 20px;
	}

	.programme-objectictives-bottom {
		padding: 10px 15px;
	}

	.programme-archivement-content .main-title {
		line-height: 32px;
		margin-bottom: 10px;
	}

	.programme-msg-img-title h4 {
		font-size: 17px;
		line-height: 25px;
	}

	.home-partners-section.detail-page {
		padding-bottom: 10px;
	}

	.partner-slider .item {
		min-height: 120px;
	}

	.practice-gallery-section ul li {
		min-height: 230px;
	}

	.programme-msg-section-inner {
		row-gap: 15px;
	}

	.programme-objectictives-section {
		padding: 50px 0;
	}

	.programme-objectictives-first .main-title {
		margin-bottom: 15px;
	}

	.for-business-wrapper ul li {
		padding-bottom: 80px;
	}

	.for-business-wrapper ul li .green-btn {
		bottom: 30px;
	}

	 .mission_icon {
    top: -45px;
    z-index: -1;
    max-width: 70px;
}

.about-proposition-section {
    padding: 45px 0;
}

.hm-partner-listing-wrap li {
	width: 48%;
	margin: 0px 1%;
}

.compatition-overview:nth-child(even) .compatition-overview-content {
	padding-right: 0px;
	padding-left: 0;
}

		.anti-corruption-main-wrapper .founder-message {
	padding-right:0px;
}

.main-media-content span.events {
	  left: 10px;
	  top: 10px;
}


.contact-form li input,
.contact-form .nice-select,
.contact-form li textarea{
     font-size: 16px;
}



}

@media (max-width: 680px) {

	.search-page .image,
	.search-page .content {
		width: 100%;
	}

	.home-about-content p {
		font-size: 15px;
		line-height: 23px;
	}

	.main-title {
		font-size: 30px;
		line-height: 40px;
	}

	.home-about-content .green-btn {
		margin-top: 10px;
	}

	.about-right-main {
		min-height: auto;
	}

	.home-about-right ul {
		flex-wrap: wrap;
	}

	.family-firm-bottom-section {
		padding: 10px 0px 40px;
	}

	.home-about-right ul {
		row-gap: 10px;
		width: 100%;
		margin-left: 0px;
		margin-right: 0;
	}

	.home-about-right ul li {
		-webkit-border-radius: 12px;
		-moz-border-radius: 12px;
		border-radius: 12px;
		margin-left: 0px;
		margin-right: 0;
	}

	.our-imapact-section {
		padding: 45px 0px;
	}

	.our-impact-inner ul li {
		min-height: 210px;
	}

	.impact-box h3 {
		font-size: 35px;
		line-height: 40px;
		margin-bottom: 5px;
	}

	.how-help-bottom-main-wrapper {
		padding-top: 10px;
		padding-bottom: 30px;
	}

	.our-impact-inner ul li {
		padding: 13px;
	}

	.impact-box p {
		font-size: 14px;
		line-height: 20px;
	}

	.our-impact-inner {
		margin-top: 10px;
	}

	.our-impact-inner ul {
		row-gap: 8px;
	}

	.home-programe-section {
		padding: 40px 0px 20px;
	}

	.programes-main-inner ul li a {
		padding: 10px 13px;
	}

	.programes-main-inner ul li p {
		font-size: 14px;
		line-height: 20px;
	}

	.programes-main-inner {
		margin-top: 10px;
	}

	.programes-main-inner ul {
		row-gap: 8px;
	}

	.partner-slider-main {
		margin-top: 10px;
	}

	.partner-slider .owl-nav button.owl-next {
		right: -15px;
		top: 60%;
	}

	.partner-slider .owl-nav button.owl-prev {
		left: -15px;
		top: 60%;
	}

	.partner-slider .owl-nav button.owl-next,
	.partner-slider .owl-nav button.owl-prev {
		width: 30px;
		height: 30px;
		background-size: 20px !important;
	}

	.help-bottom-content h3 {
		font-size: 20px;
	}

	.help-bottom-content {
		padding: 15px 15px 15px;
	}

	.help-bottom-content .green-btn.darkblue {
		margin-top: 5px;
	}

	.home-video-section {
		padding: 15px 0 45px;
	}

	.home-news-publication-section {
		padding: 45px 0px 45px;
	}

	.main-publication-slider {
		border: none;
	}

	.main-publication-first-image {
		width: 100%;
		margin-bottom: 25px;
	}

	.main-publication-slider-box {
		width: 100%;
		margin-right: 0;
	}

	.media-slider-style .owl-nav button.owl-prev {
		right: inherit;
		left: 0px;
	}

	.media-slider-style .owl-nav button.owl-next {
		right: inherit;
		left: 36px;
	}

	.main-home-news {
		margin-top: 45px;
	}

	.container {
		max-width: 90%;
	}

	.hme-about-section {
		padding: 50px 0px;
	}

	.home-video-main a::after {
		content: "";
		width: 45px;
		height: 45px;
		top: 40%;
		background-size: 100%;
	}

	.tp-bullets.hesperiden {
		transform: translate(-25px, -50px) !important;
	}

	.banner-top-content {
		bottom: 20px;
	}

	.rs-parallax-wrap {
		padding-left: 5% !important;
	}

	.green-btn {
		height: 40px;
		line-height: 40px;
		font-size: 12px;
		padding: 0px 22px;
	}

	.impact-box h4 {
		font-size: 16px;
		line-height: 22px;
	}

	.green-btn {
		height: 36px;
		line-height: 36px;
		margin-top: 5px;
	}

	.white-btn {
		height: 35px;
		line-height: 37px;
		font-size: 12px;
	}

	.header-options {
		margin-right: 0;
		position: absolute !important;
		left: 95px;
		display: flex;
		flex-direction: row-reverse;
	}

	.search-pannel {
		left: calc(100% + -69px);
		top: 8px;
	}

	.search-btn {
		margin-top: 4px;
	}

	.page-menu .page-menu-inner a {
		line-height: 40px;
		font-size: 12px;
	}

	.page-menu .page-menu-inner li.active a::after {
		border-width: 0px 6px 6px 6px;
		bottom: 3px;
	}

	.about-main-left-content h4 {
		font-size: 50px;
		line-height: 50px;
	}

	.value-box {
		min-height: 330px;
		padding: 30px;
	}

	.owl-carousel.value-slider .owl-nav button.owl-next {
		display: none;
	}

	.owl-carousel.value-slider .owl-nav button.owl-prev {
		display: none;
	}


	.about-main-right-content {
		padding-top: 10px;
	}

	.value-box-content h3 {
		font-size: 30px;
		line-height: 32px;
		margin-bottom: 30px;
	}

	.value-box-icon {
		min-height: 80px;
	}

	.evoltion-slider-content p {
		max-width: 100%;
	}

	.evoltion-slider-date {
		padding-left: 30px;
	}

	.evoltion-slider-content {
		padding: 20px 30px 0px 15px;
	}

	.evolution-second-section {
		margin-top: 35px;
	}

	.about-evolution-section {
		padding: 45px 0px 60px;
	}

	.founder-image {
		width: 70%;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.team-first-section {
		padding: 45px 0 50px;
	}

	.founder-message {
		padding-left: 0;
		width: 100%;
		text-align: center;
	}

	.founder-image::after {
		content: "";
		width: 75px;
		height: 70px;
		bottom: -30px;
		left: -32px;
	}

	.founder-message h2 {
		font-size: 25px;
		line-height: 36px;
		margin-bottom: 10px;
	}

	.founder-message h4 {
		font-size: 15px;
		line-height: 22px;
		margin-bottom: 8px;
	}

	.team-second-section {
		padding: 45px 0px;
	}

	.team-list-main ul li {
		width: 48%;

	}

	.team-list-main {
		margin-top: 25px;
	}

	.team-list-main ul {
		row-gap: 10px;
	}

	.team-second-section.white-bg {
		padding-bottom: 40px;
	}

	.partner-listing-wrap ul li {
		width: 48%;
	}

	.partner-full-section {
		padding-top: 30px;
	}

	.partner-main-nav {
		margin-bottom: 30px;
	}

	.partner-listing-wrap ul {
		row-gap: 10px;
	}

	.partner-main-nav ul li:last-child {
		margin-left: 0;
	}

	.corporate-governance-wrapper ul li {
		width: 100%;
	}

	.corporate-governance-wrapper ul li:last-child::after {
		display: none;
	}

	.home-news-publication-section.governance-news {
		padding: 60px 0px;
	}

	.key-objects-section ul li {
		width: 100%;
	}

	.key-objects-section ul li:nth-child(2),
	.key-objects-section ul li:nth-child(3) {
		width: 100%;
	}

	.anti-corruption-message {
		padding: 20px 20px;
		width: 100%;
		margin-top: 10px;
	}

	.anti-corruption-message p {
		color: #fff;
		font-size: 15px;
		line-height: 24px;
	}

	.anti-corruption-message-title h4 {
		font-size: 19px;
		line-height: 20px;
		margin-bottom: 5px;
	}

	.anti-corruption-message-title span {
		font-size: 13px;
		line-height: 20px;
	}

	.anti-corruption-image {
		width: 70%;
		margin: 0 auto;
	}

	.anti-corruption-second-section-inner {
		flex-direction: column-reverse;
		margin-bottom: 15px;
	}


	.key-objects-section h2 {
		font-size: 45px;
		line-height: 45px;
	}

	.key-objects-section ul {
		position: relative;
		margin-top: -15px;
	}

	.key-objects-section ul li {
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
	}

	.key-objects-section ul li {
		min-height: auto;
		padding: 10px 15px 10px 45px;
	}

	.anti-corruption-play {
		margin-top: 10px;
	}

	.leadership-message-title h4 {
		font-size: 18px;
		line-height: 25px;
	}

	.leadership-message-title {
		margin-left: inherit;
		margin-top: 8px;
		width: 100%;
	}

	.leader-ship-content p {
		font-size: 15px;
		line-height: 24px;
	}

	.leader-ship-image {
		width: 48%;
		margin-bottom: 10px;
	}

	.how-to-get-video {
		margin-bottom: 25px;
	}

	.corporate-governance-overview {
		padding: 40px 0 25px;
	}

	.family-firm-bottom-section ul li {
		width: 60%;
	}

	.firm-img {
		min-height: 120px;
	}

	.project-aims-list li p {
		font-size: 17px;
		line-height: 26px;
	}

	.governance-bottom-contact-inner .green-btn {
		margin-top: 15px;
	}

	.events-list-main ul li {
		width: 48%;
	}

	.events-detail-top-section {
		padding: 45px 0 15px;
	}

	.event-list-content h4 {
		font-size: 15px;
		line-height: 18px;
		margin-bottom: 5px;
	}

	.event-list-icon {
		width: 75px;
		height: 75px;
	}

	.event-detail-content-img .green-btn {
		margin-top: 20px;
	}

	.event-detail-content-img {
		margin-bottom: 25px;
	}

	.event-detail-content-text p {
		margin-bottom: 10px;
	}

	.event-detail-content-social {
		justify-content: left;
	}

	.event-social-inner ul li {
		width: 50px;
		height: 50px;
	}

	.event-social-inner ul li a {
		font-size: 18px;
	}

	.events-detail-text-section {
		padding: 30px 0px 40px;
	}

	.corporate-governance-wrapper.gray-banner {
		padding: 40px 0px 20px;
	}

	.corporate-governance-wrapper.gray-banner ul {
		margin-top: 20px;
	}

	.related-news-section {
		padding: 30px 0 40px;
		-webkit-border-radius: 20px;
		-moz-border-radius: 20px;
		border-radius: 20px;
	}

	.related-news-slider {
		margin-top: 15px;
	}

	.owl-carousel.related-news .owl-nav button.owl-prev,
	.owl-carousel.related-news .owl-nav button.owl-next {
		top: -25px;
	}

	.news-detail-top-section {
		padding: 45px 0 20px;
	}

	.news-detail-top-section p {
		margin-bottom: 20px;
	}

	.news-publication-top-left img {
		margin: 10px 0 15px;
	}

	.news-publication-inner h3 {
		font-size: 22px;
		line-height: 24px;
	}

	.for-business-wrapper {
		padding: 50px 0px 50px;
	}

	.for-business-wrapper ul li {
		padding: 25px;
		padding-bottom: 65px;
	}

	.for-business-wrapper ul li .green-btn {
		bottom: 25px;
	}

	.for-business-wrapper ul li .main-title {
		line-height: 40px;
	}

	.for-business-wrapper ul li {
		width: 100%;
		padding: 20px;
		margin-bottom: 15px;
		padding-bottom: 65px;
	}

	.for-business-wrapper ul li .green-btn {
		margin-top: 10px;
		min-width: 175px;
		text-align: center;

	}

	.for-business-wrapper {
		padding: 45px 0px 40px;
	}

	.compatition-overview-content h2 {
		font-size: 30px;
		line-height: 35px;
		margin-bottom: 15px;
	}


	.compatition-overview {
		padding: 45px 0px 40px;
	}

	.compatition-overview-img {
		width: 60%;
		margin: 0 auto;
		margin-bottom: 35px;
	}

	.compatition-overview-img::after {
		content: "";
		width: 65px;
		height: 65px;
		bottom: -20px;
		left: -20px;
	}

	.compatition-overview:nth-child(2n+1) .compatition-overview-img::after {
		right: -20px;
	}

	.related-news-section.bussiness-related {
		padding-top: 45px;
	}

	.faq-accordion-content p {
		font-size: 15px;
	}

	.governance-overview-img {
		max-width: 300px;
		margin-top: 20px;
	}

	.sub-banner {
		background-position: left center;
	}

	.sub-banner .main-title {
		line-height: 28px;
	}

	.sub-banner.detail-page .date {
		font-size: 14px;
	}

	.sub-banner.detail-page p {
		font-size: 14px;
	}

	.sub-banner.detail-page {
		min-height: 450px;
	}

	.sub-banner.detail-page .main-title {
		line-height: 26px;
		font-size: 20px;
	}

	.event-name {
		margin-bottom: 10px;
	}

	.detail-page .white-btn {
		height: 38px;
		line-height: 38px;
		font-size: 11px;
		margin-top: 5px;
	}

	.proposition-section-ul li {
		width: 48%;
	}

	.proposition-section-ul {
		row-gap: 30px;
	}

	.proposition-section-ul li:nth-child(even) {
		margin-top: 0;
	}


	 .recent-events-section-inner ul li{
        width: 100%;
  }

  .about-main-section-wrap {
    padding-bottom: 20px;
}

    .about-main-section-inner {
        padding: 30px 0 34px;
    }

	  .value-text-main p {
    font-size: 14px;
    }

	.value-text-main{
		   top: 40px;
	}


}

@media (max-width: 480px) {

	.newsletter_form button {
		width: 120px;
		font-size: 12px;
	}

	.newsletter_form input {
		padding: 0 20px;
		width: calc(100% - 120px);
		height: 42px;
	}

	.header-options {
		left: 80px;
	}

	.sub-banner h1 {
		font-size: 35px;
		line-height: 35px;
	}

	.partner-main-nav ul li a {
		line-height: 35px;
		font-size: 15px;
	}

	.partner-main-nav ul li {
		margin-left: 30px;
		margin-right: 0;
	}

	.partner-main-nav ul li:last-child {
		margin-left: 0;
	}

	.sub-banner h1 {
		font-size: 30px;
		line-height: 35px;
	}

	.page-menu {
		-webkit-border-bottom-left-radius: 20px;
		-moz-border-bottom-left-radius: 20px;
		border-bottom-left-radius: 20px;
		-webkit-border-bottom-right-radius: 20px;
		-moz-border-bottom-right-radius: 20px;
		border-bottom-right-radius: 20px;
	}

	.corporate-governance-content {
		padding: 10px 0px 20px 0px;
	}

	.corporate-governance-content a {
		margin-top: 10px;
	}

	.home-news-publication-section.governance-news {
		padding: 50px 0px;
	}

	.anti-corruption-message {
		padding: 15px 15px;
		width: 100%;
		margin-top: 20px;
	}

	.anti-corruption-message-title h4 {
		font-size: 17px;
		line-height: 18px;
		margin-bottom: 5px;
	}

	.achivements-title h2 {
		font-size: 35px;
		line-height: 40px;
	}

	.achivements-title h4 {
		font-size: 15px;
		line-height: 18px;
		letter-spacing: 7px;
	}

	.achivements-main-list ul li {
		width: 100%;
		margin-bottom: 10px;
		padding: 15px 10px 15px;
	}

	.achivements-main-list-bottom {
		margin-top: 10px;
	}

	.anti-corruption-second-section {
		padding-bottom: 25px;
	}

	.achivements-main-list {
		margin-top: 30px;
	}

	.achivements-main-wrapper {
		padding: 40px 0px 40px;
	}

	.collabration-main-section {
		padding-bottom: 30px;
	}

	.collabration-main-section ul li {
		min-height: 120px;
		padding: 15px;
		border: 1px solid #E3E3E3;
		-moz-border-radius: 10px;
		-webkit-border-radius: 10px;
		border-radius: 10px;
	}

	.collabration-main-section ul {
		margin-top: 13px;
	}

	.collabration-main-section ul li {
		margin-bottom: 10px;
	}

	.howtowork-first-section {
		padding-top: 45px;
	}

	.governance-bottom-contact {
		margin-bottom: 30px;
	}

	.governance-overview-img.right::after {
		width: 65px;
		height: 65px;
		bottom: -22px;
		right: -22px;
	}

	.governance-overview-img.right {
		margin-bottom: 40px;
	}

	.governance-overview-img::after {
		width: 65px;
		height: 65px;
		bottom: -22px;
		right: -22px;
	}

	.student-progress-section ul li {
		width: 100%;
		margin-bottom: 65px;
	}

	.progress-box {
		width: calc(100% - 20px);
		margin-bottom: 10px;
		min-height: auto;
		padding-top: 50px;
	}

	.student-progress-section ul li:nth-child(2n) .progress-box {
		margin-top: 10px;
		padding-top: 50px;
	}

	.event-slider-date {
		font-size: 10px;
		line-height: 17px;
	}

	.event-slider-location {
		font-size: 10px;
	}

	.main-media-content h3 {
		font-size: 13px;
	}

	.featured-event-first {
		padding: 15px 15px;
	}

	.featured-event-first {
		margin-bottom: 30px;
	}

	.recent-events-section-inner {
		margin-top: 10px;
	}

	.recent-events-section-inner ul {
		row-gap: 25px;
	}

	.recent-events-section {
		padding: 40px 0px 50px;
	}

	.event-slider-date {
		padding: 9px 10px;
		padding-right: 30px;
	}

	.corporate-governance-wrapper .event-slider-location {
		font-size: 11px;
		line-height: 20px;
	}

	.related-news-section .main-title {
		padding-left: 0;
	}

	.owl-carousel.related-news .owl-nav button.owl-prev,
	.owl-carousel.related-news .owl-nav button.owl-next {
		top: inherit;
		bottom: -55px;
	}

	.related-news-section {
		padding-bottom: 70px;
	}

	.events-list-main ul {
		row-gap: 10px;
	}

	.corporate-partner-full-section {
		padding: 45px 0;
	}

	.main-title {
		font-size: 25px;
		line-height: 30px;
	}

	.our-impact-list-main ul li {
		width: 100%;
	}

	.our-impact-list-main h3 {
		font-size: 19px;
		line-height: 26px;
	}

	.our-impact-page-inner ul li {
		min-height: auto;
	}

	.evolution-second-section.impact {
		margin-top: 20px;
	}

	.evoltion-slider-date {
		font-size: 50px;
		line-height: 35px;
	}

	.corporate-governance-wrapper {
		padding: 30px 0px 25px;
	}

	.corporate-governance-content a {
		margin-top: 15px;
	}

	.corporate-governance-img {
		margin-top: 20px;
	}

	.for-business-wrapper ul li .main-title {
		line-height: 35px;
	}

	.for-business-wrapper ul li .main-title {
		margin-bottom: 10px;
	}

	.for-business-wrapper ul li p {
		line-height: 22px;
	}

	.page-menu {
		-webkit-border-bottom-left-radius: 15px;
		-moz-border-bottom-left-radius: 15px;
		border-bottom-left-radius: 15px;
		-webkit-border-bottom-right-radius: 15px;
		-moz-border-bottom-right-radius: 15px;
		border-bottom-right-radius: 15px;
	}

	.faq-accordion-title {
		font-size: 16px;
	}

	.faq-accordion-title {
		padding: 20px 20px;
		padding-left: 50px;
	}

	.upload-cv-btn {
		margin-top: 15px;
	}

	.career-overview {
		padding: 45px 0px 30px;
	}

	.faq-accordion-content {
		padding: 20px 15px 20px;
	}

	    .newsletter_form .submit {
        width: 118px;
		}
}

@media (max-width: 360px) {}