@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300;400;500;700&display=swap');

/***
Initialization
***/
body{
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
    line-height: 30px;
    color: #878787;
}

::-webkit-scrollbar {  
    width: 12px;  
}  
::-webkit-scrollbar-track {  
    background-color: #eaeaea;  
    border-right: 1px solid #cecece;  
}  
::-webkit-scrollbar-thumb {  
    background-color: #cecece;  
}  
::-webkit-scrollbar-thumb:hover {  
    background-color: #aaa;  
}  
::-webkit-scrollbar-track {
    border-radius: 0;
    box-shadow: none;
    border: 0; 
}
::-webkit-scrollbar-thumb {
    border-radius: 0;
    box-shadow: none;
    border: 0; 
}

/*Selection*/
::selection {
    color: #ffffff;
    background: #C3A62E;
}

a {
    transition: all .35s;
    color: #303030;
}
a:hover,
a:focus{
    text-decoration: none;
    color: #707070;
}

.btn{
    font-size: 16px;
    font-weight: 500;
    padding: 14px 30px;
    border: 0;
    border-radius: 0;
    box-shadow: none !important;
    transition: all .2s ease;
}
.btn-default{
    background-color: #C3A62E;
    color: #fff;
}
.btn-default:hover{
    background: #393F8E;
    color: #fff;
}
.btn-alt{
    background-color: #393F8E;
    color: #fff;
}
.btn-alt:hover{
    background: #C3A62E;
    color: #fff;
}
.btn-lg{
    font-size: 16px;
    font-weight: 600;
    padding: 16px 59px;
}
.btn-sm{
    font-size: 14px;
    padding: 7px 15px;
}

/*Forms*/
.form-group{
    margin-bottom: 30px;
}
.modal .form-group{
    margin-bottom: 20px;
}
.form-group>label{
    display: block;
    font-size: 14px;
    margin: 0;
    font-weight: 400;
}
.form-group>label>.required{
    float: right;
}
.form-group .custom-control{
    margin-bottom: 0;
}
.form-control{
    height: 50px;
    color: #303030;
    border-radius: 5px;
    font-size: 15px;
    border: 1px solid #E5E5E5;
    box-shadow: 0 12px 40px rgba(0 0 0 / 8%);
    padding-left: 20px;
    padding-right: 20px;
}
textarea.form-control{
    padding-top: 15px;
    padding-bottom: 15px;
}
.form-control::placeholder {
    color: #979797;
}
.form-control:focus{
    border-color: #E0CD77;
    box-shadow: none;
}
.form-group .input-group{
    border: 1px solid #E5E5E5;
    border-radius: 5px;
    box-shadow: 0 0 50px rgba(0 0 0 / 5%);
    /*padding-left: 25px;*/
    overflow: hidden;
    -ms-flex-align: center;
    align-items: center;
}
.form-group .input-group .custom-select{
    height: 50px;
    color: #E0CD77;
    font-size: 14px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    width: 100px;
    padding: 0 25px 0 25px;
}
.form-group .input-group .form-control{
    padding-left: 10px;
    box-shadow: none;
    border-width: 0;
}

.form-hint{
    font-size: 14px;
    letter-spacing: 1px;
    margin: 15px 0 0;
}
.form-hint>span{
    color: #06689B;
    font-weight: 500;
}
.date-picker {
    background-image: url(../images/icons/calendar.svg);
    background-position: right 15px center;
    background-repeat: no-repeat;
}


/*Custom Controls*/
.custom-control{
    padding-left: 30px;
    margin-bottom: 20px;
}
.custom-control:last-child{
    margin-bottom: 0;
}
.custom-control-label{
    cursor: pointer;
    line-height: 1.5;
    font-size: 14px;
}
/*.custom-control-label a{
    color: #757679;
}
.custom-control-label a:hover{
    color: #DFC0BE;
}*/
.custom-control-input:focus~.custom-control-label::before{
    box-shadow: none !important;
    outline: none !important;
}
/*custom-radio*/
.custom-radio .custom-control-label::before{
    background: #ffffff !important;
    border: 2px solid #303030 !important;
    width: 20px;
    height: 20px;
    top: 1px;
    left: -30px;
}
.custom-radio .custom-control-label::after{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    top: 5px;
    left: -26px;
}
.custom-radio .custom-control-input:checked~.custom-control-label{
    color: #303030;
}
.custom-radio .custom-control-input:checked~.custom-control-label::before{
    background: transparent;
    border-color: #303030;
}
.custom-radio .custom-control-input:checked~.custom-control-label::after{
    background: #303030;
}

