:root {
    --moz-box-sizing: border-box;
    box-sizing: border-box;
    /* variables */
    --main-co: #242c5c;
    --sec-co: #b4925a;
    --text-co: #0e1f1f;
    --border-co: #959595;
    --white-co: #ffffff;
}

/**********************************/
/********** General CSS ***********/
/**********************************/
body {
    font-family: "Noto Kufi Arabic", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    direction: rtl;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

p {
    margin-bottom: 0rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.2;
    border: 1px solid transparent;
}

.badge-warning {
    color: #8a6500;
    background-color: #fff6db;
    border-color: #ffe7a1;
}

.badge-success {
    color: #0f6a3c;
    background-color: #e5f7ec;
    border-color: #bce9cd;
}

.badge-danger {
    color: #9a1f2d;
    background-color: #fdecef;
    border-color: #f7c6cf;
}

.badge-info {
    color: #165d79;
    background-color: #e8f4fb;
    border-color: #c8e4f4;
}

ul {
    padding: 0rem;
    list-style: none;
}

ol {
    padding: 0rem;
    list-style: none;
}

blockquote {
    margin-bottom: 0rem;
}

/**********************************/
/*************  header ************/
/**********************************/
header {
    position: relative;
    z-index: 1500;
    box-shadow: 0px 0px 8px -6px var(--main-co);
}
header nav {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
header nav .navbar-toggler {
    margin: 1rem 0rem;
}
header nav .navbar-toggler:focus {
    box-shadow: none;
}
header nav .menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
header nav .menu ul.links {
    display: flex;
    flex-direction: row-reverse;
    justify-content: start;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap-reverse;
}
header nav .menu ul.links li a {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem;
    color: var(--text-co);
}
header nav .menu ul.links li.active a,
header nav .menu ul.links li:hover a {
    color: var(--sec-co);
}
header nav .menu ul.links .join {
    display: none;
}
header nav .menu .stores {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    cursor: pointer;
}
header nav .menu .stores img {
    width: 135px;
    height: 40px;
}
header nav .logo {
    width: 130px;
    max-height: 65px;
    overflow: hidden;
}
header nav .logo img {
    width: 100%;
    height: 100%;
}
header .headFixed {
    width: 100%;
    background-color: #fcf7ed;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/**********************************/
/*************  hiro ************/
/**********************************/
.hiro {
    background-color: #fbfcfc;
    background: url("../images/hiro-bg.png") no-repeat center center;
    background-size: cover;
    background-position: 0 100%;
}
.hiro .cont {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap-reverse;
    padding: 3rem 1rem;
}
.hiro .cont .image {
    width: 49%;
    text-align: end;
}
.hiro .cont .image img {
    max-width: 400px;
}
.hiro .cont .text {
    padding-top: 3rem;
    width: 50%;
    text-align: right;
}
.hiro .cont .text h1 {
    margin-bottom: 2rem;
    color: var(--sec-co);
    font-size: 33px;
    font-weight: 700;
    line-height: 1.6;
}
.hiro .cont .text p {
    margin-bottom: 2rem;
    color: var(--text-co);
    line-height: 1.8;
    text-align: right;
    font-weight: 500;
    direction: rtl;
}
.hiro .cont .text .apply-cta {
    margin-bottom: 1.5rem;
}
.hiro .cont .text .apply-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.72rem 1.4rem;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white-co);
    background: linear-gradient(
        135deg,
        var(--main-co) 0%,
        #2f3a74 72%,
        var(--sec-co) 145%
    );
    box-shadow: 0 12px 22px -16px rgba(36, 44, 92, 0.85);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}
.hiro .cont .text .apply-cta a:hover {
    filter: brightness(1.04);
    transform: translateY(-1px);
    box-shadow: 0 16px 26px -16px rgba(36, 44, 92, 0.95);
}
.hiro .cont .text .apply-cta a:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(180, 146, 90, 0.24);
}
.hiro .cont .text .stores {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    cursor: pointer;
}
.hiro .cont .text .stores img {
    width: 135px;
    height: 40px;
}

/* ______________________________________________________________*/
/* _____________________ Media query ____________________________*/
/* ______________________________________________________________*/
@media (max-width: 450px) {
    header nav .menu {
        padding: 1rem;
        order: 2;
    }
    header nav .menu ul.links li {
        text-align: left;
        width: 100%;
    }
    header nav .logo {
        order: 1;
    }
    .hiro .cont {
        justify-content: center;
    }
    .hiro .cont .image {
        text-align: center;
        width: 100%;
    }
    .hiro .cont .text {
        width: 100%;
    }
}
@media (min-width: 451px) and (max-width: 767px) {
    header nav .menu {
        padding: 1rem;
        order: 2;
    }
    header nav .menu ul.links li {
        text-align: left;
        width: 100%;
    }
    header nav .logo {
        order: 1;
    }
    .hiro .cont {
        justify-content: center;
    }
    .hiro .cont .image {
        width: 100%;
        text-align: center;
    }
    .hiro .cont .text {
        width: 100%;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    header nav .menu {
        padding: 1rem;
        order: 2;
    }
    header nav .menu ul.links li {
        text-align: left;
        width: 100%;
    }
    header nav .logo {
        order: 1;
    }
    .hiro .cont {
        justify-content: center;
    }
    .hiro .cont .image {
        text-align: center;
        width: 100%;
    }
    .hiro .cont .text {
        width: 100%;
    }
} /*# sourceMappingURL=app.css.map */
