/* Vars */
:root {
	/* Colors */
	--white-color: #fff;
	--main-color: #172E4D;
	--main-darker-color: #bd7719;
	--main2-color: #EB9712;
	--green-color: #EB9712;
	--green2-color: #4b918c;
	--dark-color: #172E4D;
	--gray-color: #8499ac;
	--light-bg-color: #f4f9f8;
	--gray-bg-color: #6d7d8f;
	--transparent: transparent;
}

/* Fonts */
@font-face {
    font-family: 'Somar';
    src: url('../fonts/somar-extra-bold.otf') ;
       
    font-weight: 800; /* ExtraBold weight */
    font-style: normal;
}

/* Global Style */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

html {
	scroll-behavior: smooth;
font-family: 'Somar';
    font-weight: 800; /* Use the ExtraBold weight */
}

body {
	height: 100%;
 font-family: 'Somar';
    font-weight: 800; /* Use the ExtraBold weight */
	
	color: var(--dark-color);
	text-align: start;
	background-color: var(--white-color);
	margin: 0;
	padding: 0;
	font-size: 19px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	position: relative;
	
}

[dir="ltr"] {
	direction: ltr;
}

[dir="rtl"] {
	direction: rtl;
}

*::-webkit-input-placeholder {
	color: var(--dark-color);
	opacity: 0.3;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

*::-moz-placeholder {
	color: var(--dark-color);
	opacity: 0.3;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

*:-ms-input-placeholder {
	color: var(--dark-color);
	opacity: 0.3;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

*::-ms-input-placeholder {
	color: var(--dark-color);
	opacity: 0.3;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

*::placeholder {
	font-size: 12px;
	font-weight: 600;
	color: var(--dark-color);
	opacity: 1;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

button,
input[type="submit"] {
	cursor: pointer;
}

button,
li,
a {
	transition: all 0.5s ease;
}

button {
	box-shadow: none !important;
	outline: 0 none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	padding: 0;
	margin: 0;
	
}

a {
	text-decoration: none !important;
	transition: all 0.3s;
}

ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

/* Inputs Auto Fill */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
	box-shadow: none !important;
	background-color: #fff !important;
}

/* Custom Scroll bar */
body::-webkit-scrollbar,
*::-webkit-scrollbar {
	width: 0.5em;
	height: 0.3em;
}

body::-webkit-scrollbar-track,
*::-webkit-scrollbar-track {
	background-color: var(--gray-color);
}

body::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
	background-color: var(--main-color);
}

/* custom scrollbar for firefox */
@-moz-document url-prefix() {
	*,
	html,
	body {
		/* "auto" or "thin"  */
		scrollbar-width: thin;
		/* scroll thumb & track */
		scrollbar-color: var(--main-color) var(--gray-color);
	}
}

/* My Style */
.page_content {
	flex-grow: 1;
}

/*============================== Header ===============================*/
.app_header {
	padding: 24px 0;
	background-color: var(--transparent);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
}

.header_content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.2rem;
}

.app_logo {
	flex-shrink: 0;
	width: 100%;
	max-width: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.app_logo img {
	width: 100%;
}

.app_header .app_logo .logo_white {
	display: block;
}

.app_header .app_logo .logo_colour {
	display: none;
}

.menu_links {
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
}

.menu_links li {
	flex-shrink: 0;
}

.menu_links li a {
	font-size: 20px;
	
	color: var(--white-color);
	text-transform: uppercase;
	text-align: center;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	text-underline-offset: 8px;
}

.menu_links li:hover a,
.menu_links li.active a {
	text-decoration: underline !important;
	text-decoration-thickness: 1;
}

.app_header .language_btn {
	flex-shrink: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 27px;
	background-color: var(--transparent);
	border: 0;
	color: var(--white-color) !important;
	-webkit-margin-start: auto;
	margin-inline-start: auto;
}

.app_header.scrolled {
	background-color: var(--white-color);
	box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 8px;
	 background-image: url("../img/pattern3.png");
	background-repeat :no-repeat ;
}

.app_header.scrolled .app_logo .logo_white {
	display: none;
}

.app_header.scrolled .app_logo .logo_colour {
	display: block;
}

.app_header.scrolled .menu_links li a {
	color: var(--dark-color);
}

.app_header.scrolled .language_btn {
	color: var(--dark-color) !important;
}

/* Responsive Header */
.open_sidebar_btn {
	padding: 0;
	flex-shrink: 0;
	-webkit-text-decoration-color: black;
	text-decoration-color: black;
	color: #fff;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
}

[dir="rtl"] .open_sidebar_btn {
	transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
}

.app_header.scrolled .open_sidebar_btn {
	color: var(--dark-color);
}

.responsive_sidebar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100dvh;
	z-index: 99;
	background-color: var(--white-color);
	padding: 3rem 20px;
	display: flex;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
}

.responsive_sidebar.show {
	opacity: 1;
	visibility: visible;
}

.responsive_sidebar .head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.responsive_sidebar .head .language_btn {
	flex-shrink: 0;
	padding: 0;
	font-size: 18px;
	font-weight: 600;
	color: var(--dark-color);
	line-height: 1.4;
}

.close_sidebar_btn {
	flex-shrink: 0;
	padding: 0;
}

.responsive_sidebar .menu_links {
	flex-grow: 1;
	flex-direction: column;
	padding: 30px 0;
	justify-content: flex-start;
	gap: 40px;
}

.responsive_sidebar .menu_links li a {
	padding: 2rem 0 20px;
	font-size: 21px;
	color: #000;
	font-weight: 700;
	
	line-height: 16px;
}
/*=========================================== Register Interest Btn ==============================*/
.register_interest_btn {
	position: fixed;
	z-index: 5;
	top: 50%;
	padding: 8px 24px;
	background-color: var(--main-color);
	color: var(--white-color) !important;
	font-size: 19px;
	line-height: 1.25rem;
	font-weight: 700;
	
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
}

.register_interest_btn2 {
	position: absolute;
	z-index: 5;
	top: 50%;
	padding: 8px 24px;
	background-color: var(--main-color);
	color: var(--white-color) !important;
	font-size: 20px;
	line-height: 1.25rem;
	font-weight: 700;
	
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	
}
.register_interest_btn3 {
	position: absolute;
	z-index: 5;
	top: 55%;
	padding: 8px 24px;
	background-color: var(--main-color);
	color: var(--white-color) !important;
	font-size: 20px;
	line-height: 1.25rem;
	font-weight: 700;
	
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	
}


[dir="rtl"] .register_interest_btn {
	left: -50px;
}
[dir="rtl"] .register_interest_btn2 {
	right: 100px;
}

[dir="rtl"] .register_interest_btn3 {
	right: 100px;
}



[dir="ltr"] .register_interest_btn2 {
	left: 100px;
}

[dir="ltr"] .register_interest_btn3 {
	left: 100px;
}

[dir="ltr"] .register_interest_btn {
	right: -47px;
}

.register_interest_btn:hover {
	outline-offset: 0.3rem;
	outline: 1px solid var(--main-darker-color);
	background-color: var(--main-darker-color);
}
.register_interest_btn2:hover {
	outline-offset: 0.3rem;
	outline: 1px solid var(--main-darker-color);
	background-color: var(--main-darker-color);
}
.register_interest_btn3:hover {
	outline-offset: 0.3rem;
	outline: 1px solid var(--main-darker-color);
	background-color: var(--main-darker-color);
}
/* Responsive Register Btn */
.responsive_register_btn {
	position: fixed;
	z-index: 99;
	bottom: 45px;
	background-color: var(--main-color);
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 13px;
	border: 2px solid white;
	box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.25);
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
}

[dir="rtl"] .responsive_register_btn {
	left: 1rem;
}

[dir="ltr"] .responsive_register_btn {
	right: 1rem;
}

/* Interest Form */
.interest_form {
	position: fixed;
	top: 25%;
	z-index: 9999;
	width: 648px;
	padding: 64px 74px;
	background-color: rgb(242, 240, 237);
	transition-duration: 0.5s;
	overflow-y: auto;
}

[dir="rtl"] .interest_form {
	left: -648px;
	transition-property: left;
}

[dir="rtl"] .interest_form.show {
	left: 0;
}

[dir="ltr"] .interest_form {
	right: -648px;
	transition-property: right;
}

[dir="ltr"] .interest_form.show {
	right: 0;
}

.interest_form .close_btn {
	position: absolute;
	top: 0;
	right: 0;
	padding: 1rem 1rem;
	background-color: var(--main-color);
	cursor: pointer;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	border: 0;
	font-size: 0;
}

.interest_form h3 {
	font-size: 1.5rem;
	color: rgba(77, 96, 117, 1);
	font-weight: 700;
	
	line-height: 1.75rem;
}

.inquiry_of p {
	font-size: 18px;
	color: rgba(52, 70, 92, 1);
	font-weight: 700;
	
	margin-bottom: 12px;
	line-height: 24px;
}

.inquiry_options {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 48px;
}

.inquiry_option {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 28px;
}

.inquiry_option input[type="radio"] {
	visibility: hidden;
}

.inquiry_option input::after {
	content: "";
	flex-shrink: 0;
	width: 15px;
	height: 15px;
	background-color: #d1d3d1;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid white;
	cursor: pointer;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	visibility: visible;
}

.inquiry_option input[type="radio"]:checked::after {
	background-color: var(--main-color);
}

.inquiry_option label {
	font-size: 1.125rem;
	color: var(--dark-color);
}

.form_fields .field_holder {
	position: relative;
}

.form_fields .field_holder input {
	display: block;
	width: 100%;
	outline: none;
	border: 0;
	background: transparent;
	padding: 16px 17px 12px 0px;
	max-height: 50px;
	border-bottom: 1px solid rgba(77, 96, 117, 0.5);
}

.form_fields .field_holder label {
	position: absolute;
	top: 5px;
	font-size: 1rem;
	color: rgba(77, 96, 117, 0.5);
	line-height: 1.4;
}

[dir="rtl"] .form_fields .field_holder label {
	right: 16px;
}

[dir="ltr"] .form_fields .field_holder label {
	left: 16px;
}

.form_fields .field_holder input:focus {
	border-bottom-color: var(--main-color);
}

.form_fields .field_holder input:focus ~ label,
.form_fields .field_holder input:valid ~ label,
.form_fields .field_holder input.floated ~ label {
	font-weight: 400;
	outline: none;
	top: -14px;
	line-height: 1rem;
}

.form_fields .field_holder input:focus ~ label {
	font-size: 0.75rem;
	color: var(--main-color);
}

.submit_btn {
	padding: 12px 16px;
	background: linear-gradient(
		90deg,
		var(--main-darker-color) 50%,
		var(--main-color) 0
	);
	background-size: 200% 100%;
	background-position: 100% 100%;
	font-size: 0.875rem;
	color: var(--white-color) !important;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	border-radius: 1.5rem;
	-webkit-border-radius: 1.5rem;
	-moz-border-radius: 1.5rem;
	-ms-border-radius: 1.5rem;
	-o-border-radius: 1.5rem;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}

.submit_btn:hover {
	background-position: 0 100%;
	background-color: var(--main2-color);
}

/*=========================================== Footer ==============================*/
.app_footer {
	padding: 48px;
}

.top_footer {
	padding-bottom: 48px;
}

.footer_logo {
	display: block;
	min-width: 200px;
	max-width: 100%;
}

.footer_col h5 {
	font-size: 22px;
	font-weight: 700;
	color: rgba(52, 70, 92, 1);
	
	text-transform: uppercase;
	margin-bottom: 20px;
}

.footer_col ul li:not(:last-child) {
	margin-bottom: 14px;
}

.footer_col ul li a {
	font-size: 20px;
	font-weight: 400;
	color: var(--dark-color);
}

.footer_col ul li:hover a {
	text-decoration: underline !important;
	text-underline-offset: 8px;
}

.footer_col .map_holder {
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	overflow: hidden;
	margin-bottom: 20px;
}

.footer_col .map_holder iframe {
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.footer_col .location_info {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 16px;
}

.footer_col .location_info img {
	flex-shrink: 0;
	width: 38px;
}

.footer_col .location_info .info h6 {
	font-size: 22px;
	font-weight: 400;
	color: var(--dark-color);
	margin-bottom: 7px;
}

.footer_col .location_info .info p {
	font-size: 18px;
	font-weight: 400;
	color: var(--dark-color);
	margin-bottom: 0;
}

.footer_col .social_links {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 9px;
}

.footer_col .social_links a {
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer_col .social_links a img {
	max-width: 100%;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
}

.footer_col .social_links a:hover img {
	filter: drop-shadow(2px 1px 2px #34465c);
	-webkit-filter: drop-shadow(2px 1px 2px #34465c);
}

.copyRights {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: var(--dark-color);
	text-transform: uppercase;
	text-align: center;
	
	padding-top: 48px;
}

/* Footer Pattern */
.footer_pattern {
	position: absolute;
	bottom: 0;
	max-width: 400px;
	overflow: hidden;
	z-index: -1;
}

[dir="rtl"] .footer_pattern {
	right: 0;
	transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	-moz-transform: scaleX(-1);
	-ms-transform: scaleX(-1);
	-o-transform: scaleX(-1);
}

[dir="ltr"] .footer_pattern {
	left: 0;
}

.footer_pattern img {
	max-width: 100%;
}

/*=========================================== Intro Sec ==============================*/
.intro_sec {
	position: relative;
	height: 100%;
	max-height: 1200px;
}

.intro_sec .overlay {
	height: 100%;
	width: 100%;
	position: absolute;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 47.39%);
}

#video-banner {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.intro_words {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -40%);
	-webkit-transform: translate(-50%, -40%);
	-moz-transform: translate(-50%, -40%);
	-ms-transform: translate(-50%, -40%);
	-o-transform: translate(-50%, -40%);
	z-index: 2;
	width: 100%;
	max-width: 90%;
	margin: 0 auto;
}

.word {
	display: block;
	text-align: center;
	position: absolute;
	
	color: var(--white-color);
	font-size: 4.5rem;
	line-height: 1.1;
	font-weight: 900;
	z-index: 2;
	width: 100%;
	animation: wordAnimation 28s infinite;
	-webkit-animation: wordAnimation 28s infinite;
	opacity: 0;
}

@-webkit-keyframes wordAnimation {
	0% {
		opacity: 0;
		transform: translateY(100px);
		-webkit-transform: translateY(100px);
		-moz-transform: translateY(100px);
		-ms-transform: translateY(100px);
		-o-transform: translateY(100px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
	}
}

@keyframes wordAnimation {
	0%,
	14.28% {
		opacity: 0;
		transform: translateY(100px);
		-webkit-transform: translateY(100px);
		-moz-transform: translateY(100px);
		-ms-transform: translateY(100px);
		-o-transform: translateY(100px);
	}
	14.28%,
	28.56% {
		opacity: 1;
		transform: translateY(0);
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
	}
	28.56%,
	100% {
		opacity: 0;
		transform: translateY(100px);
		-webkit-transform: translateY(100px);
		-moz-transform: translateY(100px);
		-ms-transform: translateY(100px);
		-o-transform: translateY(100px);
	}
}

.word:nth-child(1) {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}
.word:nth-child(2) {
	-webkit-animation-delay: 4s;
	animation-delay: 4s;
}
.word:nth-child(3) {
	-webkit-animation-delay: 8s;
	animation-delay: 8s;
}
.word:nth-child(4) {
	-webkit-animation-delay: 12s;
	animation-delay: 12s;
}
.word:nth-child(5) {
	-webkit-animation-delay: 16s;
	animation-delay: 16s;
}
.word:nth-child(6) {
	-webkit-animation-delay: 20s;
	animation-delay: 20s;
}
.word:nth-child(7) {
	-webkit-animation-delay: 24s;
	animation-delay: 24s;
}

/*================================== Our Project ========================*/
.our_projects {
	padding: 130px 0 10px;
}

.our_projects .head {
	margin-bottom: 50px;
}

.our_projects .head h2 {
	font-size: 59px;
	color: var(--dark-color);
	text-align: center;
	margin-bottom: 24px;
}

.our_projects .head h2 span {
	color: var(--green-color);
	font-weight: 700;
	
}

.our_projects .head h5 {
	font-size: 20px;
	color: var(--dark-color);
	text-align: center;
	max-width: 80%;
	margin: 0 auto;
}

.projects_tabs .nav-pills {
	border-bottom: 2px solid #cfcece;
	display: flex;
	gap: 30px;
	margin-bottom: 50px;
	flex-wrap: nowrap;
	overflow-x: auto;
}

.projects_tabs .nav-pills::-webkit-scrollbar {
	height: 0;
}

.projects_tabs .nav-pills .nav-item {
	flex-shrink: 0;
}

.projects_tabs .nav-pills .nav-item .nav-link {
	padding: 10px;
	background-color: var(--transparent);
	border-bottom: 3px solid var(--transparent);
	font-size: 20px;
	color: var(--dark-color);
	text-transform: uppercase;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}

.projects_tabs .nav-pills .nav-item .nav-link:hover {
	border-bottom: 3px solid rgba(215, 146, 49, 0.302);
}

.projects_tabs .nav-pills .nav-item .nav-link.active {
	border-bottom-color: var(--main-color);
	font-weight: 700;
	
}

.projects_slider {
	position: relative;
}

.projects_slider .slider_actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 50px;
}

.projects_slider .slider_actions .swiper-pagination,
.projects_slider .slider_actions .swiper-button-prev,
.projects_slider .slider_actions .swiper-button-next {
	position: relative;
	top: 0;
}

.projects_slider .slider_actions .swiper-button-prev,
.projects_slider .slider_actions .swiper-button-next {
	flex-shrink: 0;
	width: 45px;
	height: 45px;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--main-color);
	font-size: 24px;
	color: var(--white-color);
}

.projects_slider .slider_actions .swiper-button-prev::after,
.projects_slider .slider_actions .swiper-button-next::after {
	font-size: 24px;
	color: var(--white-color);
}

[dir="rtl"] .projects_slider .slider_actions .swiper-button-prev,
[dir="rtl"] .projects_slider .slider_actions .swiper-button-next {
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
}

.projects_slider .slider_actions .swiper-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.projects_slider .slider_actions .swiper-pagination .swiper-pagination-bullet {
	width: 50px;
	height: 3px;
	background-color: var(--gray-bg-color);
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	opacity: 0.5;
}

.projects_slider
	.slider_actions
	.swiper-pagination
	.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--main-color);
}

