
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
  font-family: 'frutiger'; 
  src: url('../font/FrutigerLTArabic.ttf'); 
}
@font-face {
  font-family: 'frutiger-light'; 
  src: url('../font/frutiger-lt-arabic-45-light.ttf'); 
}


body {
  background: #fff;
  color: #666666;
  font-family: 'frutiger', sans-serif;
}
:root{
  --secColor:#542e91;
  --mainColor:#b2d235;
}

a {
  color: var(--mainColor);
  transition: 0.5s;
  text-decoration: none;
}

a:hover, a:active, a:focus {
  color: var(--secColor);
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
  color: #444;
}

/*--------------------------------------------------------------
# whats-icon
--------------------------------------------------------------*/

.whats-icon i{
	  position: fixed;
  	display: inline-block;
    width: 50px;
    height: 45px;
    bottom: 40px;
    right: 0;
    line-height: 47px;
    background-color: #25D366 ;
    color: #FFF;
    border-radius:10px 0 0 10px;
    text-align: center;
    font-size: 26px;
    z-index: 100;
  }
  /*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 15px;
  bottom: 40px;
  z-index: 99999;
  background: var(--mainColor);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--mainColor);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

  
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  background: rgb(255, 255, 255);
  height: 80px;
}

#header.header-scrolled {
  background: rgb(255, 255, 255);
  height: 75px;
}

#header .logo img {
  max-height: 50px;
}
@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

#header .btn-get-started {
  font-weight: 500;
  font-size: 13px;
  display: inline-block;
  padding: 7px 24px;
  border-radius: 4px;
  transition: 0.5s ;
  margin: 10px;
  color: #fff;
  background: var(--mainColor);
}
.btn-lang  {
  padding:1px 3px;
  border-radius: 4px;
  border: 2px solid #b2d235;
  color: #111;
  font-size: 15px;
  font-weight: bold;
}
.btn-lang:hover {
  padding:1px 3px !important;
  border-radius: 4px !important;
  border: 2px solid #b2d235 !important;
  color: #111 !important;
  background-color: #b3d23536;
}
.btn-lang-en{
  padding:5px 8px;
  border-radius: 4px;
  border: 2px solid #b2d235;
  color: #111;
  font-size: 14px;
  font-weight: bold;
  line-height: 15px;
}
.btn-lang-en:hover {
  padding:5px 8px !important;
  border-radius: 4px !important;
  border: 2px solid #b2d235 !important;
  color: #111 !important;
  background-color: #b3d23536;
  line-height: 15px !important;

}
#header .btn-get-started:hover {
  transform: translateY(-3px);
}
@media (max-width:600px) {
  #header .btn-get-started {
    font-size: 12px;
    padding: 5px 18px;
     }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
  margin-left: 4px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: #212121;
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: var(--mainColor);
  background-color: #b3d23536;
  border-radius: 10px;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: 60px !important;
  margin: 0;
  border-radius: 6px;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
  color: #666666;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: var(--mainColor);
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--mainColor);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile li {
  margin-bottom: 5px;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #333333;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--mainColor);
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: var(--mainColor);
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
 /*  background: #000; */
  overflow: hidden;
  position: relative;
}
@media (max-height: 500px) {
  #hero {
    height: 150vh;
  }
}
#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#hero .carousel-item::before {
  content: "";
 /*  background-color: rgba(0, 0, 0, 0.7); */
 background: linear-gradient(to top,#542e91b7 , #b3d23594)
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}
#hero .container {
  text-align: center;
}
#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}
@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}
#hero p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
  font-size: 18px;
}
@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
}
#hero .carousel-fade {
  overflow: hidden;
}
#hero .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}
#hero .carousel-fade .carousel-inner .carousel-item,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-fade .carousel-inner .active,
#hero .carousel-fade .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-fade .carousel-inner .carousel-item-next,
#hero .carousel-fade .carousel-inner .carousel-item-prev,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}
@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.205);
    font-size: 30px;
    line-height: 55px;
    border-radius:10px;
    width: 50px;
    height: 50px;
}
#hero .carousel-indicators li {
  cursor: pointer;
}
.carousel-indicators {
  right: 0;
  left: 0;
  margin-right: 0;
  margin-left: 0;
  padding-left: 0;
}
#hero .btn-get-started {
  font-weight: 500;
  font-size: 16px;
 
  display: inline-block;
  padding: 10px 32px;
  border-radius: 10px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: var(--mainColor);
}
#hero .btn-get-started:hover {
  background: #fff;
  color: var(--mainColor);
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 32px;
  color: #111;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}
.section-header h3::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}
.section-header h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--mainColor);
  bottom: 0;
  left: calc(50% - 20px);
}
.section-header p {
  text-align: center;
  padding-bottom: 30px;
  color: #333;
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #f7f7f7;
}

