﻿
html {
    
    direction: rtl;
    scroll-behavior: smooth;
}
    html::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
        border-radius: 10px;
        background-color: #582c4ac9;
    }

    html::-webkit-scrollbar {
        width: 12px;
        background-color: #582c4ac9;
    }

    html::-webkit-scrollbar-thumb {
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
        background-color: #fff;
    }
html, body {
    overflow-x:  !important;
}

* {
    font-family: 'ElMessiri-VariableFont_wght';
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    text-decoration: none !important;
    outline: none;
    text-transform: capitalize;
}

/******************************************************/
header {
    background-color: #380026;
    position: fixed;
    left: 0;
    right: 0;
}

.head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#menu-btn {
    cursor: pointer;
    color: white;
    font-size: 1.6rem;
    display: none;
}

a {
    color: white;
    
}

    a:hover {
        color: wheat;
    }

header nav a {
    
    margin-right:20px;
    line-height: 4rem;
    font-weight: 400 !important;
}

header .DivLogo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header .smScreen {
    display: none;
}

header .fa-times {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

header .DivLogo .fw {
    font-size: 9px;
}

header .DivLogo .bigScreen {
    white-space: nowrap;
}

header .btnLogin {
    color: white;
    border: 1px solid white;
    border-radius: 5px;
    font-size: 1.1rem;
}

header .DivLogo .btnLogin:hover {
    color: white;
}

/****************************************************************/


/*****************************************************************/

.home {
    background-image: url(/images/header.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    margin-top: 80px !important
}

    .home .heading {
        font-size: 7rem;
        color: white;
    }

    .home .title {
        color: white;
        font-weight: 400;
        line-height: 40px;
        font-size: 2.5rem;
    }

    .home .btnDownload {
        color: white;
        border: 1px solid white;
        border-radius: 30px;
        font-size: 1.7rem;
    }

/******************************************************/

.sctionCard .bgCard {
    background: -webkit-gradient(linear, left top, left bottom, from(#380026), to(#582c4ac9));
    background: -o-linear-gradient(top, #380026 0%, #582c4ac9 100%);
    background: linear-gradient(180deg, #380026 0%, #582c4ac9 100%);
    border-radius: 20px;
}

    .sctionCard .bgCard .headtitle {
        font-size: 2.5rem;
    }

    .sctionCard .bgCard .pCard {
        font-size: 2rem !important;
    }

    .sctionCard .bgCard .anchor {
        font-size: 1.5rem !important;
    }

.wordSpace {
    word-spacing: 6px;
}
.sctionCard .bgCard .pCard {
    font-size: 1rem !important;
}

footer {
    background-color: #380026;
}

.footerTitle h5 {
    font-size: 3rem;
}



@media (max-width:768px) {


    #menu-btn {
        display: inline-block;
        -webkit-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }

    nav {
        position: absolute;
        top: 99%;
        left: 0px;
        right: 0px;
        background-color: #582c4af2;
        border-top: 1px solid white;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        -webkit-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }

        nav.active {
            -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }

        nav a, .smScreen {
            display: block !important;
        }

        nav a {
            padding-right: 3rem !important;
        }

    .bigScreen {
        display: none;
    }

    .heading {
        font-size: 5rem !important;
        color: white;
    }

    .bgCard .headtitle {
        font-size: 1.5rem;
    }

    .bgCard .pCard {
        font-size: 1rem !important;
    }

    .bgCard .anchor {
        font-size: 1.3rem !important;
    }

    .wordSpace {
        word-spacing: 0px;
    }

    .footerTitle h5 {
        font-size: 2rem;
    }
}

  

