/* font link */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

:root{
    --dark-color: #343c44;
    --dark-gold: #7f746b;
    --gold-color: #c5a98d;
    --white-color: #ffffff;
    --border-color: #949c9c;
    --text-color: #8e949c;
    --arabic-font:  "Cairo", serif;
    --neutral-color: #f5f5f5;
    /* --linear-background: linear-gradient(86deg, #c5a98d 0%, #7f746b 100%); */
    --linear-background: linear-gradient(90deg, #d8b78e 0%, #a78366 100%);
    --linear-hover-background: linear-gradient(90deg, #a78366 0%, #d8b78e 100%);
    --transtion: 0.56s ease;
}
*{
    font-family: var(--arabic-font);
}
html{
    direction: rtl;
}
a{
    text-decoration: none !important;
}
ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
/* btn top */
.btnUpTop {
    position: fixed;
    left: -50px;
    bottom: -50px;
    z-index: 99;
    background: var(--linear-background);
    color: var(--white-color);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 0;
    transition: var(--transtion);
    z-index: 1;
    animation: btntopicon 1.8s ease-in-out infinite alternate-reverse both;
}
.btnUpTop:before, .btnUpTop:after {
    position: absolute;
    content: "";
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--linear-background);
    -webkit-transition: var(--transtion);
    transition: var(--transtion);
}
.btnUpTop:after{
    opacity: 0;
    visibility: hidden;
    background: var(--linear-hover-background);
}
.btnUpTop:hover::after{
    opacity: 1;
    visibility: visible;
}
.btnUpTop:hover::before{
    opacity: 0;
    visibility: hidden;
}
.btnUpTop.show {
    bottom: 15px;
    left: 15px;
}
/* Whatsapp icon */
.whatsaap-icon{
    position: fixed;
    bottom: 15px;
    right: 15px;
    display: inline-block;
    width: 65px;
    height: 65px;
    padding: 10px;
    z-index: 99;
    animation: btntopicon 2s ease-in-out infinite alternate-reverse both;
}

.whatsaap-icon img{
    width: 100%;
}
/*---------Btn for site----------*/
.btn-default {
    outline: none;
    background: var(--dark-color);
    color: var(--white-color);
    text-transform: capitalize;
    border: 1px solid var(--gold-color);
    font-size: 18px;
    font-weight: 400;
    display: inline-block;
    padding: 15px 30px;
    overflow: hidden;
    -webkit-transition: var(--transtion);
    transition: var(--transtion);
    position: relative;
}
.btn-default span {
    position: relative;
    z-index: 2;
}
.btn-default:before, .btn-default:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--linear-background);
    -webkit-transition: var(--transtion);
    transition: var(--transtion);
}
.btn-default:after{
    opacity: 0;
    visibility: hidden;
    background: var(--linear-hover-background);
}
.btn-default:hover::after{
    opacity: 1;
    visibility: visible;
}
.btn-default:hover::before{
    opacity: 0;
    visibility: hidden;
}


.btn-default:hover {
    background: var(--dark-color);
    color: var(--white-color);
}
/* container */
.container{
    max-width: 1500px !important;
}

.discription{
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transtion);
    color: var(--gold-color);
    line-height: 1.875em;
}



/*----------------------*/
/*--------Top Bar-------*/
/*----------------------*/
#topbar{
    padding: 0 0.4rem;
    background: var(--dark-color);
    align-content: center;
    overflow: hidden;
    position: relative;
}
#topbar .container{
    max-width: 1500px;
    padding: 0 1rem;
}
#topbar h2{
    color: var(--gold-color);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin: 0;
    /* animation: animation-scaleLeftRight 2s ease forwards; */
    /* animation-delay: 0.1s; */
    /* opacity: 0; */
    margin-left: 5px;
}
#topbar h2 span{
    font-weight: 400;
    font-size: 12px;
}
#topbar h2 span, #topbar h2 b{
    margin-left: 0.3rem;
    color: var(--neutral-color);
}

#topbar ul{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: end;
    animation: animation-scaleRightLeft 2s ease forwards;
    /* opacity: 0; */
    animation-delay: 0.3s;
    flex-wrap: wrap;
    gap: 1rem;
}

#topbar ul li a{
    text-decoration: none !important;
    color: var(--neutral-color);
    transition: all 0.5s ease-in-out 0s;
    font-size: 13px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
#topbar ul li a:hover{
    color: var(--gold-color);
    /* font-weight: 800; */
}
#topbar ul li a i{
    font-size: 13px;
    transition: 0.5s;
    color: var(--gold-color);
}
#topbar ul.social-media li a i{
    color: var(--neutral-color);
    font-size: 16px;
}
#topbar ul.social-media li a i:hover{
    color: var(--gold-color);

}
.left-box{
    position: relative;
    padding: 17px 0px;
    z-index: 1;
}
#topbar::before {
    position: absolute;
    content: '';
    right: 0px;
    top: 0px;
    bottom: 0px;
    z-index: -1;
    width: 100%;
    /* background: rgb(243, 184, 21); */
    /* background: linear-gradient(to right, var(--secondry-color) 0%, var(--primary-color) 100%); */
}








