:root {
    --primary-color: #9BA57D;
    --secondary-color: #1C1B18;
    --third-color: #FBBF5D;
    --heading-color: #2D2D2D;
    --body-color: #6E6E6E;
    --white-color: #fff;
    --filter-white: brightness(0) saturate(100%) invert(97%) sepia(0%) saturate(0%) hue-rotate(89deg) brightness(103%) contrast(107%);
    --font-family: 'The Year of Handicrafts';
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'The Year of Handicrafts';
    src: url('../assets/fonts/TheYearofHandicrafts-Black.eot');
    src: url('../assets/fonts/TheYearofHandicrafts-Black.eot?#iefix') format('embedded-opentype'),
        url('../assets/fonts/TheYearofHandicrafts-Black.woff2') format('woff2'),
        url('../assets/fonts/TheYearofHandicrafts-Black.woff') format('woff'),
        url('../assets/fonts/TheYearofHandicrafts-Black.ttf') format('truetype'),
        url('../assets/fonts/TheYearofHandicrafts-Black.svg#TheYearofHandicrafts-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'The Year of Handicrafts';
    src: url('../assets/fonts/TheYearofHandicrafts-Bold.eot');
    src: url('../assets/fonts/TheYearofHandicrafts-Bold.eot?#iefix') format('embedded-opentype'),
        url('../assets/fonts/TheYearofHandicrafts-Bold.woff2') format('woff2'),
        url('../assets/fonts/TheYearofHandicrafts-Bold.woff') format('woff'),
        url('../assets/fonts/TheYearofHandicrafts-Bold.ttf') format('truetype'),
        url('../assets/fonts/TheYearofHandicrafts-Bold.svg#TheYearofHandicrafts-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'The Year of Handicrafts';
    src: url('../assets/fonts/TheYearofHandicrafts-Medium.eot');
    src: url('../assets/fonts/TheYearofHandicrafts-Medium.eot?#iefix') format('embedded-opentype'),
        url('../assets/fonts/TheYearofHandicrafts-Medium.woff2') format('woff2'),
        url('../assets/fonts/TheYearofHandicrafts-Medium.woff') format('woff'),
        url('../assets/fonts/TheYearofHandicrafts-Medium.ttf') format('truetype'),
        url('../assets/fonts/TheYearofHandicrafts-Medium.svg#TheYearofHandicrafts-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'The Year of Handicrafts';
    src: url('../assets/fonts/TheYearofHandicrafts-Regular.eot');
    src: url('../assets/fonts/TheYearofHandicrafts-Regular.eot?#iefix') format('embedded-opentype'),
        url('../assets/fonts/TheYearofHandicrafts-Regular.woff2') format('woff2'),
        url('../assets/fonts/TheYearofHandicrafts-Regular.woff') format('woff'),
        url('../assets/fonts/TheYearofHandicrafts-Regular.ttf') format('truetype'),
        url('../assets/fonts/TheYearofHandicrafts-Regular.svg#TheYearofHandicrafts-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'The Year of Handicrafts';
    src: url('../assets/fonts/TheYearofHandicrafts-SemiBold.eot');
    src: url('../assets/fonts/TheYearofHandicrafts-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../assets/fonts/TheYearofHandicrafts-SemiBold.woff2') format('woff2'),
        url('../assets/fonts/TheYearofHandicrafts-SemiBold.woff') format('woff'),
        url('../assets/fonts/TheYearofHandicrafts-SemiBold.ttf') format('truetype'),
        url('../assets/fonts/TheYearofHandicrafts-SemiBold.svg#TheYearofHandicrafts-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


body {
    font-family: var(--font-family);
    color: var(--body-color);
}

html {
    scroll-behavior: smooth;
}

html,
body,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: var(--line-height);
    font-feature-settings: "liga" 1, "kern" 0;
}

.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    /* margin: 5px 0px; */
}

th,
td {
    color: var(--primary-color) !important;
}

ul li {
    list-style: none;
}

ul li::marker {
    color: var(--primary-color);
}

.arabic-version {
    direction: rtl;
}

@media (min-width: 2030px) {
    :root {
        --container-width: 80vw;
    }

    html {
        font-size: 18px;
    }
}

@media (min-width: 1400px) and (max-width: 2030px) {
    :root {
        --container-width: 80vw;
    }

    html {
        font-size: 17px;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    :root {
        --container-width: 1140px;
    }
}

@media (max-width:1199.98px) {
    :root {
        --container-width: 960px;
    }

    html {
        font-size: 15px;
    }
}

@media (max-width:991.98px) {
    :root {
        --container-width: 720px;
    }

    html {
        font-size: 15px;
    }
}

@media (max-width:767.98px) {
    :root {
        --container-width: 540px;
    }

}

@media (max-width:575.98px) {
    :root {
        --container-width: 100vw;
    }

}

@media (min-width: 1600px) {
    .container-fluid {
        max-width: 90%;
    }

    .container {
        max-width: 80%;
    }

    .container .container,
    .container-fluid .container {
        max-width: 100%;
    }
}

h1 {
    font-size: 50px;
    font-weight: 500;
}

@media (max-width: 991.98px) {
    h1 {
        font-size: 30px;
    }

    h3 {
        font-size: 18px !important;
    }
}

h2 {
    font-size: 100px;
    font-weight: 500;
}

@media (max-width: 991.98px) {
    h2 {
        font-size: 50px;
    }
}
@media (max-width: 767.98px) {
    h2 {
        font-size: 30px;
    }
}

h3 {
    font-size: 25px;
    font-weight: 500;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1rem;
}

p,
h6 {
    font-size: .9rem;
    text-align: justify;
    margin: 0;
}

p {
    text-align: justify;
}

span,
.card-date {
    font-size: .9rem;
    font-weight: 500;
}

th {
    font-size: .9rem;
}

a {
    text-decoration: none;
}

label {
    color: var(--primary-color);
    font-weight: 500;
}

ul {
    list-style: disc;
    padding-left: unset;
    padding-inline-start: 2rem;
}

/* Webkit box  */
.only-1-lines {
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: calc(1* var(--line-height) + 2px);
}

.only-2-lines {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: calc(2* var(--line-height) + 2px);
}

.title-only-2-lines {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: calc(2* var(--title-line-height) + 2px);
}

.only-3-lines {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: calc(3* var(--line-height) + 2px);
}

.only-4-lines {
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: calc(4* var(--line-height) + 2px);
}

.default-image-class {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.cover-image-class {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.aspect-ratio-square {
    aspect-ratio: 1;
}

/* Default Classes */
.text-primary-color {
    color: var(--primary-color) !important;
}

.text-secondary-color {
    color: var(--secondary-color) !important;
}

.text-third-color {
    color: var(--third-color) !important;
}

.bg-primary-color {
    background-color: var(--primary-color) !important;
}

.bg-secondary-color {
    background-color: var(--secondary-color) !important;
}

.bg-third-color {
    background-color: var(--third-color);
}

/* border & outline color classes */

.w-fit {
    width: fit-content !important;
}

.radius-5 {
    border-radius: 5px;
}

.radius-6 {
    border-radius: 6px !important;
}

.radius-8 {
    border-radius: 8px !important;
}

.radius-10 {
    border-radius: 10px;
}

.arabic-version .fa-arrow-right,
.arabic-version .fa-arrow-left {
    scale: -1;
}


/* Buttons */
.primary-btn {
    background-color: var(--primary-color);
    border-radius: 50px;
    color: var(--secondary-color);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* My Classes */
.content-title h1 {
    color: var(--heading-color);
}

.section-title h2 {
    color: var(--primary-color);
    margin: 0;
}

/* Start Navbar */
.navbar-home {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.navbar-custom {
    background-color: var(--secondary-color);
    position: static !important;
}

.navbar-two {
    webkit-box-shadow: 0 1px 3px rgba(35, 35, 35, 0.15);
    -moz-box-shadow: 0 1px 3px rgba(35, 35, 35, 0.15);
    box-shadow: 0 1px 3px rgba(35, 35, 35, 0.15);
}

.nav-link {
    font-size: 17px;
    font-weight: bold;
}

.nav-link:focus,
.nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--main-color) !important;
}

.navbar-home .logo,
.navbar .logo {
    width: 150px;
}

.navbar-home .logo-black {
    display: none;
}

.navbar-home .logo-white {
    display: block;
}

.navbar-two ul li a {
    color: black !important;
}

.navbar-home ul li a {
    color: var(--secondary-color);
}

.social-info img {
    width: 20px;
}

.nav-link {
    color: var(--white-color) !important;
}

@media (max-width: 992px) {
    .navbar .parent-social-nav {
        display: none;
    }

    .navbar-home .logo,
    .navbar .logo {
        width: 25%;
    }

    .navbar-home {
        position: unset;
        background-color: var(--secondary-color);
    }

    .navbar-home .logo-white {
        display: none;
    }

    .navbar-home .logo-black {
        display: block;
    }

    .navbar-home ul li a {
        color: black;
    }

    .navbar .lang {
        margin-bottom: 1rem;
    }

    .navbar .dark-btn {
        margin-bottom: 1rem !important;
    }
}

@media (max-width: 991.98px) {
    .navbar .logo {
        position: absolute;
        inset-inline-end: 10px;
        top: 5px;
        width: 150px;
    }
}
@media (max-width: 767.98px) {
    .navbar .logo {
        top: 15px;
        width: 120px;
    }
}

.social-nav {
    margin: 0 !important;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: var(--white-color) !important;
}

.social-nav p {
    font-size: 14px;
}

.social-nav a:hover {
    color: var(--main-color);
}

/* End Navbar */

/* Start Carousel */
.carousel .carousel-item img {
    height: 100vh;
    object-fit: cover;
}

.carousel .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: var(--container-width);
    max-width: 100%;
    z-index: 2;
    z-index: 1000;
    color: var(--white-color);
}

.carousel .content h2 {
    color: var(--first-color);
    font-size: 3rem;
}

.carousel .content h1 {
    font-size: 3.5rem;
}

.carousel .content p {
    font-size: 1.2rem;
    color: var(--main-color);
    font-weight: bold;
}

.carousel-inner {
    height: 100vh;
}

.carousel-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 9, 30, 0.7);
    z-index: 10;
}

@media (max-width: 992px) {
    .carousel-inner {
        height: 65vh;
    }

    .carousel .content {
        /* top: 35%; */
        left: 50%;
        /* width: 90%; */
    }

    .carousel-inner::before {
        height: 65vh;
    }

    .carousel-inner img {
        height: 65vh;
        object-fit: cover;
    }
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 999;
    height: fit-content;
    top: 50%;
}

.carousel-control-prev i,
.carousel-control-next i {
    font-size: 24px;
}

@media (max-width: 768px) {
    .carousel .content {
        top: 50%;
        left: 50%;
        width: 80%;
    }

    .carousel .content h2 {
        color: var(--first-color);
        font-size: 2rem;
    }

    .carousel .content h1 {
        font-size: 29px;
    }

    .carousel .content p {
        font-size: 1rem;
    }

    .carousel .content img,
    .cta-content img {
        width: 200px;
    }
}

/* End Carousel */
/* What We Offer Section */
.what-we-offer-section {
    background-image: url('../assets/images/what-we-offer.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 85vh;
    overflow: hidden;
}

.what-we-offer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(28 27 24 / 50%), rgb(28 27 24 / 50%)), linear-gradient(180deg, #2D2D2D 4.16%, rgba(45, 45, 45, 0) 56.51%)
}

.what-we-offer-content {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 55%;
    width: var(--container-width);
}

@media (max-width: 991.98px) {
    .what-we-offer-section {
        height: auto;
    }

    .what-we-offer-pattern {
        display: none;
    }

    .what-we-offer-content {
        position: relative;
        top: unset;
        left: unset;
        transform: unset;
        width: auto;
    }
}

/* Start Services */
.number {
    font-family: "Abril Fatface", serif;
    font-weight: 500;
}

.video-card img {
    aspect-ratio: 21 / 9;
}

.video-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(45, 45, 45, 0.83) 66.34%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    width: 100%;
    height: 100%;
}

.video-card-content-container {
    position: absolute;
    bottom: 0;
    z-index: 9;
}

.video-card-content {
    flex: 2;
}

.play-icon-container {
    flex: 1;
}

.play-icon {
    width: 60px;
    height: 60px;
}

.play-icon i {
    font-size: 1.5rem;
}

/* End Services */
/* Start Future */
.future-section {
    background-image: url("../assets/images/future-bg.jpg");
}

/* End Future */
.cta-section .cta-section-container {
    background-image: url('../assets/images/cta-banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-section .cta-section-container::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #2D2D2D 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* Contact Us Section */
.contact-us-section {
    background-image: url('../assets/images/pattern.png');
}

.contact-us-section::before {
    background: rgb(28 27 24 / 95%);
}

@media (min-width: 1200px) {
    .qoute {
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        inset-inline-start: -200px;
        z-index: -1;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .qoute {
        position: absolute;
        top: 42%;
        transform: translate(-50%, -50%);
        inset-inline-start: -200px;
        z-index: -1;
    }
}