* {
	box-sizing: border-box;
}
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body {
	margin: 0;
}
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
}

body {
    padding-top: 80px; /* Adjust this value to match your header's height */
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}
audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}
audio:not([controls]) {
	display: none;
	height: 0;
}
[hidden],
template {
	display: none;
}
a {
	background-color: transparent;
	text-decoration: none;
}
a:active,
a:hover {
	outline: 0;
}
abbr[title] {
	border-bottom: 1px dotted;
}
b,
strong {
	font-weight: bold;
}
dfn {
	font-style: italic;
}
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}
mark {
	background: #ffff00;
	color: #000000;
}
small {
	font-size: 80%;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
img {
	border: 0;
	display: block;
	width: 100%;
	height: auto;
}
svg:not(:root) {
	overflow: hidden;
}
figure {
	margin: 1em 40px;
}
hr {
	box-sizing: content-box;
	height: 0;
}
pre {
	overflow: auto;
}
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}
/* FORM */
button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
	outline: none;
}
button {
	overflow: visible;
}
button,
select {
	text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}
button[disabled],
html input[disabled] {
	cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
input {
	line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
input[type="search"] {
	box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}
legend {
	border: 0;
	padding: 0;
}
textarea {
	overflow: auto;
}
.btn,
button,
input[type="submit"] {
	background-color: #333333;
	border-radius: 100px;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	color: #ffffff;
	border: none;
	line-height: 32px;
	padding: 2px 24px;
	display: inline-block;
}
.form input,
.form select,
.form textarea {
	border: none;
	border-radius: 7px;
	width: 100%;
	font-size: 14px;
	height: 36px;
	line-height: 36px;
	padding: 0 15px;
	margin-bottom: 10px;
	-webkit-appearance: none;
	appearance: none;
	-moz-appearance: none;
}
.form textarea {
	min-height: 129px;
	max-height: 300px;
}
optgroup {
	font-weight: bold;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
td, th {
	padding: 0;
}
body {
	font-family: "Poppins", sans-serif;
	font-weight: normal;
	font-size: 15px;
	color: #333333;
	background-color: #e9e9e9;
}
p {
	margin-top: 0;
	margin-bottom: 15px;
}
h1, h2, h3, h4, h5, h6 {
	color: #333333;
	margin: 0 0 4px;
}
h3 {
	font-size: 34px;
	font-weight: 800;
	line-height: 36px;
}
/* LAYOUT */
.container {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}
.flex, .flex-sm {
	display: flex;
}
.flex > li,
.flex .col,
.flex-sm > li,
.flex-sm .col {
	flex: 1;
	margin-left: 1.15%;
	margin-right: 1.15%;
}
.flex-justify {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}
.flex-justify > li,
.flex-justify .col {
	flex: 0 1 auto;
}
.flex-v-center {
	align-items: center;
	justify-content: center;
}
.flex-reverse {
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.radius-box {
	border-radius: 20px;
	overflow: hidden;
	-webkit-box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.13);
	-moz-box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.13);
	box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.13);
}
/* TOP BAR */
.top-bar {
	background-color: #6e7b84;
	color: #ffffff;
	height: 48px;
}
.top-bar-items li {
	text-align: right;
	font-size: 12px;
	padding: 16px 0 12px;
	display: block;
}
.top-bar-items li:first-child {
	text-align: left;
}
.top-bar-items li:last-child {
	text-align: right;
}
.top-bar-items li i {
	font-size: 16px;
	display: inline-block;
	vertical-align: text-top;
	margin: 0 4px;
}
.top-bar-items li a {
	color: #ffffff;
}
/* HEADER */
.site-header {
    background-color: #ffffff;
    height: 82px;
    border-radius: 15px; /* Add rounded corners to top and bottom */
    border: 1px solid #d53c0536; /* Add border color */
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    margin-top: 2px; /* Add space at the top to show the rounded corners */
}

/* Add a subtle hover effect */
.site-header:hover {
    -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
}

/* Ensure content doesn't overflow the rounded corners */
.site-header > .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.site-header .flex-sm > div {
	width: 75%;
}
.site-header > .flex-sm > .text-right {
	max-width: 290px;
}
/* BRANDING */
.brand {
	max-width: 194px;
}
.brand a {
	display: block;
	margin-top: 5px;
}
.brand svg {
	max-width: 400px;
}
/* NAVIGATION */
.nav {
    padding-right: 20px;
    position: relative;
    direction: rtl; /* Set direction to right-to-left */
}

.primary-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
	padding-right:70px ;

}

.primary-menu > li {
    position: relative;
    /* z-index: 1; */
}

