 @font-face {
  font-family: 'ZaridSansAL';
  font-style: normal;
  font-weight: normal;
  src: local('ZaridSansAL'), url('../font/29LTZaridSansAL-Regular.otf') format('opentype');
  }


body {
  font-family: sans-serif !important;
  color: #444444;
  font-size: 14px !important;
}

body[dir="rtl"] {
  font-family: 'ZaridSansAL' !important;
  color: #444444;
  font-size: 16px !important;
}

a {
  color: rgb(11 68 107);
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #106eea;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0e426b;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3284f1;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #eeeeee;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  /* color: rgb(11 68 107); */
  color:#000;
  padding: 0;
  position: fixed;
    width: 100%;
    z-index: 3;
}

#topbar .contact-info i {
  font-style: normal;
  color: #666666;
}

#topbar .contact-info i a, #topbar .contact-info i span {
  padding-left: 5px;
  color: #666666;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #666666;
  text-decoration: underline;
}

#topbar .top-menu a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

#topbar .top-menu a:hover {
  color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 2;
  height: 86px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
    top: 40px;
    width: 100%;
}

#header.fixed-top {
  height: 70px;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #106eea;
}

#header .logo img {
  /* max-height: 60px; */
  max-height: 45px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# 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;
}

.navbar > ul > li {
  white-space: nowrap;
  /* padding: 0 4px; */
  /* border-left: 1px solid #cccccc; */
  line-height: 14px;
}
.navbar > ul > li:first-child {
  border-left: none;
}
.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 13px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: -36px;
  left: 0;
  background-color: rgb(11 68 107);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: rgb(11 68 107);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  /* left: -100%; */
  top: calc(100% + 30px);
  /* left: -100%; */
  /* top: 70px; */
  margin: 0;
  /* padding: 10px 0; */
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
  transition: 0.3s;
  margin-top: 36px !important;

}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 12px;
  font-weight: bold;
  height: 45px;
}

.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: #106eea; */
  color: #333333;;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  /* top: 100%; */
  top:61%;
  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;
}

.lang_ar .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: -136%;
  } */

  /* .lang_ar .navbar .dropdown .dropdown:hover > ul{
    left:-116%
  } */
/* } */

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@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(9, 9, 9, 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 a {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #106eea;
}

.navbar-mobile .getstarted {
  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: #106eea;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 75vh;
  background: url("../img/hero-bg.jpg") top left;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #222222;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #106eea;
}

#hero h2 {
  color: #555555;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 400;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #106eea;
}

#hero .btn-get-started:hover {
  background: #247cf0;
}

#hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  font-weight: 600;
  display: flex;
  align-items: center;
}

#hero .btn-watch-video i {
  color: #106eea;
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

#hero .btn-watch-video:hover {
  color: #106eea;
}

#hero .btn-watch-video:hover i {
  color: #3b8af2;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .btn-get-started, #hero .btn-watch-video {
    font-size: 13px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 70px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f9fe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: #106eea;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #106eea;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.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;
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.featured-services .icon-box::before {
  content: '';
  position: absolute;
  background: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: #106eea;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #106eea;
  transition: all 0.3s ease-in-out;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services .title a {
  color: #111;
}

.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.featured-services .icon-box:hover .title a, .featured-services .icon-box:hover .description {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .content ul li:first-child {
  margin-top: 35px;
}

.about .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: #106eea;
  border-radius: 50px;
}

.about .content ul h5 {
  font-size: 18px;
  color: #555555;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #222222;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e2eefd;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: .9s;
  background-color: #106eea;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #f1f6fe;
}

.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #106eea;
  color: #fff;
  width: 56px;
  height: 56px;
  line-height: 0;
  border-radius: 50px;
  border: 5px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #062b5b;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #e2eefd;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f1f6fe;
  border-radius: 4px;
  border: 1px solid #deebfd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.services .icon-box .icon i {
  color: #3b8af2;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}

.services .icon-box:hover h4 a, .services .icon-box:hover .icon i {
  color: #106eea;
}

.services .icon-box:hover .icon {
  border-color: #106eea;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.image-gallery #portfolio-flters {
  padding: 0;
  margin: 0 auto 15px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
  margin-bottom: 35px;
}

.image-gallery #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px 8px 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  /*transition: all 0.3s ease-in-out;*/
  margin: 0 20px;
  border-bottom: 5px solid transparent ;
}

.image-gallery #portfolio-flters li:hover, .image-gallery #portfolio-flters li.filter-active {
  color: rgb(11 68 107);
  border-bottom: 5px solid rgb(11 68 107) !important;
}

.image-gallery #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #222222;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #555555;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 10px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #3c3c3c;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #106eea;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #6ba7f5;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #106eea;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #106eea;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 3px;
  padding-top: 7px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(16, 110, 234, 0.8);
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  background: #3b8af2;
}

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #222222;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .box h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing .box h4 {
  font-size: 36px;
  color: #106eea;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #106eea;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #106eea;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #3b8af2;
}

.pricing .featured h3 {
  color: #fff;
  background: #106eea;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #106eea;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #d4e5fc;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #106eea;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #0d58ba;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: #106eea;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #106eea;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3d1fa;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #106eea;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #106eea;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #3b8af2;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #495966;
  color: #cccccc;
  font-size: 14px;
  background: #495966;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f2f2f2;
  text-align: center;
  font-size: 15px;
  color: #5a5a5a;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #106eea;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #0d58ba;
}

#footer .footer-top {
  padding: 60px 0;
  background: #495966;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #106eea;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#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: 2px;
  color: #106eea;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #cccccc;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-size: 14px;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #ffffff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #106eea;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #3b8af2;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #444444;
  margin-top: 45px;
}

@media (max-width: 768px) {
  #footer .copyright, #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}
.top-menu .menu-item {
  padding: 0 20px !important;
  cursor: pointer;
}
.top-menu .menu-item:last-child {
  padding: 0 0 !important;
}
.menu-action {
  border-left: 1px solid #b4b4b4;
  padding-left: 30px;
  margin-left: 10px;
}
.ml-20 {
  margin-left: 20px;
}
.signin-btn {
  background-color: #b2d69d;
  color: #000000;
  padding: 6px 15px;
  border-radius: 20px;
  font-weight: bold;
  /* margin-left: 31px; */
  font-size: 14px;
  cursor: pointer;
}
/* .lang_ar .signin-btn{
  margin-right: 50px;
} */

#home {
  width: 100%;
  background: url("../img/banner/home.jpg") top left;
  background-size: cover;
  position: relative;
  height: 75vh;
}
#vision {
  width: 100%;
  background: url("../img/banner/mission-banner.jpg") top left;
  background-size: cover;
  position: relative;
}