/*custom-checkbox*/
.custom-checkbox .custom-control-label::before{
    background: transparent;
    border: 1px solid #303030 !important;
    border-radius: 0;
    width: 20px;
    height: 20px;
    top: 1px;
    left: -30px;
}
.custom-checkbox .custom-control-label::after{
    width: 20px;
    height: 20px;
    border-radius: 0;
    top: 1px;
    left: -30px;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::before{
    background: #fff;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::after{
    background-color: #303030;
}

.modal-content{
    background-color: #ffffff;
    border-color: #D0CECF;
    border-radius: 10px;
}
.modal-body{
    padding: 40px 60px;
}
.modal-header{
    display: block;
    padding: 40px 60px 0;
    text-align: center;
    border: 0;
}
.modal-title{
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    padding: 0;
}
.modal-header p{
    color: #383838;
    margin: 7px 0 0;
}
.modal-header .close{
    outline: 0;
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 1;
    padding: 0;
    margin: 0;
    color: #000000;
    font-size: 25px;
}

/*Owl Override*/
.owl-carousel .owl-dots{
    padding: 20px 0 0;
    text-align: center;
}
.owl-carousel .owl-dots .owl-dot{
    display: inline-block;
}
.owl-carousel .owl-dots .owl-dot span {
    display: block;
    width: 8px;
    height: 8px;
    margin: 5px 7px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    -webkit-transition: -webkit-transform 0.3s ease, background-color 0.3s ease;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.owl-carousel .owl-dots .owl-dot.active span, 
.owl-carousel .owl-dots .owl-dot:hover span{
    background-color: white;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
}
.owl-carousel .owl-nav .owl-next, 
.owl-carousel .owl-nav .owl-prev{
    display: inline-block;
    position: absolute;
    top: 50%;
    margin-top: -15px;
    cursor: pointer;
    color: #B9B9B9;
    font-size: 30px;
    transition: all .2s ease;
}
.owl-carousel .owl-nav .owl-prev{
    right: -30px;
}
.owl-carousel .owl-nav .owl-next{
    left: -30px;
}
.owl-carousel .owl-nav .disabled{
    opacity: .4;
}
.owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
    max-width: 100%;
}

.dropdown-menu{
    background: rgba(255, 255, 255, 1);
    border: none;
    border-bottom: 3px solid #E0CD77;
    border-radius: 5px;
    padding: 10px 0;
    box-shadow: 0 0 20px rgb(0 0 0 / 16%);
}
.dropdown-toggle::after {
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    content: "\f078";
    border: 0;
    color: #E0CD77;
    margin-left: 4px;
    vertical-align: 0;
}
.dropdown-menu .dropdown-item{
    font-size: 14px;
    color: #303030;
    font-weight: 400;
    padding: 3px 15px;
    border-bottom: 0;
}
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:active{
    background-color: #FAFAFA;
    color: #041A31;
}

/*header*/
.topbar{
    background-color: #F7F6F6;
    padding: 10px 0;
}
.topbar-right p{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}
.topbar-left .nav{
    margin: 0 -10px;
}
.topbar-left .nav-item{
    
}
.topbar-left .nav-item .nav-link{
    font-size: 18px;
    color: #878787;
    padding: 0 10px;
    line-height: 1;
}
.topbar-left .nav-item .nav-link:hover{
    color: #3E3E3E;
}
.topbar-left .nav-item:last-child {
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #DDDDDD;
}
.topbar-left .nav-item:last-child .nav-link{
    font-size: 16px;
}

.header-bottom{
    padding-top: 20px;
    background-image: url(../images/header-bg.jpg);
    background-position: left bottom;
    background-repeat: no-repeat;
    position: relative;
}
.header-bottom::before{
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, .93);
}
.header-contact i{
    color: #C3A62E;
    font-size: 38px;
}
.header-contact h5{
    color: #727272;
    font-weight: 500;
    font-size: 16px;
}
.header-contact span{
    color: #3E3E3E;
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 25px;
    font-weight: 500;
    display: inline-block;
    direction: ltr;
}

