﻿:root {
    /*Colors*/
    --green: green;
    --primary: #4CCD86;
    --primary-gradient: linear-gradient(90deg,#4CCD86 0%,#91E774 100%);
    --primary-dark: #1FA022;
    --primary-light: #E4F7DD;
    --success: #4CCD86;
    --info: #5BCDDA;
    --warning: #FFC453;
    --danger: #F85858;
    --on-surface: #111213;
    --black: #000000;
    --white: #FFFFFF;
    --surface: #F0F0F0;
    --secondary: #D8D8D8;
    /*Typography*/
    --heading: 68px;
    --second-heading: 48px;
    --second-heading-mobile: 38px;
    --sub-heading: 30px;
    --subtitle: 20px;
    --title: 32px;
    --paragraph: 19px;
    --paragraph-sm: 14px;
    --p-space-025: 1px;
    --p-space-05: 2px;
    --p-space-1: 4px;
    --p-space-2: 8px;
    --p-space-3: 12px;
    --p-space-4: 16px;
    --p-space-5: 20px;
    --p-space-10: 40px;
    --p-space-12: 48px;
    --p-space-16: 64px;
    --p-space-20: 80px;
    --p-space-24: 96px;
    --p-space-28: 112px;
    --p-space-32: 128px;
    /*Font weight*/
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semi-bold: 600;
    --fw-bold: 700;
    --fw-block: 800;
}

* {
    font-family: Cairo;
    direction: rtl;
}

a, .navbar-brand, .desc {
    color: var(--green);
}
/*Navbar*/
.navbar {
    padding-top: var(--p-space-10);
    transition: all 0.1s;
}

    .navbar img {
        width: 43px;
        height: auto;
    }

.nav-link {
    /*margin-left: 32px;*/
    font-size: var(--fw-semi-bold);
    line-height: 25px;
    letter-spacing: 0.2px;
    color: var(--green);
}

.nav-shrink {
    padding: 15px 0;
    background: var(--white);
    box-shadow: 0 2px 48px 4px rgba(0,0,0,.09);
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
    transform: padding 0.3s,box-shadow 0.3s;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: linear-gradient(180.19deg,#FFF,#f1fbec);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    width: 330px;
}

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        .dropdown-content a:hover {
            background-color: #ddd;
        }

.dropdown:hover .dropdown-content {
    display: block;
}
/*Button*/
.btn {
    padding: 13px 40px;
    font-size: 16px;
    font-weight: var(--fw-bold);
    line-height: 25px;
    letter-spacing: -0.35px;
    transition: .256s;
}
/*hero*/
.hero {
    position: relative;
}

    .hero .heroBg1, .heroBg2 {
        bottom: 0;
        position: absolute;
        top: 0;
        width: 50%;
        z-index: -1;
        margin-top: -8rem;
    }

    .hero .heroBg1 {
        background: linear-gradient(180.19deg,#FFF,#f1fbec);
        right: 0;
    }

    .hero .heroBg2 {
        background: linear-gradient(180.19deg,#fdfefc,#c9f7c3);
        left: 0;
    }

    .hero .heroContentContainer {
        display: flex;
        justify-content: space-between;
    }

    .hero .heroContent1 {
        align-items: center;
        display: flex;
        flex-grow: 1;
        min-height: 545px;
        padding-left: 15px;
        position: relative;
        width: 100%;
    }

    .hero .heroContent2 {
        padding-right: 15px;
        position: relative;
        width: 100%;
    }

    .hero .heroC1Header {
        color: #000000;
        position: relative;
        width: 547px;
        z-index: 1;
    }

    .hero .heroC2bgContainer {
        bottom: 0;
        position: absolute;
        left: 0;
        top: 0;
    }

.heroBg {
    margin-top: -35.4rem;
}

.hero .heroC1Title {
    /*font-size: var(--title);*/
    font-weight: var(--fw-bold);
    letter-spacing: 0,2px;
    line-height: 53px;
}

.hero .heroC1Text {
    font-size: var(--paragraph);
    font-weight: var(--fw-light);
    letter-spacing: 0.2px;
    margin: 24px 0;
    color: var(--on-surface);
}

.hero .heroC1ButtonDescription {
    color: var(--primary-dark);
    font-size: var(--paragraph-sm);
    font-weight: var(--fw-light);
    letter-spacing: 0.32px;
    line-height: 21px;
    margin-left: 23px;
    width: 104px;
}

.coin {
    right: -150px;
    position: absolute;
    bottom: 430px;
    transform: translatey(0px);
    animation: float 6s ease-in-out infinite;
}

.rounded1 {
    right: -180px;
    position: absolute;
    bottom: 150px;
    transform: translatey(0px);
    animation: float 6s ease-in-out infinite;
}

.rounded2 {
    left: -3px;
    position: absolute;
    bottom: 400px;
    transform: translatey(0px);
    animation: float 6s ease-in-out infinite;
}
/*Animated*/
@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-10px);
    }

    100% {
        transform: translatey(0px);
    }
}

@keyframes ovalFloat {
    0% {
        transform: translateZ(1px);
    }

    50% {
        transform: translate3d(0,10px,1px);
    }

    100% {
        transform: translateZ(1px);
    }
}

@keyframes rotate {
    0% {
        transform: translatey(0px) rotate(24.3deg);
    }

    50% {
        transform: translatey(-10px) rotate(24.3deg);
    }

    100% {
        transform: translatey(0px) rotate(24.3deg);
    }
}

.hero .ovalFloatIcon {
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0px 4px 31px rgba(0, 0, 0, 0.17);
    height: 94px;
    right: 7%;
    top: -130px;
    width: 94px;
    position: absolute;
    animation: rotate 6s ease-in-out infinite;
}

.ovalFloatIconText {
    bottom: 1px;
    right: 10px;
    width: 70px;
}

.hero .ovalFloatIconText {
    color: var(--black);
    font-weight: var(--fw-regular);
    font-size: 10.9px;
    line-height: 92.5%;
    position: absolute;
    text-align: center;
}

.peny {
    right: -5px;
    top: -25px;
    width: 100px;
    position: absolute;
}

.iconElement {
    align-items: center;
    background-color: var(--white);
    border-radius: 22.5px;
    box-shadow: 0 9px 11px rgba(0, 0, 0, 0.05);
    display: flex;
    height: 45px;
    padding: 0 15px;
    width: 150px;
    right: 90px;
    position: absolute;
    bottom: 300px;
    animation: float 6s ease-in-out infinite;
}

.hero .iconElementText {
    color: var(--on-surface);
    font-size: 12px;
    font-weight: var(--fw-semi-bold);
    letter-spacing: -.16px;
    padding-top: 16px;
}

.emojiElement {
    font-size: var(--paragraph);
}

.floatIconText {
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.07);
    border-radius: 50px;
    width: 136px;
}