/*-----------------------*/
/*--------navbar---------*/
/*-----------------------*/
#navbar{
    background: var(--neutral-color);
    padding: 0 1rem 0 0;
    text-align: right;
    /* -webkit-box-shadow: 0 0 7.5px -2px rgba(1, 5, 13, 0.24);
    -moz-box-shadow: 0 0 7.5px -2px rgba(1, 5, 13, 0.24);
    box-shadow: 0 0 7.5px -2px #01050d3d; */
    -webkit-box-shadow: -4.5px 0 14.5px -2.5px rgba(121, 144, 191, 0.24);
    -moz-box-shadow: -4.5px 0 14.5px -2.5px rgba(121, 144, 191, 0.24);
    box-shadow: -4.5px 0 14.5px -2.5px rgba(121, 144, 191, 0.24);
    /* background: var(--gold-color); */
}
#logo{
    padding: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
#logo img{
    width: 235px;
}
#nav-item{
    text-transform: capitalize;
    color: var(--dark-color);
    font-size: 14px;
    font-weight: 400;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    padding: 43px 1rem;
    line-height: 30px;
    text-shadow: 0 0 1px currentColor;
    color: #12062c;
    position: relative;
}

#nav-item:hover{
    color: var(--gold-color);
    background: var(--dark-color);
}
#dropdown-menu{
    top: 100%;
    border: 0;
    border-radius: 0;
    padding: 0;
    min-width: 15rem;
    -webkit-box-shadow: 0 0 10px -3px #dddddd;
    -moz-box-shadow: 0 0 10px -3px #dddddd;
    box-shadow: 0 0 10px -3px #dddddd;
}
#dropdown-item{
    padding: 0.6rem 1rem;
    text-transform: capitalize;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    
    text-shadow: 0 0 1px currentColor;
    z-index: 1;
    color: #12062c;
    position: relative;
    border-bottom: 1px solid #dddddd6b;
}
#dropdown-item::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background-image: linear-gradient(55deg, var(--dark-color, --dark-color), var(--gold-color, --gold-color), var(--dark-color, --dark-color));
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}
#dropdown-item:hover{
    color: var(--white-color);
}
#dropdown-item:hover::before{
    opacity: 1;
    visibility: visible;
}
#nav-item.search-icon{
    position: relative;
}
#nav-item.search-icon::before{
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 75%;
    background: #e1dbec;
}

.btn-default.free-trial{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 15px 60px;
    max-width: 500px;
    width: 300px;
}

#btn-nav-toggler{
    border: 0;
    color: var(--dark-color);
}





/*--------------------*/
/*--------Home--------*/
/*--------------------*/

.FullScreen-home{
    width: 100%;
    padding: 80px 0;
    position: relative;
    min-height: 88vh;
    max-height: 88vh;
    overflow: hidden;
    transition: var(--transtion);
    align-content: center;
    text-align: right;
    height: 100%;
}
.FullScreen-home .container{
    position: relative;
    z-index: 9;
}
.FullScreen-home h2 {
    color: var(--white-color);
    font-size: 60px;
    font-weight: 800;
    transition: var(--transtion);
    text-transform: uppercase;
}
.FullScreen-home h2 span {
    margin-bottom: 2rem;
    color: transparent;
    background: var(--linear-background);
    -webkit-background-clip: text;
}
.FullScreenVideo {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 7;
    height: 100%;
}
.FullScreenVideo::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 105%;
    z-index: 8;
    background: rgba(0, 0, 0, 0.719);
}

.FullScreen-home video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.loop-scroll {
    position: absolute;
    bottom: 0;
    left: 50%;
    background: #ffffff56;
    transform: translateX(-50%);
    height: 64px;
    z-index: 30;
    width: 1px;
}
.loop-scroll:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    background: #fff;
    border-radius: 10%;
    height: 64px;
    width: 2px;
    transform: translateX(-25%);
    animation: loop-scroll 3s ease-in infinite;
}

@keyframes loop-scroll {
    0% {
        top: 0;
        height: 0%;
    }
    50% {
        top: 0;
        height: 100%;
    }
    51% {
        top: 1%;
        height: 63px;
    }
    100% {
        top: 64px;
        height: 0;
    }
}
.banner-shape1 {
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
    bottom: -3px;
    z-index: 8;
}
.banner-shape1 svg {
    width: calc(139% + 1.3px);
    height: 500px;
    display: block;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}


