/****************
 General style 
*****************/
* {
    margin: 0 auto;
    padding: 0;
    border: 0;
}

@font-face {
    font-family: JF;
    src: url(../fonts/JF.ttf);
}

body {
    background: #fff;
    font-family: JF;
    font-size: 20px;
    color: #5A5B5D;
}

a {
    text-decoration: none;
    color: #5A5B5D;
}

a:hover {
    cursor: pointer;
}

h2 {
    width: 100%;
    text-align: center;
}

p {
    font-size: 20px;
    padding: 5px;
}

.h-border{
    display:block;
    width:100px;               
    height: 3px;
    margin-bottom: 80px;
    background:  #FB9902;
    
}

.en-fam{
    font-family: Arial, Helvetica, sans-serif
}
/****************
    Header
*****************/
header {
    width: 100%;
    height: 80px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0 auto;
    position: fixed;
    top: 0px;
    left: 0px;
    background: #1D2730;
    box-shadow: 5px 10px 18px #FB9902;
    z-index: 10000000000000;
}

.scroll-header {
    background: #1D2730;
    box-shadow: 5px 10px 18px #FB9902;
}

.wrapper {
    width: 96%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2%;
}

header #logo {
    width: 35%;
    float: right;
    text-align: right;
}

#logo .name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tagline{
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    color: #fff;
    text-align: right;
}

#logo .logo-pic{
    float: none;
    flex-shrink: 0;
    border-radius: 50%
}

#logo .logo-pic img{
    display: block;
    border-radius: 50%
}

#logo p{
    margin: 0;
    padding: 0;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.english{
    font-family: 'Roboto', sans-serif;
    font-size: 12px;  
}

.arabic{
    font-size: 20px;
}

.yellow-text {
    color: #FB9902;
}


header #logo .span {
    font-size: 14px;
}

header #logo #tagline {
    font-size: 16px;
    padding-left: 8px;
    color: #fff;
    bottom: 10px
}

nav {
    width: 60%;
    float: left;
    text-align: left;
    margin: 1%;
    padding-top: 10px
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline-block;
    padding: 5px 1%;
    text-align: left;
}

nav li a {
    padding: 2px 15px 4px;
    color: #fff;
    font-size: 16px;
    transition: 0.5s
}

nav li a:hover,
.active {
    background: #FB9902;
    color: #1D2730;
    border-radius: 15px;
}

.display{
    background: #FB9902;
    border-radius: 15px;
}

#nav-icon {
    display: none;
}

#nav-icon-container {
    display: none;
}

.clear:after {
    clear: both;
    content: "";
    display: block;
}

/*************
   Banner
***************/
#banner {
    margin-top: 80px;
    width: 100%;
    position: relative;
    text-align: center;
    height: 650px;
}

.layer {
    background-image: -webkit-linear-gradient(-90deg, #C3A04F 0%, #1D2730 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: 1000
}

#slider{
    position: relative;
    width: 100%;
    height: 650px;
}

#slider>div {
    position: absolute;
    width: 100%;
}

#banner img {
    width: 100%;
    height: 650px;
}

#caption {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 10000;
}

.caption-text {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10000;
}

.s-color {
    color: #FB9902;
}

.caption-text h1 {
    font-size: 2em;
    padding-right: 8px;
    color: #1D2730;
    text-shadow: 0 0 5px #FFF, 0 0 10px #FFF, 0 0 15px #FFF, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #fff, 0 0 55px #fff, 0 0 75px #fff;
    /*text-shadow: 1px 3px 0 #FB9902, 1px 13px 5px #FB9902;*/
    animation: bannerAnimate 2s forwards;
    
}

.caption-text .contact{
    position: relative;
    width: 150px;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    border-bottom: 2px solid #1D2730;
    border-right: 2px solid #1D2730;
    background: #FB9902;
    display: block;
    padding: 7px;
    font-size: 14px;
    border-radius: 14px 4px;
    margin-top: 40px;
    text-align: center;
    transition: all .1s ease;
    animation: bannerAnimate 3s forwards;
}

.caption-text a:hover {
    border-bottom: 2px solid #FB9902;
    border-right: 2px solid #FB9902;
    background: #1D2730;
    color: #FB9902;
}


