@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700&display=swap');

/* Start variables */
:root{
        --main1-color: #f1c027;
        --main2-color: #005270;
        --main-font:'Almarai', sans-serif;
}
/* End variables */
/* Start Global Rules */
*{
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
}
a{
        text-decoration: none;
        color: black;
}
ol{
        list-style: none;
}
body{
        font-family: var(--main-font);
        background-color: var(--second-color);
        overflow-x: hidden;
        direction: rtl;
        position: relative;
}
::-webkit-scrollbar {
        width: 1rem;
}

::-webkit-scrollbar-track {
        background-color: #d7d7d759;
        }

::-webkit-scrollbar-thumb {
        background-color: #d08a23;
}

::-webkit-scrollbar-thumb:hover {
        background-color: var(--main1-color);
}
.container{
        margin-left: auto;
        margin-right: auto;
        padding-left: 15px;
        padding-right: 15px;
}
/* Small */
@media (min-width:768px){
        .container {
                width:750px;
        }
}
/* Medium */
@media (min-width:992px){
        .container {
                width:970px;
        }
}
/* Large */
@media (min-width:1200px){
        .container {
                width:1000px;
        }
}
/* End Global Rules */
/* Start Callme */
.callme{
        background-color: black;
        color: white;
        letter-spacing: 1.5px;
        word-spacing: 3px;
        position: relative;
        z-index: 1;
}
.callme .num {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
        padding-bottom: 10px;
}
.callme .num div{
        margin: 5px 5px -1px 0;
        line-height: 1.4;
}
.callme .num a{
        text-decoration: none;
        color: white;
        background-color: var(--main1-color);
        padding: 8px;
        border-radius: 5px;
        margin: 5px;
}
/* End Callme */
/* Start Header */
header .container{
        display: flex;
        justify-content: center;
        align-items: center;
}
header .logo{
        display: flex;
        align-items: center;
        justify-content: center;
        max-height: 80px;
        overflow: hidden;
}
header .logo .logo_box img{
        width: 235px;
        margin-bottom: -8px;
        margin-left: -37px;
}
header .menu_{
        background-color: transparent;
}
header .menu_ .icon{
        display: none;
        width: 30px;
        height: 23px;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
}
header .menu_ .icon span{
        flex-grow: 0;
        width: 100%;
        border-radius: 5px;
        height: 3px;
        background-color:white;
        transition: .5s;
}
header .menu_ .icon:hover span:nth-child(2){
        width: 60%;
}
header .menu_ .menu-box{
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        z-index: 100;
        background-color: black;
        color: white;
        transition: .5s;
}
header .menu_ .menu-box-add{
        right: 0;
}
header .menu_ .menu-box .lis{
        height: 85vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: flex-start;
        margin-top: 1vh;
}
header .menu_ .menu-box  i{
        position: absolute;
        right: 13px;
        top: 8px;
        font-size: 29px;
        padding: 5px 10px;
        transition: 0.2s;
}
header .menu_ .menu-box  i:hover{
        cursor: pointer;
        transform: scale(1.1);
}
header .menu_ .menu-box  h1{
        margin: 5vh 0 11px;
        text-align: center;
        letter-spacing: 2px;
}
header .menu_ .menu-box  hr{
        border: none;
        height: 5px;
        margin: 0 auto;
        border-radius: 5px;
        width: 109px;
        background-color: var(--main1-color);
}
header .menu_ .menu-box span{
        text-align: center;
        width: 100%;
        
        
}
header .menu_ .menu-box a{
        color: white;
        width: 100%;
        display: block;
        position: relative;
        padding: 16px 45px;
        font-weight: bold;
        font-size: 17px;
        letter-spacing: 1px;
        word-spacing: 3px;
        background-color: #090909;
}
header .menu_ .menu-box a:hover{
        background-color: var(--main1-color);
}
header .menu_ .menu-box span a label{
        position: absolute;
        top: 50%;
        transform: translatey(-50%);
        right: 19vh;
        font-size: 17px;
        letter-spacing: 1px;
        word-spacing: 3px;
        font-weight: bold;
}
header .menu_ .menu-box span a label:hover{
        cursor: pointer;
}
@media (max-width:768px){
        header{
                background-color: var(--main2-color);
        }
        header .container{
                justify-content: space-between;
        }
        header .menu_ .icon{
                display: flex;
        }
        header .logo .logo_box img{
                filter: brightness(0) invert(1);
        }
}
/* End Header  */
/* Start Menu  */
.menu{
        background-color: var(--main2-color);
        position: relative;
        
}
.menu .container{
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        position: relative;
}
.menu::after{
        content: '';
        width: 100%;
        height: 4px;
        background-color: var(--main1-color);
        position: absolute;
        bottom: 0;
}
.menu span{
        display: block;
        flex-grow: 1;
        max-width: 200px;
        border-left: 1px solid white;
}
.menu span a{
        padding: 20px 8px;
        display: block;
        font-size: 13px;
        color: white;
        text-align: center;
        font-family: var(--main-font);
}
.menu span a:hover{
        background-color: var(--main1-color);
}
.menu span.detais{
        position: relative;
}
.menu span.detais .show1{
        background-color: var(--main1-color);
}
.menu span.detais:hover .show1{
        background-color: transparent;
}
.menu span.detais .show i{
        margin-right: 7px;
        transition: 0.5s;
}
.menu span .detais-box{
        visibility: hidden;
        position: absolute;
        bottom: -293%;
        z-index: 1;
        width: 100%;
        background-color: var(--main2-color);
}
.menu span.s-detais .detais-box{
        bottom: -215px;
}
.menu span.detais:hover .detais-box{
        visibility: visible;
}
.menu span.detais:hover .show i{
        transform: rotate(180deg);
}
@media (max-width:768px){
        .menu{
                display: none;
        }
}
/* End Menu  */
/* Start Main */
main{
        margin-top: 30px;
        text-align: justify;
}
main .container{
        display: flex;
        justify-content:space-between;
        align-items: flex-start;
}
main .container .right{
        margin-right: 10px;
        width: 25%;
}
main .container .left{
        padding: 20px 10px 0;
        max-width: 75%;
        flex-grow: 1;
}
main .container .right .first{
        border: 1px solid var(--main2-color);
        margin-bottom: 30px;
}
main .container .right h1{
        font-size: 17px;
        background-color: var(--main2-color);
        padding: 9px 5px;
        color: white;
        margin: 0;
        word-spacing: 3px;
        position: relative;
}
main .container .right h3{
        font-size: 15px;
        color: #555;
        word-spacing: 2px;
        padding: 5px 10px;
        line-height: 1.3;
}
main .container .right h2,main .container .right p{
        font-size: 14px;
        line-height: 1.6;
        color: #333;
        font-weight: 500;
        letter-spacing: 1px;
        word-spacing: 2px;
        padding: 5px 10px;
}
main .container .right span{
        color: var(--main1-color);
        font-weight: bold;
}
main .container .left .con-box{
        margin-bottom: 40px;
}
main .container .left h1{
        margin: 0;
        font-size: 24px;
        color: #555;
        margin-bottom: 6px;
        word-spacing: 2px;
}
main .container .left hr{
        border: none;
        width: 84%;
        height: 2px;
        border-radius: 4px;
        background-color: var(--main2-color);
}
main .container .left h3{
        margin-top: 25px;
        word-spacing: 3px;
        letter-spacing: 1px;
        font-size: 17px;
        line-height: 2;
        color: #c3801d;
}
main .container .left h2{
        font-size: 15px;
        border-bottom: 1px solid;
        max-width: 99px;
        padding-bottom: 4px;
        font-weight: 600;
        opacity: .8;
}
main .container .left p
,main .container .left li{
        margin: 14px 0;
        line-height: 1.8;
        word-spacing: 3px;
        letter-spacing: .5px;
        font-size: 14px;
}
main .container .left a{
        color: var(--main1-color);
        font-weight: bold;
        letter-spacing: 1px;
        line-height: 1.6;
}
main .container .left a#download,main .container .right .three a{
        background-color: var(--main1-color);
        padding: 10px 5px;
        margin-top: 14px;
        display: block;
        border-radius: 15px;
        text-align: center;
        color: white;
        width: 250px;
        transition: .5s;
}
main .container .left a#download:hover,main .container .right .three a:hover{
        transform: translateX(-10px);
}
main .container .left hr{
        width: 40%;
        background-color: #555;
        height: 4px;
        border: none;
        opacity: .9;
}
main .container .left #socialSharing{
        padding-top: 20px;
}
main .container .left #socialSharing h3{
        color: #555;
        font-weight: 500;
        margin-bottom: 15px;
}
main .container .left #socialSharing i{
        color: var(--main2-color);
        font-size: 25px;
        opacity: 0.9;
        padding: 10px;
        transition: .5s;
}
main .container .left #socialSharing i:hover{
        opacity: .5;
        transform: translateY(-5px)scale(1.2);
}
main .container .left .next{
        word-spacing: 2.5px;
        letter-spacing: .4px;
        font-size: 18px;
        border: solid 3px var(--main1-color);
        padding: 20px;
        color: var(--main2-color);
        text-align: center;
        background-color: #f4a02412;
        margin-top: 52px;
        border-radius: 3px;
}
main .container .left .next span{
        color: red;
        letter-spacing: 1.5px;
        font-size: 17px;
        font-weight: bold;
        font-family: sans-serif;
        margin-right: 6px;
}
main .container .right .second{
        border: 1px solid red;
        background-color: #edd3d352;
        border-radius: 1px;
        margin-bottom: 20px;
        margin-top: 30px;
}
main .container .right .second h1{
        margin-bottom: 15px;
}
main .container .right .second h3{
        color: var(--main2-color);
}
main .container .right .second h2{
        color: red;
        font-weight: bold;
        letter-spacing: 2px;
        font-family: sans-serif;
}

