:root {
    --promary-color-hover: #99742D;
    --primary-color: #B68A35;
    --primary-color-light: #C5A25D;
    --text-color: #323232;
    --danger-color: #c0392b;
    font-size: 1rem;
}

a {
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

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

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    font-size: 1rem;
}

.btn-primary {
    --mdb-btn-bg: var(--primary-color);
    --mdb-btn-color: #fff;
    --mdb-btn-box-shadow: 0 4px 9px -4px var(--primary-color);
    --mdb-btn-hover-bg: var(--promary-color-hover);
    --mdb-btn-hover-color: #fff;
    --mdb-btn-focus-bg: var(--primary-color-light);
    --mdb-btn-focus-color: #fff;
    --mdb-btn-active-bg: var(--primary-color-light);
    --mdb-btn-active-color: #fff;
    background-color: var(--primary-color) !important;
    box-shadow: 0 4px 9px -4px var(--primary-color) !important;
}

.btn-secondary {
    --mdb-btn-bg: #e3ebf7;
    --mdb-btn-color: var(--danger-color);
    --mdb-btn-box-shadow: 0 4px 9px -4px #e3ebf7;
    --mdb-btn-hover-bg: #d8dfeb;
    --mdb-btn-hover-color: var(--danger-color);
    --mdb-btn-focus-bg: #d8dfeb;
    --mdb-btn-focus-color: var(--danger-color);
    --mdb-btn-active-bg: #ccd4de;
    --mdb-btn-active-color: var(--danger-color);
    color: var(--danger-color);
}

body {
    font-family: 'Almarai', sans-serif;
    color: var(--text-color);
    font-size: var(--font-size);
}

section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Start Header Style  */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    background-color: transparent;
    /* Background gradient  */
}

.header .navbar {
    background-color: transparent !important;
    box-shadow: none;
}

.header .navbar .navbar-brand {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

}

.header .navbar .navbar-brand img {
    width: 350px;
    height: 80px;
    object-fit: contain;
}

.header .navbar .navbar-nav .nav-link {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 1rem 1rem;
}

.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    background-color: #fff;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header.sticky .navbar {
    padding: 0 !important
}

.header.sticky .navbar-nav li a {
    color: var(--primary-color) !important;
    font-size: 1rem !important;
}

.header.sticky .navbar-brand {
    padding: 0 !important;
}

.header.sticky .navbar-brand img {
    filter: brightness(0.5);
    max-width: 170px;
}

/* Hero Section */
.hero-section {
    /* background: url(./../img/hero-bg.jpg) no-repeat center center/cover; */
    background-color: #323232;
    background-attachment: fixed;
    height: 100vh;
    min-height: 500px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.hero-section .overlay {
    background: url(./../img/hero-bg.jpg) no-repeat center center/cover;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}

.hero-section:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    /* background: url(./../img/hero-bg.jpg) no-repeat center center/cover; */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-section .container {
    z-index: 1;
    position: relative;
    z-index: 998;
}

.hero-section .content-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.hero-section .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section .hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Start Partners Section */
.partners-section .partners-list .list-item {
    padding: 1rem;
}

.partners-section .partners-list .list-item .logo-img {
    max-width: 200px;
    height: 60px;
    object-fit: contain;
}


/* About Section */
.about-section {
    background: #f5f5f5;
}

.about-section .content-wrap {
    max-width: 1100px;
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem auto;
    box-shadow: 0 4px 8px -4px rgba(0, 0, 0, 0.1);
}

.about-section .content-wrap .section-title {
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.about-section .content-wrap .text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8rem;
}

@media (min-width: 768px) {

    .about-section .first-section .content-text {
        padding-left: 3rem;
    }

    .about-section .second-section .content-text {
        padding-right: 3rem;
    }
}


.about-section .content-wrap img {
    min-height: 100%;
    max-height: 300px;
    border-radius: 1rem;
    object-fit: cover;
    width: 100%;
}


/* Modal */
.modal .modal-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.modal .modal-body {
    padding: 1rem 2rem;
}

.modal .modal-body .form-group .form-control {
    border-radius: 0;
    box-shadow: none;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    height: 50px;
    border-radius: .5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border-color: #f4f4f4;
    background-color: #fff;
}

.modal .modal-body .form-group .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 2px 2px var(--primary-color);
}

.modal .modal-body .form-group textarea {
    height: 100px !important;
}


.modal .modal-body .form-group label {
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: .25rem;
    color: var(--text-color);
    display: block;
}

/* Footer */
footer {
    background-color: #f6f6f6;
    padding: 3rem 2rem;
    border-radius: 1rem;
}

.footer-3 {
    background-color: rgba(0, 0, 0, 0.01);
    padding: 2rem 0;
}

footer a {
    color: var(--text-color);
}

footer .list-1 {
    flex-wrap: wrap;
}

footer .list-1 li {
    padding: 0 !important;
}

footer .list-1 li a {
    display: block;
    padding: .2rem 0 !important;
    margin-bottom: .7rem;
    border-left: 2px solid transparent;
}

footer .list-1 li a:hover {
    border-color: var(--primary-color);
    padding-left: .5rem !important;
}

footer .menu-list .list-item {
    padding: .75rem 1rem;
    flex: 0 0 50%;
}

footer .footer-quick-links {
    justify-content: s;
}

footer .downloadApps {
    display: flex;
    flex-direction: column;
}


footer .arabicUrl {
    margin: 1.5rem 0 1rem !important
}

footer .important-logo img {
    width: 100%;
    height: 60px;
    object-fit: contain;
}

footer .downloadApps>a {
    margin-bottom: 1rem;
    border: 1px solid #f4f4f4;
    display: block;
    background-color: #fff;
    display: flex;
    align-items: center;
    min-height: 80px;
    border-radius: .75rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    padding: .7rem 2rem;
    font-weight: 600;
}

footer .downloadApps>a .icon {
    font-size: 2rem !important;
}

footer .footer-quick-links .icon {
    font-size: 1.2rem !important;
    width: 20px;
    text-align: center;
    margin-right: .4rem;
}