.projects_slider .project_info .project_logo {
	display: block;
	height: 9rem;
	margin-bottom: 30px;
}

.projects_slider .swiper-slide .project_large_img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.project_info_row {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 30px;
	margin-bottom: 30px;
}

.project_info_row .info_boxes {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 20px;
}

.project_info_row .info_boxes .info_box:not(:first-child) {
	-webkit-border-start: 1.2px solid #cfcece;
	border-inline-start: 1.2px solid #cfcece;
	-webkit-padding-start: 20px;
	padding-inline-start: 20px;
}

.project_info_row .info_boxes .info_box {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
}

.project_info_row .info_boxes .info_box .icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.project_info_row .info_boxes .info_box .icon img {
	max-width: 100%;
}

.project_info_row .info_boxes .info_box span {
	font-size: 16px;
	font-weight: 300;
	color: var(--dark-color);
	font-family: "FS Albert Arabic Light", sans-serif;
}

.info_badge {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px 10px;
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-ms-border-radius: 15px;
	-o-border-radius: 15px;
	font-size: 14px;
}

.info_badge.started {
	color: #4b918c;
	background: #f4f9f8;
}

.info_badge.announced {
	color: #bf6c55;
	background: #fcf6f4;
}

.project_desc {
	font-size: 16px;
	color: var(--dark-color);
	margin-bottom: 30px;
}