#vision h2 {
  color: #555555;
  margin: 5px 0 30px 0;
  font-size: 36px;
  font-weight: 400;
}
.vision-and-mission h2 {
  color: #555555;
    margin: 5px 0 30px 0;
    font-size: 36px;
    font-weight: 400;
    position: absolute;
    /* top: -127px; */
     /* left: 112px; */
     left: 116px;
    margin-top: -127px;
}
.news h2 {
  color: #ffffff;
    margin: 5px 0 30px 0;
    font-size: 36px;
    font-weight: 400;
    position: absolute;
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;

}
.Privacypolicy h2 {
  color: #333333;
    margin: 5px 0 30px 0;
    font-size: 36px;
    font-weight: 400;
    position: absolute;
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;

}
 .projects h2 {
  color: #000000;
    margin: 5px 0 30px 0;
    font-size: 36px;
    font-weight: 400;
    position: absolute;
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;

}
.photo-gallery h2 {
  color: #ffffff;
    margin: 5px 0 30px 0;
    font-size: 36px;
    font-weight: 400;
    position: absolute;
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;

}
 .video-gallery h2 {
  color: #ffffff;
    margin: 5px 0 30px 0;
    font-size: 36px;
    font-weight: 400;
    position: absolute;
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;

}
 .book-and-publications h2 {
  color: #333333;
    margin: 5px 0 30px 0;
    font-size: 36px;
    font-weight: 400;
    position: absolute;
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;

}
 .information-center h2 {
  color: #ffffff;
    margin: 5px 0 30px 0;
    font-size: 36px;
    font-weight: 400;
    position: absolute;
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;

}
 .announcements h2 {
  color: #000000;
    margin: 5px 0 30px 0;
    font-size: 36px;
    font-weight: 400;
    position: absolute;
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;

}
 .statistics h2 {
  color: #333333;
    margin: 5px 0 30px 0;
    font-size: 36px;
    font-weight: 400;
    position: absolute;
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;

}
 
 .specialities h2 {
  color: #ffffff;
  margin: 5px 0 30px 0;
  font-size: 36px;
  font-weight: 400;
  position: absolute;
  left: 116px;
  margin-top: -127px;
}
 .history h2 {
  color: #0e426b;
  margin: 5px 0 30px 0;
  font-size: 36px;
  font-weight: 400;
  position: absolute;
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;
}
 .service-catalogue h2 {
 
  color: #333333;
  margin: 5px 0 30px 0;
  font-size: 36px;
  font-weight: 400;
  position: absolute;
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;

}
 .organization-structure h2 {
  color: #fff;
    margin: 5px 0 30px 0;
    font-size: 36px;
    font-weight: 400;
    position: absolute;
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;

}
 .phone-book h2 {
  color: #333333;
    margin: 5px 0 30px 0;
    font-size: 36px;
    font-weight: 400;
    position: absolute;
    /* left: 112px; */
    left: 116px;

   margin-top: -127px;

}
 .locate-us h2 {
  color: #333333;
    margin: 5px 0 30px 0;
    font-size: 36px;
    font-weight: 400;
    position: absolute;
    /* top: -127px; */
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;

}
    .legislation h2 {
      color: #333333;
      margin: 5px 0 30px 0;
      font-size: 36px;
      font-weight: 400; 
      position: absolute;
    /* top: -127px; */
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;
    }
    .e-services h2 {
      color: #555555;
        margin: 5px 0 30px 0;
        font-size: 36px;
        font-weight: 400;
        position: absolute;
    /* top: -127px; */
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;
    
    }
    .electronic-payment-policy h2 {
      color: #000000;
        margin: 5px 0 30px 0;
        font-size: 36px;
        font-weight: 400;
        position: absolute;
    /* top: -127px; */
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;
    
    }
    .terms-of-use h2 {
      color: #000000;
        margin: 5px 0 30px 0;
        font-size: 36px;
        font-weight: 400;
        position: absolute;
    /* top: -127px; */
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;
    
    }
    .sitemap h2 {
      color: #ffffff;
        margin: 5px 0 30px 0;
        font-size: 36px;
        font-weight: 400;
        position: absolute;
    /* top: -127px; */
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;
    
    }
    .TermsofUse h2 {
      color: #555555;
        margin: 5px 0 30px 0;
        font-size: 36px;
        font-weight: 400;
        position: absolute;
    /* top: -127px; */
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;
    
    }
    .e-accessibility h2 {
      color: #555555;
        margin: 5px 0 30px 0;
        font-size: 36px;
        font-weight: 400;
        position: absolute;
    /* top: -127px; */
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;
    
    }
    .e-goverment h2 {
      color: #555555;
        margin: 5px 0 30px 0;
        font-size: 36px;
        font-weight: 400;
        position: absolute;
    /* top: -127px; */
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;
    
    }
    .e-participation h2 {
      color: #555555;
        margin: 5px 0 30px 0;
        font-size: 36px;
        font-weight: 400;
        position: absolute;
    /* top: -127px; */
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;
    
    }
    .openGovtDate h2 {
      color: #555555;
        margin: 5px 0 30px 0;
        font-size: 36px;
        font-weight: 400;
        position: absolute;
    /* top: -127px; */
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;
    
    }
.social-media h2 {
  color: #555555;
    margin: 5px 0 30px 0;
    font-size: 36px;
    font-weight: 400;
    position: absolute;
    /* top: -127px; */
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;

}
 .website-usage h2 {
  color: #555555;
    margin: 5px 0 30px 0;
    font-size: 36px;
    font-weight: 400;
    position: absolute;
    /* top: -127px; */
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;

}
 .anticorruption h2 {
  color: #555555;
    margin: 5px 0 30px 0;
    font-size: 36px;
    font-weight: 400;
    position: absolute;
    /* top: -127px; */
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;

}
.ratification h2 {
  color: #555555;
    margin: 5px 0 30px 0;
    font-size: 36px;
    font-weight: 400;
    position: absolute;
    /* top: -127px; */
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;

}
 .Disablities-rights h2 {
  color: #555555;
    margin: 5px 0 30px 0;
    font-size: 36px;
    font-weight: 400;
    position: absolute;
    /* top: -127px; */
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;

}
 .rehabilitation h2 {
  color: #555555;
    margin: 5px 0 30px 0;
    font-size: 36px;
    font-weight: 400;
    position: absolute;
    /* top: -127px; */
     /* left: 112px; */
     left: 116px;

    margin-top: -127px;

}
#organization-structure {
  width: 100%;
  background: url("../img/banner/organization-structure.jpg") top left;
  background-size: cover;
  position: relative;
}

#organization-structure h2 {
  color: #ffffff;
  margin: 5px 0 30px 0;
  font-size: 36px;
  font-weight: 400;
}
#terms-of-use {
  width: 100%;
  background: url("../img/banner/terms-of-use.jpg") top left;
  background-size: cover;
  position: relative;
}

#terms-of-use h2 {
  color: #000000;
  margin: 5px 0 30px 0;
  font-size: 36px;
  font-weight: 400;
}
#electronic-payment-policy {
  width: 100%;
  background: url("../img/banner/electronic-payment-policy.jpg") top left;
  background-size: cover;
  position: relative;
}

#electronic-payment-policy h2 {
  color: #000000;
  margin: 5px 0 30px 0;
  font-size: 36px;
  font-weight: 400;
}
#site-map {
  width: 100%;
  background: url("../img/banner/site-map.jpg") top left;
  background-size: cover;
  position: relative;
}

#site-map h2 {
  color: #ffffff;
  margin: 5px 0 30px 0;
  font-size: 36px;
  font-weight: 400;
}
#history {
  width: 100%;
  background: url("../img/banner/history-banner.jpg") top left;
  background-size: cover;
  position: relative;
}

#history h2 {
  color: #0e426b;
  margin: 5px 0 30px 0;
  font-size: 36px;
  font-weight: 400;
}
#service-catalogue {
  width: 100%;
  background: url("../img/banner/service-catalogue.jpg") top left;
  background-size: cover;
  position: relative;
}

#service-catalogue h2 {
  color: #333333;
  margin: 5px 0 30px 0;
  font-size: 36px;
  font-weight: 400;
}
#legislation {
  width: 100%;
  background: url("../img/banner/legislation.jpg") top left;
  background-size: cover;
  position: relative;
}

#legislation h2 {
  color: #333333;
  margin: 5px 0 30px 0;
  font-size: 36px;
  font-weight: 400;
}
#specialities {
  width: 100%;
  background: url("../img/banner/specialities.jpg") top left;
  background-size: cover;
  position: relative;
}

#specialities h2 {
  color: #ffffff;
  margin: 5px 0 30px 0;
  font-size: 36px;
  font-weight: 400;
}
#information-center {
  width: 100%;
  background: url("../img/banner/information-center.jpg") top left;
  background-size: cover;
  position: relative;
}

#information-center h2 {
  color: #ffffff;
  margin: 5px 0 30px 0;
  font-size: 36px;
  font-weight: 400;
}
#locate-us {
  width: 100%;
  background: url("../img/banner/locate-us.jpg") top left;
  background-size: cover;
  position: relative;
}

#locate-us h2 {
  color: #333333;
  margin: 5px 0 30px 0;
  font-size: 36px;
  font-weight: 400;
  
}
#news {
  width: 100%;
  background: url("../img/banner/news.jpg") top left;
  background-size: cover;
  position: relative;
}

#news h2 {
  color: #ffffff;
  margin: 5px 0 30px 0;
  font-size: 36px;
  font-weight: 400;
}
#phone-book {
  width: 100%;
  background: url("../img/banner/phone-book.jpg") top left;
  background-size: cover;
  position: relative;
}

#phone-book h2 {
  color: #333333;
  margin: 5px 0 30px 0;
  font-size: 36px;
  font-weight: 400;
}
#books-publication {
  width: 100%;
  background: url("../img/banner/books-publication.jpg") top left;
  background-size: cover;
  position: relative;
}

#books-publication h2 {
  color: #333333;
  margin: 5px 0 30px 0;
  font-size: 36px;
  font-weight: 400;
}
#statistics {
  width: 100%;
  background: url("../img/banner/statistics.jpg") top left;
  background-size: cover;
  position: relative;
}
#statistics h2 {
  color: #333333;
  margin: 5px 0 30px 0;
  font-size: 36px;
  font-weight: 400;
}
#photo-gallery {
  width: 100%;
  background: url("../img/banner/photo-gallery.jpg") top left;
  background-size: cover;
  position: relative;
}

#photo-gallery h2 {
  color: #ffffff;
  margin: 5px 0 30px 0;
  font-size: 36px;
  font-weight: 400;
}
#video-gallery {
  width: 100%;
  background: url("../img/banner/video-gallery.jpg") top left;
  background-size: cover;
  position: relative;
}

#video-gallery h2 {
  color: #ffffff;
  margin: 5px 0 30px 0;
  font-size: 36px;
  font-weight: 400;
}
#announcements {
  width: 100%;
  background: url("../img/banner/announcements.jpg") top left;
  background-size: cover;
  position: relative;
}

#announcements h2 {
  color: #000000;
  margin: 5px 0 30px 0;
  font-size: 36px;
  font-weight: 400;
}
#projects {
  width: 100%;
  background: url("../img/banner/projects.jpg") top left;
  background-size: cover;
  position: relative;
}