.primary-menu > li > a {
    font-size: 18px;
    color: #000000;
    display: block;
    padding: 0 14px;
    line-height: 55px;
    text-align: center;
    background-image: linear-gradient(to top, #d53e05 50%, transparent 50%);
    background-size: 100% 200%;
    background-position: top;
    transition: color 0.3s ease-in-out;
    border-radius: 8px;
    margin: 0 4px;
    position: relative;
    overflow: hidden;	
    text-decoration: none;
}

.primary-menu > li:hover > a {
    color: #d53e05;
    text-decoration: none;
}

.primary-menu > li.active > a {
    color: #d53e05;
    font-weight: 700;
    text-decoration: none;
}

/* ACCOUNT LINKS */
.account-links {
	background-color: #6e7b84;
	overflow: hidden;
	display: inline-block;
	border-radius: 50px;
	padding: 0 10px;
	margin-top: 24px;
}
.account-links li {
	float: left;
	position: relative;
}
.account-links li a {
	display: block;
	padding: 8px 14px;
	font-size: 15px;
	color: #ffffff;
}
.account-links li:not(:last-child)::after {
	content: "";
	display: block;
	position: absolute;
	width: 1px;
	height: 15px;
	background-color: #c1c1c1;
	right: -1px;
	top: 12px;
}
/* BANNER */
.main-banner {
	overflow: hidden;
	position: relative;
}
.banner-skew {
	overflow: hidden;
	-webkit-transform: skewY(-4deg);
	-moz-transform: skewY(-4deg);
	-ms-transform: skewY(-4deg);
	-o-transform: skewY(-4deg);
	transform: skewY(-4deg);
	margin-top: -3.5%;
	min-height: 300px;
}
.banner-skew::before {
	content: "";
	display: block;
	position: absolute;
	background-color: #3b3b3b;
	height: 100%;
	width: 100%;
	left: 0;
	z-index: 1;
	opacity: 0.6;
	top: 0;
}
.banner-skew img {
	width: 100%;
	display: block;
	height: auto;
	margin-bottom: -3.5%;
	-webkit-transform: skewY(4deg);
	-moz-transform: skewY(4deg);
	-ms-transform: skewY(4deg);
	-o-transform: skewY(4deg);
	transform: skewY(4deg);
}
.banner-content {
	position: absolute;
	z-index: 2;
	text-align: center;
	max-width: 620px;
	width: 100%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -75%);
	text-shadow: 0px 0px 6px rgb(110, 110, 110);
}
.banner-content h1 {
	font-size: 62px;
	font-weight: 900;
	margin: 0 0 10px;
	color: #ffffff;
}
.banner-content h3 {
	font-size: 20px;
	font-weight: normal;
	color: #ffffff;
}
/* SPECS */
.specs {
	max-width: 642px;
	width: 100%;
	display: flex;
	margin: -50px auto 60px;
	position: relative;
	z-index: 3;
	border-radius: 10px;
	overflow: hidden;
}
.specs li {
	width: 100%;
	padding: 18px 0 18px 12px;
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(left, #ffffff 0%, #f3f3f3 68%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #ffffff 0%, #f3f3f3 68%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #ffffff 0%, #f3f3f3 68%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#f3f3f3", GradientType=1); /* IE6-9 */
}
.specs li .ico-s {
	display: block;
	float: left;
	width: 47px;
	height: 47px;
	border-radius: 50px;
	background-color: #ffc500;
	text-align: center;
	line-height: 47px;
	font-size: 30px;
	margin-right: 10px;
}
/*.specs li:nth-child(1) .ico-s {
	background-color: #ffe30070;
}
.specs li:nth-child(2) .ico-s {
	background-color: #c8dbff;
}
.specs li:nth-child(3) .ico-s {
	background-color: #d6eea2;
}
.specs li:nth-child(4) .ico-s {
	background-color: #ffccd5;
}*/
.specs li strong {
	font-size: 28px;
	line-height: 28px;
	color: #222222;
	display: block;
}
.specs li span:not(.ico-s) {
	font-size: 13px;
	color: #333333;
}
/* TRACKING FIELD */
.tracking-field {
	position: relative;
	margin-top: 30px;
}
.tracking-field input {
	height: 60px;
	width: 618px;
	border-radius: 50px;
	border: none;
	padding: 0 190px 0 44px;
	font-size: 19px;
}
.tracking-field button {
	background-color: #424242;
	color: #ffc500;
	top: 0;
	height: 100%;
	width: 160px;
	position: absolute;
	right: 0;
	font-size: 24px;
	font-weight: 700;
}
/*=======================
    H O M E  P A G E
=======================*/
/* SECTION: (OVERVIEW) */
section {
	padding: 60px 0;
}
section .container {
	max-width: 976px;
}
section .container-1280 {
	max-width: 1280px;
}
section h4 {
	color: #626262;
	font-weight: 500;
	margin-bottom: 10px;
}
.section-white {
	padding: 40px 0 68px;
	color: #403f41;
}
.section-white .flex {
	background-color: #ffffff;
	border-radius: 30px;
	min-height: 350px;
	overflow: hidden;
	align-items: center;
	justify-content: center;
}
.section-overview .col:first-child {
	padding: 40px 0;
}
.section-overview .col:last-child {
	padding-left: 10px;
	padding-right: 15px;
	max-width: 464px;
}
/* SECTION: (OUR UNIQUES) */
.section-features {
	background-color: #ffffff;
	text-align: center;
	padding-top: 50px;
	padding-bottom: 70px;
}
.section-features .container > h4 {
	display: block;
	margin: 20px 0 24px;
}
.section-features .col {
	background-color: #ffffff;
	border-radius: 14px;
	overflow: hidden;
	text-align: left;
	-webkit-box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.13);
	-moz-box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.13);
	box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.13);
}
.section-features img {
	height: 204px;
	width: auto;
}
.section-features .thumbnail span {
	width: 78px;
	height: 78px;
	line-height: 78px;
	display: block;
	border-radius: 50px;
	background-color: #ffffff;
	color: #ffc500;
	font-size: 50px;
	position: relative;
	margin: -38px auto 0;
	z-index: 1;
	text-align: center;
	text-shadow: 1px 1px 1px #e6e6e6;
}
.section-features .col h3 {
	font-size: 20px;
	line-height: 24px;
	margin-bottom: 10px;
}
.section-features .col .content {
	padding: 0 30px 10px;
	text-align: center;
}
/* SECTION: (OUR PARTNERS) */
.section-partners {
	padding: 50px 0;
}
.section-partners h3 {
	text-align: center;
	margin-bottom: 30px;
}
.section-partners ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	padding: 0;
	list-style: none;
}
.section-partners ul li {
	width: 20%;
	margin: 20px 0;
}
.section-partners ul li img {
	max-width: 100px;
	max-height: 60px;
	display: block;
	width: auto;
	height: auto;
	margin: 0 auto;
}
@media (max-width: 767px) {
	.brand svg {
		max-width: 200px;
	}
	.section-partners ul li {
		width: 33.3%;
		margin: 15px 0;
	}
	.section-partners ul li img {
		max-width: 70px;
	}
}
/* SECTION: (COMPANIES) */
.section-companies {
	padding: 50px 0;
}
.section-companies .container {
	max-width: 880px;
	text-align: center;
}
.section-companies li a {
	color: #bebdbd;
	font-size: 34px;
	text-transform: uppercase;
	font-weight: 900;
	line-height: 34px;
	white-space: nowrap;
}
.section-companies .slick-list {
	width: 100%;
	text-align: center;
}
.section-companies .slick-track {
	display: flex;
}
.section-companies .slick-track .slick-slide {
}
/* SECTION: (CONTACT) */
.section-contact {
	background-color: #f0f0f0;
	padding: 54px 0;
	color: #ffffff;
	font-size: 22px;
}
.section-contact .flex {
	background-color: #404041;
	border-radius: 20px;
	padding: 24px 70px 0;
}
.section-contact .flex .col:last-child {
	max-width: 242px;
}
/* SECTION: (TESTIMONIAL) */
.section-testimonial {
	padding: 150px 0 200px;
}
.section-testimonial .container {
	padding-left: 27px;
	padding-right: 27px;
}
.section-testimonial .flex-sm > div {
	margin-left: 0;
	margin-right: 0;
}
.section-testimonial .flex-sm.slick-initialized {
	display: block;
}
.section-testimonial .flex-sm .slick-track {
	display: flex;
}
.section-testimonial .flex-sm .slick-track > div,
.section-testimonial .flex-sm > .col {
	margin-left: -12px;
	margin-right: -12px;
	position: relative;
	max-width: 332px;
}
@media (min-width: 768px) {
	.brand svg {
		max-width: 300px;
	}

	.section-testimonial .flex-sm .slick-slide:not(.slick-center) {
		margin-top: -46px;
		padding-bottom: 46px;
		z-index: 2;
	}
	.section-testimonial .flex-sm .slick-slide:not(.slick-center) .content {
		background-color: #f0bf19;
	}
}
.section-testimonial .content {
	background-color: #ffffff;
	border-radius: 10px;
	font-size: 13px;
	text-align: center;
	color: #404041;
	padding: 10px 38px 40px;
	height: 100%;
	position: relative;
}
.section-testimonial .content::before {
	content: "\e925";
	font-family: "icomoon" !important;
	display: block;
	color: #000000;
	font-size: 5rem;
	line-height: 5rem;
	opacity: 0.1;
}
.section-testimonial .author {
	position: absolute;
	top: calc(100% - 40px);
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}
.section-testimonial .thumbnail {
	width: 80px;
	height: 80px;
	background-color: #333333;
	border-radius: 100px;
	margin: 0 auto;
}
.section-testimonial strong {
	display: block;
}
/* SECTION: (SPECIALIZE) */
.section-specialize {
	background-color: #ffffff;
	padding: 50px 0;
	text-align: center;
}
.section-specialize .flex > div {
	margin-left: 1%;
	margin-right: 1%;
	text-align: center;
}
.section-specialize .col {
	text-align: left;
}
.section-specialize .container > h4 {
	font-size: 20px;
	font-weight: 700;
	margin: 20px 0 50px;
	white-space: pre-line;
}
.section-specialize .col h3 {
	font-size: 23px;
	line-height: 28px;
	color: #333333;
	font-weight: 500;
	margin: 10px 0;
}
.section-specialize .col span {
	font-size: 60px;
	display: block;
}
/* SECTION: (QUOTE) */
.section-quote {
	background-color: #404041;
	padding: 70px 0;
}
.section-quote h3 {
	color: #ffffff;
	font-size: 24px;
}
.section-quote .or {
	font-size: 23px;
	color: #ffffff;
	font-family: "Poppins", sans-serif;
	display: block;
}
.section-quote .or ~ h3 {
	margin-left: 10px;
	margin-right: 10px;
}
.section-quote h4 {
	font-size: 20px;
	margin: 15px 0 24px;
}
.section-quote .flex > div {
	margin-left: 1.5%;
	margin-right: 1.5%;
}
.field-error-message {
	margin-top: -10px;
	display: block;
	margin-bottom: 12px;
}
@media (min-width: 981px) {
	.section-quote > .container > .flex > .col:last-child {
		max-width: 332px;
	}
}
.section-quote .gmap {
	overflow: hidden;
	position: relative;
}
.section-quote .gmap .nav-location {
	position: absolute;
	width: 100px;
	height: 79px;
	display: block;
	z-index: 1000;
	top: 24.2%;
	left: 33.3%;
	overflow: hidden;
	text-indent: -99em;
}
.section-quote .gmap .nav-location.map-jeddah {
	top: 62.2%;
	left: 2.3%;
}
.section-quote .gmap .nav-location.map-riyadh {
	top: 39.2%;
	left: 52.3%;
}
.section-quote .gmap .nav-location.map-dammam {
	top: 22.2%;
	left: 76.3%;
}
.section-quote input,
.section-quote select,
.section-quote textarea {
	background-color: #626263;
	color: #ffffff;
	height: 36px;
}
.section-quote ::-webkit-input-placeholder {
	color: white;
	opacity: 0.8;
}
.section-quote ::-moz-placeholder {
	color: white;
	opacity: 0.8;
}
.section-quote :-ms-input-placeholder {
	color: white;
	opacity: 0.8;
}
.section-quote :-moz-placeholder {
	color: white;
	opacity: 0.8;
}
.section-quote button {
	margin-top: 19px;
}
.g-recaptcha.has-error {
	border: 2px solid #ff0000;
}
/* Contact Column*/
.contacts-item {
	margin-bottom: 11px;
}
.contacts-item a {
	padding: 1rem;
	border-radius: 1.2rem;
	background-color: #ffc500;
	display: flex;
	align-items: center;
	color: #000000;
	font-weight: 300;
	font-size: 1.1rem;
}
.contacts-item .svg {
	flex-shrink: 0;
	-webkit-margin-end: 1rem;
	margin-inline-end: 1rem;
	fill: currentColor;
	border-radius: 50px;
	background-color: #404041;
	padding: 9px;
	width: 50px;
	height: 50px;
}
/*=======================
    A B O U T  P A G E
=======================*/
/* SECTION: (MISSION) */
.section-mission .flex {
	padding: 60px 40px 50px 50px;
}
.section-mission .container h3,
.section-values .container > h3,
.section-vision .container > h3 {
	text-transform: uppercase;
}
.section-mission .flex .col:last-child {
	max-width: 280px;
}
/* SECTION: (VALUES) */
.section-values {
	background-color: #333333;
	text-align: center;
	padding: 70px 0;
}
.section-values .container > h3 {
	font-size: 34px;
	color: #ffffff;
}
.section-values .container > h4,
.section-vision .container > h4 {
	font-size: 20px;
	margin: 10px 0 28px;
}
.section-values .flex {
	border-radius: 10px;
	overflow: hidden;
}
.section-values .flex .col {
	text-align: left;
	width: 25%;
	padding: 34px 20px 20px;
	font-size: 13px;
	color: #666666;
	margin-left: 0;
	margin-right: 0;
	background: rgb(255, 255, 255);
	background: -moz-linear-gradient(left, rgba(255, 255, 255, 1) 32%, rgba(243, 243, 243, 1) 99%);
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 1) 32%, rgba(243, 243, 243, 1) 99%);
	background: linear-gradient(to right, rgba(255, 255, 255, 1) 32%, rgba(243, 243, 243, 1) 99%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#f3f3f3", GradientType=1);
}
.section-values .flex .col > span {
	font-size: 60px;
	display: block;
}
.section-values .flex .col h3 {
	font-size: 18px;
	font-weight: 700;
	color: #333333;
	line-height: 24px;
	margin: 15px 0;
}
/* SECTION: (VISION) */
.section-vision {
	background-color: #ffffff;
}
.section-vision .flex .col {
	background-color: #ffffff;
	border-radius: 13px;
	font-size: 13px;
	padding: 30px;
	-webkit-box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.13);
	-moz-box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.13);
	box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.13);
}
.section-vision .flex .col > span {
	font-size: 65px;
	color: #333333;
	display: block;
	margin-bottom: 10px;
}
.section-vision .flex .col h3 {
	font-size: 23px;
	font-weight: 800;
}
/* SECTION: (CHALLENGES) */
.section-challenges {
	background-color: #dadada;
}
.section-challenges .flex {
	border-radius: 13px;
	overflow: hidden;
}
.section-challenges .flex .col {
	padding: 30px;
	margin-left: 5px;
	margin-right: 5px;
}
.section-challenges .flex .col h3 {
	font-size: 34px;
	text-transform: uppercase;
	font-weight: 800;
	margin-bottom: 20px;
}
.section-challenges .flex .col.first {
	background-color: #333333;
	color: #ffffff;
	max-width: 320px;
}
.section-challenges .flex .col.first h3 {
	color: #f0bf19;
}
.section-challenges .flex .col.last {
	background-color: #f0bf19;
}
ul.list-1 li,
ul.list-2 li {
	margin-bottom: 20px;
	position: relative;
	padding-left: 25px;
	font-size: 13px;
	line-height: 17px;
}
ul.list-1 li:before,
ul.list-2 li:before {
	font-family: "icomoon" !important;
	speak: never;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width: 15px;
	height: 15px;
	display: inline-block;
	border-radius: 25px;
	line-height: 15px;
	text-align: center;
	font-size: 10px;
	position: absolute;
	top: 3px;
	left: 0;
}
ul.list-1 li:before {
	content: "\e927";
	background-color: #f0bf19;
	color: #333333;
}
ul.list-2 li:before {
	content: "\e926";
	background-color: #333333;
	color: #f0bf19;;
}
/*==============================
    S E R V I C E S  P A G E
==============================*/
.section-services {
	padding-top: 40px;
}
.section-services .wrapper > .flex {
	background-color: #ffffff;
	font-size: 14px;
	line-height: 20px;
}
.section-services .wrapper > .flex .col.first {
	padding: 20px 0;
	max-width: 456px;
}
.section-services .wrapper > .flex .col.last {
	padding: 40px 0 40px 0;
	max-width: 406px;
}
.section-services .wrapper > .flex .col.last h3 {
	text-transform: uppercase;
}
.section-services .wrapper > .flex .col.last h4 {
	font-size: 20px;
	display: block;
	margin: 10px 0 20px;
}
.services {
	background-color: #555555;
	padding: 36px 0;
	color: #ffffff;
}
.services .flex {
	max-width: 760px;
	margin: 0 auto;
	width: 100%;
}
.services h3 {
	text-transform: uppercase;
	margin-bottom: 15px;
	position: relative;
	color: #ffffff;
}
.services h3:before {
	content: attr(data-number);
	color: #333333;
	display: block;
	position: absolute;
	font-size: 36px;
	font-weight: 800;
	right: calc(100% + 10px);
	width: 30px;
	text-align: center;
	z-index: 1;
	top: 50%;
	transform: translateY(-50%);
}
.services h3::after {
	content: "";
	background-color: #ffffff;
	display: block;
	position: absolute;
	top: -6px;
	bottom: -6px;
	right: calc(100% + 6px);
	width: 36px;
}
.services img {
	max-width: 320px;
	margin: 0 auto;
}
/*==============================
    C O N T A C T  P A G E
==============================*/
.page-contact {
	background-color: #ffffff;
}
.section-contact-form h3 {
	text-transform: uppercase;
	margin-bottom: 10px;
	font-size: 24px;
}
.section-contact-form .container > .flex {
	background-color: #f4f4f4;
	border-radius: 20px;
	padding: 34px;
}
.section-contact-form .container > .flex > .col.first {
	max-width: 400px;
	position: relative;
	border-right: 1px solid #bdbdbd;
}
.section-contact-form .container > .flex > .col.last {
	padding-left: 15px;
}
.section-contact-form img {
	position: absolute;
	max-width: 230px;
	right: 20%;
	bottom: 0;
}
.list-contact {
	max-width: 300px;
}
.list-contact li {
	margin-bottom: 12px;
	padding-left: 34px;
	position: relative;
}
.list-contact li a {
	color: #333333;
}
.list-contact li span {
	color: #f0bf19;
	font-size: 20px;
	display: inline-block;
	vertical-align: middle;
	margin: 0 4px;
	position: absolute;
	left: 0;
	top: 2px;
}
/*==============================
    A U T H  P A G E S
==============================*/
.page-user-login .section-auth .flex {
	max-width: 768px;
	background-color: #ffffff;
	margin: 0 auto;
}
.page-user-register .radius-box {
	max-width: 768px;
	background-color: #ffffff;
	margin: 0 auto;
	padding: 40px;
}
.page-user-register .flex {
	margin-bottom: 30px;
}
.section-auth h3 {
	font-size: 24px;
}
.mtb-40 {
	margin: 20px 0;
}
.section-auth .col.last {
	max-width: 292px;
}
.section-auth .col.first img {
	max-width: 286px;
	display: block;
	margin: 0 auto 22px;
}
a.link-1 {
	color: #404041;
	border-bottom: 1px solid #808081;
	display: inline-block;
}
.section-auth .field {
	margin-bottom: 24px;
	position: relative;
}
.field .ico {
	position: absolute;
	bottom: 9px;
	color: #404041;
}
.section-auth input:not([type="checkbox"]):not([type="file"]),
.section-auth select,
.section-auth textarea {
	border: none;
	background-color: transparent;
	border-bottom: 1px solid #404041;
	height: 30px;
	font-size: 14px;
	width: 100%;
}
.page-user-login input {
	padding-left: 20px;
	padding-right: 20px;
}
/*================================
    T R A C K I N G  P A G E
================================*/
.tracking-result .title-bar {
	background-color: #f0bf19;
	overflow: hidden;
	margin: 0 -15px;
	padding: 17px 30px 13px;
}
.tracking-result .title-bar h3 {
	font-size: 26px;
	text-transform: uppercase;
	margin: 0;
	line-height: 26px;
}
.tracking-result .title-bar h5 {
	font-size: 22px;
	text-transform: uppercase;
	margin: 0;
	line-height: 26px;
	font-weight: 300;
}
.status-wrapper {
	background-color: #ffffff;
	padding: 10px 30px;
	margin: 0 -15px;
}
.tracking-status {
	list-style: none;
	display: flex;
	padding: 0;
	width: 100%;
	margin: 0;
}
.tracking-status li {
	width: 25%;
	color: #403f41;
	position: relative;
	text-align: center;
	font-size: 16px;
}
.tracking-status li div {
	text-align: center;
	white-space: nowrap;
	display: inline-block;
	width: 135px;
}
.tracking-status li span.status {
	font-weight: bold;
	white-space: normal;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	margin: 12px 0;
	display: block;
	z-index: 90;
	width: 58px;
	height: 58px;
	border-radius: 50px;
	background-color: #d4d4d4;
	color: #8a8a8a;
	font-size: 36px;
	line-height: 58px;
	position: relative;
}
.tracking-status li::before {
	content: "";
	height: 4px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background-color: #dddddd;
	right: 0;
}
.tracking-status li time {
	font-size: 12px;
}
.tracking-status li.done::before,
.tracking-status li.done span.status {
	color: #404041;
	background-color: #f0bf19;
}
.tracking-status li:first-child::before {
	width: 50%;
	left: 50%;
}
.tracking-status li:last-child::before {
	width: 50%;
	right: 50%;
}
.tracking-status li.returned:before,
.tracking-status li.returned span.status {
	background-color: #f22f2f;
}
.tracking-status li.returned span::before {
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
	display: block;
	color: #993838;
}
/* Tracking Table */
.table-wrapper {
	background-color: #404041;
	padding: 35px 15px;
	margin: 0 -15px;
}
.tracking-result .table {
	width: 100%;
	overflow: hidden;
	border-radius: 10px;
	max-width: 870px;
	margin: 0 auto;
}
.tracking-result .table tr > td {
	padding: 6px 10px;
	border: none;
}
.tracking-result thead tr > td {
	font-weight: bold;
	background-color: #f0bf19;
}
.tracking-result tbody tr {
	background-color: #eaeaea;
}
.tracking-result tbody tr:nth-child(2n+1) {
	background: #ffffff;
}
/*=================
    F O O T E R
==================*/
.site-footer {
    background-color: #ffffff;
    border-top: 3px solid #d53e05;
    width: 100%;
    z-index: 1000; /* Adjust z-index as needed */
    border-radius: 30px 30px 0 0; /* Rounded corners only at the top */
}