.project_details {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 20px;
	margin-bottom: 30px;
}

.project_details .details_box:not(:first-child) {
	-webkit-border-start: 1.2px solid #cfcece;
	border-inline-start: 1.2px solid #cfcece;
	-webkit-padding-start: 20px;
	padding-inline-start: 20px;
}

.project_details .details_box h4 {
	font-size: 20px;
	font-weight: 700;
	color: var(--dark-color);
	
	margin-bottom: 10px;
}

.project_details .details_box p {
	font-size: 14px;
	color: var(--gray-color);
	text-transform: uppercase;
	margin-bottom: 0;
}

.project_btn {
	padding: 12px 16px;
	background: linear-gradient(
		270deg,
		var(--main-darker-color) 50%,
		var(--main-color) 0
	);
	background-size: 200% 100%;
	background-position: 0 100%;
	font-size: 0.875rem;
	color: var(--white-color) !important;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	border-radius: 1.5rem;
	-webkit-border-radius: 1.5rem;
	-moz-border-radius: 1.5rem;
	-ms-border-radius: 1.5rem;
	-o-border-radius: 1.5rem;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}

.project_btn:hover {
	background-position: 100% 107%;
	background-color: var(--main2-color);
}

.project_btn img {
	flex-shrink: 0;
	width: 15px;
}