#projects h2 {
  color: #000000;
  margin: 5px 0 30px 0;
  font-size: 36px;
  font-weight: 400;
}
.quick-links {
  position: fixed;
    top: 116px;
    z-index: 4;
    cursor: pointer;
}
#ar .quick-links {
  display: none;
}
.quick-links-arabic {
  position: fixed;
  top: 126px;
  z-index: 4;
  cursor: pointer;
  display: none;
}
#ar .quick-links-arabic {
  display: block;
}

#ar .carousel-caption{
  right:9%
}

.toll-free {
  background-color: rgb(11 68 107);
  color: #ffffff;z-index: 1;
  border-radius: 25px 0 0 25px;
  width: 250px;
  position: absolute;
  top: 310px;
  right: 0;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1px;
}
.toll-free img{ 
  padding-top: 4px;
}
#vision-bg {
  width: 100%;
  background: url("../img/vision-bg.jpg") top left;
  background-size: cover;
  position: relative;
  height: 120vh;
}
.vision-container {
  background-color: #0e426b;
  padding: 30px;
  color: #ffffff;
  height: 240px;
}
.mission-container {
  background-color: #a3ac72;
  padding: 30px;
  color: #ffffff;
  height: 240px;
}
.heading {
  font-size: 24px;
}
.pt-5px {
  padding-top: 5px;
}
.pt-25px {
  padding-top: 25px;
  text-align: left;

}
.pt-20px {
  padding-top: 20px;
}
.pt-50px {
  padding-top: 50px;
}
.pr-20px {
  padding-right: 20px;
}
.pr-10px {
  padding-right: 10px;
}
.pt-35px {
  padding-top: 35px;
}
.footer-heading {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  padding-bottom: 20px;
}
.list-border {
  border-bottom: 1px solid #7b7b7b;
  padding-bottom: 30px !important;
  margin-bottom: 10px;
}
.list-border-light {
  border-bottom: 1px solid #d1d1d1;
  padding-bottom: 50px !important;
  margin-bottom: 50px;
}
.copyright-links{
  margin-bottom: 10px;
  margin-top: 40px;
}
.copyright-links a{
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  padding: 10px;
  margin-bottom: 20px;
}
.copyright-links a:first-child{
  padding: 0 10px 0 0;
}

.copyright-links span{
  color: #999999;
}
.clear-float {
  float: none;
  clear: both;
  height: 0;
}
.history-gallery {
  width: 75%;
  margin: auto;
}
.history-gallery img{
  padding: 10px;
}
.history-gallery img:nth-child(2) {
  padding-right: 0;
}
.history-gallery img:nth-child(5) {
  padding-right: 0;
}
.history-gallery img:nth-child(1) {
  padding-left: 0;
}
.history-gallery img:nth-child(3) {
  padding-left: 0;
}
.history-gallery .content {
  /*margin-top: 30px;*/
}
.history-container {
  width: 75%;
  margin: auto;

}
.history-container img {
  float: left;
}
#ar .history-container img {
  float: right;
}
.history-container .heading {
  float: left;
  font-size: 34px;
  border-bottom: 2px dotted #666666;
  text-indent: 20px;
}
#ar .history-container .heading {
  float: right;
  font-size: 34px;
  border-bottom: 2px dotted #666666;
  text-indent: 20px;
}
.history-container .heading span{
  font-size: 20px;
  color: #333333;
}
.font-year0 {
  color: #366183;
  font-weight: 600;
}
.font-year1 {
  color: #999966;
  font-weight: 600;
}
.font-year2 {
  color: #e6b37e;
  font-weight: 600;
}
.font-year3 {
  color: #0e6770;
  font-weight: 600;
}
.font-year4 {
  color: #b2d69d;
  font-weight: 600;
}
.sub-heading {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
}
.sub-heading-light {
  font-size: 18px;
  color: #333333;
}
.history-container .content {
  border-left: 1px solid #666666;
    margin-left: 50px;
    padding-left: 80px;
    padding-bottom: 50px;
}
#ar .history-container .content {
  border-right: 1px solid #666666;
    margin-right: 50px;
    padding-right: 80px;
    padding-bottom: 50px;
    border-left: 0;
    margin-left: 0;
    padding-left: 0;
}
.service-container {
  border: 1px solid #ebebeb;
  padding: 20px;
  height: 244px;
  text-align: center;
}
.service-container .heading {
  font-size: 15px;
  font-weight: 600;
  color: rgb(11 68 107);
  padding: 10px 0;

}
.service-container p {
  line-height: 18px;
  font-weight: 100;
  font-size: 13px;
}
.service-container:hover {
  background-color: #0e426b;
  cursor: pointer;
  box-shadow: 0px 0px 10px #888888;
  border: 1px solid#0e426b;
}
.service-container:hover p{
  color: #ffffff;
}
.service-container:hover .heading{
  color: #69cef2;
}
.service-container:hover .img-dark{
 display: none;
}
.service-container .img-light{
  display: none;
 }
 .service-container:hover .img-light{
  display: inline-block;
 }
.btn-black {
    cursor: pointer;
    background-color: #000000;
    color: #ffffff;
    font-size: 14px;
    display: inline-block;
    padding: 5px 20px;
    float: right;
    margin: 16px 0;
}
.btn-black-left {
  cursor: pointer;
  background-color: #000000;
  color: #ffffff;
  font-size: 14px;
  display: inline-block;
  padding: 5px 20px;
  float: left;
  margin-top: 30px;
}
.btn-black-right {
  cursor: pointer;
  background-color: #000000;
  color: #ffffff;
  font-size: 14px;
  display: inline-block;
  padding: 5px 20px;
  float: right;
  margin-top: 30px;
}
.btn-blue {
  cursor: pointer;
  background-color: rgb(11 68 107);
  color: #ffffff;
  font-size: 14px;
  display: inline-block;
  padding: 5px 20px;
  float: right;
  margin-top: 26px;
}
.specialities .box1 {
  background-color: #e6f5fb;
  padding: 20px;
  margin-bottom: 25px;
}
.specialities .box1 .heading {
  font-size: 18px;
    font-weight: 600;
    color: rgb(11 68 107);
    line-height: 22px;
}
.specialities .box1 .content {
  font-size: 14px;
    font-weight: lighter;
    color: #333333;
    line-height: 18px;
    padding-top: 10px;
}
.specialities .box2 {
  background-color: #faf7f1;
  padding: 20px;
  margin-bottom: 25px;
}
.specialities .box2 .heading {
  font-size: 18px;
    font-weight: 600;
    color: #d09545;
    line-height: 22px;
}
.specialities .box2 .content {
  font-size: 14px;
    font-weight: lighter;
    color: #333333;
    line-height: 18px;
    padding-top: 10px;
}
.specialities .box3 {
  background-color: #edeee3;
  padding: 20px;
  margin-bottom: 25px;
}
.specialities .box3 .heading {
  font-size: 18px;
    font-weight: 600;
    color: #a3ac72;
    line-height: 22px;
}
.specialities .box3 .content {
  font-size: 14px;
    font-weight: lighter;
    color: #333333;
    line-height: 18px;
    padding-top: 10px;
}
.specialities .box4 {
  background-color: #fff4e9;
  padding: 20px;
  margin-bottom: 25px;
}
.specialities .box4 .heading {
  font-size: 18px;
    font-weight: 600;
    color: #d09545;
    line-height: 22px;
}
.specialities .box4 .content {
  font-size: 14px;
    font-weight: lighter;
    color: #333333;
    line-height: 18px;
    padding-top: 10px;
}
.specialities .box5 {
  background-color: #f4f5f6;
  padding: 20px;
  margin-bottom: 25px;
}
.specialities .box5 .heading {
  font-size: 18px;
    font-weight: 600;
    color: #333333;
    line-height: 22px;
}
.specialities .box5 .content {
  font-size: 14px;
    font-weight: lighter;
    color: #333333;
    line-height: 18px;
    padding-top: 10px;
}
.specialities .box6 {
  background-color: #efebe7;
  padding: 20px;
  margin-bottom: 25px;
}
.specialities .box6 .heading {
  font-size: 18px;
    font-weight: 600;
    color: #495966;
    line-height: 22px;
}
.specialities .box6 .content {
  font-size: 14px;
    font-weight: lighter;
    color: #333333;
    line-height: 18px;
    padding-top: 10px;
}
.specialities .box1:hover, .specialities .box2:hover, .specialities .box3:hover, .specialities .box4:hover, .specialities .box3:hover, .specialities .box5:hover, .specialities .box6:hover {
  background-color: #0e426b;
  cursor: pointer;
  box-shadow: 0px 0px 10px #888888;
  border: 1px solid#0e426b;
}
.specialities .box1:hover .heading, .specialities .box2:hover .heading, .specialities .box3:hover .heading, .specialities .box4:hover .heading, .specialities .box5:hover .heading, .specialities .box6:hover .heading {
  color: #69cef2;
}
.specialities .box1:hover .content, .specialities .box2:hover .content, .specialities .box3:hover .content, .specialities .box4:hover .content, .specialities .box5:hover .content, .specialities .box6:hover .content {
  color: #ffffff;
}
.search input, .search select {
  border: none;
  border-bottom: 1px solid #d1d1d1;
  padding-bottom: 10px;
  width: 100%;
}
.search input:focus, .search select:focus{
  outline: none !important;
  border-bottom: 1px solid #d1d1d1 !important;
  padding-bottom: 10px;
  width: 100%;
}
.accordion-button:not(.collapsed) {
  color: #ffffff !important;
  background-color: rgb(11 68 107);
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}
.accordion-button:not(.collapsed)::after {
  background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e);
  transform: rotate(
180deg
);
}
.accordion-item:first-of-type .accordion-button {
  line-height: 24px;
}
.accordion-body p {
  font-size: 14px;
  text-align: left;
}
.accordion-body img {
  width: 100%;
}
.accordion-body .date {
  font-size: 14px;
  color: #999999;
  text-align: left;
}
.accordion-body .count {
  font-size: 14px;
  color: #000000;
  text-align: right;
}
.page-item.active .page-link {
  background-color: rgb(11 68 107);
  border-color: rgb(11 68 107);
}
.page-link {
  color: rgb(11 68 107);
}
.page-link:hover {
  color: rgb(11 68 107);
}
.page-link:focus {
  box-shadow: none;
}
.lable-heading {
  color: rgb(11 68 107);
  font-size: 18px;
  font-weight: 600;
}
.projects .container {
  padding: 30px;
  border: 1px solid transparent;
}
.projects .container:hover {
  border: 1px solid #e5e5e5;
  box-shadow: 8px 8px 10px #eeeeee;
}
.projects .container img{
  width: 100%;
}
.projects .container .status {
  padding: 5px 15px; 
  color: #ffffff;
  width: 100%;
  margin-top: 2px;
}
.projects .container .status span{
  font-size: 12px;
}
.projects .container .completed{
  background-color: #a3ac72;
}
.projects .container .non-completed{
  background-color: #929ba2;
}
.projects .heading {
  color: #333333;
  font-size: 15px;text-align: start;
  font-weight: 600;
  padding: 10px 0;
}
.projects .sub-heading {
  color: #333333;
  font-size: 12px;
  float: left;text-align: start;
  width: 70px;
}
.projects .content {
  color: #333333;
  font-size: 14px;
  padding-bottom: 5px;
  font-weight: 600;text-align: start;
}
.border-bottom {
  border-bottom: 1px solid #d1d1d1;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.home{
    top: auto;
    bottom: 36px;
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  background-color: #144569;
  border-radius: 50%;
  margin-right: 5px;
  margin-left: 5px;
}
.carousel-caption {
  position: absolute;
  /* right: auto; */
  bottom: auto;
  left: 9%;
  padding: 68px 0;
  color: #fff;
  text-align: center;
  top: 0;
}
.home-banner h1 {
  text-align: left;
  font-size: 35px;
  color: #333333;
}
.home-banner p{
  text-align: left;
  font-size: 20px;
  color: #333333;
  width: 45%;
}
.home-banner h3{
  text-align: left;
  font-size: 15px;
  color: #333333;
  font-weight: 600;
}
.home-banner h6{
  text-align: left;
  font-size: 12px;
  color: #666666;
  font-style: italic;
}
.gray-bg {
  background-color: #f0f0f0;
}
.slider-img img{
  width: 100%;
}
.slider-img {
  width: 100%;
  height: 135px;
  overflow: hidden;
}
#carouselNews .date {
  font-size: 12px;
  color: #999999;
}
#carouselNews .title {
  line-height: 18px;
    font-size: 14px;
    color: #333333;
    padding-top: 10px;
    height: 45px;
    overflow: hidden;
}
.pb-20px {
  padding-bottom: 20px;
}