.navbar{
    background-color: #393F8E;
    margin: 20px 0 -30px;
    padding: 10px 5px;
    position: relative;
    z-index: 9;
}
.navbar::before{
    content:"";
    border: 1px solid rgba(255, 255, 255, .2);
    position: absolute;
    inset: 5px
}
.navbar .navbar-nav .nav-link{
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 25px;
    position: relative;
    z-index: 1;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:focus,
.navbar .navbar-nav .active .nav-link{
    color: #C3A62E;
}
.navbar .navbar-nav .nav-link::before {
    position: absolute;
    bottom: -10px;
    left: 50%;
    color: transparent;
    content: "•";
    text-shadow: transparent 0px 0px;
    font-size: 1.2em;
    transform: translateX(-50%);
    pointer-events: none;
    transition: text-shadow 0.3s ease 0s, color 0.3s ease 0s;
}
.navbar .navbar-nav .nav-link:hover::before,
.navbar .navbar-nav .active .nav-link::before{
    color: #C3A62E;
    text-shadow: 7px 0 #C3A62E, -7px 0 #C3A62E;
}
.navbar-toggler,
.navbar-brand{
    position: relative;
    color: #fff;
}
.navbar-brand{
    margin-right: 15px;
    font-size: 18px;
}

#search {
    position: fixed;
    z-index: 999;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding-top: 150px;
    background-color: rgba(57, 63, 142, 0.9);
    
    -webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;

    -webkit-transform: translate(0px, -100%) scale(0, 0);
	-moz-transform: translate(0px, -100%) scale(0, 0);
	-o-transform: translate(0px, -100%) scale(0, 0);
	-ms-transform: translate(0px, -100%) scale(0, 0);
	transform: translate(0px, -100%) scale(0, 0);
    
    opacity: 0;
}
#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
	-o-transform: translate(0px, 0px) scale(1, 1);
	-ms-transform: translate(0px, 0px) scale(1, 1);
	transform: translate(0px, 0px) scale(1, 1); 
    opacity: 1;
}
#search .close {
    position: fixed;
    top: 30px;
    right: 30px;
    color: #fff;
	opacity: .7;
	padding: 0;
	font-size: 30px;
    border: none;
    outline: none;
}
#search .close::after{
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    content: "\f00d";
    border: 0;
    color: #fff;
}
#search .form-control{
    border: 0;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    height: 56px;
    font-size: 25px;
    color: #fff;
    font-weight: 300;
    padding-left: 0;
    padding-right: 0;
}
#search .form-control::placeholder{
    color: #fff;
}


#masterslider{
    direction: ltr;
}
.ms-slide{
    direction: rtl;
}
.ms-slide::after{
    display: block;
    content: "";
    position: absolute;
    width: 60%;
    right: -7%;
    height: 100%;
    background-color: #C3A62E;
    opacity: .8;
    transform: skew(15deg);
}
.slide-title{
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    width: 45%;
}
.slide-desc{
    color: #fff;
    font-size: 18px;
    line-height: 35px;
    width: 45%;
}
.ms-skin-default .ms-nav-next{
    right: -50px;
}
.ms-skin-default .ms-nav-prev{
    left: -50px;
}

.section{
    padding: 100px 0;
}
.section-heading{
    
}
.section-heading span{
    color: #C3A62E;
    font-size: 20px;
    font-weight: 500;
}
.section-heading h2{
    color: #333333;
    font-size: 35px;
    font-weight: 700;
    line-height: 55px;
    margin-bottom: 30px;
}
.section-heading h2::after{
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background-color: #393F8E;
    margin-top: 15px;
}

#about{
    background-image: url(../images/about-bg-rt.png), url(../images/about-bg-lb.png);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: right top, left bottom;
}

.about-brief{
    font-size: 18px;
    line-height: 37px;
}
.about-stats{
    position: relative;
    text-align: center;
}
.about-stats::before{
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #DDDDDD;
}
.about-stats::after{
    content: "";
    position: absolute;
    top: 0;
    right: 50%;
    width: 1px;
    height: 100%;
    background-color: #DDDDDD;
}
.stats-logo{
    width: 70px;
    height: 70px;
    line-height: 70px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 50%;
    margin: -35px -35px 0 0;
    z-index: 99;
}
.stats-logo>img{
    
}

.stats-item{
    padding: 40px 15px;
}
.stats-item span{
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 80px;
    font-weight: 500;
    color: #333333;
    line-height: 1;
}
.stats-item p{
    font-size: 18px;
    margin: 5px 0 0;
}

.feature-box{
    background-color: #fff;
    text-align: center;
    padding: 40px 20px;
    box-shadow: 0 10px 60px rgba(22, 37, 66, .1);
}
.feature-box i{
    color: #C3A62E;
    font-size: 60px;
}
.feature-box h4{
    color: #3E3E3E;
    font-size: 30px;
    font-weight: 700;
    margin: 20px 0 20px;
}
.feature-box h4::after{
    content: "";
    display: block;
    margin: 15px auto 0;
    width: 60px;
    height: 2px;
    background-color: #393F8E;
}
.feature-box p{
    margin-bottom: 0;
}


