/* Start General */
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap');

html * {
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Alexandria", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
}

:root {
    --main-color: #F4DB4C;
    --secondary-color: #3F3F3E;
    --trans: all 0.4s ease-in-out;
}

body {
    overflow-x: hidden;
    transition: var(--trans);
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

a,
a:hover,
a:focus,
a:active,
button:hover,
button:focus,
button:active,
div,
section,
span,
p,
div:hover,
section:hover,
span:hover,
p:hover {
    text-decoration: none;
    outline: none;
}

select,
input[type="checkbox"],
input[type="radio"],
select:focus,
input[type="checkbox"]:focus,
input[type="radio"]:focus {
    cursor: pointer;
}

.form-control:focus,
.btn:focus {
    box-shadow: none !important;
    border-color: transparent;
}

.has-fixed-top .main-header {
    padding-top: 100px;
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

picture {
    display: block;
}

.sec-padding {
    padding: 50px 0;
}

.second-font-family {
    font-family: var(--second-font-family);
}

.btn-main {
    padding: 10px 33px;
    background-color: var(--main-color);
    transition: var(--trans);
    color: #201B33;
    font-size: 12px;
    font-weight: 700;
    line-height: 28px;
    border-radius: 25px;
    box-shadow: 0px 1.85px 3.15px 0px #F4DB4C06;
    box-shadow: 0px 8.15px 6.52px 0px #F4DB4C0A;
    box-shadow: 0px 20px 13px 0px #F4DB4C0D;
    box-shadow: 0px 38.52px 25.48px 0px #F4DB4C0F;
    box-shadow: 0px 64.81px 46.85px 0px #F4DB4C13;
    box-shadow: 0px 100px 80px 0px #F4DB4C1A;
}

/* Start General */

/* side Menu */
.side-menu-list {
    a {
        display: flex;
        justify-content: space-between;
        padding: 12px 0 12px 8px;
        color: #333;
        font-size: 16px;
        margin-bottom: 6px;
        transition: all 0.3s ease;

        &:hover {
            background-color: var(--main-color);
            padding-inline-start: 8px;
            border-radius: 25px;
        }
    }
}

/* side Menu */

/* main header */
.navbar-nav .nav-link {
    font-size: 16px;
    padding: 8px 16px;
    margin-inline: 8px;
    position: relative;

    &::after {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--main-color);
        position: absolute;
        top: 100%;
        right: 50%;
        opacity: 0;
        transform: translateY(10px) translateX(50%);
        transition: var(--trans);
    }

    &:hover::after {
        opacity: 1;
        transform: translateY(0px) translateX(50%);
    }
}

.navbar-toggler {
    border: none !important;
    padding: 0;

    &:focus {
        border: none !important;
        box-shadow: none !important;
    }
}

/* main header */

/* main content */
.main-top-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 618px;
    height: 750px;
    background: url(../images/hero-bg.png) no-repeat center center / contain;
    z-index: -1;
}

.side-top-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 618px;
    height: 750px;
    background: url(../images/hero-bg.png) no-repeat center center / contain;
    z-index: -1;
}

/* main content */

/* slider-item */
.slider-item {
    h1 {
        font-size: 48px;
        color: #252B33;
        font-weight: 800;
        line-height: 170%;
        margin-bottom: 20px;

        span {
            font-weight: 800;
            display: inline-block;
            background-color: #252B33;
            color: #FFF;
            padding: 8px 12px;
            border-radius: 24px;
        }
    }

    p {
        color: #535E6C;
        font-size: 16px;
        line-height: 35px;
        margin-bottom: 27px;
    }

    figure {
        margin-bottom: 0;
        width: 100%;
        height: 600px;
        overflow: hidden;
        text-align: end;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }
}

.main-slider-pagination {
    display: inline-block !important;
    position: absolute;
    top: 50% !important;
    right: 10px;
    transform: translateY(-50%) !important;
    width: min-content !important;
    left: 0 !important;
    bottom: auto !important;

    .swiper-pagination-bullet {
        background-color: #006D38;
        width: 15px;
        height: 15px;
    }
}

/* slider-item */