/*====================================== About Us ================================*/
.about_us {
	padding: 130px 0 10px;
}

.about_content {
	padding: 50px 30px;
	max-width: 80%;
	margin: 0 auto;
	background-color: rgb(242, 240, 237);
	position: relative;
}

.about_content::before {
	content: "";
	background-color: var(--main2-color);
	position: absolute;
	top: -20px;
	width: 20%;
	height: 90%;
	z-index: -1;
}

[dir="rtl"] .about_content::before {
	right: -20px;
}

[dir="ltr"] .about_content::before {
	left: -20px;
}

.about_content h3 {
	font-size: 59px;
	font-weight: 700;
	color: var(--dark-color);
	
	text-align: center;
	margin-bottom: 20px;
}

.about_content p {
	font-size: 24px;
	color: var(--dark-color);
	text-align: center;
	margin-bottom: 0;
}
	.text-gray {
 color: var(--dark-color);
  font-weight: 600;
      margin-top: 12px;
	      font-size: 22px;
}
			.text-darkGray {
   color: var(--dark-color);
     font-weight: BOLD;
    margin-bottom: 0;
    FONT-SIZE: 22px;
	margin-bottom: 0;

	
}
/*====================================== Our Values ================================*/
.our_values {
	padding: 50px 0;
	background-color: rgb(242, 240, 237);
	margin: 100px 0 30px;
}