#services{
    background-color: #F6F4F4;
    background-image: url(../images/services-bg.png);
    background-position: left bottom;
    background-size: 100%;
    background-repeat: no-repeat;
    padding-bottom: 60px;
}
.services-cover{
    direction: ltr;
    position: absolute;
    left: 15px;
    box-shadow: 0 10px 60px rgb(22 37 66 / 10%);
}
.single-service{
    border-bottom: 1px solid #E6E5E5;
    padding-bottom: 30px;
    margin: 0 0 30px;
}
.service-icon{
    color: #C3A62E;
    font-size: 40px;
}
.service-brief{
    
}
.service-brief h3{
    color: #3E3E3E;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 15px;
}
.service-brief h3::after{
    content: "";
    display: block;
    width: 34px;
    height: 2px;
    background-color: #393F8E;
    margin-top: 15px;
}
.service-brief p{
    line-height: 28px;
    margin-bottom: 5px;
}
.service-brief a.service-page-link{
    color: #C3A62E;
    font-weight: 700;
}

#langs{
    background-color: #393F8E;
    background-image: url(../images/langs-sec-bg.png);
    background-size: cover;
    color: #ffffff;
}
#langs h2{
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
}
#langs p{
    font-size: 18px;
    line-height: 40px;
    margin-bottom: 30px;
}


.single-employee .employee-image{
    border-bottom: 5px solid #C3A62E;
    margin-bottom: 25px;
}
.single-employee .employee-info{
    
}
.single-employee .employee-info h4{
    color: #3E3E3E;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 5px;
}
.single-employee .employee-info p{
    margin-bottom: 0;
}

#clients{
    background-color: #F7F6F6;
    padding: 30px 0;
}
.single-client{
    height: 112px;
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 10px;
}
.single-client>img{
    max-width: 100%;
}

footer{
    background-color: #393F8E;
    background-image: url(../images/map-bg.png);
    background-size: cover;
    color: #ffffff;
}
.footer-top{
    padding: 80px 0;
}
.footer-widget>h3{
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.footer-widget .list-unstyled>li{
    position: relative;
}

.list-contacts{
    margin-top: 30px;
}
.list-contacts>li{
    padding-right: 35px;
    margin-bottom: 10px;
}
.list-contacts>li>i{
    position: absolute;
    top: 5px;
    right: 0;
    color: #C3A62E;
    font-size: 20px;
}

.list-links>li{
    margin-bottom: 10px;
    padding-right: 15px;
}
.list-links>li>a{
    color: #fff;
}
.list-links>li::before{
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    content: "\f104";
    position: absolute;
    top: 0;
    right: 0;
    color: #C3A62E;
    font-size: 16px;
}
.list-links>li>a:hover{
    color: #C3A62E;
}

.footer-bottom{
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
}
.copyrights{
    
}

/*Preloader*/
#loading{
	background-color: #ffffff;
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 999;
	margin-top: 0px;
	top: 0px;
}
#loading-center{
	width: 100%;
	height: 100%;
	position: relative;
}
#loading-center-absolute {
	position: absolute;
	left: 50%;
	top: 50%;
	height: 150px;
	width: 150px;
	margin-top: -75px;
	margin-left: -75px;
}
.object{
	width: 20px;
	height: 20px;
	background-color: #C3A62E;
	float: left;
	margin: 0 10px;
	margin-top: 65px;
	-moz-border-radius: 50% 50% 50% 50%;
	-webkit-border-radius: 50% 50% 50% 50%;
	border-radius: 50% 50% 50% 50%;
}

#object_one {	
	-webkit-animation: object_one 1.5s infinite;
	animation: object_one 1.5s infinite;
	}
#object_two {
	-webkit-animation: object_two 1.5s infinite;
	animation: object_two 1.5s infinite;
	-webkit-animation-delay: 0.25s; 
    animation-delay: 0.25s;
	}
#object_three {
    -webkit-animation: object_three 1.5s infinite;
	animation: object_three 1.5s infinite;
	-webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
	
	}

@-webkit-keyframes object_one {
    75% { -webkit-transform: scale(0); }
}

@keyframes object_one {

  75% { 
    transform: scale(0);
    -webkit-transform: scale(0);
  }
}

@-webkit-keyframes object_two {
  75% { -webkit-transform: scale(0); }
}

@keyframes object_two {
  75% { 
    transform: scale(0);
    -webkit-transform:  scale(0);
  }
}

@-webkit-keyframes object_three {
  75% { -webkit-transform: scale(0); }
}

@keyframes object_three {
  75% { 
    transform: scale(0);
    -webkit-transform: scale(0);
  }
}