/* sec-header */
.sec-header {
    margin-bottom: 15px;

    h4 {
        color: #161B20;
        font-size: 32px;
        font-weight: 800;

        span {
            font-weight: 800;
            background-color: #161B20;
            color: #FFF;
            display: inline-block;
            padding: 8px 16px;
            border-radius: 24px;
            line-height: 52px;
        }
    }
}

/* sec-header */

/* service */
.service {
    background-color: #FFFCEC;
    padding: 40px 0;
    margin-top: 60px;
    position: relative;

    &::before {
        content: '';
        display: block;
        width: 100%;
        height: 75px;
        background: url(../images/service.svg) no-repeat center top / cover;
        position: absolute;
        top: -40px;
        left: 0;
    }

    &::after {
        content: '';
        display: block;
        width: 100%;
        height: 75px;
        background: url(../images/service.svg) no-repeat center top / cover;
        position: absolute;
        bottom: -40px;
        left: 0;
        transform: rotate(180deg);
    }

    p {
        color: #535E6C;
        font-size: 14px;
        line-height: 32px;
        margin-bottom: 40px;
    }
}

.service-item {
    padding: 20px;
    background-color: #FFF;
    border-radius: 24px 0 24px 0;
    text-align: center;
    box-shadow: 0 5px 44px 0 RGBA(0, 0, 0, 0.04);

    figure {
        width: 80px;
        height: 80px;
        overflow: hidden;
        text-align: center;
        margin-inline: auto;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }

    h3 {
        color: #42526E;
        font-size: 18px;
        margin-bottom: 0;
    }
}

/* service */

/* what-we-do */
.what-we-do {
    margin-top: 20px;
    padding: 60px 0;
}

.serving-center {
    background: url(../images/center-bg.svg) no-repeat center center / contain;
    background-size: 530px 530px;
}