#carouselNews .carousel-control-next, #carouselNews .carousel-control-prev {
  position: absolute;
    top: auto;
    bottom: 8px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 50px;
    padding: 0;
    color: #666666;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: 1;
    transition: opacity .15s ease;
    background-color: transparent;
}

#carouselNews .carousel-control-next {
  left: 45px;
}
#carouselNews .carousel-control-prev-icon {
  background-image: url("../img/news-arrow-left.png")
}
#carouselNews .carousel-control-next-icon {
  background-image: url("../img/news-arrow-right.png")
}
.reports {
  background-color: #e6f5fb;
    padding: 27px 20px;
    width: 100%;
    font-size: 14px;
    color: #333333;
    margin-bottom: 3px;
}
.reports:hover {
  background-color: rgb(11 68 107);
  color: #ffffff;
  cursor: pointer;
}
.reports:hover .show{
  display: none;
}
.reports:hover .hide{
  display: inline-block;
}
.reports img{
  margin-right: 10px;
}
.mt-20px {
  margin-top: 20px;
}
.mt-54px {
  margin-top: 54px;
}
.reports .hide{
  display: none;
}
.social-media-class {
  border-top: 5px solid #b2d69d;
  border-left: 1px solid#dfdfdf;
  border-right: 1px solid#dfdfdf;
  border-bottom: 1px solid#dfdfdf;
  padding: 20px;
  margin-bottom: 25px;
  height: 201px;

}

.testimonials {
  border: 5px solid #dbdbdb;
  padding: 52px;
  text-align: center;
}
.testimonials .profile-pic {
  margin-top: 20px;
}
#carouselTestimonials .carousel-control-next, #carouselTestimonials .carousel-control-prev {
  position: absolute;
    top: auto;
    bottom: -8px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 50px;
    padding: 0;
    color: #666666;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: 1;
    transition: opacity .15s ease;
    background-color: transparent;
}
#carouselTestimonials .carousel-inner {
  padding-bottom: 20px;
}
#carouselTestimonials .carousel-control-next {
  left: 85px;
}
#carouselTestimonials .carousel-control-prev {
  left: 40px;
}
#carouselTestimonials .carousel-control-prev-icon {
  background-image: url("../img/news-arrow-left.png")
}
#carouselTestimonials .carousel-control-next-icon {
  background-image: url("../img/news-arrow-right.png")
}
#carouselTestimonials .content{
  font-size: 13px;
  color: #000000;
  margin-top: 20px;
}
#carouselTestimonials .content img{
  margin-right: 10px;
}
#carouselTestimonials .name{
  margin-top: 20px;
  font-size: 18px;
  color: rgb(11 68 107);
}
#carouselTestimonials .designation{
  margin-top: 5px;
  font-size: 11px;
  color: #000000;
}