/*------------------*/
/*-----About Us-----*/
/*------------------*/
.about{
    position: relative;
    padding: 70px 0;
    position: relative;
    text-align: right;
}
.title-about-sup{
    font-size: 20px;
    font-weight: 700;
    background: var(--linear-background);
    color: var(--white-color);
    padding: 10px;
    border-radius: 8px;
    margin: 0.7rem 0;
    display: inline-block;
}
.about .info{
    padding: 10px;
}
.about .info h2{
    font-family: var(--arabic-font);
    font-size: 25px;
    font-weight: 800;
    background: var(--linear-background);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about .info p{
    font-family: var(--arabic-font);
    font-size: 15px;
    line-height: 26px;
    color: var(--text-color);
    font-weight: 400;
    margin-bottom: 1rem;
}
.about .info ul{
    list-style-type: none;
    margin: 0;
    padding: 10px;
}
.about .info ul li{
    padding-bottom: calc(10px / 2);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.about .info ul li i{
    color: var(--gold-color);
    font-size: 1rem;
    font-weight: 300;
}
.about .info ul li span{
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
}
.about .imge-box{
    position: relative;
    height: 470px;
    z-index: 1;
}
.about .imge-box .exe-box{
    background: var(--linear-background);
    padding: 45px 30px;
    border-radius: 0 0 8px 8px;
    text-align: center;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    -webkit-box-shadow: 0 50px 100px 0 rgba(64, 1, 4, .1), 0 -6px 0 0 rgba(248, 99, 107, .004);
    box-shadow: 0 50px 100px 0 rgba(64, 1, 4, .1), 0 -6px 0 0 rgba(248, 99, 107, .004);
}
.about .imge-box .exe-box h3{
    color: var(--dark-color);
    display: block;
    font-size: 62px;
    line-height: 42px;
    font-weight: 800;
    margin: 0 0 1rem;
}
.about .imge-box .exe-box span{
    color: var(--neutral-color);
    display: block;
    font-size: 15px;
    font-family: var(--arabic-font);
    font-weight: 700;
    line-height: 20px;
}
.about .imge-box .front{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 290px;
}
.about .imge-box .front img{
    width: 100%;
    height: 100%;
}
.about .imge-box .back{
    width: 60%;
    height: 370px;
    border-radius: 2px;
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
}
.about .imge-box .back img{
    width: 100%;
    height: 100%;
}
@media (max-width: 991px) {
    .about{
        padding: 0px 17px;
    }
    .about .imge-box .front{
        width: 60%;
    }
    .about .imge-box .back{
        width: 65%;
    }
}

@media (max-width: 576px) {
    .about .imge-box .front{
        width: 70%;
    }
    .about .imge-box .back{
        width: 70%;
    }
}
.animated-circle.right {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    animation: circle 5s linear infinite;
    -webkit-animation: circle 5s linear infinite;
    background: linear-gradient(to bottom, rgba(217, 10, 44, 0.1), var(--gold-color));
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.animated-circle.right::after {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    background-color: #001d21;
}
@keyframes circle {
    
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}












/*-------------------*/
/*---testmonial------*/
/*-------------------*/
#testmonial{
    text-align: right;
    position: relative;
    padding: 70px 0 20px;
}
.img-testmonial{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    background: url(../img/dot.png)repeat;
}
#testmonial .container , .clint-sec .container{
    max-width: 1000px !important;
}
#mySwiper-searchwithContry , #mySwiper-clint {
    padding-top: 5rem;
}
#testmonial h4.head {
    color: var(--gold-color);
    font-weight: bold;
    text-align: center;
}
#card-testmonial{
    border: 0;
    border-radius: 8px;
    padding: 0 0.5rem 1rem;
    background: var(--white-color);
    margin-bottom: 1rem;
    -webkit-box-shadow: 0 0 14.5px -2.5px rgba(121, 144, 191, 0.24);
    -moz-box-shadow: 0 0 14.5px -2.5px rgba(121, 144, 191, 0.24);
    box-shadow: 0 0 14.5px -2.5px rgba(121, 144, 191, 0.24);
}
#card-testmonial .top-img{
    margin: auto;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    margin-top: -50px;
    padding: 0;
    border: 8px solid var(--white-color);

    border-radius: 8px;
    background: var(--white-color);
    -webkit-box-shadow: 0 0 14.5px -2.5px rgba(121, 144, 191, 0.24);
    -moz-box-shadow: 0 0 14.5px -2.5px rgba(121, 144, 191, 0.24);
    box-shadow: 0 0 14.5px -2.5px rgba(121, 144, 191, 0.24);
}
#card-testmonial .top-img img{
    border-radius: 8px;
    width: 100%;
    display: inline-block;
}
.title-testmonial-name , .title-section-testmonial , .title-section-aqarat{
    font-size: 18px;
    transition: var(--transtion);
    color: var(--dark-color);
    /* font-weight: 700; */
    margin-bottom: 0.8rem;
}
.title-section-testmonial , .title-section-aqarat{
    font-size: 30px;
    /* font-weight: 700; */
    color: transparent;
    background: var(--linear-background);
    -webkit-background-clip: text;
    text-align: center;
}
.discription.review-clint{
    margin: 0;
}
#btns-swip-searchwith-contry{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 300px;
    width: 100%;
    min-height: 60px;
    gap: 1rem;
    margin: auto;
}
#btns-swip-searchwith-contry .swiper-button-prev{
    position: relative;
    top: auto;
    right: auto;
    background: var(--linear-background);
    width: 30px;
    height: 30px;
    border-radius: 5px;
}
#btns-swip-searchwith-contry .swiper-button-next{
    position: relative;
    top: auto;
    left: auto;
    background: var(--linear-background);
    width: 30px;
    height: 30px;
    border-radius: 5px;
}
#btns-swip-searchwith-contry .swiper-button-prev::after,
#btns-swip-searchwith-contry .swiper-button-next::after{
    font-size: 12px;
    font-weight: 700;
    color: var(--white-color);
}


/*-----------------------*/
/*-------contact-us------*/
/*-----------------------*/
.contact-us{
    position: relative;
    padding: 60px 0 60px;
    transition: var(--transtion);
    background: url(../img/service-bg-pattern2.png);
    text-align: right !important;
}

.contact-us .container{
    max-width: 1250px !important;
}
#card-contact{
    padding: 20px;
    overflow: hidden;
    border-radius: 0 25px 25px 25px;
    position: relative;
    background: transparent;
    border: 0;
    box-shadow: 0px 20px 40px 0px rgb(0 0 0 / 4%);
    text-shadow: 0px 20px 40px rgb(0 0 0 / 4%);
    margin-bottom: 2rem;
    background: var(--white-color);
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#input-contact , #textarea-contact{
    border: none;
    border: 1px solid #f3f4f6;
    text-align: right;
    font-size: 15px;
    color: var(--dark-color);
    font-weight: 500;
    box-shadow: none !important;
    margin-bottom: 20px;
    transition: var(--transtion);
    line-height: normal;
    padding: 0px 15px 0 25px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
}
#input-contact{
    height: 55px;
}
#textarea-contact{
    border-radius: 20px;
    padding: 12px 15px;
}
#input-contact::placeholder , #textarea-contact::placeholder{
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-color);
}
#input-contact:focus , #textarea-contact:focus{
    border-color: var(--gold-color);
}