.center-image-mobile {
    width: 100%;
    height: 633px;
    position: relative;
    margin-bottom: 0;

    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.serving-list {
    text-align: end;

    ul {
        position: relative;
        min-height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        /* padding-top: 20px !important; */
        &::before {
            content: '';
            display: block;
            width: 2px;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            background-color: #FFF;
            box-shadow: 0 4px 28px 0 RGBA(0, 0, 0, 0.25);

        }

        li {
            padding-inline-end: 28px !important;
            position: relative;

            &::before {
                content: '';
                display: block;
                width: 20px;
                height: 20px;
                position: absolute;
                left: -7px;
                top: 50%;
                transform: translateY(-50%);
                background-color: #FFF;
                box-shadow: 0 4px 28px 0 RGBA(0, 0, 0, 0.25);
                border-radius: 50%;
            }

            &::after {
                content: '';
                display: block;
                width: 10px;
                height: 10px;
                position: absolute;
                left: -2px;
                top: calc(50%);
                transform: translateY(-50%);
                background-color: var(--main-color);
                border-radius: 50%;
            }

            span {
                font-size: 16px;
                color: #252B33;
                font-weight: 600;
                background-color: #FFF;
                border-radius: 16px;
                box-shadow: 0 4px 36px 0 RGBA(0, 0, 0, 0.11);
                padding: 8px 16px;
                position: relative;
                display: inline-block;
            }
        }
    }

    &.other-side {
        text-align: start !important;

        ul {
            &::before {
                left: auto !important;
                right: 0 !important
            }

            li {
                padding-inline-end: 0 !important;
                padding-inline-start: 28px !important;

                &::before,
                &::after {
                    left: auto !important;
                    right: -7px;
                }

                &::after {
                    right: -2px !important;
                }
            }
        }
    }
}

/* what-we-do */

/* about */
.about {
    padding: 90px 0;
    background-color: #F6F6F6;

    .about-img {
        width: 100%;
        height: 600px;
        border-radius: 25px;
        background-color: #FFF;
        position: relative;

        img {
            border-radius: 25px;
        }

        figcaption {
            position: absolute;
            bottom: -60px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #FFF;
            border-radius: 24px;
            padding: 30px 20px;
            min-width: 280px;

            h5 {
                color: #1F252B;
                font-size: 16px;
                margin-bottom: 16px;
                text-align: center;
            }
        }
    }

    .about-text {
        padding: 48px;
        background-color: #FFFFFF;
        border-radius: 24px;
    }

    .sec-header {
        margin-bottom: 18px;
    }

    .strip-text {
        margin-bottom: 56px;
    }

    .card {
        border-radius: 16px;

        h4 {
            font-size: 20px;
            color: #161B20;
            margin-bottom: 12px;
            margin-top: 24px;
        }

        p {
            color: #666666;
            font-size: 14px;
            line-height: 31px;
        }
    }
}

.strip-text {

    p,
    span,
    b,
    strong,
    a {
        color: #535E6C;
        font-size: 16px;
        line-height: 38px;
    }
}

/* about */

/* Users inline */
.users-list-inline {
    justify-content: center;

    &>div {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background-color: #FFF;
        border: 1px solid #FFF;
        overflow: hidden;
    }

    &>div:not(:first-child) {
        margin-inline-start: -12px;
    }

    .with-bg {
        background-color: var(--main-color);
        color: #172B4D;
        font-size: 12px;
        text-align: center;
        line-height: 42px;
    }
}

/* Users inline */

/* statistics */
.statistics {
    padding: 100px 0;
    background: url(../images/stat-bg.png) no-repeat center center / cover;
}

/* statistics */

/* stat-item */
.stat-item {
    figure {
        width: 70px;
        height: 70px;
        background-color: #26AA4E;
        margin-inline-start: auto;
        margin-inline-end: 26px;
        margin-bottom: -35px;
        border-radius: 50%;
        position: relative;
        z-index: 2;
        text-align: center;
        line-height: 70px;

        img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
    }

    .card-white {
        padding: 12px 25px;
        background-color: #FFF;
        box-shadow: 0px 4px 30px 0px #0000000D;
        border-radius: 16px;
    }

    strong {
        display: inline-block;
        color: #252B33;
        font-size: 30px;
        line-height: 48px;
    }

    p {
        color: #252B33;
        font-size: 14px;
        margin-bottom: 0;
        line-height: 22px;
    }
}

/* stat-item */

/* download-app */
.download-app {
    padding: 50px 0;
    background-color: #FFFCEC;
    position: relative;
    margin-top: 50px;

    &::before {
        content: '';
        display: block;
        width: 100%;
        height: 75px;
        background: url(../images/service.svg) no-repeat center top / cover;
        position: absolute;
        top: -40px;
        left: 0;
    }

    &::after {
        content: '';
        display: block;
        width: 100%;
        height: 75px;
        background: url(../images/service.svg) no-repeat center top / cover;
        position: absolute;
        bottom: -20px;
        left: 0;
        transform: rotate(180deg);
        z-index: 1;
    }

    .download-two-mobiles {
        position: absolute;
        bottom: 0;
        right: 4%;
        max-width: 640px;
        height: calc(100% - 50px);
        min-height: 470px;
        z-index: 2;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }

    p {
        color: #666666;
        font-size: 16px;
        line-height: 38px;
        margin-bottom: 12px;
    }

    .info-warning {
        display: inline-block;
        background-color: #FFF7CF;
        color: #252B33;
        padding: 16px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: bold;
    }
}

.py-6 {
    padding: 150px 0;
}

/* download-app */

/* what-client-say */
.what-client-say {
    padding: 100px 0;
    position: relative;
}

.user-sm-item {
    figure {
        width: 80px;
        height: 80px;
        overflow: hidden;
        margin-bottom: 0;
        border-radius: 50%;

        img {
            object-position: center;
        }
    }

    h2 {
        font-size: 18px;
        font-weight: 700;
        color: #161B20;
    }

    p {
        font-size: 12px;
        color: #666666;
        margin-bottom: 0;
    }

    .rating-flex {
        gap: 5px;
        margin-top: 5px;

        i {
            color: #666666;
            transition: all 0.3s ease;

            &.filled {
                color: #FCA401;
            }
        }
    }
}

.testim-image {
    width: 433px;
    height: 460px;
    border-radius: 280px;
    background-color: #e3e3e3;
    margin-inline: auto;
    margin-bottom: 0;
    position: relative;

    img {
        border-radius: 280px;
    }

    figcaption {
        position: absolute;
        bottom: 70px;
        left: 100%;
        transform: translateX(-50%);
        background-color: #FFF;
        border-radius: 24px;
        padding: 30px 20px;
        min-width: 280px;
        box-shadow: 10px 12px 25px 0px #00000017;

    }
}

/* what-client-say */

/* text-sriped */
.text-sriped {

    p,
    span,
    strong,
    bre,
    pre,
    abbr {
        color: #666666;
        font-size: 14px;
        line-height: 37px;
    }
}

/* text-sriped */

/*form*/
.contact-us {
    padding: 50px 0 100px 0;
    background: url("../images/contact.png") no-repeat center bottom;
    background-size: cover;
}

.form {
    .form-control {
        border: 1px solid #CCCCCC;
        border-radius: 10px;
        text-align: start !important;
        direction: rtl;

        .form-control:not(textarea) {
            height: 50px;
        }
    }

    textarea {
        height: 130px;
    }
}
/*form*/

/* main-footer */
.main-footer {
    padding: 100px 0;
    background-color: #1D2025;
    text-align: center;
    position: relative;

    &::before {
        content: '';
        display: block;
        width: 100%;
        height: 75px;
        background: url(../images/footer.png) no-repeat center top / cover;
        position: absolute;
        top: -44px;
        left: 0;
        z-index: 22;
    }

    ul.nav {
        justify-content: center;
        margin-top: 32px;
        margin-bottom: 0;

        li a {
            font-size: 16px;
            color: #FFF;
            line-height: 24px;
            padding: 6px 16px;
            transition: all 0.3s ease;

            &:hover {
                background-color: var(--main-color);
                color: #333;
                border-radius: 25px;
            }
        }
    }

    .social-footer {
        margin-top: 32px;
        display: flex;
        align-items: center;
        gap: 6px;
        justify-content: center;
        list-style: none;
        margin-bottom: 0;
        padding: 0;

        li a {
            display: block;
            padding: 6px 12px;
        }
    }
}

/* main-footer */

/* responsive media */
@media(max-width: 991px) {
    .main-slider {
        .slider-item {
            .row {
                flex-flow: column-reverse;
            }
        }
    }
    
    .download-app {
        .download-two-mobiles {
            position: static !important;
            height: 50px;
            min-height: 367px;
            margin-top: -65px;
        }
    }
}

@media(max-width: 768px) {
    .main-figure {
        height: 330px !important;
    }

    .slider-item {
        h1 {
            font-size: 28px;
        }

        p {
            font-size: 12px;
            line-height: 31px;
        }
    }

    .sec-header {
        h4 {
            font-size: 18px;
            line-height: 35px;

            span {
                font-size: 18px;
                line-height: 35px;
            }
        }
    }

    .serving-list {
        & ul {
            &::before {
                display: none !important;
            }
        }
    }

    .serving-list {
        ul {
            min-height: auto;
            display: flex;
            flex-wrap: wrap;
            flex-flow: column;
            gap: 12px;

            li,
            span {
                width: 100%;
            }

            li {
                padding-inline-end: 0 !important;
                padding-inline-start: 28px !important;
                &::before,
                &::after {
                    left: auto !important;
                    right: -7px;
                }

                &::after {
                    right: -2px !important;
                }
            }
        }
    }

    .center-image-mobile {
        height: 450px !important;
    }

    .serving-center {
        background-size: 345px 345px;
    }

    .about-img {
        height: 475px !important;
    }

    .main-slider-pagination {
        display: none !important;
    }

    .service-item {
        figure {
            width: 58px;
            height: 58px;
        }

        h3 {
            font-size: 12px !important;
        }
    }

    .strip-text {
        margin-bottom: 30px !important;
        p, span, b, strong, a {
            color: #535E6C;
            font-size: 14px;
            line-height: 30px;
        }
    }

    .about {
        .card {
            margin-bottom: 12px;
        }
    }

    .stat-item {
        margin-bottom: 18px;
        figure {
            width: 40px;
            height: 40px;
            line-height: 40px;
            img {
                max-width: 57%;
                max-height: 57%;
            }
        }
    }

    .statistics {
        padding: 50px 0;
    }
}

@media(max-width: 380px) {
    .serving-center {
        background-size: 228px 228px;
    }
}

/* responsive media */