#carouselAnnouncements .carousel-control-next, #carouselAnnouncements .carousel-control-prev {
  position: absolute;
    top: auto;
    bottom: -8px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 50px;
    padding: 0;
    color: #666666;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: 1;
    transition: opacity .15s ease;
    background-color: transparent;
}
#carouselAnnouncements .carousel-inner {
  padding-bottom: 60px;
}
#carouselAnnouncements .carousel-control-next {
  left: 45px;
}
#carouselAnnouncements .carousel-control-prev {
  left: 0;
}
#carouselAnnouncements .carousel-control-prev-icon {
  background-image: url("../img/blue-arrow-left.png")
}
#carouselAnnouncements .carousel-control-next-icon {
  background-image: url("../img/blue-arrow-right.png")
}
.announcements-container {
  background-color: rgb(11 68 107);
  padding: 88px;
  color: #ffffff;
}
#carouselAnnouncements .container {
  border: 5px solid transparent;
  padding: 20px;
}
#carouselAnnouncements .container:hover {
  border: 5px solid #50b1d9;
  cursor: pointer;
}
#carouselAnnouncements .date {
  font-size: 12px;
  padding-bottom: 20px;
  color: #ffffff;
}
#carouselAnnouncements .heading {
  font-size: 18px;
  color: #69cef2;
  height: 58px;
  overflow: hidden;
  margin-bottom: 15px;
}
#carouselAnnouncements .content {
  font-size: 14px;
  height: 193px;
  overflow: hidden;
}
.social-media-class .heading {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
}
.social-media-class .heading img{
  float: right;
}
.social-media-class .date {
  font-size: 12px;
  color: #666666;
}
.social-media-class .content {
  font-size: 13px;
  color: #333333;
  margin-top: 20px;
}
.social-media-class .content span{
  color: rgb(11 68 107);
}
.social-media-class .link{
  font-size: 13px;
  color: rgb(11 68 107);
  margin-top: 20px;
}
.social-media-class .link a{
  font-size: 13px;
  color: rgb(11 68 107);
}
.social-media-class .link img{
  margin-right: 5px;
}
.pt-0 {
  padding-top: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.download-btn {
  background-color: rgb(11 68 107);
    color: #ffffff;
    display: inline-block;
    padding: 3px 15px;
    text-align: left;
}
.download-btn:hover{
  cursor: pointer;
}
.download-btn img{
  width: auto;
  margin-right: 5px;
  padding-bottom: 2px;
}
.video-gallery .title {
  font-size: 18px;
  color: rgb(11 68 107);
  font-weight: 600;
  padding-bottom: 10px;
}
.video-gallery .content {
  font-size: 14px;
  color: #333333;
  font-weight: 600;
  line-height: 17px;
  padding-bottom: 10px;
  padding-top: 10px;
}
.video-gallery .date {
  font-size: 13px;
  color: #666666;
}
.books-publication {
  border: 1px solid #d1d1d1;
  padding: 30px;text-align: left;
}
.books-publication:hover{
  box-shadow: 0px 0px 10px #888888;
}
.books-publication .title {
  color: rgb(11 68 107);
  font-size: 18px;text-align: left;
  font-weight: 600;
}
.books-publication .sub-title {
  color: #333333;
  font-size: 13px;text-align: left;
}
.books-publication .date {
  color: #666666;
  font-size: 12px;text-align: left;
  padding-top: 5px;
}
.books-publication img {
  float: left;
  margin-right: 20px;
}
.custom-tab .nav-tabs {
  border-bottom: none;
}
.btn-prev {
  border: 1px solid #c6c6c6;
  display: inline-block;
  padding: 5px 15px;
  margin-right: 20px;
}
.btn-next {
  border: 1px solid #c6c6c6;
  display: inline-block;
  padding: 5px 15px;
}
.btn-prev img {
  margin-right: 5px;
  margin-top: -2px;
}
.btn-next img {
  margin-left: 5px;
  margin-top: -2px;
}
.align-right {
  text-align: right;
}
.align-left {
  text-align: left;
}
.information-container img{
  width: 100%;
}
.information-container .heading{
  font-size: 14px;
    color: #ffffff;
    background-color: rgb(11 68 107);
    padding: 10px 20px;
    line-height: 20px;
    height: 90px;
    text-align: left;
}
.information-container ul{
 padding-left: 0;
 padding-right: 0;
 margin-top: 25px;
}
.information-container ul li{
  font-size: 13px;
  color: #333333;
  border-bottom: 1px solid #bdbdbd;
  list-style: none;
  padding: 10px;
}
.information-container ul li:first-child{
  border-top: 1px solid #bdbdbd;
}
.information-container ul li:hover{
  color: rgb(11 68 107);
  background-color: #e6f5fb;
  cursor: pointer;
}
.information-container ul li img{
  width: auto;
}
.pdf-hover {
  float: right;
  display: none;
}
.pdf-hover-right {
  float: left;
  display: none;
}
.information-container ul li:hover .pdf-hover{
  display: block;
}
.information-container ul li:hover .pdf-hover-right {
  display: block;
}
.bullet {
  margin-right: 10px;
  margin-left: 0px;
}
.lang_ar .bullet {
  margin-left: 10px;
  margin-right: 0px;
}
.bullet-hover {
  margin-right: 10px;
}
.phone-book-container ul li img {
  width: auto;
  margin-right: 15px;
  padding-bottom: 4px;
}
.phone-book-container ul li{
  list-style: none;
  font-size: 14px;
  padding: 8px 20px;
  min-height: 37px;
}
.phone-book-container ul li:hover {
   width: 100%;
   cursor: pointer;
   color: rgb(11 68 107);
}
.phone-book-container ul a{
  width: 100%;
 }
.phone-book-container ul{
  padding: 0;
}
.phone-book-container .accordion-body {
  padding: 0;
}
.mb-20px {
  margin-bottom: 20px;
}
.phone-popup .modal-dialog {
  max-width: 70%;
}
.phone-popup .modal-body {
  background-color: #f0f0f0;
  border-radius: 15px;
}
.phone-popup .modal-content {
  background-color: #f0f0f0;
  border-radius: 15px;
}
.phone-popup{
  top: 7%;
}

.phone-popup .profile-pic {
  margin-top: 20px;
}

#carouselPhone-popup .carousel-inner {
  padding-bottom: 50px;
}

#carouselPhone-popup .carousel-control-prev-icon {
  background-image: url("../img/dark-blue-arrow-left.png")
}
#carouselPhone-popup .carousel-control-next-icon {
  background-image: url("../img/dark-blue-arrow-right.png")
}
#carouselPhone-popup .content{
  font-size: 13px;
  color: #000000;
  margin-top: 20px;
}

#carouselPhone-popup .carousel-item {
  width: 90%;
  padding-left: 10%;
}
.phone-popup .name {
  font-size: 20px;
  color: rgb(11 68 107);
  text-align: center;
  margin-top: 75px;
}
.phone-popup .container {
  background-color: #ffffff;
  border: 1px solid #c8c8c8;
  padding: 20px;
  margin-top: -75px;
}
.phone-popup .designation {
  font-size: 14px;
  color: #666666;
  text-align: center;
  margin-top: 10px;
}
.phone-popup .phone {
  font-size: 14px;
  color: #000000;
  text-align: center;
  margin-top: 50px;
}
.phone-popup .email {
  font-size: 14px;
  color: rgb(11 68 107);
  text-align: center;
}
.phone-popup .heading {
  font-size: 30px;
    color: #000000;
    margin-left: 25px;
    margin-top: 25px;
}
.phone-popup .profile-pic {
  width: 140px;
    height: 140px;
    border-radius: 50%;
    /* margin: auto; */
    overflow: hidden;
    border: #f0f0f0 solid 10px;
    display: inline-block;
    margin-left: 44px;
}
.phone-popup .profile-pic img{
  width: 100%;
  text-align: center;
}
.carousel-control-next, .carousel-control-prev {
  width: 10%;
}
.locate-us ul li:hover {
  background-color: #106fa3;
  color: #ffffff;
  width: 100%;
}
.locate-us ul li{
  padding: 8px 20px;
}
.locate-us ul a{
 width: 100%;
}
.locate-us .accordion-body {
  padding: 0;
}
.locate-us ul li .profile-icon{
  height: 11px;
  width: 11px;
  background: url("../img/profile-sm.png");
  float: left;
  margin-right: 10px;
  margin-top: 6px;
}
.locate-us ul li:hover .profile-icon{
  height: 11px;
  width: 11px;
  background: url("../img/profile-white-sm.png");
  float: left;
  margin-right: 10px;
  margin-top: 6px;
}
.phone-book-container ul li .profile-icon{
  height: 11px;
  width: 11px;
  background: url("../img/profile-sm.png");
  float: left;
  margin-right: 10px;
  margin-top: 6px;
}
#ar .phone-book-container ul li .profile-icon{
  float: right;
  margin-left: 10px;
}

.locate-us-popup {
  height: 300px;
    width: 500px;
    background-color: #106fa3;
    position: absolute;
    margin-left: -50px;
    display: none;

}
.locate-us ul li:hover .locate-us-popup{
  display: block;
}
.download-icon img{
  width: auto;
    margin-right: 10px;
    margin-top: -2px;
}
.download-icon {
  margin-bottom: 5px;
}
.nav-tabs {
  margin-bottom: 20px;
}
.nav-tabs .nav-link {
  background: 0 0;
  border: 5px solid rgb(11 68 107);
  padding: 25px 40px;
  text-align: center;
  border-radius: 0;
  height: 195px;
  width: 185px;
}
.nav-tabs li {
  margin-right: 47px;
}
.nav-tabs li:last-child {
  margin-right: 0;
}
#ar .nav-tabs li:first-child {
  margin-right: 0;
}
#ar .nav-tabs li:last-child {
  margin-right: 47px;
  margin-left: 0;
}
/* .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  background-color: rgb(11 68 107) !important;
  border-color: rgb(11 68 107) !important;
}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  background-color: rgb(11 68 107);
  border-color: rgb(11 68 107) !important;
} */
.nav-tabs .nav-link.active .tab-heading{
  color: #ffffff;
}
.nav-tabs .nav-link:hover .tab-heading{
  color: #ffffff;
}
.tab-heading {
  font-size: 14px;
  color: #333333;
  text-transform: uppercase;
  margin-top: 20px;
  line-height: 18px;
}
.tab-planning{
  width: 86px;
  height: 73px;
  background-image: url("../img/tab-planning.png");
}
.nav-link.active .tab-planning{
  background-image: url("../img/tab-planning-white.png");
}
.nav-link:hover .tab-planning{
  background-image: url("../img/tab-planning-white.png");
}

.tab-land{
  width: 69px;
  height: 72px;
  background-image: url("../img/tab-land.png");
}
.nav-link.active .tab-land{
  background-image: url("../img/tab-land-white.png");
}
.nav-link:hover .tab-land{
  background-image: url("../img/tab-land-white.png");
}


.tab-realestate{
  width: 65px;
  height: 70px;
  background-image: url("../img/tab-realestate.png");
}
.nav-link.active .tab-realestate{
  background-image: url("../img/tab-realestate-white.png");
}
.nav-link:hover .tab-realestate{
  background-image: url("../img/tab-realestate-white.png");
}