@keyframes bannerAnimate {
    0% {
        opacity: 0;
        transform: translateY(-25px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.dots-container{
    z-index: 100;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}
 
.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #F8B517;
    border-radius: 50%;
    border: 2px solid #1D2730;
    display: inline-block;
    transition: background-color 0.6s ease; 
    opacity: 0.5;  
}
  
.slide-active {
    background-color: #1D2730;
}
  
.fade{
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}
  
@-webkit-keyframes fade {
    from {opacity: .5} 
    to {opacity: 1}
}
  
@keyframes fade {
    from {opacity: .5} 
    to {opacity: 1}
}

/************ 
  About us
*************/
#about-banner{
    margin-top: 80px;
    width: 100%;
    position: relative;
    text-align: center;
    height: 500px;
    background-image: url("../images/about.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

#about {
    width: 100%;
    background: #FBFBFB;
    padding-bottom: 100px;
    position: relative;
    text-align: center;
}

.about-icons{
    display: inline-block;
    width: 31%;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

.about-icons p{
    font-weight: bold
}

.include-container{
    position: relative;
}

.arabic-num{
    font-family: ArabicTwo_Bold;
}

.overlay{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)  
}

.overlay span{
    color: #fff;
    font-size: 50px;
    display: inline-block;
    animation: swing 3s infinite;
}

.about-text{
    width: 80%;
    margin-top: 50px;
    text-align: justify
}


@-webkit-keyframes swing
{
    15%{
        -webkit-transform: translateX(5px);
        transform: translateX(5px);
    }
    30%{
        -webkit-transform: translateX(-5px);
       transform: translateX(-5px);
    } 
    50%{
        -webkit-transform: translateX(3px);
        transform: translateX(3px);
    }
    65%{
        -webkit-transform: translateX(-3px);
        transform: translateX(-3px);
    }
    80%{
        -webkit-transform: translateX(2px);
        transform: translateX(2px);
    }
    100%{
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes swing{
    15%{
        -webkit-transform: translateX(5px);
        transform: translateX(5px);
    }
    30%{
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }
    50%{
        -webkit-transform: translateX(3px);
        transform: translateX(3px);
    }
    65%{
        -webkit-transform: translateX(-3px);
        transform: translateX(-3px);
    }
    80%{
        -webkit-transform: translateX(2px);
        transform: translateX(2px);
    }
    100%{
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.signature{
    background: #FDFDFD;
    box-shadow: 0 4px 44px rgba(17,29,48,.06);
    margin-left: 10px;
    width: 30%;
    display: inline-block;
    text-align: center
}

#signature p{
    font-size: 18px
}

.bold-text{
    font-weight: bolder
}

/**********
 services
***********/
#services {
    width: 100%;
    background: #f2f2f2;
    padding-top: 70px;
    padding-bottom: 150px;
    text-align: center;
}

.space {
    width: 100%;
    height: 35px;
}

.services-container {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.service-container {
    margin-top: 20px;
    width: 35%;
    display: inline-block;
    height: 260px;
    text-align: center;
    background: #f9f9f9;
    margin: 10px 1%;
    box-shadow: 0 0 11px rgba(33, 33, 33, .2);
    border-radius: 10px;
}

.service-container:hover {
    cursor: pointer;
    box-shadow: 0 0 11px #1D2730; 
    transition: all .3s ease-in-out;
    animation: swing 3s infinite;  
}

.project-image {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

figcaption{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #F8B517;
    padding: 10px 50px;
    opacity: 0.7;
    font-weight: bolder;
    font-size: 28px;
}

.project-image img {
    width: 100%;
    height: 200px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    
}

.project-description {
    padding: 5px;
    text-align: center;
}

.project-description p {
    font-size: 18px;
    color: #FB9902;
    margin-bottom: 10px;
    padding: 1px 5px;
}

.small-text{
    color: #082054;
    font-size: 12px
}

/*************
    Partner
**************/
#partners{
    width: 100%;
    text-align: center;
    border-radius: 5px;
    padding-top: 70px;
    padding-bottom: 70px;
    background: #fff;
}

.partner-container{
    margin-top: 80px;
    margin-bottom: 50px;
}

.partner{
    width: 22%;
    margin-bottom: 40px;
    display: inline-block;
}

.partner:hover{
    animation: swing 3s ease;
    cursor: pointer;
}

.partner img{
    width: 150px;
    height: 150px;
    box-shadow: 5px 5px 9px #FB9902;
}

/********
 Footer
**********/

footer {
    width: 100%;
    padding-top: 25px;
    padding-bottom: 15px;
    background-color: #1D2730;
    color: #fff;
    text-align: center;
    border-top: 1px solid #FB9902
}

.code p{
    font-size: 10px;
    color: #fff;
    padding: 1px;
}

.social{
    padding-top: 25px;
}

.rights{
    width: 50%;
    float: right;
    text-align: right;
    margin: 10px auto;
}

footer p {
    font-size: 16px;
}

.icons-container {
    margin: 10px auto;
    width: 40%;
    float: left;
    text-align: left;
}

.social-icons {
    display: inline-block;
    width: 35px;
    height: 35px;
    margin: 3px;
    border-radius: 50%;
    background: #FB9902;
    position: relative;
    transition: 0.4s;
}

.icon {
    position: absolute;
    font-size: 16px;
    color: #1D2730;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.social-icons:hover{
    color: #FB9902;
    background: #1D2730;
    border: 1px solid #FB9902;
}

.social-icons:hover span{
    color: #F8B517;
}

.login{
    width: 170px;
    padding: 5px;
    border: 1px solid #F8B517;
    border-radius: 5px;
    margin-top: 10px;
}

.login a{
    color: #fff;
}
/*************************
  Join us
**************************/
.join-banner{
    margin-top: 80px;
    width: 100%;
    position: relative;
    text-align: center;
    height: 400px;
    background-image: url("../images/job.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

#job{
    width: 100%;
    background: #fbfbfb;
    padding-top: 50px;
    padding-bottom: 100px;
    position: relative;
    text-align: center;
}

.employee-value{
    text-align: right;
    margin-top: 60px;
}

.employee-value p{
    font-size: 18px;
    line-height: 1.3
}

.current-jobs{
    margin-top: 60px;
    margin-bottom: 60px;
    text-align: right;
}

.job{
    background: #fff;
    box-shadow: 0 4px 44px rgba(17,29,48,.06);
    padding: 10px;
    border-radius: 5px;
    list-style-type: none;
    margin-bottom: 10px;
}

.button button{ 
    display: block;
    width: 250px;
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 8px;
    color: #fff;
    background: #F8B517;
    padding: 3px;
    border-radius: 15px;
    font-family: JF;
    cursor: pointer;
}

.join-form{
    background: #fff;
    padding-top: 50px;
    padding-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 44px rgba(17,29,48,.06);
}

.join-form p{
    font-size: 16px;
}

.join-form label{
    display: inline-block;
    text-align: right;
    font-size: 14px;
    cursor: pointer;
    padding-top: 5px;
    width: 79%;
    height: 30px;
    padding: 0px 7px 3px;
    margin-bottom: 8px;
    background: #fff;
    border: 1px solid #b3c0e2;
    border-radius: 4px;
    font-family: jf;
}

.error_fields{
    color: #D8000C;
    font-size: 14px;
}

/*************
 contact us
**************/
#contact-banner{
    margin-top: 80px;
    width: 100%;
    position: relative;
    text-align: center;
    height: 500px;
    background-image: url("../images/contact-us.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.contact{
    width:100%;
    background-image: -webkit-linear-gradient(-90deg, #1D2730  0%, #2a3845 100%);
    background: #fbfbfb;
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}

.white-text{
    color: #fff;
}

.contact-text {
    margin-top: 50px;
    display: inline-block;
    width: 45%;
    text-align: justify;
    
}

.address{
    background: #FDFDFD;
    box-shadow: 0 4px 44px rgba(17,29,48,.06);
    margin-bottom: 20px;
}

.location{
    width: 45%;
    display: inline-block;
}

.separate-line{
    display:block;
    width:70%;               
    height: 2px;
    margin-bottom: 30px;
    margin-top: 30px;
    background:  #FB9902;
}

.contact-text p, 
.contact-text p a{
    color: #1D2730;
    padding-top: 10px;
}

.contact-form{
    width:100%;
    padding-top: 35px;
    padding-bottom: 25px;
    background: #FDFDFD;
    box-shadow: 0 4px 44px rgba(17,29,48,.06)
}

input,
textarea {
    margin: 0;
    line-height: normal;
    box-sizing: border-box;
}

input {
    height: 38px;
}

input:focus,
textarea:focus {
    outline: none;
}

input,
textarea {
    width: 80%;
    padding: 0px 7px 3px;
    margin-bottom: 8px;
    color: #2B2C3D;
    background: #fff;
    border: 1px solid #b3c0e2;
    border-radius: 4px;
    font-family: jf;
}

textarea {
    padding-top: 8px;
}

#phone-icon{
    display: inline-block;
    
}

.red {
    color: #D8000C;
}

#send-button {
    background: #1D2730;
    color: #fff;
    width: 300px;
    cursor: pointer;
    border: none;
    border-bottom: 2px solid #1D2730;
    border-right: 2px solid #1D2730;
    background: #FB9902;
    padding: 4px;
    font-size: 14px;
    border-radius: 14px 4px; 
}

#send-button:hover{
    border: 1px solid #FB9902;
    background: #1D2730;
}

.error {
    border: 1px solid #D8000C;
    background: #ffeded
}

#form-message-container {
    text-align: center;
}

.error-message {
    color: #D8000C;
    background-color: #FFBABA;
    border: 3px solid #D8000C;
    border-radius: 5px;
    height: auto;
    text-align: center;
    margin: 0 auto 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    position: relative;
    font-size: 14px;
}

.success-message {
    color: #4F8A10;
    background-color: #DFF2BF;
    border: 3px solid #4F8A10;
    border-radius: 5px;
    font-size: 14px;
    height: 20px;
    text-align: center;
    margin: 1em auto 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    position: relative;
}

/*****************
shipping form 
*******************/
#shipping-banner{
    margin-top: 80px;
    width: 100%;
    position: relative;
    text-align: center;
    height: 300px;
    background-image: url("../images/shipping-request.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

select {
    width: 80%;
    padding: 0px 7px 3px;
    margin-bottom: 8px;
    color: #2B2C3D;
    background: #fff;
    border: 1px solid #b3c0e2;
    border-radius: 4px;
    font-family: jf;
}