@media (max-width:768px){
        main .container{
                flex-wrap: wrap;
        }
        main .container .right,main .container .left{
                width: 100%;
                max-width: none;
        }
}
/* End Main */
/* Start footer  */
footer {
        margin-top: 50px;
        background-color: var(--main2-color);
        padding: 30px 0;
}
.fo{
        margin-top: 40px;
}
footer .box{
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
}
footer .box .fo-box{
        max-width: 25%;
        padding: 5px 10px;
        min-width: 200px;
}
@media (max-width:768px){
        footer .box .fo-box{
                max-width: none;
        }
}
footer .box .fo-box h1{
        font-size: 18px;
        color: white;
        word-spacing: 3px;
        letter-spacing: .4px;
        line-height: 1.6;
        margin: 0 0 8px;
        opacity: .9;
}
footer .box .fo-box hr{
        border: none;
        height: 2px;
        background-color: white;
        border-radius: 5px;
        opacity: .9;
        margin-bottom: 9px;
}
footer .box .fo-box p,footer .box .fo-box ol li a{
        color: white;
        font-size: 13px;
        line-height: 1.6;
        word-spacing: 2px;
        letter-spacing: 1px;
        font-weight: 100;
}
footer .box .fo-box a{
        border-bottom: 1px solid;
        padding-bottom: 2px;
        line-height: 2 !important;
}
footer .box .fo-box a:hover{
        color: var(--main1-color);
}
footer .box .fo-box ol{
        padding-right: 5px;
}
/* End footer  */
/* Start Designer */
.topfooter{
        background-color: var(--main1-color);
}
.topfooter .container{
        display: flex;
        padding: 10px;
        justify-content: space-between;
        
}
.topfooter .container span{
        font-size: 12px;
        color: white;
        letter-spacing: 1.6px;
        word-spacing: 2px;
}
.topfooter .container span:first-child{
        order: 2;
        flex-grow: 1;
        text-align: center;
}
.topfooter .container span:last-child{
        order: 1;
        padding-left: 10px;
}
.topfooter .container span a{
        color:white;
        text-decoration: none;
        font-weight: bold;
        transition: .5s;
}
.topfooter .container span a:hover{
        color: var(--main2-color);
}
@media (max-width:768px){
        .topfooter .container{
                flex-direction: column;
                justify-content: center;
                align-items: center;
                line-height: 1.8;
        }
        .topfooter .container span:first-child{
                order: 1;
        }
}
/*End Designer */
/* the dialog */
.parent_{
        filter: blur(5px);
        transition: 1px;
}
.p-dia_{
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
}
.dialog{
        width: 500px;
        max-width: 90%;
        position: fixed;
        top: 50%;
        border-radius: 5px;
        right: 50%;
        transform: translate(50%,-50%);
        background-color: white;
        border: 1px #5555 solid;
        padding: 20px;
        text-align: center;
        z-index: 10;
        transition: .5s;
}
.close_dialog{
        visibility: hidden;
        top: -100%;
        transform: translate(50%,-50%)scale(0.1);
}
.dialog .close{
        position: absolute;
        right: -12px;
        top: -14px;
        width: 28px;
        border: solid 1px #3333;
        height: 28px;
        border-radius: 50%;
        background-color: white;
        cursor: pointer;
        
}
.dialog .close i{
        transform: translate(6%,22%);
        font-size: 18px;
}
.dialog .img{
        max-height: 200px;
        height: 100%;
        overflow: hidden;
}
.dialog .img img{
        width: 100%;
        transform: translateY(-51px);
}
.dialog h1{
        font-size: 13px;
        line-height: 1.7;
        font-weight: 600;
        word-spacing: 2.2px;
        letter-spacing: 1.1px;
}
.dialog input{
        width: 70%;
        height: 42px;
        padding: 5px;
        border: solid #3333 1px;
        background-color: #f0f1f1;
        outline: none;
        letter-spacing: 1.5px;
        font-size: 14px;
        word-spacing: 1.5px;
}
.dialog button{
        width: 29%;
        height: 42px;
        padding: 5px;
        border: none;
        background-color: var(--main1-color);
        color: white;
        letter-spacing: 1.4px;
        font-weight: bold;
        font-size: 13px;
        cursor: pointer;
}
.t_t{
        display: none;
        padding: 7px 10px 5px;
        letter-spacing: 1px;
        word-spacing: 4px;
        margin-top: -21px;
        margin-bottom: 20px;
}
.t_t#seccess{
        color: #3bda57;
        border-bottom: #3bda57 solid 1px;
        background-color: #3bda571f;
}
.t_t#problem{
        color: red;
        border-bottom: solid 1px red;
        background-color: #ff000014;
}
@media (max-width:324px){
        .dialog input{
                width: 67%;
        }
}
/* End dialog  */
/* Start whatssap */
.whatssap{
        position: fixed;
        bottom: 10px;
        right: 10px;
        padding: 0;
        font-size: 41px;
}
.whatssap_{
       bottom: 0;
}
.whatssap .content{
        background-color: #3bda57;
        border-radius: 50%;
        margin-right: 10px;
        margin-bottom: 8px;
        animation:2s whatssap infinite;
}
.whatssap .content:hover{
        animation-play-state: paused;
}
.whatssap .content a{
        display: block;
        color: white;
        padding: 6px 12px;
}
@keyframes whatssap {
        0%,100%{
                box-shadow: 0 0 0px 0 #2eb145;
        }
        50%{
                box-shadow: 0 0 10px 0#2eb145;
        }

}
/* End .whatssap  */