.tab-socialhousing{
  width: 87px;
  height: 71px;
  background-image: url("../img/tab-socialhousing.png");
}
.nav-link.active .tab-socialhousing{
  background-image: url("../img/tab-socialhousing-white.png");
}
.nav-link:hover .tab-socialhousing{
  background-image: url("../img/tab-socialhousing-white.png");
}

.tab-other{
  width: 78px;
  height: 71px;
  background-image: url("../img/tab-other.png");
}
.nav-link.active .tab-other{
  background-image: url("../img/tab-other-white.png");
}
.nav-link:hover .tab-other{
  background-image: url("../img/tab-other-white.png");
}

.border-planning {
  border: 5px solid #999966 !important;
}
.border-land {
  border: 5px solid rgb(11 68 107) !important;
}
.border-realestate {
  border: 5px solid #6d93a7 !important;
}
.border-socialhousing  {
  border: 5px solid #d09545 !important;
}
.border-other {
  border: 5px solid #06626b !important;
}
.locate-details{
 display: none;z-index: 1;
 position: absolute;
 padding: 30px;
 background-color: #106fa3;
 width: 580px;
 margin-top: 18px;
 margin-left: -20px;
 box-shadow: 0px 0px 8px #b8b8b8;
}
.locate-link:hover .locate-details {
  display: block;
}
.locate-details .dept {
  font-size: 18px;
  color: #69cef2;
  margin-bottom: 20px;
}
.locate-details .name {
  font-size: 20px;
  color: #ffffff;
  padding-bottom: 10px;
  border-bottom: 1px solid #69cef2;
  margin-bottom: 10px;
}
.locate-details .details {
  font-size: 14px;
  color: #ffffff;
  padding-bottom: 5px;
}
.pl-20 {
  padding-left: 30px;
}
.top-arrow {
  background-image: url(../img/triangle-icon.png);
    height: 9px;
    width: 580px;
    position: relative;
    background-color: transparent;
    margin-top: -39px;
    margin-bottom: 29px;
    background-repeat: no-repeat;
    margin-left: -14px;
}
#signin .modal-content {
  background-color: transparent;
  border-radius: 0;
  border: none;
}
#signin{
  top: 20%;
}
.login-smartcard {
  background-color: rgb(11 68 107);
  color: #ffffff;
  border-radius: 10px;
  padding: 30px 40px;
  height: 310px;
}
.login-smartcard .heading{
  font-size: 19px;
  color: #ffffff;
  text-align: left;
  margin-left: 0;
  margin-top: 80px;
  margin-bottom: 20px;
}
.login-smartcard .sub-heading{
  font-size: 13px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: normal;
}
.login-smartcard .signin-btn{
  font-size: 16px;
    color: rgb(11 68 107);
    background-color: #ffffff;
    border-radius: 5px;
    padding: 6px 15px;
    width: 100%;
    margin-left: 0;
    text-align: center;
    cursor: pointer;
}
.login-smartcard p {
  font-size: 13px;
  margin-bottom: 0;
  line-height: 16px;
}
.login-mobile {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px 40px;
  height: 310px;
}
.login-mobile .heading{
  font-size: 18px;
  color: #5a5a5a;
  text-align: left;
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: bold;
}
.login-mobile .sub-heading{
  font-size: 13px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #777777;
  font-weight: normal;
}
.login-mobile .signin-btn{
  font-size: 16px;
    color: #ffffff;
    background-color: rgb(11 68 107);
    border-radius: 5px;
    padding: 6px 15px;
    width: 100%;
    margin-left: 0;
    text-align: center;
    font-weight: normal;
    cursor: pointer;
}
.login-mobile p {
  font-size: 14px;
  margin-bottom: 0;
  color: rgb(11 68 107);
}
.login-mobile .mobile {
  margin-top: 26px;
  margin-bottom: 30px;
}
.login-mobile .mobile input{
  border: 1px solid #cccccc;
  border-radius: 3px;
  padding: 10px;
  margin-left: 10px;
}
.login-mobile .country-code {
  width: 58px;
}
.login-mobile .mobile-number {
  width: 179px;
}
.site-map-list {
  border-left: 1px solid #a3dbdf;
  padding-left: 16px;
}
.site-map-list .heading{
  list-style: none;
  font-size: 20px;
  color: rgb(11 68 107);
  margin-bottom: 10px;
}
.site-map-list li{
  font-size: 14px;
  color: #333333;
  line-height: 34px;
  list-style: none;
}
.site-map-list li a{
  font-size: 14px;
  color: #333333;
  line-height: 34px;
  text-decoration: none;
}
.site-map-list li a:hover{
  color: rgb(11 68 107);
}

.site-map-list li::before {
  content: "\2022";
  color: #a3dbdf;
  font-weight: bold;
  display: inline-block; 
  width: 1em;
  margin-left: -1em;
  font-size: 20px;
}
.site-map-border {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
.payment-policy .heading {
  color: rgb(11 68 107);
  font-size: 18px;
}
.payment-policy p {
    font-size: 14px;
    color: #333333;
}
.payment-policy li, .terms ul li{
  font-size: 14px;
  color: #333333;
  line-height: 24px;
  list-style: none;
}
.payment-policy ul, .terms ul{
  padding-left: 15px;
}
.payment-policy li:before, .terms li:before {
  font-family: AppleGothic, "Lucida Sans", Impact, Verdana, sans-serif;
  content: '■';
  color: #a5b0b4;
  float: left;
  width: 1em;
  /* margin: .5em -1.2em; */
  font-size: 80%;
  margin-left: -15px;
}
.terms {
  margin-bottom: 10px;
}
.terms .heading {
  color: rgb(11 68 107);
  font-size: 18px;
}
.terms p {
    font-size: 14px;
    color: #333333;
}
.terms ul{
  padding-left: 20px;
}
.terms li{
  font-size: 14px;
  color: #333333;
  line-height: 24px;
  list-style-type: square;
}
.jOrgChart .right {
  border-left: 1px solid #6d93a7 !important;
}
.jOrgChart .top {
  border-top: 1px solid #6d93a7 !important;
}
.jOrgChart .left {
  border-right: 1px solid #6d93a7 !important;
}
.jOrgChart .down {
  background-color: #6d93a7 !important;
}
.jOrgChart .multi-tree span {
	border-bottom: 1px solid #6d93a7 !important;
	border-left: 1px solid #6d93a7 !important;
}
.jOrgChart .multi-tree ul li ul li {
  border-left: 1px solid #6d93a7 !important;
}
.jOrgChart .node .name {
 font-size: 15px;
 color: #333333;
 font-weight: 600;
 line-height: 18px;
 margin-top: 16px;
}
.jOrgChart .multi-tree span .name {
  font-size: 15px;
  color: #333333;
  font-weight: 600;
  line-height: 18px;
  margin-top: 16px;
 }
.jOrgChart .node .designation {
  font-size: 12px;
  color: #333333;
  margin-top: 5px;
  line-height: 12px;
 }
 .jOrgChart .multi-tree span .designation {
  font-size: 12px;
  color: #333333;
  margin-top: 5px;
  line-height: 12px;
 }
.jOrgChart .node {
  border: solid 2px #139fe5 !important;
  background-color: #edf9ff !important;
  width: 168px !important;
  margin: 0 10px !important;
  padding: 10px;
  border-radius: 5px;
  margin-top: 58px !important;
  height: 110px;
}
.jOrgChart #node3 {
  border: solid 2px #fdcca2 !important;
  background-color: #fff3e8 !important;
  width: 168px !important;
  margin: 0 10px !important;
  padding: 10px;
  border-radius: 5px;
  margin-top: 58px !important;
  height: 110px;
}
.jOrgChart .multi-tree span .content {
  border: solid 2px #b8c8d0 !important;
  background-color: #f2f2f2 !important;
  width: 168px !important;
  margin: 0 10px !important;
  padding: 10px;
  border-radius: 5px;
  margin-top: 58px !important;
  height: 110px;
}
.jOrgChart .cover {
  margin-top: -30px !important;
    margin-left: -1px !important;
    position: relative !important;
}
.jOrgChart .node .profile-pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  box-shadow: 0px 5px 5px #d2d2d2;
  position: relative;
    margin-top: -70px;
    margin-left: 34px;
}
.jOrgChart .multi-tree span .profile-pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  box-shadow: 0px 5px 5px #d2d2d2;
  position: relative;
  margin-top: -57px;
    margin-left: 40px;
}
.jOrgChart .node .profile-pic img{
  width: 100%;
  text-align: center;
}
.jOrgChart .multi-tree span .profile-pic img{
  width: 100%;
  text-align: center;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(184, 184, 184); 
  
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(129, 129, 129); 
}
.jOrgChart .line {
  margin-top: -15px !important;
}
.jOrgChart table {
  margin: auto;
}