.site-footer .container {
    max-width: 960px;
    padding: 50px 0;
    margin: 0 auto; /* Center the footer horizontally */
}

.site-footer .col.first {
	max-width: 270px;

}
.site-footer h3.col-title {
	font-size: 18px;
	font-weight: 700;
	color: #222222;
	text-transform: uppercase;
	margin-bottom: 15px;
}
.site-footer ul li a {
	font-size: 16px;
	color: #161616;
	display: block;
}
.site-footer svg {
	max-width: 240px;
	margin-bottom: 15px;
}
/* MENU LINKS */
.site-footer .contact-links li,
.site-footer .footer-links li {
	padding: 10px 0;
}
/* CONTACT LINKS */
.site-footer .contact-links li span {
	display: inline-block;
	font-size: 22px;
	margin-right: 10px;
	vertical-align: text-bottom;
}
.site-footer .contact-links li a {
	display: inline-block;
}
.site-footer .contact-links li:hover a,
.site-footer .contact-links li:nth-child(2):hover {
	color: #ffcb08;
}
/* SOCIAL LINKS */
.site-footer .social-links {
	max-width: 210px;
}
.site-footer .social-links li a {
	font-size: 40px;
	color: #000000;
	cursor: pointer;
	display: block;
}
/* COPYRIGHT */
.copyright {
	background-color: #ffffff;
	font-size: 14px;
	text-align: center;
	font-weight: normal;
	color: #000000;
	padding: 20px 15px;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
}
.copyright a {
	color: #d53e05;
	cursor: pointer;
	display: inline-block;
	font-weight: bold;

	
}
/* MISC CLASSES */
.font-tajawal {
	font-family: 'Tajawal', sans-serif;
}
.pull-right {
	float: right;
}
.pull-left {
	float: left;
}
.text-right {
	text-align: right;
}
.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.ltr {
	direction: ltr;
}