#card-contact-info{
    position: relative;
    background: var(--dark-color);
    padding: 30px 5px 40px 4px;
    border-radius: 25px 25px 0px 25px;
    margin: 40px 0px 0px 0px;
    transition: var(--transtion);
    height: auto;
}
#card-contact-info .battern-about{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 25px 25px 0px 25px;
    background-image: url(../img/map.png);
    background-position: top center;
    opacity: 1;
}
#card-contact-info .title-section{
    font-size: 18px;
    line-height: 22px;
    color: var(--white-color);
    font-weight: 400;
}
#card-contact-info .discription{
    display: inline-block;
    margin-bottom: 0.5rem;
}
.icon-contact {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--linear-background);
    color: var(--white-color);
    transition: var(--transtion);
    font-size: 20px;
    margin-left: 0.7rem;
}
.rh-contact-info{
    margin: 20px 0px 0px 0px;
    padding: 30px 0px 0px 3px;
    border-top: 1px solid #FFFFFF30;
}
.ul-icon-contact{
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: start;
}
.ul-icon-contact a{
    text-align: center;
    list-style: none;
    display: inline-block;
    position: relative;
    z-index: 20;
    width: 40px;
    margin-right: 10px;
    line-height: 40px;
    height: 40px;
    transition: var(--transtion);
    color: var(--dark-color) !important;
    border-radius: 50px;
    background-color: var(--white-color);
}
.ul-icon-contact a:hover{
    background: var(--gold-color);
    color: var(--white-color) !important;
}


/*-----------------*/
/*---Error_Page----*/
/*-----------------*/
.error-area {
    height: 100vh;
    padding: 100px 0;
    align-content: center;
}
.error-area .container{
    max-width: 1320px;
}
.error-content {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}
.error-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}
.error-content h3 {
    font-size: 35px;
    margin-top: 10px;
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.4;
    font-family: 'Dosis', sans-serif;
    margin: 0;
}
.error-content p {
    max-width: 520px;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    margin: 0 auto 20px;
    color: #5f5f5f;
    letter-spacing: 0.2px;
    font-family: 'Catamaran', sans-serif;
    /* font-family: 'Dosis', sans-serif; */
}
.error-content #btn-error {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 5px;
    text-align: center;
    margin-top: 5px;
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 30px;
    border: 1px solid #ec2529;
    background-color: #ec2529;
    -webkit-transition: .6s;
    transition: .6s;
    margin-right: 0;
    outline: 0 !important;
}
.error-content #btn-error:hover {
    color: #ec2529;
    background-color: #ffffff;
    text-decoration: none;
}



#footer{
    position: relative;
    padding: 0 0 50px;
    text-align: right;
    background: var(--dark-color);
}
#footer .container{
    max-width: 1150px !important;
}
#footer-logo{
    text-align: center;
    padding: 10px;
    border: 0;
    border-radius: 0 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--linear-background);
    height: 100%;
}
#footer-logo img{
    width: 200px;
}
#card-contact-info-footer{
    border: 0;
    background: var(--neutral-color);
    padding: 25px 30px 30px;
    border-radius: 0 0 10px 10px;
    display: flex;
    width: 100%;
}
.ul-contact-info-footer{
    position: relative;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: start;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: start;
}
#list-item-footer-cont{
    display: flex;
    align-items: center;
    justify-content: start;
    border: 0;
    flex-direction: row;
    gap: 1.2rem;
    background: transparent;
}
.img-icon-foot{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--linear-background);
    color: var(--white-color);
    transition: var(--transtion);
    font-size: 20px;
}

.data-info-foot .title-section {
    font-size: 15px;
    line-height: 22px;
    color: transparent;
    background: var(--gold-color);
    -webkit-background-clip: text;
    margin-bottom: 0.2rem;
    font-weight: 400;
}
.data-info-foot .discription {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-color);
}
.title-section.title-footer {
    font-size: 18px;
    line-height: 22px;
    transition: var(--transtion);
    color: var(--white-color);
    margin-top: 3rem;
    font-weight: 700;
}
.ul-working-hour li{
    padding: 1rem 0;
    gap: 0.3rem;
    transition: var(--transtion);
    border-bottom: 1px solid var(--dark-gold);
}
.ul-working-hour li:hover{
    border-color: var(--gold-color);
}
.ul-working-hour li:hover .discription{
    color: var(--white-color);
}
.ul-footer-items-links .discription{
    font-size: 15px;
    line-height: 22px;
    transition: var(--transtion);
    color: var(--white-color);
    /* font-weight: 700; */
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--text-color);
}
.ul-footer-items-links .discription:hover{
    color: var(--gold-color);
    padding-right: 0.5rem;
}
.form-footer{
    position: relative;
    padding: 0;
    background: #ffffff1a;
    border-radius: 5px;
    height: 56px;
}
#input-footer{
    background: transparent;
    padding: 0.5rem 1rem 0.5rem 2.7rem;
    border: 0;
    box-shadow: none !important;
    height: 55px;
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    transition: var(--transtion);
    color: var(--white-color);
}
#input-footer::placeholder{
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    transition: var(--transtion);
    color: var(--white-color);
}
#btn-footer{
    position: absolute;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
    color: var(--white-color);
    transition: var(--transtion);
    font-size: 20px;
    border: 0;
    border-radius: 0;
    box-shadow: none !important;
}
#btn-footer:hover{
    color: var(--gold-color);
}
.hr-footer{
    background: var(--dark-gold);
    height: 1px;
    width: 99%;
    margin: auto;
    margin-top: 1rem;
}