.user-details-default{
  display: none;
  position: fixed;
    width: 193px;
    margin-top: 0;
    margin-left: 0px;
    box-shadow: 0px 0px 8px #b8b8b8;
    z-index: 2;
 }
 .user-details-default .container-blue {
    padding: 15px;
    background-color: #106fa3;
    width: 100%;
 }
 .user-details-default .container-gray {
  padding: 15px;
  background-color: #666666;
  width: 100%;
}
 .user-details-default .container-white {
  padding: 15px;
  background-color: #ffffff;
  width: 100%;
}
 .user-link-default:hover .user-details-default {
   display: block;
 }
 
 .user-details-default .name {
   font-size: 13px;
   color: #ffffff;
 }
 .user-details-default .email {
  font-size: 12px;
  color: #ffffff;
}
.user-details-default .edit-btn {
  font-size: 13px;
    color: #000000;
    background-color: #69cef2;
    display: inline-block;
    padding: 5px 10px;
    margin-top: 10px;
    cursor: pointer;
}
  .user-details-default .top-arrow {
    background-image: url(../img/triangle-icon.png);
    height: 9px;
    width: 179px;
    position: relative;
    background-color: transparent;
    margin-top: -24px;
    margin-bottom: 10px;
    background-repeat: no-repeat;
    margin-left: 0px;
 }
 .user-details-default .top-arrow-gray {
  background-image: url(../img/triangle-icon-gray.png);
  height: 9px;
  width: 179px;
  position: relative;
  background-color: transparent;
  margin-top: -24px;
  margin-bottom: 10px;
  background-repeat: no-repeat;
  margin-left: 0px;
}
.user-link-default .user-details {
  float: left;
}
.user-link-default img {
  float: left;
}
.user-link-default .user-img {
  margin-top: 7px;
    margin-right: 7px;
}
.user-link-default .user-img-xs {
  margin-top: 1px;
    margin-right: 2px;
}
.user-link-default .down-arrow {
  margin-top: 13px;
    margin-left: 7px;
    height: 7px;
}
.user-link-default .user-details-container {
  background-color: #abe2fe;
  height: 32px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0 10px;
  border-radius: 5px;
}
.user-link-default .user-details-container:hover {
  cursor: pointer;
  box-shadow: 0px 0px 4px #bdb9b9;
}
.user-link-default .user-details-container-gray {
  background-color: #d7d7d7;
    height: 32px;
    margin-top: 16px;
    margin-bottom: 10px;
    padding: 0 10px;
    border-radius: 5px;
}
.user-link-default .user-details-container-gray:hover {
  cursor: pointer;
  box-shadow: 0px 0px 4px #bdb9b9;
}
.clear-float {
  float: none;
  clear: both;
}
.user-link-default .user {
  font-size: 10px;
  color: #666666;
  line-height: 10px;
  margin-top: 5px;
}
.user-link-default .user-name {
  font-size: 12px;
    color: #000000;
    line-height: 12px;
    height: 14px;
    overflow: hidden;
}
.user-details-default ul li{
  list-style: none;
  font-size: 13px;
  color: #333333;
  padding: 10px 15px;
}
.user-details-default ul li:hover{
  cursor: pointer;
  background-color: #f3f3f3;
  color: rgb(11 68 107);
}
.user-details-default ul{
  padding: 0;
  margin-bottom: 0;
}
/* .user-link-default {
  /* margin-right: 10px; */
/* } */
.btn-circle {
  width: 22px;
    height: 22px;
    text-align: center;
    padding: 4px 0px;
    font-size: 13px;
    line-height: 13px;
    border-radius: 50%;
    background-color: #a3ac72;
    color: #ffffff;
    border: none;
    /* text-align: center; */
    float: right;
    margin-top: -2px;
}
.user-details-default .edit-btn-gray {
  font-size: 13px;
  color: #ffffff;
  background-color: #858585;
  display: inline-block;
  padding: 5px 10px;
  margin-top: 10px;
  cursor: pointer;
}


/* //meny */


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0px !important;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  white-space: nowrap;
  /* padding: 0 6px; */
  /* border-left: 1px solid #cccccc; */
  line-height: 14px;
}
.navbar > ul > li:first-child {
  border-left: none;
}
.navbar a {
  font-family: 'ZaridSansAL';
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  margin:15px 0px;
  /* font-size: 15px; */
  font-size: 13px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: -36px;
  left: 0;
  background-color: rgb(11 68 107);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: rgb(11 68 107);
}
.navbar .dropdown-menu .dropdown ul {
  display: block;
  position: absolute;
  /* left: -100%; */
  /* top: 70px; */
  margin: 0;
  /* padding: 10px 0; */
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
  transition: 0.3s;
  margin-top: 0px !important;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 6px;
  top: calc(100% + 30px);
  margin: 0;
  /* 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;
  cursor: pointer;
}

.navbar .dropdown ul a {
  padding: 10px 12px;
  font-weight: bold;
  height:45px;
}

.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: #333333;

}

.navbar .dropdown:hover > ul {
  opacity: 1;
  /* top: 100%; */
  top: 61%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.thirdChild {
  left: -130%;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  /* top: -79%; */
  top:0;
  left: 100%;
  visibility: visible;
}

.lang_ar .navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  /* top: -33px; */
  top: 0;
  right: -136%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    /* left: -90%; */
    /* left:-116% */
    left:-109%
  }
  .navbar .dropdown .dropdown:hover > ul {
    /* left: -136%; */
    /* left:-116% */
    left:-109%
  }
}


/* ============ desktop view ============ */
@media all and (min-width: 992px) {

	.dropdown-menu li{
		position: relative;
	}
	.dropdown-menu .submenu{ 
		display: none;
		position: absolute;
		left:101%; top:-7px;
	}
	.dropdown-menu .submenu-left{ 
		right:100%; left:auto;
	}

	.dropdown-menu > li:hover{ background-color: #f1f1f1 }
	.dropdown-menu > li:hover > .submenu{
		display: block;
	}
}	
/* ============ desktop view .end// ============ */

/* ============ small devices ============ */
@media (max-width: 991px) {

.dropdown-menu .dropdown-menu{
		margin-left:0.7rem; margin-right:0.7rem; margin-bottom: .5rem;
}

.toll-free{
  width: 185px !important;
}

}	
/* ============ small devices .end// ============ */

.navbar-light .navbar-nav .nav-link {
  color: #333333;
  font-size: 16px;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.08em;
  content: "";
  border-top: .4em solid;
  border-right: 0.4em solid transparent;
  border-bottom: 0;
  border-left: .4em solid transparent;
  color: rgb(11 68 107);
}
.dropdown-menu {
  position: absolute;
  top: 30px;
  z-index: 1000;
  display: none;
  padding: 15px;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: none;
  border-radius: 0;
  box-shadow: 0px 0px 5px #d4d4d4;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: 8px 15px;
  clear: both;
  color: #333333;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  font-size: 16px;
}
.dropdown-item:focus, .dropdown-item:hover {
  color: #333333;
  background-color: #c0e7f6 !important;
  
}
.page-top-align {
  padding-top: 20px;
}
.carousel .sr-only{
  display: none;
}
.MuiBreadcrumbs-ol .MuiBreadcrumbs-li {
  color: rgb(11 68 107);
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
}
.MuiBreadcrumbs-ol .MuiBreadcrumbs-li[dir="rtl"] {
  font-family: 'ZaridSansAL' !important;
}
.MuiBreadcrumbs-ol .MuiBreadcrumbs-li:last-child {
  color: #000000 ;
}
.align-absolute {
  position: absolute;
}
/* /// quick links */


#quick-links, #quick-links-arabic {
  transition: 0.5s;
}
.sidenav {
  height: auto;
  width: 0;
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  background-color: #c0e7f6;
  overflow-x: hidden;
  transition: 0.5s;
  margin-top: 126px;
  width: 250px;
  margin-left: -250px;
  box-shadow: 0px 0px 10px #c6c6c6;
}
#ar .sidenav {
  height: auto;
  width: 0;
  position: fixed;
  z-index: 3;
  top: 0;
  right: 0;
  background-color: #c0e7f6;
  overflow-x: hidden;
  transition: 0.5s;
  margin-top: 126px;
  width: 250px;
  margin-right: -250px;
  box-shadow: 0px 0px 10px #c6c6c6;
}
#ar .sidenav .closebtn {
  position: absolute;
  top: -12px;
  left: -49px;
  font-size: 28px;
  /* margin-left: 50px; */
  cursor: pointer;
  right: auto;
}
.sidenav ul {
  padding: 15px;
  display: block;
  margin-bottom: 0;
} 
.sidenav ul li{
  list-style: none;
  padding: 7px 10px;
  border-bottom: 1px solid #d9f4ff;
  font-size: 14px;
  cursor: pointer;
} 
.sidenav ul li:hover{
 background-color: #d9f4ff;
} 
.sidenav ul li:first-child, .sidenav ul li:last-child{
  border-bottom: none;
} 
.sidenav a {
  padding: 5px 10px;
  text-decoration: none;
  font-size: 14px;
  color: #000000;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #046ca1;
}