.iconsText {
    font-size: 10.9px;
    line-height: 92.5%;
    font-weight: var(--fw-bold);
}

.oval1 {
    left: 90px;
    position: absolute;
    bottom: 460px;
    height: 21px;
    right: 27%;
    width: 21px;
}

.oval {
    background-color: var(--white);
    border-radius: 50%;
    animation: ovalFloat 6s ease-in-out infinite;
}

/*Overview*/
section.overview {
    margin: 20px auto;
}

    section.overview h2 {
        font-size: var(--title);
        font-weight: var(--fw-block);
        line-height: 39px;
        letter-spacing: 0.1px;
        color: var(--black);
    }

    section.overview p {
        font-size: var(--paragraph);
        font-weight: var(--fw-regular);
        line-height: 28px;
        letter-spacing: 0.2px;
        color: var(--on-surface);
        margin-top: -0.5rem;
    }

.btn-success-5-40 {
    padding: 5px 40px
}
/*Popular*/
/*.popular-class {
    margin: 142px 0 64px 0;
}*/

.card-body .title {
    text-align: center;
}

.link-more {
    text-align: left;
    padding-top: 5px
}

.header-section {
    text-align: center;
    margin-bottom: 64px;
}

    .header-section h2 {
        /*font-size: var(--title);*/
        font-weight: var(--fw-bold);
        line-height: 39px;
        letter-spacing: 0.1px;
        color: var(--black);
    }

    .header-section p {
        font-size: var(--paragraph);
        font-weight: var(--fw-light);
        line-height: 28px;
        letter-spacing: 0.2px;
        color: var(--on-surface);
        width: 80%;
        margin-right: 10%;
    }