.our_values h3 {
	font-size: 59px;
	font-weight: 700;
	color: var(--dark-color);
	
	text-align: center;
	margin-bottom: 30px;
}

.value_box .value_icon {
	width: 180px;
	height: 180px;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #E8D7B1;
	margin: 0 auto 20px;
}

.value_box .value_icon .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 146px;
	height: 146px;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	overflow: hidden;
	background-color:#b7c2dd ;
}

.value_box .value_icon .icon img {
	width: 100%;
	max-width: 60px;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
}

.value_box:hover .value_icon .icon img {
	transform: scale(1.15);
	-webkit-transform: scale(1.15);
	-moz-transform: scale(1.15);
	-ms-transform: scale(1.15);
	-o-transform: scale(1.15);
}

.value_box .title {
	font-size: 26px;
	font-weight: 700;
	color: var(--main-color);
	text-align: center;
	margin-bottom: 10;
}

.value_box .desc {
	font-size: 19px;
	
	color: var(--dark-color);
	text-align: center;
}

/*====================================== Vision Meg ================================*/
.vision_msg {
	padding: 30px 0;
	margin: 100px 0 20px;
	    background-image: url("../img/pattern2.png");
}

.vision_msg h3 {
	font-size: 59px;
	font-weight: 700;
	color: var(--dark-color);
	
	text-align: center;
	margin-bottom: 40px;
}