.not-found {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 80vh; /* Occupy full viewport height */
	text-align: center;
  }
  
  .not-found h1 {
	font-size: 3em;
	margin-bottom: 20px;
  }
  
  /* Add a custom icon using an SVG or font icon library */
  .not-found .icon {
	font-size: 8em;
	color: #da1f1f; /* Or your preferred color */
	margin-bottom: 20px;
  }
  
  /* Example using Font Awesome */
  .not-found .icon.fa-exclamation-triangle {
	font-family: "Font Awesome 5 Free";
  }
/*==========================
    R E S P O N S I V E
==========================*/
button.toggle-menu {
	display: none;
}
@media (max-width: 1169px) and (min-width: 768px) {
	.brand svg{
		max-width: 3302px;
	}
	.banner-content {
		transform: translate(-50%, -100%);
	}
	.banner-content h1 {
		font-size: 30px;
		margin: 0;
	}
	.banner-content h3 {
		font-size: 17px;
		line-height: 24px;
	}
	.tracking-field {
		margin-top: 20px;
	}
	.tracking-field input {
		height: 50px;
		width: 600px;
		font-size: 18px;
	}
}
@media (max-width: 980px) {
	.brand svg {
		width: 150px;
	}
	.primary-menu > li > a {
		font-size: 13px;
		padding: 0 5px;
	}
	.section-quote button {
		margin: 20px 0 30px;
		width: 100%;
		font-size: 20px;
		font-weight: 400;
		padding: 10px;
	}
	.section-quote .or {
		text-align: center;
		margin-bottom: -8px;
		position: relative;
	}
	.section-quote .or:before,
	.section-quote .or:after {
		content: "";
		left: 0;
		display: block;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 40%;
		height: 2px;
		background-color: #cccccc;
	}
	.section-quote .or:after {
		left: auto;
		right: 0
	}
	.g-recaptcha > div {
		margin: auto;
	}
}
.site-header > .flex-sm > .text-left {
	display: none;
}
@media (max-width: 767px) {
	.brand svg {
		max-width: 300px;
	}
	.site-header {
		z-index: 10;
	}
	.flex, .flex-justify:not(.social-links) {
		display: block;
		column-gap: 0;
	}
	.section-challenges .flex .col,
	.section-quote .flex > div,
	.flex > .col, .flex-justify:not(.social-links) > div {
		margin-left: 0;
		margin-right: 0;
	}
	.top-bar,
	.site-header .nav,
	.site-header > .flex-sm .account-links {
		display: none;
	}
	.site-header > .flex-sm > .text-right {
		max-width: 40px;
		padding-top: 18px;
	}
	.site-header > .flex-sm > .text-left {
		padding-top: 24px;
		max-width: 40px;
		display: block;
	}
	.site-header > .flex-sm > .text-left a {
		color: #000000;
	}
	.site-header {
		height: 70px;
	}
	.brand {
		max-width: none;
		text-align: center;
	}
	.brand a {
		display: inline-block;
		margin-top: 0;
		padding: 7px 0 0;
		max-width: 126px;
		margin-left: 21px;
	}
	button.toggle-menu {
		background-color: transparent;
		width: 40px;
		height: 34px;
		border: none;
		padding: 0;
		border-radius: 0;
		overflow: hidden;
		position: relative;
		display: block;
	}
	button.toggle-menu > span,
	button.toggle-menu:before,
	button.toggle-menu:after {
		content: "";
		display: block;
		height: 1px;
		background-color: #565657;
		position: absolute;
		left: 0;
		width: 90%;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: .25s ease-in-out;
		-moz-transition: .25s ease-in-out;
		-o-transition: .25s ease-in-out;
		transition: .25s ease-in-out;
	}
	button.toggle-menu > span {
		top: calc(50% - 1px);
	}
	button.toggle-menu:before {
		bottom: 6px;
	}
	button.toggle-menu:after {
		top: 6px;
	}
	body.menu-active {
		overflow: hidden;
	}
	.menu-active button.toggle-menu:after,
	.menu-active button.toggle-menu:before {
		top: 14px;
	}
	.menu-active button.toggle-menu:before {
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.menu-active button.toggle-menu:after {
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.menu-active .toggle-menu span {
		width: 0;
	}
	.menu-active .site-header .nav {
		display: block;
		position: fixed;
		background-color: #ffffff;
		top: 70px;
		left: 0;
		right: 0;
		height: calc(100% - 70px);
		z-index: 10;
		padding-top: 40px;
	}
	.primary-menu > li {
		float: none;
	}
	.primary-menu > li > a {
		font-size: 20px;
		padding: 0 5px;
	}
	/* BANNER */
	.banner-content h1 {
		font-size: 45px;
		line-height: 54px;
	}
	.banner-content h3 {
		font-size: 15px;
		line-height: 25px;
		font-weight: normal;
	}
	.banner-skew img {
		width: auto;
		height: 600px;
	}
	/* TRACKING */
	.tracking-field input {
		height: 45px;
		width: 90%;
		padding: 0 20px;
		font-size: 16px;
		margin: 0 auto;
		text-align: center;
	}
	.tracking-field button {
		height: 50px;
		width: 160px;
		position: static;
		font-size: 24px;
		margin-top: 20px;
		font-weight: 600;
	}
	.specs {
		max-width: 92%;
		margin: -80px auto 20px;
		flex-wrap: wrap;
	}
	.specs li {
		flex: 0 50%;
		background: -moz-linear-gradient(45deg, #ffffff 0%, #f3f3f3 68%);
		background: -webkit-linear-gradient(45deg, #ffffff 0%, #f3f3f3 68%);
		background: linear-gradient(45deg, #ffffff 0%, #f3f3f3 68%);
	}
	/* TRACKING RESULT */
	.status-wrapper {
		padding: 10px 20px;
	}
	.status-wrapper > p {
		text-align: center;
		margin-bottom: 0;
	}
	.tracking-status {
		display: block;
	}
	.tracking-result .title-bar {
		text-align: center;
	}
	.tracking-result .title-bar .pull-left,
	.tracking-result .title-bar .pull-right {
		float: none;
		width: 100%;
	}
	.tracking-result .title-bar h3 {
		font-size: 24px;
		margin-bottom: 6px;
	}
	.tracking-result .title-bar h5 {
		font-size: 17px;
	}
	.tracking-status {
		display: block;
		width: 192px;
		margin: 0 auto;
	}
	.tracking-status li {
		width: 100%;
		height: 120px;
	}
	.tracking-status li div {
		text-align: left;
		display: block;
		width: 100%;
		padding-left: 70px;
		top: 50%;
		position: absolute;
		transform: translateY(-50%);
	}
	.tracking-status li div > * {
		display: block;
	}
	.tracking-status li span.status {
		top: 50%;
		position: absolute;
		transform: translateY(-50%);
		text-align: center;
		left: 0;
		margin: 0;
	}
	.tracking-status li::before,
	.tracking-status li:first-child::before,
	.tracking-status li:last-child::before {
		width: 4px;
		left: 29px;
		height: 100%;
		top: 0;
		transform: translateX(-50%);
	}
	.tracking-status li:first-child::before,
	.tracking-status li:last-child::before {
		height: 50%;
	}
	.tracking-status li:first-child::before {
		top: auto;
		bottom: 0;
	}
	section {
		padding: 40px 0;
	}
	/* SECTION: (OVERVIEW) */
	.section-overview .col {
		padding: 20px !important;
		text-align: center;
		max-width: 100% !important;
	}
	/* SECTION: (OUR UNIQUES) */
	.section-features .col {
		margin-bottom: 20px;
	}
	.section-features img {
		height: auto;
		width: 100%;
	}
	.section-specialize .col {
		text-align: center;
	}
	.section-specialize .col span {
		width: 60px;
		display: inline-block;
	}
	/* SECTION: (TESTIMONIALS) */
	.section-companies,
	.section-testimonial {
		overflow: hidden;
	}
	.section-testimonial .flex-sm .slick-slide.slick-center {
		margin-top: -46px;
		padding-bottom: 46px;
		z-index: 2;
	}
	.section-testimonial .flex-sm .slick-slide.slick-center .content {
		background-color: #f0bf19;
	}
	/* SECTION: (QUOTE) */
	.section-quote h3 {
		color: #ffffff;
		margin-top: 30px;
		font-size: 26px;
		text-align: center;
	}
	.section-quote h4 {
		margin: 0 0 10px;
	}
	/* SECTION: (CONTACT) */
	.section-contact .flex .col:first-child {
		text-align: center;
		margin-bottom: 30px;
	}
	.section-contact .flex .col:last-child {
		max-width: 100%;
	}
	.section-contact .flex .col img {
		display: block;
		margin: 0 auto;
		max-width: 300px;
	}
	.section-contact-form img {
		position: static;
		margin: 20px auto;
	}
	.section-contact-form .container > .flex {
		padding: 15px;
	}
	.section-contact-form .container > .flex > .col.first {
		border: none;
	}
	.section-contact-form .container > .flex > .col.last {
		padding-left: 0;
	}
	.section-values .flex .col {
		width: 100%;
		background: -moz-linear-gradient(bottom, rgb(255, 255, 255) 32%, rgb(243, 243, 243) 99%);
		background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 1) 32%, rgba(243, 243, 243, 1) 99%);
		background: linear-gradient(to bottom, rgb(255, 255, 255) 32%, rgb(243, 243, 243) 99%);
	}
	.section-mission .flex {
		padding: 40px 20px;
		text-align: center;
	}
	.section-vision .flex .col {
		margin-bottom: 30px;
	}
	.section-challenges .flex {
		border-radius: 13px !important;
	}
	.section-challenges .flex .col:first-child {
		max-width: 100%;
		margin-bottom: 14px;
	}
	.section-services .wrapper > .flex .col.first,
	.section-services .wrapper > .flex .col.last {
		padding: 20px;
		max-width: 100%;
		text-align: center;
	}
	.services {
		text-align: center;
	}
	.services .flex {
		width: 100%;
		padding: 0 20px;
	}
	.services h3 {
		margin-bottom: 15px;
		position: relative;
		text-align: left;
		font-size: 24px;
		line-height: 28px;
		padding-left: 36px;
	}
	.services h3::before,
	.services h3::after {
		right: auto;
		left: 0;
		font-size: 24px;
	}
	.services .flex.flex-v-center:not(:last-child) {
		margin-bottom: 40px;
	}
	/* FOOTER */
	.site-footer {
		background-color: #ffffff;
		border-top: 3px solid #d53e05;
		width: 100%;
		z-index: 1000; /* Adjust z-index as needed */
		border-radius: 30px 30px 0 0; /* Rounded corners only at the top */
	}
	.site-footer > .container {
		border-radius: 15px;
		background-color: #ffffff;
		padding: 22px;
	}
	.site-footer > .container > .flex-justify > .col {
		width: 100%;
		max-width: 100%;
		margin-bottom: 20px;
	}
	.site-footer h3.col-title {
		margin-bottom: 0;
	}
}
.text-danger {
	color: #dc3545 !important;
}
.was-validated .form-control:invalid, .form-control.is-invalid {
	border-color: #dc3545;
	padding-right: calc(1.5em + 0.75rem);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
	background-repeat: no-repeat;
	background-position: center right calc(0.375em + 0.1875rem);
	background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
	border-bottom: 1px solid #dc3545 !important;
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
	border-color: #dc3545;
	box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
@media (max-width: 512px) {
	.brand svg {
		max-width: 150px;
	}
	.g-recaptcha {
		width: 100%;
	}
	.g-recaptcha iframe {
		max-width: 304px;
		margin: 0 auto;
		display: block;
	}
	#main ~ div[style^="visibility: visible;"],
	#main ~ div[style*="visibility: visible;"] {
		transform: scale(0.7) translateX(-50%) !important;
		-webkit-transform: scale(0.7) translateX(-50%) !important;
		left: 50% !important;
	}
}