:root{
    --main-color: #22355B;
    --gray-color: #7B7D7F;
    --second-color: #C6B399;
}
/* @font-face {
    font-family: Pacifico;
    src: url("../fonts/Pacifico-Regular.ttf");
}
@font-face {
    font-family: Poppins;
    src: url("../fonts/Quicksand-VariableFont_wght.ttf");
} */
body{
    font-family: "Fustat", sans-serif;
    direction: rtl;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
    padding: 0;
}
.text-color{
    color: var(--main-color);
}
.loader-container{
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 10000;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* banner */
.banner{
    width: 100%;
    min-height: 600px;
    background-image: linear-gradient(rgba(33,33,34,0.4), rgba(33,33,34,0.8)), url(../photo/banner.png);
    background-size: cover;
    background-position: center;
}
/* start scroll to top */
.scroll-top{
    background-color: black;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    box-shadow: #000000 5px 5px 15px, #4d4d4d -5px -5px 15px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: none;
    transition: 0.3s ease;
}
.top{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.scroll-top:hover{
    background-color: #131419;
    color: white;
}
/* end scroll to top */

/* start navbar */
.navbar{
    z-index: 999;
}
.fixed-top{
    background-color: rgb(23 37 63);
}
.navbar-brand{
    color: var(--main-color);
}
.navbar-brand:hover{
    color: var(--main-color);
}
.nav-link{
    color: white;
}
.nav-link:hover,
.nav-link.active{
    color: var(--second-color);
}
/* end navbar */

/* start landing */
.heading{
    color: white;
}
.heading h1{
    font-weight: bold;
    font-size: 50px;
}
.heading .icon a{
    color: white;
    padding: 2px 5px;
    margin: 10px;
    border-radius: 50px;
    box-shadow: #000000 2px 2px 3px, #4d4d4d -1px -1px 3px;
}
.main-btn{
    background-color: white;
    color: var(--main-color);
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 700;
    transition: all 0.5s ease;
}
.main-btn:hover{
    background-color: var(--second-color);
    color: var(--main-color);
}
.main-btn img{
    transition: all 0.5s ease;
}
.main-btn:hover img{
    margin-right: 25px;
}
.main-btn.change-color{
    background-color: var(--main-color);
    color: white;
    transition: all 0.5s ease;
}
.main-btn.change-color:hover{
    background-color: var(--second-color);
    color: white;
}
.main-btn.change-color img{
    margin-right: 10px;
    transition: all 0.5s ease;
}
.main-btn.change-color:hover img{
    margin-right: 25px;
}
/* end landing */

/* start services */

.services{
    background-color: #F4F7FB;
    border-radius: 0 0 60px 60px;
    padding: 100px 0;
}
.search{
    border: none;
    border-radius: 20px;
    padding: 20px;
}
.search:focus{
   border: none;
   box-shadow: none;
   outline: none;
}
.change-position{
    position: absolute;
    left: 15px;
    top: 12px;
}
.service-card{
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    direction: rtl;
    margin: 10px;
    height: 480px;
    transition: all 0.5s ease;
}
.service-card .image-service{
    width: 85px !important;
    height: 80px;
}
.service-card .change-color img{
    margin-right: 0;
}
/* .light{
    display: none;
} */
.service-card:hover{
    background-color: var(--main-color);
}
/* .service-card:hover .dark{
    display: none;
}
.service-card:hover .light{
    display: block;
    transition: all 0.5s ease;
} */
.service-card:hover h4,
.service-card:hover p{
    color: white;
}
.service-card:hover .image-service{
    stroke: white;
}
.service-card:hover .image-service path{
    fill: white;
}
.btn-services{
    background-color: var(--main-color);
    color: white;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 700;
    transition: all 0.5s ease;
}
.btn-services span{
    display: none;
}
.service-card:hover .btn-services{
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: var(--second-color);
}
.service-card:hover span{
    display: block;
}
.btn-services:hover span{
    color: white;
}
.service-card:hover .btn-services span{
    color: white;
}

/* end services */

/* projects */

.projects{
    padding: 100px 0;
}
.card-project{
    height: 500px;
    border-radius: 20px;
    padding: 30px;
    direction: rtl;
    margin: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}
.position-project{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: absolute;
    top: 70%;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 40px 20px 20px 20px;
    transition: all 0.5s ease;
}
.content-project span{
    background-color:#FFFFFF1F;
    width: max-content;
    padding: 10px;
    border-radius: 10px;
}
.card-project p{
    color: #FFFFFFB2;
}
.card-project:hover .position-project{
    top: 0;
    background-color: var(--main-color);
}

/* news */

.news-jobs{
    padding: 100px 0;
    background-color: #F4F7FB;
    border-radius: 60px;
}
.card-news{
    border-radius: 25px;
    padding: 20px;
    height: 450px;
    direction: rtl;
    margin: 10px;
    background-color: white;
    transition: all 0.5s ease;
}
.card-news .image-card{
    height: 250px;
    border-radius: 15px;
    transition: all 0.5s ease;
}
.card-news .image-card img{
    border-radius: 15px;
}
.card-news .content p,
.card-news .content h4{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-news:hover .image-card{
    height: 200px;
}
.btn-news{
    background-color: #E9ECF2;
    color: var(--main-color);
    padding: 10px 20px;
    border-radius: 50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    display: none;
    transition: all 0.5s ease;
}
.card-news:hover .btn-news{
    display: flex;
    color: var(--main-color);
}
.jobs{
    margin-top: 80px;
}

/* jobs */

.card-job{
    border-radius: 25px;
    padding: 20px;
    direction: rtl;
    margin: 10px;
    background-color: white;
}
.brown-title{
    background-color:#C6B39914;
    color:#AF9E87;
    padding: 8px 15px;
    width: max-content;
    border-radius: 50px;
    margin-left: 10px;
}
.btn-jobs{
    background-color: var(--main-color);
    color: white;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 700;
    display: flex;
    transition: all 0.5s ease;
}
.card-job:hover .btn-jobs{
    background-color: var(--second-color);
    color: white;
}
.btn-jobs span{
    display: none;
}
.btn-jobs img{
    margin-right: 10px;
}
.card-job:hover .btn-jobs span{
    display: flex;
}

/* partner */

.partner{
    padding: 100px 0;
}
.card-partner{
    box-shadow: 2.4px 12.8px 35.2px 0px #070F420D;
    border: 1px solid #E9F1F2;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.card-partner img{
    height: 70px;
    width: 100%;
}

.card-contact{
    background-image: url("../photo/bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 40px;
    height: 400px;
}
.footer{
    padding: 100px 0;
}

.footer ul li{
    padding: 7px 0;
}
.social-icon li a{
    color: var(--main-color);
}
.social-icon li{
    background-color: #E9ECF2;
    color: var(--main-color);
    border-radius: 8px;
    padding: 8px 12px !important;
    margin: 10px 0 10px 10px;
    transition: all 0.5s ease-out;
}
.social-icon li:hover a{
    color: white;
}
.social-icon li:hover{
    background-color: var(--second-color);
}
.footer .hover{
    color: black;
    transition: all 0.5s ease;
}
.footer .hover:hover{
    color: var(--second-color);
}

/* about page */

.image-about{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.card-about{
    box-shadow: 2px 13px 35px 0px #070F420D;
    border: 1 solid #E9F1F2;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
}
.title-about{
    width: max-content;
    transform: rotate(270deg);
    margin-top: 40px;
}
.about-review{
    background-image: url("../photo/bg-about.png");
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 40px;
    padding: 30px;
    min-height: 450px;
    /* position: relative; */
}
.image-review{
    height: 450px;
    margin-bottom: -30px;
}
.image-review img{
    height: 100%;
}
.card-team{
    background-color: white;
    border: 1px solid #E9F1F2;
    box-shadow: 2px 13px 35px 0px #070F420D;
    border-radius: 20px;
    padding: 30px 20px;
}
.team{
    padding: 100px 0;
}
.list-project li,
.list2-project li{
    margin-bottom: 20px;
}
.list2-project {
    list-style: circle;
    padding: 0 30px;
}
.icon-project{
    background-color: #E9ECF2;
    color: var(--main-color);
    border-radius: 8px;
    padding: 8px 12px !important;
    margin-left: 10px;
}
.contact-project{
    background-image: url("../photo/bg-project.png");
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    padding: 50px;
    height: 450px;
}
.carousel-item img{
    height: 500px;
    border-radius: 20px;
}

/* contact */
.form-control,
.input-group-text,
.form-select{
    background-color: #F9F9F9;
    color:#B4B6B7;
    border-radius: 10px !important;
    padding: 10px;
    border: none;
}
.input-group-text{
    color: black !important;
    margin-right: 10px;
}
.form-control:focus{
    background-color: #F9F9F9;
    border: none;
    outline: none;
    box-shadow: none;
}
.form-check-input{
    width: 20px;
    height: 20px;
    border: 2px solid gainsboro;
    border-radius: 5px;
}
.form-check-input:checked{
    background-color: var(--main-color);
    box-shadow: none;
}
.form-check-input[type=checkbox]{
    border-radius: 5px;
}
.form-check-input:checked{
    border: none;
    outline: none;
}
.form-select{
    background-position: left .75rem center;
}
.card-contact-us{
    background-color: white;
    padding: 30px;
    min-height: 300px;
    border-radius: 20px;
}
.link-contact{
    color: var(--main-color);
    transition: all 0.5s ease;
}
.link-contact:hover{
    color: var(--second-color);
}

@media (max-width:992px){
    ul.navbar-nav.me-auto.ms-auto.mb-2.mb-lg-0 {
        margin: 30px 10px 40px 0px !important;
    }
    
    ul.navbar-nav.me-auto.ms-auto.mb-2.mb-lg-0 li {}
    
    div#navbarSupportedContent li {
        border-bottom: 1px solid #ffffff2e;
        padding: 9px 0;
    }
    
    div#navbarSupportedContent {
        background: #17253f;
        border-radius: 10px;
        padding: 0px 10px 40px 10px;
        margin: 20px 0 0 0;
    }
    }

    .loader {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        position: relative;
        transform:rotate(45deg);
        background: var(--gray-color);
      }
      .loader::before {
        content: "";
        box-sizing: border-box;
        position: absolute;
        inset: 0px;
        border-radius: 50%;
        border:24px solid var(--main-color);
        animation: prixClipFix 2s infinite linear;
      }

      @keyframes prixClipFix {
          0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
          25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
          50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
          75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
          100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
      }
  