.sec-head {
  display: inline-block;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 0;
  padding: 0 0 10px;
  transition: all 0.4s ease 0s;
}
 .section-headline h2 {
  color: var(--mainColor);
  display: inline-block;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 50px;
  position: relative;
/*   background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 80%,  #b2d235 80%);
 */
 z-index: 1;
} 
 .section-headline h2::after {
  content: "";
  width: 1.4em;
  height: 1.4em;
  border-radius: 33% 67% 70% 30% / 30% 41% 59% 70% ;
  background-color:var(--secColor) ;
  position: absolute;
  top:5px;
  right:  -0.1em;
  z-index: -1;
  animation: bounce-in 6s ease infinite;
} 
@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% { transform: scale(.9); }
  100% { transform: scale(1); }
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background-color: #542e910a;
  text-align: right;
  padding: 70px 0;
}
.about img{
border-radius: 10px;
}
.about ul {
  padding: 0;
  list-style: none;
}
.about ul li {
  font-weight: 400;
  padding: 4px 0;
  font-size: 15px;
}
.about p {
  font-size: 16px;
  margin-bottom: 15px;
}
.img-sec{
  z-index: 99999;
  position: relative;
}

.about .img-sec::after{
  position: absolute;
    top: -33px;
    right:  0;
    content: "";
    width: 19px;
    height: 91px;
    background: var(--secColor);
    animation: bounce 2s ease infinite;
}
.about .img-sec::before{
  position: absolute;
  top: 52px;
  right:  26px;
  content: "";
  width: 19px;
  height: 91px;
  background: var(--mainColor);
  
}

.about .img-box {
  padding: 4px;
  display: inline-block;
  border-radius: 4px;
  background-color: var(--mainColor);
  margin-bottom: 6px;
 
}
.about .img-box  img{
  height: 26px;
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-30px);}
	60% {transform: translateY(-15px);}
}
/* @media (min-width: 768px) {
  .border-sec {
    border-left: 1px solid #542e91;
   padding-left: 10px;
  }
} */
@media (max-width:500px) {
  .about p  {
    font-size: 15px;
    line-height: 24px;
  }
  .about ul li{
    font-size: 15px;
    padding: 3px 0;
  }
  .about h6{
    font-size: 20px;
  }
}



  /*======================================service======================================*/
 .service{
    padding: 70px 0;
  }
.work-box {
  margin-bottom: 3rem;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 30px rgba(138, 138, 138, 0.23);
          box-shadow: 0px 0px 30px rgba(138, 138, 138, 0.23);
  border-radius: 8px;
  padding: 2rem 3% 1rem 4%;
  border: 1px solid #eee;
 
}

.work-box:hover {
  -webkit-box-shadow: 0px 10px 50px rgba(116, 116, 116, 0.23);
          box-shadow: 0px 10px 50px rgba(116, 116, 116, 0.23);
}


.service .img-box {
  padding: 10px;
  display: inline-block;
  border-radius: 6px;
}

.work-content .w-more {
  color: var(--mainColor);
  font-size: 1rem;
}

.w-title {
  font-size: 1.2rem;
  font-weight: 600;
}
   
@media (max-width:500px) {
  .service p  {
    font-size: 15px;
    line-height: 24px;
  }
  .service .w-title{
    margin-bottom: 10px;
  }
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f7f7f7;
  min-height: 40px;
  margin-top: 80px;
}
.breadcrumbs h2 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 400;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}


/* Facts Section
--------------------------------*/
#facts {
  background: linear-gradient( to top , #b3d235ec , #b3d23575), url(../img/hero-carousel/03.webp) fixed center center;
  background-attachment: fixed;
  background-size: cover;
  padding: 80px 0;
  position: relative;
}
#facts .section-headline h2{
  color: #fff;
}

#facts .container {
  position: relative;
  z-index: 10;
}
#facts .counters span {
  font-weight: bold;
  font-size: 47px;
  display: block;
  color: var(--secColor);
}
#facts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 15px;
  color: rgb(255, 255, 255);
}

.sus-btn {
  background: #fff none repeat scroll 0 0;
  border: 2px solid #fff;
  color: var(--mainColor);
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 30px;
}

.sus-btn:hover {
  background: var(--mainColor) none repeat scroll 0 0;
  border: 2px solid #fff;
  color: #fff;
}


/* Contact Section
--------------------------------*/
#contact {
  padding: 60px 0;
}
#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}
#contact .contact-info i {
  font-size: 25px;
  display: inline-block;
  margin-bottom: 14px;
  color: #fff;
  padding: 6px 13px;
  background: #542e91;
  border-radius: 5px;
}

#contact .contact-info address, #contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}
#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}
#contact .contact-info a {
  color: #000;
}
#contact .contact-info a:hover {
  color: var(--mainColor);
}
#contact .contact-address, #contact .contact-phone, #contact .contact-email {
  margin-bottom: 20px;
  
}
@media (min-width: 768px) {
  #contact .contact-address, #contact .contact-phone, #contact .contact-email {
    padding: 20px 0;
   display: block;
  }
}
@media (min-width: 768px) {
  #contact .contact-phone {
  /*   border-left: 1px solid #542e91;
    border-right: 1px solid #542e91; */
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #542e91;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
}
#footer .footer-top {
  background: #542e91;

  padding: 60px 0 0 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 10px;
  line-height: 1;
  font-weight: 700;
  border-left: 4px solid rgb(228,174,107);
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #eee;
}

.footer-contacts span{
  color: var(--mainColor);
}
#footer .footer-top h4::before, #footer .footer-top h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}
#footer .footer-top h4::before {
  right: 0;
  background: #555;
}
#footer .footer-top h4::after {
  background: var(--mainColor);
  width: 60px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 8px;
  color: #ddd;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #eee;
}
#footer .footer-top .footer-links ul a:hover {
  color: var(--mainColor);
}

#footer .copyright {
  text-align: center;
  padding-top: 20px;
}
#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}