.sidenav .closebtn {
  position: absolute;
  top: -12px;
  right: 3px;
  font-size: 28px;
  margin-left: 50px;
  cursor: pointer;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

.mission-container .content, .vision-container .content {
  font-size: 16px;
  font-weight: lighter;
  color: #ffffff;
  line-height: 20px;
  padding-top: 10px;
}
.mission-container .heading, .vision-container .heading {
  font-size: 30px;
  font-weight: lighter;
  color: #ffffff;
}
.specialities-dialog .heading {
  font-size: 18px;
  color: #ffffff;
  line-height: 22px;
  margin-top: 0;
  margin-left: 0;
}
.specialities-dialog {
  width: 50%;
}
.specialities-dialog .modal-header {
 background-color: rgb(11 68 107);
  color: #ffffff;
  padding: 30px;
  border-radius: 13px 13px 0 0;
}
.specialities-dialog .modal-body {
  height: 250px;
  padding: 30px;
}
.specialities-dialog .btn-close {
  position: relative;
  /* top: -30px; */
}
.accordion-img-container {
  height: 250px;
  overflow: hidden;
}
.accordion-button {
  background-color: #fafafa;
  color: rgb(11 68 107);
}
.site-map-list .heading  a:hover {
  color: rgb(11 68 107);
}

.photo-gallery .modal-dialog {
  max-width: 860px !important;
}
.photo-gallery .modal-body {
  padding: 15px 40px;
}
.photo-gallery .btn-close {
  position: relative;
  top: -4px;
  left: 27px;
}
.pagination {
  margin-bottom: 70px;
  margin-top: -70px;
}
.text-start  a{
         color:#5a5a5a !important;
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%
}
.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: rgb(11 68 107);
  cursor: pointer;
  text-decoration: none;
}
#carouselBanner {
  padding-top: 127px;
}
.inner-banner {
  padding-top: 125px;
}
.news-link {
  cursor: pointer;
}
.news-carousel {
  height: 500px;
}

.MuiBreadcrumbs-ol .MuiBreadcrumbs-li:last-child {
    cursor: auto;
}
.service-img{
  height: 244px;
  width: 100%;
  overflow: hidden;

  width: 100%;
}
.accordion-body {
  padding: 30px;
}
.accordion-button { 
  padding: 20px;
    font-size: 18px;
    line-height: 25px !important;
}
.accordion-item {
  margin-bottom: 25px !important;
}
#ar .accordion-button { 
  text-align: right;
}
.mb-25px {
  margin-bottom: 25px;
}
.loader-bg {
  background-color: rgb(11 68 107);
  height: 100vh;
  width: 100%;
  color: #ffffff;
  top: 0;
  margin-top: 0;
  padding-top: 0;
  position: fixed;

}.moon, .shadow {
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #FFF;
  border-radius: 50%;
  height: 60px;
  width: 60px;
}
/*.moon {
  box-shadow: 0 0 0px #FFF;
}*/
.shadow {
  width: 60px;
  height: 60px;
  position: relative;
  background: rgb(11 68 107);
  transition: all .2s ease;
  animation: move 1.2s infinite alternate ease-in-out;
  transform: translate3d(8px, -8px, 0);
}
@keyframes move {
  100% {
    transform: translate3d(45px, -45px, 0);
  }
}
.pull-right {
  float: right;
}
.mr-10px {
  margin-right: 10px;
}
#ar .accordion-body .count {
  font-size: 14px;
  color: #000000;
  text-align: left;
}
#ar .accordion-body .date {
  font-size: 14px;
  color: #999999;
  text-align: right;
}
#ar .toll-free {
  background-color: rgb(11 68 107);
  color: #ffffff;
  z-index: 1;
  border-radius: 0 25px 25px 0;
  width: 250px;
  position: absolute;
  left: 0;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1px;
  right: auto;
}

.inner-banner-right {
    right: 121px;
    left: auto;
}
#ar .history-gallery img:nth-child(1) {
  padding-right: 0;
}
#ar .history-gallery img:nth-child(2) {
  padding-right: 20px;
    padding-left: 0;
}
#ar .history-gallery img:nth-child(3) {
  padding-right: 0;
    padding-left: 10px;
}
#ar .history-gallery img:nth-child(5) {
  padding-right: 10px;
  padding-left: 0;
}
.credits img:first-child {
  float: left;
}
#ar .projects .sub-heading {
  
  float: right;
  width: 30%;
  line-height: 25px;
}
#ar .projects .content {
  
  float: left;
  width: 70%;
  
}
.title-left {
  float: left;
}
.title-right {
  float: left;
}
#ar .title-left {
  float: right;
  font-size: 12px;
  line-height: 24px;
}
#ar .title-right {
  float: right;
}
#ar .projects .container .status {
  text-align: right;
}

#ar .phone-popup .profile-pic {
  margin-right: 44px;
}
#ar .phone-popup .heading {
  margin-right: 25px;
}
#ar .top-arrow {
  width: 25px;
}
#ar .locate-details .name {
  margin-right: 20px;
}
#ar .phone-book-container ul li img {
  margin-right: 0;
  margin-left: 15px;
}
#ar .site-map-list {
  border-right: 1px solid #a3dbdf;
  padding-right: 16px;
  border-left: 0;
  padding-left: 0;
}
#ar .site-map-list li::before {
  margin-right: -1em;
  margin-left: 0;
}
#ar .btn-blue {
  float: left;
}
#ar .navbar > ul > li {
  /* border-right: 1px solid #cccccc; */
  border-left: 0;
}
#ar .navbar > ul > li:first-child {
  border-right: none;
}
#ar .signin-btn {
  /* margin-left: 0; */
}
#ar .menu-item .ml-20 {
  margin-left: 0;
}
#ar .btn-black-left {
  float: right;
}

#ar #carouselNews .carousel-control-prev {
  right: 40px;
}
#ar .reports img {
  margin-right: 0;
  margin-left: 10px;
}
#ar .social-media-class .link img {
  margin-right: 0;
  margin-left: 5px;
}
#ar .social-media-class .heading img {
  margin-left: 5px;
  float: left;
}
#ar #carouselAnnouncements .carousel-control-prev {
  right: 40px;
}
#ar .announcements-container {
  height: 609px;
  overflow: hidden;
}
#ar #carouselTestimonials .carousel-control-next {
  right: 40px;
}
#ar #carouselTestimonials .content img {
  margin-right: 0;
  transform: scaleX(-1);
  margin-left: 5px;
}
#ar .float-start {
  float: right !important;
}
#ar .credits {
  float: left;
}
#ar #footer .copyright {
  text-align: right;
  float: right;
  padding-right: 10px;
}
#ar .user-details-default .top-arrow-gray {
  width: 24px;
}
#ar .btn-circle {
width: 22px;
    height: 22px;
    text-align: center;
    padding: 4px 0px;
    font-size: 13px;
    line-height: 13px;
    border-radius: 50%;
    background-color: #a3ac72;
    color: #ffffff;
    border: none;
    /* text-align: center; */
    position: relative;
    float: left;
    margin-top: 0;
    margin-right: 10px;

}
#ar .user-details-default, .user-details-default {
  width: 222px;
}

@keyframes ani_1 {
  0% {
    height: 20px;
    width: 20px;
    background-color: rgb(11 68 107);
    margin-top: 10px;
  }
  50% {
    height: 5px;
    width: 5px;
    background-color: #69cef2;
    margin-top: 20px;
  }
  100% {
    height: 20px;
    width: 20px;
    background-color: rgb(11 68 107);
    margin-top: 10px;
  }
}

.cycles {
  display: inline-block;
  width: 220px;
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 110px);
}
.cycle {
  height: 20px;
  width: 20px;
  background-color: deepskyblue;
  display: inline-block;
  margin: 10px;
  border-radius: 50%;
}
#cycle1 {
  animation: ani_1 2s 0s linear infinite;
}
#cycle2 {
  animation: ani_1 2s 0.3s linear infinite;
}
#cycle3 {
  animation: ani_1 2s 0.6s linear infinite;
}
#cycle4 {
  animation: ani_1 2s 0.9s linear infinite;
}
#cycle5 {
  animation: ani_1 2s 1.2s linear infinite;
}


.navbar .nav-item {
  
  border-left: none;
}

.navbar .nav-link {
  /* border-left: none; */
  border-left: 1px solid #cccccc;
  padding: 0px 8px;
}

.navbar > ul:first-child {
  border-left: none;
  /* border-left: 1px solid #cccccc;
  padding: 0px 8px; */
}

.navbar .nav-item .nav-link {
  /* border-left: none; */
  border-left: 1px solid #cccccc;
  /* padding-left: 6px; */
}
.navbar .nav-item .nav-link:first {
  border-left: none;
}

.navbar .dropdown-menu .dropdown-item {
  margin: 0px;
  /* opacity: 1; */
  /* top: 100%; */
  /* top:61%; */
  /* visibility: visible; */
}

.Guest-navbar {
  top: 55px !important;
}

@media screen and (max-width: 768px) {
  .phone-popup .modal-dialog {
    max-width: 83%;
  }
  #header .logo img{
    max-height: 28px;
  }
}