.ul-icon-contact{
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: start;
}
.ul-icon-contact a{
    text-align: center;
    list-style: none;
    display: inline-block;
    position: relative;
    width: 40px;
    margin-right: 10px;
    line-height: 40px;
    height: 40px;
    transition: var(--transtion);
    color: var(--dark-color) !important;
    border-radius: 50px;
    background: var(--white-color);
}
.ul-icon-contact a:hover{
    background: var(--linear-background);
    color: var(--white-color) !important;
}
#design_by{
    color: var(--white-color);
    transition: var(--transtion);
}
#design_by:hover{
    color: var(--gold-color);
}

















/*--------------------------*/
/*-------سكشن العقارات-----*/
/*--------------------------*/
.egar-aqarat{
    padding: 30px 0;
    position: relative;
}
.egar-aqarat .box{
    margin-bottom: 30px;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e4e4e4;
}
.egar-aqarat .box .images-group{
    position: relative;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    width: 100%;
    color: #161e2d;
}
.egar-aqarat .box .images-group .images-style{
    position: relative;
    overflow: hidden;
}
.egar-aqarat .box .images-group .images-style img{
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    height: auto;
    transform: scale(1);
    vertical-align: middle;
    transition: all ease-in-out 0.3s;
}
.egar-aqarat .box:hover .images-style img{
    transform: scale(1.1);
} 
.egar-aqarat .box .images-group .top{
    left: 16px;
    right: 16px;
    top: 16px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    align-items: flex-start;
    z-index: 1;
    gap: 8px;
    flex-wrap: wrap;
}
.egar-aqarat .box .images-group .top .flag-tag {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.8px;
    text-align: center;
    display: inline-block;
    padding: 4px 16px;
    border-radius: 8px;
    color: #ffffff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    background:var(--linear-background);
    transition: all 0.3s ease;
    cursor: pointer;
}
.egar-aqarat .box .images-group .bottom{
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 12px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #ffffff;
}
.egar-aqarat .box .images-group:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 69.05%, rgba(0, 0, 0, 0.7) 100%);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.egar-aqarat .box .archive-bottom{
    padding: 20px;
}
.egar-aqarat .box .archive-bottom .content-top {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e4e4e4;
}
.egar-aqarat .box .archive-bottom .content-top h6 {
    text-transform: capitalize;
    color: var(--gold-color);
    font-size: 1rem;
    font-family: var(--arabic-font);
    font-weight: 500;
    text-align: right;
}
.egar-aqarat .box .archive-bottom .content-top h6 a {
    transition: all 0.3s ease;
    text-transform: capitalize;
    color: var(--gold-color);
    font-size: 16px;
    font-family: var(--arabic-font);
    font-weight: 500;
}
.egar-aqarat .box .archive-bottom .content-top h6:hover a {
    color: var(--dark-gold);
}
.egar-aqarat .box .archive-bottom .content-top .meta-list {
    margin-top: 12px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.egar-aqarat .box .archive-bottom .content-top .meta-list .item {
    display: flex;
    align-items: center;
    gap: 4px;
}
.egar-aqarat .box .archive-bottom .content-top .meta-list .item i {
    font-size: 16px;
    color: var(--dark-color);
}
.egar-aqarat .box .archive-bottom .content-top .meta-list .item .text-variant-1{
    color: var(--text-color);
    font-size: 12px;
    font-weight: 600;
}
.egar-aqarat .box .archive-bottom .content-top .meta-list .item .num{
    color: var(--gold-color);
}
.egar-aqarat .box .archive-bottom .content-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.egar-aqarat .box .archive-bottom .content-bottom .avatar.round {
    border-radius: 50%;
    overflow: hidden;
    width: 60px;
    height: 60px;
    padding: 5px;
    border: 1px solid #e4e4e4;
}
.egar-aqarat .box .archive-bottom .content-bottom .avatar img {
    min-width: 100%;
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}
.egar-aqarat .box .archive-bottom .content-bottom span{
    font-weight: 400;
    font-size: 1rem;
    color: var(--dark-gold);
}
.egar-aqarat .box .archive-bottom .content-bottom h6{
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
}

/*-----------------------*/
/*------شركاءنا-----*/
/*-----------------------*/

#brands{
    padding: 40px 0;
    position: relative;
    border-bottom: 1px solid rgba(0, 9, 128, 0.05);
    border-top: 1px solid rgba(0, 9, 128, 0.05);
}
.mySwiper-brandsbrandsLeft{
    direction: ltr;
}
#swiper-sweip-brands{
    padding: 2rem 0.5rem;
}
#brands .mySwiper-brands::before, #brands .mySwiper-brands::after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(to left , #00000000 , #ffffff );
    z-index: 2;
}
#brands .mySwiper-brands::after{
    background: linear-gradient(to right , #00000000 , #ffffff);
    right: 0;
    left: auto;
}
#card-brand{
    -webkit-box-shadow: 0 0 10px -1.5px rgba(0, 9, 128, 0.05);
    -moz-box-shadow: 0 0 10px -1.5px rgba(0, 9, 128, 0.05);
    box-shadow: 0 0 10px -1.5px rgba(0, 9, 128, 0.05);
    border: none !important;
    display: flex;
    padding: 1rem;
}
#topimg-brand{
    display: flex;

}
#topimg-brand img{
    margin: auto;
    max-width: 150px;
    width: 100%;
    max-height: 70px;
    height: 100%;
}