.popular-class .card img {
    width: 100%;
    height: auto;
}

.popular-class .card, .overview .card {
    border: 0;
    background-color: var(--white);
    box-shadow: 0px 6px 60px 5px rgba(0, 0, 0, 0.5);
}

.popular-class .title {
    font-size: var(--button-lg);
    font-weight: var(--fw-bold);
    line-height: 25px;
    letter-spacing: -0.35px;
    color: var(--black);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.popular-class .time {
    color: var(--on-surface);
    font-size: var(--subtitle);
    font-weight: var(--fw-light);
    line-height: 18px;
    letter-spacing: 0.1px;
    text-align: right
}

.popular-class .value {
    color: var(--on-surface);
    font-weight: var(--fw-light);
    line-height: 18px;
    letter-spacing: 0.1px;
    font-size: var(--subtitle);
}
/*Call action*/
.call-action {
    background: linear-gradient(180deg,rgba(255,255,255,0.00)0%,#E1FFDF 100%);
    padding: 128px 0;
}

    .call-action .btn {
        float: left;
    }

    .call-action .head {
        color: var(--black);
        font-size: var(--title);
        font-weight: var(--fw-bold);
        line-height: 39px;
        letter-spacing: 0.1px;
    }

    .call-action .desc {
        color: var(--on-surface);
        font-size: var(--paragraph);
        font-weight: var(--fw-light);
        line-height: 28px;
        letter-spacing: 0.2px;
    }
/* Big brand*/

.big-brand {
    margin-top: -6.5rem;
}

/*Discover */
.discover {
    margin: -25rem 0 60px 0;
}

    .discover .header-section {
        width: 457px;
        margin: 0 auto;
    }

.card-discover .card {
    border: none;
    border-radius: 0;
    box-shadow: 0 6px 30px 5px rgba(0, 0, 0, 0.05);
}

.card-discover .card-body {
    padding: 66px 41px;
}

    .card-discover .card-body img {
        width: 150px;
        height: auto;
    }

.card-discover .content h5 {
    color: var(--black);
    font-size: var(--subtitle);
    font-weight: var(--fw-bold);
    line-height: 28px;
    letter-spacing: 0.02px;
}

.card-discover .content p {
    color: var(--on-surface);
    font-size: var(--paragraph-sm);
    font-weight: var(--fw-light);
    line-height: 21px;
    letter-spacing: -0.32px;
}

.sp-cnt {
    margin-top: 28px;
}

.dp-flex {
    display: flex;
}

.btn-more {
    text-align: center;
    margin-top: 50px;
    margin-bottom: -50px;
}

/*Footer*/

footer {
    background-color: var(--white);
    box-shadow: 0 12px 66px 0 rgb(229, 232, 222,0.84);
    margin-top: 18px;
}

    footer .p-footer {
        padding: 32px 0;
    }

    footer ul {
        list-style: none;
        padding: 1px;
    }

        footer ul li a {
            color: var(--green)
        }

    footer .name-head {
        color: var(--on-surface);
        font-size: var(--subtitle);
        font-weight: var(--fw-semi-bold);
        line-height: 18px;
        letter-spacing: 0.2px;
    }

    footer .address {
        color: var(--on-surface);
        font-size: var(--subtitle);
        font-weight: var(--fw-light);
        line-height: 25px;
        letter-spacing: 0.1px;
    }

    footer .links {
        margin-top: 10px;
    }

.contact img {
    width: auto;
    height: auto;
}

.contact span {
    color: var(--on-surface);
    font-size: var(--subtitle);
    font-weight: var(--fw-light);
}

footer .item {
    color: var(--on-surface);
    font-size: var(--subtitle);
    font-weight: var(--fw-light);
    line-height: 25px;
    letter-spacing: 0.1px;
    margin-bottom: 10px;
}

footer form input {
    direction: rtl !important;
}

footer form button {
    height: 40px !important;
    padding: 0 10px !important;
    margin: 0px !important;
}

footer form .div-button {
    padding: 2px !important;
}
/* footer .float-left{
    float: left;
} */
.bg-icon-sm {
    background-color: var(--green);
    color: var(--white);
    width: 35px;
    height: 35px;
    font-size: 20px;
    margin-left: 5px;
}

footer .desc {
    color: var(--on-surface);
    font-weight: var(--fw-medium);
    line-height: 24px;
    letter-spacing: 0.1px;
    font-size: var(--subtitle);
    margin-top: 30px;
}

footer .privacy {
    direction: ltr;
    margin-top: 30px;
}

/*New Add 12/09/2023*/
.side-menu .item {
    padding-bottom: 10px;
}

.last-blogs img {
    width: 100%
}

.side-menu .item span {
    width: 24px;
    height: 24px;
    border-radius: 100%;
    display: inline-block;
    text-align: center;
    font-size: 13px;
    margin-left: 5px;
    border: 1px solid;
    line-height: 24px;
    float: left;
}

.side-menu .name-head {
    font-weight: bold;
}

.side-menu .input-group {
    padding-top: 10px;
}

.side-menu input {
    text-align: right;
    direction: rtl;
}

.side-menu .div-button {
    padding: 2px;
}

    .side-menu .div-button button {
        padding: 5px;
    }

.comments {
    margin-top: 15px
}

    .comments h6 span, .comments span {
        float: left;
        color: #0d6efd
    }
/* Responsive*/
@media(max-width:374px) {
    .navbar .navbar-brand {
        font-size: 15px !important
    }
}

@media(max-width:991px) {
    /* Navbar*/
    .navbar {
        padding-top: var(--p-space-1);
    }

    .navbar-collapse .btn-success {
        margin-top: 5px;
    }

    .nav-link {
        margin-left: 0 !important;
        padding-right: 10px !important
    }
    /* Hero*/
    .hero {
        background-color: var(--primary-light);
        margin-top: -50px !important;
    }

    .heroContent1 {
        margin: 50px 0;
    }

    .heroBg {
        display: none;
    }

    .hero .heroC1Title {
        /*font-size: var(--second-heading-mobile);*/
        font-weight: var(--fw-bold);
        letter-spacing: 0.2px;
        line-height: 43px;
    }

    .coin,
    .rounded1,
    .rounded2,
    .ovalFloatIcon,
    .iconElement,
    .oval1 {
        display: none;
    }
    /* Popular class*/
    section.popular-class {
        margin: 50px 0 34px 0;
    }

    .call-action .btn {
        float: left;
    }
    /* Big brand*/
    .big-brand {
        display: none;
    }
    /* Discover*/
    .discover {
        margin: 1rem 0 60px 0;
        position: relative;
    }

        .discover .header-section {
            width: auto;
            margin: 0 auto;
        }

    .sp-cnt {
        margin-top: 28px;
        margin-bottom: 28px;
    }

    .dp-flex {
        display: block;
    }

    footer .float-left {
        float: right !important;
    }

    .links {
        margin-top: 24px;
    }

    footer .desc, footer .privacy {
        text-align: center;
    }

    footer .privacy {
        margin-top: 20px;
    }
}
/* Desktop only*/
@media(max-width:1023px) {
    .navbar {
        background-color: var(--white);
        box-shadow: 0 2px 48px 4px rgba(0, 0, 0, 0.09);
        right: 0;
        padding: 10px 0;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 10;
    }
}

.blog-details i {
    color: rgba(13, 110, 253);
}

.descrip, .descrip span {
    /*margin: 0 0 0 5px;*/
    padding: 0 0 0 10px;
    font-size: 14px;
}

.card-discover .card-body {
    padding: 50px 10px;
}