.vision_box {
	background-color: rgb(242, 240, 237);
	padding: 30px 50px;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
	position: relative;
	height: 100%;
}

.vision_box::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	width: 100%;
	height: 90%;
	z-index: -1;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

[dir="rtl"] .vision_box::before {
	right: -10px;
}

[dir="ltr"] .vision_box::before {
	left: -10px;
}

.vision_box.vision::before {
	background-color: var(--main-color);
}

.vision_box.msg::before {
	background-color: var(--main2-color);
}

.vision_box h5 {
	font-size: 38px;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 10px;
}

.vision_box ul {
	list-style-type: disc;
	-webkit-padding-start: 16px;
	padding-inline-start: 16px;
}

.vision_box ul li:not(:last-child) {
	margin-bottom: 0px;
}

.vision_box ul li {
	font-size: 22px;
	font-weight: bold;
	color: var(--dark-color);
}

/*====================================== Join Us ================================*/
.join_us {
	padding: 130px 0 10px;
}

.join_form {
	padding: 50px 30px;
	background-color: #34465c;
	max-width: 80%;
	margin: 0 auto;
}

.join_form .form_content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.join_form .form_content h3,
.join_form .inquiry_of p,
.join_form .form_content .inquiry_option label,
.join_form .form_content .form_fields .field_holder label,
.join_form .form_content .form_fields .field_holder input {
	color: var(--white-color);
}

.join_form .submit_btn {
	padding: 12px 30px;
}

.join_form .form_content > * {
	width: 90%;
}

/*======================================= Contact Us =========================*/
.contact_us {
	padding: 130px 0 10px;
}

.contact_us h2 {
	font-size: 3rem;
	font-weight: 700;
	color: var(--dark-color);
	
	text-align: center;
	margin-bottom: 30px;
}

.conatctUs_content {
	max-width: 80%;
	margin: 0 auto 100px;
	padding: 50px;
	background-color: rgba(242, 240, 237, 0.4);
	position: relative;
}

.bs-stepper-header .step:not(:first-child) {
	margin-top: 64px;
	position: relative;
}

.bs-stepper-header .step:not(:first-child)::before {
	content: "";
	position: absolute;
	height: 55px;
	border-right: 1px solid rgba(106, 94, 148, 1);
	width: 1px;
	background: #000;
	bottom: calc(100% + 5px);
}

[dir="rtl"] .bs-stepper-header .step:not(:first-child)::before {
	right: 20px;
}

[dir="ltr"] .bs-stepper-header .step:not(:first-child)::before {
	left: 20px;
}

.bs-stepper .step-trigger {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	flex-wrap: nowrap;
}

.bs-stepper-circle {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	background-color: transparent !important;
	padding: 0;
	font-size: 14px;
	line-height: normal;
	margin: 0;
	overflow: hidden;
	padding: 4px;
}

.step.active .bs-stepper-circle {
	border: 1px solid rgba(106, 94, 148, 1);
}

.step .step_num {
	background-color: var(--dark-color);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
}

.step.active .step_num {
	background-color: rgba(106, 94, 148, 1);
}

.step.completed .step_num {
	background-color: rgba(75, 145, 140, 1);
}

.bs-stepper-label {
	font-size: 18px;
	color: var(--dark-color);
}