/*-----------------------------*/
/*--------تفاصيل العقار-------*/
/*-----------------------------*/
.flat-detailes{
    padding: 25px 0;
    position: relative;
}
.flat-detailes .hrader .content-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e4e4e4;
    flex-wrap: wrap;
    gap: 20px;
}
.flat-detailes .hrader .content-top h3{
    font-family: var(--arabic-font);
    font-size: 25px;
    letter-spacing: -1px;
    background: var(--linear-background);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}
.flat-detailes .hrader .content-top span{
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: var(--text-color);
}
.flat-detailes .hrader .content-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.flat-detailes .hrader .content-bottom .box-left{
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: right;
}
.flat-detailes .hrader .content-bottom .box-left .label{
    margin-bottom: 12px;
    font-weight: 600;
    opacity: 0.8;
    font-size: 16px;
    line-height: 21.86px;
}
.flat-detailes .hrader .content-bottom .box-left .meta-list {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.flat-detailes .hrader .content-bottom .box-left .meta-list .item {
    display: flex;
    align-items: center;
    gap: 4px;
}
.flat-detailes .hrader .content-bottom .box-left .meta-list .item i {
    font-size: 16px;
    color: var(--dark-color);
}
.flat-detailes .hrader .content-bottom .box-left .meta-list .item .text-variant-1{
    color: var(--text-color);
}
.flat-detailes .hrader .content-bottom .box-left .meta-list .item .num{
    color: var(--gold-color);
}
.flat-detailes .hrader .content-bottom .box-left p {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--gold-color);
}
.flat-detailes .hrader .content-bottom .icon-box {
    display: flex;
    gap: 16px;
}
.flat-detailes .hrader .content-bottom .icon-box li{
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}
.flat-detailes .hrader .content-bottom .icon-box .item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold-color);
    border-radius: 10px;
}
.flat-detailes .hrader .content-bottom .icon-box .item svg.icon  {
    font-size: 18px;
    color: var(--gold-color) !important;
    width: 18px;
}
.flat-detailes .hrader .content-bottom .icon-box .item svg.icon path {
    stroke: var(--gold-color) !important;
}
.flat-detailes .hrader .content-bottom .icon-box .item:hover {
    background: var(--linear-background) ;
}
.flat-detailes .hrader .content-bottom .icon-box .item:hover svg.icon path {
    color: var(--white-color);
}


.swiper-slide.swiper-slide-next:nth-child(2) {
    /* transform: translateX(55%); */
    z-index: 1;
    transform: none;
}
.swiper-slide.swiper-slide-active:first-child {
    /* transform: translateX(50%); */
    z-index: 2;
    transform: none;
}





.flat-section{
    padding: 25px 0;
    position: relative;
    margin-top: 2rem;
}
.flat-section .right{
    position: sticky;
    top: 100px;
}
.flat-section .right .right-one , .flat-section .right .right-two{
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e4e4e4;
    overflow: hidden;
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.0509803922);
}
.flat-section .right .right-one .title{
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    background: var(--linear-background);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}
.flat-section .right .right-one .box-avatar{
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    gap: 4px;
    text-align: right;
}
.flat-section .right .right-one .box-avatar .avatar{
    border-radius: 50%;
    overflow: hidden;
    width: 100px;
    min-width: 100px;
    height: 100px;
}
.flat-section .right .right-one .box-avatar .avatar img {
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}
.flat-section .right .right-one .box-avatar .name {
    margin-bottom: 12px;
    color: var(--gold-color);
}
.flat-section .right .right-one .box-avatar .list li{
    color: var(--text-color);
}
.flat-section .right .right-one .box-avatar .list li .icon {
    font-size: 14px;
    color: #a3abb0;
}
.flat-section .right .right-one .contact-form {
    margin-top: 30px;
}
.flat-section .right .right-one .contact-form .ip-group:not(:last-child) {
    margin-bottom: 12px;
}
.flat-section .right .right-one input, .flat-section .right .right-one textarea {
    border: none;
    border: 1px solid #f3f4f6;
    text-align: right;
    font-size: 15px;
    color: var(--dark-color);
    font-weight: 500;
    box-shadow: none !important;
    margin-bottom: 20px;
    transition: var(--transtion);
    line-height: normal;
    padding: 0px 15px 0 25px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
}
.flat-section .right .right-one input{
    height: 55px;
}
.flat-section .right .right-one textarea{
    resize: none;
    border-radius: 16px !important;
}
.flat-section .right .right-one input:focus, .flat-section .right .right-one textarea:focus{
    border-color: var(--gold-color);
}
#card-realState-det{
    border: 1px solid #dddddd;
    padding: 0;
    overflow: hidden;
    border-radius: 20px;
}
#card-realState-det img{
    border-radius: 20px;
    max-width: 100%;
    transition: var(--transtion);
}
#card-realState-det img:hover{
    transform: scale(1.1);
}


