﻿@import url('common/common.css');
@import url('common/header.css');
@import url('common/footer.css');

/*section*/
section {
    display:table;
    position: relative;
    width: 100%;
    padding: 20px;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

    /*section background*/
    section > i {
        display: block;
        position: absolute;
        width: 100%;
        height: auto;
        top: 0px;
        left: 0;
        z-index: 0;
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
    }

/*section title*/
.title {
    display: table;
    position: relative;
    width: 100%;
    font: clamp(18px, 2vw, 24px) 'jfm';
    color: var(--navy);
    text-align: center;
    padding: 0px 0px 20px 0px;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    z-index: 1;
}

    .title:before {
        content: "";
        display: block;
        position: absolute;
        width: 200px;
        height: 1px;
        right: 0;
        bottom: 0px;
        left: 0;
        margin: auto;
        background: var(--gray);
    }

    .title:after {
        content: "";
        display: block;
        position: absolute;
        width: 100px;
        height: 5px;
        right: 0;
        bottom: -2px;
        left: 0;
        margin: auto;
        background: var(--purple);
    }

/*section text*/
section > p {
    display: block;
    position: relative;
    width: 80%;
    height: auto;
    font-size: clamp(16px, 2vw, 20px);
    color: var(--gray);
    text-align: center;
    line-height: 30px;
    margin: 20px auto 0px auto;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    direction: rtl;
    z-index: 1;
}

/*home-----------------------*/

.home {
    display: table;
    position:relative;
    width:100%;
    height: auto;
    min-height: 850px;
    margin:0px auto;
}

    .home > i {
        height: 110%;
        background: url(../img/home-bg.svg) bottom center no-repeat;
        background-size: cover;
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        z-index: 0;
    }

    /*home content*/
    .home > .content {
        display: grid;
        grid-template-columns: auto auto;
        grid-auto-rows: max-content;
        justify-content: center;
        align-items: center;
        grid-gap: 20px;
        position: relative;
        width: 80%;
        margin: 150px auto 0px auto;
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        z-index: 2;
        direction: rtl;
    }

        /*home content right section*/
        .home > .content > .right {
            display: flex;
            flex-flow: row wrap;
            justify-content: center;
            align-items: start;
            position: relative;
            width: 100%;
            -webkit-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out;
        }

            .home > .content > .right > i {
                display: inline-grid;
                position: relative;
                width: auto;
                min-width:200px;
                max-width:550px;
                height: 100%;
                -webkit-transition: all 0.25s ease-in-out;
                transition: all 0.25s ease-in-out;
                z-index:10;
            }

                .home > .content > .right > i > img {
                    width: 100%;
                    height: auto;
                    -webkit-transition: all 0.25s ease-in-out;
                    transition: all 0.25s ease-in-out;
                }

        /*home content left section*/
        .home > .content > .left {
            display: grid;
            grid-template-columns: auto auto;
            grid-auto-rows: max-content;
            justify-content: center;
            align-items: center;
            grid-column-gap: 20px;
            grid-row-gap: 30px;
            position: relative;
        }

            /*home content left text*/
            .home > .content > .left > p {
                grid-column: 1/-1;
                font: clamp(24px, 2vw, 32px) 'jfm';
                color: var(--white);
                text-align: right;
            }

            /*home content left img link*/
            .home > .content > .left > a {
                position: relative;
                width: 220px;
                height: 100%;
                -webkit-transition: all 0.25s ease-in-out;
                transition: all 0.25s ease-in-out;
                cursor: pointer;
            }

                .home > .content > .left > a:hover {
                    -webkit-transform: scale(1.05);
                    transform: scale(1.05);
                }

                .home > .content > .left > a > img {
                    width: 100%;
                    height: auto;
                }

        /*home join button*/
    .home > .join {
        display: none;
        flex-flow: row wrap;
        justify-content: center;
        align-items: center;
        grid-gap: 20px;
        margin: 30px auto 0px auto;
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
      
    }

        .home > .join a {
            display: block;
            position: relative;
            padding: 10px 40px;
            border-radius: 40px;
            font-size: clamp(20px, 2vw, 30px);
            color: var(--white);
            text-align: center;
            border: none;
            background: var(--navy);
            -webkit-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out;
            z-index: 20;
        }

                .home > .join a:hover {
                    background: var(--purple);
                }



/*about-----------------------*/

.about {
    display: table;
    height: auto;
    margin: 0px 0px 0px 0px;
}

    .about > i {
        height: 100%;
        background: url(../img/about-bg.svg) bottom center no-repeat;
        background-size: cover;
    }

    /*about content*/
    .about > .content {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        grid-auto-rows: max-content;
        justify-content: center;
        align-items: center;
        grid-gap: 20px;
        position: relative;
        width: 100%;
        margin: 50px 0px;
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        z-index: 20;
        direction: rtl;
    }

        /*about content right and left section*/
        .about > .content > .right, .about > .content > .left {
            display: grid;
            grid-template-columns: 1fr 50px;
            grid-auto-rows: max-content;
            justify-content: center;
            align-items: center;
            grid-column-gap: 20px;
            grid-row-gap: 50px;
            position: relative;
            width: 100%;
            -webkit-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out;
            z-index: 1;
        }

        /*about content left section*/
        .about > .content > .left {
            direction: ltr;
        }

            /*about content text*/
            .about > .content > .right > p, .about > .content > .left > p {
                display: block;
                position: relative;
                font: clamp(16px, 2vw, 18px) 'jfm';
                color: var(--balck);
            }

        .about > .content > .right > p {
            text-align: left;
        }

        .about > .content > .left > p {
            text-align: right;
        }

            .about > .content > .right > p span, .about > .content > .left > p span {
                display: block;
                width: 100%;
                font-size: clamp(14px, 2vw, 16px);
                color: var(--gray);
            }

        .about > .content > .right > p span {
            text-align: left;
        }

        .about > .content > .left > p span {
            text-align: right;
        }


        /*about content icon*/
        .about > .content > .right > i, .about > .content > .left > i {
            display: block;
            position: relative;
            width: 50px;
            height: 50px;
            -webkit-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out;
        }

i.like {
    background: url(../img/like.svg) center center no-repeat;
    background-size: cover;
}

i.sms {
    background: url(../img/sms.svg) center center no-repeat;
    background-size: cover;
}

i.car {
    background: url(../img/car.svg) center center no-repeat;
    background-size: cover;
}

i.gift {
    background: url(../img/gift.svg) center center no-repeat;
    background-size: cover;
}

i.card {
    background: url(../img/card.svg) center center no-repeat;
    background-size: cover;
}

i.discount {
    background: url(../img/discount.svg) center center no-repeat;
    background-size: cover;
}

/*about content center section*/
.about > .content > .center {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    position: relative;
    width: auto;
    height: 400px;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

    .about > .content > .center > img {
        width: auto;
        height: 100%;
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
    }


/*support-----------------------*/

.support {
    display: table;
    position:relative;
    height: auto;
    padding: 140px 25px 0px 25px;
}

    .support > i {
        height: 100%;
        background: url(../img/support-bg.svg) bottom center no-repeat;
        background-size: cover;
    }

    /*support content*/
    .support > .content {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: max-content;
        justify-content: center;
        align-items: center;
        grid-gap: 30px;
        position: relative;
        width: 75%;
        max-width: 1400px;
        margin: 50px auto;
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        direction: rtl;
    }

        /*support content info holader*/
        .support > .content > .info {
            position: relative;
            height: 100%;
            border-radius: 5px;
            background: var(--white);
            padding: 20px 15px;
            box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
            overflow: hidden;
        }


            /*support content info background*/
            .support > .content > .info > .media {
                display: flex;
                justify-content: center;
                align-items: center;
                position: relative;
                width: 150px;
                height: 150px;
                margin: -90px auto 0px auto;
                border-radius: 100%;
                background: var(--white);
                z-index: 2;
            }

                .support > .content > .info > .media img {
                    width: 50%;
                    height: 50%;
                }


            /*support content info title*/
            .support > .content > .info > p {
                position: relative;
                width: calc(100% + 30px);
                height: 140px;
                padding: 20px 20px;
                font-size: clamp(16px, 2vw, 20px);
                color: var(--white);
                text-align: center;
                right: -15px;
                top: -20px;
                background: var(--navy);
                z-index: 1;
            }

            /*support content info data*/
            .support > .content > .info > .data {
                display: grid;
                grid-template-columns: 40px max-content 1fr;
                grid-auto-rows: max-content;
                justify-content: center;
                align-items: center;
                grid-gap: 10px;
                position: relative;
                -webkit-transition: all 0.25s ease-in-out;
                transition: all 0.25s ease-in-out;
                z-index: 1;
            }

                /*support content info data icon*/
                .support > .content > .info > .data > i {
                    position: relative;
                    width: 40px;
                    height: 40px;
                }

                    .support > .content > .info > .data > i.email {
                        background: url(../img/email.svg) center center no-repeat;
                        background-size: contain;
                    }

                    .support > .content > .info > .data > i.call {
                        background: url(../img/call.svg) center center no-repeat;
                        background-size: contain;
                    }

                    .support > .content > .info > .data > i.whatsapp {
                        background: url(../img/whatsapp.svg) center center no-repeat;
                        background-size: contain;
                    }

                /*support content info data info*/
                .support > .content > .info > .data span {
                    position: relative;
                    font-size: 18px;
                    color: var(--balck);
                    padding:0px 0px 0px 0px !important;
                }

                    .support > .content > .info > .data span.full {
                        grid-column: 2/-1;
                        font-size: 18px;
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;
                    }

                /*support content info data hint*/
                .support > .content > .info > .data > .type {
                    position: relative;
                    font-size: 14px;
                    color: var(--blue);
                }


/*fqa-----------------------*/

.fqa {
    display: table;
    position: relative;
    height: auto;
    padding: 140px 25px 0px 25px;
}

    .fqa > i {
        height: 100%;
        background: url(../img/fqa-bg.svg) bottom center no-repeat;
        background-size: cover;
    }

    /*fqa content*/
    .fqa > .content {
        display: grid;
        grid-template-columns: 1fr 400px;
        grid-auto-rows: max-content;
        justify-content: center;
        align-items: start;
        grid-column-gap: 50px;
        grid-row-gap: 50px;
        position: relative;
        width: 75%;
        max-width: 1400px;
        margin: 70px auto;
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        direction: rtl;
    }

/*fqa question*/
.question {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: max-content;
    justify-content: center;
    align-items: center;
    grid-gap: 20px;
    position: relative;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    z-index: 2;
    direction: rtl;
}

.ask {
    font: clamp(14px, 2vw, 18px) 'jfm';
    color: var(--navy);
    text-align: right;
    margin: 0px 10px 0px 0px;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

    .ask i {
        width: 30px;
        height: 30px;
        margin: 0px 0px 0px 10px;
        background: url(../img/question.svg) center center no-repeat;
        background-size: cover;
        float: right;
    }

.answer {
    position: relative;
    font-size: clamp(12px, 2vw, 16px);
    color: var(--navy);
    text-align: right;
    line-height:30px;
    padding: 15px;
    border-radius: 5px;
    background: var(--white);
    box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

    .answer:before {
        content: "";
        display: inline-block;
        position: absolute;
        width: 10px;
        height: 10px;
        top: -5px;
        right: 20px;
        background: var(--blue);
        -webkit-clip-path: polygon(50% 0, 0 50%, 100% 50%);
        clip-path: polygon(50% 0, 0 50%, 100% 50%);
    }

    .answer > span {
        display: inline-block;
        position: relative;
        height: 27px;
        font-size: 14px;
        color: var(--blue);
        text-align: right;
        line-height: 25px;
        padding: 0px 15px 0px 15px;
        margin:0px 5px 0px 0px;
        border: solid 1px rgba(200,200,200,0.6);
        border-radius: 20px;
        background: rgba(230,230,230,0.2);
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        cursor: pointer;
    }

        .answer > span:hover {
            color: var(--white);
            border: solid 1px var(--blue);
            background: var(--blue);
        }


/*fqa vedio*/
.video {
    position: relative;
    width: 100%;
    height: 250px;
    border: none;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

    .video > iframe {
        display: block;
        position: relative;
        width: 100%;
        height: 100%;
        border: 0;
        border: none;
        outline: none;
        border-radius: 5px;
        background: var(--transparent);
        box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        z-index: 1;
    }

    .video > .clock {
        display: block;
        position: absolute;
        width: 80px;
        height: 80px;
        top: -35px;
        right: -35px;
        background: url(../img/clock.svg) center center no-repeat;
        background-size: cover;
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        z-index: 2;
    }

    .video:hover > .clock {
        top: -50px;
        right: -50px;
        opacity: 0.1;
        z-index: 0;
    }

    .video > .tree {
        display: table;
        position: absolute;
        width: 100px;
        height: auto;
        bottom: -40px;
        left: -60px;
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        z-index: 2;
    }

        .video > .tree > img {
            width: 100%;
            height: 100%;
        }

    .video:hover > .tree {
        left: -100px;
        opacity: 0.1;
        z-index: 0;
    }

/*-- media query --*/
@media only screen and (max-width: 1250px) {

    .support > .content {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        max-width: 100%;
    }

        .support > .content > .info:nth-child(3) {
            grid-column: 1/-1;
        }

    .fqa > .content {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 1024px) {

    section > p {
        width: 100%;
        text-align: justify;
        direction: rtl;
        margin: 20px 0px 0px 0px;
    }

    .home {
        min-height: 500px;
    }

    .about > .content {
        grid-template-columns: 1fr auto;
        grid-gap: 0px;
        direction: rtl;
    }

        .about > .content > .right, .about > .content > .left {
            grid-column: 1;
            grid-row-gap: 20px;
            direction: ltr;
            z-index: 2;
        }

        .about > .content > .left {
            margin: 20px 0px 0px 0px;
        }

            .about > .content > .right > p, .about > .content > .left > p {
                text-align: right;
            }

                .about > .content > .right > p span, .about > .content > .left > p span {
                    color: var(--balck);
                    text-align: right;
                }

        .about > .content > .center {
            grid-column: 2/3;
            grid-row: 1/3;
            left: -50px;
            z-index: 1;
        }

    .question {
        grid-template-columns: 1fr;
    }

    .video > .clock {
        width: 150px;
        height: 150px;
        top: -80px;
        right: -80px;
        opacity: 0.1;
        z-index: 0;
    }


    .video > .tree {
        width: 320px;
        bottom: -40px;
        left: -30%;
        z-index: 0;
        opacity: 0.1;
    }
}

@media only screen and (max-width: 900px) {


    .home > .content > .right > i {
        position: absolute;
        width: 500px;
        top: -50px;
        left: 50%;
        opacity: 0.2;
    }

    .home > .content > .left {
        grid-column: span 2;
        grid-template-columns: 1fr;
        justify-content: end;
        grid-row-gap: 20px;
        width: 100%;
    }

        .home > .content > .left > p {
            width: calc(100%);
            text-align: center;
        }

        .home > .content > .left > a {
            justify-self: center;
        }

    .home > .join {
        display: flex;
    }

    .about {
        margin: 50px 0px 0px 0px;
    }



}

@media only screen and (max-width: 768px) {


        .about > .content {
            margin: 30px auto 50px auto;
        }

    .support {
        margin: 0px 0px;
    }

        .support > .content {
            margin: 30px auto 50px auto;
        }

    .fqa {
        margin: 0px 0px 0px 0px;
    }

        .fqa > .content {
            margin: 30px auto 50px auto;
        }
}

@media only screen and (max-width: 600px) {

    section > p {
        width: 100%;
        text-align: justify;
        direction: rtl;
    }

    .about > .content {
        grid-template-columns: 1fr;
    }

        .about > .content > .left {
            margin: 20px 0px 0px 0px;
        }

        .about > .content > .center {
            position: absolute;
            width: auto;
            height: 450px;
            opacity: 0.05;
        }

            .about > .content > .center > img {
                width: auto;
                height: 100%;
            }


    .support > .content {
        grid-template-columns: 1fr;
    }
}


@media only screen and (max-width: 500px) {

    .home > .join {
        flex-flow: column nowrap;
        width:80%;
    }

}

@media only screen and (max-width: 330px) {

    .home > .join {
        width: 100%;
    }

        .home > .join a {
           width:100%;
        }

}