.stepper_actions {
	position: absolute;
	bottom: -70px;
	right: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.next_btn {
	padding: 12px 16px;
	background: linear-gradient(
		270deg,
		var(--main-darker-color) 50%,
		var(--main-color) 0
	);
	background-size: 200% 100%;
	background-position: 0 100%;
	font-size: 0.875rem;
	color: var(--white-color) !important;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	border-radius: 1.5rem;
	-webkit-border-radius: 1.5rem;
	-moz-border-radius: 1.5rem;
	-ms-border-radius: 1.5rem;
	-o-border-radius: 1.5rem;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	border: 0;
	-webkit-margin-start: auto;
	margin-inline-start: auto;
}

.next_btn:hover {
	background-position: 100% 107%;
	background-color: var(--main2-color);
}

.prev_btn {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	background-color: transparent !important;
	border: 0;
	padding: 12px 16px;
	font-size: 0.875rem;
	color: var(--dark-color) !important;
}

.prev_btn .arrow_left {
	right: 0;
	top: 3px;
	display: inline-block;
	width: 8px;
	height: 8px;
	border-top: 2px solid var(--dark-color);
	border-left: 2px solid var(--dark-color);
	transform: rotate(135deg);
}

[dir="ltr"] .prev_btn .arrow_left {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
}

.bs-stepper-content {
	flex-grow: 1;
}

.step_content {
	padding: 0 50px;
}

.step_content .head {
	margin-bottom: 25px;
}

.step_content .head h5 {
	font-size: 16px;
	color: rgb(75, 145, 140);
	margin-bottom: 10px;
}

.step_content .head h3 {
	font-size: 36px;
	color: var(--dark-color);
	margin-bottom: 0;
}

.interest_select {
	display: block;
	margin-top: 25px;
}

.interest_select label {
	display: block;
	margin-bottom: 10px;
	font-size: 21px;

}

.interest_ddl {
	position: relative;
}

.select2-container {
	width: 100% !important;
}

.select2-container .select2-selection {
	border: 0 !important;
	border-bottom: 1px solid rgba(77, 96, 117, 0.5) !important;
	background-color: transparent !important;
	height: auto !important;
	border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
	-moz-border-radius: 0 !important;
	-ms-border-radius: 0 !important;
	-o-border-radius: 0 !important;
}

.select2-container.select2-container--focus .select2-selection {
	border-bottom-color: var(--main-color) !important;
}

.select2-container .select2-selection .select2-selection__rendered {
	-webkit-padding-start: 8px !important;
	padding-inline-start: 8px !important;
	-webkit-padding-end: 20px !important;
	padding-inline-end: 20px !important;
	line-height: normal !important;
	font-size: 18px;
	color: var(--dark-color);
}

.select2-container .select2-selection__arrow {
	background-image: url("../img/ddl-arrow.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 16px !important;
	height: 16px !important;
	top: 50% !important;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

[dir="rtl"] .select2-container .select2-selection__arrow {
	left: 1px;
	right: auto;
}

[dir="ltr"] .select2-container .select2-selection__arrow {
	left: auto !important;
	right: 1px !important;
}

.select2-container .select2-selection__arrow b {
	display: none;
}

.select2-dropdown {
	border-width: 0;
	background: #fff;
	box-shadow: 0 0 100px rgba(0, 0, 0, 0.1);
	margin-top: 1px;
	padding: 15px;
	border-radius: 24px !important;
	-webkit-border-radius: 24px !important;
	-moz-border-radius: 24px !important;
	-ms-border-radius: 24px !important;
	-o-border-radius: 24px !important;
}

.select2-dropdown.phone_ddl {
	width: auto !important;
}

.select2-results__option {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	background-color: transparent !important;
	color: #4d6075 !important;
	padding: 12px 24px;
	font-size: 16px;
	margin-bottom: 5px;
}

.select2-results__option.select2-results__option--selected,
.select2-results__option.select2-results__option--highlighted {
	background-color: #f8f7f7 !important;
	color: #4d6075 !important;
	border-radius: 9999px;
	-webkit-border-radius: 9999px;
	-moz-border-radius: 9999px;
	-ms-border-radius: 9999px;
	-o-border-radius: 9999px;
}

.dstepper-none {
	display: none !important;
}

.individual_org h4 {
	font-size: 24px;
	color: var(--dark-color);
	margin-bottom: 20px;
}

.ind_org_options {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 48px;
}

.ind_org_option {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 28px;
}

.ind_org_option input[type="radio"] {
	visibility: hidden;
	position: relative;
	width: 15px;
	height: 15px;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
}

.ind_org_option input::after {
	content: "";
	flex-shrink: 0;
	width: 15px;
	height: 15px;
	background-color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--dark-color);
	cursor: pointer;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	visibility: visible;
}

.ind_org_option input::before {
	content: "";
	width: 7px;
	height: 7px;
	display: block;
	background-color: var(--white-color);
	cursor: pointer;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}

.ind_org_option input[type="radio"]:checked::before {
	background-color: var(--main-color);
	visibility: visible;
}

.ind_org_option label {
	font-size: 1.125rem;
	color: var(--dark-color);
}

.row_title {
	font-size: 24px;
	color: var(--dark-color);
	margin-bottom: 30px;
}

.checkboxes {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 30px;
}

.checkboxes.checkboxes_column {
	flex-direction: column;
	align-items: flex-start;
}

.from-check {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
}

input[type="checkbox"] {
	visibility: hidden;
	position: relative;
}

input[type="checkbox"]::before {
	visibility: visible;
	content: "";
	display: flex;
	align-items: center;
	justify-content: center;
	width: 15px;
	height: 15px;
	background-color: var(--white-color);
	border: 1px solid var(--dark-color);
	flex-shrink: 0;
}

input[type="checkbox"]:checked::before {
	background-color: var(--main-color);
	border-color: var(--main-color);
}

input[type="checkbox"]::after {
	content: "";
	right: 11px;
	top: 7px;
	width: 2px;
	height: 2px;
	box-shadow: 2px 0 0 #fff, 4px 0 0 #fff, 4px -2px 0 #fff, 4px -4px 0 #fff,
		4px -6px 0 #fff, 4px -8px 0 #fff;
	transform: rotate(45deg);
	position: absolute;
	background-color: #fff;
	visibility: hidden;
	opacity: 0;
}

input[type="checkbox"]:checked::after {
	visibility: visible;
	opacity: 1;
}

.from-check label {
	font-size: 18px;
	color: var(--dark-color);
}

.others_input {
	display: none;
}

.checkboxes:has(input[type="checkbox"][value="others"]:checked)
	~ .others_input {
	display: block;
}

textarea {
	display: block;
	width: 100%;
	outline: none;
	border: 0;
	background: transparent;
	padding: 16px 17px 12px 0px;
	height: 100px;
	border-bottom: 1px solid rgba(77, 96, 117, 0.5);
	resize: none;
}

.form_fields .field_holder label {
	position: absolute;
	top: 5px;
	font-size: 1rem;
	color: rgba(77, 96, 117, 0.5);
	line-height: 1.4;
}

[dir="rtl"] .form_fields .field_holder label {
	right: 16px;
}

[dir="ltr"] .form_fields .field_holder label {
	left: 16px;
}

textarea:focus {
	border-bottom-color: var(--main-color);
}

textarea:focus ~ label,
textarea:valid ~ label,
textarea.floated ~ label {
	font-weight: 400;
	outline: none;
	top: -14px !important;
	line-height: 1rem !important;
}

textarea:focus ~ label {
	font-size: 0.75rem !important;
	color: var(--main-color) !important;
}

/*============================== Loader ======================*/
#loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	opacity: 1;
	transition: opacity 0.5s ease;
}
#loading-overlay.hide {
	opacity: 0;
	visibility: hidden;
}
.loader {
	width: 80px;
	aspect-ratio: 1;
	display: grid;
	color: var(--main-color);
	background: radial-gradient(circle 16px, currentColor 94%, #0000);
	-webkit-mask: radial-gradient(circle 5px, #0000 90%, #000);
	-webkit-animation: l10 1.5s infinite linear;
	animation: l10 1.5s infinite linear;
}
.loader:before,
.loader:after {
	content: "";
	grid-area: 1/1;
	background: radial-gradient(
				farthest-side at bottom right,
				currentColor 94%,
				#0000
			)
			top right,
		radial-gradient(farthest-side at top left, currentColor 94%, #0000) bottom
			left;
	background-size: 40% 45%;
	background-repeat: no-repeat;
	-webkit-mask: radial-gradient(60% 100% at bottom right, #0000 94%, #000) top
			right,
		radial-gradient(60% 100% at top left, #0000 94%, #000) bottom left;
	-webkit-mask-size: 40% 45%;
	-webkit-mask-repeat: no-repeat;
}
.loader:after {
	transform: rotate(90deg);
}
@-webkit-keyframes l10 {
	100% {
		transform: rotate(1turn);
	}
}
@keyframes l10 {
	100% {
		transform: rotate(1turn);
	}
}

.modal-content{
  background-image:  url("../img/modalBg.png");
  background-repeat: no-repeat;
  background-color: unset;
  background-size: cover;
  border: 0;
  text-align: center;
  padding: 50px 10px 50px;
  position: relative;
  /* min-height: 100%;*/
}

.modal-header , .modal-footer{
border: 0;
}

.modal .close{
  position: absolute;
  right: 17px;
  top: 8px;
  background-color: #EF0350;
  color: white;
  border-radius: 100%;
  height: 50px;
  width: 50px;
  padding: 0px;
  border: 5px solid #9A9898;
  opacity: 1;
}
.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover{
  transition: all 0.5s ease 0s;

  opacity: 1;
  border-color:#000 ;
}
.modal .close span{
    vertical-align: text-top;

}