.flat-section .single-property-element:not(:last-child) {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #e4e4e4;
}
.flat-section .single-property-desc .title {
    margin-bottom: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--dark-gold);
}
.flat-section .text-variant-1 {
    color: var(--text-color);
}
.flat-section .single-property-desc .btn-view {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.flat-section .btn-view .text {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    color: var(--gold-color);
    position: relative;
}
.flat-section .single-property-overview .title {
    margin-bottom: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--dark-gold);
}
.flat-section .single-property-overview .info-box {
    display: flex;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 30px;
    background: #ffffff;
    border-radius: 12px;
}
.flat-section .single-property-overview .info-box .item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 140px;
    transition: var(--transtion);
}
.flat-section .single-property-overview .info-box .item .box-icon {
    border-radius: 8px;
    border: 1px solid #e4e4e4;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transtion);
    cursor: pointer;
}
.flat-section .single-property-overview .info-box .item .box-icon i{
    transition: var(--transtion);
    color: var(--gold-color);
}
.flat-section .single-property-overview .info-box .item:hover .box-icon {
    background: var(--linear-background);
}
.flat-section .single-property-overview .info-box .item:hover .box-icon i {
    color: var(--white-color);
}
.flat-section .single-property-overview .info-box .item .label {
    font-weight: 400;
    color: var(--gold-color);
    display: block;
    opacity: 0.8;
}
.flat-section .single-property-overview .info-box .item span {
    font-weight: 600;
    color: var(--text-color);
}





.flat-section .single-property-info .title {
    margin-bottom: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--dark-gold);
}
.flat-section .single-property-info .inner-box {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.flat-section .single-property-info .inner-box .label {
    font-weight: 600;
    width: 25%;
    color: var(--gold-color);
}
.flat-section .single-property-info .inner-box .text-black-3 {
    color: var(--text-color);
}


.flat-section .single-property-feature .title {
    margin-bottom: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--dark-gold);
}
.flat-section .single-property-feature .wrap-feature {
    display: flex;
    gap: 20حء;
    flex-wrap: wrap;
    justify-content: space-between;
}
.flat-section .single-property-feature .wrap-feature .box-feature ul {
    padding-left: 15px;
    list-style: disc;
}
.flat-section .single-property-feature .wrap-feature .box-feature ul li:not(:last-child) {
    margin-bottom: 10px;
}
.single-property-feature .wrap-feature .box-feature .feature-item {
    color: var(--gold-color);
    gap: 8px;
    font-weight: 600;
}


























#btnFilter-andSort {
    margin-bottom: 1rem;
    padding: 2rem 0.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
    text-align: right;
}
#btnFilter-andSort .btn-default{
    margin-left: 1rem;
}
#btnFilter-andSort #btn-login::after{
    background: transparent;
}
#form-selectedSort {
    border: 1px solid var(--gold-color);
    padding: 0.2rem 0.8rem;
    border-radius: 8px;
}
#form-selectedSort label {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0;
}
#form-selectedSort .custom-select {
    border: none;
    box-shadow: none;
    color: var(--dark-color);
    font-size: 13px;
    font-weight: 600;
    padding: 0.1rem;
    background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") left .75rem center/8px 10px no-repeat;
    cursor: pointer;
}
.custom-select#input-contact{
    cursor: pointer;
    background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") left .75rem center/8px 10px no-repeat;
}
#form-selectedSort .custom-select option {
    font-size: 14px;
    padding: 0.5rem;
    cursor: pointer;
    margin-bottom: 2rem;
    display: inline-block;
    font-weight: 600;
}
.countResult h2 {
    font-size: 17px;
    font-weight: 700;
    color: #495057;
    margin: 0;
    width: max-content;
}



.form-filter{
    display: flex;
    /* align-items: center; */
    flex-direction: column;
    justify-content: space-between;
    height: 93%;
}
#cardbtnFilter{
    padding: 1.5rem;
    border: 0;
    border-top: 1px solid var(--gold-color);
    border-radius: 0;
    margin: 0;
    position: relative;
    margin-top: 2rem;
}
#cardbtnFilter #btn-section{
    background: var(--dark-color);
    margin-top: 0;
    margin: 0;
}
#card-fillter{
    position: sticky;
    top: 90px;
    padding: 1rem;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
}


.input-range-filter {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 5px;
    background: var(--gold-color);
    outline: none;
    pointer-events: none; /* إخفاء التفاعل مع الشريط */


    position: absolute;
    right: 0;
    width: 100%;
    z-index: 2;
    background: transparent;
}

.input-range-filter::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background-color: var(--gold-color);
    border: 2px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all; /* السماح بالتفاعل مع المقبض */

}
.title-fit{
    color: var(--dark-color);
    font-size: 15px;
    font-weight: 600;
}
#price-display{
    color: var(--dark-color);
    font-size: 15px;
    font-weight: 700;
}
.input-range-filter::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background-color: var(--gold-color);
    border: 2px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;

}
#track , #track-area{
    position: absolute; 
    top: 50%;
    left: 0;
    right: 0; 
    height: 4px; 
    background: var(--linear-background); 
    border-radius: 5px; 
    z-index: 0;
}
#track-shadow{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #E7F0FF;
    border-radius: 5px; z-index: 0;
}



.filteration{
    position: fixed;
    top: 0;
    height: 100%;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    overflow-y: auto;
    overflow-x: auto;
    background: #00000093;
    z-index: 1020;
    /* display: none; */
    /* opacity: 0;  */
    animation: filterback 0.8s ease forwards;
    animation-delay: 0.5s;
    visibility: hidden;
    transition: 1.3s;
}
/* .filteration.animation-filter{
    transform: translateX(-100%);
  
} */
.filteration.show{
    /* display: block; */
    /* opacity: 0; */
    visibility: visible;
    animation: filterShow 0.8s ease forwards;
}
.filtraition-items{
    width: 320px;
    height: 100vh;
    background: var(--white-color);
    overflow: auto;
    position: relative;
    /* opacity: 0; */
    animation: filterback 0.8s ease forwards;
}
.filteration.show .filtraition-items{
    opacity: 0;
    animation: filterShow 0.8s ease forwards;
    animation-delay: 0.5s;
}

#filter-closed{
    margin-right: auto;
    color: var(--gold-color);
    font-size: 20px;
    background: var(--dark-color);
    border-radius: 0;
    box-shadow: none;
}
#filter-closed i::before{
    font-weight: 900 !important;
}
.filtraition-items h2{
    font-size: 17px;
    font-weight: 700;
    color: #495057;
    margin: 0;
}







.Application-form{
    padding: 50px 0;
    position: relative;
}
.Application-form .container{
    max-width: 1000px !important;
}
.Application-form h2{
    font-family: var(--arabic-font);
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: -1px;
    background: var(--linear-background);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.Application-form p{
    font-family: var(--arabic-font);
    font-size: 15px;
    line-height: 26px;
    color: var(--text-color);
    font-weight: 400;
    margin-bottom: 2rem;
}
#card-ask-aqar{
    border: 1px solid var(--gold-color);
    padding: 1rem;
    border-radius: 20px;
}
.Application-form .card h2{
    font-family: var(--arabic-font);
    font-size: 15px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: -1px;
    background: var(--linear-background);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.Application-form .card .inputs1 input , .Application-form .card .inputs1 select {
    border-radius: 0;
    border-style: solid;
    border-color: var(--gold-color);
    background: var(--white-color);
    margin-bottom: 15px;
    padding: 12px .75rem;
    font-family: var(--arabic-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    width: 50%;
}
.Application-form .card .inputs1 input::placeholder {
    color: var(--dark-gold);
}
.Application-form .card .inputs1{
    display: flex;
    align-items: center;
    gap: 2rem;
}


.download-applecation-now{
    position: relative;
    padding: 50px 0;
}



/*-----------------------*/
/*----Login Page / register page-----*/
/*-----------------------*/
.login-page ,.register-page {
    align-content: center;
    padding: 60px 0;
    font-family: var(--DM-font);
    /* background: linear-gradient(to right, rgb(34 32 28), var(--primary-color)); */
    background: var(--white-color);
}
.enroll-page , .refera-freind{
    padding: 40px 0;
}

.login-page .container ,.register-page .container{
    max-width: 500px !important;
}

/* Form */
.needs-validation{
    /* background: linear-gradient(to right, rgb(34 32 28), var(--primary-color)); */
    background: var(--white-color);
    box-shadow: 0 3px 20px rgba(142, 134, 171, 0.212);
    border: none;
    /* margin-bottom: 1.5rem; */
    border-radius: .25rem;
    padding: 1.5rem;
    opacity: 0;
    animation: form-scale 1.3s ease forwards;
    text-align: right !important;
    position: relative;
}
/* title form */
.title-form{
    font-size: 20px;
    text-align: left;
    margin: 1rem 0 2rem;
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 6rem;
}
#form-logo{
    position: absolute;
    top: 0;
    left: 20px;
    margin: 0;
    background: var(--white-color);
    border-radius: 0 0 10px 10px;
    /* -webkit-box-shadow: 0 3px 20px rgba(142, 134, 171, 0.212);
    -moz-box-shadow: 0 3px 20px rgba(142, 134, 171, 0.212);
    box-shadow: 0 3px 20px rgba(142, 134, 171, 0.212); */
}
#form-logo img{
    width: 150px;
}
.needs-validation label{
    margin-bottom: .5rem;
    font-weight: 500;
    color: var(--gold-color);
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
}
.needs-validation .form-check label{
    font-size: 17px;
    font-weight: 600;
}
.needs-validation .form-control , .needs-validation .custom-select{
    display: block;
    width: 100%;
    padding: 0 20px !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    appearance: none;
    background-clip: padding-box;
    border-radius: .25rem;
    /* border-radius: 50px; */
    height: 40px;
    -webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
}
.needs-validation .custom-select , .needs-validation .custom-select option{
    cursor: pointer;
}
.needs-validation .form-control[type="file"]{
    height: auto !important;
    padding: 13px 20px !important;
}
#textarea{
    height: auto;
    border-radius: .25rem;
}
.needs-validation .form-control:focus , .needs-validation .custom-select:focus{
    border-color: var(--gold-color);
    padding-right: calc(1.5em + 1.034rem);
    background-repeat: no-repeat;
    background-position: right calc(.375em + .2585rem) center;
    background-size: calc(.75em + .517rem) calc(.75em + .517rem);
    font-size: 16px;
    font-weight: 500;
    box-shadow: none !important;
    line-height: 1.5;
}

.needs-validation .custom-control-input{
    color: var(--text-color);
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    box-shadow: none !important;
    padding-left: 0;
}
.needs-validation .custom-control-input:checked~.custom-control-label::before{
    color: var(--white-color);
    box-shadow: 0 0 0 .1rem var(--gold-color) !important;
    background: var(--gold-color);
    border-color: var(--gold-color);
}
.needs-validation .form-check{
    padding: 0;
}
/* dont have account (login / register) */
#notHave-account {
    text-align: right;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    letter-spacing: 1px;
}
#notHave-account a {
    text-decoration: none !important;
    color: var(--dark-color);
    transition: var(--transtion);
    margin-right: 0.7rem;
}
#notHave-account a:hover{
    color: var(--gold-color);
}


